diff --git a/jme3-examples/src/main/java/jme3test/gui/TestBitmapFontLayout.java b/jme3-examples/src/main/java/jme3test/gui/TestBitmapFontLayout.java new file mode 100644 index 000000000..8d210c330 --- /dev/null +++ b/jme3-examples/src/main/java/jme3test/gui/TestBitmapFontLayout.java @@ -0,0 +1,551 @@ +/* + * Copyright (c) 20018 jMonkeyEngine + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. Neither the name of the copyright holder nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package jme3test.gui; + +import java.awt.BorderLayout; +import java.awt.Color; +import java.awt.Font; +import java.awt.FontFormatException; +import java.awt.FontMetrics; +import java.awt.Graphics; +import java.awt.Graphics2D; +import java.awt.GridBagConstraints; +import java.awt.GridBagLayout; +import java.awt.GridLayout; +import java.awt.RenderingHints; +import java.awt.Toolkit; +import java.awt.geom.AffineTransform; +import java.awt.image.BufferedImage; +import java.awt.font.TextAttribute; +import java.io.IOException; +import java.util.*; +import javax.swing.*; + +import com.jme3.app.DebugKeysAppState; +import com.jme3.app.StatsAppState; +import com.jme3.app.SimpleApplication; +import com.jme3.app.state.ScreenshotAppState; +import com.jme3.bounding.BoundingBox; +import com.jme3.font.BitmapCharacter; +import com.jme3.font.BitmapCharacterSet; +import com.jme3.font.BitmapFont; +import com.jme3.font.BitmapText; +import com.jme3.input.KeyInput; +import com.jme3.input.controls.ActionListener; +import com.jme3.input.controls.KeyTrigger; +import com.jme3.material.Material; +import com.jme3.math.ColorRGBA; +import com.jme3.math.Vector3f; +import com.jme3.scene.*; +import com.jme3.scene.debug.WireBox; +import com.jme3.scene.shape.*; +import com.jme3.texture.Image; +import com.jme3.texture.Texture; +import com.jme3.texture.Texture2D; +import com.jme3.texture.plugins.AWTLoader; + +/** + * + * @author pspeed42 + */ +public class TestBitmapFontLayout extends SimpleApplication { + + public static final String SCROLL_UP = "scroll up"; + public static final String SCROLL_DOWN = "scroll down"; + public static final String SCROLL_LEFT = "scroll left"; + public static final String SCROLL_RIGHT = "scroll right"; + public static final String ZOOM_IN = "zoom in"; + public static final String ZOOM_OUT = "zoom out"; + public static final String RESET_ZOOM = "reset zoom"; + public static final String RESET_VIEW = "reset view"; + + public static final float ZOOM_SPEED = 0.1f; + public static final float SCROLL_SPEED = 50; + + private Node testRoot = new Node("test root"); + private Node scrollRoot = new Node("scroll root"); + private Vector3f scroll = new Vector3f(0, 0, 0); + private Vector3f zoom = new Vector3f(0, 0, 0); + + public static void main(String[] args){ + TestBitmapFontLayout app = new TestBitmapFontLayout(); + app.start(); + } + + public TestBitmapFontLayout() { + super(new StatsAppState(), + new DebugKeysAppState(), + new ScreenshotAppState("", System.currentTimeMillis())); + } + + public static Font loadTtf( String resource ) { + try { + return Font.createFont(Font.TRUETYPE_FONT, + TestBitmapFontLayout.class.getResourceAsStream(resource)); + } catch( FontFormatException | IOException e ) { + throw new RuntimeException("Error loading resource:" + resource, e); + } + } + + protected Texture renderAwtFont( TestConfig test, int width, int height, BitmapFont bitmapFont ) { + + BitmapCharacterSet charset = bitmapFont.getCharSet(); + + // Create an image at least as big as our JME text + System.out.println("Creating image size:" + width + ", " + height); + BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); + Graphics2D g2 = (Graphics2D)image.getGraphics(); + + g2.setColor(Color.lightGray); + g2.fillRect(0, 0, width, height); + g2.setColor(Color.cyan); + g2.drawRect(0, 0, width, height); + + g2.setColor(new Color(0, 0, 128)); + //g2.drawLine(0, 0, 50, 50); + //g2.drawLine(xFont, yFont, xFont + 30, yFont); + //g2.drawLine(xFont, yFont, xFont, yFont + 30); + + //g2.drawString("Testing", 0, 10); + + Font font = test.awtFont; + System.out.println("Java font:" + font); + + float size = font.getSize2D(); + FontMetrics fm = g2.getFontMetrics(font); + System.out.println("Java font metrics:" + fm); + + String[] lines = test.text.split("\n"); + + g2.setFont(font); + g2.setRenderingHint( + RenderingHints.KEY_TEXT_ANTIALIASING, + RenderingHints.VALUE_TEXT_ANTIALIAS_ON); + + int y = fm.getLeading() + fm.getMaxAscent(); + for( String s : lines ) { + g2.drawString(s, 0, y); + y += fm.getHeight(); + } + + g2.dispose(); + + Image jmeImage = new AWTLoader().load(image, true); + return new Texture2D(jmeImage); + } + + protected Node createVisual( TestConfig test ) { + Node result = new Node(test.name); + + // For reasons I have trouble articulating, I want the visual's 0,0,0 to be + // the same as the JME rendered text. All other things will then be positioned relative + // to that. + // JME BitmapText (currently) renders from what it thinks the top of the letter is + // down. The actual bitmap text bounds may extend upwards... so we need to account + // for that in any labeling we add above it. + // Thus we add and setup the main test text first. + + BitmapFont bitmapFont = assetManager.loadFont(test.jmeFont); + BitmapCharacterSet charset = bitmapFont.getCharSet(); + + System.out.println("Test name:" + test.name); + System.out.println("Charset line height:" + charset.getLineHeight()); + System.out.println(" base:" + charset.getBase()); + System.out.println(" rendered size:" + charset.getRenderedSize()); + System.out.println(" width:" + charset.getWidth() + " height:" + charset.getHeight()); + + BitmapText bitmapText = new BitmapText(bitmapFont); + bitmapText.setText(test.text); + bitmapText.setColor(ColorRGBA.Black); + result.attachChild(bitmapText); + + // And force it to update because BitmapText builds itself lazily. + result.updateLogicalState(0.1f); + BoundingBox bb = (BoundingBox)bitmapText.getWorldBound(); + + BitmapText label = new BitmapText(assetManager.loadFont("Interface/Fonts/Default.fnt")); + label.setText("Test:" + test.name); + // Move the label up by its own size plus whatever extra headspace + // that the test text might have... plus a couple pixels of padding. + float yOffset = Math.max(0, bb.getCenter().y + bb.getYExtent()); + label.move(0, label.getSize() + yOffset + 2, 0); + label.setColor(new ColorRGBA(0, 0.2f, 0, 1f)); + result.attachChild(label); + + + // Bitmap text won't update itself automatically... it's lazy. + // That means it won't be able to tell us its bounding volume, etc... so + // we'll force it to update. + result.updateLogicalState(0.1f); + + // Add a bounding box visual + WireBox box = new WireBox(bb.getXExtent(), bb.getYExtent(), bb.getZExtent()); + Geometry geom = new Geometry(test.name + " bounds", box); + geom.setMaterial(new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md")); + geom.getMaterial().setColor("Color", ColorRGBA.Red); + geom.setLocalTranslation(bb.getCenter()); + result.attachChild(geom); + + // Add a box to show 0,0 + font size + float size = bitmapText.getLineHeight() * 0.5f; + box = new WireBox(size, size, 0); + geom = new Geometry(test.name + " metric", box); + geom.setMaterial(new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md")); + geom.getMaterial().setColor("Color", ColorRGBA.Blue); + geom.setLocalTranslation(size, -size, 0); + result.attachChild(geom); + + float yBaseline = -charset.getBase(); + Line line = new Line(new Vector3f(0, yBaseline, 0), new Vector3f(50, yBaseline, 0)); + geom = new Geometry(test.name + " base", line); + geom.setMaterial(new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md")); + geom.getMaterial().setColor("Color", ColorRGBA.Green); + result.attachChild(geom); + + System.out.println("text bb:" + bb); + // We want the width and the height to cover the whole potential area + // for the font. So it can't just be the rendered bounds but must encompass + // the whole abstract font space... 0, 0, to center + extents. + //int width = (int)Math.round(bb.getCenter().x + bb.getXExtent()); + //int height = (int)Math.round(-bb.getCenter().y + bb.getYExtent()); + // No, that's not right either because in case like this: + // text bb:BoundingBox [Center: (142.0, -15.5, 0.0) xExtent: 142.0 yExtent: 20.5 zExtent: 0.0] + // We get: + // Creating image size:284, 36 + // ...when it should be at least 41 high. + float x1 = bb.getCenter().x - bb.getXExtent(); + float x2 = bb.getCenter().x + bb.getXExtent(); + float y1 = bb.getCenter().y - bb.getYExtent(); + float y2 = bb.getCenter().y + bb.getYExtent(); + System.out.println("xy1:" + x1 + ", " + y1 + " xy2:" + x2 + ", " + y2); + int width = (int)Math.round(x2 - Math.min(0, x1)); + int height = (int)Math.round(y2 - Math.min(0, y1)); + + Texture awtText = renderAwtFont(test, width, height, bitmapFont); + Quad quad = new Quad(width, height); + geom = new Geometry(test.name + " awt1", quad); + geom.setMaterial(new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md")); + geom.getMaterial().setTexture("ColorMap", awtText); + // Quads render from the lower left corner up + geom.move(0, -height, 0); + + // That quad is now positioned directly over where the bitmap text is. + // We'll clone it and move one right and one down + Geometry right = geom.clone(); + right.move(width, 0, 0); + result.attachChild(right); + + Geometry down = geom.clone(); + down.move(0, bb.getCenter().y - bb.getYExtent() - 1, 0); + result.attachChild(down); + + return result; + } + + @Override + public void simpleInitApp() { + setPauseOnLostFocus(false); + setDisplayStatView(false); + setDisplayFps(false); + viewPort.setBackgroundColor(ColorRGBA.LightGray); + + setupTestScene(); + setupUserInput(); + + setupInstructionsNote(); + } + + protected void setupInstructionsNote() { + // Add some instructional text + String instructions = "WASD/Cursor Keys = scroll\n" + + "+/- = zoom\n" + + "space = reset view\n" + + "0 = reset zoom\n"; + BitmapText note = new BitmapText(guiFont); + note.setText(instructions); + note.setColor(new ColorRGBA(0, 0.3f, 0, 1)); + note.updateLogicalState(0.1f); + + BoundingBox bb = (BoundingBox)note.getWorldBound(); + + note.setLocalTranslation(cam.getWidth() - bb.getXExtent() * 2 - 20, + cam.getHeight() - 20, 10); + + guiNode.attachChild(note); + + BitmapText note2 = note.clone(); + note2.setColor(ColorRGBA.Black); + note2.move(1, -1, -2); + guiNode.attachChild(note2); + + BitmapText note3 = note.clone(); + note3.setColor(ColorRGBA.White); + note3.move(-1, 1, -1); + guiNode.attachChild(note3); + + } + + protected void setupTestScene() { + String fox = "The quick brown fox jumps over the lazy dog."; + String loremIpsum = "Lorem ipsum dolor sit amet, consectetur adipiscing elit"; + String foxIpsum = fox + "\n" + loremIpsum; + + List tests = new ArrayList<>(); + + + // Note: for some Java fonts we reduce the point size to more closely + // match the pixel size... other than the Java-rendered fonts from Hiero, it will never + // be exact because of different font engines. + tests.add(new TestConfig("Hiero Java FreeSerif-16-Italic", + foxIpsum, + "jme3test/font/FreeSerif16I.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 16f))); + + tests.add(new TestConfig("Hiero FreeType FreeSerif-16-Italic", + foxIpsum, + "jme3test/font/FT-FreeSerif16I.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 14f))); + + tests.add(new TestConfig("Hiero Native FreeSerif-16-Italic", + foxIpsum, + "jme3test/font/Native-FreeSerif16I.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 15f))); + + tests.add(new TestConfig("AngelCode FreeSerif-16-Italic", + foxIpsum, + "jme3test/font/BM-FreeSerif16I.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 12f))); + // It's actually between 12 and 13 but Java rounds up. + + tests.add(new TestConfig("Hiero Padded FreeSerif-16-Italic", + foxIpsum, + "jme3test/font/FreeSerif16Ipad5555.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 16f))); + + tests.add(new TestConfig("AngelCode Padded FreeSerif-16-Italic", + foxIpsum, + "jme3test/font/BM-FreeSerif16Ipad5555.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 12f))); + // It's actually between 12 and 13 but Java rounds up. + + tests.add(new TestConfig("Hiero FreeSerif-32", + foxIpsum, + "jme3test/font/FreeSerif32.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(32f))); + + tests.add(new TestConfig("AngelCode FreeSerif-32", + foxIpsum, + "jme3test/font/BM-FreeSerif32.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(25f))); + + tests.add(new TestConfig("Hiero FreeSerif-64-Italic", + foxIpsum, + "jme3test/font/FreeSerif64I.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 64f))); + + tests.add(new TestConfig("AngelCode FreeSerif-64-Italic", + foxIpsum, + "jme3test/font/BM-FreeSerif64I.fnt", + loadTtf("/jme3test/font/FreeSerif.ttf").deriveFont(Font.ITALIC, 50f))); + + + /*tests.add(new TestConfig("Japanese", + "\u3042\u3047\u3070\u3090\u309E\u3067\u308A\u3089\n"+ + "\u3042\u3047\u3070\u3090\u309E\u3067\u308A\u3089", + "jme3test/font/DJapaSubset.fnt", + loadTtf("/jme3test/font/DroidSansFallback.ttf").deriveFont(32f)));*/ + + /*tests.add(new TestConfig("DroidSansMono-32", + "Ă㥹ĔĕĖėχψωӮӯ₴₵₹\n"+ + "Ă㥹ĔĕĖėχψωӮӯ₴₵₹", + "jme3test/font/DMono32BI.fnt", + loadTtf("/jme3test/font/DroidSansMono.ttf").deriveFont(32f)));*/ + + /*tests.add(new TestConfig("DroidSansMono-32", + "Ă㥹ĔĕĖėχψωӮӯ\n"+ + "Ă㥹ĔĕĖėχψωӮӯ", + "jme3test/font/DMono32BI.fnt", + loadTtf("/jme3test/font/DroidSansMono.ttf").deriveFont(Font.BOLD | Font.ITALIC, 32f))); + */ + + // Setup the test root node so that y = 0 is the top of the screen + testRoot.setLocalTranslation(0, cam.getHeight(), 0); + testRoot.attachChild(scrollRoot); + guiNode.attachChild(testRoot); + + float y = 0; //cam.getHeight(); + + for( TestConfig test : tests ) { + System.out.println("y:" + y); + + Node vis = createVisual(test); + + BoundingBox bb = (BoundingBox)vis.getWorldBound(); + System.out.println("bb:" + bb); + + // Render it relative to y, projecting down + vis.setLocalTranslation(1 + bb.getCenter().x - bb.getXExtent(), + y - bb.getCenter().y - bb.getYExtent(), + 0); + //vis.setLocalTranslation(1, y, 0); + scrollRoot.attachChild(vis); + + // Position to render the next one + y -= bb.getYExtent() * 2; + + // plus 5 pixels of padding + y -= 5; + } + } + + protected void resetZoom() { + testRoot.setLocalScale(1, 1, 1); + } + + protected void resetView() { + resetZoom(); + scrollRoot.setLocalTranslation(0, 0, 0); + } + + protected void setupUserInput() { + + inputManager.addMapping(SCROLL_UP, new KeyTrigger(KeyInput.KEY_UP), + new KeyTrigger(KeyInput.KEY_W)); + inputManager.addMapping(SCROLL_DOWN, new KeyTrigger(KeyInput.KEY_DOWN), + new KeyTrigger(KeyInput.KEY_S)); + inputManager.addMapping(SCROLL_LEFT, new KeyTrigger(KeyInput.KEY_LEFT), + new KeyTrigger(KeyInput.KEY_A)); + inputManager.addMapping(SCROLL_RIGHT, new KeyTrigger(KeyInput.KEY_RIGHT), + new KeyTrigger(KeyInput.KEY_D)); + inputManager.addMapping(ZOOM_IN, new KeyTrigger(KeyInput.KEY_ADD), + new KeyTrigger(KeyInput.KEY_EQUALS), + new KeyTrigger(KeyInput.KEY_Q)); + inputManager.addMapping(ZOOM_OUT, new KeyTrigger(KeyInput.KEY_MINUS), + new KeyTrigger(KeyInput.KEY_SUBTRACT), + new KeyTrigger(KeyInput.KEY_Z)); + inputManager.addMapping(RESET_VIEW, new KeyTrigger(KeyInput.KEY_SPACE)); + inputManager.addMapping(RESET_ZOOM, new KeyTrigger(KeyInput.KEY_0)); + + inputManager.addListener(new KeyStateListener(), + RESET_VIEW, RESET_ZOOM, + SCROLL_UP, SCROLL_DOWN, SCROLL_LEFT, SCROLL_RIGHT, + ZOOM_IN, ZOOM_OUT); + } + + public void simpleUpdate( float tpf ) { + if( scroll.lengthSquared() != 0 ) { + scrollRoot.move(scroll.mult(tpf)); + } + if( zoom.lengthSquared() != 0 ) { + Vector3f current = testRoot.getLocalScale(); + testRoot.setLocalScale(current.add(zoom.mult(tpf))); + } + } + + private class KeyStateListener implements ActionListener { + public void onAction(String name, boolean value, float tpf) { + switch( name ) { + case RESET_VIEW: + // Only on the up + if( !value ) { + resetView(); + } + break; + case RESET_ZOOM: + // Only on the up + if( !value ) { + resetZoom(); + } + break; + case ZOOM_IN: + if( value ) { + zoom.set(ZOOM_SPEED, ZOOM_SPEED, 0); + } else { + zoom.set(0, 0, 0); + } + break; + case ZOOM_OUT: + if( value ) { + zoom.set(-ZOOM_SPEED, -ZOOM_SPEED, 0); + } else { + zoom.set(0, 0, 0); + } + break; + case SCROLL_UP: + if( value ) { + scroll.set(0, -SCROLL_SPEED, 0); + } else { + scroll.set(0, 0, 0); + } + break; + case SCROLL_DOWN: + if( value ) { + scroll.set(0, SCROLL_SPEED, 0); + } else { + scroll.set(0, 0, 0); + } + break; + case SCROLL_LEFT: + if( value ) { + scroll.set(SCROLL_SPEED, 0, 0); + } else { + scroll.set(0, 0, 0); + } + break; + case SCROLL_RIGHT: + if( value ) { + scroll.set(-SCROLL_SPEED, 0, 0); + } else { + scroll.set(0, 0, 0); + } + break; + } + } + } + + private class TestConfig { + String name; + String jmeFont; + Font awtFont; + String text; + + public TestConfig( String name, String text, String jmeFont, Font awtFont ) { + this.name = name; + this.text = text; + this.jmeFont = jmeFont; + this.awtFont = awtFont; + } + } +} diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16I.fnt b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16I.fnt new file mode 100644 index 000000000..f77819afb --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16I.fnt @@ -0,0 +1,1031 @@ +info face="FreeSerif" size=16 bold=0 italic=1 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=3,3 outline=0 +common lineHeight=16 base=12 scaleW=1024 scaleH=1024 pages=1 packed=0 alphaChnl=0 redChnl=4 greenChnl=4 blueChnl=4 +page id=0 file="BM-FreeSerif16I_0.png" +chars count=406 +char id=-1 x=889 y=16 width=11 height=10 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=32 x=489 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=15 +char id=33 x=36 y=45 width=5 height=10 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=15 +char id=34 x=196 y=56 width=4 height=4 xoffset=3 yoffset=2 xadvance=5 page=0 chnl=15 +char id=35 x=468 y=44 width=8 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=36 x=403 y=16 width=9 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=37 x=66 y=32 width=10 height=10 xoffset=2 yoffset=2 xadvance=11 page=0 chnl=15 +char id=38 x=945 y=15 width=11 height=10 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=39 x=1019 y=41 width=2 height=4 xoffset=3 yoffset=2 xadvance=2 page=0 chnl=15 +char id=40 x=543 y=16 width=7 height=12 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=15 +char id=41 x=553 y=16 width=6 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=15 +char id=42 x=53 y=58 width=6 height=6 xoffset=2 yoffset=2 xadvance=6 page=0 chnl=15 +char id=43 x=897 y=42 width=8 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=15 +char id=44 x=209 y=56 width=3 height=4 xoffset=0 yoffset=10 xadvance=3 page=0 chnl=15 +char id=45 x=475 y=56 width=4 height=1 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=15 +char id=46 x=408 y=56 width=2 height=2 xoffset=1 yoffset=10 xadvance=3 page=0 chnl=15 +char id=47 x=489 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=48 x=500 y=31 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=49 x=27 y=45 width=6 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=50 x=194 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=51 x=632 y=30 width=8 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=52 x=522 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=53 x=230 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=54 x=242 y=31 width=9 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=55 x=533 y=31 width=8 height=10 xoffset=2 yoffset=3 xadvance=6 page=0 chnl=15 +char id=56 x=544 y=31 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=57 x=555 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=58 x=8 y=58 width=4 height=7 xoffset=1 yoffset=5 xadvance=3 page=0 chnl=15 +char id=59 x=701 y=43 width=4 height=9 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=15 +char id=60 x=733 y=43 width=9 height=8 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=15 +char id=61 x=127 y=56 width=9 height=4 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15 +char id=62 x=721 y=43 width=9 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15 +char id=63 x=989 y=28 width=6 height=10 xoffset=2 yoffset=2 xadvance=6 page=0 chnl=15 +char id=64 x=1001 y=15 width=11 height=10 xoffset=2 yoffset=2 xadvance=12 page=0 chnl=15 +char id=65 x=131 y=31 width=10 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=15 +char id=66 x=335 y=44 width=10 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=67 x=14 y=32 width=10 height=10 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=68 x=181 y=44 width=12 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=69 x=268 y=44 width=11 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15 +char id=70 x=240 y=44 width=11 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=15 +char id=71 x=27 y=32 width=10 height=10 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=72 x=101 y=44 width=13 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=73 x=479 y=44 width=8 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=15 +char id=74 x=398 y=31 width=9 height=10 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=15 +char id=75 x=165 y=44 width=13 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=76 x=397 y=44 width=9 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15 +char id=77 x=65 y=45 width=15 height=9 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=15 +char id=78 x=828 y=16 width=13 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=79 x=40 y=32 width=10 height=10 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=80 x=322 y=44 width=10 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=15 +char id=81 x=265 y=16 width=10 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=82 x=296 y=44 width=10 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=83 x=254 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=15 +char id=84 x=361 y=44 width=9 height=9 xoffset=2 yoffset=3 xadvance=8 page=0 chnl=15 +char id=85 x=987 y=15 width=11 height=10 xoffset=2 yoffset=3 xadvance=9 page=0 chnl=15 +char id=86 x=105 y=31 width=10 height=10 xoffset=3 yoffset=3 xadvance=9 page=0 chnl=15 +char id=87 x=777 y=16 width=14 height=10 xoffset=2 yoffset=3 xadvance=12 page=0 chnl=15 +char id=88 x=133 y=44 width=13 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=89 x=282 y=44 width=11 height=9 xoffset=2 yoffset=3 xadvance=9 page=0 chnl=15 +char id=90 x=254 y=44 width=11 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15 +char id=91 x=415 y=16 width=8 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=15 +char id=92 x=60 y=45 width=2 height=10 xoffset=2 yoffset=2 xadvance=4 page=0 chnl=15 +char id=93 x=523 y=16 width=7 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=15 +char id=94 x=35 y=58 width=6 height=6 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=95 x=344 y=56 width=8 height=2 xoffset=-1 yoffset=12 xadvance=6 page=0 chnl=15 +char id=96 x=306 y=56 width=3 height=3 xoffset=3 yoffset=2 xadvance=4 page=0 chnl=15 +char id=97 x=951 y=41 width=7 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=98 x=979 y=28 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=99 x=941 y=42 width=7 height=7 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=15 +char id=100 x=687 y=30 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=101 x=1001 y=41 width=6 height=7 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=15 +char id=102 x=278 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=15 +char id=103 x=374 y=31 width=9 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=104 x=467 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=105 x=18 y=45 width=6 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=106 x=922 y=0 width=8 height=13 xoffset=-2 yoffset=2 xadvance=3 page=0 chnl=15 +char id=107 x=170 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=108 x=1015 y=15 width=6 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=109 x=808 y=42 width=12 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=15 +char id=110 x=908 y=42 width=8 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=111 x=991 y=41 width=7 height=7 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=15 +char id=112 x=302 y=31 width=9 height=10 xoffset=-1 yoffset=5 xadvance=6 page=0 chnl=15 +char id=113 x=577 y=31 width=8 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=114 x=981 y=41 width=7 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=15 +char id=115 x=1010 y=41 width=6 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=15 +char id=116 x=693 y=43 width=5 height=9 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=15 +char id=117 x=971 y=41 width=7 height=7 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=15 +char id=118 x=961 y=41 width=7 height=7 xoffset=2 yoffset=5 xadvance=6 page=0 chnl=15 +char id=119 x=823 y=42 width=10 height=7 xoffset=2 yoffset=5 xadvance=9 page=0 chnl=15 +char id=120 x=930 y=42 width=8 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=121 x=410 y=31 width=9 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=122 x=919 y=42 width=8 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=123 x=580 y=16 width=6 height=12 xoffset=2 yoffset=2 xadvance=6 page=0 chnl=15 +char id=124 x=44 y=45 width=5 height=10 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=15 +char id=125 x=513 y=16 width=7 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=126 x=239 y=56 width=7 height=3 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=15 +char id=160 x=493 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=15 +char id=161 x=1016 y=28 width=5 height=10 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=15 +char id=162 x=797 y=29 width=8 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=15 +char id=163 x=206 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=164 x=708 y=43 width=10 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=165 x=433 y=44 width=9 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=166 x=52 y=45 width=5 height=10 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=15 +char id=167 x=503 y=16 width=7 height=12 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=168 x=384 y=56 width=5 height=2 xoffset=2 yoffset=3 xadvance=4 page=0 chnl=15 +char id=169 x=648 y=16 width=11 height=11 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=170 x=120 y=56 width=4 height=5 xoffset=2 yoffset=2 xadvance=3 page=0 chnl=15 +char id=171 x=15 y=58 width=7 height=6 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=15 +char id=172 x=93 y=56 width=8 height=5 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=15 +char id=173 x=482 y=56 width=4 height=1 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=15 +char id=174 x=606 y=16 width=11 height=11 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=175 x=392 y=56 width=5 height=2 xoffset=2 yoffset=3 xadvance=4 page=0 chnl=15 +char id=176 x=112 y=56 width=5 height=5 xoffset=3 yoffset=2 xadvance=5 page=0 chnl=15 +char id=177 x=348 y=44 width=10 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=15 +char id=178 x=44 y=58 width=6 height=6 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=15 +char id=179 x=78 y=57 width=5 height=6 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=15 +char id=180 x=299 y=56 width=4 height=3 xoffset=3 yoffset=2 xadvance=4 page=0 chnl=15 +char id=181 x=362 y=31 width=9 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=182 x=391 y=16 width=9 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=183 x=413 y=56 width=2 height=2 xoffset=2 yoffset=8 xadvance=3 page=0 chnl=15 +char id=184 x=182 y=56 width=4 height=4 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=15 +char id=185 x=86 y=56 width=4 height=6 xoffset=2 yoffset=2 xadvance=4 page=0 chnl=15 +char id=186 x=104 y=56 width=5 height=5 xoffset=2 yoffset=2 xadvance=4 page=0 chnl=15 +char id=187 x=25 y=58 width=7 height=6 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15 +char id=188 x=973 y=15 width=11 height=10 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=189 x=0 y=32 width=11 height=10 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=190 x=875 y=16 width=11 height=10 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=191 x=9 y=45 width=6 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=192 x=681 y=0 width=10 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=193 x=193 y=0 width=11 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=194 x=42 y=17 width=11 height=12 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=195 x=168 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=196 x=182 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=197 x=694 y=0 width=10 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=198 x=83 y=44 width=15 height=9 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=15 +char id=199 x=499 y=0 width=10 height=13 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=200 x=431 y=0 width=11 height=13 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=201 x=417 y=0 width=11 height=13 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=202 x=196 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=203 x=210 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=204 x=933 y=0 width=8 height=13 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=205 x=899 y=0 width=9 height=13 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=206 x=481 y=16 width=8 height=12 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=207 x=492 y=16 width=8 height=12 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=208 x=196 y=44 width=12 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=209 x=960 y=0 width=13 height=12 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=210 x=564 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=211 x=473 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=212 x=486 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=213 x=291 y=16 width=10 height=12 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=214 x=330 y=16 width=10 height=12 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=215 x=874 y=42 width=9 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=216 x=944 y=0 width=13 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=15 +char id=217 x=263 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=218 x=347 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=219 x=291 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=220 x=70 y=16 width=11 height=12 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=221 x=277 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=222 x=309 y=44 width=10 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=15 +char id=223 x=290 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=224 x=899 y=29 width=7 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=225 x=566 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=226 x=919 y=29 width=7 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=227 x=545 y=44 width=8 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=228 x=523 y=44 width=8 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=229 x=731 y=16 width=7 height=11 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=230 x=836 y=42 width=10 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=15 +char id=231 x=829 y=29 width=7 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=232 x=1007 y=28 width=6 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=233 x=849 y=29 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=234 x=869 y=29 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=235 x=627 y=43 width=7 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=236 x=998 y=28 width=6 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=237 x=819 y=29 width=7 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=238 x=949 y=28 width=7 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=239 x=577 y=44 width=7 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=15 +char id=240 x=808 y=29 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=241 x=421 y=44 width=9 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=242 x=959 y=28 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=243 x=775 y=29 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=244 x=939 y=29 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=245 x=512 y=44 width=8 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=246 x=501 y=44 width=8 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=247 x=769 y=42 width=8 height=8 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15 +char id=248 x=409 y=44 width=9 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=15 +char id=249 x=889 y=29 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=250 x=764 y=29 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=251 x=909 y=29 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=252 x=617 y=43 width=7 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=253 x=743 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=254 x=731 y=0 width=9 height=13 xoffset=-1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=255 x=355 y=16 width=9 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=256 x=620 y=16 width=11 height=11 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=15 +char id=257 x=490 y=44 width=8 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=15 +char id=258 x=361 y=0 width=11 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=259 x=731 y=30 width=8 height=10 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=260 x=56 y=17 width=11 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=15 +char id=261 x=647 y=43 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=262 x=538 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=263 x=709 y=30 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=264 x=551 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=265 x=969 y=28 width=7 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=266 x=278 y=16 width=10 height=12 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=267 x=657 y=43 width=7 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=268 x=525 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=269 x=621 y=30 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=270 x=178 y=0 width=12 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=271 x=79 y=31 width=10 height=10 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=15 +char id=272 x=211 y=44 width=12 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=273 x=386 y=31 width=9 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=274 x=634 y=16 width=11 height=11 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=15 +char id=275 x=637 y=43 width=7 height=9 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=15 +char id=276 x=98 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=277 x=720 y=30 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=278 x=126 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=279 x=676 y=43 width=6 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=280 x=84 y=16 width=11 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15 +char id=281 x=667 y=43 width=6 height=9 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=15 +char id=282 x=112 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=283 x=753 y=30 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=284 x=668 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=285 x=815 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=286 x=642 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=287 x=863 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=288 x=252 y=16 width=10 height=12 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=289 x=367 y=16 width=9 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=290 x=16 y=0 width=10 height=14 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=291 x=41 y=0 width=9 height=14 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=15 +char id=292 x=162 y=0 width=13 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=293 x=755 y=0 width=9 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=15 +char id=294 x=117 y=44 width=13 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=295 x=786 y=29 width=8 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=296 x=343 y=16 width=9 height=12 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=297 x=567 y=44 width=7 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=15 +char id=298 x=687 y=16 width=8 height=11 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=15 +char id=299 x=780 y=42 width=7 height=8 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15 +char id=300 x=779 y=0 width=9 height=13 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=301 x=597 y=44 width=7 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=15 +char id=302 x=448 y=16 width=8 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=15 +char id=303 x=571 y=16 width=6 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=304 x=459 y=16 width=8 height=12 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=305 x=0 y=58 width=5 height=7 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=15 +char id=306 x=844 y=16 width=13 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=307 x=851 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=15 +char id=308 x=839 y=0 width=9 height=13 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=15 +char id=309 x=827 y=0 width=9 height=13 xoffset=-2 yoffset=2 xadvance=3 page=0 chnl=15 +char id=310 x=130 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=311 x=29 y=0 width=9 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=312 x=862 y=42 width=9 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=313 x=707 y=0 width=9 height=13 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=314 x=911 y=0 width=8 height=13 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=15 +char id=315 x=791 y=0 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15 +char id=316 x=53 y=0 width=7 height=14 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=317 x=118 y=31 width=10 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=15 +char id=318 x=511 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=15 +char id=319 x=445 y=44 width=9 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15 +char id=320 x=879 y=29 width=7 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=321 x=385 y=44 width=9 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15 +char id=322 x=0 y=45 width=6 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=323 x=98 y=0 width=13 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=324 x=314 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=325 x=114 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=326 x=709 y=16 width=8 height=11 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=327 x=146 y=0 width=13 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=328 x=266 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=329 x=610 y=30 width=8 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=15 +char id=330 x=903 y=16 width=11 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=15 +char id=331 x=643 y=30 width=8 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=15 +char id=332 x=317 y=16 width=10 height=12 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=15 +char id=333 x=534 y=44 width=8 height=9 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=15 +char id=334 x=512 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=335 x=676 y=30 width=8 height=10 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=336 x=445 y=0 width=11 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=337 x=218 y=31 width=9 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=338 x=811 y=16 width=14 height=10 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=15 +char id=339 x=849 y=42 width=10 height=7 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=15 +char id=340 x=655 y=0 width=10 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=341 x=742 y=30 width=8 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=15 +char id=342 x=629 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=343 x=720 y=16 width=8 height=11 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=15 +char id=344 x=140 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=345 x=665 y=30 width=8 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=15 +char id=346 x=616 y=0 width=10 height=13 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=15 +char id=347 x=478 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=15 +char id=348 x=767 y=0 width=9 height=13 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=15 +char id=349 x=859 y=29 width=7 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=15 +char id=350 x=803 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=15 +char id=351 x=929 y=29 width=7 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=15 +char id=352 x=603 y=0 width=10 height=13 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=15 +char id=353 x=445 y=31 width=8 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=15 +char id=354 x=304 y=16 width=10 height=12 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=15 +char id=355 x=751 y=16 width=6 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15 +char id=356 x=875 y=0 width=9 height=13 xoffset=2 yoffset=0 xadvance=8 page=0 chnl=15 +char id=357 x=456 y=31 width=8 height=10 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=15 +char id=358 x=373 y=44 width=9 height=9 xoffset=2 yoffset=3 xadvance=8 page=0 chnl=15 +char id=359 x=685 y=43 width=5 height=9 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=15 +char id=360 x=28 y=17 width=11 height=12 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=361 x=556 y=44 width=8 height=9 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=362 x=0 y=17 width=11 height=12 xoffset=2 yoffset=1 xadvance=9 page=0 chnl=15 +char id=363 x=607 y=43 width=7 height=9 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=15 +char id=364 x=207 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=365 x=434 y=31 width=8 height=10 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=15 +char id=366 x=221 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=367 x=741 y=16 width=7 height=11 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=368 x=235 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=369 x=350 y=31 width=9 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=370 x=154 y=16 width=11 height=12 xoffset=2 yoffset=3 xadvance=9 page=0 chnl=15 +char id=371 x=587 y=44 width=7 height=9 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=15 +char id=372 x=81 y=0 width=14 height=13 xoffset=2 yoffset=0 xadvance=12 page=0 chnl=15 +char id=373 x=157 y=31 width=10 height=10 xoffset=2 yoffset=2 xadvance=9 page=0 chnl=15 +char id=374 x=459 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=375 x=887 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=376 x=224 y=16 width=11 height=12 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=377 x=305 y=0 width=11 height=13 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=378 x=422 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=379 x=14 y=17 width=11 height=12 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=380 x=457 y=44 width=8 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=15 +char id=381 x=238 y=16 width=11 height=12 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=382 x=326 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=383 x=338 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=15 +char id=399 x=144 y=31 width=10 height=10 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=402 x=590 y=0 width=10 height=13 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=15 +char id=416 x=1006 y=0 width=12 height=12 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=15 +char id=417 x=745 y=43 width=9 height=8 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15 +char id=431 x=991 y=0 width=12 height=12 xoffset=2 yoffset=1 xadvance=10 page=0 chnl=15 +char id=432 x=757 y=43 width=9 height=8 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15 +char id=461 x=976 y=0 width=12 height=12 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=462 x=698 y=30 width=8 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=463 x=379 y=16 width=9 height=12 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=15 +char id=464 x=839 y=29 width=7 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15 +char id=465 x=577 y=0 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=15 +char id=466 x=599 y=30 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=467 x=319 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=468 x=588 y=31 width=8 height=10 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=469 x=333 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=470 x=698 y=16 width=8 height=11 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=471 x=375 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=472 x=426 y=16 width=8 height=12 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=473 x=389 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=474 x=470 y=16 width=8 height=12 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=475 x=403 y=0 width=11 height=13 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=15 +char id=476 x=533 y=16 width=7 height=12 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=506 x=249 y=0 width=11 height=13 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=507 x=719 y=0 width=9 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=15 +char id=508 x=63 y=0 width=15 height=13 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=15 +char id=509 x=53 y=32 width=10 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=15 +char id=510 x=0 y=0 width=13 height=14 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=511 x=675 y=16 width=9 height=11 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=710 x=268 y=56 width=5 height=3 xoffset=2 yoffset=2 xadvance=4 page=0 chnl=15 +char id=711 x=276 y=56 width=5 height=3 xoffset=3 yoffset=2 xadvance=4 page=0 chnl=15 +char id=713 x=400 y=56 width=5 height=2 xoffset=2 yoffset=3 xadvance=4 page=0 chnl=15 +char id=728 x=284 y=56 width=5 height=3 xoffset=3 yoffset=3 xadvance=4 page=0 chnl=15 +char id=729 x=418 y=56 width=2 height=2 xoffset=4 yoffset=3 xadvance=4 page=0 chnl=15 +char id=730 x=233 y=56 width=3 height=4 xoffset=3 yoffset=2 xadvance=4 page=0 chnl=15 +char id=731 x=312 y=56 width=3 height=3 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=15 +char id=732 x=366 y=56 width=6 height=2 xoffset=2 yoffset=3 xadvance=4 page=0 chnl=15 +char id=733 x=249 y=56 width=7 height=3 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=15 +char id=768 x=318 y=56 width=3 height=3 xoffset=-1 yoffset=2 xadvance=0 page=0 chnl=15 +char id=769 x=292 y=56 width=4 height=3 xoffset=-1 yoffset=2 xadvance=0 page=0 chnl=15 +char id=771 x=375 y=56 width=6 height=2 xoffset=-2 yoffset=3 xadvance=0 page=0 chnl=15 +char id=777 x=324 y=56 width=3 height=3 xoffset=-1 yoffset=2 xadvance=0 page=0 chnl=15 +char id=803 x=423 y=56 width=2 height=2 xoffset=-5 yoffset=12 xadvance=0 page=0 chnl=15 +char id=8204 x=513 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8205 x=517 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8206 x=521 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8207 x=525 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8211 x=464 y=56 width=8 height=1 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=15 +char id=8212 x=428 y=56 width=15 height=1 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=15 +char id=8213 x=446 y=56 width=15 height=1 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=15 +char id=8215 x=259 y=56 width=6 height=3 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=15 +char id=8216 x=215 y=56 width=3 height=4 xoffset=3 yoffset=2 xadvance=3 page=0 chnl=15 +char id=8217 x=227 y=56 width=3 height=4 xoffset=3 yoffset=2 xadvance=3 page=0 chnl=15 +char id=8218 x=221 y=56 width=3 height=4 xoffset=0 yoffset=10 xadvance=3 page=0 chnl=15 +char id=8219 x=203 y=56 width=3 height=4 xoffset=3 yoffset=2 xadvance=3 page=0 chnl=15 +char id=8220 x=174 y=56 width=5 height=4 xoffset=3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=8221 x=166 y=56 width=5 height=4 xoffset=3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=8222 x=149 y=56 width=6 height=4 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=15 +char id=8224 x=562 y=16 width=6 height=12 xoffset=2 yoffset=2 xadvance=6 page=0 chnl=15 +char id=8225 x=437 y=16 width=8 height=12 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15 +char id=8226 x=158 y=56 width=5 height=4 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=15 +char id=8230 x=330 y=56 width=11 height=2 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=15 +char id=8234 x=497 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8235 x=501 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8236 x=505 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8237 x=509 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8238 x=529 y=56 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8240 x=589 y=16 width=14 height=11 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=15 +char id=8242 x=189 y=56 width=4 height=4 xoffset=2 yoffset=2 xadvance=3 page=0 chnl=15 +char id=8243 x=139 y=56 width=7 height=4 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=15 +char id=8249 x=70 y=57 width=5 height=6 xoffset=1 yoffset=6 xadvance=3 page=0 chnl=15 +char id=8250 x=62 y=58 width=5 height=6 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=15 +char id=8252 x=92 y=31 width=10 height=10 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=8254 x=355 y=56 width=8 height=2 xoffset=2 yoffset=3 xadvance=6 page=0 chnl=15 +char id=8260 x=917 y=16 width=11 height=10 xoffset=-2 yoffset=2 xadvance=2 page=0 chnl=15 +char id=8355 x=226 y=44 width=11 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=15 +char id=8356 x=182 y=31 width=9 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=8359 x=794 y=16 width=14 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=15 +char id=8362 x=149 y=44 width=13 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=15 +char id=8363 x=662 y=16 width=10 height=11 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=15 +char id=8364 x=931 y=16 width=11 height=10 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=8453 x=959 y=15 width=11 height=10 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=8467 x=654 y=30 width=8 height=10 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=15 +char id=8470 x=760 y=16 width=14 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=15 +char id=8482 x=790 y=42 width=15 height=7 xoffset=2 yoffset=2 xadvance=13 page=0 chnl=15 +char id=8486 x=860 y=16 width=12 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=15 +char id=8494 x=886 y=42 width=8 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=15 +kernings count=620 +kerning first=212 second=260 amount=-1 +kerning first=212 second=256 amount=-1 +kerning first=212 second=198 amount=-1 +kerning first=44 second=8217 amount=-1 +kerning first=44 second=8220 amount=-1 +kerning first=44 second=8221 amount=-1 +kerning first=212 second=197 amount=-1 +kerning first=45 second=65 amount=-1 +kerning first=45 second=66 amount=-1 +kerning first=45 second=68 amount=-1 +kerning first=45 second=69 amount=-1 +kerning first=45 second=70 amount=-1 +kerning first=45 second=72 amount=-1 +kerning first=45 second=73 amount=-1 +kerning first=45 second=74 amount=-1 +kerning first=45 second=75 amount=-1 +kerning first=45 second=76 amount=-1 +kerning first=45 second=77 amount=-1 +kerning first=45 second=78 amount=-1 +kerning first=45 second=80 amount=-1 +kerning first=45 second=82 amount=-1 +kerning first=212 second=196 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=45 second=85 amount=-1 +kerning first=45 second=86 amount=-1 +kerning first=45 second=87 amount=-1 +kerning first=45 second=89 amount=-1 +kerning first=45 second=90 amount=-1 +kerning first=212 second=194 amount=-1 +kerning first=212 second=193 amount=-1 +kerning first=212 second=192 amount=-1 +kerning first=212 second=65 amount=-1 +kerning first=211 second=260 amount=-1 +kerning first=211 second=256 amount=-1 +kerning first=211 second=198 amount=-1 +kerning first=211 second=197 amount=-1 +kerning first=211 second=196 amount=-1 +kerning first=211 second=194 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=211 second=65 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=210 second=256 amount=-1 +kerning first=210 second=198 amount=-1 +kerning first=210 second=197 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=210 second=194 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=45 second=122 amount=-1 +kerning first=45 second=192 amount=-1 +kerning first=45 second=193 amount=-1 +kerning first=45 second=194 amount=-1 +kerning first=45 second=195 amount=-1 +kerning first=45 second=196 amount=-1 +kerning first=45 second=197 amount=-1 +kerning first=45 second=198 amount=-1 +kerning first=45 second=200 amount=-1 +kerning first=45 second=201 amount=-1 +kerning first=45 second=202 amount=-1 +kerning first=45 second=203 amount=-1 +kerning first=45 second=204 amount=-1 +kerning first=45 second=205 amount=-1 +kerning first=45 second=206 amount=-1 +kerning first=45 second=207 amount=-1 +kerning first=45 second=209 amount=-1 +kerning first=45 second=217 amount=-1 +kerning first=45 second=218 amount=-1 +kerning first=45 second=219 amount=-1 +kerning first=45 second=220 amount=-1 +kerning first=45 second=221 amount=-1 +kerning first=210 second=192 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=209 second=8249 amount=-1 +kerning first=209 second=171 amount=-1 +kerning first=209 second=45 amount=-1 +kerning first=208 second=260 amount=-1 +kerning first=208 second=256 amount=-1 +kerning first=208 second=198 amount=-1 +kerning first=208 second=197 amount=-1 +kerning first=208 second=196 amount=-1 +kerning first=208 second=194 amount=-1 +kerning first=208 second=193 amount=-1 +kerning first=208 second=192 amount=-1 +kerning first=208 second=65 amount=-1 +kerning first=206 second=8249 amount=-1 +kerning first=206 second=171 amount=-1 +kerning first=45 second=256 amount=-1 +kerning first=206 second=45 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=45 second=260 amount=-1 +kerning first=199 second=171 amount=-1 +kerning first=45 second=270 amount=-1 +kerning first=45 second=274 amount=-1 +kerning first=45 second=278 amount=-1 +kerning first=45 second=280 amount=-1 +kerning first=45 second=282 amount=-1 +kerning first=199 second=45 amount=-1 +kerning first=197 second=8249 amount=-1 +kerning first=197 second=8221 amount=-1 +kerning first=45 second=296 amount=-1 +kerning first=45 second=298 amount=-1 +kerning first=45 second=302 amount=-1 +kerning first=197 second=8220 amount=-1 +kerning first=197 second=8217 amount=-1 +kerning first=197 second=374 amount=-1 +kerning first=45 second=310 amount=-1 +kerning first=197 second=356 amount=-1 +kerning first=45 second=313 amount=-1 +kerning first=197 second=354 amount=-1 +kerning first=45 second=315 amount=-1 +kerning first=197 second=221 amount=-1 +kerning first=45 second=317 amount=-1 +kerning first=197 second=171 amount=-1 +kerning first=45 second=323 amount=-1 +kerning first=197 second=89 amount=-1 +kerning first=45 second=325 amount=-1 +kerning first=197 second=87 amount=-1 +kerning first=45 second=327 amount=-1 +kerning first=197 second=86 amount=-1 +kerning first=45 second=330 amount=-1 +kerning first=197 second=84 amount=-1 +kerning first=45 second=344 amount=-1 +kerning first=197 second=45 amount=-1 +kerning first=196 second=8249 amount=-1 +kerning first=196 second=8221 amount=-1 +kerning first=196 second=8220 amount=-1 +kerning first=196 second=8217 amount=-1 +kerning first=196 second=374 amount=-1 +kerning first=196 second=356 amount=-1 +kerning first=45 second=354 amount=-1 +kerning first=196 second=354 amount=-1 +kerning first=45 second=356 amount=-1 +kerning first=196 second=221 amount=-1 +kerning first=196 second=171 amount=-1 +kerning first=45 second=362 amount=-1 +kerning first=196 second=89 amount=-1 +kerning first=45 second=364 amount=-1 +kerning first=196 second=87 amount=-1 +kerning first=45 second=366 amount=-1 +kerning first=196 second=86 amount=-1 +kerning first=45 second=368 amount=-1 +kerning first=196 second=84 amount=-1 +kerning first=45 second=370 amount=-1 +kerning first=196 second=45 amount=-1 +kerning first=45 second=374 amount=-1 +kerning first=195 second=8249 amount=-1 +kerning first=45 second=377 amount=-1 +kerning first=45 second=378 amount=-1 +kerning first=45 second=379 amount=-1 +kerning first=45 second=380 amount=-1 +kerning first=45 second=381 amount=-1 +kerning first=45 second=382 amount=-1 +kerning first=195 second=8221 amount=-1 +kerning first=195 second=8220 amount=-1 +kerning first=195 second=8217 amount=-1 +kerning first=195 second=374 amount=-1 +kerning first=195 second=356 amount=-1 +kerning first=195 second=354 amount=-1 +kerning first=195 second=221 amount=-1 +kerning first=195 second=171 amount=-1 +kerning first=195 second=89 amount=-1 +kerning first=195 second=87 amount=-1 +kerning first=195 second=86 amount=-1 +kerning first=195 second=84 amount=-1 +kerning first=195 second=45 amount=-1 +kerning first=194 second=8249 amount=-1 +kerning first=194 second=8221 amount=-1 +kerning first=194 second=8220 amount=-1 +kerning first=194 second=8217 amount=-1 +kerning first=194 second=374 amount=-1 +kerning first=194 second=356 amount=-1 +kerning first=194 second=354 amount=-1 +kerning first=194 second=221 amount=-1 +kerning first=194 second=171 amount=-1 +kerning first=194 second=89 amount=-1 +kerning first=194 second=87 amount=-1 +kerning first=194 second=86 amount=-1 +kerning first=194 second=84 amount=-1 +kerning first=194 second=45 amount=-1 +kerning first=193 second=8249 amount=-1 +kerning first=193 second=8221 amount=-1 +kerning first=193 second=8220 amount=-1 +kerning first=193 second=8217 amount=-1 +kerning first=193 second=374 amount=-1 +kerning first=46 second=8217 amount=-1 +kerning first=46 second=8220 amount=-1 +kerning first=46 second=8221 amount=-1 +kerning first=193 second=356 amount=-1 +kerning first=65 second=45 amount=-1 +kerning first=193 second=354 amount=-1 +kerning first=193 second=221 amount=-1 +kerning first=193 second=171 amount=-1 +kerning first=193 second=89 amount=-1 +kerning first=193 second=87 amount=-1 +kerning first=65 second=84 amount=-1 +kerning first=193 second=86 amount=-1 +kerning first=65 second=86 amount=-1 +kerning first=65 second=87 amount=-1 +kerning first=65 second=89 amount=-1 +kerning first=193 second=84 amount=-1 +kerning first=193 second=45 amount=-1 +kerning first=192 second=8249 amount=-1 +kerning first=192 second=8221 amount=-1 +kerning first=192 second=8220 amount=-1 +kerning first=192 second=8217 amount=-1 +kerning first=192 second=374 amount=-1 +kerning first=192 second=356 amount=-1 +kerning first=192 second=354 amount=-1 +kerning first=192 second=221 amount=-1 +kerning first=192 second=171 amount=-1 +kerning first=192 second=89 amount=-1 +kerning first=192 second=87 amount=-1 +kerning first=192 second=86 amount=-1 +kerning first=192 second=84 amount=-1 +kerning first=192 second=45 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=187 second=381 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=65 second=171 amount=-1 +kerning first=187 second=379 amount=-1 +kerning first=187 second=378 amount=-1 +kerning first=187 second=377 amount=-1 +kerning first=187 second=374 amount=-1 +kerning first=187 second=370 amount=-1 +kerning first=187 second=368 amount=-1 +kerning first=187 second=366 amount=-1 +kerning first=187 second=364 amount=-1 +kerning first=187 second=362 amount=-1 +kerning first=187 second=356 amount=-1 +kerning first=187 second=354 amount=-1 +kerning first=65 second=221 amount=-1 +kerning first=187 second=344 amount=-1 +kerning first=187 second=330 amount=-1 +kerning first=187 second=327 amount=-1 +kerning first=187 second=325 amount=-1 +kerning first=187 second=323 amount=-1 +kerning first=187 second=317 amount=-1 +kerning first=187 second=315 amount=-1 +kerning first=187 second=313 amount=-1 +kerning first=187 second=310 amount=-1 +kerning first=187 second=302 amount=-1 +kerning first=187 second=298 amount=-1 +kerning first=187 second=296 amount=-1 +kerning first=187 second=282 amount=-1 +kerning first=187 second=280 amount=-1 +kerning first=187 second=278 amount=-1 +kerning first=187 second=274 amount=-1 +kerning first=187 second=270 amount=-1 +kerning first=187 second=260 amount=-1 +kerning first=187 second=256 amount=-1 +kerning first=187 second=221 amount=-1 +kerning first=187 second=220 amount=-1 +kerning first=187 second=219 amount=-1 +kerning first=187 second=218 amount=-1 +kerning first=187 second=217 amount=-1 +kerning first=187 second=209 amount=-1 +kerning first=187 second=207 amount=-1 +kerning first=187 second=206 amount=-1 +kerning first=187 second=205 amount=-1 +kerning first=187 second=204 amount=-1 +kerning first=187 second=203 amount=-1 +kerning first=187 second=202 amount=-1 +kerning first=187 second=201 amount=-1 +kerning first=187 second=200 amount=-1 +kerning first=187 second=198 amount=-1 +kerning first=187 second=197 amount=-1 +kerning first=187 second=196 amount=-1 +kerning first=187 second=195 amount=-1 +kerning first=187 second=194 amount=-1 +kerning first=187 second=193 amount=-1 +kerning first=187 second=192 amount=-1 +kerning first=187 second=122 amount=-1 +kerning first=187 second=90 amount=-1 +kerning first=187 second=89 amount=-1 +kerning first=187 second=87 amount=-1 +kerning first=187 second=86 amount=-1 +kerning first=187 second=85 amount=-1 +kerning first=187 second=84 amount=-1 +kerning first=187 second=82 amount=-1 +kerning first=187 second=80 amount=-1 +kerning first=187 second=78 amount=-1 +kerning first=187 second=77 amount=-1 +kerning first=187 second=76 amount=-1 +kerning first=187 second=75 amount=-1 +kerning first=187 second=74 amount=-1 +kerning first=187 second=73 amount=-1 +kerning first=187 second=72 amount=-1 +kerning first=187 second=70 amount=-1 +kerning first=187 second=69 amount=-1 +kerning first=187 second=68 amount=-1 +kerning first=65 second=354 amount=-1 +kerning first=187 second=66 amount=-1 +kerning first=65 second=356 amount=-1 +kerning first=187 second=65 amount=-1 +kerning first=121 second=8249 amount=-1 +kerning first=121 second=171 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=121 second=45 amount=-1 +kerning first=121 second=44 amount=-1 +kerning first=119 second=8249 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=119 second=45 amount=-1 +kerning first=65 second=374 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=118 second=8249 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=118 second=46 amount=-1 +kerning first=118 second=45 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=114 second=46 amount=-1 +kerning first=114 second=44 amount=-1 +kerning first=113 second=106 amount=1 +kerning first=110 second=8221 amount=-1 +kerning first=110 second=8220 amount=-1 +kerning first=110 second=8217 amount=-1 +kerning first=109 second=8221 amount=-1 +kerning first=109 second=8220 amount=-1 +kerning first=109 second=8217 amount=-1 +kerning first=104 second=8221 amount=-1 +kerning first=65 second=8217 amount=-1 +kerning first=65 second=8220 amount=-1 +kerning first=65 second=8221 amount=-1 +kerning first=65 second=8249 amount=-1 +kerning first=104 second=8220 amount=-1 +kerning first=104 second=8217 amount=-1 +kerning first=102 second=254 amount=1 +kerning first=102 second=98 amount=1 +kerning first=89 second=8249 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=89 second=291 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=66 second=66 amount=-1 +kerning first=89 second=289 amount=-1 +kerning first=66 second=68 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=70 amount=-1 +kerning first=89 second=287 amount=-1 +kerning first=66 second=72 amount=-1 +kerning first=66 second=73 amount=-1 +kerning first=66 second=74 amount=-1 +kerning first=66 second=75 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=77 amount=-1 +kerning first=66 second=78 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=89 second=260 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=83 amount=-1 +kerning first=89 second=259 amount=-1 +kerning first=89 second=257 amount=-1 +kerning first=89 second=256 amount=-1 +kerning first=89 second=230 amount=-1 +kerning first=89 second=229 amount=-1 +kerning first=66 second=90 amount=-1 +kerning first=89 second=227 amount=-1 +kerning first=89 second=226 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=89 second=198 amount=-1 +kerning first=89 second=197 amount=-1 +kerning first=89 second=196 amount=-1 +kerning first=66 second=103 amount=-1 +kerning first=89 second=194 amount=-1 +kerning first=89 second=193 amount=-1 +kerning first=89 second=192 amount=-1 +kerning first=89 second=171 amount=-1 +kerning first=89 second=103 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=89 second=74 amount=-1 +kerning first=89 second=65 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=89 second=45 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=88 second=8249 amount=-1 +kerning first=88 second=171 amount=-1 +kerning first=88 second=45 amount=-1 +kerning first=87 second=8249 amount=-1 +kerning first=87 second=291 amount=-1 +kerning first=87 second=289 amount=-1 +kerning first=87 second=287 amount=-1 +kerning first=66 second=122 amount=-1 +kerning first=87 second=261 amount=-1 +kerning first=87 second=260 amount=-1 +kerning first=66 second=192 amount=-1 +kerning first=66 second=193 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=87 second=259 amount=-1 +kerning first=66 second=200 amount=-1 +kerning first=66 second=201 amount=-1 +kerning first=66 second=202 amount=-1 +kerning first=66 second=203 amount=-1 +kerning first=66 second=204 amount=-1 +kerning first=66 second=205 amount=-1 +kerning first=66 second=206 amount=-1 +kerning first=66 second=207 amount=-1 +kerning first=66 second=209 amount=-1 +kerning first=87 second=257 amount=-1 +kerning first=87 second=256 amount=-1 +kerning first=87 second=230 amount=-1 +kerning first=87 second=229 amount=-1 +kerning first=87 second=227 amount=-1 +kerning first=87 second=226 amount=-1 +kerning first=87 second=225 amount=-1 +kerning first=87 second=198 amount=-1 +kerning first=87 second=197 amount=-1 +kerning first=87 second=196 amount=-1 +kerning first=87 second=194 amount=-1 +kerning first=87 second=193 amount=-1 +kerning first=87 second=192 amount=-1 +kerning first=87 second=171 amount=-1 +kerning first=87 second=103 amount=-1 +kerning first=87 second=97 amount=-1 +kerning first=87 second=74 amount=-1 +kerning first=87 second=65 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=87 second=45 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=86 second=8249 amount=-1 +kerning first=86 second=291 amount=-1 +kerning first=86 second=289 amount=-1 +kerning first=86 second=287 amount=-1 +kerning first=86 second=261 amount=-1 +kerning first=86 second=260 amount=-1 +kerning first=86 second=259 amount=-1 +kerning first=86 second=257 amount=-1 +kerning first=86 second=256 amount=-1 +kerning first=86 second=230 amount=-1 +kerning first=86 second=229 amount=-1 +kerning first=86 second=227 amount=-1 +kerning first=86 second=226 amount=-1 +kerning first=86 second=225 amount=-1 +kerning first=86 second=198 amount=-1 +kerning first=86 second=197 amount=-1 +kerning first=86 second=196 amount=-1 +kerning first=86 second=194 amount=-1 +kerning first=86 second=193 amount=-1 +kerning first=66 second=256 amount=-1 +kerning first=86 second=192 amount=-1 +kerning first=86 second=171 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=86 second=103 amount=-1 +kerning first=86 second=97 amount=-1 +kerning first=86 second=74 amount=-1 +kerning first=86 second=65 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=86 second=45 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=85 second=8249 amount=-1 +kerning first=66 second=270 amount=-1 +kerning first=66 second=274 amount=-1 +kerning first=85 second=291 amount=-1 +kerning first=85 second=289 amount=-1 +kerning first=66 second=278 amount=-1 +kerning first=85 second=287 amount=-1 +kerning first=66 second=280 amount=-1 +kerning first=85 second=260 amount=-1 +kerning first=66 second=282 amount=-1 +kerning first=85 second=256 amount=-1 +kerning first=85 second=198 amount=-1 +kerning first=85 second=197 amount=-1 +kerning first=66 second=287 amount=-1 +kerning first=85 second=196 amount=-1 +kerning first=66 second=289 amount=-1 +kerning first=85 second=194 amount=-1 +kerning first=66 second=291 amount=-1 +kerning first=66 second=296 amount=-1 +kerning first=66 second=298 amount=-1 +kerning first=66 second=302 amount=-1 +kerning first=85 second=193 amount=-1 +kerning first=66 second=304 amount=-1 +kerning first=85 second=192 amount=-1 +kerning first=66 second=310 amount=-1 +kerning first=85 second=171 amount=-1 +kerning first=66 second=313 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=66 second=315 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=66 second=317 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=66 second=323 amount=-1 +kerning first=85 second=45 amount=-1 +kerning first=66 second=325 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=66 second=327 amount=-1 +kerning first=84 second=8249 amount=-1 +kerning first=66 second=330 amount=-1 +kerning first=84 second=291 amount=-1 +kerning first=84 second=289 amount=-1 +kerning first=84 second=287 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=84 second=260 amount=-1 +kerning first=84 second=259 amount=-1 +kerning first=84 second=257 amount=-1 +kerning first=84 second=256 amount=-1 +kerning first=84 second=230 amount=-1 +kerning first=66 second=344 amount=-1 +kerning first=84 second=229 amount=-1 +kerning first=66 second=346 amount=-1 +kerning first=84 second=227 amount=-1 +kerning first=66 second=350 amount=-1 +kerning first=84 second=226 amount=-1 +kerning first=66 second=352 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=84 second=198 amount=-1 +kerning first=84 second=197 amount=-1 +kerning first=84 second=196 amount=-1 +kerning first=84 second=194 amount=-1 +kerning first=84 second=193 amount=-1 +kerning first=84 second=192 amount=-1 +kerning first=84 second=171 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=84 second=74 amount=-1 +kerning first=84 second=65 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=84 second=45 amount=-1 +kerning first=84 second=44 amount=-1 +kerning first=83 second=260 amount=-1 +kerning first=66 second=377 amount=-1 +kerning first=66 second=378 amount=-1 +kerning first=66 second=379 amount=-1 +kerning first=66 second=380 amount=-1 +kerning first=66 second=381 amount=-1 +kerning first=66 second=382 amount=-1 +kerning first=83 second=256 amount=-1 +kerning first=83 second=198 amount=-1 +kerning first=83 second=197 amount=-1 +kerning first=83 second=196 amount=-1 +kerning first=83 second=194 amount=-1 +kerning first=83 second=193 amount=-1 +kerning first=83 second=192 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=82 second=8221 amount=-1 +kerning first=82 second=8220 amount=-1 +kerning first=82 second=8217 amount=-1 +kerning first=82 second=171 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=81 second=256 amount=-1 +kerning first=81 second=198 amount=-1 +kerning first=81 second=197 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=81 second=194 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=81 second=65 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=66 second=8217 amount=-1 +kerning first=66 second=8220 amount=-1 +kerning first=66 second=8221 amount=-1 +kerning first=80 second=256 amount=-1 +kerning first=80 second=198 amount=-1 +kerning first=80 second=197 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=80 second=194 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=80 second=46 amount=-1 +kerning first=80 second=44 amount=-1 +kerning first=79 second=260 amount=-1 +kerning first=79 second=256 amount=-1 +kerning first=79 second=198 amount=-1 +kerning first=79 second=197 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=79 second=194 amount=-1 +kerning first=79 second=193 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=78 second=8249 amount=-1 +kerning first=78 second=171 amount=-1 +kerning first=78 second=45 amount=-1 +kerning first=77 second=8249 amount=-1 +kerning first=77 second=171 amount=-1 +kerning first=77 second=45 amount=-1 +kerning first=76 second=8221 amount=-1 +kerning first=76 second=8220 amount=-1 +kerning first=76 second=8217 amount=-1 +kerning first=75 second=8249 amount=-1 +kerning first=75 second=171 amount=-1 +kerning first=75 second=45 amount=-1 +kerning first=74 second=8249 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=74 second=198 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=74 second=192 amount=-1 +kerning first=74 second=171 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=45 amount=-1 +kerning first=73 second=8249 amount=-1 +kerning first=73 second=171 amount=-1 +kerning first=73 second=45 amount=-1 +kerning first=72 second=8249 amount=-1 +kerning first=72 second=171 amount=-1 +kerning first=72 second=45 amount=-1 +kerning first=70 second=74 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=68 second=256 amount=-1 +kerning first=68 second=198 amount=-1 +kerning first=68 second=197 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=68 second=194 amount=-1 +kerning first=68 second=193 amount=-1 +kerning first=68 second=192 amount=-1 +kerning first=67 second=171 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=67 second=8249 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16I_0.png b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16I_0.png new file mode 100644 index 000000000..42977ca06 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16I_0.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16Ipad5555.fnt b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16Ipad5555.fnt new file mode 100644 index 000000000..61497cf7f --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16Ipad5555.fnt @@ -0,0 +1,1031 @@ +info face="FreeSerif" size=16 bold=0 italic=1 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=5,5,5,5 spacing=3,3 outline=0 +common lineHeight=16 base=12 scaleW=512 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=4 greenChnl=4 blueChnl=4 +page id=0 file="BM-FreeSerif16Ipad5555_0.png" +chars count=406 +char id=-1 x=352 y=152 width=21 height=20 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=32 x=427 y=367 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=3 page=0 chnl=15 +char id=33 x=76 y=271 width=15 height=20 xoffset=-4 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=34 x=276 y=353 width=14 height=14 xoffset=-2 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=35 x=312 y=290 width=18 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=36 x=487 y=103 width=19 height=22 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=37 x=188 y=176 width=20 height=20 xoffset=-3 yoffset=-3 xadvance=11 page=0 chnl=15 +char id=38 x=448 y=152 width=21 height=20 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=39 x=373 y=353 width=12 height=14 xoffset=-2 yoffset=-3 xadvance=2 page=0 chnl=15 +char id=40 x=248 y=128 width=17 height=22 xoffset=-4 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=41 x=268 y=128 width=16 height=22 xoffset=-5 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=42 x=466 y=331 width=16 height=16 xoffset=-3 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=43 x=111 y=338 width=18 height=17 xoffset=-4 yoffset=0 xadvance=7 page=0 chnl=15 +char id=44 x=293 y=353 width=13 height=14 xoffset=-5 yoffset=5 xadvance=3 page=0 chnl=15 +char id=45 x=393 y=368 width=14 height=11 xoffset=-4 yoffset=3 xadvance=4 page=0 chnl=15 +char id=46 x=256 y=374 width=12 height=12 xoffset=-4 yoffset=5 xadvance=3 page=0 chnl=15 +char id=47 x=457 y=198 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=48 x=478 y=198 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=49 x=57 y=271 width=16 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=50 x=416 y=175 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=51 x=231 y=222 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=52 x=21 y=225 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=53 x=482 y=175 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=54 x=0 y=202 width=19 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=55 x=42 y=225 width=18 height=20 xoffset=-3 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=56 x=63 y=225 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=57 x=84 y=225 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=58 x=371 y=333 width=14 height=17 xoffset=-4 yoffset=0 xadvance=3 page=0 chnl=15 +char id=59 x=495 y=75 width=14 height=19 xoffset=-5 yoffset=0 xadvance=3 page=0 chnl=15 +char id=60 x=319 y=312 width=19 height=18 xoffset=-4 yoffset=0 xadvance=7 page=0 chnl=15 +char id=61 x=127 y=358 width=19 height=14 xoffset=-5 yoffset=1 xadvance=7 page=0 chnl=15 +char id=62 x=297 y=312 width=19 height=18 xoffset=-5 yoffset=-1 xadvance=7 page=0 chnl=15 +char id=63 x=443 y=244 width=16 height=20 xoffset=-3 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=64 x=48 y=179 width=21 height=20 xoffset=-3 yoffset=-3 xadvance=12 page=0 chnl=15 +char id=65 x=303 y=176 width=20 height=20 xoffset=-5 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=66 x=69 y=294 width=20 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=67 x=96 y=179 width=20 height=20 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=68 x=316 y=268 width=22 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=69 x=463 y=267 width=21 height=19 xoffset=-5 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=70 x=415 y=267 width=21 height=19 xoffset=-5 yoffset=-2 xadvance=7 page=0 chnl=15 +char id=71 x=119 y=179 width=20 height=20 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=72 x=186 y=271 width=23 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=73 x=333 y=290 width=18 height=19 xoffset=-5 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=74 x=286 y=199 width=19 height=20 xoffset=-5 yoffset=-2 xadvance=5 page=0 chnl=15 +char id=75 x=290 y=268 width=23 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=76 x=181 y=293 width=19 height=19 xoffset=-5 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=77 x=130 y=271 width=25 height=19 xoffset=-5 yoffset=-2 xadvance=12 page=0 chnl=15 +char id=78 x=251 y=153 width=23 height=20 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=79 x=142 y=179 width=20 height=20 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=80 x=46 y=294 width=20 height=19 xoffset=-5 yoffset=-2 xadvance=7 page=0 chnl=15 +char id=81 x=239 y=103 width=20 height=22 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=82 x=0 y=294 width=20 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=83 x=22 y=202 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=7 page=0 chnl=15 +char id=84 x=115 y=294 width=19 height=19 xoffset=-3 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=85 x=24 y=179 width=21 height=20 xoffset=-3 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=86 x=257 y=176 width=20 height=20 xoffset=-2 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=87 x=170 y=153 width=24 height=20 xoffset=-3 yoffset=-2 xadvance=12 page=0 chnl=15 +char id=88 x=238 y=268 width=23 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=89 x=487 y=267 width=21 height=19 xoffset=-3 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=90 x=439 y=267 width=21 height=19 xoffset=-5 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=91 x=0 y=130 width=18 height=22 xoffset=-5 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=92 x=496 y=26 width=12 height=20 xoffset=-3 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=93 x=208 y=128 width=17 height=22 xoffset=-5 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=94 x=428 y=331 width=16 height=16 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=95 x=122 y=376 width=18 height=12 xoffset=-6 yoffset=7 xadvance=6 page=0 chnl=15 +char id=96 x=34 y=377 width=13 height=13 xoffset=-2 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=97 x=215 y=337 width=17 height=17 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=98 x=404 y=244 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=99 x=195 y=337 width=17 height=17 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=15 +char id=100 x=336 y=222 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=101 x=315 y=333 width=16 height=17 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=15 +char id=102 x=66 y=202 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=103 x=242 y=199 width=19 height=20 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=104 x=415 y=198 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=105 x=38 y=271 width=16 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=106 x=110 y=79 width=18 height=23 xoffset=-7 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=107 x=372 y=175 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=108 x=424 y=244 width=16 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=109 x=454 y=311 width=22 height=17 xoffset=-5 yoffset=0 xadvance=10 page=0 chnl=15 +char id=110 x=132 y=338 width=18 height=17 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=111 x=295 y=333 width=17 height=17 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=15 +char id=112 x=110 y=202 width=19 height=20 xoffset=-6 yoffset=0 xadvance=6 page=0 chnl=15 +char id=113 x=126 y=225 width=18 height=20 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=114 x=275 y=333 width=17 height=17 xoffset=-5 yoffset=0 xadvance=4 page=0 chnl=15 +char id=115 x=334 y=333 width=16 height=17 xoffset=-5 yoffset=0 xadvance=5 page=0 chnl=15 +char id=116 x=256 y=312 width=15 height=19 xoffset=-4 yoffset=-1 xadvance=3 page=0 chnl=15 +char id=117 x=255 y=336 width=17 height=17 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=15 +char id=118 x=235 y=337 width=17 height=17 xoffset=-3 yoffset=0 xadvance=6 page=0 chnl=15 +char id=119 x=479 y=311 width=20 height=17 xoffset=-3 yoffset=0 xadvance=9 page=0 chnl=15 +char id=120 x=174 y=337 width=18 height=17 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=121 x=308 y=199 width=19 height=20 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=122 x=153 y=337 width=18 height=17 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=123 x=325 y=128 width=16 height=22 xoffset=-3 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=124 x=94 y=271 width=15 height=20 xoffset=-5 yoffset=-3 xadvance=2 page=0 chnl=15 +char id=125 x=188 y=128 width=17 height=22 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=126 x=388 y=352 width=17 height=13 xoffset=-4 yoffset=2 xadvance=7 page=0 chnl=15 +char id=160 x=441 y=366 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=3 page=0 chnl=15 +char id=161 x=494 y=52 width=15 height=20 xoffset=-5 yoffset=0 xadvance=4 page=0 chnl=15 +char id=162 x=42 y=248 width=18 height=20 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=15 +char id=163 x=438 y=175 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=164 x=274 y=312 width=20 height=18 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=165 x=247 y=290 width=19 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=166 x=112 y=271 width=15 height=20 xoffset=-5 yoffset=-3 xadvance=2 page=0 chnl=15 +char id=167 x=168 y=128 width=17 height=22 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=168 x=202 y=374 width=15 height=12 xoffset=-3 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=169 x=443 y=128 width=21 height=21 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=170 x=110 y=358 width=14 height=15 xoffset=-3 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=171 x=388 y=333 width=17 height=16 xoffset=-4 yoffset=1 xadvance=6 page=0 chnl=15 +char id=172 x=53 y=358 width=18 height=15 xoffset=-4 yoffset=1 xadvance=7 page=0 chnl=15 +char id=173 x=410 y=367 width=14 height=11 xoffset=-4 yoffset=3 xadvance=4 page=0 chnl=15 +char id=174 x=371 y=128 width=21 height=21 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=175 x=220 y=374 width=15 height=12 xoffset=-3 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=176 x=92 y=358 width=15 height=15 xoffset=-2 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=177 x=92 y=294 width=20 height=19 xoffset=-5 yoffset=-2 xadvance=7 page=0 chnl=15 +char id=178 x=447 y=331 width=16 height=16 xoffset=-4 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=179 x=18 y=358 width=15 height=16 xoffset=-4 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=180 x=17 y=377 width=14 height=13 xoffset=-2 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=181 x=220 y=199 width=19 height=20 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=182 x=465 y=103 width=19 height=22 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=183 x=271 y=373 width=12 height=12 xoffset=-3 yoffset=3 xadvance=3 page=0 chnl=15 +char id=184 x=242 y=357 width=14 height=14 xoffset=-5 yoffset=6 xadvance=4 page=0 chnl=15 +char id=185 x=36 y=358 width=14 height=16 xoffset=-3 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=186 x=74 y=358 width=15 height=15 xoffset=-3 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=187 x=408 y=332 width=17 height=16 xoffset=-5 yoffset=1 xadvance=6 page=0 chnl=15 +char id=188 x=0 y=179 width=21 height=20 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=189 x=72 y=179 width=21 height=20 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=190 x=328 y=153 width=21 height=20 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=191 x=19 y=271 width=16 height=20 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=192 x=184 y=52 width=20 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=193 x=323 y=0 width=21 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=194 x=351 y=78 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=195 x=72 y=105 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=196 x=96 y=105 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=197 x=207 y=52 width=20 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=198 x=158 y=271 width=25 height=19 xoffset=-5 yoffset=-2 xadvance=12 page=0 chnl=15 +char id=199 x=358 y=26 width=20 height=23 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=200 x=240 y=26 width=21 height=23 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=201 x=216 y=26 width=21 height=23 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=202 x=120 y=105 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=203 x=144 y=105 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=204 x=131 y=79 width=18 height=23 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=205 x=88 y=79 width=19 height=23 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=206 x=126 y=130 width=18 height=22 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=207 x=147 y=130 width=18 height=22 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=208 x=341 y=268 width=22 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=209 x=178 y=78 width=23 height=22 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=210 x=473 y=26 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=211 x=312 y=26 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=212 x=335 y=26 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=213 x=285 y=103 width=20 height=22 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=214 x=354 y=103 width=20 height=22 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=215 x=68 y=338 width=19 height=17 xoffset=-5 yoffset=0 xadvance=7 page=0 chnl=15 +char id=216 x=152 y=78 width=23 height=22 xoffset=-5 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=217 x=443 y=0 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=218 x=96 y=27 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=219 x=0 y=27 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=220 x=399 y=78 width=21 height=22 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=221 x=467 y=0 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=222 x=23 y=294 width=20 height=19 xoffset=-5 yoffset=-2 xadvance=7 page=0 chnl=15 +char id=223 x=88 y=202 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=224 x=244 y=245 width=17 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=225 x=105 y=225 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=226 x=284 y=245 width=17 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=227 x=459 y=289 width=18 height=19 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=228 x=417 y=289 width=18 height=19 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=229 x=84 y=155 width=17 height=21 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=230 x=0 y=338 width=20 height=17 xoffset=-5 yoffset=0 xadvance=8 page=0 chnl=15 +char id=231 x=104 y=248 width=17 height=20 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=232 x=481 y=244 width=16 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=233 x=144 y=248 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=234 x=184 y=248 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=235 x=120 y=316 width=17 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=236 x=462 y=244 width=16 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=237 x=84 y=248 width=17 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=238 x=344 y=245 width=17 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=239 x=20 y=316 width=17 height=19 xoffset=-5 yoffset=-2 xadvance=3 page=0 chnl=15 +char id=240 x=63 y=248 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=241 x=225 y=292 width=19 height=19 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=242 x=364 y=245 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=243 x=0 y=248 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=244 x=324 y=245 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=245 x=396 y=289 width=18 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=246 x=375 y=290 width=18 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=247 x=385 y=312 width=18 height=18 xoffset=-4 yoffset=-1 xadvance=7 page=0 chnl=15 +char id=248 x=203 y=293 width=19 height=19 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=15 +char id=249 x=224 y=245 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=250 x=483 y=221 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=251 x=264 y=245 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=252 x=100 y=316 width=17 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=253 x=296 y=52 width=19 height=23 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=254 x=274 y=52 width=19 height=23 xoffset=-6 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=255 x=399 y=103 width=19 height=22 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=256 x=395 y=128 width=21 height=21 xoffset=-5 yoffset=-4 xadvance=9 page=0 chnl=15 +char id=257 x=354 y=290 width=18 height=19 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=15 +char id=258 x=120 y=26 width=21 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=259 x=420 y=221 width=18 height=20 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=260 x=375 y=78 width=21 height=22 xoffset=-5 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=261 x=160 y=315 width=17 height=19 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=262 x=427 y=26 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=263 x=378 y=221 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=264 x=450 y=26 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=265 x=384 y=244 width=17 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=266 x=262 y=103 width=20 height=22 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=267 x=180 y=315 width=17 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=268 x=404 y=26 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=269 x=210 y=222 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=270 x=298 y=0 width=22 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=271 x=211 y=176 width=20 height=20 xoffset=-4 yoffset=-3 xadvance=8 page=0 chnl=15 +char id=272 x=366 y=268 width=22 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=273 x=264 y=199 width=19 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=274 x=419 y=128 width=21 height=21 xoffset=-5 yoffset=-4 xadvance=8 page=0 chnl=15 +char id=275 x=140 y=315 width=17 height=19 xoffset=-4 yoffset=-1 xadvance=6 page=0 chnl=15 +char id=276 x=447 y=78 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=277 x=399 y=221 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=278 x=0 y=105 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=279 x=219 y=315 width=16 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=280 x=423 y=78 width=21 height=22 xoffset=-5 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=281 x=200 y=315 width=16 height=19 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=15 +char id=282 x=471 y=78 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=283 x=462 y=221 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=284 x=161 y=52 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=285 x=428 y=52 width=19 height=23 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=286 x=115 y=53 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=287 x=22 y=79 width=19 height=23 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=288 x=216 y=103 width=20 height=22 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=289 x=421 y=103 width=19 height=22 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=290 x=26 y=0 width=20 height=24 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=291 x=71 y=0 width=19 height=24 xoffset=-5 yoffset=-4 xadvance=6 page=0 chnl=15 +char id=292 x=272 y=0 width=23 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=293 x=318 y=52 width=19 height=23 xoffset=-5 yoffset=-5 xadvance=6 page=0 chnl=15 +char id=294 x=212 y=270 width=23 height=19 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=295 x=21 y=248 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=296 x=377 y=103 width=19 height=22 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=297 x=0 y=316 width=17 height=19 xoffset=-5 yoffset=-2 xadvance=3 page=0 chnl=15 +char id=298 x=0 y=155 width=18 height=21 xoffset=-5 yoffset=-4 xadvance=4 page=0 chnl=15 +char id=299 x=406 y=311 width=17 height=18 xoffset=-5 yoffset=-1 xadvance=3 page=0 chnl=15 +char id=300 x=362 y=52 width=19 height=23 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=301 x=60 y=316 width=17 height=19 xoffset=-5 yoffset=-2 xadvance=3 page=0 chnl=15 +char id=302 x=63 y=130 width=18 height=22 xoffset=-5 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=303 x=306 y=128 width=16 height=22 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=304 x=84 y=130 width=18 height=22 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=305 x=353 y=333 width=15 height=17 xoffset=-5 yoffset=0 xadvance=3 page=0 chnl=15 +char id=306 x=277 y=153 width=23 height=20 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=307 x=0 y=79 width=19 height=23 xoffset=-5 yoffset=-3 xadvance=7 page=0 chnl=15 +char id=308 x=472 y=52 width=19 height=23 xoffset=-5 yoffset=-5 xadvance=5 page=0 chnl=15 +char id=309 x=450 y=52 width=19 height=23 xoffset=-7 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=310 x=220 y=0 width=23 height=23 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=311 x=49 y=0 width=19 height=24 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=312 x=46 y=338 width=19 height=17 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=313 x=230 y=52 width=19 height=23 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=314 x=491 y=0 width=18 height=23 xoffset=-5 yoffset=-5 xadvance=3 page=0 chnl=15 +char id=315 x=384 y=52 width=19 height=23 xoffset=-5 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=316 x=93 y=0 width=17 height=24 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=317 x=280 y=176 width=20 height=20 xoffset=-5 yoffset=-3 xadvance=8 page=0 chnl=15 +char id=318 x=0 y=225 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=319 x=269 y=290 width=19 height=19 xoffset=-5 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=320 x=204 y=247 width=17 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=321 x=159 y=293 width=19 height=19 xoffset=-5 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=322 x=0 y=271 width=16 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=323 x=168 y=0 width=23 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=324 x=132 y=202 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=325 x=194 y=0 width=23 height=23 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=326 x=42 y=155 width=18 height=21 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=327 x=246 y=0 width=23 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=328 x=44 y=202 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=329 x=189 y=224 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=7 page=0 chnl=15 +char id=330 x=376 y=152 width=21 height=20 xoffset=-5 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=331 x=252 y=222 width=18 height=20 xoffset=-5 yoffset=0 xadvance=6 page=0 chnl=15 +char id=332 x=331 y=103 width=20 height=22 xoffset=-4 yoffset=-4 xadvance=9 page=0 chnl=15 +char id=333 x=438 y=289 width=18 height=19 xoffset=-4 yoffset=-1 xadvance=6 page=0 chnl=15 +char id=334 x=381 y=26 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=335 x=315 y=222 width=18 height=20 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=336 x=264 y=26 width=21 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=337 x=460 y=175 width=19 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=338 x=224 y=153 width=24 height=20 xoffset=-4 yoffset=-3 xadvance=12 page=0 chnl=15 +char id=339 x=23 y=338 width=20 height=17 xoffset=-4 yoffset=0 xadvance=9 page=0 chnl=15 +char id=340 x=138 y=52 width=20 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=341 x=441 y=221 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=342 x=92 y=53 width=20 height=23 xoffset=-5 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=343 x=63 y=155 width=18 height=21 xoffset=-6 yoffset=0 xadvance=4 page=0 chnl=15 +char id=344 x=24 y=105 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=345 x=294 y=222 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=346 x=69 y=53 width=20 height=23 xoffset=-5 yoffset=-5 xadvance=7 page=0 chnl=15 +char id=347 x=436 y=198 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=348 x=340 y=52 width=19 height=23 xoffset=-5 yoffset=-5 xadvance=7 page=0 chnl=15 +char id=349 x=164 y=248 width=17 height=20 xoffset=-5 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=350 x=406 y=52 width=19 height=23 xoffset=-5 yoffset=-3 xadvance=7 page=0 chnl=15 +char id=351 x=304 y=245 width=17 height=20 xoffset=-5 yoffset=0 xadvance=5 page=0 chnl=15 +char id=352 x=46 y=53 width=20 height=23 xoffset=-5 yoffset=-5 xadvance=7 page=0 chnl=15 +char id=353 x=373 y=198 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=354 x=308 y=103 width=20 height=22 xoffset=-4 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=355 x=124 y=155 width=16 height=21 xoffset=-5 yoffset=-1 xadvance=3 page=0 chnl=15 +char id=356 x=44 y=79 width=19 height=23 xoffset=-3 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=357 x=394 y=198 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=358 x=137 y=293 width=19 height=19 xoffset=-3 yoffset=-2 xadvance=8 page=0 chnl=15 +char id=359 x=238 y=314 width=15 height=19 xoffset=-4 yoffset=-1 xadvance=3 page=0 chnl=15 +char id=360 x=327 y=78 width=21 height=22 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=361 x=480 y=289 width=18 height=19 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=362 x=279 y=78 width=21 height=22 xoffset=-3 yoffset=-4 xadvance=9 page=0 chnl=15 +char id=363 x=80 y=316 width=17 height=19 xoffset=-4 yoffset=-1 xadvance=6 page=0 chnl=15 +char id=364 x=347 y=0 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=365 x=352 y=199 width=18 height=20 xoffset=-4 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=366 x=371 y=0 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=367 x=104 y=155 width=17 height=21 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=368 x=395 y=0 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=369 x=198 y=199 width=19 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=370 x=48 y=105 width=21 height=22 xoffset=-3 yoffset=-2 xadvance=9 page=0 chnl=15 +char id=371 x=40 y=316 width=17 height=19 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=15 +char id=372 x=141 y=0 width=24 height=23 xoffset=-3 yoffset=-5 xadvance=12 page=0 chnl=15 +char id=373 x=349 y=176 width=20 height=20 xoffset=-3 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=374 x=288 y=26 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=375 x=66 y=79 width=19 height=23 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=376 x=168 y=103 width=21 height=22 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=377 x=24 y=27 width=21 height=23 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=378 x=330 y=199 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=379 x=303 y=78 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=380 x=291 y=290 width=18 height=19 xoffset=-5 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=381 x=192 y=103 width=21 height=22 xoffset=-5 yoffset=-5 xadvance=8 page=0 chnl=15 +char id=382 x=154 y=202 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=383 x=176 y=201 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=399 x=326 y=176 width=20 height=20 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=402 x=23 y=53 width=20 height=23 xoffset=-6 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=416 x=254 y=78 width=22 height=22 xoffset=-4 yoffset=-4 xadvance=9 page=0 chnl=15 +char id=417 x=341 y=312 width=19 height=18 xoffset=-4 yoffset=-1 xadvance=7 page=0 chnl=15 +char id=431 x=229 y=78 width=22 height=22 xoffset=-3 yoffset=-4 xadvance=10 page=0 chnl=15 +char id=432 x=363 y=312 width=19 height=18 xoffset=-4 yoffset=-1 xadvance=7 page=0 chnl=15 +char id=461 x=204 y=78 width=22 height=22 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=462 x=357 y=222 width=18 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=463 x=443 y=103 width=19 height=22 xoffset=-5 yoffset=-5 xadvance=4 page=0 chnl=15 +char id=464 x=124 y=248 width=17 height=20 xoffset=-5 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=465 x=0 y=53 width=20 height=23 xoffset=-4 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=466 x=168 y=225 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=467 x=48 y=27 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=468 x=147 y=225 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=469 x=72 y=27 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=470 x=21 y=155 width=18 height=21 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=471 x=144 y=26 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=472 x=21 y=130 width=18 height=22 xoffset=-4 yoffset=-4 xadvance=6 page=0 chnl=15 +char id=473 x=168 y=26 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=474 x=105 y=130 width=18 height=22 xoffset=-4 yoffset=-4 xadvance=6 page=0 chnl=15 +char id=475 x=192 y=26 width=21 height=23 xoffset=-3 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=476 x=228 y=128 width=17 height=22 xoffset=-4 yoffset=-4 xadvance=6 page=0 chnl=15 +char id=506 x=419 y=0 width=21 height=23 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=507 x=252 y=52 width=19 height=23 xoffset=-5 yoffset=-5 xadvance=6 page=0 chnl=15 +char id=508 x=113 y=0 width=25 height=23 xoffset=-5 yoffset=-5 xadvance=12 page=0 chnl=15 +char id=509 x=165 y=178 width=20 height=20 xoffset=-5 yoffset=-3 xadvance=8 page=0 chnl=15 +char id=510 x=0 y=0 width=23 height=24 xoffset=-5 yoffset=-5 xadvance=9 page=0 chnl=15 +char id=511 x=490 y=128 width=19 height=21 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=710 x=447 y=350 width=15 height=13 xoffset=-3 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=711 x=465 y=350 width=15 height=13 xoffset=-2 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=713 x=238 y=374 width=15 height=12 xoffset=-3 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=728 x=483 y=350 width=15 height=13 xoffset=-2 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=729 x=286 y=370 width=12 height=12 xoffset=-1 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=730 x=357 y=353 width=13 height=14 xoffset=-2 yoffset=-3 xadvance=4 page=0 chnl=15 +char id=731 x=50 y=377 width=13 height=13 xoffset=-5 yoffset=6 xadvance=4 page=0 chnl=15 +char id=732 x=164 y=375 width=16 height=12 xoffset=-3 yoffset=-2 xadvance=4 page=0 chnl=15 +char id=733 x=408 y=351 width=17 height=13 xoffset=-3 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=768 x=66 y=376 width=13 height=13 xoffset=-6 yoffset=-3 xadvance=0 page=0 chnl=15 +char id=769 x=0 y=377 width=14 height=13 xoffset=-6 yoffset=-3 xadvance=0 page=0 chnl=15 +char id=771 x=183 y=374 width=16 height=12 xoffset=-7 yoffset=-2 xadvance=0 page=0 chnl=15 +char id=777 x=82 y=376 width=13 height=13 xoffset=-6 yoffset=-3 xadvance=0 page=0 chnl=15 +char id=803 x=301 y=370 width=12 height=12 xoffset=-10 yoffset=7 xadvance=0 page=0 chnl=15 +char id=8204 x=0 y=393 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8205 x=14 y=393 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8206 x=28 y=393 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8207 x=42 y=393 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8211 x=372 y=370 width=18 height=11 xoffset=-5 yoffset=3 xadvance=6 page=0 chnl=15 +char id=8212 x=316 y=370 width=25 height=11 xoffset=-5 yoffset=3 xadvance=13 page=0 chnl=15 +char id=8213 x=344 y=370 width=25 height=11 xoffset=-5 yoffset=3 xadvance=13 page=0 chnl=15 +char id=8215 x=428 y=350 width=16 height=13 xoffset=-5 yoffset=7 xadvance=6 page=0 chnl=15 +char id=8216 x=309 y=353 width=13 height=14 xoffset=-2 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=8217 x=341 y=353 width=13 height=14 xoffset=-2 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=8218 x=325 y=353 width=13 height=14 xoffset=-5 yoffset=5 xadvance=3 page=0 chnl=15 +char id=8219 x=496 y=152 width=13 height=14 xoffset=-2 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=8220 x=224 y=357 width=15 height=14 xoffset=-2 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=8221 x=206 y=357 width=15 height=14 xoffset=-2 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=8222 x=169 y=357 width=16 height=14 xoffset=-5 yoffset=5 xadvance=6 page=0 chnl=15 +char id=8224 x=287 y=128 width=16 height=22 xoffset=-3 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=8225 x=42 y=130 width=18 height=22 xoffset=-4 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=8226 x=188 y=357 width=15 height=14 xoffset=-4 yoffset=0 xadvance=4 page=0 chnl=15 +char id=8230 x=98 y=376 width=21 height=12 xoffset=-4 yoffset=5 xadvance=13 page=0 chnl=15 +char id=8234 x=455 y=366 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8235 x=469 y=366 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8236 x=483 y=366 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8237 x=497 y=366 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8238 x=56 y=393 width=11 height=11 xoffset=-5 yoffset=-5 xadvance=0 page=0 chnl=15 +char id=8240 x=344 y=128 width=24 height=21 xoffset=-4 yoffset=-3 xadvance=13 page=0 chnl=15 +char id=8242 x=259 y=356 width=14 height=14 xoffset=-3 yoffset=-3 xadvance=3 page=0 chnl=15 +char id=8243 x=149 y=358 width=17 height=14 xoffset=-3 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=8249 x=0 y=358 width=15 height=16 xoffset=-4 yoffset=1 xadvance=3 page=0 chnl=15 +char id=8250 x=485 y=331 width=15 height=16 xoffset=-5 yoffset=1 xadvance=3 page=0 chnl=15 +char id=8252 x=234 y=176 width=20 height=20 xoffset=-4 yoffset=-3 xadvance=9 page=0 chnl=15 +char id=8254 x=143 y=375 width=18 height=12 xoffset=-3 yoffset=-2 xadvance=6 page=0 chnl=15 +char id=8260 x=400 y=152 width=21 height=20 xoffset=-7 yoffset=-3 xadvance=2 page=0 chnl=15 +char id=8355 x=391 y=267 width=21 height=19 xoffset=-5 yoffset=-2 xadvance=7 page=0 chnl=15 +char id=8356 x=394 y=175 width=19 height=20 xoffset=-5 yoffset=-3 xadvance=6 page=0 chnl=15 +char id=8359 x=197 y=153 width=24 height=20 xoffset=-5 yoffset=-2 xadvance=12 page=0 chnl=15 +char id=8362 x=264 y=268 width=23 height=19 xoffset=-5 yoffset=-2 xadvance=11 page=0 chnl=15 +char id=8363 x=467 y=128 width=20 height=21 xoffset=-5 yoffset=-4 xadvance=7 page=0 chnl=15 +char id=8364 x=424 y=152 width=21 height=20 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=8453 x=472 y=152 width=21 height=20 xoffset=-4 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=8467 x=273 y=222 width=18 height=20 xoffset=-4 yoffset=-3 xadvance=5 page=0 chnl=15 +char id=8470 x=143 y=155 width=24 height=20 xoffset=-5 yoffset=-2 xadvance=11 page=0 chnl=15 +char id=8482 x=426 y=311 width=25 height=17 xoffset=-3 yoffset=-3 xadvance=13 page=0 chnl=15 +char id=8486 x=303 y=153 width=22 height=20 xoffset=-5 yoffset=-3 xadvance=10 page=0 chnl=15 +char id=8494 x=90 y=338 width=18 height=17 xoffset=-4 yoffset=0 xadvance=7 page=0 chnl=15 +kernings count=620 +kerning first=212 second=260 amount=-1 +kerning first=212 second=256 amount=-1 +kerning first=212 second=198 amount=-1 +kerning first=44 second=8217 amount=-1 +kerning first=44 second=8220 amount=-1 +kerning first=44 second=8221 amount=-1 +kerning first=212 second=197 amount=-1 +kerning first=45 second=65 amount=-1 +kerning first=45 second=66 amount=-1 +kerning first=45 second=68 amount=-1 +kerning first=45 second=69 amount=-1 +kerning first=45 second=70 amount=-1 +kerning first=45 second=72 amount=-1 +kerning first=45 second=73 amount=-1 +kerning first=45 second=74 amount=-1 +kerning first=45 second=75 amount=-1 +kerning first=45 second=76 amount=-1 +kerning first=45 second=77 amount=-1 +kerning first=45 second=78 amount=-1 +kerning first=45 second=80 amount=-1 +kerning first=45 second=82 amount=-1 +kerning first=212 second=196 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=45 second=85 amount=-1 +kerning first=45 second=86 amount=-1 +kerning first=45 second=87 amount=-1 +kerning first=45 second=89 amount=-1 +kerning first=45 second=90 amount=-1 +kerning first=212 second=194 amount=-1 +kerning first=212 second=193 amount=-1 +kerning first=212 second=192 amount=-1 +kerning first=212 second=65 amount=-1 +kerning first=211 second=260 amount=-1 +kerning first=211 second=256 amount=-1 +kerning first=211 second=198 amount=-1 +kerning first=211 second=197 amount=-1 +kerning first=211 second=196 amount=-1 +kerning first=211 second=194 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=211 second=65 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=210 second=256 amount=-1 +kerning first=210 second=198 amount=-1 +kerning first=210 second=197 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=210 second=194 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=45 second=122 amount=-1 +kerning first=45 second=192 amount=-1 +kerning first=45 second=193 amount=-1 +kerning first=45 second=194 amount=-1 +kerning first=45 second=195 amount=-1 +kerning first=45 second=196 amount=-1 +kerning first=45 second=197 amount=-1 +kerning first=45 second=198 amount=-1 +kerning first=45 second=200 amount=-1 +kerning first=45 second=201 amount=-1 +kerning first=45 second=202 amount=-1 +kerning first=45 second=203 amount=-1 +kerning first=45 second=204 amount=-1 +kerning first=45 second=205 amount=-1 +kerning first=45 second=206 amount=-1 +kerning first=45 second=207 amount=-1 +kerning first=45 second=209 amount=-1 +kerning first=45 second=217 amount=-1 +kerning first=45 second=218 amount=-1 +kerning first=45 second=219 amount=-1 +kerning first=45 second=220 amount=-1 +kerning first=45 second=221 amount=-1 +kerning first=210 second=192 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=209 second=8249 amount=-1 +kerning first=209 second=171 amount=-1 +kerning first=209 second=45 amount=-1 +kerning first=208 second=260 amount=-1 +kerning first=208 second=256 amount=-1 +kerning first=208 second=198 amount=-1 +kerning first=208 second=197 amount=-1 +kerning first=208 second=196 amount=-1 +kerning first=208 second=194 amount=-1 +kerning first=208 second=193 amount=-1 +kerning first=208 second=192 amount=-1 +kerning first=208 second=65 amount=-1 +kerning first=206 second=8249 amount=-1 +kerning first=206 second=171 amount=-1 +kerning first=45 second=256 amount=-1 +kerning first=206 second=45 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=45 second=260 amount=-1 +kerning first=199 second=171 amount=-1 +kerning first=45 second=270 amount=-1 +kerning first=45 second=274 amount=-1 +kerning first=45 second=278 amount=-1 +kerning first=45 second=280 amount=-1 +kerning first=45 second=282 amount=-1 +kerning first=199 second=45 amount=-1 +kerning first=197 second=8249 amount=-1 +kerning first=197 second=8221 amount=-1 +kerning first=45 second=296 amount=-1 +kerning first=45 second=298 amount=-1 +kerning first=45 second=302 amount=-1 +kerning first=197 second=8220 amount=-1 +kerning first=197 second=8217 amount=-1 +kerning first=197 second=374 amount=-1 +kerning first=45 second=310 amount=-1 +kerning first=197 second=356 amount=-1 +kerning first=45 second=313 amount=-1 +kerning first=197 second=354 amount=-1 +kerning first=45 second=315 amount=-1 +kerning first=197 second=221 amount=-1 +kerning first=45 second=317 amount=-1 +kerning first=197 second=171 amount=-1 +kerning first=45 second=323 amount=-1 +kerning first=197 second=89 amount=-1 +kerning first=45 second=325 amount=-1 +kerning first=197 second=87 amount=-1 +kerning first=45 second=327 amount=-1 +kerning first=197 second=86 amount=-1 +kerning first=45 second=330 amount=-1 +kerning first=197 second=84 amount=-1 +kerning first=45 second=344 amount=-1 +kerning first=197 second=45 amount=-1 +kerning first=196 second=8249 amount=-1 +kerning first=196 second=8221 amount=-1 +kerning first=196 second=8220 amount=-1 +kerning first=196 second=8217 amount=-1 +kerning first=196 second=374 amount=-1 +kerning first=196 second=356 amount=-1 +kerning first=45 second=354 amount=-1 +kerning first=196 second=354 amount=-1 +kerning first=45 second=356 amount=-1 +kerning first=196 second=221 amount=-1 +kerning first=196 second=171 amount=-1 +kerning first=45 second=362 amount=-1 +kerning first=196 second=89 amount=-1 +kerning first=45 second=364 amount=-1 +kerning first=196 second=87 amount=-1 +kerning first=45 second=366 amount=-1 +kerning first=196 second=86 amount=-1 +kerning first=45 second=368 amount=-1 +kerning first=196 second=84 amount=-1 +kerning first=45 second=370 amount=-1 +kerning first=196 second=45 amount=-1 +kerning first=45 second=374 amount=-1 +kerning first=195 second=8249 amount=-1 +kerning first=45 second=377 amount=-1 +kerning first=45 second=378 amount=-1 +kerning first=45 second=379 amount=-1 +kerning first=45 second=380 amount=-1 +kerning first=45 second=381 amount=-1 +kerning first=45 second=382 amount=-1 +kerning first=195 second=8221 amount=-1 +kerning first=195 second=8220 amount=-1 +kerning first=195 second=8217 amount=-1 +kerning first=195 second=374 amount=-1 +kerning first=195 second=356 amount=-1 +kerning first=195 second=354 amount=-1 +kerning first=195 second=221 amount=-1 +kerning first=195 second=171 amount=-1 +kerning first=195 second=89 amount=-1 +kerning first=195 second=87 amount=-1 +kerning first=195 second=86 amount=-1 +kerning first=195 second=84 amount=-1 +kerning first=195 second=45 amount=-1 +kerning first=194 second=8249 amount=-1 +kerning first=194 second=8221 amount=-1 +kerning first=194 second=8220 amount=-1 +kerning first=194 second=8217 amount=-1 +kerning first=194 second=374 amount=-1 +kerning first=194 second=356 amount=-1 +kerning first=194 second=354 amount=-1 +kerning first=194 second=221 amount=-1 +kerning first=194 second=171 amount=-1 +kerning first=194 second=89 amount=-1 +kerning first=194 second=87 amount=-1 +kerning first=194 second=86 amount=-1 +kerning first=194 second=84 amount=-1 +kerning first=194 second=45 amount=-1 +kerning first=193 second=8249 amount=-1 +kerning first=193 second=8221 amount=-1 +kerning first=193 second=8220 amount=-1 +kerning first=193 second=8217 amount=-1 +kerning first=193 second=374 amount=-1 +kerning first=46 second=8217 amount=-1 +kerning first=46 second=8220 amount=-1 +kerning first=46 second=8221 amount=-1 +kerning first=193 second=356 amount=-1 +kerning first=65 second=45 amount=-1 +kerning first=193 second=354 amount=-1 +kerning first=193 second=221 amount=-1 +kerning first=193 second=171 amount=-1 +kerning first=193 second=89 amount=-1 +kerning first=193 second=87 amount=-1 +kerning first=65 second=84 amount=-1 +kerning first=193 second=86 amount=-1 +kerning first=65 second=86 amount=-1 +kerning first=65 second=87 amount=-1 +kerning first=65 second=89 amount=-1 +kerning first=193 second=84 amount=-1 +kerning first=193 second=45 amount=-1 +kerning first=192 second=8249 amount=-1 +kerning first=192 second=8221 amount=-1 +kerning first=192 second=8220 amount=-1 +kerning first=192 second=8217 amount=-1 +kerning first=192 second=374 amount=-1 +kerning first=192 second=356 amount=-1 +kerning first=192 second=354 amount=-1 +kerning first=192 second=221 amount=-1 +kerning first=192 second=171 amount=-1 +kerning first=192 second=89 amount=-1 +kerning first=192 second=87 amount=-1 +kerning first=192 second=86 amount=-1 +kerning first=192 second=84 amount=-1 +kerning first=192 second=45 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=187 second=381 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=65 second=171 amount=-1 +kerning first=187 second=379 amount=-1 +kerning first=187 second=378 amount=-1 +kerning first=187 second=377 amount=-1 +kerning first=187 second=374 amount=-1 +kerning first=187 second=370 amount=-1 +kerning first=187 second=368 amount=-1 +kerning first=187 second=366 amount=-1 +kerning first=187 second=364 amount=-1 +kerning first=187 second=362 amount=-1 +kerning first=187 second=356 amount=-1 +kerning first=187 second=354 amount=-1 +kerning first=65 second=221 amount=-1 +kerning first=187 second=344 amount=-1 +kerning first=187 second=330 amount=-1 +kerning first=187 second=327 amount=-1 +kerning first=187 second=325 amount=-1 +kerning first=187 second=323 amount=-1 +kerning first=187 second=317 amount=-1 +kerning first=187 second=315 amount=-1 +kerning first=187 second=313 amount=-1 +kerning first=187 second=310 amount=-1 +kerning first=187 second=302 amount=-1 +kerning first=187 second=298 amount=-1 +kerning first=187 second=296 amount=-1 +kerning first=187 second=282 amount=-1 +kerning first=187 second=280 amount=-1 +kerning first=187 second=278 amount=-1 +kerning first=187 second=274 amount=-1 +kerning first=187 second=270 amount=-1 +kerning first=187 second=260 amount=-1 +kerning first=187 second=256 amount=-1 +kerning first=187 second=221 amount=-1 +kerning first=187 second=220 amount=-1 +kerning first=187 second=219 amount=-1 +kerning first=187 second=218 amount=-1 +kerning first=187 second=217 amount=-1 +kerning first=187 second=209 amount=-1 +kerning first=187 second=207 amount=-1 +kerning first=187 second=206 amount=-1 +kerning first=187 second=205 amount=-1 +kerning first=187 second=204 amount=-1 +kerning first=187 second=203 amount=-1 +kerning first=187 second=202 amount=-1 +kerning first=187 second=201 amount=-1 +kerning first=187 second=200 amount=-1 +kerning first=187 second=198 amount=-1 +kerning first=187 second=197 amount=-1 +kerning first=187 second=196 amount=-1 +kerning first=187 second=195 amount=-1 +kerning first=187 second=194 amount=-1 +kerning first=187 second=193 amount=-1 +kerning first=187 second=192 amount=-1 +kerning first=187 second=122 amount=-1 +kerning first=187 second=90 amount=-1 +kerning first=187 second=89 amount=-1 +kerning first=187 second=87 amount=-1 +kerning first=187 second=86 amount=-1 +kerning first=187 second=85 amount=-1 +kerning first=187 second=84 amount=-1 +kerning first=187 second=82 amount=-1 +kerning first=187 second=80 amount=-1 +kerning first=187 second=78 amount=-1 +kerning first=187 second=77 amount=-1 +kerning first=187 second=76 amount=-1 +kerning first=187 second=75 amount=-1 +kerning first=187 second=74 amount=-1 +kerning first=187 second=73 amount=-1 +kerning first=187 second=72 amount=-1 +kerning first=187 second=70 amount=-1 +kerning first=187 second=69 amount=-1 +kerning first=187 second=68 amount=-1 +kerning first=65 second=354 amount=-1 +kerning first=187 second=66 amount=-1 +kerning first=65 second=356 amount=-1 +kerning first=187 second=65 amount=-1 +kerning first=121 second=8249 amount=-1 +kerning first=121 second=171 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=121 second=45 amount=-1 +kerning first=121 second=44 amount=-1 +kerning first=119 second=8249 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=119 second=45 amount=-1 +kerning first=65 second=374 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=118 second=8249 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=118 second=46 amount=-1 +kerning first=118 second=45 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=114 second=46 amount=-1 +kerning first=114 second=44 amount=-1 +kerning first=113 second=106 amount=1 +kerning first=110 second=8221 amount=-1 +kerning first=110 second=8220 amount=-1 +kerning first=110 second=8217 amount=-1 +kerning first=109 second=8221 amount=-1 +kerning first=109 second=8220 amount=-1 +kerning first=109 second=8217 amount=-1 +kerning first=104 second=8221 amount=-1 +kerning first=65 second=8217 amount=-1 +kerning first=65 second=8220 amount=-1 +kerning first=65 second=8221 amount=-1 +kerning first=65 second=8249 amount=-1 +kerning first=104 second=8220 amount=-1 +kerning first=104 second=8217 amount=-1 +kerning first=102 second=254 amount=1 +kerning first=102 second=98 amount=1 +kerning first=89 second=8249 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=89 second=291 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=66 second=66 amount=-1 +kerning first=89 second=289 amount=-1 +kerning first=66 second=68 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=70 amount=-1 +kerning first=89 second=287 amount=-1 +kerning first=66 second=72 amount=-1 +kerning first=66 second=73 amount=-1 +kerning first=66 second=74 amount=-1 +kerning first=66 second=75 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=77 amount=-1 +kerning first=66 second=78 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=89 second=260 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=83 amount=-1 +kerning first=89 second=259 amount=-1 +kerning first=89 second=257 amount=-1 +kerning first=89 second=256 amount=-1 +kerning first=89 second=230 amount=-1 +kerning first=89 second=229 amount=-1 +kerning first=66 second=90 amount=-1 +kerning first=89 second=227 amount=-1 +kerning first=89 second=226 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=89 second=198 amount=-1 +kerning first=89 second=197 amount=-1 +kerning first=89 second=196 amount=-1 +kerning first=66 second=103 amount=-1 +kerning first=89 second=194 amount=-1 +kerning first=89 second=193 amount=-1 +kerning first=89 second=192 amount=-1 +kerning first=89 second=171 amount=-1 +kerning first=89 second=103 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=89 second=74 amount=-1 +kerning first=89 second=65 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=89 second=45 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=88 second=8249 amount=-1 +kerning first=88 second=171 amount=-1 +kerning first=88 second=45 amount=-1 +kerning first=87 second=8249 amount=-1 +kerning first=87 second=291 amount=-1 +kerning first=87 second=289 amount=-1 +kerning first=87 second=287 amount=-1 +kerning first=66 second=122 amount=-1 +kerning first=87 second=261 amount=-1 +kerning first=87 second=260 amount=-1 +kerning first=66 second=192 amount=-1 +kerning first=66 second=193 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=87 second=259 amount=-1 +kerning first=66 second=200 amount=-1 +kerning first=66 second=201 amount=-1 +kerning first=66 second=202 amount=-1 +kerning first=66 second=203 amount=-1 +kerning first=66 second=204 amount=-1 +kerning first=66 second=205 amount=-1 +kerning first=66 second=206 amount=-1 +kerning first=66 second=207 amount=-1 +kerning first=66 second=209 amount=-1 +kerning first=87 second=257 amount=-1 +kerning first=87 second=256 amount=-1 +kerning first=87 second=230 amount=-1 +kerning first=87 second=229 amount=-1 +kerning first=87 second=227 amount=-1 +kerning first=87 second=226 amount=-1 +kerning first=87 second=225 amount=-1 +kerning first=87 second=198 amount=-1 +kerning first=87 second=197 amount=-1 +kerning first=87 second=196 amount=-1 +kerning first=87 second=194 amount=-1 +kerning first=87 second=193 amount=-1 +kerning first=87 second=192 amount=-1 +kerning first=87 second=171 amount=-1 +kerning first=87 second=103 amount=-1 +kerning first=87 second=97 amount=-1 +kerning first=87 second=74 amount=-1 +kerning first=87 second=65 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=87 second=45 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=86 second=8249 amount=-1 +kerning first=86 second=291 amount=-1 +kerning first=86 second=289 amount=-1 +kerning first=86 second=287 amount=-1 +kerning first=86 second=261 amount=-1 +kerning first=86 second=260 amount=-1 +kerning first=86 second=259 amount=-1 +kerning first=86 second=257 amount=-1 +kerning first=86 second=256 amount=-1 +kerning first=86 second=230 amount=-1 +kerning first=86 second=229 amount=-1 +kerning first=86 second=227 amount=-1 +kerning first=86 second=226 amount=-1 +kerning first=86 second=225 amount=-1 +kerning first=86 second=198 amount=-1 +kerning first=86 second=197 amount=-1 +kerning first=86 second=196 amount=-1 +kerning first=86 second=194 amount=-1 +kerning first=86 second=193 amount=-1 +kerning first=66 second=256 amount=-1 +kerning first=86 second=192 amount=-1 +kerning first=86 second=171 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=86 second=103 amount=-1 +kerning first=86 second=97 amount=-1 +kerning first=86 second=74 amount=-1 +kerning first=86 second=65 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=86 second=45 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=85 second=8249 amount=-1 +kerning first=66 second=270 amount=-1 +kerning first=66 second=274 amount=-1 +kerning first=85 second=291 amount=-1 +kerning first=85 second=289 amount=-1 +kerning first=66 second=278 amount=-1 +kerning first=85 second=287 amount=-1 +kerning first=66 second=280 amount=-1 +kerning first=85 second=260 amount=-1 +kerning first=66 second=282 amount=-1 +kerning first=85 second=256 amount=-1 +kerning first=85 second=198 amount=-1 +kerning first=85 second=197 amount=-1 +kerning first=66 second=287 amount=-1 +kerning first=85 second=196 amount=-1 +kerning first=66 second=289 amount=-1 +kerning first=85 second=194 amount=-1 +kerning first=66 second=291 amount=-1 +kerning first=66 second=296 amount=-1 +kerning first=66 second=298 amount=-1 +kerning first=66 second=302 amount=-1 +kerning first=85 second=193 amount=-1 +kerning first=66 second=304 amount=-1 +kerning first=85 second=192 amount=-1 +kerning first=66 second=310 amount=-1 +kerning first=85 second=171 amount=-1 +kerning first=66 second=313 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=66 second=315 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=66 second=317 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=66 second=323 amount=-1 +kerning first=85 second=45 amount=-1 +kerning first=66 second=325 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=66 second=327 amount=-1 +kerning first=84 second=8249 amount=-1 +kerning first=66 second=330 amount=-1 +kerning first=84 second=291 amount=-1 +kerning first=84 second=289 amount=-1 +kerning first=84 second=287 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=84 second=260 amount=-1 +kerning first=84 second=259 amount=-1 +kerning first=84 second=257 amount=-1 +kerning first=84 second=256 amount=-1 +kerning first=84 second=230 amount=-1 +kerning first=66 second=344 amount=-1 +kerning first=84 second=229 amount=-1 +kerning first=66 second=346 amount=-1 +kerning first=84 second=227 amount=-1 +kerning first=66 second=350 amount=-1 +kerning first=84 second=226 amount=-1 +kerning first=66 second=352 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=84 second=198 amount=-1 +kerning first=84 second=197 amount=-1 +kerning first=84 second=196 amount=-1 +kerning first=84 second=194 amount=-1 +kerning first=84 second=193 amount=-1 +kerning first=84 second=192 amount=-1 +kerning first=84 second=171 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=84 second=74 amount=-1 +kerning first=84 second=65 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=84 second=45 amount=-1 +kerning first=84 second=44 amount=-1 +kerning first=83 second=260 amount=-1 +kerning first=66 second=377 amount=-1 +kerning first=66 second=378 amount=-1 +kerning first=66 second=379 amount=-1 +kerning first=66 second=380 amount=-1 +kerning first=66 second=381 amount=-1 +kerning first=66 second=382 amount=-1 +kerning first=83 second=256 amount=-1 +kerning first=83 second=198 amount=-1 +kerning first=83 second=197 amount=-1 +kerning first=83 second=196 amount=-1 +kerning first=83 second=194 amount=-1 +kerning first=83 second=193 amount=-1 +kerning first=83 second=192 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=82 second=8221 amount=-1 +kerning first=82 second=8220 amount=-1 +kerning first=82 second=8217 amount=-1 +kerning first=82 second=171 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=81 second=256 amount=-1 +kerning first=81 second=198 amount=-1 +kerning first=81 second=197 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=81 second=194 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=81 second=65 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=66 second=8217 amount=-1 +kerning first=66 second=8220 amount=-1 +kerning first=66 second=8221 amount=-1 +kerning first=80 second=256 amount=-1 +kerning first=80 second=198 amount=-1 +kerning first=80 second=197 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=80 second=194 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=80 second=46 amount=-1 +kerning first=80 second=44 amount=-1 +kerning first=79 second=260 amount=-1 +kerning first=79 second=256 amount=-1 +kerning first=79 second=198 amount=-1 +kerning first=79 second=197 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=79 second=194 amount=-1 +kerning first=79 second=193 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=78 second=8249 amount=-1 +kerning first=78 second=171 amount=-1 +kerning first=78 second=45 amount=-1 +kerning first=77 second=8249 amount=-1 +kerning first=77 second=171 amount=-1 +kerning first=77 second=45 amount=-1 +kerning first=76 second=8221 amount=-1 +kerning first=76 second=8220 amount=-1 +kerning first=76 second=8217 amount=-1 +kerning first=75 second=8249 amount=-1 +kerning first=75 second=171 amount=-1 +kerning first=75 second=45 amount=-1 +kerning first=74 second=8249 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=74 second=198 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=74 second=192 amount=-1 +kerning first=74 second=171 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=45 amount=-1 +kerning first=73 second=8249 amount=-1 +kerning first=73 second=171 amount=-1 +kerning first=73 second=45 amount=-1 +kerning first=72 second=8249 amount=-1 +kerning first=72 second=171 amount=-1 +kerning first=72 second=45 amount=-1 +kerning first=70 second=74 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=68 second=256 amount=-1 +kerning first=68 second=198 amount=-1 +kerning first=68 second=197 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=68 second=194 amount=-1 +kerning first=68 second=193 amount=-1 +kerning first=68 second=192 amount=-1 +kerning first=67 second=171 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=67 second=8249 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16Ipad5555_0.png b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16Ipad5555_0.png new file mode 100644 index 000000000..72b806625 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif16Ipad5555_0.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif32.fnt b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif32.fnt new file mode 100644 index 000000000..c7b6891c1 --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif32.fnt @@ -0,0 +1,5904 @@ +info face="FreeSerif" size=32 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=3,3 outline=0 +common lineHeight=32 base=24 scaleW=512 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=4 greenChnl=4 blueChnl=4 +page id=0 file="BM-FreeSerif32_0.png" +chars count=406 +char id=-1 x=148 y=222 width=15 height=18 xoffset=2 yoffset=6 xadvance=18 page=0 chnl=15 +char id=32 x=507 y=229 width=1 height=1 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=15 +char id=33 x=110 y=201 width=4 height=19 xoffset=3 yoffset=6 xadvance=9 page=0 chnl=15 +char id=34 x=422 y=256 width=7 height=7 xoffset=2 yoffset=6 xadvance=11 page=0 chnl=15 +char id=35 x=200 y=222 width=14 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=36 x=224 y=109 width=12 height=22 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=15 +char id=37 x=241 y=134 width=19 height=19 xoffset=1 yoffset=6 xadvance=22 page=0 chnl=15 +char id=38 x=263 y=134 width=19 height=19 xoffset=1 yoffset=6 xadvance=20 page=0 chnl=15 +char id=39 x=505 y=238 width=3 height=7 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=15 +char id=40 x=495 y=82 width=8 height=23 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=15 +char id=41 x=0 y=112 width=8 height=23 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15 +char id=42 x=170 y=262 width=10 height=12 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=15 +char id=43 x=340 y=241 width=14 height=14 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=44 x=465 y=255 width=5 height=7 xoffset=1 yoffset=21 xadvance=6 page=0 chnl=15 +char id=45 x=333 y=270 width=7 height=2 xoffset=1 yoffset=17 xadvance=9 page=0 chnl=15 +char id=46 x=179 y=277 width=4 height=4 xoffset=1 yoffset=21 xadvance=6 page=0 chnl=15 +char id=47 x=471 y=175 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15 +char id=48 x=206 y=156 width=13 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=49 x=404 y=219 width=8 height=18 xoffset=2 yoffset=6 xadvance=13 page=0 chnl=15 +char id=50 x=233 y=221 width=13 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=51 x=498 y=131 width=11 height=19 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=15 +char id=52 x=249 y=221 width=13 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=53 x=135 y=179 width=12 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=54 x=60 y=180 width=12 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=55 x=90 y=180 width=12 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=56 x=378 y=176 width=11 height=19 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=15 +char id=57 x=165 y=179 width=12 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=58 x=505 y=197 width=4 height=13 xoffset=2 yoffset=11 xadvance=7 page=0 chnl=15 +char id=59 x=154 y=243 width=5 height=17 xoffset=1 yoffset=11 xadvance=7 page=0 chnl=15 +char id=60 x=289 y=242 width=14 height=15 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=61 x=280 y=260 width=14 height=8 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=15 +char id=62 x=306 y=242 width=14 height=15 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=63 x=458 y=175 width=10 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=15 +char id=64 x=219 y=134 width=19 height=19 xoffset=3 yoffset=6 xadvance=24 page=0 chnl=15 +char id=65 x=235 y=200 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=66 x=0 y=226 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=67 x=478 y=131 width=17 height=19 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=68 x=257 y=200 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=69 x=19 y=226 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=70 x=76 y=224 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15 +char id=71 x=285 y=134 width=19 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=72 x=279 y=200 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=73 x=368 y=219 width=9 height=18 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15 +char id=74 x=406 y=176 width=10 height=19 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=15 +char id=75 x=345 y=198 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=76 x=38 y=226 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=77 x=143 y=201 width=23 height=18 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=15 +char id=78 x=307 y=133 width=19 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=79 x=436 y=131 width=18 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=80 x=94 y=224 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15 +char id=81 x=179 y=83 width=19 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=82 x=389 y=198 width=18 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=83 x=459 y=153 width=12 height=19 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15 +char id=84 x=57 y=226 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=85 x=351 y=132 width=19 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=86 x=131 y=135 width=19 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=87 x=0 y=138 width=25 height=19 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=15 +char id=88 x=191 y=201 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=89 x=213 y=200 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=90 x=410 y=198 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=91 x=41 y=111 width=6 height=23 xoffset=2 yoffset=6 xadvance=9 page=0 chnl=15 +char id=92 x=59 y=204 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15 +char id=93 x=32 y=111 width=6 height=23 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=15 +char id=94 x=194 y=262 width=12 height=11 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=95 x=258 y=275 width=14 height=2 xoffset=0 yoffset=25 xadvance=13 page=0 chnl=15 +char id=96 x=10 y=283 width=7 height=6 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=15 +char id=97 x=48 y=267 width=12 height=13 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15 +char id=98 x=222 y=156 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=99 x=78 y=267 width=11 height=13 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15 +char id=100 x=174 y=157 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=101 x=92 y=265 width=11 height=13 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15 +char id=102 x=419 y=176 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=15 +char id=103 x=429 y=154 width=12 height=19 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=104 x=302 y=156 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=105 x=100 y=202 width=7 height=19 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=106 x=274 y=28 width=8 height=25 xoffset=-2 yoffset=5 xadvance=7 page=0 chnl=15 +char id=107 x=93 y=157 width=14 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=108 x=90 y=202 width=7 height=19 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=109 x=387 y=240 width=21 height=13 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=15 +char id=110 x=16 y=267 width=13 height=13 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=111 x=63 y=267 width=12 height=13 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=112 x=254 y=156 width=13 height=19 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=113 x=270 y=156 width=13 height=19 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=114 x=106 y=265 width=9 height=13 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=15 +char id=115 x=118 y=264 width=9 height=13 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=15 +char id=116 x=243 y=242 width=8 height=16 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=117 x=32 y=267 width=13 height=13 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=15 +char id=118 x=489 y=238 width=13 height=13 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=15 +char id=119 x=411 y=240 width=18 height=13 xoffset=0 yoffset=12 xadvance=19 page=0 chnl=15 +char id=120 x=140 y=263 width=13 height=12 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=15 +char id=121 x=217 y=221 width=13 height=18 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=15 +char id=122 x=156 y=263 width=11 height=12 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=15 +char id=123 x=502 y=0 width=7 height=24 xoffset=2 yoffset=5 xadvance=13 page=0 chnl=15 +char id=124 x=507 y=175 width=2 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=15 +char id=125 x=22 y=112 width=7 height=23 xoffset=3 yoffset=6 xadvance=13 page=0 chnl=15 +char id=126 x=38 y=283 width=13 height=5 xoffset=1 yoffset=15 xadvance=14 page=0 chnl=15 +char id=160 x=353 y=269 width=1 height=1 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=15 +char id=161 x=504 y=153 width=4 height=19 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=15 +char id=162 x=496 y=108 width=11 height=20 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=15 +char id=163 x=398 y=154 width=13 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=164 x=254 y=242 width=15 height=15 xoffset=-1 yoffset=8 xadvance=13 page=0 chnl=15 +char id=165 x=429 y=198 width=16 height=18 xoffset=-1 yoffset=6 xadvance=13 page=0 chnl=15 +char id=166 x=506 y=82 width=2 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=15 +char id=167 x=268 y=109 width=10 height=22 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=15 +char id=168 x=167 y=278 width=9 height=4 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=15 +char id=169 x=292 y=109 width=20 height=21 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=15 +char id=170 x=352 y=258 width=8 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15 +char id=171 x=209 y=262 width=12 height=11 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=15 +char id=172 x=297 y=260 width=14 height=8 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=15 +char id=173 x=343 y=269 width=7 height=2 xoffset=1 yoffset=17 xadvance=9 page=0 chnl=15 +char id=174 x=315 y=108 width=20 height=21 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=15 +char id=175 x=309 y=271 width=9 height=2 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=15 +char id=176 x=340 y=258 width=9 height=8 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=15 +char id=177 x=166 y=222 width=14 height=18 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=15 +char id=178 x=239 y=261 width=9 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15 +char id=179 x=183 y=262 width=8 height=12 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15 +char id=180 x=0 y=283 width=7 height=6 xoffset=2 yoffset=5 xadvance=9 page=0 chnl=15 +char id=181 x=183 y=222 width=14 height=18 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=15 +char id=182 x=384 y=82 width=13 height=23 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=183 x=505 y=248 width=4 height=4 xoffset=1 yoffset=16 xadvance=6 page=0 chnl=15 +char id=184 x=432 y=255 width=6 height=7 xoffset=1 yoffset=23 xadvance=9 page=0 chnl=15 +char id=185 x=271 y=260 width=6 height=11 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15 +char id=186 x=328 y=259 width=9 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15 +char id=187 x=224 y=261 width=12 height=11 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=15 +char id=188 x=175 y=135 width=19 height=19 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=15 +char id=189 x=108 y=135 width=20 height=19 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=15 +char id=190 x=197 y=134 width=19 height=19 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=15 +char id=191 x=445 y=175 width=10 height=19 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15 +char id=192 x=355 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=193 x=421 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=194 x=110 y=57 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=195 x=91 y=84 width=19 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=196 x=47 y=85 width=19 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=197 x=465 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=198 x=117 y=201 width=23 height=18 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=15 +char id=199 x=174 y=56 width=17 height=24 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=200 x=365 y=55 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=201 x=346 y=55 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=202 x=327 y=55 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=203 x=346 y=82 width=16 height=23 xoffset=0 yoffset=1 xadvance=16 page=0 chnl=15 +char id=204 x=0 y=85 width=9 height=24 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=205 x=497 y=55 width=9 height=24 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=206 x=485 y=55 width=9 height=24 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=207 x=483 y=82 width=9 height=23 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=15 +char id=208 x=169 y=201 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=209 x=135 y=84 width=19 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=210 x=481 y=0 width=18 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=211 x=42 y=30 width=18 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=212 x=460 y=0 width=18 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=213 x=266 y=83 width=18 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=214 x=245 y=83 width=18 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=215 x=323 y=242 width=14 height=14 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=216 x=139 y=110 width=18 height=22 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=15 +char id=217 x=373 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=218 x=219 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=219 x=417 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=220 x=201 y=83 width=19 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=221 x=333 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=222 x=112 y=223 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15 +char id=223 x=158 y=157 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=224 x=444 y=153 width=12 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=15 +char id=225 x=474 y=153 width=12 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=15 +char id=226 x=120 y=179 width=12 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=227 x=296 y=221 width=12 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=228 x=0 y=247 width=12 height=17 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=229 x=481 y=108 width=12 height=20 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=15 +char id=230 x=453 y=239 width=17 height=13 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=15 +char id=231 x=294 y=178 width=11 height=19 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15 +char id=232 x=392 y=176 width=11 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=15 +char id=233 x=308 y=178 width=11 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=15 +char id=234 x=322 y=177 width=11 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=235 x=89 y=245 width=11 height=17 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=236 x=80 y=202 width=7 height=19 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=237 x=48 y=204 width=8 height=19 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=238 x=392 y=219 width=9 height=18 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15 +char id=239 x=143 y=243 width=8 height=17 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=15 +char id=240 x=0 y=182 width=12 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=241 x=443 y=219 width=13 height=17 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=242 x=489 y=153 width=12 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=243 x=75 y=180 width=12 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=244 x=105 y=179 width=12 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=245 x=281 y=221 width=12 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=246 x=45 y=247 width=12 height=17 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=247 x=272 y=242 width=14 height=15 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=248 x=311 y=221 width=12 height=18 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=15 +char id=249 x=350 y=154 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=250 x=366 y=154 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=251 x=190 y=157 width=13 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=252 x=459 y=218 width=13 height=17 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=253 x=139 y=29 width=13 height=25 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=254 x=155 y=29 width=13 height=25 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=255 x=400 y=82 width=13 height=23 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=256 x=338 y=108 width=19 height=21 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=15 +char id=257 x=30 y=247 width=12 height=17 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=15 +char id=258 x=0 y=58 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=259 x=30 y=182 width=12 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=260 x=23 y=85 width=21 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=261 x=60 y=247 width=12 height=17 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15 +char id=262 x=83 y=29 width=17 height=25 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=263 x=238 y=178 width=11 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=15 +char id=264 x=103 y=29 width=17 height=25 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=265 x=364 y=176 width=11 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=266 x=307 y=82 width=17 height=23 xoffset=0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=267 x=340 y=220 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=268 x=63 y=29 width=17 height=25 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=269 x=280 y=178 width=11 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=270 x=443 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=271 x=20 y=160 width=16 height=19 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=15 +char id=272 x=301 y=200 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=273 x=334 y=154 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=274 x=360 y=108 width=16 height=21 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=15 +char id=275 x=117 y=244 width=11 height=17 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=15 +char id=276 x=289 y=55 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=277 x=350 y=176 width=11 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=278 x=365 y=82 width=16 height=23 xoffset=0 yoffset=1 xadvance=16 page=0 chnl=15 +char id=279 x=326 y=220 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=280 x=287 y=83 width=17 height=23 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=281 x=103 y=245 width=11 height=17 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=15 +char id=282 x=308 y=55 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=283 x=336 y=176 width=11 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=284 x=66 y=57 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=285 x=446 y=55 width=12 height=24 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=286 x=311 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=287 x=431 y=55 width=12 height=24 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=288 x=69 y=84 width=19 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=289 x=416 y=82 width=12 height=23 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=290 x=92 y=0 width=19 height=26 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=291 x=154 y=0 width=12 height=26 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=15 +char id=292 x=399 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=293 x=400 y=55 width=13 height=24 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=15 +char id=294 x=323 y=199 width=19 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=295 x=126 y=157 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=296 x=459 y=82 width=9 height=23 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=15 +char id=297 x=131 y=243 width=9 height=17 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=15 +char id=298 x=395 y=108 width=9 height=21 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15 +char id=299 x=220 y=242 width=9 height=16 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=300 x=461 y=55 width=9 height=24 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=301 x=415 y=219 width=8 height=18 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15 +char id=302 x=445 y=82 width=11 height=23 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15 +char id=303 x=11 y=112 width=8 height=23 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=304 x=471 y=82 width=9 height=23 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=15 +char id=305 x=130 y=264 width=7 height=13 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=15 +char id=306 x=153 y=135 width=19 height=19 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=307 x=231 y=28 width=12 height=25 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=15 +char id=308 x=260 y=28 width=11 height=25 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=15 +char id=309 x=246 y=28 width=11 height=25 xoffset=-2 yoffset=5 xadvance=7 page=0 chnl=15 +char id=310 x=70 y=0 width=19 height=26 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=311 x=21 y=0 width=14 height=27 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=312 x=473 y=238 width=13 height=13 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=313 x=232 y=56 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=314 x=12 y=85 width=8 height=24 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=15 +char id=315 x=135 y=0 width=16 height=26 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=316 x=38 y=0 width=7 height=27 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=317 x=39 y=160 width=16 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=15 +char id=318 x=266 y=178 width=11 height=19 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=15 +char id=319 x=448 y=197 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=320 x=252 y=178 width=11 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=15 +char id=321 x=467 y=197 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=322 x=70 y=202 width=7 height=19 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15 +char id=323 x=351 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=324 x=286 y=156 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=325 x=48 y=0 width=19 height=26 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=326 x=379 y=108 width=13 height=21 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=327 x=377 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=328 x=265 y=221 width=13 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=329 x=58 y=158 width=15 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=15 +char id=330 x=373 y=132 width=18 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=331 x=150 y=179 width=12 height=19 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=332 x=118 y=110 width=18 height=22 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=15 +char id=333 x=15 y=247 width=12 height=17 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=15 +char id=334 x=0 y=30 width=18 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=335 x=414 y=154 width=12 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=336 x=439 y=0 width=18 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=337 x=15 y=182 width=12 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=338 x=56 y=136 width=23 height=19 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=15 +char id=339 x=432 y=239 width=18 height=13 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=15 +char id=340 x=153 y=57 width=18 height=24 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=341 x=36 y=204 width=9 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=15 +char id=342 x=114 y=0 width=18 height=26 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=343 x=407 y=108 width=9 height=21 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=15 +char id=344 x=132 y=57 width=18 height=24 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=345 x=380 y=219 width=9 height=18 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15 +char id=346 x=216 y=28 width=12 height=25 xoffset=1 yoffset=0 xadvance=15 page=0 chnl=15 +char id=347 x=24 y=204 width=9 height=19 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=15 +char id=348 x=201 y=28 width=12 height=25 xoffset=1 yoffset=0 xadvance=15 page=0 chnl=15 +char id=349 x=12 y=204 width=9 height=19 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=15 +char id=350 x=416 y=55 width=12 height=24 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=15 +char id=351 x=495 y=175 width=9 height=19 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=15 +char id=352 x=171 y=28 width=12 height=25 xoffset=1 yoffset=0 xadvance=15 page=0 chnl=15 +char id=353 x=0 y=204 width=9 height=19 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=15 +char id=354 x=251 y=56 width=16 height=24 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=355 x=281 y=109 width=8 height=22 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=356 x=213 y=56 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=357 x=224 y=178 width=11 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=15 +char id=358 x=486 y=197 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=359 x=232 y=242 width=8 height=16 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=360 x=223 y=83 width=19 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=361 x=475 y=218 width=13 height=17 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=362 x=96 y=110 width=19 height=22 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=15 +char id=363 x=491 y=218 width=13 height=17 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=15 +char id=364 x=285 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=365 x=238 y=156 width=13 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=366 x=307 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=367 x=449 y=108 width=13 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=15 +char id=368 x=395 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=369 x=110 y=157 width=13 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=370 x=157 y=84 width=19 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=371 x=426 y=219 width=14 height=17 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=15 +char id=372 x=169 y=0 width=25 height=25 xoffset=0 yoffset=0 xadvance=25 page=0 chnl=15 +char id=373 x=394 y=132 width=18 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=374 x=88 y=57 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=375 x=384 y=55 width=13 height=24 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=376 x=113 y=84 width=19 height=23 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=377 x=270 y=56 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=378 x=210 y=178 width=11 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=15 +char id=379 x=327 y=82 width=16 height=23 xoffset=0 yoffset=1 xadvance=16 page=0 chnl=15 +char id=380 x=75 y=247 width=11 height=17 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=381 x=194 y=56 width=16 height=24 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=15 +char id=382 x=354 y=219 width=11 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=383 x=432 y=176 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=15 +char id=399 x=415 y=132 width=18 height=19 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=15 +char id=402 x=123 y=29 width=13 height=25 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=15 +char id=416 x=74 y=110 width=19 height=22 xoffset=0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=417 x=203 y=243 width=14 height=16 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=15 +char id=431 x=50 y=111 width=21 height=22 xoffset=0 yoffset=2 xadvance=21 page=0 chnl=15 +char id=432 x=185 y=243 width=15 height=16 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=15 +char id=461 x=487 y=28 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=462 x=45 y=182 width=12 height=19 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=15 +char id=463 x=473 y=55 width=9 height=24 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=464 x=483 y=175 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15 +char id=465 x=21 y=30 width=18 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=466 x=195 y=179 width=12 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=467 x=22 y=58 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=468 x=382 y=154 width=13 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=469 x=329 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=470 x=465 y=108 width=13 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=15 +char id=471 x=197 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=472 x=160 y=110 width=13 height=22 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=15 +char id=473 x=263 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=474 x=176 y=110 width=13 height=22 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=15 +char id=475 x=241 y=0 width=19 height=25 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=476 x=192 y=109 width=13 height=22 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=15 +char id=506 x=44 y=58 width=19 height=24 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=507 x=186 y=28 width=12 height=25 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=15 +char id=508 x=285 y=28 width=23 height=24 xoffset=0 yoffset=0 xadvance=23 page=0 chnl=15 +char id=509 x=0 y=160 width=17 height=19 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=15 +char id=510 x=0 y=0 width=18 height=27 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=15 +char id=511 x=239 y=109 width=12 height=22 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=15 +char id=710 x=66 y=283 width=9 height=5 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15 +char id=711 x=54 y=283 width=9 height=5 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15 +char id=713 x=321 y=271 width=9 height=2 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=15 +char id=728 x=90 y=283 width=8 height=5 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15 +char id=729 x=186 y=277 width=3 height=4 xoffset=3 yoffset=7 xadvance=9 page=0 chnl=15 +char id=730 x=20 y=283 width=6 height=6 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=15 +char id=731 x=101 y=281 width=6 height=5 xoffset=1 yoffset=23 xadvance=9 page=0 chnl=15 +char id=732 x=143 y=278 width=9 height=4 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=15 +char id=733 x=481 y=254 width=11 height=6 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=15 +char id=768 x=29 y=283 width=6 height=6 xoffset=-8 yoffset=5 xadvance=0 page=0 chnl=15 +char id=769 x=495 y=254 width=7 height=6 xoffset=-7 yoffset=5 xadvance=0 page=0 chnl=15 +char id=771 x=155 y=278 width=9 height=4 xoffset=-9 yoffset=7 xadvance=0 page=0 chnl=15 +char id=777 x=110 y=281 width=5 height=5 xoffset=-7 yoffset=5 xadvance=0 page=0 chnl=15 +char id=803 x=192 y=277 width=3 height=3 xoffset=-8 yoffset=25 xadvance=0 page=0 chnl=15 +char id=8204 x=506 y=104 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8205 x=507 y=213 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8206 x=507 y=217 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8207 x=507 y=221 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8211 x=292 y=271 width=14 height=2 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=15 +char id=8212 x=228 y=275 width=27 height=2 xoffset=0 yoffset=17 xadvance=26 page=0 chnl=15 +char id=8213 x=198 y=276 width=27 height=2 xoffset=0 yoffset=17 xadvance=26 page=0 chnl=15 +char id=8215 x=78 y=283 width=9 height=5 xoffset=2 yoffset=24 xadvance=12 page=0 chnl=15 +char id=8216 x=441 y=255 width=5 height=7 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=15 +char id=8217 x=457 y=255 width=5 height=7 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=15 +char id=8218 x=473 y=254 width=5 height=7 xoffset=1 yoffset=21 xadvance=6 page=0 chnl=15 +char id=8219 x=449 y=255 width=5 height=7 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=15 +char id=8220 x=383 y=256 width=10 height=7 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=15 +char id=8221 x=396 y=256 width=10 height=7 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=15 +char id=8222 x=409 y=256 width=10 height=7 xoffset=1 yoffset=21 xadvance=12 page=0 chnl=15 +char id=8224 x=254 y=109 width=11 height=22 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=15 +char id=8225 x=431 y=82 width=11 height=23 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=15 +char id=8226 x=363 y=256 width=8 height=8 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=15 +char id=8230 x=118 y=280 width=22 height=4 xoffset=2 yoffset=21 xadvance=26 page=0 chnl=15 +char id=8234 x=365 y=267 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8235 x=361 y=269 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8236 x=357 y=269 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8237 x=507 y=233 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8238 x=507 y=225 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8240 x=419 y=108 width=27 height=20 xoffset=0 yoffset=5 xadvance=26 page=0 chnl=15 +char id=8242 x=374 y=256 width=6 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=15 +char id=8243 x=314 y=260 width=11 height=8 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=15 +char id=8249 x=251 y=261 width=7 height=11 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=15 +char id=8250 x=261 y=260 width=7 height=11 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=15 +char id=8252 x=142 y=157 width=13 height=19 xoffset=3 yoffset=6 xadvance=18 page=0 chnl=15 +char id=8254 x=275 y=274 width=14 height=2 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=15 +char id=8260 x=76 y=158 width=14 height=19 xoffset=-4 yoffset=6 xadvance=4 page=0 chnl=15 +char id=8355 x=130 y=222 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=15 +char id=8356 x=318 y=155 width=13 height=19 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=15 +char id=8359 x=28 y=138 width=25 height=19 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=15 +char id=8362 x=162 y=243 width=20 height=16 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=15 +char id=8363 x=208 y=109 width=13 height=22 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=15 +char id=8364 x=329 y=132 width=19 height=19 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=15 +char id=8453 x=457 y=131 width=18 height=19 xoffset=1 yoffset=5 xadvance=21 page=0 chnl=15 +char id=8467 x=180 y=179 width=12 height=19 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=15 +char id=8470 x=82 y=135 width=23 height=19 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=15 +char id=8482 x=357 y=240 width=27 height=13 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=15 +char id=8486 x=367 y=198 width=19 height=18 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=15 +char id=8494 x=0 y=267 width=13 height=13 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=15 +kernings count=5493 +kerning first=212 second=8221 amount=-1 +kerning first=44 second=45 amount=-1 +kerning first=44 second=171 amount=-1 +kerning first=44 second=8217 amount=-2 +kerning first=44 second=8220 amount=-2 +kerning first=44 second=8221 amount=-2 +kerning first=44 second=8249 amount=-1 +kerning first=45 second=65 amount=-1 +kerning first=45 second=66 amount=-2 +kerning first=45 second=68 amount=-2 +kerning first=45 second=69 amount=-2 +kerning first=45 second=70 amount=-2 +kerning first=45 second=72 amount=-2 +kerning first=45 second=73 amount=-2 +kerning first=45 second=74 amount=-1 +kerning first=45 second=75 amount=-2 +kerning first=45 second=76 amount=-2 +kerning first=45 second=77 amount=-2 +kerning first=45 second=78 amount=-2 +kerning first=45 second=80 amount=-2 +kerning first=45 second=82 amount=-2 +kerning first=45 second=83 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=45 second=85 amount=-1 +kerning first=45 second=86 amount=-1 +kerning first=45 second=87 amount=-1 +kerning first=45 second=89 amount=-1 +kerning first=45 second=90 amount=-1 +kerning first=212 second=8220 amount=-1 +kerning first=212 second=8217 amount=-1 +kerning first=212 second=382 amount=-1 +kerning first=45 second=103 amount=-1 +kerning first=212 second=381 amount=-1 +kerning first=212 second=380 amount=-1 +kerning first=45 second=106 amount=-1 +kerning first=212 second=379 amount=-1 +kerning first=212 second=378 amount=-1 +kerning first=45 second=109 amount=-1 +kerning first=45 second=110 amount=-1 +kerning first=45 second=112 amount=-1 +kerning first=45 second=114 amount=-1 +kerning first=212 second=377 amount=-1 +kerning first=212 second=374 amount=-1 +kerning first=212 second=356 amount=-1 +kerning first=45 second=118 amount=-1 +kerning first=45 second=119 amount=-1 +kerning first=45 second=120 amount=-1 +kerning first=45 second=121 amount=-1 +kerning first=45 second=122 amount=-2 +kerning first=45 second=192 amount=-1 +kerning first=45 second=193 amount=-1 +kerning first=45 second=194 amount=-1 +kerning first=45 second=195 amount=-1 +kerning first=45 second=196 amount=-1 +kerning first=45 second=197 amount=-1 +kerning first=45 second=198 amount=-1 +kerning first=45 second=200 amount=-2 +kerning first=45 second=201 amount=-2 +kerning first=45 second=202 amount=-2 +kerning first=45 second=203 amount=-2 +kerning first=45 second=204 amount=-2 +kerning first=45 second=205 amount=-2 +kerning first=45 second=206 amount=-2 +kerning first=45 second=207 amount=-2 +kerning first=45 second=209 amount=-2 +kerning first=45 second=217 amount=-1 +kerning first=45 second=218 amount=-1 +kerning first=45 second=219 amount=-1 +kerning first=45 second=220 amount=-1 +kerning first=45 second=221 amount=-1 +kerning first=45 second=223 amount=-1 +kerning first=212 second=354 amount=-1 +kerning first=212 second=344 amount=-1 +kerning first=212 second=330 amount=-1 +kerning first=212 second=327 amount=-1 +kerning first=212 second=325 amount=-1 +kerning first=212 second=323 amount=-1 +kerning first=212 second=317 amount=-1 +kerning first=45 second=241 amount=-1 +kerning first=212 second=315 amount=-1 +kerning first=212 second=313 amount=-1 +kerning first=212 second=310 amount=-1 +kerning first=212 second=304 amount=-1 +kerning first=45 second=253 amount=-1 +kerning first=212 second=302 amount=-1 +kerning first=45 second=255 amount=-1 +kerning first=45 second=256 amount=-1 +kerning first=212 second=298 amount=-1 +kerning first=212 second=296 amount=-1 +kerning first=45 second=260 amount=-1 +kerning first=212 second=282 amount=-1 +kerning first=45 second=270 amount=-2 +kerning first=45 second=274 amount=-2 +kerning first=45 second=278 amount=-2 +kerning first=45 second=280 amount=-2 +kerning first=45 second=282 amount=-2 +kerning first=45 second=287 amount=-1 +kerning first=45 second=289 amount=-1 +kerning first=45 second=291 amount=-1 +kerning first=45 second=296 amount=-2 +kerning first=45 second=298 amount=-2 +kerning first=45 second=302 amount=-2 +kerning first=212 second=280 amount=-1 +kerning first=212 second=278 amount=-1 +kerning first=212 second=274 amount=-1 +kerning first=45 second=310 amount=-2 +kerning first=212 second=270 amount=-1 +kerning first=45 second=313 amount=-2 +kerning first=212 second=260 amount=-1 +kerning first=45 second=315 amount=-2 +kerning first=212 second=256 amount=-1 +kerning first=45 second=317 amount=-2 +kerning first=212 second=221 amount=-1 +kerning first=45 second=323 amount=-2 +kerning first=45 second=324 amount=-1 +kerning first=45 second=325 amount=-2 +kerning first=45 second=326 amount=-1 +kerning first=45 second=327 amount=-2 +kerning first=45 second=328 amount=-1 +kerning first=45 second=330 amount=-2 +kerning first=45 second=331 amount=-1 +kerning first=45 second=344 amount=-2 +kerning first=45 second=345 amount=-1 +kerning first=45 second=346 amount=-1 +kerning first=212 second=209 amount=-1 +kerning first=45 second=350 amount=-1 +kerning first=212 second=207 amount=-1 +kerning first=45 second=352 amount=-1 +kerning first=212 second=206 amount=-1 +kerning first=45 second=354 amount=-1 +kerning first=212 second=205 amount=-1 +kerning first=45 second=356 amount=-1 +kerning first=212 second=204 amount=-1 +kerning first=212 second=203 amount=-1 +kerning first=45 second=362 amount=-1 +kerning first=212 second=202 amount=-1 +kerning first=45 second=364 amount=-1 +kerning first=212 second=201 amount=-1 +kerning first=45 second=366 amount=-1 +kerning first=212 second=200 amount=-1 +kerning first=45 second=368 amount=-1 +kerning first=212 second=198 amount=-1 +kerning first=45 second=370 amount=-1 +kerning first=212 second=197 amount=-1 +kerning first=45 second=374 amount=-1 +kerning first=45 second=375 amount=-1 +kerning first=45 second=377 amount=-1 +kerning first=45 second=378 amount=-2 +kerning first=45 second=379 amount=-1 +kerning first=45 second=380 amount=-2 +kerning first=45 second=381 amount=-1 +kerning first=45 second=382 amount=-2 +kerning first=212 second=196 amount=-1 +kerning first=212 second=194 amount=-1 +kerning first=212 second=193 amount=-1 +kerning first=212 second=192 amount=-1 +kerning first=212 second=122 amount=-1 +kerning first=212 second=90 amount=-1 +kerning first=212 second=89 amount=-1 +kerning first=212 second=87 amount=-1 +kerning first=212 second=86 amount=-1 +kerning first=212 second=84 amount=-1 +kerning first=212 second=82 amount=-1 +kerning first=212 second=80 amount=-1 +kerning first=212 second=78 amount=-1 +kerning first=212 second=77 amount=-1 +kerning first=212 second=76 amount=-1 +kerning first=212 second=75 amount=-1 +kerning first=212 second=74 amount=-1 +kerning first=212 second=73 amount=-1 +kerning first=212 second=72 amount=-1 +kerning first=212 second=70 amount=-1 +kerning first=212 second=69 amount=-1 +kerning first=212 second=68 amount=-1 +kerning first=212 second=66 amount=-1 +kerning first=212 second=65 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=211 second=8221 amount=-1 +kerning first=211 second=8220 amount=-1 +kerning first=211 second=8217 amount=-1 +kerning first=211 second=382 amount=-1 +kerning first=46 second=45 amount=-1 +kerning first=46 second=171 amount=-1 +kerning first=46 second=8217 amount=-2 +kerning first=46 second=8220 amount=-2 +kerning first=46 second=8221 amount=-2 +kerning first=46 second=8249 amount=-1 +kerning first=65 second=45 amount=-1 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=65 second=83 amount=-1 +kerning first=65 second=84 amount=-2 +kerning first=65 second=85 amount=-1 +kerning first=65 second=86 amount=-2 +kerning first=65 second=87 amount=-2 +kerning first=65 second=89 amount=-2 +kerning first=65 second=98 amount=-1 +kerning first=211 second=381 amount=-1 +kerning first=211 second=380 amount=-1 +kerning first=211 second=379 amount=-1 +kerning first=211 second=378 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=65 second=104 amount=-1 +kerning first=211 second=377 amount=-1 +kerning first=65 second=107 amount=-1 +kerning first=65 second=108 amount=-1 +kerning first=211 second=374 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=211 second=356 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=211 second=354 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-1 +kerning first=65 second=119 amount=-1 +kerning first=65 second=121 amount=-1 +kerning first=65 second=171 amount=-1 +kerning first=65 second=199 amount=-1 +kerning first=65 second=210 amount=-1 +kerning first=65 second=211 amount=-1 +kerning first=65 second=212 amount=-1 +kerning first=65 second=213 amount=-1 +kerning first=65 second=214 amount=-1 +kerning first=65 second=216 amount=-1 +kerning first=65 second=217 amount=-1 +kerning first=65 second=218 amount=-1 +kerning first=65 second=219 amount=-1 +kerning first=65 second=220 amount=-1 +kerning first=65 second=221 amount=-2 +kerning first=211 second=344 amount=-1 +kerning first=211 second=330 amount=-1 +kerning first=211 second=327 amount=-1 +kerning first=211 second=325 amount=-1 +kerning first=211 second=323 amount=-1 +kerning first=211 second=317 amount=-1 +kerning first=211 second=315 amount=-1 +kerning first=211 second=313 amount=-1 +kerning first=211 second=310 amount=-1 +kerning first=211 second=304 amount=-1 +kerning first=211 second=302 amount=-1 +kerning first=211 second=298 amount=-1 +kerning first=211 second=296 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=65 second=251 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=65 second=254 amount=-1 +kerning first=65 second=255 amount=-1 +kerning first=65 second=262 amount=-1 +kerning first=211 second=282 amount=-1 +kerning first=65 second=264 amount=-1 +kerning first=65 second=266 amount=-1 +kerning first=211 second=280 amount=-1 +kerning first=65 second=268 amount=-1 +kerning first=211 second=278 amount=-1 +kerning first=211 second=274 amount=-1 +kerning first=211 second=270 amount=-1 +kerning first=211 second=260 amount=-1 +kerning first=211 second=256 amount=-1 +kerning first=211 second=221 amount=-1 +kerning first=65 second=284 amount=-1 +kerning first=65 second=286 amount=-1 +kerning first=65 second=287 amount=-1 +kerning first=65 second=288 amount=-1 +kerning first=65 second=289 amount=-1 +kerning first=65 second=290 amount=-1 +kerning first=65 second=291 amount=-1 +kerning first=211 second=209 amount=-1 +kerning first=211 second=207 amount=-1 +kerning first=65 second=311 amount=-1 +kerning first=65 second=314 amount=-1 +kerning first=65 second=316 amount=-1 +kerning first=65 second=318 amount=-1 +kerning first=65 second=332 amount=-1 +kerning first=211 second=206 amount=-1 +kerning first=65 second=334 amount=-1 +kerning first=211 second=205 amount=-1 +kerning first=65 second=336 amount=-1 +kerning first=211 second=204 amount=-1 +kerning first=65 second=338 amount=-1 +kerning first=211 second=203 amount=-1 +kerning first=65 second=346 amount=-1 +kerning first=65 second=347 amount=-1 +kerning first=65 second=350 amount=-1 +kerning first=65 second=351 amount=-1 +kerning first=65 second=352 amount=-1 +kerning first=65 second=353 amount=-1 +kerning first=65 second=354 amount=-2 +kerning first=211 second=202 amount=-1 +kerning first=65 second=356 amount=-2 +kerning first=65 second=361 amount=-1 +kerning first=65 second=362 amount=-1 +kerning first=65 second=363 amount=-1 +kerning first=65 second=364 amount=-1 +kerning first=65 second=365 amount=-1 +kerning first=65 second=366 amount=-1 +kerning first=65 second=367 amount=-1 +kerning first=65 second=368 amount=-1 +kerning first=65 second=369 amount=-1 +kerning first=65 second=370 amount=-1 +kerning first=65 second=374 amount=-2 +kerning first=65 second=375 amount=-1 +kerning first=211 second=201 amount=-1 +kerning first=211 second=200 amount=-1 +kerning first=211 second=198 amount=-1 +kerning first=211 second=197 amount=-1 +kerning first=211 second=196 amount=-1 +kerning first=211 second=194 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=211 second=122 amount=-1 +kerning first=211 second=90 amount=-1 +kerning first=211 second=89 amount=-1 +kerning first=211 second=87 amount=-1 +kerning first=211 second=86 amount=-1 +kerning first=211 second=84 amount=-1 +kerning first=211 second=82 amount=-1 +kerning first=65 second=8217 amount=-2 +kerning first=65 second=8220 amount=-2 +kerning first=65 second=8221 amount=-2 +kerning first=65 second=8249 amount=-1 +kerning first=211 second=80 amount=-1 +kerning first=211 second=78 amount=-1 +kerning first=211 second=77 amount=-1 +kerning first=211 second=76 amount=-1 +kerning first=211 second=75 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=66 second=45 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=66 second=65 amount=-2 +kerning first=66 second=66 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=66 second=68 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=70 amount=-1 +kerning first=66 second=71 amount=-1 +kerning first=66 second=72 amount=-1 +kerning first=66 second=73 amount=-1 +kerning first=66 second=74 amount=-1 +kerning first=66 second=75 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=77 amount=-1 +kerning first=66 second=78 amount=-1 +kerning first=66 second=79 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=81 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=83 amount=-2 +kerning first=66 second=84 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=66 second=89 amount=-1 +kerning first=66 second=90 amount=-1 +kerning first=66 second=97 amount=-1 +kerning first=66 second=98 amount=-1 +kerning first=211 second=74 amount=-1 +kerning first=211 second=73 amount=-1 +kerning first=211 second=72 amount=-1 +kerning first=66 second=102 amount=-1 +kerning first=66 second=103 amount=-1 +kerning first=66 second=104 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=106 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=109 amount=-1 +kerning first=66 second=110 amount=-1 +kerning first=211 second=70 amount=-1 +kerning first=66 second=112 amount=-1 +kerning first=211 second=69 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=115 amount=-1 +kerning first=66 second=116 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=118 amount=-1 +kerning first=66 second=119 amount=-1 +kerning first=66 second=120 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=66 second=122 amount=-1 +kerning first=66 second=171 amount=-1 +kerning first=66 second=187 amount=-1 +kerning first=66 second=192 amount=-2 +kerning first=66 second=193 amount=-2 +kerning first=66 second=194 amount=-2 +kerning first=66 second=196 amount=-2 +kerning first=66 second=197 amount=-2 +kerning first=66 second=198 amount=-2 +kerning first=66 second=199 amount=-1 +kerning first=66 second=200 amount=-1 +kerning first=66 second=201 amount=-1 +kerning first=66 second=202 amount=-1 +kerning first=66 second=203 amount=-1 +kerning first=66 second=204 amount=-1 +kerning first=66 second=205 amount=-1 +kerning first=66 second=206 amount=-1 +kerning first=66 second=207 amount=-1 +kerning first=66 second=209 amount=-1 +kerning first=66 second=210 amount=-1 +kerning first=66 second=211 amount=-1 +kerning first=66 second=212 amount=-1 +kerning first=66 second=213 amount=-1 +kerning first=66 second=214 amount=-1 +kerning first=66 second=216 amount=-1 +kerning first=66 second=217 amount=-1 +kerning first=66 second=218 amount=-1 +kerning first=66 second=219 amount=-1 +kerning first=66 second=220 amount=-1 +kerning first=66 second=221 amount=-1 +kerning first=66 second=223 amount=-1 +kerning first=66 second=224 amount=-1 +kerning first=66 second=225 amount=-1 +kerning first=66 second=226 amount=-1 +kerning first=66 second=227 amount=-1 +kerning first=66 second=228 amount=-1 +kerning first=66 second=229 amount=-1 +kerning first=66 second=230 amount=-1 +kerning first=211 second=68 amount=-1 +kerning first=211 second=66 amount=-1 +kerning first=211 second=65 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=66 second=237 amount=-1 +kerning first=210 second=8221 amount=-1 +kerning first=66 second=241 amount=-1 +kerning first=210 second=8220 amount=-1 +kerning first=210 second=8217 amount=-1 +kerning first=210 second=382 amount=-1 +kerning first=210 second=381 amount=-1 +kerning first=210 second=380 amount=-1 +kerning first=210 second=379 amount=-1 +kerning first=66 second=249 amount=-1 +kerning first=66 second=250 amount=-1 +kerning first=66 second=251 amount=-1 +kerning first=66 second=252 amount=-1 +kerning first=66 second=253 amount=-1 +kerning first=66 second=254 amount=-1 +kerning first=66 second=255 amount=-1 +kerning first=66 second=256 amount=-2 +kerning first=66 second=257 amount=-1 +kerning first=66 second=259 amount=-1 +kerning first=66 second=260 amount=-2 +kerning first=66 second=261 amount=-1 +kerning first=66 second=262 amount=-1 +kerning first=210 second=378 amount=-1 +kerning first=66 second=264 amount=-1 +kerning first=66 second=266 amount=-1 +kerning first=210 second=377 amount=-1 +kerning first=66 second=268 amount=-1 +kerning first=210 second=374 amount=-1 +kerning first=66 second=270 amount=-1 +kerning first=66 second=274 amount=-1 +kerning first=210 second=356 amount=-1 +kerning first=210 second=354 amount=-1 +kerning first=66 second=278 amount=-1 +kerning first=210 second=344 amount=-1 +kerning first=66 second=280 amount=-1 +kerning first=210 second=330 amount=-1 +kerning first=66 second=282 amount=-1 +kerning first=210 second=327 amount=-1 +kerning first=66 second=284 amount=-1 +kerning first=66 second=286 amount=-1 +kerning first=66 second=287 amount=-1 +kerning first=66 second=288 amount=-1 +kerning first=66 second=289 amount=-1 +kerning first=66 second=290 amount=-1 +kerning first=66 second=291 amount=-1 +kerning first=66 second=296 amount=-1 +kerning first=66 second=298 amount=-1 +kerning first=66 second=302 amount=-1 +kerning first=66 second=303 amount=-1 +kerning first=66 second=304 amount=-1 +kerning first=66 second=305 amount=-1 +kerning first=66 second=310 amount=-1 +kerning first=66 second=311 amount=-1 +kerning first=66 second=313 amount=-1 +kerning first=66 second=314 amount=-1 +kerning first=66 second=315 amount=-1 +kerning first=66 second=316 amount=-1 +kerning first=66 second=317 amount=-1 +kerning first=66 second=318 amount=-1 +kerning first=66 second=323 amount=-1 +kerning first=66 second=324 amount=-1 +kerning first=66 second=325 amount=-1 +kerning first=66 second=326 amount=-1 +kerning first=66 second=327 amount=-1 +kerning first=66 second=328 amount=-1 +kerning first=66 second=330 amount=-1 +kerning first=66 second=331 amount=-1 +kerning first=66 second=332 amount=-1 +kerning first=210 second=325 amount=-1 +kerning first=66 second=334 amount=-1 +kerning first=210 second=323 amount=-1 +kerning first=66 second=336 amount=-1 +kerning first=210 second=317 amount=-1 +kerning first=66 second=338 amount=-1 +kerning first=210 second=315 amount=-1 +kerning first=66 second=344 amount=-1 +kerning first=66 second=345 amount=-1 +kerning first=66 second=346 amount=-2 +kerning first=66 second=347 amount=-1 +kerning first=66 second=350 amount=-2 +kerning first=66 second=351 amount=-1 +kerning first=66 second=352 amount=-2 +kerning first=66 second=353 amount=-1 +kerning first=66 second=354 amount=-1 +kerning first=66 second=355 amount=-1 +kerning first=66 second=356 amount=-1 +kerning first=66 second=361 amount=-1 +kerning first=66 second=362 amount=-1 +kerning first=66 second=363 amount=-1 +kerning first=66 second=364 amount=-1 +kerning first=66 second=365 amount=-1 +kerning first=66 second=366 amount=-1 +kerning first=66 second=367 amount=-1 +kerning first=66 second=368 amount=-1 +kerning first=66 second=369 amount=-1 +kerning first=66 second=370 amount=-1 +kerning first=66 second=374 amount=-1 +kerning first=66 second=375 amount=-1 +kerning first=66 second=377 amount=-1 +kerning first=66 second=378 amount=-1 +kerning first=66 second=379 amount=-1 +kerning first=66 second=380 amount=-1 +kerning first=66 second=381 amount=-1 +kerning first=66 second=382 amount=-1 +kerning first=210 second=313 amount=-1 +kerning first=210 second=310 amount=-1 +kerning first=210 second=304 amount=-1 +kerning first=210 second=302 amount=-1 +kerning first=210 second=298 amount=-1 +kerning first=210 second=296 amount=-1 +kerning first=210 second=282 amount=-1 +kerning first=210 second=280 amount=-1 +kerning first=210 second=278 amount=-1 +kerning first=210 second=274 amount=-1 +kerning first=210 second=270 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=210 second=256 amount=-1 +kerning first=210 second=221 amount=-1 +kerning first=210 second=209 amount=-1 +kerning first=210 second=207 amount=-1 +kerning first=210 second=206 amount=-1 +kerning first=210 second=205 amount=-1 +kerning first=210 second=204 amount=-1 +kerning first=210 second=203 amount=-1 +kerning first=210 second=202 amount=-1 +kerning first=210 second=201 amount=-1 +kerning first=210 second=200 amount=-1 +kerning first=210 second=198 amount=-1 +kerning first=210 second=197 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=66 second=8217 amount=-2 +kerning first=66 second=8220 amount=-2 +kerning first=66 second=8221 amount=-2 +kerning first=66 second=8249 amount=-1 +kerning first=66 second=8250 amount=-1 +kerning first=210 second=194 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=210 second=192 amount=-1 +kerning first=210 second=122 amount=-1 +kerning first=210 second=90 amount=-1 +kerning first=210 second=89 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=210 second=87 amount=-1 +kerning first=67 second=65 amount=-1 +kerning first=67 second=66 amount=-1 +kerning first=67 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=67 second=69 amount=-1 +kerning first=67 second=70 amount=-1 +kerning first=67 second=71 amount=-1 +kerning first=67 second=72 amount=-1 +kerning first=67 second=73 amount=-1 +kerning first=67 second=74 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=67 second=76 amount=-1 +kerning first=67 second=77 amount=-1 +kerning first=67 second=78 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=67 second=80 amount=-1 +kerning first=67 second=81 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=67 second=83 amount=-1 +kerning first=210 second=86 amount=-1 +kerning first=67 second=85 amount=-1 +kerning first=210 second=84 amount=-1 +kerning first=210 second=82 amount=-1 +kerning first=210 second=80 amount=-1 +kerning first=67 second=90 amount=-1 +kerning first=210 second=78 amount=-1 +kerning first=210 second=77 amount=-1 +kerning first=67 second=99 amount=-1 +kerning first=67 second=100 amount=-1 +kerning first=67 second=101 amount=-1 +kerning first=67 second=102 amount=-1 +kerning first=67 second=103 amount=-1 +kerning first=210 second=76 amount=-1 +kerning first=210 second=75 amount=-1 +kerning first=210 second=74 amount=-1 +kerning first=210 second=73 amount=-1 +kerning first=210 second=72 amount=-1 +kerning first=210 second=70 amount=-1 +kerning first=210 second=69 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=67 second=112 amount=-1 +kerning first=67 second=113 amount=-1 +kerning first=210 second=68 amount=-1 +kerning first=210 second=66 amount=-1 +kerning first=67 second=117 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=67 second=122 amount=-1 +kerning first=67 second=171 amount=-1 +kerning first=67 second=192 amount=-1 +kerning first=67 second=193 amount=-1 +kerning first=67 second=194 amount=-1 +kerning first=67 second=196 amount=-1 +kerning first=67 second=197 amount=-1 +kerning first=67 second=198 amount=-1 +kerning first=67 second=199 amount=-1 +kerning first=67 second=200 amount=-1 +kerning first=67 second=201 amount=-1 +kerning first=67 second=202 amount=-1 +kerning first=67 second=203 amount=-1 +kerning first=67 second=204 amount=-1 +kerning first=67 second=205 amount=-1 +kerning first=67 second=206 amount=-1 +kerning first=67 second=207 amount=-1 +kerning first=67 second=209 amount=-1 +kerning first=67 second=210 amount=-1 +kerning first=67 second=211 amount=-1 +kerning first=67 second=212 amount=-1 +kerning first=67 second=213 amount=-1 +kerning first=67 second=214 amount=-1 +kerning first=67 second=216 amount=-1 +kerning first=67 second=217 amount=-1 +kerning first=67 second=218 amount=-1 +kerning first=67 second=219 amount=-1 +kerning first=67 second=220 amount=-1 +kerning first=209 second=8249 amount=-1 +kerning first=209 second=375 amount=-1 +kerning first=209 second=369 amount=-1 +kerning first=209 second=367 amount=-1 +kerning first=209 second=365 amount=-1 +kerning first=209 second=363 amount=-1 +kerning first=209 second=361 amount=-1 +kerning first=209 second=353 amount=-1 +kerning first=209 second=352 amount=-1 +kerning first=67 second=231 amount=-1 +kerning first=67 second=232 amount=-1 +kerning first=67 second=233 amount=-1 +kerning first=67 second=234 amount=-1 +kerning first=67 second=235 amount=-1 +kerning first=209 second=351 amount=-1 +kerning first=67 second=240 amount=-1 +kerning first=209 second=350 amount=-1 +kerning first=67 second=242 amount=-1 +kerning first=67 second=243 amount=-1 +kerning first=67 second=244 amount=-1 +kerning first=67 second=245 amount=-1 +kerning first=67 second=246 amount=-1 +kerning first=67 second=248 amount=-1 +kerning first=67 second=249 amount=-1 +kerning first=67 second=250 amount=-1 +kerning first=67 second=251 amount=-1 +kerning first=67 second=252 amount=-1 +kerning first=209 second=347 amount=-1 +kerning first=209 second=346 amount=-1 +kerning first=209 second=339 amount=-1 +kerning first=67 second=256 amount=-1 +kerning first=209 second=338 amount=-1 +kerning first=209 second=337 amount=-1 +kerning first=67 second=260 amount=-1 +kerning first=209 second=336 amount=-1 +kerning first=67 second=262 amount=-1 +kerning first=67 second=263 amount=-1 +kerning first=67 second=264 amount=-1 +kerning first=67 second=266 amount=-1 +kerning first=67 second=267 amount=-1 +kerning first=67 second=268 amount=-1 +kerning first=67 second=269 amount=-1 +kerning first=67 second=270 amount=-1 +kerning first=67 second=274 amount=-1 +kerning first=67 second=275 amount=-1 +kerning first=67 second=277 amount=-1 +kerning first=67 second=278 amount=-1 +kerning first=67 second=279 amount=-1 +kerning first=67 second=280 amount=-1 +kerning first=67 second=281 amount=-1 +kerning first=67 second=282 amount=-1 +kerning first=67 second=283 amount=-1 +kerning first=67 second=284 amount=-1 +kerning first=67 second=286 amount=-1 +kerning first=67 second=287 amount=-1 +kerning first=67 second=288 amount=-1 +kerning first=67 second=289 amount=-1 +kerning first=67 second=290 amount=-1 +kerning first=67 second=291 amount=-1 +kerning first=67 second=296 amount=-1 +kerning first=67 second=298 amount=-1 +kerning first=67 second=302 amount=-1 +kerning first=209 second=335 amount=-1 +kerning first=67 second=304 amount=-1 +kerning first=209 second=334 amount=-1 +kerning first=67 second=310 amount=-1 +kerning first=209 second=333 amount=-1 +kerning first=67 second=313 amount=-1 +kerning first=209 second=332 amount=-1 +kerning first=67 second=315 amount=-1 +kerning first=209 second=291 amount=-1 +kerning first=67 second=317 amount=-1 +kerning first=209 second=290 amount=-1 +kerning first=67 second=323 amount=-1 +kerning first=209 second=289 amount=-1 +kerning first=67 second=325 amount=-1 +kerning first=209 second=288 amount=-1 +kerning first=67 second=327 amount=-1 +kerning first=209 second=287 amount=-1 +kerning first=67 second=330 amount=-1 +kerning first=209 second=286 amount=-1 +kerning first=67 second=332 amount=-1 +kerning first=67 second=333 amount=-1 +kerning first=67 second=334 amount=-1 +kerning first=67 second=335 amount=-1 +kerning first=67 second=336 amount=-1 +kerning first=67 second=337 amount=-1 +kerning first=67 second=338 amount=-1 +kerning first=67 second=339 amount=-1 +kerning first=67 second=344 amount=-1 +kerning first=209 second=284 amount=-1 +kerning first=67 second=346 amount=-1 +kerning first=209 second=283 amount=-1 +kerning first=67 second=350 amount=-1 +kerning first=209 second=281 amount=-1 +kerning first=67 second=352 amount=-1 +kerning first=209 second=279 amount=-1 +kerning first=209 second=277 amount=-1 +kerning first=209 second=275 amount=-1 +kerning first=67 second=361 amount=-1 +kerning first=67 second=362 amount=-1 +kerning first=67 second=363 amount=-1 +kerning first=67 second=364 amount=-1 +kerning first=67 second=365 amount=-1 +kerning first=67 second=366 amount=-1 +kerning first=67 second=367 amount=-1 +kerning first=67 second=368 amount=-1 +kerning first=67 second=369 amount=-1 +kerning first=67 second=370 amount=-1 +kerning first=209 second=269 amount=-1 +kerning first=209 second=268 amount=-1 +kerning first=67 second=377 amount=-1 +kerning first=67 second=378 amount=-1 +kerning first=67 second=379 amount=-1 +kerning first=67 second=380 amount=-1 +kerning first=67 second=381 amount=-1 +kerning first=67 second=382 amount=-1 +kerning first=209 second=267 amount=-1 +kerning first=209 second=266 amount=-1 +kerning first=209 second=264 amount=-1 +kerning first=209 second=263 amount=-1 +kerning first=209 second=262 amount=-1 +kerning first=209 second=261 amount=-1 +kerning first=209 second=259 amount=-1 +kerning first=209 second=257 amount=-1 +kerning first=209 second=255 amount=-1 +kerning first=209 second=253 amount=-1 +kerning first=209 second=251 amount=-1 +kerning first=209 second=250 amount=-1 +kerning first=209 second=248 amount=-1 +kerning first=209 second=246 amount=-1 +kerning first=209 second=245 amount=-1 +kerning first=209 second=244 amount=-1 +kerning first=209 second=243 amount=-1 +kerning first=209 second=242 amount=-1 +kerning first=209 second=240 amount=-1 +kerning first=209 second=235 amount=-1 +kerning first=209 second=234 amount=-1 +kerning first=209 second=233 amount=-1 +kerning first=209 second=232 amount=-1 +kerning first=209 second=231 amount=-1 +kerning first=67 second=8249 amount=-1 +kerning first=209 second=230 amount=-1 +kerning first=209 second=229 amount=-1 +kerning first=209 second=228 amount=-1 +kerning first=209 second=227 amount=-1 +kerning first=209 second=226 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=209 second=225 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=66 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=70 amount=-1 +kerning first=68 second=72 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=74 amount=-1 +kerning first=68 second=75 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=209 second=224 amount=-1 +kerning first=68 second=84 amount=-1 +kerning first=209 second=216 amount=-1 +kerning first=68 second=86 amount=-1 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-1 +kerning first=68 second=90 amount=-1 +kerning first=209 second=214 amount=-1 +kerning first=209 second=213 amount=-1 +kerning first=209 second=212 amount=-1 +kerning first=209 second=211 amount=-1 +kerning first=209 second=210 amount=-1 +kerning first=209 second=199 amount=-1 +kerning first=68 second=122 amount=-1 +kerning first=209 second=171 amount=-1 +kerning first=68 second=192 amount=-1 +kerning first=68 second=193 amount=-1 +kerning first=68 second=194 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=68 second=197 amount=-1 +kerning first=68 second=198 amount=-1 +kerning first=68 second=200 amount=-1 +kerning first=68 second=201 amount=-1 +kerning first=68 second=202 amount=-1 +kerning first=68 second=203 amount=-1 +kerning first=68 second=204 amount=-1 +kerning first=68 second=205 amount=-1 +kerning first=68 second=206 amount=-1 +kerning first=68 second=207 amount=-1 +kerning first=68 second=209 amount=-1 +kerning first=209 second=121 amount=-1 +kerning first=209 second=119 amount=-1 +kerning first=209 second=118 amount=-1 +kerning first=209 second=117 amount=-1 +kerning first=68 second=221 amount=-1 +kerning first=209 second=115 amount=-1 +kerning first=209 second=113 amount=-1 +kerning first=209 second=111 amount=-1 +kerning first=209 second=103 amount=-1 +kerning first=209 second=101 amount=-1 +kerning first=209 second=100 amount=-1 +kerning first=209 second=99 amount=-1 +kerning first=209 second=97 amount=-1 +kerning first=68 second=256 amount=-1 +kerning first=209 second=83 amount=-1 +kerning first=209 second=81 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=209 second=79 amount=-1 +kerning first=68 second=270 amount=-1 +kerning first=68 second=274 amount=-1 +kerning first=68 second=278 amount=-1 +kerning first=68 second=280 amount=-1 +kerning first=68 second=282 amount=-1 +kerning first=209 second=71 amount=-1 +kerning first=209 second=67 amount=-1 +kerning first=209 second=45 amount=-1 +kerning first=68 second=296 amount=-1 +kerning first=68 second=298 amount=-1 +kerning first=68 second=302 amount=-1 +kerning first=208 second=8221 amount=-1 +kerning first=68 second=304 amount=-1 +kerning first=208 second=8220 amount=-1 +kerning first=68 second=310 amount=-1 +kerning first=68 second=313 amount=-1 +kerning first=68 second=315 amount=-1 +kerning first=68 second=317 amount=-1 +kerning first=68 second=323 amount=-1 +kerning first=68 second=325 amount=-1 +kerning first=68 second=327 amount=-1 +kerning first=68 second=330 amount=-1 +kerning first=68 second=344 amount=-1 +kerning first=208 second=8217 amount=-1 +kerning first=208 second=382 amount=-1 +kerning first=208 second=381 amount=-1 +kerning first=68 second=354 amount=-1 +kerning first=68 second=356 amount=-1 +kerning first=208 second=380 amount=-1 +kerning first=208 second=379 amount=-1 +kerning first=208 second=378 amount=-1 +kerning first=208 second=377 amount=-1 +kerning first=208 second=374 amount=-1 +kerning first=68 second=374 amount=-1 +kerning first=68 second=377 amount=-1 +kerning first=68 second=378 amount=-1 +kerning first=68 second=379 amount=-1 +kerning first=68 second=380 amount=-1 +kerning first=68 second=381 amount=-1 +kerning first=68 second=382 amount=-1 +kerning first=208 second=356 amount=-1 +kerning first=208 second=354 amount=-1 +kerning first=208 second=344 amount=-1 +kerning first=208 second=330 amount=-1 +kerning first=208 second=327 amount=-1 +kerning first=208 second=325 amount=-1 +kerning first=208 second=323 amount=-1 +kerning first=208 second=317 amount=-1 +kerning first=208 second=315 amount=-1 +kerning first=208 second=313 amount=-1 +kerning first=208 second=310 amount=-1 +kerning first=208 second=304 amount=-1 +kerning first=208 second=302 amount=-1 +kerning first=208 second=298 amount=-1 +kerning first=208 second=296 amount=-1 +kerning first=208 second=282 amount=-1 +kerning first=68 second=8217 amount=-1 +kerning first=68 second=8220 amount=-1 +kerning first=68 second=8221 amount=-1 +kerning first=208 second=280 amount=-1 +kerning first=208 second=278 amount=-1 +kerning first=69 second=45 amount=-1 +kerning first=208 second=274 amount=-1 +kerning first=69 second=65 amount=-1 +kerning first=69 second=66 amount=-1 +kerning first=208 second=270 amount=-1 +kerning first=69 second=68 amount=-1 +kerning first=69 second=69 amount=-1 +kerning first=69 second=70 amount=-1 +kerning first=208 second=260 amount=-1 +kerning first=69 second=72 amount=-1 +kerning first=69 second=73 amount=-1 +kerning first=208 second=256 amount=-1 +kerning first=69 second=75 amount=-1 +kerning first=69 second=76 amount=-1 +kerning first=69 second=77 amount=-1 +kerning first=69 second=78 amount=-1 +kerning first=208 second=221 amount=-1 +kerning first=69 second=80 amount=-1 +kerning first=208 second=209 amount=-1 +kerning first=69 second=82 amount=-1 +kerning first=69 second=83 amount=-1 +kerning first=208 second=207 amount=-1 +kerning first=69 second=85 amount=-1 +kerning first=208 second=206 amount=-1 +kerning first=208 second=205 amount=-1 +kerning first=208 second=204 amount=-1 +kerning first=208 second=203 amount=-1 +kerning first=208 second=202 amount=-1 +kerning first=208 second=201 amount=-1 +kerning first=69 second=102 amount=-1 +kerning first=69 second=103 amount=-1 +kerning first=208 second=200 amount=-1 +kerning first=208 second=198 amount=-1 +kerning first=208 second=197 amount=-1 +kerning first=208 second=196 amount=-1 +kerning first=208 second=194 amount=-1 +kerning first=208 second=193 amount=-1 +kerning first=69 second=112 amount=-1 +kerning first=208 second=192 amount=-1 +kerning first=69 second=117 amount=-1 +kerning first=208 second=122 amount=-1 +kerning first=208 second=90 amount=-1 +kerning first=208 second=89 amount=-1 +kerning first=69 second=122 amount=-1 +kerning first=69 second=171 amount=-1 +kerning first=69 second=192 amount=-1 +kerning first=69 second=193 amount=-1 +kerning first=69 second=194 amount=-1 +kerning first=69 second=196 amount=-1 +kerning first=69 second=197 amount=-1 +kerning first=69 second=198 amount=-1 +kerning first=208 second=87 amount=-1 +kerning first=69 second=200 amount=-1 +kerning first=69 second=201 amount=-1 +kerning first=69 second=202 amount=-1 +kerning first=69 second=203 amount=-1 +kerning first=69 second=204 amount=-1 +kerning first=69 second=205 amount=-1 +kerning first=69 second=206 amount=-1 +kerning first=69 second=207 amount=-1 +kerning first=69 second=209 amount=-1 +kerning first=208 second=86 amount=-1 +kerning first=208 second=84 amount=-1 +kerning first=208 second=82 amount=-1 +kerning first=208 second=80 amount=-1 +kerning first=208 second=78 amount=-1 +kerning first=208 second=77 amount=-1 +kerning first=69 second=217 amount=-1 +kerning first=69 second=218 amount=-1 +kerning first=69 second=219 amount=-1 +kerning first=69 second=220 amount=-1 +kerning first=208 second=76 amount=-1 +kerning first=208 second=75 amount=-1 +kerning first=208 second=74 amount=-1 +kerning first=208 second=73 amount=-1 +kerning first=208 second=72 amount=-1 +kerning first=208 second=70 amount=-1 +kerning first=208 second=69 amount=-1 +kerning first=208 second=68 amount=-1 +kerning first=208 second=66 amount=-1 +kerning first=208 second=65 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=69 second=249 amount=-1 +kerning first=69 second=250 amount=-1 +kerning first=69 second=251 amount=-1 +kerning first=69 second=252 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=69 second=256 amount=-1 +kerning first=207 second=375 amount=-1 +kerning first=207 second=369 amount=-1 +kerning first=69 second=260 amount=-1 +kerning first=207 second=367 amount=-1 +kerning first=207 second=365 amount=-1 +kerning first=207 second=363 amount=-1 +kerning first=207 second=361 amount=-1 +kerning first=207 second=353 amount=-1 +kerning first=69 second=270 amount=-1 +kerning first=69 second=274 amount=-1 +kerning first=69 second=278 amount=-1 +kerning first=69 second=280 amount=-1 +kerning first=69 second=282 amount=-1 +kerning first=207 second=352 amount=-1 +kerning first=207 second=351 amount=-1 +kerning first=69 second=287 amount=-1 +kerning first=207 second=350 amount=-1 +kerning first=69 second=289 amount=-1 +kerning first=207 second=347 amount=-1 +kerning first=69 second=291 amount=-1 +kerning first=69 second=296 amount=-1 +kerning first=69 second=298 amount=-1 +kerning first=69 second=302 amount=-1 +kerning first=207 second=346 amount=-1 +kerning first=69 second=304 amount=-1 +kerning first=207 second=339 amount=-1 +kerning first=69 second=310 amount=-1 +kerning first=207 second=338 amount=-1 +kerning first=69 second=313 amount=-1 +kerning first=207 second=337 amount=-1 +kerning first=69 second=315 amount=-1 +kerning first=207 second=336 amount=-1 +kerning first=69 second=317 amount=-1 +kerning first=207 second=335 amount=-1 +kerning first=69 second=323 amount=-1 +kerning first=207 second=334 amount=-1 +kerning first=69 second=325 amount=-1 +kerning first=207 second=333 amount=-1 +kerning first=69 second=327 amount=-1 +kerning first=207 second=332 amount=-1 +kerning first=69 second=330 amount=-1 +kerning first=207 second=291 amount=-1 +kerning first=207 second=290 amount=-1 +kerning first=207 second=289 amount=-1 +kerning first=207 second=288 amount=-1 +kerning first=207 second=287 amount=-1 +kerning first=69 second=344 amount=-1 +kerning first=69 second=346 amount=-1 +kerning first=207 second=286 amount=-1 +kerning first=69 second=350 amount=-1 +kerning first=207 second=284 amount=-1 +kerning first=69 second=352 amount=-1 +kerning first=207 second=283 amount=-1 +kerning first=207 second=281 amount=-1 +kerning first=207 second=279 amount=-1 +kerning first=69 second=361 amount=-1 +kerning first=69 second=362 amount=-1 +kerning first=69 second=363 amount=-1 +kerning first=69 second=364 amount=-1 +kerning first=69 second=365 amount=-1 +kerning first=69 second=366 amount=-1 +kerning first=69 second=367 amount=-1 +kerning first=69 second=368 amount=-1 +kerning first=69 second=369 amount=-1 +kerning first=69 second=370 amount=-1 +kerning first=207 second=277 amount=-1 +kerning first=207 second=275 amount=-1 +kerning first=69 second=378 amount=-1 +kerning first=207 second=269 amount=-1 +kerning first=69 second=380 amount=-1 +kerning first=207 second=268 amount=-1 +kerning first=69 second=382 amount=-1 +kerning first=207 second=267 amount=-1 +kerning first=207 second=266 amount=-1 +kerning first=207 second=264 amount=-1 +kerning first=207 second=263 amount=-1 +kerning first=207 second=262 amount=-1 +kerning first=207 second=261 amount=-1 +kerning first=207 second=259 amount=-1 +kerning first=207 second=257 amount=-1 +kerning first=207 second=255 amount=-1 +kerning first=207 second=253 amount=-1 +kerning first=207 second=251 amount=-1 +kerning first=207 second=250 amount=-1 +kerning first=207 second=248 amount=-1 +kerning first=207 second=246 amount=-1 +kerning first=207 second=245 amount=-1 +kerning first=207 second=244 amount=-1 +kerning first=207 second=243 amount=-1 +kerning first=207 second=242 amount=-1 +kerning first=207 second=240 amount=-1 +kerning first=207 second=235 amount=-1 +kerning first=207 second=234 amount=-1 +kerning first=207 second=233 amount=-1 +kerning first=69 second=8249 amount=-1 +kerning first=207 second=232 amount=-1 +kerning first=207 second=231 amount=-1 +kerning first=207 second=230 amount=-1 +kerning first=207 second=229 amount=-1 +kerning first=207 second=228 amount=-1 +kerning first=70 second=44 amount=-1 +kerning first=70 second=45 amount=-1 +kerning first=70 second=46 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=207 second=227 amount=-1 +kerning first=207 second=226 amount=-1 +kerning first=70 second=74 amount=-1 +kerning first=207 second=225 amount=-1 +kerning first=207 second=224 amount=-1 +kerning first=70 second=83 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=207 second=216 amount=-1 +kerning first=207 second=214 amount=-1 +kerning first=207 second=213 amount=-1 +kerning first=207 second=212 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=207 second=211 amount=-1 +kerning first=207 second=210 amount=-1 +kerning first=207 second=199 amount=-1 +kerning first=207 second=121 amount=-1 +kerning first=207 second=119 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=207 second=118 amount=-1 +kerning first=207 second=117 amount=-1 +kerning first=207 second=115 amount=-1 +kerning first=207 second=113 amount=-1 +kerning first=70 second=122 amount=-1 +kerning first=70 second=171 amount=-1 +kerning first=70 second=192 amount=-1 +kerning first=70 second=193 amount=-1 +kerning first=70 second=194 amount=-1 +kerning first=70 second=196 amount=-1 +kerning first=70 second=197 amount=-1 +kerning first=70 second=198 amount=-1 +kerning first=207 second=111 amount=-1 +kerning first=207 second=103 amount=-1 +kerning first=207 second=101 amount=-1 +kerning first=207 second=100 amount=-1 +kerning first=207 second=99 amount=-1 +kerning first=207 second=97 amount=-1 +kerning first=207 second=83 amount=-1 +kerning first=207 second=81 amount=-1 +kerning first=207 second=79 amount=-1 +kerning first=70 second=225 amount=-1 +kerning first=70 second=226 amount=-1 +kerning first=70 second=227 amount=-1 +kerning first=207 second=71 amount=-1 +kerning first=70 second=229 amount=-1 +kerning first=70 second=230 amount=-1 +kerning first=207 second=67 amount=-1 +kerning first=206 second=8249 amount=-1 +kerning first=206 second=375 amount=-1 +kerning first=206 second=369 amount=-1 +kerning first=206 second=367 amount=-1 +kerning first=206 second=365 amount=-1 +kerning first=206 second=363 amount=-1 +kerning first=206 second=361 amount=-1 +kerning first=206 second=353 amount=-1 +kerning first=206 second=352 amount=-1 +kerning first=206 second=351 amount=-1 +kerning first=206 second=350 amount=-1 +kerning first=206 second=347 amount=-1 +kerning first=206 second=346 amount=-1 +kerning first=206 second=339 amount=-1 +kerning first=70 second=256 amount=-1 +kerning first=70 second=257 amount=-1 +kerning first=70 second=259 amount=-1 +kerning first=70 second=260 amount=-1 +kerning first=70 second=261 amount=-1 +kerning first=206 second=338 amount=-1 +kerning first=206 second=337 amount=-1 +kerning first=206 second=336 amount=-1 +kerning first=206 second=335 amount=-1 +kerning first=206 second=334 amount=-1 +kerning first=206 second=333 amount=-1 +kerning first=206 second=332 amount=-1 +kerning first=206 second=291 amount=-1 +kerning first=206 second=290 amount=-1 +kerning first=206 second=289 amount=-1 +kerning first=206 second=288 amount=-1 +kerning first=206 second=287 amount=-1 +kerning first=206 second=286 amount=-1 +kerning first=206 second=284 amount=-1 +kerning first=70 second=287 amount=-1 +kerning first=206 second=283 amount=-1 +kerning first=70 second=289 amount=-1 +kerning first=206 second=281 amount=-1 +kerning first=70 second=291 amount=-1 +kerning first=206 second=279 amount=-1 +kerning first=206 second=277 amount=-1 +kerning first=206 second=275 amount=-1 +kerning first=206 second=269 amount=-1 +kerning first=206 second=268 amount=-1 +kerning first=206 second=267 amount=-1 +kerning first=206 second=266 amount=-1 +kerning first=206 second=264 amount=-1 +kerning first=206 second=263 amount=-1 +kerning first=206 second=262 amount=-1 +kerning first=206 second=261 amount=-1 +kerning first=206 second=259 amount=-1 +kerning first=70 second=346 amount=-1 +kerning first=70 second=347 amount=-1 +kerning first=70 second=350 amount=-1 +kerning first=70 second=351 amount=-1 +kerning first=70 second=352 amount=-1 +kerning first=70 second=353 amount=-1 +kerning first=206 second=257 amount=-1 +kerning first=206 second=255 amount=-1 +kerning first=206 second=253 amount=-1 +kerning first=206 second=251 amount=-1 +kerning first=206 second=250 amount=-1 +kerning first=70 second=378 amount=-1 +kerning first=70 second=380 amount=-1 +kerning first=70 second=382 amount=-1 +kerning first=206 second=248 amount=-1 +kerning first=206 second=246 amount=-1 +kerning first=206 second=245 amount=-1 +kerning first=206 second=244 amount=-1 +kerning first=206 second=243 amount=-1 +kerning first=206 second=242 amount=-1 +kerning first=206 second=240 amount=-1 +kerning first=206 second=235 amount=-1 +kerning first=206 second=234 amount=-1 +kerning first=206 second=233 amount=-1 +kerning first=70 second=8249 amount=-1 +kerning first=206 second=232 amount=-1 +kerning first=206 second=231 amount=-1 +kerning first=206 second=230 amount=-1 +kerning first=206 second=229 amount=-1 +kerning first=206 second=228 amount=-1 +kerning first=71 second=44 amount=-1 +kerning first=71 second=45 amount=-1 +kerning first=71 second=46 amount=-1 +kerning first=71 second=65 amount=-1 +kerning first=206 second=227 amount=-1 +kerning first=206 second=226 amount=-1 +kerning first=206 second=225 amount=-1 +kerning first=206 second=224 amount=-1 +kerning first=206 second=216 amount=-1 +kerning first=206 second=214 amount=-1 +kerning first=206 second=213 amount=-1 +kerning first=206 second=212 amount=-1 +kerning first=206 second=211 amount=-1 +kerning first=206 second=210 amount=-1 +kerning first=206 second=199 amount=-1 +kerning first=206 second=171 amount=-1 +kerning first=206 second=121 amount=-1 +kerning first=71 second=83 amount=-1 +kerning first=71 second=84 amount=-1 +kerning first=206 second=119 amount=-1 +kerning first=71 second=86 amount=-1 +kerning first=71 second=87 amount=-1 +kerning first=71 second=89 amount=-1 +kerning first=71 second=90 amount=-1 +kerning first=206 second=118 amount=-1 +kerning first=206 second=117 amount=-1 +kerning first=71 second=102 amount=-1 +kerning first=71 second=103 amount=-1 +kerning first=206 second=115 amount=-1 +kerning first=206 second=113 amount=-1 +kerning first=206 second=111 amount=-1 +kerning first=206 second=103 amount=-1 +kerning first=206 second=101 amount=-1 +kerning first=206 second=100 amount=-1 +kerning first=206 second=99 amount=-1 +kerning first=206 second=97 amount=-1 +kerning first=206 second=83 amount=-1 +kerning first=71 second=171 amount=-1 +kerning first=71 second=192 amount=-1 +kerning first=71 second=193 amount=-1 +kerning first=71 second=194 amount=-1 +kerning first=71 second=196 amount=-1 +kerning first=71 second=197 amount=-1 +kerning first=71 second=198 amount=-1 +kerning first=206 second=81 amount=-1 +kerning first=206 second=79 amount=-1 +kerning first=206 second=71 amount=-1 +kerning first=206 second=67 amount=-1 +kerning first=206 second=45 amount=-1 +kerning first=205 second=375 amount=-1 +kerning first=205 second=369 amount=-1 +kerning first=205 second=367 amount=-1 +kerning first=205 second=365 amount=-1 +kerning first=205 second=363 amount=-1 +kerning first=205 second=361 amount=-1 +kerning first=205 second=353 amount=-1 +kerning first=205 second=352 amount=-1 +kerning first=71 second=221 amount=-1 +kerning first=205 second=351 amount=-1 +kerning first=205 second=350 amount=-1 +kerning first=205 second=347 amount=-1 +kerning first=205 second=346 amount=-1 +kerning first=205 second=339 amount=-1 +kerning first=205 second=338 amount=-1 +kerning first=205 second=337 amount=-1 +kerning first=205 second=336 amount=-1 +kerning first=205 second=335 amount=-1 +kerning first=205 second=334 amount=-1 +kerning first=205 second=333 amount=-1 +kerning first=205 second=332 amount=-1 +kerning first=71 second=256 amount=-1 +kerning first=205 second=291 amount=-1 +kerning first=205 second=290 amount=-1 +kerning first=71 second=260 amount=-1 +kerning first=205 second=289 amount=-1 +kerning first=205 second=288 amount=-1 +kerning first=205 second=287 amount=-1 +kerning first=205 second=286 amount=-1 +kerning first=205 second=284 amount=-1 +kerning first=205 second=283 amount=-1 +kerning first=71 second=287 amount=-1 +kerning first=71 second=289 amount=-1 +kerning first=71 second=291 amount=-1 +kerning first=205 second=281 amount=-1 +kerning first=205 second=279 amount=-1 +kerning first=205 second=277 amount=-1 +kerning first=205 second=275 amount=-1 +kerning first=205 second=269 amount=-1 +kerning first=205 second=268 amount=-1 +kerning first=205 second=267 amount=-1 +kerning first=205 second=266 amount=-1 +kerning first=205 second=264 amount=-1 +kerning first=205 second=263 amount=-1 +kerning first=205 second=262 amount=-1 +kerning first=205 second=261 amount=-1 +kerning first=205 second=259 amount=-1 +kerning first=205 second=257 amount=-1 +kerning first=205 second=255 amount=-1 +kerning first=205 second=253 amount=-1 +kerning first=205 second=251 amount=-1 +kerning first=71 second=346 amount=-1 +kerning first=71 second=350 amount=-1 +kerning first=71 second=352 amount=-1 +kerning first=71 second=354 amount=-1 +kerning first=71 second=356 amount=-1 +kerning first=205 second=250 amount=-1 +kerning first=205 second=248 amount=-1 +kerning first=205 second=246 amount=-1 +kerning first=205 second=245 amount=-1 +kerning first=205 second=244 amount=-1 +kerning first=205 second=243 amount=-1 +kerning first=205 second=242 amount=-1 +kerning first=205 second=240 amount=-1 +kerning first=205 second=235 amount=-1 +kerning first=205 second=234 amount=-1 +kerning first=71 second=374 amount=-1 +kerning first=71 second=377 amount=-1 +kerning first=205 second=233 amount=-1 +kerning first=71 second=379 amount=-1 +kerning first=205 second=232 amount=-1 +kerning first=71 second=381 amount=-1 +kerning first=205 second=231 amount=-1 +kerning first=205 second=230 amount=-1 +kerning first=205 second=229 amount=-1 +kerning first=205 second=228 amount=-1 +kerning first=205 second=227 amount=-1 +kerning first=205 second=226 amount=-1 +kerning first=205 second=225 amount=-1 +kerning first=205 second=224 amount=-1 +kerning first=205 second=216 amount=-1 +kerning first=205 second=214 amount=-1 +kerning first=205 second=213 amount=-1 +kerning first=205 second=212 amount=-1 +kerning first=205 second=211 amount=-1 +kerning first=205 second=210 amount=-1 +kerning first=205 second=199 amount=-1 +kerning first=205 second=121 amount=-1 +kerning first=205 second=119 amount=-1 +kerning first=205 second=118 amount=-1 +kerning first=205 second=117 amount=-1 +kerning first=205 second=115 amount=-1 +kerning first=205 second=113 amount=-1 +kerning first=205 second=111 amount=-1 +kerning first=205 second=103 amount=-1 +kerning first=71 second=8249 amount=-1 +kerning first=205 second=101 amount=-1 +kerning first=205 second=100 amount=-1 +kerning first=205 second=99 amount=-1 +kerning first=205 second=97 amount=-1 +kerning first=205 second=83 amount=-1 +kerning first=205 second=81 amount=-1 +kerning first=72 second=45 amount=-1 +kerning first=205 second=79 amount=-1 +kerning first=72 second=67 amount=-1 +kerning first=72 second=71 amount=-1 +kerning first=205 second=71 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=72 second=81 amount=-1 +kerning first=72 second=83 amount=-1 +kerning first=72 second=97 amount=-1 +kerning first=72 second=99 amount=-1 +kerning first=72 second=100 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=103 amount=-1 +kerning first=205 second=67 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=204 second=375 amount=-1 +kerning first=72 second=113 amount=-1 +kerning first=72 second=115 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=118 amount=-1 +kerning first=72 second=119 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=204 second=369 amount=-1 +kerning first=72 second=171 amount=-1 +kerning first=72 second=199 amount=-1 +kerning first=72 second=210 amount=-1 +kerning first=72 second=211 amount=-1 +kerning first=72 second=212 amount=-1 +kerning first=72 second=213 amount=-1 +kerning first=72 second=214 amount=-1 +kerning first=72 second=216 amount=-1 +kerning first=72 second=224 amount=-1 +kerning first=72 second=225 amount=-1 +kerning first=72 second=226 amount=-1 +kerning first=72 second=227 amount=-1 +kerning first=72 second=228 amount=-1 +kerning first=72 second=229 amount=-1 +kerning first=72 second=230 amount=-1 +kerning first=72 second=231 amount=-1 +kerning first=72 second=232 amount=-1 +kerning first=72 second=233 amount=-1 +kerning first=72 second=234 amount=-1 +kerning first=72 second=235 amount=-1 +kerning first=204 second=367 amount=-1 +kerning first=72 second=240 amount=-1 +kerning first=72 second=242 amount=-1 +kerning first=72 second=243 amount=-1 +kerning first=72 second=244 amount=-1 +kerning first=72 second=245 amount=-1 +kerning first=72 second=246 amount=-1 +kerning first=72 second=248 amount=-1 +kerning first=204 second=365 amount=-1 +kerning first=72 second=250 amount=-1 +kerning first=72 second=251 amount=-1 +kerning first=204 second=363 amount=-1 +kerning first=72 second=253 amount=-1 +kerning first=72 second=255 amount=-1 +kerning first=72 second=257 amount=-1 +kerning first=72 second=259 amount=-1 +kerning first=72 second=261 amount=-1 +kerning first=72 second=262 amount=-1 +kerning first=72 second=263 amount=-1 +kerning first=72 second=264 amount=-1 +kerning first=72 second=266 amount=-1 +kerning first=72 second=267 amount=-1 +kerning first=72 second=268 amount=-1 +kerning first=72 second=269 amount=-1 +kerning first=72 second=275 amount=-1 +kerning first=72 second=277 amount=-1 +kerning first=72 second=279 amount=-1 +kerning first=72 second=281 amount=-1 +kerning first=72 second=283 amount=-1 +kerning first=72 second=284 amount=-1 +kerning first=72 second=286 amount=-1 +kerning first=72 second=287 amount=-1 +kerning first=72 second=288 amount=-1 +kerning first=72 second=289 amount=-1 +kerning first=72 second=290 amount=-1 +kerning first=72 second=291 amount=-1 +kerning first=204 second=361 amount=-1 +kerning first=204 second=353 amount=-1 +kerning first=72 second=332 amount=-1 +kerning first=72 second=333 amount=-1 +kerning first=72 second=334 amount=-1 +kerning first=72 second=335 amount=-1 +kerning first=72 second=336 amount=-1 +kerning first=72 second=337 amount=-1 +kerning first=72 second=338 amount=-1 +kerning first=72 second=339 amount=-1 +kerning first=72 second=346 amount=-1 +kerning first=72 second=347 amount=-1 +kerning first=72 second=350 amount=-1 +kerning first=72 second=351 amount=-1 +kerning first=72 second=352 amount=-1 +kerning first=72 second=353 amount=-1 +kerning first=72 second=361 amount=-1 +kerning first=72 second=363 amount=-1 +kerning first=72 second=365 amount=-1 +kerning first=72 second=367 amount=-1 +kerning first=72 second=369 amount=-1 +kerning first=72 second=375 amount=-1 +kerning first=204 second=352 amount=-1 +kerning first=204 second=351 amount=-1 +kerning first=204 second=350 amount=-1 +kerning first=204 second=347 amount=-1 +kerning first=204 second=346 amount=-1 +kerning first=204 second=339 amount=-1 +kerning first=204 second=338 amount=-1 +kerning first=204 second=337 amount=-1 +kerning first=204 second=336 amount=-1 +kerning first=204 second=335 amount=-1 +kerning first=204 second=334 amount=-1 +kerning first=204 second=333 amount=-1 +kerning first=72 second=8249 amount=-1 +kerning first=204 second=332 amount=-1 +kerning first=73 second=45 amount=-1 +kerning first=204 second=291 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=204 second=290 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=73 second=81 amount=-1 +kerning first=73 second=83 amount=-1 +kerning first=73 second=97 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=101 amount=-1 +kerning first=73 second=103 amount=-1 +kerning first=204 second=289 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=204 second=288 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=115 amount=-1 +kerning first=73 second=117 amount=-1 +kerning first=73 second=118 amount=-1 +kerning first=73 second=119 amount=-1 +kerning first=73 second=121 amount=-1 +kerning first=204 second=287 amount=-1 +kerning first=73 second=171 amount=-1 +kerning first=73 second=199 amount=-1 +kerning first=73 second=210 amount=-1 +kerning first=73 second=211 amount=-1 +kerning first=73 second=212 amount=-1 +kerning first=73 second=213 amount=-1 +kerning first=73 second=214 amount=-1 +kerning first=73 second=216 amount=-1 +kerning first=73 second=224 amount=-1 +kerning first=73 second=225 amount=-1 +kerning first=73 second=226 amount=-1 +kerning first=73 second=227 amount=-1 +kerning first=73 second=228 amount=-1 +kerning first=73 second=229 amount=-1 +kerning first=73 second=230 amount=-1 +kerning first=73 second=231 amount=-1 +kerning first=73 second=232 amount=-1 +kerning first=73 second=233 amount=-1 +kerning first=73 second=234 amount=-1 +kerning first=73 second=235 amount=-1 +kerning first=204 second=286 amount=-1 +kerning first=73 second=240 amount=-1 +kerning first=73 second=242 amount=-1 +kerning first=73 second=243 amount=-1 +kerning first=73 second=244 amount=-1 +kerning first=73 second=245 amount=-1 +kerning first=73 second=246 amount=-1 +kerning first=73 second=248 amount=-1 +kerning first=204 second=284 amount=-1 +kerning first=73 second=250 amount=-1 +kerning first=73 second=251 amount=-1 +kerning first=204 second=283 amount=-1 +kerning first=73 second=253 amount=-1 +kerning first=73 second=255 amount=-1 +kerning first=73 second=257 amount=-1 +kerning first=73 second=259 amount=-1 +kerning first=73 second=261 amount=-1 +kerning first=73 second=262 amount=-1 +kerning first=73 second=263 amount=-1 +kerning first=73 second=264 amount=-1 +kerning first=73 second=266 amount=-1 +kerning first=73 second=267 amount=-1 +kerning first=73 second=268 amount=-1 +kerning first=73 second=269 amount=-1 +kerning first=73 second=275 amount=-1 +kerning first=73 second=277 amount=-1 +kerning first=73 second=279 amount=-1 +kerning first=73 second=281 amount=-1 +kerning first=73 second=283 amount=-1 +kerning first=73 second=284 amount=-1 +kerning first=73 second=286 amount=-1 +kerning first=73 second=287 amount=-1 +kerning first=73 second=288 amount=-1 +kerning first=73 second=289 amount=-1 +kerning first=73 second=290 amount=-1 +kerning first=73 second=291 amount=-1 +kerning first=204 second=281 amount=-1 +kerning first=204 second=279 amount=-1 +kerning first=73 second=332 amount=-1 +kerning first=73 second=333 amount=-1 +kerning first=73 second=334 amount=-1 +kerning first=73 second=335 amount=-1 +kerning first=73 second=336 amount=-1 +kerning first=73 second=337 amount=-1 +kerning first=73 second=338 amount=-1 +kerning first=73 second=339 amount=-1 +kerning first=73 second=346 amount=-1 +kerning first=73 second=347 amount=-1 +kerning first=73 second=350 amount=-1 +kerning first=73 second=351 amount=-1 +kerning first=73 second=352 amount=-1 +kerning first=73 second=353 amount=-1 +kerning first=73 second=361 amount=-1 +kerning first=73 second=363 amount=-1 +kerning first=73 second=365 amount=-1 +kerning first=73 second=367 amount=-1 +kerning first=73 second=369 amount=-1 +kerning first=73 second=375 amount=-1 +kerning first=204 second=277 amount=-1 +kerning first=204 second=275 amount=-1 +kerning first=204 second=269 amount=-1 +kerning first=204 second=268 amount=-1 +kerning first=204 second=267 amount=-1 +kerning first=204 second=266 amount=-1 +kerning first=204 second=264 amount=-1 +kerning first=204 second=263 amount=-1 +kerning first=204 second=262 amount=-1 +kerning first=204 second=261 amount=-1 +kerning first=204 second=259 amount=-1 +kerning first=204 second=257 amount=-1 +kerning first=73 second=8249 amount=-1 +kerning first=204 second=255 amount=-1 +kerning first=74 second=45 amount=-1 +kerning first=204 second=253 amount=-1 +kerning first=74 second=65 amount=-2 +kerning first=74 second=67 amount=-1 +kerning first=74 second=71 amount=-1 +kerning first=74 second=74 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=74 second=81 amount=-1 +kerning first=204 second=251 amount=-1 +kerning first=204 second=250 amount=-1 +kerning first=204 second=248 amount=-1 +kerning first=204 second=246 amount=-1 +kerning first=204 second=245 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=99 amount=-1 +kerning first=74 second=100 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=204 second=244 amount=-1 +kerning first=74 second=103 amount=-1 +kerning first=74 second=105 amount=-1 +kerning first=204 second=243 amount=-1 +kerning first=204 second=242 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=112 amount=-1 +kerning first=74 second=113 amount=-1 +kerning first=204 second=240 amount=-1 +kerning first=74 second=115 amount=-1 +kerning first=204 second=235 amount=-1 +kerning first=204 second=234 amount=-1 +kerning first=204 second=233 amount=-1 +kerning first=74 second=171 amount=-1 +kerning first=74 second=192 amount=-2 +kerning first=74 second=193 amount=-2 +kerning first=74 second=194 amount=-2 +kerning first=74 second=196 amount=-2 +kerning first=74 second=197 amount=-2 +kerning first=74 second=198 amount=-2 +kerning first=74 second=199 amount=-1 +kerning first=74 second=210 amount=-1 +kerning first=74 second=211 amount=-1 +kerning first=74 second=212 amount=-1 +kerning first=74 second=213 amount=-1 +kerning first=74 second=214 amount=-1 +kerning first=74 second=216 amount=-1 +kerning first=204 second=232 amount=-1 +kerning first=204 second=231 amount=-1 +kerning first=74 second=224 amount=-1 +kerning first=74 second=225 amount=-1 +kerning first=74 second=226 amount=-1 +kerning first=74 second=227 amount=-1 +kerning first=74 second=228 amount=-1 +kerning first=74 second=229 amount=-1 +kerning first=74 second=230 amount=-1 +kerning first=74 second=231 amount=-1 +kerning first=204 second=230 amount=-1 +kerning first=74 second=233 amount=-1 +kerning first=74 second=234 amount=-1 +kerning first=204 second=229 amount=-1 +kerning first=74 second=237 amount=-1 +kerning first=74 second=240 amount=-1 +kerning first=204 second=228 amount=-1 +kerning first=204 second=227 amount=-1 +kerning first=74 second=243 amount=-1 +kerning first=74 second=244 amount=-1 +kerning first=74 second=245 amount=-1 +kerning first=204 second=226 amount=-1 +kerning first=74 second=248 amount=-1 +kerning first=74 second=256 amount=-2 +kerning first=74 second=257 amount=-1 +kerning first=74 second=259 amount=-1 +kerning first=74 second=260 amount=-2 +kerning first=74 second=261 amount=-1 +kerning first=74 second=262 amount=-1 +kerning first=74 second=263 amount=-1 +kerning first=74 second=264 amount=-1 +kerning first=74 second=266 amount=-1 +kerning first=74 second=267 amount=-1 +kerning first=74 second=268 amount=-1 +kerning first=74 second=269 amount=-1 +kerning first=74 second=275 amount=-1 +kerning first=74 second=277 amount=-1 +kerning first=74 second=279 amount=-1 +kerning first=74 second=281 amount=-1 +kerning first=74 second=283 amount=-1 +kerning first=74 second=284 amount=-1 +kerning first=74 second=286 amount=-1 +kerning first=74 second=287 amount=-1 +kerning first=74 second=288 amount=-1 +kerning first=74 second=289 amount=-1 +kerning first=74 second=290 amount=-1 +kerning first=74 second=291 amount=-1 +kerning first=74 second=303 amount=-1 +kerning first=74 second=305 amount=-1 +kerning first=204 second=225 amount=-1 +kerning first=204 second=224 amount=-1 +kerning first=204 second=216 amount=-1 +kerning first=204 second=214 amount=-1 +kerning first=74 second=332 amount=-1 +kerning first=74 second=333 amount=-1 +kerning first=74 second=334 amount=-1 +kerning first=74 second=335 amount=-1 +kerning first=74 second=336 amount=-1 +kerning first=74 second=337 amount=-1 +kerning first=74 second=338 amount=-1 +kerning first=74 second=339 amount=-1 +kerning first=204 second=213 amount=-1 +kerning first=204 second=212 amount=-1 +kerning first=74 second=347 amount=-1 +kerning first=204 second=211 amount=-1 +kerning first=74 second=351 amount=-1 +kerning first=204 second=210 amount=-1 +kerning first=74 second=353 amount=-1 +kerning first=204 second=199 amount=-1 +kerning first=204 second=121 amount=-1 +kerning first=204 second=119 amount=-1 +kerning first=204 second=118 amount=-1 +kerning first=204 second=117 amount=-1 +kerning first=204 second=115 amount=-1 +kerning first=204 second=113 amount=-1 +kerning first=204 second=111 amount=-1 +kerning first=204 second=103 amount=-1 +kerning first=204 second=101 amount=-1 +kerning first=204 second=100 amount=-1 +kerning first=204 second=99 amount=-1 +kerning first=204 second=97 amount=-1 +kerning first=204 second=83 amount=-1 +kerning first=204 second=81 amount=-1 +kerning first=204 second=79 amount=-1 +kerning first=204 second=71 amount=-1 +kerning first=204 second=67 amount=-1 +kerning first=203 second=8249 amount=-1 +kerning first=74 second=8249 amount=-1 +kerning first=203 second=382 amount=-1 +kerning first=203 second=380 amount=-1 +kerning first=203 second=378 amount=-1 +kerning first=203 second=370 amount=-1 +kerning first=203 second=369 amount=-1 +kerning first=203 second=368 amount=-1 +kerning first=75 second=45 amount=-2 +kerning first=203 second=367 amount=-1 +kerning first=75 second=67 amount=-1 +kerning first=75 second=71 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=75 second=81 amount=-1 +kerning first=75 second=83 amount=-1 +kerning first=75 second=84 amount=-1 +kerning first=75 second=85 amount=-1 +kerning first=75 second=86 amount=-1 +kerning first=75 second=87 amount=-1 +kerning first=75 second=89 amount=-1 +kerning first=203 second=366 amount=-1 +kerning first=203 second=365 amount=-1 +kerning first=75 second=99 amount=-1 +kerning first=75 second=100 amount=-1 +kerning first=75 second=101 amount=-1 +kerning first=75 second=103 amount=-1 +kerning first=203 second=364 amount=-1 +kerning first=203 second=363 amount=-1 +kerning first=203 second=362 amount=-1 +kerning first=203 second=361 amount=-1 +kerning first=75 second=111 amount=-1 +kerning first=203 second=352 amount=-1 +kerning first=75 second=113 amount=-1 +kerning first=203 second=350 amount=-1 +kerning first=203 second=346 amount=-1 +kerning first=203 second=344 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=75 second=118 amount=-1 +kerning first=75 second=119 amount=-1 +kerning first=75 second=121 amount=-1 +kerning first=75 second=171 amount=-2 +kerning first=75 second=199 amount=-1 +kerning first=75 second=210 amount=-1 +kerning first=75 second=211 amount=-1 +kerning first=75 second=212 amount=-1 +kerning first=75 second=213 amount=-1 +kerning first=75 second=214 amount=-1 +kerning first=75 second=216 amount=-1 +kerning first=75 second=217 amount=-1 +kerning first=75 second=218 amount=-1 +kerning first=75 second=219 amount=-1 +kerning first=75 second=220 amount=-1 +kerning first=75 second=221 amount=-1 +kerning first=203 second=330 amount=-1 +kerning first=203 second=327 amount=-1 +kerning first=203 second=325 amount=-1 +kerning first=203 second=323 amount=-1 +kerning first=203 second=317 amount=-1 +kerning first=203 second=315 amount=-1 +kerning first=203 second=313 amount=-1 +kerning first=75 second=231 amount=-1 +kerning first=75 second=232 amount=-1 +kerning first=75 second=233 amount=-1 +kerning first=75 second=234 amount=-1 +kerning first=75 second=235 amount=-1 +kerning first=75 second=240 amount=-1 +kerning first=75 second=242 amount=-1 +kerning first=75 second=243 amount=-1 +kerning first=75 second=244 amount=-1 +kerning first=75 second=245 amount=-1 +kerning first=75 second=246 amount=-1 +kerning first=75 second=248 amount=-1 +kerning first=75 second=249 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=75 second=253 amount=-1 +kerning first=203 second=310 amount=-1 +kerning first=75 second=255 amount=-1 +kerning first=203 second=304 amount=-1 +kerning first=203 second=302 amount=-1 +kerning first=203 second=298 amount=-1 +kerning first=75 second=262 amount=-1 +kerning first=75 second=263 amount=-1 +kerning first=75 second=264 amount=-1 +kerning first=75 second=266 amount=-1 +kerning first=75 second=267 amount=-1 +kerning first=75 second=268 amount=-1 +kerning first=75 second=269 amount=-1 +kerning first=75 second=275 amount=-1 +kerning first=75 second=277 amount=-1 +kerning first=75 second=279 amount=-1 +kerning first=75 second=281 amount=-1 +kerning first=75 second=283 amount=-1 +kerning first=75 second=284 amount=-1 +kerning first=75 second=286 amount=-1 +kerning first=75 second=287 amount=-1 +kerning first=75 second=288 amount=-1 +kerning first=75 second=289 amount=-1 +kerning first=75 second=290 amount=-1 +kerning first=75 second=291 amount=-1 +kerning first=203 second=296 amount=-1 +kerning first=203 second=291 amount=-1 +kerning first=203 second=289 amount=-1 +kerning first=203 second=287 amount=-1 +kerning first=75 second=332 amount=-1 +kerning first=75 second=333 amount=-1 +kerning first=75 second=334 amount=-1 +kerning first=75 second=335 amount=-1 +kerning first=75 second=336 amount=-1 +kerning first=75 second=337 amount=-1 +kerning first=75 second=338 amount=-1 +kerning first=75 second=339 amount=-1 +kerning first=203 second=282 amount=-1 +kerning first=75 second=346 amount=-1 +kerning first=203 second=280 amount=-1 +kerning first=75 second=350 amount=-1 +kerning first=203 second=278 amount=-1 +kerning first=75 second=352 amount=-1 +kerning first=203 second=274 amount=-1 +kerning first=75 second=354 amount=-1 +kerning first=203 second=270 amount=-1 +kerning first=75 second=356 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=75 second=362 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=75 second=364 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=75 second=366 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=75 second=368 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=75 second=370 amount=-1 +kerning first=75 second=374 amount=-1 +kerning first=75 second=375 amount=-1 +kerning first=203 second=260 amount=-1 +kerning first=203 second=256 amount=-1 +kerning first=203 second=252 amount=-1 +kerning first=203 second=251 amount=-1 +kerning first=203 second=250 amount=-1 +kerning first=203 second=249 amount=-1 +kerning first=203 second=220 amount=-1 +kerning first=203 second=219 amount=-1 +kerning first=203 second=218 amount=-1 +kerning first=203 second=217 amount=-1 +kerning first=203 second=209 amount=-1 +kerning first=203 second=207 amount=-1 +kerning first=203 second=206 amount=-1 +kerning first=203 second=205 amount=-1 +kerning first=75 second=8217 amount=-1 +kerning first=75 second=8220 amount=-1 +kerning first=75 second=8221 amount=-1 +kerning first=75 second=8249 amount=-2 +kerning first=203 second=204 amount=-1 +kerning first=76 second=65 amount=-1 +kerning first=76 second=66 amount=-1 +kerning first=203 second=203 amount=-1 +kerning first=76 second=68 amount=-1 +kerning first=76 second=69 amount=-1 +kerning first=76 second=70 amount=-1 +kerning first=203 second=202 amount=-1 +kerning first=76 second=72 amount=-1 +kerning first=76 second=73 amount=-1 +kerning first=203 second=201 amount=-1 +kerning first=76 second=75 amount=-1 +kerning first=76 second=76 amount=-1 +kerning first=76 second=77 amount=-1 +kerning first=76 second=78 amount=-1 +kerning first=203 second=200 amount=-1 +kerning first=76 second=80 amount=-1 +kerning first=203 second=198 amount=-1 +kerning first=76 second=82 amount=-1 +kerning first=203 second=197 amount=-1 +kerning first=76 second=84 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=76 second=86 amount=-1 +kerning first=76 second=87 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=76 second=90 amount=-1 +kerning first=76 second=98 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=76 second=104 amount=-1 +kerning first=76 second=105 amount=-1 +kerning first=76 second=106 amount=-1 +kerning first=76 second=107 amount=-1 +kerning first=76 second=108 amount=-1 +kerning first=203 second=196 amount=-1 +kerning first=203 second=194 amount=-1 +kerning first=76 second=112 amount=-1 +kerning first=203 second=193 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=118 amount=-1 +kerning first=76 second=119 amount=-1 +kerning first=203 second=192 amount=-1 +kerning first=76 second=121 amount=-1 +kerning first=76 second=122 amount=-1 +kerning first=203 second=171 amount=-1 +kerning first=76 second=192 amount=-1 +kerning first=76 second=193 amount=-1 +kerning first=76 second=194 amount=-1 +kerning first=76 second=196 amount=-1 +kerning first=76 second=197 amount=-1 +kerning first=76 second=198 amount=-1 +kerning first=203 second=122 amount=-1 +kerning first=76 second=200 amount=-1 +kerning first=76 second=201 amount=-1 +kerning first=76 second=202 amount=-1 +kerning first=76 second=203 amount=-1 +kerning first=76 second=204 amount=-1 +kerning first=76 second=205 amount=-1 +kerning first=76 second=206 amount=-1 +kerning first=76 second=207 amount=-1 +kerning first=76 second=209 amount=-1 +kerning first=203 second=117 amount=-1 +kerning first=203 second=112 amount=-1 +kerning first=203 second=103 amount=-1 +kerning first=203 second=102 amount=-1 +kerning first=203 second=85 amount=-1 +kerning first=203 second=83 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=76 second=221 amount=-1 +kerning first=203 second=82 amount=-1 +kerning first=76 second=237 amount=-1 +kerning first=203 second=80 amount=-1 +kerning first=76 second=249 amount=-1 +kerning first=76 second=250 amount=-1 +kerning first=76 second=251 amount=-1 +kerning first=76 second=252 amount=-1 +kerning first=76 second=253 amount=-1 +kerning first=76 second=254 amount=-1 +kerning first=76 second=255 amount=-1 +kerning first=76 second=256 amount=-1 +kerning first=76 second=260 amount=-1 +kerning first=203 second=78 amount=-1 +kerning first=203 second=77 amount=-1 +kerning first=203 second=76 amount=-1 +kerning first=203 second=75 amount=-1 +kerning first=76 second=270 amount=-1 +kerning first=76 second=274 amount=-1 +kerning first=76 second=278 amount=-1 +kerning first=76 second=280 amount=-1 +kerning first=76 second=282 amount=-1 +kerning first=203 second=73 amount=-1 +kerning first=203 second=72 amount=-1 +kerning first=76 second=287 amount=-1 +kerning first=203 second=70 amount=-1 +kerning first=76 second=289 amount=-1 +kerning first=203 second=69 amount=-1 +kerning first=76 second=291 amount=-1 +kerning first=76 second=296 amount=-1 +kerning first=76 second=298 amount=-1 +kerning first=76 second=302 amount=-1 +kerning first=76 second=303 amount=-1 +kerning first=76 second=304 amount=-1 +kerning first=76 second=305 amount=-1 +kerning first=76 second=310 amount=-1 +kerning first=76 second=311 amount=-1 +kerning first=76 second=313 amount=-1 +kerning first=76 second=314 amount=-1 +kerning first=76 second=315 amount=-1 +kerning first=76 second=316 amount=-1 +kerning first=76 second=317 amount=-1 +kerning first=76 second=318 amount=-1 +kerning first=76 second=323 amount=-1 +kerning first=203 second=68 amount=-1 +kerning first=76 second=325 amount=-1 +kerning first=203 second=66 amount=-1 +kerning first=76 second=327 amount=-1 +kerning first=203 second=65 amount=-1 +kerning first=76 second=330 amount=-1 +kerning first=203 second=45 amount=-1 +kerning first=202 second=8249 amount=-1 +kerning first=202 second=382 amount=-1 +kerning first=202 second=380 amount=-1 +kerning first=202 second=378 amount=-1 +kerning first=76 second=344 amount=-1 +kerning first=202 second=370 amount=-1 +kerning first=202 second=369 amount=-1 +kerning first=202 second=368 amount=-1 +kerning first=202 second=367 amount=-1 +kerning first=202 second=366 amount=-1 +kerning first=202 second=365 amount=-1 +kerning first=76 second=354 amount=-1 +kerning first=76 second=356 amount=-1 +kerning first=76 second=361 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=76 second=363 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=76 second=365 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=76 second=367 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=76 second=369 amount=-1 +kerning first=76 second=370 amount=-1 +kerning first=76 second=374 amount=-1 +kerning first=76 second=375 amount=-1 +kerning first=76 second=377 amount=-1 +kerning first=76 second=378 amount=-1 +kerning first=76 second=379 amount=-1 +kerning first=76 second=380 amount=-1 +kerning first=76 second=381 amount=-1 +kerning first=76 second=382 amount=-1 +kerning first=202 second=364 amount=-1 +kerning first=202 second=363 amount=-1 +kerning first=202 second=362 amount=-1 +kerning first=202 second=361 amount=-1 +kerning first=202 second=352 amount=-1 +kerning first=202 second=350 amount=-1 +kerning first=202 second=346 amount=-1 +kerning first=202 second=344 amount=-1 +kerning first=202 second=330 amount=-1 +kerning first=202 second=327 amount=-1 +kerning first=202 second=325 amount=-1 +kerning first=202 second=323 amount=-1 +kerning first=202 second=317 amount=-1 +kerning first=202 second=315 amount=-1 +kerning first=202 second=313 amount=-1 +kerning first=202 second=310 amount=-1 +kerning first=202 second=304 amount=-1 +kerning first=202 second=302 amount=-1 +kerning first=202 second=298 amount=-1 +kerning first=202 second=296 amount=-1 +kerning first=202 second=291 amount=-1 +kerning first=202 second=289 amount=-1 +kerning first=76 second=8217 amount=-1 +kerning first=76 second=8220 amount=-1 +kerning first=76 second=8221 amount=-1 +kerning first=202 second=287 amount=-1 +kerning first=202 second=282 amount=-1 +kerning first=77 second=45 amount=-1 +kerning first=202 second=280 amount=-1 +kerning first=77 second=67 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=202 second=278 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=77 second=81 amount=-1 +kerning first=77 second=83 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=103 amount=-1 +kerning first=202 second=274 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=202 second=270 amount=-1 +kerning first=77 second=113 amount=-1 +kerning first=77 second=115 amount=-1 +kerning first=77 second=117 amount=-1 +kerning first=77 second=118 amount=-1 +kerning first=77 second=119 amount=-1 +kerning first=77 second=121 amount=-1 +kerning first=202 second=260 amount=-1 +kerning first=77 second=171 amount=-1 +kerning first=77 second=199 amount=-1 +kerning first=77 second=210 amount=-1 +kerning first=77 second=211 amount=-1 +kerning first=77 second=212 amount=-1 +kerning first=77 second=213 amount=-1 +kerning first=77 second=214 amount=-1 +kerning first=77 second=216 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=77 second=226 amount=-1 +kerning first=77 second=227 amount=-1 +kerning first=77 second=228 amount=-1 +kerning first=77 second=229 amount=-1 +kerning first=77 second=230 amount=-1 +kerning first=77 second=231 amount=-1 +kerning first=77 second=232 amount=-1 +kerning first=77 second=233 amount=-1 +kerning first=77 second=234 amount=-1 +kerning first=77 second=235 amount=-1 +kerning first=202 second=256 amount=-1 +kerning first=77 second=240 amount=-1 +kerning first=77 second=242 amount=-1 +kerning first=77 second=243 amount=-1 +kerning first=77 second=244 amount=-1 +kerning first=77 second=245 amount=-1 +kerning first=77 second=246 amount=-1 +kerning first=77 second=248 amount=-1 +kerning first=202 second=252 amount=-1 +kerning first=77 second=250 amount=-1 +kerning first=77 second=251 amount=-1 +kerning first=202 second=251 amount=-1 +kerning first=77 second=253 amount=-1 +kerning first=77 second=255 amount=-1 +kerning first=77 second=257 amount=-1 +kerning first=77 second=259 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=77 second=262 amount=-1 +kerning first=77 second=263 amount=-1 +kerning first=77 second=264 amount=-1 +kerning first=77 second=266 amount=-1 +kerning first=77 second=267 amount=-1 +kerning first=77 second=268 amount=-1 +kerning first=77 second=269 amount=-1 +kerning first=77 second=275 amount=-1 +kerning first=77 second=277 amount=-1 +kerning first=77 second=279 amount=-1 +kerning first=77 second=281 amount=-1 +kerning first=77 second=283 amount=-1 +kerning first=77 second=284 amount=-1 +kerning first=77 second=286 amount=-1 +kerning first=77 second=287 amount=-1 +kerning first=77 second=288 amount=-1 +kerning first=77 second=289 amount=-1 +kerning first=77 second=290 amount=-1 +kerning first=77 second=291 amount=-1 +kerning first=202 second=250 amount=-1 +kerning first=202 second=249 amount=-1 +kerning first=77 second=332 amount=-1 +kerning first=77 second=333 amount=-1 +kerning first=77 second=334 amount=-1 +kerning first=77 second=335 amount=-1 +kerning first=77 second=336 amount=-1 +kerning first=77 second=337 amount=-1 +kerning first=77 second=338 amount=-1 +kerning first=77 second=339 amount=-1 +kerning first=77 second=346 amount=-1 +kerning first=77 second=347 amount=-1 +kerning first=77 second=350 amount=-1 +kerning first=77 second=351 amount=-1 +kerning first=77 second=352 amount=-1 +kerning first=77 second=353 amount=-1 +kerning first=77 second=361 amount=-1 +kerning first=77 second=363 amount=-1 +kerning first=77 second=365 amount=-1 +kerning first=77 second=367 amount=-1 +kerning first=77 second=369 amount=-1 +kerning first=77 second=375 amount=-1 +kerning first=202 second=220 amount=-1 +kerning first=202 second=219 amount=-1 +kerning first=202 second=218 amount=-1 +kerning first=202 second=217 amount=-1 +kerning first=202 second=209 amount=-1 +kerning first=202 second=207 amount=-1 +kerning first=202 second=206 amount=-1 +kerning first=202 second=205 amount=-1 +kerning first=202 second=204 amount=-1 +kerning first=202 second=203 amount=-1 +kerning first=202 second=202 amount=-1 +kerning first=202 second=201 amount=-1 +kerning first=77 second=8249 amount=-1 +kerning first=202 second=200 amount=-1 +kerning first=78 second=45 amount=-1 +kerning first=202 second=198 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=202 second=197 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=78 second=81 amount=-1 +kerning first=78 second=83 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=99 amount=-1 +kerning first=78 second=100 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=103 amount=-1 +kerning first=202 second=196 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=202 second=194 amount=-1 +kerning first=78 second=113 amount=-1 +kerning first=78 second=115 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=118 amount=-1 +kerning first=78 second=119 amount=-1 +kerning first=78 second=121 amount=-1 +kerning first=202 second=193 amount=-1 +kerning first=78 second=171 amount=-1 +kerning first=78 second=199 amount=-1 +kerning first=78 second=210 amount=-1 +kerning first=78 second=211 amount=-1 +kerning first=78 second=212 amount=-1 +kerning first=78 second=213 amount=-1 +kerning first=78 second=214 amount=-1 +kerning first=78 second=216 amount=-1 +kerning first=78 second=224 amount=-1 +kerning first=78 second=225 amount=-1 +kerning first=78 second=226 amount=-1 +kerning first=78 second=227 amount=-1 +kerning first=78 second=228 amount=-1 +kerning first=78 second=229 amount=-1 +kerning first=78 second=230 amount=-1 +kerning first=78 second=231 amount=-1 +kerning first=78 second=232 amount=-1 +kerning first=78 second=233 amount=-1 +kerning first=78 second=234 amount=-1 +kerning first=78 second=235 amount=-1 +kerning first=202 second=192 amount=-1 +kerning first=78 second=240 amount=-1 +kerning first=78 second=242 amount=-1 +kerning first=78 second=243 amount=-1 +kerning first=78 second=244 amount=-1 +kerning first=78 second=245 amount=-1 +kerning first=78 second=246 amount=-1 +kerning first=78 second=248 amount=-1 +kerning first=202 second=171 amount=-1 +kerning first=78 second=250 amount=-1 +kerning first=78 second=251 amount=-1 +kerning first=202 second=122 amount=-1 +kerning first=78 second=253 amount=-1 +kerning first=78 second=255 amount=-1 +kerning first=78 second=257 amount=-1 +kerning first=78 second=259 amount=-1 +kerning first=78 second=261 amount=-1 +kerning first=78 second=262 amount=-1 +kerning first=78 second=263 amount=-1 +kerning first=78 second=264 amount=-1 +kerning first=78 second=266 amount=-1 +kerning first=78 second=267 amount=-1 +kerning first=78 second=268 amount=-1 +kerning first=78 second=269 amount=-1 +kerning first=78 second=275 amount=-1 +kerning first=78 second=277 amount=-1 +kerning first=78 second=279 amount=-1 +kerning first=78 second=281 amount=-1 +kerning first=78 second=283 amount=-1 +kerning first=78 second=284 amount=-1 +kerning first=78 second=286 amount=-1 +kerning first=78 second=287 amount=-1 +kerning first=78 second=288 amount=-1 +kerning first=78 second=289 amount=-1 +kerning first=78 second=290 amount=-1 +kerning first=78 second=291 amount=-1 +kerning first=202 second=117 amount=-1 +kerning first=202 second=112 amount=-1 +kerning first=78 second=332 amount=-1 +kerning first=78 second=333 amount=-1 +kerning first=78 second=334 amount=-1 +kerning first=78 second=335 amount=-1 +kerning first=78 second=336 amount=-1 +kerning first=78 second=337 amount=-1 +kerning first=78 second=338 amount=-1 +kerning first=78 second=339 amount=-1 +kerning first=78 second=346 amount=-1 +kerning first=78 second=347 amount=-1 +kerning first=78 second=350 amount=-1 +kerning first=78 second=351 amount=-1 +kerning first=78 second=352 amount=-1 +kerning first=78 second=353 amount=-1 +kerning first=78 second=361 amount=-1 +kerning first=78 second=363 amount=-1 +kerning first=78 second=365 amount=-1 +kerning first=78 second=367 amount=-1 +kerning first=78 second=369 amount=-1 +kerning first=78 second=375 amount=-1 +kerning first=202 second=103 amount=-1 +kerning first=202 second=102 amount=-1 +kerning first=202 second=85 amount=-1 +kerning first=202 second=83 amount=-1 +kerning first=202 second=82 amount=-1 +kerning first=202 second=80 amount=-1 +kerning first=202 second=78 amount=-1 +kerning first=202 second=77 amount=-1 +kerning first=202 second=76 amount=-1 +kerning first=202 second=75 amount=-1 +kerning first=202 second=73 amount=-1 +kerning first=202 second=72 amount=-1 +kerning first=78 second=8249 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=202 second=70 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=74 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=202 second=69 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=202 second=68 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=89 amount=-1 +kerning first=79 second=90 amount=-1 +kerning first=202 second=66 amount=-1 +kerning first=202 second=65 amount=-1 +kerning first=202 second=45 amount=-1 +kerning first=201 second=8249 amount=-1 +kerning first=201 second=382 amount=-1 +kerning first=201 second=380 amount=-1 +kerning first=79 second=122 amount=-1 +kerning first=201 second=378 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=79 second=193 amount=-1 +kerning first=79 second=194 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=79 second=197 amount=-1 +kerning first=79 second=198 amount=-1 +kerning first=79 second=200 amount=-1 +kerning first=79 second=201 amount=-1 +kerning first=79 second=202 amount=-1 +kerning first=79 second=203 amount=-1 +kerning first=79 second=204 amount=-1 +kerning first=79 second=205 amount=-1 +kerning first=79 second=206 amount=-1 +kerning first=79 second=207 amount=-1 +kerning first=79 second=209 amount=-1 +kerning first=201 second=370 amount=-1 +kerning first=201 second=369 amount=-1 +kerning first=201 second=368 amount=-1 +kerning first=201 second=367 amount=-1 +kerning first=79 second=221 amount=-1 +kerning first=201 second=366 amount=-1 +kerning first=201 second=365 amount=-1 +kerning first=201 second=364 amount=-1 +kerning first=201 second=363 amount=-1 +kerning first=201 second=362 amount=-1 +kerning first=201 second=361 amount=-1 +kerning first=201 second=352 amount=-1 +kerning first=201 second=350 amount=-1 +kerning first=79 second=256 amount=-1 +kerning first=201 second=346 amount=-1 +kerning first=201 second=344 amount=-1 +kerning first=79 second=260 amount=-1 +kerning first=201 second=330 amount=-1 +kerning first=79 second=270 amount=-1 +kerning first=79 second=274 amount=-1 +kerning first=79 second=278 amount=-1 +kerning first=79 second=280 amount=-1 +kerning first=79 second=282 amount=-1 +kerning first=201 second=327 amount=-1 +kerning first=201 second=325 amount=-1 +kerning first=201 second=323 amount=-1 +kerning first=79 second=296 amount=-1 +kerning first=79 second=298 amount=-1 +kerning first=79 second=302 amount=-1 +kerning first=201 second=317 amount=-1 +kerning first=79 second=304 amount=-1 +kerning first=201 second=315 amount=-1 +kerning first=79 second=310 amount=-1 +kerning first=79 second=313 amount=-1 +kerning first=79 second=315 amount=-1 +kerning first=79 second=317 amount=-1 +kerning first=79 second=323 amount=-1 +kerning first=79 second=325 amount=-1 +kerning first=79 second=327 amount=-1 +kerning first=79 second=330 amount=-1 +kerning first=79 second=344 amount=-1 +kerning first=201 second=313 amount=-1 +kerning first=201 second=310 amount=-1 +kerning first=201 second=304 amount=-1 +kerning first=79 second=354 amount=-1 +kerning first=79 second=356 amount=-1 +kerning first=201 second=302 amount=-1 +kerning first=201 second=298 amount=-1 +kerning first=201 second=296 amount=-1 +kerning first=201 second=291 amount=-1 +kerning first=201 second=289 amount=-1 +kerning first=79 second=374 amount=-1 +kerning first=79 second=377 amount=-1 +kerning first=79 second=378 amount=-1 +kerning first=79 second=379 amount=-1 +kerning first=79 second=380 amount=-1 +kerning first=79 second=381 amount=-1 +kerning first=79 second=382 amount=-1 +kerning first=201 second=287 amount=-1 +kerning first=201 second=282 amount=-1 +kerning first=201 second=280 amount=-1 +kerning first=201 second=278 amount=-1 +kerning first=201 second=274 amount=-1 +kerning first=201 second=270 amount=-1 +kerning first=201 second=260 amount=-1 +kerning first=201 second=256 amount=-1 +kerning first=201 second=252 amount=-1 +kerning first=201 second=251 amount=-1 +kerning first=201 second=250 amount=-1 +kerning first=201 second=249 amount=-1 +kerning first=201 second=220 amount=-1 +kerning first=201 second=219 amount=-1 +kerning first=201 second=218 amount=-1 +kerning first=201 second=217 amount=-1 +kerning first=79 second=8217 amount=-1 +kerning first=79 second=8220 amount=-1 +kerning first=79 second=8221 amount=-1 +kerning first=201 second=209 amount=-1 +kerning first=80 second=44 amount=-1 +kerning first=80 second=45 amount=-1 +kerning first=80 second=46 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=201 second=207 amount=-1 +kerning first=201 second=206 amount=-1 +kerning first=201 second=205 amount=-1 +kerning first=201 second=204 amount=-1 +kerning first=201 second=203 amount=-1 +kerning first=201 second=202 amount=-1 +kerning first=80 second=74 amount=-1 +kerning first=201 second=201 amount=-1 +kerning first=201 second=200 amount=-1 +kerning first=201 second=198 amount=-1 +kerning first=201 second=197 amount=-1 +kerning first=201 second=196 amount=-1 +kerning first=201 second=194 amount=-1 +kerning first=201 second=193 amount=-1 +kerning first=201 second=192 amount=-1 +kerning first=201 second=171 amount=-1 +kerning first=201 second=122 amount=-1 +kerning first=201 second=117 amount=-1 +kerning first=201 second=112 amount=-1 +kerning first=201 second=103 amount=-1 +kerning first=201 second=102 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=201 second=85 amount=-1 +kerning first=201 second=83 amount=-1 +kerning first=201 second=82 amount=-1 +kerning first=201 second=80 amount=-1 +kerning first=80 second=171 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=80 second=194 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=80 second=197 amount=-1 +kerning first=80 second=198 amount=-1 +kerning first=201 second=78 amount=-1 +kerning first=201 second=77 amount=-1 +kerning first=201 second=76 amount=-1 +kerning first=201 second=75 amount=-1 +kerning first=201 second=73 amount=-1 +kerning first=201 second=72 amount=-1 +kerning first=201 second=70 amount=-1 +kerning first=201 second=69 amount=-1 +kerning first=201 second=68 amount=-1 +kerning first=201 second=66 amount=-1 +kerning first=201 second=65 amount=-1 +kerning first=201 second=45 amount=-1 +kerning first=200 second=8249 amount=-1 +kerning first=200 second=382 amount=-1 +kerning first=200 second=380 amount=-1 +kerning first=200 second=378 amount=-1 +kerning first=200 second=370 amount=-1 +kerning first=200 second=369 amount=-1 +kerning first=200 second=368 amount=-1 +kerning first=200 second=367 amount=-1 +kerning first=200 second=366 amount=-1 +kerning first=200 second=365 amount=-1 +kerning first=200 second=364 amount=-1 +kerning first=200 second=363 amount=-1 +kerning first=200 second=362 amount=-1 +kerning first=200 second=361 amount=-1 +kerning first=200 second=352 amount=-1 +kerning first=200 second=350 amount=-1 +kerning first=200 second=346 amount=-1 +kerning first=80 second=256 amount=-1 +kerning first=200 second=344 amount=-1 +kerning first=200 second=330 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=200 second=327 amount=-1 +kerning first=200 second=325 amount=-1 +kerning first=200 second=323 amount=-1 +kerning first=200 second=317 amount=-1 +kerning first=200 second=315 amount=-1 +kerning first=200 second=313 amount=-1 +kerning first=200 second=310 amount=-1 +kerning first=200 second=304 amount=-1 +kerning first=200 second=302 amount=-1 +kerning first=200 second=298 amount=-1 +kerning first=200 second=296 amount=-1 +kerning first=200 second=291 amount=-1 +kerning first=200 second=289 amount=-1 +kerning first=200 second=287 amount=-1 +kerning first=80 second=287 amount=-1 +kerning first=80 second=289 amount=-1 +kerning first=80 second=291 amount=-1 +kerning first=200 second=282 amount=-1 +kerning first=200 second=280 amount=-1 +kerning first=200 second=278 amount=-1 +kerning first=200 second=274 amount=-1 +kerning first=200 second=270 amount=-1 +kerning first=200 second=260 amount=-1 +kerning first=200 second=256 amount=-1 +kerning first=200 second=252 amount=-1 +kerning first=200 second=251 amount=-1 +kerning first=200 second=250 amount=-1 +kerning first=200 second=249 amount=-1 +kerning first=200 second=220 amount=-1 +kerning first=200 second=219 amount=-1 +kerning first=200 second=218 amount=-1 +kerning first=200 second=217 amount=-1 +kerning first=200 second=209 amount=-1 +kerning first=200 second=207 amount=-1 +kerning first=200 second=206 amount=-1 +kerning first=200 second=205 amount=-1 +kerning first=200 second=204 amount=-1 +kerning first=200 second=203 amount=-1 +kerning first=200 second=202 amount=-1 +kerning first=200 second=201 amount=-1 +kerning first=200 second=200 amount=-1 +kerning first=200 second=198 amount=-1 +kerning first=200 second=197 amount=-1 +kerning first=200 second=196 amount=-1 +kerning first=200 second=194 amount=-1 +kerning first=200 second=193 amount=-1 +kerning first=200 second=192 amount=-1 +kerning first=200 second=171 amount=-1 +kerning first=200 second=122 amount=-1 +kerning first=200 second=117 amount=-1 +kerning first=200 second=112 amount=-1 +kerning first=200 second=103 amount=-1 +kerning first=200 second=102 amount=-1 +kerning first=200 second=85 amount=-1 +kerning first=200 second=83 amount=-1 +kerning first=80 second=8249 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=200 second=82 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=81 second=65 amount=-1 +kerning first=81 second=66 amount=-1 +kerning first=81 second=68 amount=-1 +kerning first=81 second=69 amount=-1 +kerning first=81 second=70 amount=-1 +kerning first=81 second=72 amount=-1 +kerning first=81 second=73 amount=-1 +kerning first=81 second=74 amount=-1 +kerning first=81 second=75 amount=-1 +kerning first=81 second=76 amount=-1 +kerning first=81 second=77 amount=-1 +kerning first=81 second=78 amount=-1 +kerning first=81 second=80 amount=-1 +kerning first=81 second=82 amount=-1 +kerning first=200 second=80 amount=-1 +kerning first=81 second=84 amount=-1 +kerning first=200 second=78 amount=-1 +kerning first=81 second=86 amount=-1 +kerning first=81 second=87 amount=-1 +kerning first=81 second=89 amount=-1 +kerning first=81 second=90 amount=-1 +kerning first=200 second=77 amount=-1 +kerning first=200 second=76 amount=-1 +kerning first=200 second=75 amount=-1 +kerning first=200 second=73 amount=-1 +kerning first=200 second=72 amount=-1 +kerning first=200 second=70 amount=-1 +kerning first=81 second=122 amount=-1 +kerning first=200 second=69 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=81 second=194 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=81 second=197 amount=-1 +kerning first=81 second=198 amount=-1 +kerning first=81 second=200 amount=-1 +kerning first=81 second=201 amount=-1 +kerning first=81 second=202 amount=-1 +kerning first=81 second=203 amount=-1 +kerning first=81 second=204 amount=-1 +kerning first=81 second=205 amount=-1 +kerning first=81 second=206 amount=-1 +kerning first=81 second=207 amount=-1 +kerning first=81 second=209 amount=-1 +kerning first=200 second=68 amount=-1 +kerning first=200 second=66 amount=-1 +kerning first=200 second=65 amount=-1 +kerning first=200 second=45 amount=-1 +kerning first=81 second=221 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=199 second=382 amount=-1 +kerning first=199 second=381 amount=-1 +kerning first=199 second=380 amount=-1 +kerning first=199 second=379 amount=-1 +kerning first=199 second=378 amount=-1 +kerning first=199 second=377 amount=-1 +kerning first=199 second=370 amount=-1 +kerning first=81 second=256 amount=-1 +kerning first=199 second=369 amount=-1 +kerning first=199 second=368 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=199 second=367 amount=-1 +kerning first=81 second=270 amount=-1 +kerning first=81 second=274 amount=-1 +kerning first=81 second=278 amount=-1 +kerning first=81 second=280 amount=-1 +kerning first=81 second=282 amount=-1 +kerning first=199 second=366 amount=-1 +kerning first=199 second=365 amount=-1 +kerning first=199 second=364 amount=-1 +kerning first=81 second=296 amount=-1 +kerning first=81 second=298 amount=-1 +kerning first=81 second=302 amount=-1 +kerning first=199 second=363 amount=-1 +kerning first=81 second=304 amount=-1 +kerning first=199 second=362 amount=-1 +kerning first=81 second=310 amount=-1 +kerning first=81 second=313 amount=-1 +kerning first=81 second=315 amount=-1 +kerning first=81 second=317 amount=-1 +kerning first=81 second=323 amount=-1 +kerning first=81 second=325 amount=-1 +kerning first=81 second=327 amount=-1 +kerning first=81 second=330 amount=-1 +kerning first=81 second=344 amount=-1 +kerning first=199 second=361 amount=-1 +kerning first=199 second=352 amount=-1 +kerning first=199 second=350 amount=-1 +kerning first=81 second=354 amount=-1 +kerning first=81 second=356 amount=-1 +kerning first=199 second=346 amount=-1 +kerning first=199 second=344 amount=-1 +kerning first=199 second=339 amount=-1 +kerning first=199 second=338 amount=-1 +kerning first=199 second=337 amount=-1 +kerning first=81 second=374 amount=-1 +kerning first=81 second=377 amount=-1 +kerning first=81 second=378 amount=-1 +kerning first=81 second=379 amount=-1 +kerning first=81 second=380 amount=-1 +kerning first=81 second=381 amount=-1 +kerning first=81 second=382 amount=-1 +kerning first=199 second=336 amount=-1 +kerning first=199 second=335 amount=-1 +kerning first=199 second=334 amount=-1 +kerning first=199 second=333 amount=-1 +kerning first=199 second=332 amount=-1 +kerning first=199 second=330 amount=-1 +kerning first=199 second=327 amount=-1 +kerning first=199 second=325 amount=-1 +kerning first=199 second=323 amount=-1 +kerning first=199 second=317 amount=-1 +kerning first=199 second=315 amount=-1 +kerning first=199 second=313 amount=-1 +kerning first=199 second=310 amount=-1 +kerning first=199 second=304 amount=-1 +kerning first=199 second=302 amount=-1 +kerning first=199 second=298 amount=-1 +kerning first=81 second=8217 amount=-1 +kerning first=81 second=8220 amount=-1 +kerning first=81 second=8221 amount=-1 +kerning first=199 second=296 amount=-1 +kerning first=82 second=44 amount=-1 +kerning first=82 second=45 amount=-2 +kerning first=82 second=46 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=82 second=79 amount=-1 +kerning first=82 second=81 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=82 second=98 amount=-1 +kerning first=82 second=99 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=82 second=101 amount=-1 +kerning first=82 second=103 amount=-1 +kerning first=82 second=104 amount=-1 +kerning first=199 second=291 amount=-1 +kerning first=199 second=290 amount=-1 +kerning first=82 second=107 amount=-1 +kerning first=82 second=108 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=199 second=289 amount=-1 +kerning first=82 second=113 amount=-1 +kerning first=82 second=115 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=82 second=118 amount=-1 +kerning first=82 second=119 amount=-1 +kerning first=82 second=121 amount=-1 +kerning first=82 second=171 amount=-2 +kerning first=82 second=199 amount=-1 +kerning first=82 second=210 amount=-1 +kerning first=82 second=211 amount=-1 +kerning first=82 second=212 amount=-1 +kerning first=82 second=213 amount=-1 +kerning first=82 second=214 amount=-1 +kerning first=82 second=216 amount=-1 +kerning first=82 second=217 amount=-1 +kerning first=82 second=218 amount=-1 +kerning first=82 second=219 amount=-1 +kerning first=82 second=220 amount=-1 +kerning first=82 second=221 amount=-1 +kerning first=82 second=224 amount=-1 +kerning first=82 second=225 amount=-1 +kerning first=82 second=226 amount=-1 +kerning first=82 second=227 amount=-1 +kerning first=82 second=228 amount=-1 +kerning first=82 second=229 amount=-1 +kerning first=82 second=230 amount=-1 +kerning first=82 second=231 amount=-1 +kerning first=82 second=232 amount=-1 +kerning first=82 second=233 amount=-1 +kerning first=82 second=234 amount=-1 +kerning first=82 second=235 amount=-1 +kerning first=199 second=288 amount=-1 +kerning first=82 second=240 amount=-1 +kerning first=82 second=242 amount=-1 +kerning first=82 second=243 amount=-1 +kerning first=82 second=244 amount=-1 +kerning first=82 second=245 amount=-1 +kerning first=82 second=246 amount=-1 +kerning first=82 second=248 amount=-1 +kerning first=82 second=249 amount=-1 +kerning first=82 second=250 amount=-1 +kerning first=82 second=251 amount=-1 +kerning first=82 second=252 amount=-1 +kerning first=82 second=253 amount=-1 +kerning first=82 second=254 amount=-1 +kerning first=82 second=255 amount=-1 +kerning first=82 second=257 amount=-1 +kerning first=82 second=259 amount=-1 +kerning first=82 second=261 amount=-1 +kerning first=82 second=262 amount=-1 +kerning first=82 second=263 amount=-1 +kerning first=82 second=264 amount=-1 +kerning first=82 second=266 amount=-1 +kerning first=82 second=267 amount=-1 +kerning first=82 second=268 amount=-1 +kerning first=82 second=269 amount=-1 +kerning first=82 second=275 amount=-1 +kerning first=82 second=277 amount=-1 +kerning first=82 second=279 amount=-1 +kerning first=82 second=281 amount=-1 +kerning first=82 second=283 amount=-1 +kerning first=82 second=284 amount=-1 +kerning first=82 second=286 amount=-1 +kerning first=82 second=287 amount=-1 +kerning first=82 second=288 amount=-1 +kerning first=82 second=289 amount=-1 +kerning first=82 second=290 amount=-1 +kerning first=82 second=291 amount=-1 +kerning first=199 second=287 amount=-1 +kerning first=199 second=286 amount=-1 +kerning first=82 second=311 amount=-1 +kerning first=82 second=314 amount=-1 +kerning first=82 second=316 amount=-1 +kerning first=82 second=318 amount=-1 +kerning first=82 second=332 amount=-1 +kerning first=82 second=333 amount=-1 +kerning first=82 second=334 amount=-1 +kerning first=82 second=335 amount=-1 +kerning first=82 second=336 amount=-1 +kerning first=82 second=337 amount=-1 +kerning first=82 second=338 amount=-1 +kerning first=82 second=339 amount=-1 +kerning first=82 second=346 amount=-1 +kerning first=82 second=347 amount=-1 +kerning first=82 second=350 amount=-1 +kerning first=82 second=351 amount=-1 +kerning first=82 second=352 amount=-1 +kerning first=82 second=353 amount=-1 +kerning first=82 second=354 amount=-1 +kerning first=82 second=355 amount=-1 +kerning first=82 second=356 amount=-1 +kerning first=82 second=361 amount=-1 +kerning first=82 second=362 amount=-1 +kerning first=82 second=363 amount=-1 +kerning first=82 second=364 amount=-1 +kerning first=82 second=365 amount=-1 +kerning first=82 second=366 amount=-1 +kerning first=82 second=367 amount=-1 +kerning first=82 second=368 amount=-1 +kerning first=82 second=369 amount=-1 +kerning first=82 second=370 amount=-1 +kerning first=82 second=374 amount=-1 +kerning first=82 second=375 amount=-1 +kerning first=199 second=284 amount=-1 +kerning first=199 second=283 amount=-1 +kerning first=199 second=282 amount=-1 +kerning first=199 second=281 amount=-1 +kerning first=199 second=280 amount=-1 +kerning first=199 second=279 amount=-1 +kerning first=199 second=278 amount=-1 +kerning first=199 second=277 amount=-1 +kerning first=199 second=275 amount=-1 +kerning first=199 second=274 amount=-1 +kerning first=199 second=270 amount=-1 +kerning first=199 second=269 amount=-1 +kerning first=199 second=268 amount=-1 +kerning first=199 second=267 amount=-1 +kerning first=82 second=8217 amount=-2 +kerning first=82 second=8220 amount=-2 +kerning first=82 second=8221 amount=-2 +kerning first=82 second=8249 amount=-2 +kerning first=83 second=44 amount=-1 +kerning first=83 second=45 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=83 second=66 amount=-1 +kerning first=83 second=68 amount=-1 +kerning first=83 second=69 amount=-1 +kerning first=83 second=70 amount=-1 +kerning first=83 second=72 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=83 second=74 amount=-1 +kerning first=83 second=75 amount=-1 +kerning first=83 second=76 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=78 amount=-1 +kerning first=83 second=80 amount=-1 +kerning first=83 second=82 amount=-1 +kerning first=199 second=266 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=83 second=86 amount=-1 +kerning first=83 second=87 amount=-1 +kerning first=83 second=89 amount=-1 +kerning first=199 second=264 amount=-1 +kerning first=199 second=263 amount=-1 +kerning first=83 second=98 amount=-1 +kerning first=199 second=262 amount=-1 +kerning first=199 second=260 amount=-1 +kerning first=199 second=256 amount=-1 +kerning first=83 second=102 amount=-1 +kerning first=83 second=103 amount=-1 +kerning first=83 second=104 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=199 second=252 amount=-1 +kerning first=83 second=107 amount=-1 +kerning first=83 second=108 amount=-1 +kerning first=199 second=251 amount=-1 +kerning first=199 second=250 amount=-1 +kerning first=199 second=249 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=199 second=248 amount=-1 +kerning first=83 second=114 amount=-1 +kerning first=199 second=246 amount=-1 +kerning first=199 second=245 amount=-1 +kerning first=199 second=244 amount=-1 +kerning first=83 second=118 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=83 second=120 amount=-1 +kerning first=83 second=121 amount=-1 +kerning first=83 second=122 amount=-1 +kerning first=83 second=171 amount=-1 +kerning first=199 second=243 amount=-1 +kerning first=83 second=192 amount=-1 +kerning first=83 second=193 amount=-1 +kerning first=83 second=194 amount=-1 +kerning first=83 second=196 amount=-1 +kerning first=83 second=197 amount=-1 +kerning first=83 second=198 amount=-1 +kerning first=83 second=200 amount=-1 +kerning first=83 second=201 amount=-1 +kerning first=83 second=202 amount=-1 +kerning first=83 second=203 amount=-1 +kerning first=83 second=204 amount=-1 +kerning first=83 second=205 amount=-1 +kerning first=83 second=206 amount=-1 +kerning first=83 second=207 amount=-1 +kerning first=83 second=209 amount=-1 +kerning first=83 second=217 amount=-1 +kerning first=83 second=218 amount=-1 +kerning first=83 second=219 amount=-1 +kerning first=83 second=220 amount=-1 +kerning first=83 second=221 amount=-1 +kerning first=199 second=242 amount=-1 +kerning first=199 second=240 amount=-1 +kerning first=199 second=235 amount=-1 +kerning first=199 second=234 amount=-1 +kerning first=199 second=233 amount=-1 +kerning first=199 second=232 amount=-1 +kerning first=199 second=231 amount=-1 +kerning first=199 second=220 amount=-1 +kerning first=199 second=219 amount=-1 +kerning first=199 second=218 amount=-1 +kerning first=199 second=217 amount=-1 +kerning first=199 second=216 amount=-1 +kerning first=199 second=214 amount=-1 +kerning first=83 second=237 amount=-1 +kerning first=199 second=213 amount=-1 +kerning first=199 second=212 amount=-1 +kerning first=199 second=211 amount=-1 +kerning first=199 second=210 amount=-1 +kerning first=199 second=209 amount=-1 +kerning first=199 second=207 amount=-1 +kerning first=199 second=206 amount=-1 +kerning first=199 second=205 amount=-1 +kerning first=199 second=204 amount=-1 +kerning first=199 second=203 amount=-1 +kerning first=199 second=202 amount=-1 +kerning first=199 second=201 amount=-1 +kerning first=83 second=253 amount=-1 +kerning first=83 second=254 amount=-1 +kerning first=83 second=255 amount=-1 +kerning first=83 second=256 amount=-1 +kerning first=199 second=200 amount=-1 +kerning first=199 second=199 amount=-1 +kerning first=83 second=260 amount=-1 +kerning first=199 second=198 amount=-1 +kerning first=199 second=197 amount=-1 +kerning first=199 second=196 amount=-1 +kerning first=199 second=194 amount=-1 +kerning first=83 second=270 amount=-1 +kerning first=83 second=274 amount=-1 +kerning first=199 second=193 amount=-1 +kerning first=199 second=192 amount=-1 +kerning first=83 second=278 amount=-1 +kerning first=199 second=171 amount=-1 +kerning first=83 second=280 amount=-1 +kerning first=199 second=122 amount=-1 +kerning first=83 second=282 amount=-1 +kerning first=199 second=117 amount=-1 +kerning first=83 second=287 amount=-1 +kerning first=83 second=289 amount=-1 +kerning first=83 second=291 amount=-1 +kerning first=83 second=296 amount=-1 +kerning first=83 second=298 amount=-1 +kerning first=83 second=302 amount=-1 +kerning first=83 second=303 amount=-1 +kerning first=83 second=304 amount=-1 +kerning first=83 second=305 amount=-1 +kerning first=83 second=310 amount=-1 +kerning first=83 second=311 amount=-1 +kerning first=83 second=313 amount=-1 +kerning first=83 second=314 amount=-1 +kerning first=83 second=315 amount=-1 +kerning first=83 second=316 amount=-1 +kerning first=83 second=317 amount=-1 +kerning first=83 second=318 amount=-1 +kerning first=83 second=323 amount=-1 +kerning first=199 second=113 amount=-1 +kerning first=83 second=325 amount=-1 +kerning first=199 second=112 amount=-1 +kerning first=83 second=327 amount=-1 +kerning first=199 second=111 amount=-1 +kerning first=83 second=330 amount=-1 +kerning first=199 second=103 amount=-1 +kerning first=199 second=102 amount=-1 +kerning first=199 second=101 amount=-1 +kerning first=199 second=100 amount=-1 +kerning first=199 second=99 amount=-1 +kerning first=83 second=344 amount=-1 +kerning first=83 second=345 amount=-1 +kerning first=199 second=90 amount=-1 +kerning first=199 second=85 amount=-1 +kerning first=199 second=83 amount=-1 +kerning first=199 second=82 amount=-1 +kerning first=199 second=81 amount=-1 +kerning first=199 second=80 amount=-1 +kerning first=83 second=354 amount=-1 +kerning first=199 second=79 amount=-1 +kerning first=83 second=356 amount=-1 +kerning first=199 second=78 amount=-1 +kerning first=83 second=362 amount=-1 +kerning first=199 second=77 amount=-1 +kerning first=83 second=364 amount=-1 +kerning first=199 second=76 amount=-1 +kerning first=83 second=366 amount=-1 +kerning first=199 second=75 amount=-1 +kerning first=83 second=368 amount=-1 +kerning first=199 second=74 amount=-1 +kerning first=83 second=370 amount=-1 +kerning first=83 second=374 amount=-1 +kerning first=83 second=375 amount=-1 +kerning first=199 second=73 amount=-1 +kerning first=83 second=378 amount=-1 +kerning first=199 second=72 amount=-1 +kerning first=83 second=380 amount=-1 +kerning first=199 second=71 amount=-1 +kerning first=83 second=382 amount=-1 +kerning first=199 second=70 amount=-1 +kerning first=199 second=69 amount=-1 +kerning first=199 second=68 amount=-1 +kerning first=199 second=67 amount=-1 +kerning first=199 second=66 amount=-1 +kerning first=199 second=65 amount=-1 +kerning first=199 second=45 amount=-1 +kerning first=198 second=8249 amount=-1 +kerning first=198 second=382 amount=-1 +kerning first=198 second=380 amount=-1 +kerning first=198 second=378 amount=-1 +kerning first=198 second=370 amount=-1 +kerning first=198 second=369 amount=-1 +kerning first=198 second=368 amount=-1 +kerning first=198 second=367 amount=-1 +kerning first=198 second=366 amount=-1 +kerning first=198 second=365 amount=-1 +kerning first=198 second=364 amount=-1 +kerning first=198 second=363 amount=-1 +kerning first=198 second=362 amount=-1 +kerning first=198 second=361 amount=-1 +kerning first=198 second=352 amount=-1 +kerning first=198 second=350 amount=-1 +kerning first=198 second=346 amount=-1 +kerning first=198 second=344 amount=-1 +kerning first=198 second=330 amount=-1 +kerning first=83 second=8217 amount=-1 +kerning first=83 second=8220 amount=-1 +kerning first=83 second=8221 amount=-1 +kerning first=83 second=8249 amount=-1 +kerning first=198 second=327 amount=-1 +kerning first=198 second=325 amount=-1 +kerning first=198 second=323 amount=-1 +kerning first=198 second=317 amount=-1 +kerning first=198 second=315 amount=-1 +kerning first=198 second=313 amount=-1 +kerning first=84 second=44 amount=-2 +kerning first=84 second=45 amount=-2 +kerning first=84 second=46 amount=-2 +kerning first=84 second=65 amount=-2 +kerning first=198 second=310 amount=-1 +kerning first=84 second=67 amount=-1 +kerning first=198 second=304 amount=-1 +kerning first=198 second=302 amount=-1 +kerning first=198 second=298 amount=-1 +kerning first=84 second=71 amount=-1 +kerning first=198 second=296 amount=-1 +kerning first=198 second=291 amount=-1 +kerning first=84 second=74 amount=-1 +kerning first=198 second=289 amount=-1 +kerning first=198 second=287 amount=-1 +kerning first=198 second=282 amount=-1 +kerning first=198 second=280 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=198 second=278 amount=-1 +kerning first=84 second=81 amount=-1 +kerning first=198 second=274 amount=-1 +kerning first=84 second=83 amount=-1 +kerning first=198 second=270 amount=-1 +kerning first=84 second=90 amount=-1 +kerning first=84 second=97 amount=-2 +kerning first=84 second=99 amount=-1 +kerning first=84 second=100 amount=-1 +kerning first=84 second=101 amount=-1 +kerning first=198 second=260 amount=-1 +kerning first=84 second=103 amount=-2 +kerning first=84 second=105 amount=-1 +kerning first=84 second=109 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=84 second=112 amount=-1 +kerning first=84 second=113 amount=-1 +kerning first=198 second=256 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=198 second=252 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=84 second=118 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=84 second=120 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=84 second=171 amount=-2 +kerning first=84 second=187 amount=-1 +kerning first=84 second=192 amount=-2 +kerning first=84 second=193 amount=-2 +kerning first=84 second=194 amount=-2 +kerning first=84 second=196 amount=-2 +kerning first=84 second=197 amount=-2 +kerning first=84 second=198 amount=-2 +kerning first=84 second=199 amount=-1 +kerning first=198 second=251 amount=-1 +kerning first=198 second=250 amount=-1 +kerning first=198 second=249 amount=-1 +kerning first=198 second=220 amount=-1 +kerning first=198 second=219 amount=-1 +kerning first=198 second=218 amount=-1 +kerning first=198 second=217 amount=-1 +kerning first=198 second=209 amount=-1 +kerning first=198 second=207 amount=-1 +kerning first=84 second=210 amount=-1 +kerning first=84 second=211 amount=-1 +kerning first=84 second=212 amount=-1 +kerning first=84 second=213 amount=-1 +kerning first=84 second=214 amount=-1 +kerning first=84 second=216 amount=-1 +kerning first=198 second=206 amount=-1 +kerning first=198 second=205 amount=-1 +kerning first=198 second=204 amount=-1 +kerning first=198 second=203 amount=-1 +kerning first=84 second=223 amount=-1 +kerning first=84 second=224 amount=-1 +kerning first=84 second=225 amount=-2 +kerning first=84 second=226 amount=-2 +kerning first=84 second=227 amount=-2 +kerning first=84 second=228 amount=-1 +kerning first=84 second=229 amount=-2 +kerning first=84 second=230 amount=-2 +kerning first=84 second=231 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=84 second=233 amount=-1 +kerning first=84 second=234 amount=-1 +kerning first=84 second=235 amount=-1 +kerning first=84 second=237 amount=-1 +kerning first=84 second=240 amount=-1 +kerning first=84 second=241 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=84 second=243 amount=-1 +kerning first=84 second=244 amount=-1 +kerning first=84 second=245 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=84 second=248 amount=-1 +kerning first=198 second=202 amount=-1 +kerning first=84 second=250 amount=-1 +kerning first=84 second=251 amount=-1 +kerning first=198 second=201 amount=-1 +kerning first=84 second=253 amount=-1 +kerning first=84 second=255 amount=-1 +kerning first=84 second=256 amount=-2 +kerning first=84 second=257 amount=-2 +kerning first=84 second=259 amount=-2 +kerning first=84 second=260 amount=-2 +kerning first=84 second=261 amount=-2 +kerning first=84 second=262 amount=-1 +kerning first=84 second=263 amount=-1 +kerning first=84 second=264 amount=-1 +kerning first=84 second=266 amount=-1 +kerning first=84 second=267 amount=-1 +kerning first=84 second=268 amount=-1 +kerning first=84 second=269 amount=-1 +kerning first=198 second=200 amount=-1 +kerning first=198 second=198 amount=-1 +kerning first=84 second=275 amount=-1 +kerning first=84 second=277 amount=-1 +kerning first=198 second=197 amount=-1 +kerning first=84 second=279 amount=-1 +kerning first=198 second=196 amount=-1 +kerning first=84 second=281 amount=-1 +kerning first=198 second=194 amount=-1 +kerning first=84 second=283 amount=-1 +kerning first=84 second=284 amount=-1 +kerning first=84 second=286 amount=-1 +kerning first=84 second=287 amount=-2 +kerning first=84 second=288 amount=-1 +kerning first=84 second=289 amount=-2 +kerning first=84 second=290 amount=-1 +kerning first=84 second=291 amount=-2 +kerning first=198 second=193 amount=-1 +kerning first=198 second=192 amount=-1 +kerning first=198 second=171 amount=-1 +kerning first=84 second=303 amount=-1 +kerning first=198 second=122 amount=-1 +kerning first=84 second=305 amount=-1 +kerning first=198 second=117 amount=-1 +kerning first=198 second=112 amount=-1 +kerning first=198 second=103 amount=-1 +kerning first=198 second=102 amount=-1 +kerning first=198 second=85 amount=-1 +kerning first=84 second=324 amount=-1 +kerning first=198 second=83 amount=-1 +kerning first=84 second=326 amount=-1 +kerning first=198 second=82 amount=-1 +kerning first=84 second=328 amount=-1 +kerning first=198 second=80 amount=-1 +kerning first=84 second=331 amount=-1 +kerning first=84 second=332 amount=-1 +kerning first=84 second=333 amount=-1 +kerning first=84 second=334 amount=-1 +kerning first=84 second=335 amount=-1 +kerning first=84 second=336 amount=-1 +kerning first=84 second=337 amount=-1 +kerning first=84 second=338 amount=-1 +kerning first=84 second=339 amount=-1 +kerning first=198 second=78 amount=-1 +kerning first=198 second=77 amount=-1 +kerning first=84 second=346 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=84 second=350 amount=-1 +kerning first=84 second=351 amount=-1 +kerning first=84 second=352 amount=-1 +kerning first=84 second=353 amount=-1 +kerning first=198 second=76 amount=-1 +kerning first=84 second=361 amount=-1 +kerning first=198 second=75 amount=-1 +kerning first=84 second=363 amount=-1 +kerning first=198 second=73 amount=-1 +kerning first=84 second=365 amount=-1 +kerning first=198 second=72 amount=-1 +kerning first=84 second=367 amount=-1 +kerning first=198 second=70 amount=-1 +kerning first=84 second=369 amount=-1 +kerning first=198 second=69 amount=-1 +kerning first=84 second=375 amount=-1 +kerning first=84 second=377 amount=-1 +kerning first=84 second=378 amount=-1 +kerning first=84 second=379 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=84 second=381 amount=-1 +kerning first=84 second=382 amount=-1 +kerning first=198 second=68 amount=-1 +kerning first=198 second=66 amount=-1 +kerning first=198 second=65 amount=-1 +kerning first=198 second=45 amount=-1 +kerning first=197 second=8249 amount=-1 +kerning first=197 second=8221 amount=-2 +kerning first=197 second=8220 amount=-2 +kerning first=197 second=8217 amount=-2 +kerning first=197 second=375 amount=-1 +kerning first=197 second=374 amount=-2 +kerning first=197 second=370 amount=-1 +kerning first=197 second=369 amount=-1 +kerning first=197 second=368 amount=-1 +kerning first=197 second=367 amount=-1 +kerning first=197 second=366 amount=-1 +kerning first=197 second=365 amount=-1 +kerning first=197 second=364 amount=-1 +kerning first=197 second=363 amount=-1 +kerning first=197 second=362 amount=-1 +kerning first=197 second=361 amount=-1 +kerning first=197 second=356 amount=-2 +kerning first=84 second=8249 amount=-2 +kerning first=84 second=8250 amount=-1 +kerning first=197 second=354 amount=-2 +kerning first=197 second=353 amount=-1 +kerning first=197 second=352 amount=-1 +kerning first=197 second=351 amount=-1 +kerning first=197 second=350 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=85 second=45 amount=-2 +kerning first=85 second=46 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=197 second=347 amount=-1 +kerning first=197 second=346 amount=-1 +kerning first=85 second=74 amount=-1 +kerning first=197 second=338 amount=-1 +kerning first=197 second=336 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=197 second=334 amount=-1 +kerning first=85 second=97 amount=-1 +kerning first=85 second=99 amount=-1 +kerning first=85 second=100 amount=-1 +kerning first=85 second=101 amount=-1 +kerning first=197 second=332 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=105 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=111 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=113 amount=-1 +kerning first=197 second=318 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=197 second=316 amount=-1 +kerning first=85 second=118 amount=-1 +kerning first=85 second=119 amount=-1 +kerning first=85 second=120 amount=-1 +kerning first=197 second=314 amount=-1 +kerning first=85 second=122 amount=-1 +kerning first=85 second=171 amount=-2 +kerning first=85 second=192 amount=-1 +kerning first=85 second=193 amount=-1 +kerning first=85 second=194 amount=-1 +kerning first=85 second=196 amount=-1 +kerning first=85 second=197 amount=-1 +kerning first=85 second=198 amount=-1 +kerning first=197 second=311 amount=-1 +kerning first=197 second=291 amount=-1 +kerning first=197 second=290 amount=-1 +kerning first=197 second=289 amount=-1 +kerning first=197 second=288 amount=-1 +kerning first=197 second=287 amount=-1 +kerning first=197 second=286 amount=-1 +kerning first=85 second=223 amount=-1 +kerning first=85 second=224 amount=-1 +kerning first=85 second=225 amount=-1 +kerning first=85 second=226 amount=-1 +kerning first=85 second=227 amount=-1 +kerning first=85 second=228 amount=-1 +kerning first=85 second=229 amount=-1 +kerning first=85 second=230 amount=-1 +kerning first=85 second=231 amount=-1 +kerning first=85 second=232 amount=-1 +kerning first=85 second=233 amount=-1 +kerning first=85 second=234 amount=-1 +kerning first=85 second=235 amount=-1 +kerning first=85 second=237 amount=-1 +kerning first=85 second=240 amount=-1 +kerning first=85 second=241 amount=-1 +kerning first=85 second=242 amount=-1 +kerning first=85 second=243 amount=-1 +kerning first=85 second=244 amount=-1 +kerning first=85 second=245 amount=-1 +kerning first=85 second=246 amount=-1 +kerning first=85 second=248 amount=-1 +kerning first=197 second=284 amount=-1 +kerning first=197 second=268 amount=-1 +kerning first=197 second=266 amount=-1 +kerning first=197 second=264 amount=-1 +kerning first=197 second=262 amount=-1 +kerning first=197 second=255 amount=-1 +kerning first=85 second=256 amount=-1 +kerning first=85 second=257 amount=-1 +kerning first=85 second=259 amount=-1 +kerning first=85 second=260 amount=-1 +kerning first=85 second=261 amount=-1 +kerning first=197 second=254 amount=-1 +kerning first=85 second=263 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=197 second=252 amount=-1 +kerning first=85 second=267 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=85 second=269 amount=-1 +kerning first=85 second=275 amount=-1 +kerning first=85 second=277 amount=-1 +kerning first=85 second=279 amount=-1 +kerning first=85 second=281 amount=-1 +kerning first=85 second=283 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=85 second=287 amount=-1 +kerning first=197 second=221 amount=-2 +kerning first=85 second=289 amount=-1 +kerning first=197 second=220 amount=-1 +kerning first=85 second=291 amount=-1 +kerning first=85 second=303 amount=-1 +kerning first=85 second=305 amount=-1 +kerning first=85 second=324 amount=-1 +kerning first=85 second=326 amount=-1 +kerning first=85 second=328 amount=-1 +kerning first=85 second=331 amount=-1 +kerning first=197 second=219 amount=-1 +kerning first=85 second=333 amount=-1 +kerning first=197 second=218 amount=-1 +kerning first=85 second=335 amount=-1 +kerning first=197 second=217 amount=-1 +kerning first=85 second=337 amount=-1 +kerning first=197 second=216 amount=-1 +kerning first=85 second=339 amount=-1 +kerning first=197 second=214 amount=-1 +kerning first=85 second=346 amount=-1 +kerning first=85 second=347 amount=-1 +kerning first=85 second=350 amount=-1 +kerning first=85 second=351 amount=-1 +kerning first=85 second=352 amount=-1 +kerning first=85 second=353 amount=-1 +kerning first=197 second=213 amount=-1 +kerning first=197 second=212 amount=-1 +kerning first=197 second=211 amount=-1 +kerning first=197 second=210 amount=-1 +kerning first=197 second=199 amount=-1 +kerning first=197 second=171 amount=-1 +kerning first=197 second=121 amount=-1 +kerning first=85 second=378 amount=-1 +kerning first=197 second=119 amount=-1 +kerning first=85 second=380 amount=-1 +kerning first=197 second=118 amount=-1 +kerning first=85 second=382 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=197 second=115 amount=-1 +kerning first=197 second=112 amount=-1 +kerning first=197 second=108 amount=-1 +kerning first=197 second=107 amount=-1 +kerning first=197 second=104 amount=-1 +kerning first=197 second=103 amount=-1 +kerning first=197 second=98 amount=-1 +kerning first=197 second=89 amount=-2 +kerning first=197 second=87 amount=-2 +kerning first=197 second=86 amount=-2 +kerning first=85 second=8249 amount=-2 +kerning first=197 second=85 amount=-1 +kerning first=197 second=84 amount=-2 +kerning first=197 second=83 amount=-1 +kerning first=197 second=81 amount=-1 +kerning first=197 second=79 amount=-1 +kerning first=86 second=44 amount=-2 +kerning first=86 second=45 amount=-2 +kerning first=86 second=46 amount=-2 +kerning first=86 second=65 amount=-2 +kerning first=197 second=71 amount=-1 +kerning first=86 second=67 amount=-1 +kerning first=197 second=67 amount=-1 +kerning first=197 second=45 amount=-1 +kerning first=196 second=8249 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=196 second=8221 amount=-2 +kerning first=196 second=8220 amount=-2 +kerning first=86 second=74 amount=-1 +kerning first=196 second=8217 amount=-2 +kerning first=196 second=375 amount=-1 +kerning first=196 second=374 amount=-2 +kerning first=196 second=370 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=196 second=369 amount=-1 +kerning first=86 second=81 amount=-1 +kerning first=196 second=368 amount=-1 +kerning first=86 second=83 amount=-1 +kerning first=196 second=367 amount=-1 +kerning first=86 second=90 amount=-1 +kerning first=86 second=97 amount=-2 +kerning first=86 second=99 amount=-1 +kerning first=86 second=100 amount=-1 +kerning first=86 second=101 amount=-1 +kerning first=196 second=366 amount=-1 +kerning first=86 second=103 amount=-2 +kerning first=86 second=105 amount=-1 +kerning first=86 second=109 amount=-1 +kerning first=86 second=110 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=86 second=112 amount=-1 +kerning first=86 second=113 amount=-1 +kerning first=196 second=365 amount=-1 +kerning first=86 second=115 amount=-1 +kerning first=196 second=364 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=86 second=118 amount=-1 +kerning first=86 second=119 amount=-1 +kerning first=86 second=120 amount=-1 +kerning first=86 second=121 amount=-1 +kerning first=86 second=122 amount=-1 +kerning first=86 second=171 amount=-2 +kerning first=86 second=187 amount=-1 +kerning first=86 second=192 amount=-2 +kerning first=86 second=193 amount=-2 +kerning first=86 second=194 amount=-2 +kerning first=86 second=196 amount=-2 +kerning first=86 second=197 amount=-2 +kerning first=86 second=198 amount=-2 +kerning first=86 second=199 amount=-1 +kerning first=196 second=363 amount=-1 +kerning first=196 second=362 amount=-1 +kerning first=196 second=361 amount=-1 +kerning first=196 second=356 amount=-2 +kerning first=196 second=354 amount=-2 +kerning first=196 second=353 amount=-1 +kerning first=196 second=352 amount=-1 +kerning first=196 second=351 amount=-1 +kerning first=196 second=350 amount=-1 +kerning first=86 second=210 amount=-1 +kerning first=86 second=211 amount=-1 +kerning first=86 second=212 amount=-1 +kerning first=86 second=213 amount=-1 +kerning first=86 second=214 amount=-1 +kerning first=86 second=216 amount=-1 +kerning first=196 second=347 amount=-1 +kerning first=196 second=346 amount=-1 +kerning first=196 second=338 amount=-1 +kerning first=196 second=336 amount=-1 +kerning first=86 second=223 amount=-1 +kerning first=86 second=224 amount=-1 +kerning first=86 second=225 amount=-2 +kerning first=86 second=226 amount=-2 +kerning first=86 second=227 amount=-2 +kerning first=86 second=228 amount=-1 +kerning first=86 second=229 amount=-2 +kerning first=86 second=230 amount=-2 +kerning first=86 second=231 amount=-1 +kerning first=86 second=232 amount=-1 +kerning first=86 second=233 amount=-1 +kerning first=86 second=234 amount=-1 +kerning first=86 second=235 amount=-1 +kerning first=86 second=237 amount=-1 +kerning first=86 second=240 amount=-1 +kerning first=86 second=241 amount=-1 +kerning first=86 second=242 amount=-1 +kerning first=86 second=243 amount=-1 +kerning first=86 second=244 amount=-1 +kerning first=86 second=245 amount=-1 +kerning first=86 second=246 amount=-1 +kerning first=86 second=248 amount=-1 +kerning first=196 second=334 amount=-1 +kerning first=86 second=250 amount=-1 +kerning first=86 second=251 amount=-1 +kerning first=196 second=332 amount=-1 +kerning first=86 second=253 amount=-1 +kerning first=86 second=255 amount=-1 +kerning first=86 second=256 amount=-2 +kerning first=86 second=257 amount=-2 +kerning first=86 second=259 amount=-2 +kerning first=86 second=260 amount=-2 +kerning first=86 second=261 amount=-2 +kerning first=86 second=262 amount=-1 +kerning first=86 second=263 amount=-1 +kerning first=86 second=264 amount=-1 +kerning first=86 second=266 amount=-1 +kerning first=86 second=267 amount=-1 +kerning first=86 second=268 amount=-1 +kerning first=86 second=269 amount=-1 +kerning first=196 second=318 amount=-1 +kerning first=196 second=316 amount=-1 +kerning first=86 second=275 amount=-1 +kerning first=86 second=277 amount=-1 +kerning first=196 second=314 amount=-1 +kerning first=86 second=279 amount=-1 +kerning first=196 second=311 amount=-1 +kerning first=86 second=281 amount=-1 +kerning first=196 second=291 amount=-1 +kerning first=86 second=283 amount=-1 +kerning first=86 second=284 amount=-1 +kerning first=86 second=286 amount=-1 +kerning first=86 second=287 amount=-2 +kerning first=86 second=288 amount=-1 +kerning first=86 second=289 amount=-2 +kerning first=86 second=290 amount=-1 +kerning first=86 second=291 amount=-2 +kerning first=196 second=290 amount=-1 +kerning first=196 second=289 amount=-1 +kerning first=196 second=288 amount=-1 +kerning first=86 second=303 amount=-1 +kerning first=196 second=287 amount=-1 +kerning first=86 second=305 amount=-1 +kerning first=196 second=286 amount=-1 +kerning first=196 second=284 amount=-1 +kerning first=196 second=268 amount=-1 +kerning first=196 second=266 amount=-1 +kerning first=196 second=264 amount=-1 +kerning first=86 second=324 amount=-1 +kerning first=196 second=262 amount=-1 +kerning first=86 second=326 amount=-1 +kerning first=196 second=255 amount=-1 +kerning first=86 second=328 amount=-1 +kerning first=196 second=254 amount=-1 +kerning first=86 second=331 amount=-1 +kerning first=86 second=332 amount=-1 +kerning first=86 second=333 amount=-1 +kerning first=86 second=334 amount=-1 +kerning first=86 second=335 amount=-1 +kerning first=86 second=336 amount=-1 +kerning first=86 second=337 amount=-1 +kerning first=86 second=338 amount=-1 +kerning first=86 second=339 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=196 second=252 amount=-1 +kerning first=86 second=346 amount=-1 +kerning first=86 second=347 amount=-1 +kerning first=86 second=350 amount=-1 +kerning first=86 second=351 amount=-1 +kerning first=86 second=352 amount=-1 +kerning first=86 second=353 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=86 second=361 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=86 second=363 amount=-1 +kerning first=196 second=249 amount=-1 +kerning first=86 second=365 amount=-1 +kerning first=196 second=221 amount=-2 +kerning first=86 second=367 amount=-1 +kerning first=196 second=220 amount=-1 +kerning first=86 second=369 amount=-1 +kerning first=196 second=219 amount=-1 +kerning first=86 second=375 amount=-1 +kerning first=86 second=377 amount=-1 +kerning first=86 second=378 amount=-1 +kerning first=86 second=379 amount=-1 +kerning first=86 second=380 amount=-1 +kerning first=86 second=381 amount=-1 +kerning first=86 second=382 amount=-1 +kerning first=196 second=218 amount=-1 +kerning first=196 second=217 amount=-1 +kerning first=196 second=216 amount=-1 +kerning first=196 second=214 amount=-1 +kerning first=196 second=213 amount=-1 +kerning first=196 second=212 amount=-1 +kerning first=196 second=211 amount=-1 +kerning first=196 second=210 amount=-1 +kerning first=196 second=199 amount=-1 +kerning first=196 second=171 amount=-1 +kerning first=196 second=121 amount=-1 +kerning first=196 second=119 amount=-1 +kerning first=196 second=118 amount=-1 +kerning first=196 second=117 amount=-1 +kerning first=196 second=115 amount=-1 +kerning first=196 second=112 amount=-1 +kerning first=196 second=108 amount=-1 +kerning first=196 second=107 amount=-1 +kerning first=196 second=104 amount=-1 +kerning first=196 second=103 amount=-1 +kerning first=196 second=98 amount=-1 +kerning first=86 second=8249 amount=-2 +kerning first=86 second=8250 amount=-1 +kerning first=196 second=89 amount=-2 +kerning first=196 second=87 amount=-2 +kerning first=196 second=86 amount=-2 +kerning first=196 second=85 amount=-1 +kerning first=196 second=84 amount=-2 +kerning first=87 second=44 amount=-2 +kerning first=87 second=45 amount=-2 +kerning first=87 second=46 amount=-2 +kerning first=87 second=65 amount=-2 +kerning first=196 second=83 amount=-1 +kerning first=87 second=67 amount=-1 +kerning first=196 second=81 amount=-1 +kerning first=196 second=79 amount=-1 +kerning first=196 second=71 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=196 second=67 amount=-1 +kerning first=196 second=45 amount=-1 +kerning first=87 second=74 amount=-1 +kerning first=195 second=8249 amount=-1 +kerning first=195 second=8221 amount=-2 +kerning first=195 second=8220 amount=-2 +kerning first=195 second=8217 amount=-2 +kerning first=87 second=79 amount=-1 +kerning first=195 second=375 amount=-1 +kerning first=87 second=81 amount=-1 +kerning first=195 second=374 amount=-2 +kerning first=87 second=83 amount=-1 +kerning first=195 second=370 amount=-1 +kerning first=87 second=90 amount=-1 +kerning first=87 second=97 amount=-2 +kerning first=87 second=99 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=87 second=101 amount=-1 +kerning first=195 second=369 amount=-1 +kerning first=87 second=103 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=87 second=110 amount=-1 +kerning first=87 second=111 amount=-1 +kerning first=87 second=112 amount=-1 +kerning first=87 second=113 amount=-1 +kerning first=195 second=368 amount=-1 +kerning first=87 second=115 amount=-1 +kerning first=195 second=367 amount=-1 +kerning first=87 second=117 amount=-1 +kerning first=87 second=118 amount=-1 +kerning first=87 second=119 amount=-1 +kerning first=87 second=120 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=87 second=122 amount=-1 +kerning first=87 second=171 amount=-2 +kerning first=87 second=187 amount=-1 +kerning first=87 second=192 amount=-2 +kerning first=87 second=193 amount=-2 +kerning first=87 second=194 amount=-2 +kerning first=87 second=196 amount=-2 +kerning first=87 second=197 amount=-2 +kerning first=87 second=198 amount=-2 +kerning first=87 second=199 amount=-1 +kerning first=195 second=366 amount=-1 +kerning first=195 second=365 amount=-1 +kerning first=195 second=364 amount=-1 +kerning first=195 second=363 amount=-1 +kerning first=195 second=362 amount=-1 +kerning first=195 second=361 amount=-1 +kerning first=195 second=356 amount=-2 +kerning first=195 second=354 amount=-2 +kerning first=195 second=353 amount=-1 +kerning first=87 second=210 amount=-1 +kerning first=87 second=211 amount=-1 +kerning first=87 second=212 amount=-1 +kerning first=87 second=213 amount=-1 +kerning first=87 second=214 amount=-1 +kerning first=87 second=216 amount=-1 +kerning first=195 second=352 amount=-1 +kerning first=195 second=351 amount=-1 +kerning first=195 second=350 amount=-1 +kerning first=195 second=347 amount=-1 +kerning first=87 second=223 amount=-1 +kerning first=87 second=224 amount=-1 +kerning first=87 second=225 amount=-2 +kerning first=87 second=226 amount=-2 +kerning first=87 second=227 amount=-2 +kerning first=87 second=228 amount=-1 +kerning first=87 second=229 amount=-2 +kerning first=87 second=230 amount=-2 +kerning first=87 second=231 amount=-1 +kerning first=87 second=232 amount=-1 +kerning first=87 second=233 amount=-1 +kerning first=87 second=234 amount=-1 +kerning first=87 second=235 amount=-1 +kerning first=87 second=237 amount=-1 +kerning first=87 second=240 amount=-1 +kerning first=87 second=241 amount=-1 +kerning first=87 second=242 amount=-1 +kerning first=87 second=243 amount=-1 +kerning first=87 second=244 amount=-1 +kerning first=87 second=245 amount=-1 +kerning first=87 second=246 amount=-1 +kerning first=87 second=248 amount=-1 +kerning first=195 second=346 amount=-1 +kerning first=87 second=250 amount=-1 +kerning first=87 second=251 amount=-1 +kerning first=195 second=338 amount=-1 +kerning first=87 second=253 amount=-1 +kerning first=87 second=255 amount=-1 +kerning first=87 second=256 amount=-2 +kerning first=87 second=257 amount=-2 +kerning first=87 second=259 amount=-2 +kerning first=87 second=260 amount=-2 +kerning first=87 second=261 amount=-2 +kerning first=87 second=262 amount=-1 +kerning first=87 second=263 amount=-1 +kerning first=87 second=264 amount=-1 +kerning first=87 second=266 amount=-1 +kerning first=87 second=267 amount=-1 +kerning first=87 second=268 amount=-1 +kerning first=87 second=269 amount=-1 +kerning first=195 second=336 amount=-1 +kerning first=195 second=334 amount=-1 +kerning first=87 second=275 amount=-1 +kerning first=87 second=277 amount=-1 +kerning first=195 second=332 amount=-1 +kerning first=87 second=279 amount=-1 +kerning first=195 second=318 amount=-1 +kerning first=87 second=281 amount=-1 +kerning first=195 second=316 amount=-1 +kerning first=87 second=283 amount=-1 +kerning first=87 second=284 amount=-1 +kerning first=87 second=286 amount=-1 +kerning first=87 second=287 amount=-2 +kerning first=87 second=288 amount=-1 +kerning first=87 second=289 amount=-2 +kerning first=87 second=290 amount=-1 +kerning first=87 second=291 amount=-2 +kerning first=195 second=314 amount=-1 +kerning first=195 second=311 amount=-1 +kerning first=195 second=291 amount=-1 +kerning first=87 second=303 amount=-1 +kerning first=195 second=290 amount=-1 +kerning first=87 second=305 amount=-1 +kerning first=195 second=289 amount=-1 +kerning first=195 second=288 amount=-1 +kerning first=195 second=287 amount=-1 +kerning first=195 second=286 amount=-1 +kerning first=195 second=284 amount=-1 +kerning first=87 second=324 amount=-1 +kerning first=195 second=268 amount=-1 +kerning first=87 second=326 amount=-1 +kerning first=195 second=266 amount=-1 +kerning first=87 second=328 amount=-1 +kerning first=195 second=264 amount=-1 +kerning first=87 second=331 amount=-1 +kerning first=87 second=332 amount=-1 +kerning first=87 second=333 amount=-1 +kerning first=87 second=334 amount=-1 +kerning first=87 second=335 amount=-1 +kerning first=87 second=336 amount=-1 +kerning first=87 second=337 amount=-1 +kerning first=87 second=338 amount=-1 +kerning first=87 second=339 amount=-1 +kerning first=195 second=262 amount=-1 +kerning first=195 second=255 amount=-1 +kerning first=87 second=346 amount=-1 +kerning first=87 second=347 amount=-1 +kerning first=87 second=350 amount=-1 +kerning first=87 second=351 amount=-1 +kerning first=87 second=352 amount=-1 +kerning first=87 second=353 amount=-1 +kerning first=195 second=254 amount=-1 +kerning first=87 second=361 amount=-1 +kerning first=195 second=253 amount=-1 +kerning first=87 second=363 amount=-1 +kerning first=195 second=252 amount=-1 +kerning first=87 second=365 amount=-1 +kerning first=195 second=251 amount=-1 +kerning first=87 second=367 amount=-1 +kerning first=195 second=250 amount=-1 +kerning first=87 second=369 amount=-1 +kerning first=195 second=249 amount=-1 +kerning first=87 second=375 amount=-1 +kerning first=87 second=377 amount=-1 +kerning first=87 second=378 amount=-1 +kerning first=87 second=379 amount=-1 +kerning first=87 second=380 amount=-1 +kerning first=87 second=381 amount=-1 +kerning first=87 second=382 amount=-1 +kerning first=195 second=221 amount=-2 +kerning first=195 second=220 amount=-1 +kerning first=195 second=219 amount=-1 +kerning first=195 second=218 amount=-1 +kerning first=195 second=217 amount=-1 +kerning first=195 second=216 amount=-1 +kerning first=195 second=214 amount=-1 +kerning first=195 second=213 amount=-1 +kerning first=195 second=212 amount=-1 +kerning first=195 second=211 amount=-1 +kerning first=195 second=210 amount=-1 +kerning first=195 second=199 amount=-1 +kerning first=195 second=171 amount=-1 +kerning first=195 second=121 amount=-1 +kerning first=195 second=119 amount=-1 +kerning first=195 second=118 amount=-1 +kerning first=195 second=117 amount=-1 +kerning first=195 second=115 amount=-1 +kerning first=195 second=112 amount=-1 +kerning first=195 second=108 amount=-1 +kerning first=195 second=107 amount=-1 +kerning first=87 second=8249 amount=-2 +kerning first=87 second=8250 amount=-1 +kerning first=195 second=104 amount=-1 +kerning first=195 second=103 amount=-1 +kerning first=195 second=98 amount=-1 +kerning first=195 second=89 amount=-2 +kerning first=195 second=87 amount=-2 +kerning first=195 second=86 amount=-2 +kerning first=88 second=45 amount=-2 +kerning first=195 second=85 amount=-1 +kerning first=88 second=67 amount=-1 +kerning first=88 second=71 amount=-1 +kerning first=88 second=79 amount=-1 +kerning first=88 second=81 amount=-1 +kerning first=88 second=83 amount=-1 +kerning first=88 second=84 amount=-1 +kerning first=88 second=85 amount=-1 +kerning first=88 second=86 amount=-1 +kerning first=88 second=87 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=195 second=84 amount=-2 +kerning first=195 second=83 amount=-1 +kerning first=88 second=99 amount=-1 +kerning first=88 second=100 amount=-1 +kerning first=88 second=101 amount=-1 +kerning first=88 second=103 amount=-1 +kerning first=195 second=81 amount=-1 +kerning first=195 second=79 amount=-1 +kerning first=195 second=71 amount=-1 +kerning first=195 second=67 amount=-1 +kerning first=88 second=111 amount=-1 +kerning first=195 second=45 amount=-1 +kerning first=88 second=113 amount=-1 +kerning first=194 second=8249 amount=-1 +kerning first=194 second=8221 amount=-2 +kerning first=194 second=8220 amount=-2 +kerning first=88 second=117 amount=-1 +kerning first=88 second=118 amount=-1 +kerning first=88 second=119 amount=-1 +kerning first=88 second=121 amount=-1 +kerning first=88 second=171 amount=-2 +kerning first=88 second=199 amount=-1 +kerning first=88 second=210 amount=-1 +kerning first=88 second=211 amount=-1 +kerning first=88 second=212 amount=-1 +kerning first=88 second=213 amount=-1 +kerning first=88 second=214 amount=-1 +kerning first=88 second=216 amount=-1 +kerning first=88 second=217 amount=-1 +kerning first=88 second=218 amount=-1 +kerning first=88 second=219 amount=-1 +kerning first=88 second=220 amount=-1 +kerning first=88 second=221 amount=-1 +kerning first=194 second=8217 amount=-2 +kerning first=194 second=375 amount=-1 +kerning first=194 second=374 amount=-2 +kerning first=194 second=370 amount=-1 +kerning first=194 second=369 amount=-1 +kerning first=194 second=368 amount=-1 +kerning first=194 second=367 amount=-1 +kerning first=88 second=231 amount=-1 +kerning first=88 second=232 amount=-1 +kerning first=88 second=233 amount=-1 +kerning first=88 second=234 amount=-1 +kerning first=88 second=235 amount=-1 +kerning first=88 second=240 amount=-1 +kerning first=88 second=242 amount=-1 +kerning first=88 second=243 amount=-1 +kerning first=88 second=244 amount=-1 +kerning first=88 second=245 amount=-1 +kerning first=88 second=246 amount=-1 +kerning first=88 second=248 amount=-1 +kerning first=88 second=249 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=88 second=253 amount=-1 +kerning first=194 second=366 amount=-1 +kerning first=88 second=255 amount=-1 +kerning first=194 second=365 amount=-1 +kerning first=194 second=364 amount=-1 +kerning first=194 second=363 amount=-1 +kerning first=88 second=262 amount=-1 +kerning first=88 second=263 amount=-1 +kerning first=88 second=264 amount=-1 +kerning first=88 second=266 amount=-1 +kerning first=88 second=267 amount=-1 +kerning first=88 second=268 amount=-1 +kerning first=88 second=269 amount=-1 +kerning first=88 second=275 amount=-1 +kerning first=88 second=277 amount=-1 +kerning first=88 second=279 amount=-1 +kerning first=88 second=281 amount=-1 +kerning first=88 second=283 amount=-1 +kerning first=88 second=284 amount=-1 +kerning first=88 second=286 amount=-1 +kerning first=88 second=287 amount=-1 +kerning first=88 second=288 amount=-1 +kerning first=88 second=289 amount=-1 +kerning first=88 second=290 amount=-1 +kerning first=88 second=291 amount=-1 +kerning first=194 second=362 amount=-1 +kerning first=194 second=361 amount=-1 +kerning first=194 second=356 amount=-2 +kerning first=194 second=354 amount=-2 +kerning first=88 second=332 amount=-1 +kerning first=88 second=333 amount=-1 +kerning first=88 second=334 amount=-1 +kerning first=88 second=335 amount=-1 +kerning first=88 second=336 amount=-1 +kerning first=88 second=337 amount=-1 +kerning first=88 second=338 amount=-1 +kerning first=88 second=339 amount=-1 +kerning first=194 second=353 amount=-1 +kerning first=88 second=346 amount=-1 +kerning first=194 second=352 amount=-1 +kerning first=88 second=350 amount=-1 +kerning first=194 second=351 amount=-1 +kerning first=88 second=352 amount=-1 +kerning first=194 second=350 amount=-1 +kerning first=88 second=354 amount=-1 +kerning first=194 second=347 amount=-1 +kerning first=88 second=356 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=88 second=362 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=88 second=364 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=88 second=366 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=88 second=368 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=88 second=370 amount=-1 +kerning first=88 second=374 amount=-1 +kerning first=88 second=375 amount=-1 +kerning first=194 second=346 amount=-1 +kerning first=194 second=338 amount=-1 +kerning first=194 second=336 amount=-1 +kerning first=194 second=334 amount=-1 +kerning first=194 second=332 amount=-1 +kerning first=194 second=318 amount=-1 +kerning first=194 second=316 amount=-1 +kerning first=194 second=314 amount=-1 +kerning first=194 second=311 amount=-1 +kerning first=194 second=291 amount=-1 +kerning first=194 second=290 amount=-1 +kerning first=194 second=289 amount=-1 +kerning first=194 second=288 amount=-1 +kerning first=194 second=287 amount=-1 +kerning first=88 second=8217 amount=-1 +kerning first=88 second=8220 amount=-1 +kerning first=88 second=8221 amount=-1 +kerning first=88 second=8249 amount=-2 +kerning first=89 second=44 amount=-2 +kerning first=89 second=45 amount=-2 +kerning first=89 second=46 amount=-2 +kerning first=89 second=65 amount=-2 +kerning first=194 second=286 amount=-1 +kerning first=89 second=67 amount=-1 +kerning first=194 second=284 amount=-1 +kerning first=194 second=268 amount=-1 +kerning first=194 second=266 amount=-1 +kerning first=89 second=71 amount=-1 +kerning first=194 second=264 amount=-1 +kerning first=194 second=262 amount=-1 +kerning first=89 second=74 amount=-1 +kerning first=194 second=255 amount=-1 +kerning first=194 second=254 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=89 second=81 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=89 second=83 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=89 second=97 amount=-2 +kerning first=89 second=99 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=194 second=221 amount=-2 +kerning first=89 second=103 amount=-2 +kerning first=89 second=105 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=89 second=112 amount=-1 +kerning first=89 second=113 amount=-1 +kerning first=194 second=220 amount=-1 +kerning first=89 second=115 amount=-1 +kerning first=194 second=219 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=89 second=118 amount=-1 +kerning first=89 second=119 amount=-1 +kerning first=89 second=120 amount=-1 +kerning first=89 second=121 amount=-1 +kerning first=89 second=122 amount=-1 +kerning first=89 second=171 amount=-2 +kerning first=89 second=187 amount=-1 +kerning first=89 second=192 amount=-2 +kerning first=89 second=193 amount=-2 +kerning first=89 second=194 amount=-2 +kerning first=89 second=196 amount=-2 +kerning first=89 second=197 amount=-2 +kerning first=89 second=198 amount=-2 +kerning first=89 second=199 amount=-1 +kerning first=194 second=218 amount=-1 +kerning first=194 second=217 amount=-1 +kerning first=194 second=216 amount=-1 +kerning first=194 second=214 amount=-1 +kerning first=194 second=213 amount=-1 +kerning first=194 second=212 amount=-1 +kerning first=194 second=211 amount=-1 +kerning first=194 second=210 amount=-1 +kerning first=194 second=199 amount=-1 +kerning first=89 second=210 amount=-1 +kerning first=89 second=211 amount=-1 +kerning first=89 second=212 amount=-1 +kerning first=89 second=213 amount=-1 +kerning first=89 second=214 amount=-1 +kerning first=89 second=216 amount=-1 +kerning first=194 second=171 amount=-1 +kerning first=194 second=121 amount=-1 +kerning first=194 second=119 amount=-1 +kerning first=194 second=118 amount=-1 +kerning first=89 second=223 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=89 second=225 amount=-2 +kerning first=89 second=226 amount=-2 +kerning first=89 second=227 amount=-2 +kerning first=89 second=228 amount=-1 +kerning first=89 second=229 amount=-2 +kerning first=89 second=230 amount=-2 +kerning first=89 second=231 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=89 second=234 amount=-1 +kerning first=89 second=235 amount=-1 +kerning first=89 second=237 amount=-1 +kerning first=89 second=240 amount=-1 +kerning first=89 second=241 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=89 second=243 amount=-1 +kerning first=89 second=244 amount=-1 +kerning first=89 second=245 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=89 second=248 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=89 second=250 amount=-1 +kerning first=89 second=251 amount=-1 +kerning first=194 second=115 amount=-1 +kerning first=89 second=253 amount=-1 +kerning first=89 second=255 amount=-1 +kerning first=89 second=256 amount=-2 +kerning first=89 second=257 amount=-2 +kerning first=89 second=259 amount=-2 +kerning first=89 second=260 amount=-2 +kerning first=89 second=261 amount=-2 +kerning first=89 second=262 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=89 second=264 amount=-1 +kerning first=89 second=266 amount=-1 +kerning first=89 second=267 amount=-1 +kerning first=89 second=268 amount=-1 +kerning first=89 second=269 amount=-1 +kerning first=194 second=112 amount=-1 +kerning first=194 second=108 amount=-1 +kerning first=89 second=275 amount=-1 +kerning first=89 second=277 amount=-1 +kerning first=194 second=107 amount=-1 +kerning first=89 second=279 amount=-1 +kerning first=194 second=104 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=194 second=103 amount=-1 +kerning first=89 second=283 amount=-1 +kerning first=89 second=284 amount=-1 +kerning first=89 second=286 amount=-1 +kerning first=89 second=287 amount=-2 +kerning first=89 second=288 amount=-1 +kerning first=89 second=289 amount=-2 +kerning first=89 second=290 amount=-1 +kerning first=89 second=291 amount=-2 +kerning first=194 second=98 amount=-1 +kerning first=194 second=89 amount=-2 +kerning first=194 second=87 amount=-2 +kerning first=89 second=303 amount=-1 +kerning first=194 second=86 amount=-2 +kerning first=89 second=305 amount=-1 +kerning first=194 second=85 amount=-1 +kerning first=194 second=84 amount=-2 +kerning first=194 second=83 amount=-1 +kerning first=194 second=81 amount=-1 +kerning first=194 second=79 amount=-1 +kerning first=89 second=324 amount=-1 +kerning first=194 second=71 amount=-1 +kerning first=89 second=326 amount=-1 +kerning first=194 second=67 amount=-1 +kerning first=89 second=328 amount=-1 +kerning first=194 second=45 amount=-1 +kerning first=89 second=331 amount=-1 +kerning first=89 second=332 amount=-1 +kerning first=89 second=333 amount=-1 +kerning first=89 second=334 amount=-1 +kerning first=89 second=335 amount=-1 +kerning first=89 second=336 amount=-1 +kerning first=89 second=337 amount=-1 +kerning first=89 second=338 amount=-1 +kerning first=89 second=339 amount=-1 +kerning first=193 second=8249 amount=-1 +kerning first=193 second=8221 amount=-2 +kerning first=89 second=346 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=89 second=350 amount=-1 +kerning first=89 second=351 amount=-1 +kerning first=89 second=352 amount=-1 +kerning first=89 second=353 amount=-1 +kerning first=193 second=8220 amount=-2 +kerning first=89 second=361 amount=-1 +kerning first=193 second=8217 amount=-2 +kerning first=89 second=363 amount=-1 +kerning first=193 second=375 amount=-1 +kerning first=89 second=365 amount=-1 +kerning first=193 second=374 amount=-2 +kerning first=89 second=367 amount=-1 +kerning first=193 second=370 amount=-1 +kerning first=89 second=369 amount=-1 +kerning first=193 second=369 amount=-1 +kerning first=89 second=375 amount=-1 +kerning first=89 second=377 amount=-1 +kerning first=89 second=378 amount=-1 +kerning first=89 second=379 amount=-1 +kerning first=89 second=380 amount=-1 +kerning first=89 second=381 amount=-1 +kerning first=89 second=382 amount=-1 +kerning first=193 second=368 amount=-1 +kerning first=193 second=367 amount=-1 +kerning first=193 second=366 amount=-1 +kerning first=193 second=365 amount=-1 +kerning first=193 second=364 amount=-1 +kerning first=193 second=363 amount=-1 +kerning first=193 second=362 amount=-1 +kerning first=193 second=361 amount=-1 +kerning first=193 second=356 amount=-2 +kerning first=193 second=354 amount=-2 +kerning first=193 second=353 amount=-1 +kerning first=193 second=352 amount=-1 +kerning first=193 second=351 amount=-1 +kerning first=193 second=350 amount=-1 +kerning first=193 second=347 amount=-1 +kerning first=193 second=346 amount=-1 +kerning first=193 second=338 amount=-1 +kerning first=193 second=336 amount=-1 +kerning first=193 second=334 amount=-1 +kerning first=193 second=332 amount=-1 +kerning first=193 second=318 amount=-1 +kerning first=89 second=8249 amount=-2 +kerning first=89 second=8250 amount=-1 +kerning first=193 second=316 amount=-1 +kerning first=193 second=314 amount=-1 +kerning first=193 second=311 amount=-1 +kerning first=193 second=291 amount=-1 +kerning first=193 second=290 amount=-1 +kerning first=193 second=289 amount=-1 +kerning first=90 second=45 amount=-1 +kerning first=193 second=288 amount=-1 +kerning first=193 second=287 amount=-1 +kerning first=193 second=286 amount=-1 +kerning first=193 second=284 amount=-1 +kerning first=193 second=268 amount=-1 +kerning first=193 second=266 amount=-1 +kerning first=193 second=264 amount=-1 +kerning first=193 second=262 amount=-1 +kerning first=193 second=255 amount=-1 +kerning first=193 second=254 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=193 second=221 amount=-2 +kerning first=193 second=220 amount=-1 +kerning first=193 second=219 amount=-1 +kerning first=193 second=218 amount=-1 +kerning first=90 second=84 amount=-1 +kerning first=90 second=86 amount=-1 +kerning first=90 second=87 amount=-1 +kerning first=90 second=89 amount=-1 +kerning first=193 second=217 amount=-1 +kerning first=193 second=216 amount=-1 +kerning first=193 second=214 amount=-1 +kerning first=193 second=213 amount=-1 +kerning first=193 second=212 amount=-1 +kerning first=90 second=102 amount=-1 +kerning first=90 second=103 amount=-1 +kerning first=193 second=211 amount=-1 +kerning first=193 second=210 amount=-1 +kerning first=193 second=199 amount=-1 +kerning first=193 second=171 amount=-1 +kerning first=193 second=121 amount=-1 +kerning first=193 second=119 amount=-1 +kerning first=90 second=115 amount=-1 +kerning first=193 second=118 amount=-1 +kerning first=90 second=117 amount=-1 +kerning first=90 second=118 amount=-1 +kerning first=90 second=119 amount=-1 +kerning first=90 second=121 amount=-1 +kerning first=90 second=122 amount=-1 +kerning first=90 second=171 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=193 second=115 amount=-1 +kerning first=193 second=112 amount=-1 +kerning first=193 second=108 amount=-1 +kerning first=193 second=107 amount=-1 +kerning first=193 second=104 amount=-1 +kerning first=193 second=103 amount=-1 +kerning first=193 second=98 amount=-1 +kerning first=193 second=89 amount=-2 +kerning first=193 second=87 amount=-2 +kerning first=193 second=86 amount=-2 +kerning first=193 second=85 amount=-1 +kerning first=193 second=84 amount=-2 +kerning first=193 second=83 amount=-1 +kerning first=193 second=81 amount=-1 +kerning first=193 second=79 amount=-1 +kerning first=193 second=71 amount=-1 +kerning first=193 second=67 amount=-1 +kerning first=193 second=45 amount=-1 +kerning first=192 second=8249 amount=-1 +kerning first=192 second=8221 amount=-2 +kerning first=192 second=8220 amount=-2 +kerning first=192 second=8217 amount=-2 +kerning first=90 second=221 amount=-1 +kerning first=192 second=375 amount=-1 +kerning first=192 second=374 amount=-2 +kerning first=192 second=370 amount=-1 +kerning first=192 second=369 amount=-1 +kerning first=192 second=368 amount=-1 +kerning first=192 second=367 amount=-1 +kerning first=192 second=366 amount=-1 +kerning first=192 second=365 amount=-1 +kerning first=192 second=364 amount=-1 +kerning first=192 second=363 amount=-1 +kerning first=192 second=362 amount=-1 +kerning first=192 second=361 amount=-1 +kerning first=192 second=356 amount=-2 +kerning first=192 second=354 amount=-2 +kerning first=192 second=353 amount=-1 +kerning first=192 second=352 amount=-1 +kerning first=192 second=351 amount=-1 +kerning first=192 second=350 amount=-1 +kerning first=192 second=347 amount=-1 +kerning first=192 second=346 amount=-1 +kerning first=192 second=338 amount=-1 +kerning first=192 second=336 amount=-1 +kerning first=90 second=249 amount=-1 +kerning first=90 second=250 amount=-1 +kerning first=90 second=251 amount=-1 +kerning first=90 second=252 amount=-1 +kerning first=90 second=253 amount=-1 +kerning first=90 second=255 amount=-1 +kerning first=192 second=334 amount=-1 +kerning first=192 second=332 amount=-1 +kerning first=192 second=318 amount=-1 +kerning first=192 second=316 amount=-1 +kerning first=192 second=314 amount=-1 +kerning first=192 second=311 amount=-1 +kerning first=192 second=291 amount=-1 +kerning first=192 second=290 amount=-1 +kerning first=192 second=289 amount=-1 +kerning first=192 second=288 amount=-1 +kerning first=192 second=287 amount=-1 +kerning first=192 second=286 amount=-1 +kerning first=192 second=284 amount=-1 +kerning first=192 second=268 amount=-1 +kerning first=192 second=266 amount=-1 +kerning first=192 second=264 amount=-1 +kerning first=192 second=262 amount=-1 +kerning first=192 second=255 amount=-1 +kerning first=192 second=254 amount=-1 +kerning first=192 second=253 amount=-1 +kerning first=192 second=252 amount=-1 +kerning first=192 second=251 amount=-1 +kerning first=192 second=250 amount=-1 +kerning first=192 second=249 amount=-1 +kerning first=90 second=287 amount=-1 +kerning first=192 second=221 amount=-2 +kerning first=90 second=289 amount=-1 +kerning first=192 second=220 amount=-1 +kerning first=90 second=291 amount=-1 +kerning first=192 second=219 amount=-1 +kerning first=192 second=218 amount=-1 +kerning first=192 second=217 amount=-1 +kerning first=192 second=216 amount=-1 +kerning first=192 second=214 amount=-1 +kerning first=192 second=213 amount=-1 +kerning first=192 second=212 amount=-1 +kerning first=192 second=211 amount=-1 +kerning first=192 second=210 amount=-1 +kerning first=192 second=199 amount=-1 +kerning first=192 second=171 amount=-1 +kerning first=192 second=121 amount=-1 +kerning first=192 second=119 amount=-1 +kerning first=192 second=118 amount=-1 +kerning first=192 second=117 amount=-1 +kerning first=192 second=115 amount=-1 +kerning first=192 second=112 amount=-1 +kerning first=192 second=108 amount=-1 +kerning first=192 second=107 amount=-1 +kerning first=192 second=104 amount=-1 +kerning first=192 second=103 amount=-1 +kerning first=192 second=98 amount=-1 +kerning first=192 second=89 amount=-2 +kerning first=192 second=87 amount=-2 +kerning first=192 second=86 amount=-2 +kerning first=192 second=85 amount=-1 +kerning first=192 second=84 amount=-2 +kerning first=192 second=83 amount=-1 +kerning first=90 second=347 amount=-1 +kerning first=192 second=81 amount=-1 +kerning first=90 second=351 amount=-1 +kerning first=192 second=79 amount=-1 +kerning first=90 second=353 amount=-1 +kerning first=90 second=354 amount=-1 +kerning first=192 second=71 amount=-1 +kerning first=90 second=356 amount=-1 +kerning first=90 second=361 amount=-1 +kerning first=90 second=363 amount=-1 +kerning first=90 second=365 amount=-1 +kerning first=90 second=367 amount=-1 +kerning first=90 second=369 amount=-1 +kerning first=90 second=374 amount=-1 +kerning first=90 second=375 amount=-1 +kerning first=192 second=67 amount=-1 +kerning first=90 second=378 amount=-1 +kerning first=192 second=45 amount=-1 +kerning first=90 second=380 amount=-1 +kerning first=187 second=382 amount=-2 +kerning first=90 second=382 amount=-1 +kerning first=187 second=381 amount=-1 +kerning first=187 second=380 amount=-2 +kerning first=187 second=379 amount=-1 +kerning first=187 second=378 amount=-2 +kerning first=187 second=377 amount=-1 +kerning first=187 second=375 amount=-1 +kerning first=187 second=374 amount=-1 +kerning first=187 second=370 amount=-1 +kerning first=187 second=368 amount=-1 +kerning first=187 second=366 amount=-1 +kerning first=187 second=364 amount=-1 +kerning first=187 second=362 amount=-1 +kerning first=187 second=356 amount=-1 +kerning first=187 second=354 amount=-1 +kerning first=187 second=352 amount=-1 +kerning first=187 second=350 amount=-1 +kerning first=187 second=346 amount=-1 +kerning first=187 second=345 amount=-1 +kerning first=187 second=344 amount=-2 +kerning first=187 second=331 amount=-1 +kerning first=187 second=330 amount=-2 +kerning first=187 second=328 amount=-1 +kerning first=187 second=327 amount=-2 +kerning first=90 second=8249 amount=-1 +kerning first=187 second=326 amount=-1 +kerning first=187 second=325 amount=-2 +kerning first=187 second=324 amount=-1 +kerning first=187 second=323 amount=-2 +kerning first=187 second=317 amount=-2 +kerning first=187 second=315 amount=-2 +kerning first=187 second=313 amount=-2 +kerning first=97 second=45 amount=-1 +kerning first=187 second=310 amount=-2 +kerning first=187 second=302 amount=-2 +kerning first=187 second=298 amount=-2 +kerning first=187 second=296 amount=-2 +kerning first=187 second=291 amount=-1 +kerning first=187 second=289 amount=-1 +kerning first=187 second=287 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=187 second=282 amount=-2 +kerning first=187 second=280 amount=-2 +kerning first=187 second=278 amount=-2 +kerning first=187 second=274 amount=-2 +kerning first=187 second=270 amount=-2 +kerning first=187 second=260 amount=-1 +kerning first=187 second=256 amount=-1 +kerning first=187 second=255 amount=-1 +kerning first=187 second=253 amount=-1 +kerning first=187 second=241 amount=-1 +kerning first=187 second=223 amount=-1 +kerning first=187 second=221 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=187 second=220 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=187 second=219 amount=-1 +kerning first=97 second=171 amount=-1 +kerning first=187 second=218 amount=-1 +kerning first=187 second=217 amount=-1 +kerning first=187 second=209 amount=-2 +kerning first=187 second=207 amount=-2 +kerning first=187 second=206 amount=-2 +kerning first=187 second=205 amount=-2 +kerning first=187 second=204 amount=-2 +kerning first=187 second=203 amount=-2 +kerning first=187 second=202 amount=-2 +kerning first=187 second=201 amount=-2 +kerning first=187 second=200 amount=-2 +kerning first=187 second=198 amount=-1 +kerning first=187 second=197 amount=-1 +kerning first=187 second=196 amount=-1 +kerning first=187 second=195 amount=-1 +kerning first=187 second=194 amount=-1 +kerning first=187 second=193 amount=-1 +kerning first=187 second=192 amount=-1 +kerning first=187 second=122 amount=-2 +kerning first=187 second=121 amount=-1 +kerning first=187 second=120 amount=-1 +kerning first=187 second=119 amount=-1 +kerning first=187 second=118 amount=-1 +kerning first=187 second=114 amount=-1 +kerning first=187 second=112 amount=-1 +kerning first=97 second=253 amount=-1 +kerning first=187 second=110 amount=-1 +kerning first=97 second=255 amount=-1 +kerning first=187 second=109 amount=-1 +kerning first=187 second=106 amount=-1 +kerning first=187 second=103 amount=-1 +kerning first=187 second=90 amount=-1 +kerning first=187 second=89 amount=-1 +kerning first=187 second=87 amount=-1 +kerning first=187 second=86 amount=-1 +kerning first=187 second=85 amount=-1 +kerning first=187 second=84 amount=-1 +kerning first=187 second=83 amount=-1 +kerning first=187 second=82 amount=-2 +kerning first=187 second=80 amount=-2 +kerning first=187 second=78 amount=-2 +kerning first=97 second=287 amount=-1 +kerning first=97 second=289 amount=-1 +kerning first=97 second=291 amount=-1 +kerning first=187 second=77 amount=-2 +kerning first=187 second=76 amount=-2 +kerning first=187 second=75 amount=-2 +kerning first=187 second=74 amount=-1 +kerning first=187 second=73 amount=-2 +kerning first=187 second=72 amount=-2 +kerning first=187 second=70 amount=-2 +kerning first=187 second=69 amount=-2 +kerning first=187 second=68 amount=-2 +kerning first=187 second=66 amount=-2 +kerning first=187 second=65 amount=-1 +kerning first=171 second=374 amount=-1 +kerning first=171 second=356 amount=-1 +kerning first=171 second=354 amount=-1 +kerning first=171 second=221 amount=-1 +kerning first=171 second=89 amount=-1 +kerning first=171 second=87 amount=-1 +kerning first=171 second=86 amount=-1 +kerning first=171 second=84 amount=-1 +kerning first=122 second=8249 amount=-1 +kerning first=122 second=382 amount=-1 +kerning first=122 second=380 amount=-1 +kerning first=122 second=378 amount=-1 +kerning first=122 second=375 amount=-1 +kerning first=122 second=371 amount=-1 +kerning first=97 second=375 amount=-1 +kerning first=122 second=369 amount=-1 +kerning first=122 second=367 amount=-1 +kerning first=122 second=365 amount=-1 +kerning first=122 second=363 amount=-1 +kerning first=122 second=361 amount=-1 +kerning first=122 second=353 amount=-1 +kerning first=122 second=351 amount=-1 +kerning first=122 second=347 amount=-1 +kerning first=122 second=331 amount=-1 +kerning first=122 second=328 amount=-1 +kerning first=122 second=326 amount=-1 +kerning first=122 second=324 amount=-1 +kerning first=122 second=318 amount=-1 +kerning first=122 second=316 amount=-1 +kerning first=122 second=314 amount=-1 +kerning first=97 second=8217 amount=-1 +kerning first=97 second=8220 amount=-1 +kerning first=97 second=8221 amount=-1 +kerning first=97 second=8249 amount=-1 +kerning first=122 second=311 amount=-1 +kerning first=122 second=305 amount=-1 +kerning first=122 second=291 amount=-1 +kerning first=122 second=289 amount=-1 +kerning first=122 second=287 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=122 second=255 amount=-1 +kerning first=122 second=253 amount=-1 +kerning first=122 second=252 amount=-1 +kerning first=98 second=103 amount=-1 +kerning first=122 second=251 amount=-1 +kerning first=122 second=250 amount=-1 +kerning first=98 second=106 amount=-1 +kerning first=122 second=249 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=122 second=241 amount=-1 +kerning first=122 second=171 amount=-1 +kerning first=122 second=122 amount=-1 +kerning first=122 second=121 amount=-1 +kerning first=98 second=115 amount=-1 +kerning first=122 second=119 amount=-1 +kerning first=122 second=118 amount=-1 +kerning first=98 second=118 amount=-1 +kerning first=98 second=119 amount=-1 +kerning first=98 second=120 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=98 second=122 amount=-1 +kerning first=98 second=187 amount=-1 +kerning first=122 second=117 amount=-1 +kerning first=122 second=115 amount=-1 +kerning first=122 second=112 amount=-1 +kerning first=122 second=110 amount=-1 +kerning first=122 second=109 amount=-1 +kerning first=122 second=108 amount=-1 +kerning first=122 second=107 amount=-1 +kerning first=122 second=106 amount=-1 +kerning first=122 second=104 amount=-1 +kerning first=122 second=103 amount=-1 +kerning first=122 second=102 amount=-1 +kerning first=122 second=45 amount=-1 +kerning first=121 second=8249 amount=-1 +kerning first=121 second=382 amount=-1 +kerning first=98 second=253 amount=-1 +kerning first=121 second=380 amount=-1 +kerning first=98 second=255 amount=-1 +kerning first=121 second=378 amount=-1 +kerning first=121 second=353 amount=-1 +kerning first=121 second=351 amount=-1 +kerning first=98 second=287 amount=-1 +kerning first=98 second=289 amount=-1 +kerning first=98 second=291 amount=-1 +kerning first=121 second=347 amount=-1 +kerning first=121 second=339 amount=-1 +kerning first=121 second=337 amount=-1 +kerning first=121 second=335 amount=-1 +kerning first=98 second=314 amount=-1 +kerning first=98 second=316 amount=-1 +kerning first=98 second=318 amount=-1 +kerning first=121 second=333 amount=-1 +kerning first=121 second=331 amount=-1 +kerning first=121 second=328 amount=-1 +kerning first=121 second=326 amount=-1 +kerning first=121 second=324 amount=-1 +kerning first=98 second=347 amount=-1 +kerning first=98 second=351 amount=-1 +kerning first=98 second=353 amount=-1 +kerning first=121 second=318 amount=-1 +kerning first=121 second=316 amount=-1 +kerning first=121 second=314 amount=-1 +kerning first=121 second=307 amount=-1 +kerning first=121 second=305 amount=-1 +kerning first=121 second=303 amount=-1 +kerning first=121 second=291 amount=-1 +kerning first=98 second=375 amount=-1 +kerning first=98 second=378 amount=-1 +kerning first=98 second=380 amount=-1 +kerning first=98 second=382 amount=-1 +kerning first=121 second=289 amount=-1 +kerning first=121 second=287 amount=-1 +kerning first=121 second=283 amount=-1 +kerning first=121 second=281 amount=-1 +kerning first=121 second=279 amount=-1 +kerning first=121 second=277 amount=-1 +kerning first=121 second=275 amount=-1 +kerning first=121 second=273 amount=-1 +kerning first=121 second=271 amount=-1 +kerning first=121 second=269 amount=-1 +kerning first=121 second=267 amount=-1 +kerning first=98 second=8217 amount=-1 +kerning first=98 second=8220 amount=-1 +kerning first=98 second=8221 amount=-1 +kerning first=98 second=8250 amount=-1 +kerning first=121 second=263 amount=-1 +kerning first=121 second=261 amount=-1 +kerning first=121 second=259 amount=-1 +kerning first=121 second=257 amount=-1 +kerning first=121 second=248 amount=-1 +kerning first=99 second=44 amount=-1 +kerning first=99 second=45 amount=-1 +kerning first=99 second=46 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=99 second=98 amount=-1 +kerning first=121 second=246 amount=-1 +kerning first=121 second=245 amount=-1 +kerning first=121 second=244 amount=-1 +kerning first=99 second=102 amount=-1 +kerning first=99 second=103 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=105 amount=-1 +kerning first=99 second=106 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=99 second=108 amount=-1 +kerning first=121 second=243 amount=-1 +kerning first=121 second=242 amount=-1 +kerning first=121 second=241 amount=-1 +kerning first=121 second=240 amount=-1 +kerning first=121 second=237 amount=-1 +kerning first=121 second=235 amount=-1 +kerning first=121 second=234 amount=-1 +kerning first=121 second=233 amount=-1 +kerning first=99 second=117 amount=-1 +kerning first=99 second=118 amount=-1 +kerning first=99 second=119 amount=-1 +kerning first=99 second=120 amount=-1 +kerning first=99 second=121 amount=-1 +kerning first=99 second=122 amount=-1 +kerning first=99 second=171 amount=-1 +kerning first=121 second=232 amount=-1 +kerning first=99 second=224 amount=-1 +kerning first=99 second=225 amount=-1 +kerning first=99 second=226 amount=-1 +kerning first=99 second=227 amount=-1 +kerning first=99 second=228 amount=-1 +kerning first=99 second=229 amount=-1 +kerning first=99 second=230 amount=-1 +kerning first=121 second=231 amount=-1 +kerning first=121 second=230 amount=-1 +kerning first=121 second=229 amount=-1 +kerning first=121 second=228 amount=-1 +kerning first=121 second=227 amount=-1 +kerning first=99 second=237 amount=-1 +kerning first=121 second=226 amount=-1 +kerning first=121 second=225 amount=-1 +kerning first=121 second=224 amount=-1 +kerning first=121 second=171 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=121 second=115 amount=-1 +kerning first=121 second=113 amount=-1 +kerning first=121 second=112 amount=-1 +kerning first=99 second=249 amount=-1 +kerning first=99 second=250 amount=-1 +kerning first=99 second=251 amount=-1 +kerning first=99 second=252 amount=-1 +kerning first=99 second=253 amount=-1 +kerning first=99 second=254 amount=-1 +kerning first=99 second=255 amount=-1 +kerning first=99 second=257 amount=-1 +kerning first=99 second=259 amount=-1 +kerning first=99 second=261 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=121 second=110 amount=-1 +kerning first=121 second=109 amount=-1 +kerning first=121 second=108 amount=-1 +kerning first=121 second=106 amount=-1 +kerning first=121 second=105 amount=-1 +kerning first=121 second=103 amount=-1 +kerning first=121 second=101 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=99 second=287 amount=-1 +kerning first=99 second=289 amount=-1 +kerning first=99 second=291 amount=-1 +kerning first=99 second=303 amount=-1 +kerning first=121 second=97 amount=-1 +kerning first=99 second=307 amount=-1 +kerning first=99 second=311 amount=-1 +kerning first=99 second=314 amount=-1 +kerning first=99 second=316 amount=-1 +kerning first=99 second=318 amount=-1 +kerning first=121 second=46 amount=-2 +kerning first=121 second=45 amount=-1 +kerning first=121 second=44 amount=-2 +kerning first=120 second=8249 amount=-1 +kerning first=120 second=8221 amount=-1 +kerning first=120 second=8220 amount=-1 +kerning first=120 second=8217 amount=-1 +kerning first=120 second=382 amount=-1 +kerning first=120 second=380 amount=-1 +kerning first=120 second=378 amount=-1 +kerning first=120 second=375 amount=-1 +kerning first=120 second=371 amount=-1 +kerning first=120 second=369 amount=-1 +kerning first=99 second=361 amount=-1 +kerning first=99 second=363 amount=-1 +kerning first=99 second=365 amount=-1 +kerning first=99 second=367 amount=-1 +kerning first=99 second=369 amount=-1 +kerning first=99 second=371 amount=-1 +kerning first=99 second=375 amount=-1 +kerning first=99 second=378 amount=-1 +kerning first=99 second=380 amount=-1 +kerning first=99 second=382 amount=-1 +kerning first=120 second=367 amount=-1 +kerning first=120 second=365 amount=-1 +kerning first=120 second=363 amount=-1 +kerning first=120 second=361 amount=-1 +kerning first=120 second=353 amount=-1 +kerning first=120 second=351 amount=-1 +kerning first=120 second=347 amount=-1 +kerning first=120 second=339 amount=-1 +kerning first=120 second=337 amount=-1 +kerning first=120 second=335 amount=-1 +kerning first=120 second=333 amount=-1 +kerning first=120 second=291 amount=-1 +kerning first=120 second=289 amount=-1 +kerning first=99 second=8217 amount=-1 +kerning first=99 second=8220 amount=-1 +kerning first=99 second=8221 amount=-1 +kerning first=99 second=8249 amount=-1 +kerning first=120 second=287 amount=-1 +kerning first=120 second=283 amount=-1 +kerning first=120 second=281 amount=-1 +kerning first=120 second=279 amount=-1 +kerning first=120 second=277 amount=-1 +kerning first=100 second=45 amount=-1 +kerning first=120 second=275 amount=-1 +kerning first=120 second=273 amount=-1 +kerning first=120 second=271 amount=-1 +kerning first=120 second=269 amount=-1 +kerning first=120 second=267 amount=-1 +kerning first=120 second=263 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=120 second=261 amount=-1 +kerning first=120 second=259 amount=-1 +kerning first=120 second=257 amount=-1 +kerning first=120 second=255 amount=-1 +kerning first=120 second=254 amount=-1 +kerning first=120 second=253 amount=-1 +kerning first=120 second=252 amount=-1 +kerning first=120 second=251 amount=-1 +kerning first=120 second=250 amount=-1 +kerning first=120 second=249 amount=-1 +kerning first=120 second=248 amount=-1 +kerning first=120 second=246 amount=-1 +kerning first=120 second=245 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=120 second=244 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=120 second=243 amount=-1 +kerning first=100 second=171 amount=-1 +kerning first=120 second=242 amount=-1 +kerning first=120 second=240 amount=-1 +kerning first=120 second=235 amount=-1 +kerning first=120 second=234 amount=-1 +kerning first=120 second=233 amount=-1 +kerning first=120 second=232 amount=-1 +kerning first=120 second=231 amount=-1 +kerning first=120 second=230 amount=-1 +kerning first=120 second=229 amount=-1 +kerning first=120 second=228 amount=-1 +kerning first=120 second=227 amount=-1 +kerning first=120 second=226 amount=-1 +kerning first=120 second=225 amount=-1 +kerning first=120 second=224 amount=-1 +kerning first=120 second=171 amount=-1 +kerning first=120 second=122 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=120 second=119 amount=-1 +kerning first=120 second=118 amount=-1 +kerning first=120 second=117 amount=-1 +kerning first=120 second=115 amount=-1 +kerning first=120 second=113 amount=-1 +kerning first=120 second=112 amount=-1 +kerning first=120 second=111 amount=-1 +kerning first=120 second=103 amount=-1 +kerning first=100 second=253 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=100 second=255 amount=-1 +kerning first=120 second=100 amount=-1 +kerning first=120 second=99 amount=-1 +kerning first=120 second=98 amount=-1 +kerning first=120 second=97 amount=-1 +kerning first=120 second=45 amount=-1 +kerning first=119 second=8249 amount=-1 +kerning first=119 second=382 amount=-1 +kerning first=119 second=380 amount=-1 +kerning first=119 second=378 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=119 second=339 amount=-1 +kerning first=100 second=287 amount=-1 +kerning first=100 second=289 amount=-1 +kerning first=100 second=291 amount=-1 +kerning first=119 second=337 amount=-1 +kerning first=119 second=335 amount=-1 +kerning first=119 second=333 amount=-1 +kerning first=119 second=331 amount=-1 +kerning first=119 second=328 amount=-1 +kerning first=119 second=326 amount=-1 +kerning first=119 second=324 amount=-1 +kerning first=119 second=318 amount=-1 +kerning first=119 second=316 amount=-1 +kerning first=119 second=314 amount=-1 +kerning first=119 second=307 amount=-1 +kerning first=119 second=305 amount=-1 +kerning first=119 second=303 amount=-1 +kerning first=119 second=291 amount=-1 +kerning first=119 second=289 amount=-1 +kerning first=119 second=287 amount=-1 +kerning first=119 second=283 amount=-1 +kerning first=119 second=281 amount=-1 +kerning first=119 second=279 amount=-1 +kerning first=119 second=277 amount=-1 +kerning first=119 second=275 amount=-1 +kerning first=119 second=273 amount=-1 +kerning first=119 second=271 amount=-1 +kerning first=119 second=269 amount=-1 +kerning first=119 second=267 amount=-1 +kerning first=100 second=375 amount=-1 +kerning first=119 second=263 amount=-1 +kerning first=119 second=261 amount=-1 +kerning first=119 second=259 amount=-1 +kerning first=119 second=257 amount=-1 +kerning first=119 second=248 amount=-1 +kerning first=119 second=246 amount=-1 +kerning first=119 second=245 amount=-1 +kerning first=119 second=244 amount=-1 +kerning first=119 second=243 amount=-1 +kerning first=119 second=242 amount=-1 +kerning first=119 second=241 amount=-1 +kerning first=119 second=240 amount=-1 +kerning first=119 second=237 amount=-1 +kerning first=119 second=235 amount=-1 +kerning first=119 second=234 amount=-1 +kerning first=119 second=233 amount=-1 +kerning first=100 second=8217 amount=-1 +kerning first=100 second=8220 amount=-1 +kerning first=100 second=8221 amount=-1 +kerning first=100 second=8249 amount=-1 +kerning first=119 second=232 amount=-1 +kerning first=119 second=231 amount=-1 +kerning first=119 second=230 amount=-1 +kerning first=119 second=229 amount=-1 +kerning first=119 second=228 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=98 amount=-1 +kerning first=119 second=227 amount=-1 +kerning first=119 second=226 amount=-1 +kerning first=119 second=225 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=101 second=104 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=106 amount=-1 +kerning first=101 second=107 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=119 second=224 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=119 second=122 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=119 second=113 amount=-1 +kerning first=119 second=112 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=120 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=122 amount=-1 +kerning first=101 second=187 amount=-1 +kerning first=119 second=109 amount=-1 +kerning first=101 second=224 amount=-1 +kerning first=101 second=225 amount=-1 +kerning first=101 second=226 amount=-1 +kerning first=101 second=227 amount=-1 +kerning first=101 second=228 amount=-1 +kerning first=101 second=229 amount=-1 +kerning first=101 second=230 amount=-1 +kerning first=119 second=108 amount=-1 +kerning first=119 second=106 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=101 second=237 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=119 second=99 amount=-1 +kerning first=119 second=97 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=45 amount=-1 +kerning first=119 second=44 amount=-2 +kerning first=118 second=8249 amount=-1 +kerning first=118 second=382 amount=-1 +kerning first=101 second=249 amount=-1 +kerning first=101 second=250 amount=-1 +kerning first=101 second=251 amount=-1 +kerning first=101 second=252 amount=-1 +kerning first=101 second=253 amount=-1 +kerning first=101 second=254 amount=-1 +kerning first=101 second=255 amount=-1 +kerning first=101 second=257 amount=-1 +kerning first=101 second=259 amount=-1 +kerning first=101 second=261 amount=-1 +kerning first=118 second=380 amount=-1 +kerning first=118 second=378 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=118 second=339 amount=-1 +kerning first=118 second=337 amount=-1 +kerning first=118 second=335 amount=-1 +kerning first=118 second=333 amount=-1 +kerning first=118 second=331 amount=-1 +kerning first=101 second=287 amount=-1 +kerning first=101 second=289 amount=-1 +kerning first=101 second=291 amount=-1 +kerning first=101 second=303 amount=-1 +kerning first=118 second=328 amount=-1 +kerning first=101 second=307 amount=-1 +kerning first=101 second=311 amount=-1 +kerning first=101 second=314 amount=-1 +kerning first=101 second=316 amount=-1 +kerning first=101 second=318 amount=-1 +kerning first=118 second=326 amount=-1 +kerning first=118 second=324 amount=-1 +kerning first=118 second=318 amount=-1 +kerning first=118 second=316 amount=-1 +kerning first=118 second=314 amount=-1 +kerning first=118 second=307 amount=-1 +kerning first=118 second=305 amount=-1 +kerning first=118 second=303 amount=-1 +kerning first=118 second=291 amount=-1 +kerning first=118 second=289 amount=-1 +kerning first=118 second=287 amount=-1 +kerning first=118 second=283 amount=-1 +kerning first=118 second=281 amount=-1 +kerning first=101 second=361 amount=-1 +kerning first=101 second=363 amount=-1 +kerning first=101 second=365 amount=-1 +kerning first=101 second=367 amount=-1 +kerning first=101 second=369 amount=-1 +kerning first=101 second=371 amount=-1 +kerning first=101 second=375 amount=-1 +kerning first=101 second=378 amount=-1 +kerning first=101 second=380 amount=-1 +kerning first=101 second=382 amount=-1 +kerning first=118 second=279 amount=-1 +kerning first=118 second=277 amount=-1 +kerning first=118 second=275 amount=-1 +kerning first=118 second=273 amount=-1 +kerning first=118 second=271 amount=-1 +kerning first=118 second=269 amount=-1 +kerning first=118 second=267 amount=-1 +kerning first=118 second=263 amount=-1 +kerning first=118 second=261 amount=-1 +kerning first=118 second=259 amount=-1 +kerning first=118 second=257 amount=-1 +kerning first=118 second=248 amount=-1 +kerning first=118 second=246 amount=-1 +kerning first=101 second=8217 amount=-1 +kerning first=101 second=8220 amount=-1 +kerning first=101 second=8221 amount=-1 +kerning first=101 second=8250 amount=-1 +kerning first=118 second=245 amount=-1 +kerning first=118 second=244 amount=-1 +kerning first=118 second=243 amount=-1 +kerning first=118 second=242 amount=-1 +kerning first=118 second=241 amount=-1 +kerning first=118 second=240 amount=-1 +kerning first=102 second=45 amount=-1 +kerning first=118 second=237 amount=-1 +kerning first=102 second=97 amount=-1 +kerning first=102 second=98 amount=1 +kerning first=118 second=235 amount=-1 +kerning first=118 second=234 amount=-1 +kerning first=118 second=233 amount=-1 +kerning first=118 second=232 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=102 second=104 amount=1 +kerning first=118 second=231 amount=-1 +kerning first=102 second=107 amount=1 +kerning first=102 second=108 amount=1 +kerning first=118 second=230 amount=-1 +kerning first=118 second=229 amount=-1 +kerning first=118 second=228 amount=-1 +kerning first=118 second=227 amount=-1 +kerning first=118 second=226 amount=-1 +kerning first=102 second=115 amount=-1 +kerning first=118 second=225 amount=-1 +kerning first=118 second=224 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=118 second=122 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=102 second=171 amount=-1 +kerning first=118 second=113 amount=-1 +kerning first=102 second=225 amount=-1 +kerning first=102 second=226 amount=-1 +kerning first=102 second=227 amount=-1 +kerning first=102 second=229 amount=-1 +kerning first=102 second=230 amount=-1 +kerning first=118 second=112 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=110 amount=-1 +kerning first=118 second=109 amount=-1 +kerning first=118 second=108 amount=-1 +kerning first=118 second=106 amount=-1 +kerning first=118 second=105 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=102 second=254 amount=1 +kerning first=118 second=46 amount=-2 +kerning first=102 second=257 amount=-1 +kerning first=102 second=259 amount=-1 +kerning first=102 second=261 amount=-1 +kerning first=118 second=45 amount=-1 +kerning first=118 second=44 amount=-2 +kerning first=117 second=8249 amount=-1 +kerning first=117 second=8221 amount=-1 +kerning first=117 second=8220 amount=-1 +kerning first=117 second=8217 amount=-1 +kerning first=117 second=382 amount=-1 +kerning first=117 second=380 amount=-1 +kerning first=117 second=378 amount=-1 +kerning first=117 second=375 amount=-1 +kerning first=102 second=287 amount=-1 +kerning first=102 second=289 amount=-1 +kerning first=102 second=291 amount=-1 +kerning first=117 second=353 amount=-1 +kerning first=102 second=311 amount=1 +kerning first=102 second=314 amount=1 +kerning first=102 second=316 amount=1 +kerning first=102 second=318 amount=1 +kerning first=117 second=351 amount=-1 +kerning first=117 second=347 amount=-1 +kerning first=117 second=318 amount=-1 +kerning first=117 second=316 amount=-1 +kerning first=117 second=314 amount=-1 +kerning first=117 second=291 amount=-1 +kerning first=117 second=289 amount=-1 +kerning first=117 second=287 amount=-1 +kerning first=117 second=255 amount=-1 +kerning first=102 second=347 amount=-1 +kerning first=102 second=351 amount=-1 +kerning first=102 second=353 amount=-1 +kerning first=117 second=254 amount=-1 +kerning first=117 second=253 amount=-1 +kerning first=117 second=171 amount=-1 +kerning first=117 second=122 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=117 second=120 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=115 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=108 amount=-1 +kerning first=117 second=106 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=98 amount=-1 +kerning first=117 second=46 amount=-1 +kerning first=117 second=45 amount=-1 +kerning first=117 second=44 amount=-1 +kerning first=116 second=291 amount=-1 +kerning first=116 second=289 amount=-1 +kerning first=116 second=287 amount=-1 +kerning first=116 second=103 amount=-1 +kerning first=115 second=8221 amount=-1 +kerning first=115 second=8220 amount=-1 +kerning first=102 second=8217 amount=1 +kerning first=102 second=8220 amount=1 +kerning first=102 second=8221 amount=1 +kerning first=102 second=8249 amount=-1 +kerning first=115 second=8217 amount=-1 +kerning first=115 second=382 amount=-1 +kerning first=115 second=380 amount=-1 +kerning first=115 second=378 amount=-1 +kerning first=115 second=375 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=103 second=45 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=97 amount=-1 +kerning first=115 second=353 amount=-1 +kerning first=115 second=351 amount=-1 +kerning first=115 second=347 amount=-1 +kerning first=115 second=307 amount=-1 +kerning first=115 second=303 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=105 amount=-1 +kerning first=103 second=107 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=115 second=291 amount=-1 +kerning first=115 second=289 amount=-1 +kerning first=115 second=287 amount=-1 +kerning first=115 second=255 amount=-1 +kerning first=115 second=254 amount=-1 +kerning first=115 second=253 amount=-1 +kerning first=103 second=115 amount=-1 +kerning first=115 second=237 amount=-1 +kerning first=115 second=122 amount=-1 +kerning first=115 second=121 amount=-1 +kerning first=115 second=120 amount=-1 +kerning first=103 second=120 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=103 second=122 amount=-1 +kerning first=103 second=171 amount=-1 +kerning first=115 second=118 amount=-1 +kerning first=103 second=224 amount=-1 +kerning first=103 second=225 amount=-1 +kerning first=103 second=226 amount=-1 +kerning first=103 second=227 amount=-1 +kerning first=103 second=228 amount=-1 +kerning first=103 second=229 amount=-1 +kerning first=103 second=230 amount=-1 +kerning first=115 second=115 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=115 second=103 amount=-1 +kerning first=115 second=102 amount=-1 +kerning first=103 second=237 amount=-1 +kerning first=115 second=98 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=114 second=291 amount=-1 +kerning first=114 second=289 amount=-1 +kerning first=114 second=287 amount=-1 +kerning first=114 second=103 amount=-1 +kerning first=114 second=46 amount=-1 +kerning first=114 second=44 amount=-1 +kerning first=113 second=8249 amount=-1 +kerning first=113 second=8221 amount=-1 +kerning first=113 second=8220 amount=-1 +kerning first=113 second=8217 amount=-1 +kerning first=113 second=382 amount=-1 +kerning first=113 second=380 amount=-1 +kerning first=103 second=257 amount=-1 +kerning first=103 second=259 amount=-1 +kerning first=103 second=261 amount=-1 +kerning first=113 second=378 amount=-1 +kerning first=113 second=371 amount=-1 +kerning first=113 second=369 amount=-1 +kerning first=113 second=367 amount=-1 +kerning first=113 second=365 amount=-1 +kerning first=113 second=363 amount=-1 +kerning first=113 second=361 amount=-1 +kerning first=113 second=353 amount=-1 +kerning first=113 second=351 amount=-1 +kerning first=113 second=347 amount=-1 +kerning first=103 second=287 amount=-1 +kerning first=103 second=289 amount=-1 +kerning first=103 second=291 amount=-1 +kerning first=103 second=303 amount=-1 +kerning first=113 second=331 amount=-1 +kerning first=103 second=307 amount=-1 +kerning first=103 second=311 amount=-1 +kerning first=103 second=314 amount=-1 +kerning first=103 second=316 amount=-1 +kerning first=103 second=318 amount=-1 +kerning first=113 second=328 amount=-1 +kerning first=113 second=326 amount=-1 +kerning first=113 second=324 amount=-1 +kerning first=113 second=318 amount=-1 +kerning first=113 second=316 amount=-1 +kerning first=113 second=314 amount=-1 +kerning first=113 second=311 amount=-1 +kerning first=113 second=305 amount=-1 +kerning first=113 second=261 amount=-1 +kerning first=103 second=347 amount=-1 +kerning first=103 second=351 amount=-1 +kerning first=103 second=353 amount=-1 +kerning first=113 second=259 amount=-1 +kerning first=113 second=257 amount=-1 +kerning first=113 second=254 amount=-1 +kerning first=113 second=252 amount=-1 +kerning first=113 second=251 amount=-1 +kerning first=113 second=250 amount=-1 +kerning first=113 second=249 amount=-1 +kerning first=113 second=241 amount=-1 +kerning first=103 second=378 amount=-1 +kerning first=103 second=380 amount=-1 +kerning first=103 second=382 amount=-1 +kerning first=113 second=230 amount=-1 +kerning first=113 second=229 amount=-1 +kerning first=113 second=228 amount=-1 +kerning first=113 second=227 amount=-1 +kerning first=113 second=226 amount=-1 +kerning first=113 second=225 amount=-1 +kerning first=113 second=224 amount=-1 +kerning first=113 second=171 amount=-1 +kerning first=113 second=122 amount=-1 +kerning first=113 second=119 amount=-1 +kerning first=113 second=118 amount=-1 +kerning first=113 second=117 amount=-1 +kerning first=113 second=115 amount=-1 +kerning first=103 second=8249 amount=-1 +kerning first=113 second=110 amount=-1 +kerning first=113 second=109 amount=-1 +kerning first=113 second=108 amount=-1 +kerning first=113 second=107 amount=-1 +kerning first=113 second=106 amount=1 +kerning first=113 second=104 amount=-1 +kerning first=104 second=45 amount=-1 +kerning first=113 second=102 amount=-1 +kerning first=113 second=98 amount=-1 +kerning first=104 second=98 amount=-1 +kerning first=113 second=97 amount=-1 +kerning first=113 second=46 amount=-1 +kerning first=113 second=45 amount=-1 +kerning first=113 second=44 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=112 second=8250 amount=-1 +kerning first=104 second=106 amount=-1 +kerning first=112 second=8221 amount=-1 +kerning first=112 second=8220 amount=-1 +kerning first=112 second=8217 amount=-1 +kerning first=112 second=382 amount=-1 +kerning first=112 second=380 amount=-1 +kerning first=112 second=378 amount=-1 +kerning first=112 second=375 amount=-1 +kerning first=112 second=353 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=112 second=351 amount=-1 +kerning first=104 second=121 amount=-1 +kerning first=112 second=347 amount=-1 +kerning first=104 second=171 amount=-1 +kerning first=112 second=318 amount=-1 +kerning first=112 second=316 amount=-1 +kerning first=112 second=314 amount=-1 +kerning first=112 second=291 amount=-1 +kerning first=112 second=289 amount=-1 +kerning first=112 second=287 amount=-1 +kerning first=112 second=255 amount=-1 +kerning first=112 second=253 amount=-1 +kerning first=112 second=187 amount=-1 +kerning first=112 second=122 amount=-1 +kerning first=112 second=121 amount=-1 +kerning first=112 second=120 amount=-1 +kerning first=112 second=119 amount=-1 +kerning first=112 second=118 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=106 amount=-1 +kerning first=112 second=103 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=111 second=8250 amount=-1 +kerning first=111 second=8221 amount=-1 +kerning first=111 second=8220 amount=-1 +kerning first=111 second=8217 amount=-1 +kerning first=111 second=382 amount=-1 +kerning first=104 second=253 amount=-1 +kerning first=104 second=254 amount=-1 +kerning first=104 second=255 amount=-1 +kerning first=111 second=380 amount=-1 +kerning first=111 second=378 amount=-1 +kerning first=111 second=375 amount=-1 +kerning first=111 second=353 amount=-1 +kerning first=111 second=351 amount=-1 +kerning first=111 second=347 amount=-1 +kerning first=111 second=318 amount=-1 +kerning first=111 second=316 amount=-1 +kerning first=111 second=314 amount=-1 +kerning first=111 second=291 amount=-1 +kerning first=111 second=289 amount=-1 +kerning first=111 second=287 amount=-1 +kerning first=111 second=255 amount=-1 +kerning first=104 second=287 amount=-1 +kerning first=104 second=289 amount=-1 +kerning first=104 second=291 amount=-1 +kerning first=111 second=253 amount=-1 +kerning first=111 second=187 amount=-1 +kerning first=111 second=122 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=115 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=106 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=110 second=8249 amount=-1 +kerning first=110 second=8221 amount=-1 +kerning first=110 second=8220 amount=-1 +kerning first=110 second=8217 amount=-1 +kerning first=110 second=375 amount=-1 +kerning first=110 second=291 amount=-1 +kerning first=110 second=289 amount=-1 +kerning first=110 second=287 amount=-1 +kerning first=110 second=255 amount=-1 +kerning first=110 second=254 amount=-1 +kerning first=104 second=375 amount=-1 +kerning first=110 second=253 amount=-1 +kerning first=110 second=171 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=106 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=98 amount=-1 +kerning first=110 second=45 amount=-1 +kerning first=109 second=8249 amount=-1 +kerning first=109 second=8221 amount=-1 +kerning first=109 second=8220 amount=-1 +kerning first=109 second=8217 amount=-1 +kerning first=104 second=8217 amount=-1 +kerning first=104 second=8220 amount=-1 +kerning first=104 second=8221 amount=-1 +kerning first=104 second=8249 amount=-1 +kerning first=109 second=375 amount=-1 +kerning first=109 second=291 amount=-1 +kerning first=109 second=289 amount=-1 +kerning first=109 second=287 amount=-1 +kerning first=109 second=255 amount=-1 +kerning first=105 second=44 amount=-1 +kerning first=105 second=45 amount=-1 +kerning first=105 second=46 amount=-1 +kerning first=105 second=97 amount=-1 +kerning first=109 second=254 amount=-1 +kerning first=109 second=253 amount=-1 +kerning first=109 second=171 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=109 second=119 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=106 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=105 second=108 amount=-1 +kerning first=109 second=98 amount=-1 +kerning first=109 second=45 amount=-1 +kerning first=108 second=8249 amount=-1 +kerning first=108 second=8221 amount=-1 +kerning first=108 second=8220 amount=-1 +kerning first=108 second=8217 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=108 second=375 amount=-1 +kerning first=108 second=371 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=105 second=119 amount=-1 +kerning first=108 second=369 amount=-1 +kerning first=105 second=121 amount=-1 +kerning first=108 second=367 amount=-1 +kerning first=105 second=171 amount=-1 +kerning first=108 second=365 amount=-1 +kerning first=105 second=224 amount=-1 +kerning first=105 second=225 amount=-1 +kerning first=105 second=226 amount=-1 +kerning first=105 second=227 amount=-1 +kerning first=105 second=228 amount=-1 +kerning first=105 second=229 amount=-1 +kerning first=105 second=230 amount=-1 +kerning first=108 second=363 amount=-1 +kerning first=108 second=361 amount=-1 +kerning first=108 second=291 amount=-1 +kerning first=108 second=289 amount=-1 +kerning first=108 second=287 amount=-1 +kerning first=108 second=261 amount=-1 +kerning first=108 second=259 amount=-1 +kerning first=108 second=257 amount=-1 +kerning first=108 second=255 amount=-1 +kerning first=108 second=253 amount=-1 +kerning first=108 second=252 amount=-1 +kerning first=108 second=251 amount=-1 +kerning first=108 second=250 amount=-1 +kerning first=108 second=249 amount=-1 +kerning first=108 second=230 amount=-1 +kerning first=108 second=229 amount=-1 +kerning first=108 second=228 amount=-1 +kerning first=108 second=227 amount=-1 +kerning first=105 second=253 amount=-1 +kerning first=108 second=226 amount=-1 +kerning first=105 second=255 amount=-1 +kerning first=105 second=257 amount=-1 +kerning first=105 second=259 amount=-1 +kerning first=105 second=261 amount=-1 +kerning first=108 second=225 amount=-1 +kerning first=108 second=224 amount=-1 +kerning first=108 second=171 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=106 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=105 second=287 amount=-1 +kerning first=105 second=289 amount=-1 +kerning first=105 second=291 amount=-1 +kerning first=108 second=45 amount=-1 +kerning first=107 second=8249 amount=-1 +kerning first=107 second=8221 amount=-1 +kerning first=107 second=8220 amount=-1 +kerning first=105 second=314 amount=-1 +kerning first=105 second=316 amount=-1 +kerning first=105 second=318 amount=-1 +kerning first=107 second=8217 amount=-1 +kerning first=107 second=353 amount=-1 +kerning first=107 second=351 amount=-1 +kerning first=107 second=347 amount=-1 +kerning first=107 second=339 amount=-1 +kerning first=107 second=337 amount=-1 +kerning first=107 second=335 amount=-1 +kerning first=107 second=333 amount=-1 +kerning first=107 second=291 amount=-1 +kerning first=105 second=347 amount=-1 +kerning first=105 second=351 amount=-1 +kerning first=105 second=353 amount=-1 +kerning first=107 second=289 amount=-1 +kerning first=107 second=287 amount=-1 +kerning first=107 second=283 amount=-1 +kerning first=107 second=281 amount=-1 +kerning first=107 second=279 amount=-1 +kerning first=107 second=277 amount=-1 +kerning first=107 second=275 amount=-1 +kerning first=105 second=375 amount=-1 +kerning first=107 second=273 amount=-1 +kerning first=107 second=271 amount=-1 +kerning first=107 second=269 amount=-1 +kerning first=107 second=267 amount=-1 +kerning first=107 second=263 amount=-1 +kerning first=107 second=248 amount=-1 +kerning first=107 second=246 amount=-1 +kerning first=107 second=245 amount=-1 +kerning first=107 second=244 amount=-1 +kerning first=107 second=243 amount=-1 +kerning first=107 second=242 amount=-1 +kerning first=107 second=240 amount=-1 +kerning first=107 second=235 amount=-1 +kerning first=107 second=234 amount=-1 +kerning first=107 second=233 amount=-1 +kerning first=107 second=232 amount=-1 +kerning first=105 second=8217 amount=-1 +kerning first=105 second=8220 amount=-1 +kerning first=105 second=8221 amount=-1 +kerning first=105 second=8249 amount=-1 +kerning first=107 second=231 amount=-1 +kerning first=107 second=171 amount=-1 +kerning first=107 second=115 amount=-1 +kerning first=107 second=113 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=106 second=45 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=107 second=101 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=45 amount=-1 +kerning first=106 second=103 amount=-1 +kerning first=106 second=8249 amount=-1 +kerning first=106 second=8221 amount=-1 +kerning first=106 second=106 amount=-1 +kerning first=106 second=8220 amount=-1 +kerning first=106 second=108 amount=-1 +kerning first=106 second=8217 amount=-1 +kerning first=106 second=375 amount=-1 +kerning first=106 second=353 amount=-1 +kerning first=106 second=351 amount=-1 +kerning first=106 second=347 amount=-1 +kerning first=106 second=318 amount=-1 +kerning first=106 second=115 amount=-1 +kerning first=106 second=316 amount=-1 +kerning first=106 second=314 amount=-1 +kerning first=106 second=118 amount=-1 +kerning first=106 second=119 amount=-1 +kerning first=106 second=291 amount=-1 +kerning first=106 second=121 amount=-1 +kerning first=106 second=289 amount=-1 +kerning first=106 second=171 amount=-1 +kerning first=106 second=287 amount=-1 +kerning first=106 second=224 amount=-1 +kerning first=106 second=225 amount=-1 +kerning first=106 second=226 amount=-1 +kerning first=106 second=227 amount=-1 +kerning first=106 second=228 amount=-1 +kerning first=106 second=229 amount=-1 +kerning first=106 second=230 amount=-1 +kerning first=106 second=261 amount=-1 +kerning first=106 second=259 amount=-1 +kerning first=106 second=257 amount=-1 +kerning first=106 second=255 amount=-1 +kerning first=106 second=253 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif32_0.png b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif32_0.png new file mode 100644 index 000000000..9af61dfa0 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif32_0.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif64I.fnt b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif64I.fnt new file mode 100644 index 000000000..f6cab8b7c --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif64I.fnt @@ -0,0 +1,8790 @@ +info face="FreeSerif" size=64 bold=0 italic=1 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=3,3 outline=0 +common lineHeight=64 base=48 scaleW=1024 scaleH=1024 pages=1 packed=0 alphaChnl=0 redChnl=4 greenChnl=4 blueChnl=4 +page id=0 file="BM-FreeSerif64I_0.png" +chars count=406 +char id=-1 x=0 y=468 width=41 height=36 xoffset=4 yoffset=12 xadvance=37 page=0 chnl=15 +char id=32 x=1018 y=175 width=1 height=1 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=15 +char id=33 x=381 y=421 width=17 height=37 xoffset=7 yoffset=11 xadvance=18 page=0 chnl=15 +char id=34 x=786 y=520 width=16 height=14 xoffset=13 yoffset=11 xadvance=22 page=0 chnl=15 +char id=35 x=559 y=457 width=31 height=36 xoffset=4 yoffset=12 xadvance=26 page=0 chnl=15 +char id=36 x=877 y=204 width=31 height=44 xoffset=3 yoffset=9 xadvance=26 page=0 chnl=15 +char id=37 x=208 y=304 width=37 height=38 xoffset=10 yoffset=11 xadvance=44 page=0 chnl=15 +char id=38 x=596 y=252 width=42 height=38 xoffset=4 yoffset=11 xadvance=41 page=0 chnl=15 +char id=39 x=1013 y=203 width=7 height=14 xoffset=12 yoffset=11 xadvance=9 page=0 chnl=15 +char id=40 x=896 y=155 width=23 height=46 xoffset=5 yoffset=11 xadvance=18 page=0 chnl=15 +char id=41 x=922 y=155 width=23 height=46 xoffset=-1 yoffset=12 xadvance=18 page=0 chnl=15 +char id=42 x=333 y=541 width=23 height=23 xoffset=10 yoffset=11 xadvance=26 page=0 chnl=15 +char id=43 x=627 y=496 width=29 height=28 xoffset=5 yoffset=20 xadvance=30 page=0 chnl=15 +char id=44 x=867 y=520 width=10 height=13 xoffset=1 yoffset=42 xadvance=13 page=0 chnl=15 +char id=45 x=433 y=557 width=15 height=4 xoffset=5 yoffset=34 xadvance=18 page=0 chnl=15 +char id=46 x=1012 y=349 width=7 height=7 xoffset=4 yoffset=42 xadvance=13 page=0 chnl=15 +char id=47 x=768 y=293 width=29 height=38 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=48 x=62 y=346 width=28 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=49 x=206 y=427 width=23 height=37 xoffset=6 yoffset=11 xadvance=26 page=0 chnl=15 +char id=50 x=515 y=378 width=31 height=37 xoffset=1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=51 x=670 y=293 width=30 height=38 xoffset=2 yoffset=11 xadvance=26 page=0 chnl=15 +char id=52 x=943 y=373 width=29 height=37 xoffset=3 yoffset=11 xadvance=26 page=0 chnl=15 +char id=53 x=287 y=300 width=34 height=38 xoffset=2 yoffset=11 xadvance=26 page=0 chnl=15 +char id=54 x=432 y=299 width=32 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=55 x=625 y=457 width=28 height=36 xoffset=9 yoffset=12 xadvance=26 page=0 chnl=15 +char id=56 x=93 y=346 width=28 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=57 x=537 y=295 width=31 height=38 xoffset=2 yoffset=11 xadvance=26 page=0 chnl=15 +char id=58 x=26 y=544 width=14 height=26 xoffset=4 yoffset=23 xadvance=15 page=0 chnl=15 +char id=59 x=1006 y=373 width=15 height=32 xoffset=3 yoffset=23 xadvance=15 page=0 chnl=15 +char id=60 x=522 y=499 width=34 height=29 xoffset=5 yoffset=20 xadvance=30 page=0 chnl=15 +char id=61 x=638 y=527 width=33 height=15 xoffset=3 yoffset=27 xadvance=30 page=0 chnl=15 +char id=62 x=559 y=496 width=33 height=29 xoffset=1 yoffset=20 xadvance=30 page=0 chnl=15 +char id=63 x=232 y=426 width=23 height=37 xoffset=10 yoffset=11 xadvance=23 page=0 chnl=15 +char id=64 x=730 y=252 width=41 height=38 xoffset=11 yoffset=11 xadvance=49 page=0 chnl=15 +char id=65 x=971 y=333 width=38 height=37 xoffset=0 yoffset=11 xadvance=38 page=0 chnl=15 +char id=66 x=130 y=467 width=39 height=36 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=15 +char id=67 x=85 y=305 width=39 height=38 xoffset=6 yoffset=11 xadvance=35 page=0 chnl=15 +char id=68 x=776 y=414 width=44 height=36 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=69 x=916 y=413 width=41 height=36 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=15 +char id=70 x=960 y=413 width=41 height=36 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=15 +char id=71 x=774 y=251 width=40 height=38 xoffset=6 yoffset=11 xadvance=38 page=0 chnl=15 +char id=72 x=521 y=418 width=50 height=36 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=73 x=593 y=457 width=29 height=36 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=15 +char id=74 x=651 y=374 width=31 height=37 xoffset=1 yoffset=12 xadvance=20 page=0 chnl=15 +char id=75 x=679 y=414 width=47 height=36 xoffset=1 yoffset=12 xadvance=38 page=0 chnl=15 +char id=76 x=409 y=460 width=35 height=36 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=15 +char id=77 x=401 y=421 width=58 height=36 xoffset=0 yoffset=12 xadvance=47 page=0 chnl=15 +char id=78 x=733 y=334 width=50 height=37 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=79 x=43 y=305 width=39 height=38 xoffset=6 yoffset=11 xadvance=38 page=0 chnl=15 +char id=80 x=214 y=467 width=38 height=36 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=15 +char id=81 x=778 y=155 width=39 height=46 xoffset=6 yoffset=11 xadvance=38 page=0 chnl=15 +char id=82 x=172 y=467 width=39 height=36 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=15 +char id=83 x=396 y=299 width=33 height=38 xoffset=3 yoffset=11 xadvance=29 page=0 chnl=15 +char id=84 x=371 y=462 width=35 height=36 xoffset=8 yoffset=12 xadvance=32 page=0 chnl=15 +char id=85 x=885 y=333 width=42 height=37 xoffset=8 yoffset=12 xadvance=38 page=0 chnl=15 +char id=86 x=0 y=388 width=37 height=37 xoffset=12 yoffset=12 xadvance=38 page=0 chnl=15 +char id=87 x=679 y=334 width=51 height=37 xoffset=11 yoffset=12 xadvance=50 page=0 chnl=15 +char id=88 x=627 y=416 width=49 height=36 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=89 x=88 y=468 width=39 height=36 xoffset=11 yoffset=12 xadvance=38 page=0 chnl=15 +char id=90 x=870 y=413 width=43 height=36 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=15 +char id=91 x=975 y=203 width=27 height=44 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=15 +char id=92 x=1005 y=203 width=5 height=38 xoffset=11 yoffset=11 xadvance=16 page=0 chnl=15 +char id=93 x=945 y=204 width=27 height=44 xoffset=-1 yoffset=12 xadvance=18 page=0 chnl=15 +char id=94 x=520 y=532 width=23 height=20 xoffset=6 yoffset=12 xadvance=25 page=0 chnl=15 +char id=95 x=360 y=567 width=28 height=4 xoffset=-2 yoffset=51 xadvance=26 page=0 chnl=15 +char id=96 x=14 y=573 width=10 height=10 xoffset=12 yoffset=11 xadvance=18 page=0 chnl=15 +char id=97 x=987 y=490 width=24 height=26 xoffset=3 yoffset=23 xadvance=23 page=0 chnl=15 +char id=98 x=389 y=340 width=26 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=99 x=960 y=490 width=24 height=26 xoffset=4 yoffset=23 xadvance=23 page=0 chnl=15 +char id=100 x=502 y=297 width=32 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=101 x=933 y=490 width=24 height=26 xoffset=4 yoffset=23 xadvance=23 page=0 chnl=15 +char id=102 x=549 y=378 width=31 height=37 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=103 x=266 y=386 width=34 height=37 xoffset=-1 yoffset=23 xadvance=26 page=0 chnl=15 +char id=104 x=685 y=374 width=30 height=37 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=105 x=357 y=422 width=21 height=37 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=106 x=109 y=108 width=30 height=49 xoffset=-7 yoffset=11 xadvance=15 page=0 chnl=15 +char id=107 x=303 y=382 width=34 height=37 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=108 x=308 y=422 width=22 height=37 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=109 x=102 y=544 width=44 height=25 xoffset=0 yoffset=23 xadvance=41 page=0 chnl=15 +char id=110 x=219 y=542 width=29 height=25 xoffset=0 yoffset=23 xadvance=26 page=0 chnl=15 +char id=111 x=846 y=491 width=26 height=26 xoffset=4 yoffset=23 xadvance=26 page=0 chnl=15 +char id=112 x=117 y=387 width=35 height=37 xoffset=-4 yoffset=23 xadvance=26 page=0 chnl=15 +char id=113 x=0 y=428 width=28 height=37 xoffset=3 yoffset=23 xadvance=26 page=0 chnl=15 +char id=114 x=283 y=541 width=26 height=25 xoffset=0 yoffset=23 xadvance=18 page=0 chnl=15 +char id=115 x=0 y=544 width=23 height=26 xoffset=2 yoffset=23 xadvance=20 page=0 chnl=15 +char id=116 x=1004 y=413 width=17 height=33 xoffset=5 yoffset=16 xadvance=15 page=0 chnl=15 +char id=117 x=904 y=490 width=26 height=26 xoffset=5 yoffset=23 xadvance=26 page=0 chnl=15 +char id=118 x=875 y=491 width=26 height=26 xoffset=8 yoffset=23 xadvance=26 page=0 chnl=15 +char id=119 x=737 y=491 width=37 height=26 xoffset=9 yoffset=23 xadvance=38 page=0 chnl=15 +char id=120 x=185 y=542 width=31 height=25 xoffset=0 yoffset=23 xadvance=26 page=0 chnl=15 +char id=121 x=40 y=388 width=36 height=37 xoffset=-1 yoffset=23 xadvance=26 page=0 chnl=15 +char id=122 x=251 y=542 width=29 height=25 xoffset=1 yoffset=23 xadvance=23 page=0 chnl=15 +char id=123 x=396 y=158 width=24 height=47 xoffset=8 yoffset=11 xadvance=25 page=0 chnl=15 +char id=124 x=492 y=338 width=17 height=38 xoffset=3 yoffset=11 xadvance=10 page=0 chnl=15 +char id=125 x=369 y=158 width=24 height=47 xoffset=3 yoffset=11 xadvance=25 page=0 chnl=15 +char id=126 x=95 y=572 width=26 height=8 xoffset=6 yoffset=30 xadvance=29 page=0 chnl=15 +char id=160 x=1018 y=155 width=1 height=1 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=15 +char id=161 x=472 y=338 width=17 height=38 xoffset=2 yoffset=22 xadvance=18 page=0 chnl=15 +char id=162 x=518 y=253 width=29 height=39 xoffset=3 yoffset=16 xadvance=26 page=0 chnl=15 +char id=163 x=192 y=387 width=34 height=37 xoffset=1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=164 x=481 y=499 width=38 height=30 xoffset=0 yoffset=15 xadvance=26 page=0 chnl=15 +char id=165 x=255 y=466 width=36 height=36 xoffset=4 yoffset=12 xadvance=26 page=0 chnl=15 +char id=166 x=1001 y=52 width=17 height=38 xoffset=3 yoffset=11 xadvance=10 page=0 chnl=15 +char id=167 x=474 y=207 width=27 height=45 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=168 x=193 y=570 width=17 height=6 xoffset=11 yoffset=14 xadvance=18 page=0 chnl=15 +char id=169 x=279 y=257 width=43 height=40 xoffset=6 yoffset=9 xadvance=42 page=0 chnl=15 +char id=170 x=619 y=528 width=16 height=16 xoffset=8 yoffset=11 xadvance=14 page=0 chnl=15 +char id=171 x=423 y=533 width=27 height=21 xoffset=4 yoffset=25 xadvance=23 page=0 chnl=15 +char id=172 x=546 y=531 width=29 height=16 xoffset=7 yoffset=27 xadvance=30 page=0 chnl=15 +char id=173 x=451 y=557 width=15 height=4 xoffset=5 yoffset=34 xadvance=18 page=0 chnl=15 +char id=174 x=325 y=256 width=43 height=40 xoffset=6 yoffset=9 xadvance=42 page=0 chnl=15 +char id=175 x=391 y=562 width=18 height=4 xoffset=10 yoffset=15 xadvance=18 page=0 chnl=15 +char id=176 x=599 y=528 width=17 height=16 xoffset=12 yoffset=11 xadvance=21 page=0 chnl=15 +char id=177 x=686 y=453 width=36 height=35 xoffset=1 yoffset=13 xadvance=30 page=0 chnl=15 +char id=178 x=359 y=541 width=21 height=23 xoffset=5 yoffset=11 xadvance=17 page=0 chnl=15 +char id=179 x=383 y=536 width=19 height=23 xoffset=6 yoffset=11 xadvance=17 page=0 chnl=15 +char id=180 x=977 y=519 width=15 height=10 xoffset=14 yoffset=11 xadvance=18 page=0 chnl=15 +char id=181 x=376 y=381 width=33 height=37 xoffset=-1 yoffset=23 xadvance=26 page=0 chnl=15 +char id=182 x=805 y=204 width=35 height=44 xoffset=3 yoffset=12 xadvance=26 page=0 chnl=15 +char id=183 x=1014 y=489 width=6 height=6 xoffset=8 yoffset=32 xadvance=13 page=0 chnl=15 +char id=184 x=880 y=520 width=13 height=12 xoffset=-1 yoffset=47 xadvance=18 page=0 chnl=15 +char id=185 x=405 y=536 width=15 height=23 xoffset=8 yoffset=11 xadvance=17 page=0 chnl=15 +char id=186 x=578 y=528 width=18 height=16 xoffset=9 yoffset=11 xadvance=16 page=0 chnl=15 +char id=187 x=453 y=533 width=26 height=21 xoffset=1 yoffset=25 xadvance=23 page=0 chnl=15 +char id=188 x=903 y=251 width=40 height=38 xoffset=6 yoffset=11 xadvance=40 page=0 chnl=15 +char id=189 x=0 y=306 width=40 height=38 xoffset=5 yoffset=11 xadvance=40 page=0 chnl=15 +char id=190 x=686 y=252 width=41 height=38 xoffset=6 yoffset=11 xadvance=40 page=0 chnl=15 +char id=191 x=258 y=426 width=22 height=37 xoffset=0 yoffset=23 xadvance=23 page=0 chnl=15 +char id=192 x=912 y=104 width=38 height=48 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=193 x=295 y=107 width=43 height=48 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=194 x=743 y=104 width=40 height=48 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=195 x=972 y=155 width=43 height=45 xoffset=0 yoffset=3 xadvance=38 page=0 chnl=15 +char id=196 x=179 y=210 width=41 height=45 xoffset=0 yoffset=3 xadvance=38 page=0 chnl=15 +char id=197 x=353 y=55 width=39 height=49 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=198 x=462 y=421 width=56 height=36 xoffset=0 yoffset=12 xadvance=47 page=0 chnl=15 +char id=199 x=828 y=104 width=39 height=48 xoffset=6 yoffset=11 xadvance=35 page=0 chnl=15 +char id=200 x=656 y=105 width=41 height=48 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=15 +char id=201 x=568 y=105 width=41 height=48 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=15 +char id=202 x=524 y=105 width=41 height=48 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=15 +char id=203 x=135 y=211 width=41 height=45 xoffset=0 yoffset=3 xadvance=32 page=0 chnl=15 +char id=204 x=253 y=158 width=29 height=48 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=205 x=111 y=160 width=33 height=48 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=206 x=991 y=104 width=30 height=48 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=207 x=345 y=208 width=31 height=45 xoffset=0 yoffset=3 xadvance=18 page=0 chnl=15 +char id=208 x=823 y=414 width=44 height=36 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=209 x=423 y=158 width=50 height=46 xoffset=0 yoffset=3 xadvance=38 page=0 chnl=15 +char id=210 x=647 y=53 width=39 height=49 xoffset=6 yoffset=0 xadvance=38 page=0 chnl=15 +char id=211 x=521 y=53 width=39 height=49 xoffset=6 yoffset=0 xadvance=38 page=0 chnl=15 +char id=212 x=479 y=53 width=39 height=49 xoffset=6 yoffset=0 xadvance=38 page=0 chnl=15 +char id=213 x=736 y=155 width=39 height=46 xoffset=6 yoffset=3 xadvance=38 page=0 chnl=15 +char id=214 x=694 y=156 width=39 height=46 xoffset=6 yoffset=3 xadvance=38 page=0 chnl=15 +char id=215 x=659 y=494 width=34 height=27 xoffset=3 yoffset=21 xadvance=30 page=0 chnl=15 +char id=216 x=529 y=205 width=48 height=44 xoffset=1 yoffset=8 xadvance=38 page=0 chnl=15 +char id=217 x=135 y=56 width=42 height=49 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=218 x=45 y=56 width=42 height=49 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=219 x=180 y=56 width=42 height=49 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=220 x=476 y=156 width=42 height=46 xoffset=8 yoffset=3 xadvance=38 page=0 chnl=15 +char id=221 x=870 y=104 width=39 height=48 xoffset=11 yoffset=0 xadvance=38 page=0 chnl=15 +char id=222 x=294 y=466 width=36 height=36 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=15 +char id=223 x=324 y=300 width=33 height=38 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=224 x=418 y=340 width=24 height=38 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=15 +char id=225 x=960 y=292 width=29 height=38 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=15 +char id=226 x=214 y=345 width=27 height=38 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=15 +char id=227 x=758 y=453 width=29 height=35 xoffset=3 yoffset=14 xadvance=23 page=0 chnl=15 +char id=228 x=821 y=453 width=28 height=35 xoffset=3 yoffset=14 xadvance=23 page=0 chnl=15 +char id=229 x=403 y=256 width=26 height=40 xoffset=3 yoffset=9 xadvance=23 page=0 chnl=15 +char id=230 x=777 y=491 width=36 height=26 xoffset=3 yoffset=23 xadvance=34 page=0 chnl=15 +char id=231 x=92 y=427 width=26 height=37 xoffset=2 yoffset=23 xadvance=23 page=0 chnl=15 +char id=232 x=445 y=340 width=24 height=38 xoffset=4 yoffset=11 xadvance=23 page=0 chnl=15 +char id=233 x=0 y=347 width=28 height=38 xoffset=4 yoffset=11 xadvance=23 page=0 chnl=15 +char id=234 x=273 y=343 width=26 height=38 xoffset=4 yoffset=11 xadvance=23 page=0 chnl=15 +char id=235 x=883 y=452 width=27 height=35 xoffset=4 yoffset=14 xadvance=23 page=0 chnl=15 +char id=236 x=333 y=422 width=21 height=37 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=237 x=62 y=428 width=27 height=37 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=238 x=178 y=427 width=25 height=37 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=239 x=98 y=507 width=25 height=34 xoffset=0 yoffset=14 xadvance=15 page=0 chnl=15 +char id=240 x=703 y=293 width=30 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=241 x=0 y=507 width=34 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=15 +char id=242 x=302 y=341 width=26 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=243 x=800 y=292 width=29 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=244 x=184 y=346 width=27 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=245 x=725 y=453 width=30 height=35 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=15 +char id=246 x=852 y=453 width=28 height=35 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=15 +char id=247 x=595 y=496 width=29 height=29 xoffset=5 yoffset=20 xadvance=30 page=0 chnl=15 +char id=248 x=523 y=457 width=33 height=36 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=15 +char id=249 x=331 y=341 width=26 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=250 x=896 y=292 width=29 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=251 x=360 y=340 width=26 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=252 x=913 y=452 width=27 height=35 xoffset=5 yoffset=14 xadvance=26 page=0 chnl=15 +char id=253 x=809 y=52 width=36 height=49 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=254 x=925 y=52 width=35 height=49 xoffset=-4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=255 x=820 y=155 width=36 height=46 xoffset=-1 yoffset=14 xadvance=26 page=0 chnl=15 +char id=256 x=29 y=259 width=42 height=43 xoffset=0 yoffset=5 xadvance=38 page=0 chnl=15 +char id=257 x=238 y=506 width=28 height=33 xoffset=3 yoffset=16 xadvance=23 page=0 chnl=15 +char id=258 x=341 y=107 width=43 height=48 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=259 x=911 y=373 width=29 height=37 xoffset=3 yoffset=12 xadvance=23 page=0 chnl=15 +char id=260 x=609 y=156 width=40 height=46 xoffset=0 yoffset=11 xadvance=38 page=0 chnl=15 +char id=261 x=126 y=507 width=24 height=34 xoffset=3 yoffset=23 xadvance=23 page=0 chnl=15 +char id=262 x=605 y=53 width=39 height=49 xoffset=6 yoffset=0 xadvance=35 page=0 chnl=15 +char id=263 x=832 y=292 width=29 height=38 xoffset=4 yoffset=11 xadvance=23 page=0 chnl=15 +char id=264 x=689 y=52 width=39 height=49 xoffset=6 yoffset=0 xadvance=35 page=0 chnl=15 +char id=265 x=124 y=346 width=27 height=38 xoffset=4 yoffset=11 xadvance=23 page=0 chnl=15 +char id=266 x=652 y=156 width=39 height=46 xoffset=6 yoffset=3 xadvance=35 page=0 chnl=15 +char id=267 x=970 y=452 width=24 height=35 xoffset=4 yoffset=14 xadvance=23 page=0 chnl=15 +char id=268 x=311 y=55 width=39 height=49 xoffset=6 yoffset=0 xadvance=35 page=0 chnl=15 +char id=269 x=571 y=293 width=30 height=38 xoffset=4 yoffset=11 xadvance=23 page=0 chnl=15 +char id=270 x=248 y=107 width=44 height=48 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=271 x=946 y=251 width=40 height=38 xoffset=4 yoffset=11 xadvance=33 page=0 chnl=15 +char id=272 x=729 y=414 width=44 height=36 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=273 x=360 y=299 width=33 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=274 x=74 y=259 width=41 height=43 xoffset=0 yoffset=5 xadvance=32 page=0 chnl=15 +char id=275 x=269 y=505 width=28 height=33 xoffset=4 yoffset=16 xadvance=23 page=0 chnl=15 +char id=276 x=285 y=158 width=41 height=47 xoffset=0 yoffset=1 xadvance=32 page=0 chnl=15 +char id=277 x=783 y=374 width=29 height=37 xoffset=4 yoffset=12 xadvance=23 page=0 chnl=15 +char id=278 x=91 y=211 width=41 height=45 xoffset=0 yoffset=3 xadvance=32 page=0 chnl=15 +char id=279 x=943 y=452 width=24 height=35 xoffset=4 yoffset=14 xadvance=23 page=0 chnl=15 +char id=280 x=223 y=210 width=41 height=45 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=15 +char id=281 x=997 y=452 width=24 height=34 xoffset=4 yoffset=23 xadvance=23 page=0 chnl=15 +char id=282 x=612 y=105 width=41 height=48 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=15 +char id=283 x=928 y=292 width=29 height=38 xoffset=4 yoffset=11 xadvance=23 page=0 chnl=15 +char id=284 x=268 y=55 width=40 height=49 xoffset=6 yoffset=0 xadvance=38 page=0 chnl=15 +char id=285 x=0 y=108 width=34 height=49 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=286 x=700 y=104 width=40 height=48 xoffset=6 yoffset=1 xadvance=38 page=0 chnl=15 +char id=287 x=38 y=160 width=34 height=48 xoffset=-1 yoffset=12 xadvance=26 page=0 chnl=15 +char id=288 x=566 y=156 width=40 height=46 xoffset=6 yoffset=3 xadvance=38 page=0 chnl=15 +char id=289 x=859 y=155 width=34 height=46 xoffset=-1 yoffset=14 xadvance=26 page=0 chnl=15 +char id=290 x=51 y=0 width=40 height=53 xoffset=6 yoffset=11 xadvance=38 page=0 chnl=15 +char id=291 x=131 y=0 width=34 height=53 xoffset=-1 yoffset=7 xadvance=26 page=0 chnl=15 +char id=292 x=727 y=0 width=50 height=49 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=293 x=0 y=160 width=35 height=48 xoffset=0 yoffset=0 xadvance=26 page=0 chnl=15 +char id=294 x=574 y=418 width=50 height=36 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=295 x=481 y=379 width=31 height=37 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=296 x=309 y=208 width=33 height=45 xoffset=0 yoffset=3 xadvance=18 page=0 chnl=15 +char id=297 x=330 y=505 width=27 height=33 xoffset=0 yoffset=15 xadvance=15 page=0 chnl=15 +char id=298 x=154 y=259 width=32 height=43 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=15 +char id=299 x=380 y=501 width=26 height=32 xoffset=0 yoffset=16 xadvance=15 page=0 chnl=15 +char id=300 x=183 y=159 width=33 height=48 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=301 x=656 y=455 width=27 height=36 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=15 +char id=302 x=411 y=208 width=29 height=45 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=15 +char id=303 x=948 y=155 width=21 height=46 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=304 x=379 y=208 width=29 height=45 xoffset=0 yoffset=3 xadvance=18 page=0 chnl=15 +char id=305 x=312 y=541 width=18 height=25 xoffset=0 yoffset=23 xadvance=15 page=0 chnl=15 +char id=306 x=786 y=334 width=49 height=37 xoffset=0 yoffset=12 xadvance=37 page=0 chnl=15 +char id=307 x=887 y=52 width=35 height=49 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=15 +char id=308 x=637 y=0 width=33 height=50 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=15 +char id=309 x=37 y=108 width=33 height=49 xoffset=-7 yoffset=11 xadvance=15 page=0 chnl=15 +char id=310 x=247 y=0 width=47 height=52 xoffset=1 yoffset=12 xadvance=38 page=0 chnl=15 +char id=311 x=94 y=0 width=34 height=53 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=312 x=149 y=544 width=33 height=25 xoffset=0 yoffset=23 xadvance=26 page=0 chnl=15 +char id=313 x=963 y=52 width=35 height=49 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=15 +char id=314 x=219 y=159 width=31 height=48 xoffset=1 yoffset=0 xadvance=15 page=0 chnl=15 +char id=315 x=339 y=0 width=35 height=52 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=15 +char id=316 x=168 y=0 width=23 height=53 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=317 x=930 y=333 width=38 height=37 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=15 +char id=318 x=447 y=381 width=31 height=37 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=319 x=447 y=460 width=35 height=36 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=15 +char id=320 x=121 y=427 width=26 height=37 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=321 x=485 y=460 width=35 height=36 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=15 +char id=322 x=283 y=426 width=22 height=37 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=323 x=780 y=0 width=50 height=49 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=324 x=340 y=382 width=33 height=37 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=325 x=194 y=0 width=50 height=52 xoffset=0 yoffset=12 xadvance=38 page=0 chnl=15 +char id=326 x=215 y=258 width=29 height=41 xoffset=0 yoffset=23 xadvance=26 page=0 chnl=15 +char id=327 x=833 y=0 width=50 height=49 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=328 x=229 y=386 width=34 height=37 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=329 x=847 y=373 width=29 height=37 xoffset=3 yoffset=11 xadvance=29 page=0 chnl=15 +char id=330 x=550 y=252 width=43 height=38 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=15 +char id=331 x=815 y=374 width=29 height=37 xoffset=0 yoffset=23 xadvance=26 page=0 chnl=15 +char id=332 x=724 y=205 width=39 height=44 xoffset=6 yoffset=5 xadvance=38 page=0 chnl=15 +char id=333 x=207 y=506 width=28 height=33 xoffset=4 yoffset=16 xadvance=26 page=0 chnl=15 +char id=334 x=563 y=53 width=39 height=49 xoffset=6 yoffset=0 xadvance=38 page=0 chnl=15 +char id=335 x=751 y=374 width=29 height=37 xoffset=4 yoffset=12 xadvance=26 page=0 chnl=15 +char id=336 x=886 y=0 width=43 height=49 xoffset=6 yoffset=0 xadvance=38 page=0 chnl=15 +char id=337 x=467 y=297 width=32 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=338 x=625 y=334 width=51 height=37 xoffset=6 yoffset=12 xadvance=47 page=0 chnl=15 +char id=339 x=696 y=491 width=38 height=26 xoffset=4 yoffset=23 xadvance=38 page=0 chnl=15 +char id=340 x=437 y=53 width=39 height=49 xoffset=0 yoffset=0 xadvance=35 page=0 chnl=15 +char id=341 x=879 y=373 width=29 height=37 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=15 +char id=342 x=297 y=0 width=39 height=52 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=15 +char id=343 x=247 y=258 width=29 height=41 xoffset=-2 yoffset=23 xadvance=18 page=0 chnl=15 +char id=344 x=479 y=105 width=42 height=48 xoffset=0 yoffset=0 xadvance=35 page=0 chnl=15 +char id=345 x=718 y=374 width=30 height=37 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=15 +char id=346 x=770 y=52 width=36 height=49 xoffset=3 yoffset=0 xadvance=29 page=0 chnl=15 +char id=347 x=736 y=293 width=29 height=38 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=15 +char id=348 x=73 y=108 width=33 height=49 xoffset=3 yoffset=0 xadvance=29 page=0 chnl=15 +char id=349 x=244 y=345 width=26 height=38 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=15 +char id=350 x=147 y=159 width=33 height=48 xoffset=3 yoffset=11 xadvance=29 page=0 chnl=15 +char id=351 x=150 y=427 width=25 height=37 xoffset=0 yoffset=23 xadvance=20 page=0 chnl=15 +char id=352 x=731 y=52 width=36 height=49 xoffset=3 yoffset=0 xadvance=29 page=0 chnl=15 +char id=353 x=864 y=292 width=29 height=38 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=15 +char id=354 x=329 y=158 width=37 height=47 xoffset=7 yoffset=12 xadvance=32 page=0 chnl=15 +char id=355 x=189 y=258 width=23 height=43 xoffset=-1 yoffset=16 xadvance=15 page=0 chnl=15 +char id=356 x=953 y=104 width=35 height=48 xoffset=8 yoffset=0 xadvance=32 page=0 chnl=15 +char id=357 x=154 y=346 width=27 height=38 xoffset=5 yoffset=11 xadvance=22 page=0 chnl=15 +char id=358 x=333 y=462 width=35 height=36 xoffset=8 yoffset=12 xadvance=32 page=0 chnl=15 +char id=359 x=360 y=501 width=17 height=33 xoffset=5 yoffset=16 xadvance=15 page=0 chnl=15 +char id=360 x=521 y=156 width=42 height=46 xoffset=8 yoffset=3 xadvance=38 page=0 chnl=15 +char id=361 x=790 y=453 width=28 height=35 xoffset=5 yoffset=14 xadvance=26 page=0 chnl=15 +char id=362 x=679 y=205 width=42 height=44 xoffset=8 yoffset=5 xadvance=38 page=0 chnl=15 +char id=363 x=300 y=505 width=27 height=33 xoffset=5 yoffset=16 xadvance=26 page=0 chnl=15 +char id=364 x=978 y=0 width=42 height=49 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=365 x=975 y=373 width=28 height=37 xoffset=5 yoffset=12 xadvance=26 page=0 chnl=15 +char id=366 x=512 y=0 width=42 height=50 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=367 x=432 y=256 width=26 height=40 xoffset=5 yoffset=9 xadvance=26 page=0 chnl=15 +char id=368 x=90 y=56 width=42 height=49 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=369 x=989 y=250 width=32 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=370 x=46 y=211 width=42 height=45 xoffset=8 yoffset=12 xadvance=38 page=0 chnl=15 +char id=371 x=69 y=507 width=26 height=34 xoffset=5 yoffset=23 xadvance=26 page=0 chnl=15 +char id=372 x=673 y=0 width=51 height=49 xoffset=11 yoffset=0 xadvance=50 page=0 chnl=15 +char id=373 x=168 y=305 width=37 height=38 xoffset=9 yoffset=11 xadvance=38 page=0 chnl=15 +char id=374 x=786 y=104 width=39 height=48 xoffset=11 yoffset=0 xadvance=38 page=0 chnl=15 +char id=375 x=848 y=52 width=36 height=49 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=376 x=267 y=209 width=39 height=45 xoffset=11 yoffset=3 xadvance=38 page=0 chnl=15 +char id=377 x=387 y=107 width=43 height=48 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=15 +char id=378 x=583 y=376 width=31 height=37 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=379 x=0 y=211 width=43 height=45 xoffset=0 yoffset=3 xadvance=32 page=0 chnl=15 +char id=380 x=37 y=507 width=29 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=15 +char id=381 x=433 y=105 width=43 height=48 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=15 +char id=382 x=412 y=381 width=32 height=37 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=383 x=617 y=376 width=31 height=37 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=399 x=127 y=305 width=38 height=38 xoffset=5 yoffset=11 xadvance=38 page=0 chnl=15 +char id=402 x=225 y=55 width=40 height=49 xoffset=-6 yoffset=11 xadvance=19 page=0 chnl=15 +char id=416 x=630 y=205 width=46 height=44 xoffset=6 yoffset=5 xadvance=38 page=0 chnl=15 +char id=417 x=445 y=499 width=33 height=31 xoffset=4 yoffset=18 xadvance=29 page=0 chnl=15 +char id=431 x=580 y=205 width=47 height=44 xoffset=8 yoffset=5 xadvance=41 page=0 chnl=15 +char id=432 x=409 y=499 width=33 height=31 xoffset=5 yoffset=18 xadvance=29 page=0 chnl=15 +char id=461 x=201 y=108 width=44 height=48 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=462 x=992 y=291 width=29 height=38 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=15 +char id=463 x=75 y=160 width=33 height=48 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=15 +char id=464 x=31 y=428 width=28 height=37 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=15 +char id=465 x=395 y=53 width=39 height=49 xoffset=6 yoffset=0 xadvance=38 page=0 chnl=15 +char id=466 x=637 y=293 width=30 height=38 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=467 x=0 y=56 width=42 height=49 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=468 x=31 y=347 width=28 height=38 xoffset=5 yoffset=11 xadvance=26 page=0 chnl=15 +char id=469 x=467 y=0 width=42 height=50 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=470 x=371 y=256 width=29 height=40 xoffset=5 yoffset=9 xadvance=26 page=0 chnl=15 +char id=471 x=422 y=0 width=42 height=50 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=472 x=843 y=204 width=31 height=44 xoffset=5 yoffset=5 xadvance=26 page=0 chnl=15 +char id=473 x=557 y=0 width=40 height=50 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=474 x=911 y=204 width=31 height=44 xoffset=5 yoffset=5 xadvance=26 page=0 chnl=15 +char id=475 x=377 y=0 width=42 height=50 xoffset=8 yoffset=0 xadvance=38 page=0 chnl=15 +char id=476 x=0 y=259 width=26 height=44 xoffset=5 yoffset=5 xadvance=26 page=0 chnl=15 +char id=506 x=932 y=0 width=43 height=49 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15 +char id=507 x=600 y=0 width=34 height=50 xoffset=3 yoffset=0 xadvance=23 page=0 chnl=15 +char id=508 x=142 y=108 width=56 height=48 xoffset=0 yoffset=0 xadvance=47 page=0 chnl=15 +char id=509 x=248 y=302 width=36 height=38 xoffset=3 yoffset=11 xadvance=34 page=0 chnl=15 +char id=510 x=0 y=0 width=48 height=53 xoffset=1 yoffset=0 xadvance=38 page=0 chnl=15 +char id=511 x=118 y=259 width=33 height=43 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=15 +char id=710 x=937 y=519 width=17 height=10 xoffset=9 yoffset=11 xadvance=18 page=0 chnl=15 +char id=711 x=957 y=519 width=17 height=10 xoffset=12 yoffset=11 xadvance=18 page=0 chnl=15 +char id=713 x=412 y=562 width=18 height=4 xoffset=10 yoffset=15 xadvance=18 page=0 chnl=15 +char id=728 x=76 y=572 width=16 height=9 xoffset=12 yoffset=12 xadvance=18 page=0 chnl=15 +char id=729 x=1012 y=359 width=6 height=6 xoffset=16 yoffset=14 xadvance=18 page=0 chnl=15 +char id=730 x=896 y=520 width=12 height=12 xoffset=14 yoffset=9 xadvance=18 page=0 chnl=15 +char id=731 x=0 y=573 width=11 height=10 xoffset=1 yoffset=47 xadvance=18 page=0 chnl=15 +char id=732 x=124 y=572 width=21 height=7 xoffset=9 yoffset=14 xadvance=18 page=0 chnl=15 +char id=733 x=911 y=519 width=23 height=10 xoffset=9 yoffset=11 xadvance=20 page=0 chnl=15 +char id=768 x=27 y=573 width=10 height=10 xoffset=-5 yoffset=11 xadvance=0 page=0 chnl=15 +char id=769 x=995 y=519 width=15 height=10 xoffset=-4 yoffset=11 xadvance=0 page=0 chnl=15 +char id=771 x=1001 y=93 width=20 height=6 xoffset=-8 yoffset=15 xadvance=0 page=0 chnl=15 +char id=777 x=40 y=573 width=10 height=10 xoffset=-2 yoffset=11 xadvance=0 page=0 chnl=15 +char id=803 x=1013 y=519 width=6 height=6 xoffset=-19 yoffset=51 xadvance=0 page=0 chnl=15 +char id=8204 x=1018 y=187 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8205 x=1018 y=191 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8206 x=1018 y=195 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8207 x=1018 y=159 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8211 x=329 y=569 width=28 height=4 xoffset=3 yoffset=34 xadvance=26 page=0 chnl=15 +char id=8212 x=213 y=570 width=55 height=4 xoffset=3 yoffset=34 xadvance=53 page=0 chnl=15 +char id=8213 x=271 y=570 width=55 height=4 xoffset=3 yoffset=34 xadvance=53 page=0 chnl=15 +char id=8215 x=53 y=572 width=20 height=9 xoffset=1 yoffset=50 xadvance=25 page=0 chnl=15 +char id=8216 x=805 y=520 width=10 height=14 xoffset=12 yoffset=11 xadvance=13 page=0 chnl=15 +char id=8217 x=818 y=520 width=10 height=14 xoffset=12 yoffset=11 xadvance=13 page=0 chnl=15 +char id=8218 x=854 y=520 width=10 height=13 xoffset=1 yoffset=42 xadvance=13 page=0 chnl=15 +char id=8219 x=1012 y=332 width=9 height=14 xoffset=13 yoffset=11 xadvance=13 page=0 chnl=15 +char id=8220 x=740 y=520 width=20 height=14 xoffset=12 yoffset=11 xadvance=23 page=0 chnl=15 +char id=8221 x=763 y=520 width=20 height=14 xoffset=12 yoffset=11 xadvance=23 page=0 chnl=15 +char id=8222 x=831 y=520 width=20 height=13 xoffset=1 yoffset=42 xadvance=23 page=0 chnl=15 +char id=8224 x=504 y=205 width=22 height=45 xoffset=10 yoffset=11 xadvance=26 page=0 chnl=15 +char id=8225 x=443 y=207 width=28 height=45 xoffset=4 yoffset=11 xadvance=26 page=0 chnl=15 +char id=8226 x=703 y=520 width=16 height=15 xoffset=7 yoffset=23 xadvance=18 page=0 chnl=15 +char id=8230 x=148 y=572 width=42 height=6 xoffset=7 yoffset=42 xadvance=53 page=0 chnl=15 +char id=8234 x=1018 y=171 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8235 x=1018 y=163 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8236 x=1018 y=167 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8237 x=1018 y=183 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8238 x=1018 y=179 width=1 height=1 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8240 x=461 y=255 width=54 height=39 xoffset=4 yoffset=10 xadvance=53 page=0 chnl=15 +char id=8242 x=722 y=520 width=15 height=15 xoffset=10 yoffset=8 xadvance=13 page=0 chnl=15 +char id=8243 x=674 y=524 width=26 height=15 xoffset=9 yoffset=8 xadvance=22 page=0 chnl=15 +char id=8249 x=482 y=532 width=16 height=21 xoffset=4 yoffset=25 xadvance=13 page=0 chnl=15 +char id=8250 x=501 y=532 width=16 height=21 xoffset=1 yoffset=25 xadvance=13 page=0 chnl=15 +char id=8252 x=79 y=387 width=35 height=37 xoffset=7 yoffset=11 xadvance=35 page=0 chnl=15 +char id=8254 x=469 y=557 width=29 height=3 xoffset=9 yoffset=16 xadvance=26 page=0 chnl=15 +char id=8260 x=860 y=251 width=40 height=38 xoffset=-9 yoffset=11 xadvance=9 page=0 chnl=15 +char id=8355 x=44 y=468 width=41 height=36 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=15 +char id=8356 x=155 y=387 width=34 height=37 xoffset=1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=8359 x=512 y=338 width=55 height=37 xoffset=0 yoffset=12 xadvance=50 page=0 chnl=15 +char id=8362 x=153 y=506 width=51 height=33 xoffset=3 yoffset=15 xadvance=46 page=0 chnl=15 +char id=8363 x=766 y=204 width=36 height=44 xoffset=4 yoffset=5 xadvance=27 page=0 chnl=15 +char id=8364 x=641 y=252 width=42 height=38 xoffset=6 yoffset=11 xadvance=39 page=0 chnl=15 +char id=8453 x=817 y=251 width=40 height=38 xoffset=6 yoffset=11 xadvance=41 page=0 chnl=15 +char id=8467 x=604 y=293 width=30 height=38 xoffset=5 yoffset=11 xadvance=22 page=0 chnl=15 +char id=8470 x=570 y=336 width=52 height=37 xoffset=0 yoffset=12 xadvance=47 page=0 chnl=15 +char id=8482 x=43 y=544 width=56 height=25 xoffset=9 yoffset=12 xadvance=54 page=0 chnl=15 +char id=8486 x=838 y=333 width=44 height=37 xoffset=1 yoffset=11 xadvance=39 page=0 chnl=15 +char id=8494 x=816 y=491 width=27 height=26 xoffset=5 yoffset=23 xadvance=28 page=0 chnl=15 +kernings count=8379 +kerning first=212 second=8249 amount=-1 +kerning first=44 second=45 amount=-2 +kerning first=44 second=171 amount=-2 +kerning first=44 second=8217 amount=-4 +kerning first=44 second=8220 amount=-4 +kerning first=44 second=8221 amount=-4 +kerning first=44 second=8249 amount=-2 +kerning first=45 second=65 amount=-3 +kerning first=45 second=66 amount=-4 +kerning first=45 second=68 amount=-4 +kerning first=45 second=69 amount=-4 +kerning first=45 second=70 amount=-4 +kerning first=45 second=72 amount=-4 +kerning first=45 second=73 amount=-4 +kerning first=45 second=74 amount=-3 +kerning first=45 second=75 amount=-4 +kerning first=45 second=76 amount=-4 +kerning first=45 second=77 amount=-4 +kerning first=45 second=78 amount=-4 +kerning first=45 second=80 amount=-4 +kerning first=45 second=82 amount=-4 +kerning first=45 second=83 amount=-2 +kerning first=45 second=84 amount=-3 +kerning first=45 second=85 amount=-3 +kerning first=45 second=86 amount=-3 +kerning first=45 second=87 amount=-3 +kerning first=45 second=89 amount=-3 +kerning first=45 second=90 amount=-3 +kerning first=45 second=97 amount=-1 +kerning first=45 second=98 amount=-1 +kerning first=45 second=102 amount=-1 +kerning first=45 second=103 amount=-2 +kerning first=45 second=104 amount=-1 +kerning first=45 second=105 amount=-1 +kerning first=45 second=106 amount=-1 +kerning first=45 second=107 amount=-1 +kerning first=45 second=108 amount=-1 +kerning first=45 second=109 amount=-1 +kerning first=45 second=110 amount=-1 +kerning first=45 second=112 amount=-1 +kerning first=45 second=114 amount=-1 +kerning first=45 second=115 amount=-1 +kerning first=45 second=116 amount=-1 +kerning first=45 second=117 amount=-1 +kerning first=45 second=118 amount=-2 +kerning first=45 second=119 amount=-2 +kerning first=45 second=120 amount=-2 +kerning first=45 second=121 amount=-2 +kerning first=45 second=122 amount=-4 +kerning first=45 second=192 amount=-3 +kerning first=45 second=193 amount=-3 +kerning first=45 second=194 amount=-3 +kerning first=45 second=195 amount=-3 +kerning first=45 second=196 amount=-3 +kerning first=45 second=197 amount=-3 +kerning first=45 second=198 amount=-3 +kerning first=45 second=200 amount=-4 +kerning first=45 second=201 amount=-4 +kerning first=45 second=202 amount=-4 +kerning first=45 second=203 amount=-4 +kerning first=45 second=204 amount=-4 +kerning first=45 second=205 amount=-4 +kerning first=45 second=206 amount=-4 +kerning first=45 second=207 amount=-4 +kerning first=45 second=209 amount=-4 +kerning first=45 second=217 amount=-3 +kerning first=45 second=218 amount=-3 +kerning first=45 second=219 amount=-3 +kerning first=45 second=220 amount=-3 +kerning first=45 second=221 amount=-3 +kerning first=45 second=223 amount=-1 +kerning first=45 second=224 amount=-1 +kerning first=45 second=225 amount=-1 +kerning first=45 second=226 amount=-1 +kerning first=45 second=227 amount=-1 +kerning first=45 second=229 amount=-1 +kerning first=45 second=230 amount=-1 +kerning first=45 second=237 amount=-1 +kerning first=45 second=241 amount=-1 +kerning first=45 second=249 amount=-1 +kerning first=45 second=250 amount=-1 +kerning first=45 second=251 amount=-1 +kerning first=45 second=252 amount=-1 +kerning first=45 second=253 amount=-2 +kerning first=45 second=254 amount=-1 +kerning first=45 second=255 amount=-2 +kerning first=45 second=256 amount=-3 +kerning first=45 second=257 amount=-1 +kerning first=45 second=259 amount=-1 +kerning first=45 second=260 amount=-3 +kerning first=45 second=261 amount=-1 +kerning first=45 second=270 amount=-4 +kerning first=45 second=274 amount=-4 +kerning first=45 second=278 amount=-4 +kerning first=45 second=280 amount=-4 +kerning first=45 second=282 amount=-4 +kerning first=45 second=287 amount=-2 +kerning first=45 second=289 amount=-2 +kerning first=45 second=291 amount=-2 +kerning first=45 second=296 amount=-4 +kerning first=45 second=298 amount=-4 +kerning first=45 second=302 amount=-4 +kerning first=45 second=303 amount=-1 +kerning first=45 second=305 amount=-1 +kerning first=45 second=307 amount=-1 +kerning first=45 second=310 amount=-4 +kerning first=45 second=311 amount=-1 +kerning first=45 second=313 amount=-4 +kerning first=45 second=314 amount=-1 +kerning first=45 second=315 amount=-4 +kerning first=45 second=316 amount=-1 +kerning first=45 second=317 amount=-4 +kerning first=45 second=318 amount=-1 +kerning first=45 second=323 amount=-4 +kerning first=45 second=324 amount=-1 +kerning first=45 second=325 amount=-4 +kerning first=45 second=326 amount=-1 +kerning first=45 second=327 amount=-4 +kerning first=45 second=328 amount=-1 +kerning first=45 second=330 amount=-4 +kerning first=45 second=331 amount=-1 +kerning first=45 second=344 amount=-4 +kerning first=45 second=345 amount=-1 +kerning first=45 second=346 amount=-2 +kerning first=45 second=347 amount=-1 +kerning first=45 second=350 amount=-2 +kerning first=45 second=351 amount=-1 +kerning first=45 second=352 amount=-2 +kerning first=45 second=353 amount=-1 +kerning first=45 second=354 amount=-3 +kerning first=45 second=355 amount=-1 +kerning first=45 second=356 amount=-3 +kerning first=45 second=357 amount=-1 +kerning first=45 second=361 amount=-1 +kerning first=45 second=362 amount=-3 +kerning first=45 second=363 amount=-1 +kerning first=45 second=364 amount=-3 +kerning first=45 second=365 amount=-1 +kerning first=45 second=366 amount=-3 +kerning first=45 second=367 amount=-1 +kerning first=45 second=368 amount=-3 +kerning first=45 second=369 amount=-1 +kerning first=45 second=370 amount=-3 +kerning first=45 second=371 amount=-1 +kerning first=45 second=374 amount=-3 +kerning first=45 second=375 amount=-2 +kerning first=45 second=377 amount=-3 +kerning first=45 second=378 amount=-4 +kerning first=45 second=379 amount=-3 +kerning first=45 second=380 amount=-4 +kerning first=45 second=381 amount=-3 +kerning first=45 second=382 amount=-4 +kerning first=212 second=8221 amount=-1 +kerning first=212 second=8220 amount=-1 +kerning first=212 second=8217 amount=-1 +kerning first=212 second=382 amount=-1 +kerning first=212 second=381 amount=-1 +kerning first=212 second=380 amount=-1 +kerning first=212 second=379 amount=-1 +kerning first=212 second=378 amount=-1 +kerning first=212 second=377 amount=-1 +kerning first=212 second=374 amount=-1 +kerning first=212 second=370 amount=-1 +kerning first=212 second=368 amount=-1 +kerning first=212 second=366 amount=-1 +kerning first=212 second=364 amount=-1 +kerning first=212 second=362 amount=-1 +kerning first=212 second=356 amount=-1 +kerning first=212 second=354 amount=-1 +kerning first=212 second=352 amount=-1 +kerning first=212 second=350 amount=-1 +kerning first=212 second=346 amount=-1 +kerning first=212 second=344 amount=-1 +kerning first=212 second=330 amount=-1 +kerning first=212 second=327 amount=-1 +kerning first=212 second=325 amount=-1 +kerning first=212 second=323 amount=-1 +kerning first=212 second=317 amount=-1 +kerning first=212 second=315 amount=-1 +kerning first=212 second=313 amount=-1 +kerning first=212 second=310 amount=-1 +kerning first=212 second=304 amount=-1 +kerning first=46 second=45 amount=-2 +kerning first=46 second=171 amount=-2 +kerning first=46 second=8217 amount=-4 +kerning first=46 second=8220 amount=-4 +kerning first=46 second=8221 amount=-4 +kerning first=46 second=8249 amount=-2 +kerning first=65 second=45 amount=-3 +kerning first=65 second=67 amount=-2 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-2 +kerning first=65 second=83 amount=-2 +kerning first=65 second=84 amount=-5 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-5 +kerning first=65 second=87 amount=-5 +kerning first=65 second=89 amount=-5 +kerning first=65 second=98 amount=-1 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-1 +kerning first=65 second=101 amount=-1 +kerning first=212 second=302 amount=-1 +kerning first=65 second=103 amount=-2 +kerning first=65 second=104 amount=-1 +kerning first=212 second=298 amount=-1 +kerning first=65 second=107 amount=-1 +kerning first=65 second=108 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-2 +kerning first=65 second=113 amount=-1 +kerning first=65 second=115 amount=-2 +kerning first=65 second=116 amount=-1 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=65 second=171 amount=-3 +kerning first=65 second=199 amount=-2 +kerning first=65 second=210 amount=-2 +kerning first=65 second=211 amount=-2 +kerning first=65 second=212 amount=-2 +kerning first=65 second=213 amount=-2 +kerning first=65 second=214 amount=-2 +kerning first=65 second=216 amount=-2 +kerning first=65 second=217 amount=-2 +kerning first=65 second=218 amount=-2 +kerning first=65 second=219 amount=-2 +kerning first=65 second=220 amount=-2 +kerning first=65 second=221 amount=-5 +kerning first=65 second=231 amount=-1 +kerning first=65 second=232 amount=-1 +kerning first=65 second=233 amount=-1 +kerning first=65 second=234 amount=-1 +kerning first=65 second=235 amount=-1 +kerning first=212 second=296 amount=-1 +kerning first=65 second=240 amount=-1 +kerning first=65 second=242 amount=-1 +kerning first=65 second=243 amount=-1 +kerning first=65 second=244 amount=-1 +kerning first=65 second=245 amount=-1 +kerning first=65 second=246 amount=-1 +kerning first=65 second=248 amount=-1 +kerning first=65 second=249 amount=-2 +kerning first=65 second=250 amount=-2 +kerning first=65 second=251 amount=-2 +kerning first=65 second=252 amount=-2 +kerning first=65 second=253 amount=-2 +kerning first=65 second=254 amount=-1 +kerning first=65 second=255 amount=-2 +kerning first=65 second=262 amount=-2 +kerning first=65 second=263 amount=-1 +kerning first=65 second=264 amount=-2 +kerning first=65 second=266 amount=-2 +kerning first=65 second=267 amount=-1 +kerning first=65 second=268 amount=-2 +kerning first=65 second=269 amount=-1 +kerning first=65 second=275 amount=-1 +kerning first=65 second=277 amount=-1 +kerning first=65 second=279 amount=-1 +kerning first=65 second=281 amount=-1 +kerning first=65 second=283 amount=-1 +kerning first=65 second=284 amount=-2 +kerning first=65 second=286 amount=-2 +kerning first=65 second=287 amount=-2 +kerning first=65 second=288 amount=-2 +kerning first=65 second=289 amount=-2 +kerning first=65 second=290 amount=-2 +kerning first=65 second=291 amount=-2 +kerning first=212 second=291 amount=-1 +kerning first=212 second=289 amount=-1 +kerning first=65 second=311 amount=-1 +kerning first=65 second=314 amount=-1 +kerning first=65 second=316 amount=-1 +kerning first=65 second=318 amount=-1 +kerning first=65 second=332 amount=-2 +kerning first=65 second=333 amount=-1 +kerning first=65 second=334 amount=-2 +kerning first=65 second=335 amount=-1 +kerning first=65 second=336 amount=-2 +kerning first=65 second=337 amount=-1 +kerning first=65 second=338 amount=-2 +kerning first=65 second=339 amount=-1 +kerning first=65 second=346 amount=-2 +kerning first=65 second=347 amount=-2 +kerning first=65 second=350 amount=-2 +kerning first=65 second=351 amount=-2 +kerning first=65 second=352 amount=-2 +kerning first=65 second=353 amount=-2 +kerning first=65 second=354 amount=-5 +kerning first=65 second=355 amount=-1 +kerning first=65 second=356 amount=-5 +kerning first=65 second=361 amount=-2 +kerning first=65 second=362 amount=-2 +kerning first=65 second=363 amount=-2 +kerning first=65 second=364 amount=-2 +kerning first=65 second=365 amount=-2 +kerning first=65 second=366 amount=-2 +kerning first=65 second=367 amount=-2 +kerning first=65 second=368 amount=-2 +kerning first=65 second=369 amount=-2 +kerning first=65 second=370 amount=-2 +kerning first=65 second=374 amount=-5 +kerning first=65 second=375 amount=-2 +kerning first=212 second=287 amount=-1 +kerning first=212 second=282 amount=-1 +kerning first=212 second=280 amount=-1 +kerning first=212 second=278 amount=-1 +kerning first=212 second=274 amount=-1 +kerning first=212 second=270 amount=-1 +kerning first=212 second=261 amount=-1 +kerning first=212 second=260 amount=-3 +kerning first=212 second=259 amount=-1 +kerning first=212 second=257 amount=-1 +kerning first=212 second=256 amount=-3 +kerning first=212 second=230 amount=-1 +kerning first=212 second=229 amount=-1 +kerning first=212 second=228 amount=-1 +kerning first=212 second=227 amount=-1 +kerning first=65 second=8217 amount=-4 +kerning first=65 second=8220 amount=-4 +kerning first=65 second=8221 amount=-4 +kerning first=65 second=8249 amount=-3 +kerning first=212 second=226 amount=-1 +kerning first=212 second=225 amount=-1 +kerning first=212 second=224 amount=-1 +kerning first=212 second=221 amount=-1 +kerning first=212 second=220 amount=-1 +kerning first=66 second=44 amount=-3 +kerning first=66 second=45 amount=-2 +kerning first=66 second=46 amount=-3 +kerning first=66 second=65 amount=-4 +kerning first=66 second=66 amount=-3 +kerning first=66 second=67 amount=-2 +kerning first=66 second=68 amount=-3 +kerning first=66 second=69 amount=-3 +kerning first=66 second=70 amount=-3 +kerning first=66 second=71 amount=-2 +kerning first=66 second=72 amount=-3 +kerning first=66 second=73 amount=-3 +kerning first=66 second=74 amount=-3 +kerning first=66 second=75 amount=-3 +kerning first=66 second=76 amount=-3 +kerning first=66 second=77 amount=-3 +kerning first=66 second=78 amount=-3 +kerning first=66 second=79 amount=-2 +kerning first=66 second=80 amount=-3 +kerning first=66 second=81 amount=-2 +kerning first=66 second=82 amount=-3 +kerning first=66 second=83 amount=-3 +kerning first=66 second=84 amount=-2 +kerning first=66 second=85 amount=-2 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=66 second=90 amount=-3 +kerning first=66 second=97 amount=-2 +kerning first=66 second=98 amount=-2 +kerning first=212 second=219 amount=-1 +kerning first=212 second=218 amount=-1 +kerning first=212 second=217 amount=-1 +kerning first=66 second=102 amount=-2 +kerning first=66 second=103 amount=-3 +kerning first=66 second=104 amount=-2 +kerning first=66 second=105 amount=-2 +kerning first=66 second=106 amount=-2 +kerning first=66 second=107 amount=-2 +kerning first=66 second=108 amount=-2 +kerning first=66 second=109 amount=-2 +kerning first=66 second=110 amount=-2 +kerning first=212 second=209 amount=-1 +kerning first=66 second=112 amount=-3 +kerning first=212 second=207 amount=-1 +kerning first=66 second=114 amount=-2 +kerning first=66 second=115 amount=-2 +kerning first=66 second=116 amount=-1 +kerning first=66 second=117 amount=-2 +kerning first=66 second=118 amount=-2 +kerning first=66 second=119 amount=-2 +kerning first=66 second=120 amount=-2 +kerning first=66 second=121 amount=-2 +kerning first=66 second=122 amount=-3 +kerning first=66 second=171 amount=-2 +kerning first=66 second=187 amount=-1 +kerning first=66 second=192 amount=-4 +kerning first=66 second=193 amount=-4 +kerning first=66 second=194 amount=-4 +kerning first=66 second=196 amount=-4 +kerning first=66 second=197 amount=-4 +kerning first=66 second=198 amount=-4 +kerning first=66 second=199 amount=-2 +kerning first=66 second=200 amount=-3 +kerning first=66 second=201 amount=-3 +kerning first=66 second=202 amount=-3 +kerning first=66 second=203 amount=-3 +kerning first=66 second=204 amount=-3 +kerning first=66 second=205 amount=-3 +kerning first=66 second=206 amount=-3 +kerning first=66 second=207 amount=-3 +kerning first=66 second=209 amount=-3 +kerning first=66 second=210 amount=-2 +kerning first=66 second=211 amount=-2 +kerning first=66 second=212 amount=-2 +kerning first=66 second=213 amount=-2 +kerning first=66 second=214 amount=-2 +kerning first=66 second=216 amount=-2 +kerning first=66 second=217 amount=-2 +kerning first=66 second=218 amount=-2 +kerning first=66 second=219 amount=-2 +kerning first=66 second=220 amount=-2 +kerning first=66 second=221 amount=-2 +kerning first=66 second=223 amount=-2 +kerning first=66 second=224 amount=-2 +kerning first=66 second=225 amount=-2 +kerning first=66 second=226 amount=-2 +kerning first=66 second=227 amount=-2 +kerning first=66 second=228 amount=-2 +kerning first=66 second=229 amount=-2 +kerning first=66 second=230 amount=-2 +kerning first=212 second=206 amount=-1 +kerning first=212 second=205 amount=-1 +kerning first=212 second=204 amount=-1 +kerning first=212 second=203 amount=-1 +kerning first=212 second=202 amount=-1 +kerning first=66 second=237 amount=-2 +kerning first=212 second=201 amount=-1 +kerning first=66 second=241 amount=-2 +kerning first=212 second=200 amount=-1 +kerning first=212 second=198 amount=-3 +kerning first=212 second=197 amount=-3 +kerning first=212 second=196 amount=-3 +kerning first=212 second=194 amount=-3 +kerning first=212 second=193 amount=-3 +kerning first=66 second=249 amount=-2 +kerning first=66 second=250 amount=-2 +kerning first=66 second=251 amount=-2 +kerning first=66 second=252 amount=-2 +kerning first=66 second=253 amount=-2 +kerning first=66 second=254 amount=-2 +kerning first=66 second=255 amount=-2 +kerning first=66 second=256 amount=-4 +kerning first=66 second=257 amount=-2 +kerning first=66 second=259 amount=-2 +kerning first=66 second=260 amount=-4 +kerning first=66 second=261 amount=-2 +kerning first=66 second=262 amount=-2 +kerning first=212 second=192 amount=-3 +kerning first=66 second=264 amount=-2 +kerning first=66 second=266 amount=-2 +kerning first=212 second=171 amount=-1 +kerning first=66 second=268 amount=-2 +kerning first=212 second=122 amount=-1 +kerning first=66 second=270 amount=-3 +kerning first=66 second=274 amount=-3 +kerning first=212 second=120 amount=-1 +kerning first=212 second=106 amount=-1 +kerning first=66 second=278 amount=-3 +kerning first=212 second=103 amount=-1 +kerning first=66 second=280 amount=-3 +kerning first=212 second=97 amount=-1 +kerning first=66 second=282 amount=-3 +kerning first=212 second=90 amount=-1 +kerning first=66 second=284 amount=-2 +kerning first=66 second=286 amount=-2 +kerning first=66 second=287 amount=-3 +kerning first=66 second=288 amount=-2 +kerning first=66 second=289 amount=-3 +kerning first=66 second=290 amount=-2 +kerning first=66 second=291 amount=-3 +kerning first=66 second=296 amount=-3 +kerning first=66 second=298 amount=-3 +kerning first=66 second=302 amount=-3 +kerning first=66 second=303 amount=-2 +kerning first=66 second=304 amount=-3 +kerning first=66 second=305 amount=-2 +kerning first=66 second=310 amount=-3 +kerning first=66 second=311 amount=-2 +kerning first=66 second=313 amount=-3 +kerning first=66 second=314 amount=-2 +kerning first=66 second=315 amount=-3 +kerning first=66 second=316 amount=-2 +kerning first=66 second=317 amount=-3 +kerning first=66 second=318 amount=-2 +kerning first=66 second=323 amount=-3 +kerning first=66 second=324 amount=-2 +kerning first=66 second=325 amount=-3 +kerning first=66 second=326 amount=-2 +kerning first=66 second=327 amount=-3 +kerning first=66 second=328 amount=-2 +kerning first=66 second=330 amount=-3 +kerning first=66 second=331 amount=-2 +kerning first=66 second=332 amount=-2 +kerning first=212 second=89 amount=-1 +kerning first=66 second=334 amount=-2 +kerning first=212 second=87 amount=-1 +kerning first=66 second=336 amount=-2 +kerning first=212 second=86 amount=-1 +kerning first=66 second=338 amount=-2 +kerning first=212 second=85 amount=-1 +kerning first=66 second=344 amount=-3 +kerning first=66 second=345 amount=-2 +kerning first=66 second=346 amount=-3 +kerning first=66 second=347 amount=-2 +kerning first=66 second=350 amount=-3 +kerning first=66 second=351 amount=-2 +kerning first=66 second=352 amount=-3 +kerning first=66 second=353 amount=-2 +kerning first=66 second=354 amount=-2 +kerning first=66 second=355 amount=-1 +kerning first=66 second=356 amount=-2 +kerning first=66 second=361 amount=-2 +kerning first=66 second=362 amount=-2 +kerning first=66 second=363 amount=-2 +kerning first=66 second=364 amount=-2 +kerning first=66 second=365 amount=-2 +kerning first=66 second=366 amount=-2 +kerning first=66 second=367 amount=-2 +kerning first=66 second=368 amount=-2 +kerning first=66 second=369 amount=-2 +kerning first=66 second=370 amount=-2 +kerning first=66 second=374 amount=-2 +kerning first=66 second=375 amount=-2 +kerning first=66 second=377 amount=-3 +kerning first=66 second=378 amount=-3 +kerning first=66 second=379 amount=-3 +kerning first=66 second=380 amount=-3 +kerning first=66 second=381 amount=-3 +kerning first=66 second=382 amount=-3 +kerning first=212 second=84 amount=-1 +kerning first=212 second=83 amount=-1 +kerning first=212 second=82 amount=-1 +kerning first=212 second=80 amount=-1 +kerning first=212 second=78 amount=-1 +kerning first=212 second=77 amount=-1 +kerning first=212 second=76 amount=-1 +kerning first=212 second=75 amount=-1 +kerning first=212 second=74 amount=-1 +kerning first=212 second=73 amount=-1 +kerning first=212 second=72 amount=-1 +kerning first=212 second=70 amount=-1 +kerning first=212 second=69 amount=-1 +kerning first=212 second=68 amount=-1 +kerning first=212 second=66 amount=-1 +kerning first=212 second=65 amount=-3 +kerning first=212 second=46 amount=-2 +kerning first=212 second=45 amount=-1 +kerning first=212 second=44 amount=-2 +kerning first=211 second=8249 amount=-1 +kerning first=211 second=8221 amount=-1 +kerning first=211 second=8220 amount=-1 +kerning first=211 second=8217 amount=-1 +kerning first=211 second=382 amount=-1 +kerning first=211 second=381 amount=-1 +kerning first=211 second=380 amount=-1 +kerning first=66 second=8217 amount=-3 +kerning first=66 second=8220 amount=-3 +kerning first=66 second=8221 amount=-3 +kerning first=66 second=8249 amount=-2 +kerning first=66 second=8250 amount=-1 +kerning first=211 second=379 amount=-1 +kerning first=211 second=378 amount=-1 +kerning first=211 second=377 amount=-1 +kerning first=211 second=374 amount=-1 +kerning first=211 second=370 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=67 second=45 amount=-3 +kerning first=67 second=46 amount=-1 +kerning first=67 second=65 amount=-2 +kerning first=67 second=66 amount=-2 +kerning first=67 second=67 amount=-2 +kerning first=67 second=68 amount=-2 +kerning first=67 second=69 amount=-2 +kerning first=67 second=70 amount=-2 +kerning first=67 second=71 amount=-2 +kerning first=67 second=72 amount=-2 +kerning first=67 second=73 amount=-2 +kerning first=67 second=74 amount=-1 +kerning first=67 second=75 amount=-2 +kerning first=67 second=76 amount=-2 +kerning first=67 second=77 amount=-2 +kerning first=67 second=78 amount=-2 +kerning first=67 second=79 amount=-2 +kerning first=67 second=80 amount=-2 +kerning first=67 second=81 amount=-2 +kerning first=67 second=82 amount=-2 +kerning first=67 second=83 amount=-2 +kerning first=67 second=84 amount=-1 +kerning first=67 second=85 amount=-1 +kerning first=67 second=86 amount=-1 +kerning first=67 second=87 amount=-1 +kerning first=67 second=89 amount=-1 +kerning first=67 second=90 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=98 amount=-1 +kerning first=67 second=99 amount=-1 +kerning first=67 second=100 amount=-1 +kerning first=67 second=101 amount=-1 +kerning first=67 second=102 amount=-1 +kerning first=67 second=103 amount=-2 +kerning first=67 second=104 amount=-1 +kerning first=67 second=105 amount=-1 +kerning first=67 second=106 amount=-1 +kerning first=67 second=107 amount=-1 +kerning first=67 second=108 amount=-1 +kerning first=67 second=109 amount=-1 +kerning first=67 second=110 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=67 second=112 amount=-2 +kerning first=67 second=113 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=115 amount=-1 +kerning first=67 second=117 amount=-1 +kerning first=67 second=118 amount=-1 +kerning first=67 second=119 amount=-1 +kerning first=211 second=368 amount=-1 +kerning first=67 second=122 amount=-2 +kerning first=67 second=171 amount=-3 +kerning first=67 second=192 amount=-2 +kerning first=67 second=193 amount=-2 +kerning first=67 second=194 amount=-2 +kerning first=67 second=196 amount=-2 +kerning first=67 second=197 amount=-2 +kerning first=67 second=198 amount=-2 +kerning first=67 second=199 amount=-2 +kerning first=67 second=200 amount=-2 +kerning first=67 second=201 amount=-2 +kerning first=67 second=202 amount=-2 +kerning first=67 second=203 amount=-2 +kerning first=67 second=204 amount=-2 +kerning first=67 second=205 amount=-2 +kerning first=67 second=206 amount=-2 +kerning first=67 second=207 amount=-2 +kerning first=67 second=209 amount=-2 +kerning first=67 second=210 amount=-2 +kerning first=67 second=211 amount=-2 +kerning first=67 second=212 amount=-2 +kerning first=67 second=213 amount=-2 +kerning first=67 second=214 amount=-2 +kerning first=67 second=216 amount=-2 +kerning first=67 second=217 amount=-1 +kerning first=67 second=218 amount=-1 +kerning first=67 second=219 amount=-1 +kerning first=67 second=220 amount=-1 +kerning first=67 second=221 amount=-1 +kerning first=67 second=223 amount=-1 +kerning first=67 second=224 amount=-1 +kerning first=67 second=225 amount=-1 +kerning first=67 second=226 amount=-1 +kerning first=67 second=227 amount=-1 +kerning first=67 second=228 amount=-1 +kerning first=67 second=229 amount=-1 +kerning first=67 second=230 amount=-1 +kerning first=67 second=231 amount=-1 +kerning first=67 second=232 amount=-1 +kerning first=67 second=233 amount=-1 +kerning first=67 second=234 amount=-1 +kerning first=67 second=235 amount=-1 +kerning first=67 second=237 amount=-1 +kerning first=67 second=240 amount=-1 +kerning first=67 second=241 amount=-1 +kerning first=67 second=242 amount=-1 +kerning first=67 second=243 amount=-1 +kerning first=67 second=244 amount=-1 +kerning first=67 second=245 amount=-1 +kerning first=67 second=246 amount=-1 +kerning first=67 second=248 amount=-1 +kerning first=67 second=249 amount=-1 +kerning first=67 second=250 amount=-1 +kerning first=67 second=251 amount=-1 +kerning first=67 second=252 amount=-1 +kerning first=211 second=366 amount=-1 +kerning first=67 second=254 amount=-1 +kerning first=211 second=364 amount=-1 +kerning first=67 second=256 amount=-2 +kerning first=67 second=257 amount=-1 +kerning first=67 second=259 amount=-1 +kerning first=67 second=260 amount=-2 +kerning first=67 second=261 amount=-1 +kerning first=67 second=262 amount=-2 +kerning first=67 second=263 amount=-1 +kerning first=67 second=264 amount=-2 +kerning first=67 second=266 amount=-2 +kerning first=67 second=267 amount=-1 +kerning first=67 second=268 amount=-2 +kerning first=67 second=269 amount=-1 +kerning first=67 second=270 amount=-2 +kerning first=67 second=274 amount=-2 +kerning first=67 second=275 amount=-1 +kerning first=67 second=277 amount=-1 +kerning first=67 second=278 amount=-2 +kerning first=67 second=279 amount=-1 +kerning first=67 second=280 amount=-2 +kerning first=67 second=281 amount=-1 +kerning first=67 second=282 amount=-2 +kerning first=67 second=283 amount=-1 +kerning first=67 second=284 amount=-2 +kerning first=67 second=286 amount=-2 +kerning first=67 second=287 amount=-2 +kerning first=67 second=288 amount=-2 +kerning first=67 second=289 amount=-2 +kerning first=67 second=290 amount=-2 +kerning first=67 second=291 amount=-2 +kerning first=67 second=296 amount=-2 +kerning first=67 second=298 amount=-2 +kerning first=67 second=302 amount=-2 +kerning first=67 second=303 amount=-1 +kerning first=67 second=304 amount=-2 +kerning first=67 second=305 amount=-1 +kerning first=67 second=310 amount=-2 +kerning first=67 second=311 amount=-1 +kerning first=67 second=313 amount=-2 +kerning first=67 second=314 amount=-1 +kerning first=67 second=315 amount=-2 +kerning first=67 second=316 amount=-1 +kerning first=67 second=317 amount=-2 +kerning first=67 second=318 amount=-1 +kerning first=67 second=323 amount=-2 +kerning first=67 second=324 amount=-1 +kerning first=67 second=325 amount=-2 +kerning first=67 second=326 amount=-1 +kerning first=67 second=327 amount=-2 +kerning first=67 second=328 amount=-1 +kerning first=67 second=330 amount=-2 +kerning first=67 second=331 amount=-1 +kerning first=67 second=332 amount=-2 +kerning first=67 second=333 amount=-1 +kerning first=67 second=334 amount=-2 +kerning first=67 second=335 amount=-1 +kerning first=67 second=336 amount=-2 +kerning first=67 second=337 amount=-1 +kerning first=67 second=338 amount=-2 +kerning first=67 second=339 amount=-1 +kerning first=67 second=344 amount=-2 +kerning first=67 second=345 amount=-1 +kerning first=67 second=346 amount=-2 +kerning first=67 second=347 amount=-1 +kerning first=67 second=350 amount=-2 +kerning first=67 second=351 amount=-1 +kerning first=67 second=352 amount=-2 +kerning first=67 second=353 amount=-1 +kerning first=67 second=354 amount=-1 +kerning first=67 second=356 amount=-1 +kerning first=67 second=361 amount=-1 +kerning first=67 second=362 amount=-1 +kerning first=67 second=363 amount=-1 +kerning first=67 second=364 amount=-1 +kerning first=67 second=365 amount=-1 +kerning first=67 second=366 amount=-1 +kerning first=67 second=367 amount=-1 +kerning first=67 second=368 amount=-1 +kerning first=67 second=369 amount=-1 +kerning first=67 second=370 amount=-1 +kerning first=67 second=374 amount=-1 +kerning first=211 second=362 amount=-1 +kerning first=67 second=377 amount=-1 +kerning first=67 second=378 amount=-2 +kerning first=67 second=379 amount=-1 +kerning first=67 second=380 amount=-2 +kerning first=67 second=381 amount=-1 +kerning first=67 second=382 amount=-2 +kerning first=211 second=356 amount=-1 +kerning first=211 second=354 amount=-1 +kerning first=211 second=352 amount=-1 +kerning first=211 second=350 amount=-1 +kerning first=211 second=346 amount=-1 +kerning first=211 second=344 amount=-1 +kerning first=211 second=330 amount=-1 +kerning first=211 second=327 amount=-1 +kerning first=211 second=325 amount=-1 +kerning first=211 second=323 amount=-1 +kerning first=211 second=317 amount=-1 +kerning first=211 second=315 amount=-1 +kerning first=211 second=313 amount=-1 +kerning first=211 second=310 amount=-1 +kerning first=211 second=304 amount=-1 +kerning first=211 second=302 amount=-1 +kerning first=211 second=298 amount=-1 +kerning first=211 second=296 amount=-1 +kerning first=211 second=291 amount=-1 +kerning first=211 second=289 amount=-1 +kerning first=211 second=287 amount=-1 +kerning first=211 second=282 amount=-1 +kerning first=211 second=280 amount=-1 +kerning first=211 second=278 amount=-1 +kerning first=67 second=8249 amount=-3 +kerning first=211 second=274 amount=-1 +kerning first=211 second=270 amount=-1 +kerning first=211 second=261 amount=-1 +kerning first=211 second=260 amount=-3 +kerning first=211 second=259 amount=-1 +kerning first=68 second=44 amount=-2 +kerning first=68 second=45 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=65 amount=-3 +kerning first=68 second=66 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=70 amount=-1 +kerning first=68 second=72 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=74 amount=-1 +kerning first=68 second=75 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=83 amount=-1 +kerning first=68 second=84 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-1 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-1 +kerning first=68 second=90 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=103 amount=-1 +kerning first=211 second=257 amount=-1 +kerning first=68 second=106 amount=-1 +kerning first=211 second=256 amount=-3 +kerning first=68 second=120 amount=-1 +kerning first=68 second=122 amount=-1 +kerning first=68 second=171 amount=-1 +kerning first=68 second=192 amount=-3 +kerning first=68 second=193 amount=-3 +kerning first=68 second=194 amount=-3 +kerning first=68 second=196 amount=-3 +kerning first=68 second=197 amount=-3 +kerning first=68 second=198 amount=-3 +kerning first=68 second=200 amount=-1 +kerning first=68 second=201 amount=-1 +kerning first=68 second=202 amount=-1 +kerning first=68 second=203 amount=-1 +kerning first=68 second=204 amount=-1 +kerning first=68 second=205 amount=-1 +kerning first=68 second=206 amount=-1 +kerning first=68 second=207 amount=-1 +kerning first=68 second=209 amount=-1 +kerning first=68 second=217 amount=-1 +kerning first=68 second=218 amount=-1 +kerning first=68 second=219 amount=-1 +kerning first=68 second=220 amount=-1 +kerning first=68 second=221 amount=-1 +kerning first=68 second=224 amount=-1 +kerning first=68 second=225 amount=-1 +kerning first=68 second=226 amount=-1 +kerning first=68 second=227 amount=-1 +kerning first=68 second=228 amount=-1 +kerning first=68 second=229 amount=-1 +kerning first=68 second=230 amount=-1 +kerning first=211 second=230 amount=-1 +kerning first=68 second=256 amount=-3 +kerning first=68 second=257 amount=-1 +kerning first=68 second=259 amount=-1 +kerning first=68 second=260 amount=-3 +kerning first=68 second=261 amount=-1 +kerning first=68 second=270 amount=-1 +kerning first=68 second=274 amount=-1 +kerning first=68 second=278 amount=-1 +kerning first=68 second=280 amount=-1 +kerning first=68 second=282 amount=-1 +kerning first=68 second=287 amount=-1 +kerning first=68 second=289 amount=-1 +kerning first=68 second=291 amount=-1 +kerning first=68 second=296 amount=-1 +kerning first=68 second=298 amount=-1 +kerning first=68 second=302 amount=-1 +kerning first=211 second=229 amount=-1 +kerning first=68 second=304 amount=-1 +kerning first=211 second=228 amount=-1 +kerning first=68 second=310 amount=-1 +kerning first=68 second=313 amount=-1 +kerning first=68 second=315 amount=-1 +kerning first=68 second=317 amount=-1 +kerning first=68 second=323 amount=-1 +kerning first=68 second=325 amount=-1 +kerning first=68 second=327 amount=-1 +kerning first=68 second=330 amount=-1 +kerning first=68 second=344 amount=-1 +kerning first=68 second=346 amount=-1 +kerning first=68 second=350 amount=-1 +kerning first=68 second=352 amount=-1 +kerning first=68 second=354 amount=-1 +kerning first=68 second=356 amount=-1 +kerning first=68 second=362 amount=-1 +kerning first=68 second=364 amount=-1 +kerning first=68 second=366 amount=-1 +kerning first=68 second=368 amount=-1 +kerning first=68 second=370 amount=-1 +kerning first=68 second=374 amount=-1 +kerning first=68 second=377 amount=-1 +kerning first=68 second=378 amount=-1 +kerning first=68 second=379 amount=-1 +kerning first=68 second=380 amount=-1 +kerning first=68 second=381 amount=-1 +kerning first=68 second=382 amount=-1 +kerning first=211 second=227 amount=-1 +kerning first=211 second=226 amount=-1 +kerning first=211 second=225 amount=-1 +kerning first=211 second=224 amount=-1 +kerning first=211 second=221 amount=-1 +kerning first=211 second=220 amount=-1 +kerning first=211 second=219 amount=-1 +kerning first=211 second=218 amount=-1 +kerning first=211 second=217 amount=-1 +kerning first=211 second=209 amount=-1 +kerning first=211 second=207 amount=-1 +kerning first=211 second=206 amount=-1 +kerning first=211 second=205 amount=-1 +kerning first=211 second=204 amount=-1 +kerning first=211 second=203 amount=-1 +kerning first=211 second=202 amount=-1 +kerning first=68 second=8217 amount=-1 +kerning first=68 second=8220 amount=-1 +kerning first=68 second=8221 amount=-1 +kerning first=68 second=8249 amount=-1 +kerning first=69 second=44 amount=-1 +kerning first=69 second=45 amount=-1 +kerning first=69 second=46 amount=-1 +kerning first=69 second=65 amount=-1 +kerning first=69 second=66 amount=-1 +kerning first=69 second=67 amount=-1 +kerning first=69 second=68 amount=-1 +kerning first=69 second=69 amount=-1 +kerning first=69 second=70 amount=-1 +kerning first=69 second=71 amount=-1 +kerning first=69 second=72 amount=-1 +kerning first=69 second=73 amount=-1 +kerning first=69 second=74 amount=-1 +kerning first=69 second=75 amount=-1 +kerning first=69 second=76 amount=-1 +kerning first=69 second=77 amount=-1 +kerning first=69 second=78 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=69 second=80 amount=-1 +kerning first=69 second=81 amount=-1 +kerning first=69 second=82 amount=-1 +kerning first=69 second=83 amount=-1 +kerning first=69 second=84 amount=-1 +kerning first=69 second=85 amount=-1 +kerning first=69 second=86 amount=-1 +kerning first=69 second=87 amount=-1 +kerning first=69 second=89 amount=-1 +kerning first=69 second=90 amount=-1 +kerning first=69 second=97 amount=-1 +kerning first=69 second=98 amount=-1 +kerning first=69 second=102 amount=-1 +kerning first=69 second=103 amount=-2 +kerning first=69 second=104 amount=-1 +kerning first=211 second=201 amount=-1 +kerning first=69 second=107 amount=-1 +kerning first=69 second=108 amount=-1 +kerning first=69 second=109 amount=-1 +kerning first=69 second=110 amount=-1 +kerning first=69 second=112 amount=-1 +kerning first=69 second=115 amount=-1 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=69 second=119 amount=-1 +kerning first=69 second=120 amount=-1 +kerning first=69 second=122 amount=-1 +kerning first=69 second=171 amount=-1 +kerning first=69 second=192 amount=-1 +kerning first=69 second=193 amount=-1 +kerning first=69 second=194 amount=-1 +kerning first=69 second=196 amount=-1 +kerning first=69 second=197 amount=-1 +kerning first=69 second=198 amount=-1 +kerning first=69 second=199 amount=-1 +kerning first=69 second=200 amount=-1 +kerning first=69 second=201 amount=-1 +kerning first=69 second=202 amount=-1 +kerning first=69 second=203 amount=-1 +kerning first=69 second=204 amount=-1 +kerning first=69 second=205 amount=-1 +kerning first=69 second=206 amount=-1 +kerning first=69 second=207 amount=-1 +kerning first=69 second=209 amount=-1 +kerning first=69 second=210 amount=-1 +kerning first=69 second=211 amount=-1 +kerning first=69 second=212 amount=-1 +kerning first=69 second=213 amount=-1 +kerning first=69 second=214 amount=-1 +kerning first=69 second=216 amount=-1 +kerning first=69 second=217 amount=-1 +kerning first=69 second=218 amount=-1 +kerning first=69 second=219 amount=-1 +kerning first=69 second=220 amount=-1 +kerning first=69 second=221 amount=-1 +kerning first=69 second=223 amount=-1 +kerning first=69 second=224 amount=-1 +kerning first=69 second=225 amount=-1 +kerning first=69 second=226 amount=-1 +kerning first=69 second=227 amount=-1 +kerning first=69 second=228 amount=-1 +kerning first=69 second=229 amount=-1 +kerning first=69 second=230 amount=-1 +kerning first=211 second=200 amount=-1 +kerning first=69 second=241 amount=-1 +kerning first=69 second=249 amount=-1 +kerning first=69 second=250 amount=-1 +kerning first=69 second=251 amount=-1 +kerning first=69 second=252 amount=-1 +kerning first=69 second=254 amount=-1 +kerning first=69 second=256 amount=-1 +kerning first=69 second=257 amount=-1 +kerning first=69 second=259 amount=-1 +kerning first=69 second=260 amount=-1 +kerning first=69 second=261 amount=-1 +kerning first=69 second=262 amount=-1 +kerning first=69 second=264 amount=-1 +kerning first=69 second=266 amount=-1 +kerning first=69 second=268 amount=-1 +kerning first=69 second=270 amount=-1 +kerning first=69 second=274 amount=-1 +kerning first=69 second=278 amount=-1 +kerning first=69 second=280 amount=-1 +kerning first=69 second=282 amount=-1 +kerning first=69 second=284 amount=-1 +kerning first=69 second=286 amount=-1 +kerning first=69 second=287 amount=-2 +kerning first=69 second=288 amount=-1 +kerning first=69 second=289 amount=-2 +kerning first=69 second=290 amount=-1 +kerning first=69 second=291 amount=-2 +kerning first=69 second=296 amount=-1 +kerning first=69 second=298 amount=-1 +kerning first=69 second=302 amount=-1 +kerning first=211 second=198 amount=-3 +kerning first=69 second=304 amount=-1 +kerning first=211 second=197 amount=-3 +kerning first=69 second=310 amount=-1 +kerning first=69 second=311 amount=-1 +kerning first=69 second=313 amount=-1 +kerning first=69 second=314 amount=-1 +kerning first=69 second=315 amount=-1 +kerning first=69 second=316 amount=-1 +kerning first=69 second=317 amount=-1 +kerning first=69 second=318 amount=-1 +kerning first=69 second=323 amount=-1 +kerning first=69 second=324 amount=-1 +kerning first=69 second=325 amount=-1 +kerning first=69 second=326 amount=-1 +kerning first=69 second=327 amount=-1 +kerning first=69 second=328 amount=-1 +kerning first=69 second=330 amount=-1 +kerning first=69 second=331 amount=-1 +kerning first=69 second=332 amount=-1 +kerning first=69 second=334 amount=-1 +kerning first=69 second=336 amount=-1 +kerning first=69 second=338 amount=-1 +kerning first=69 second=344 amount=-1 +kerning first=69 second=346 amount=-1 +kerning first=69 second=347 amount=-1 +kerning first=69 second=350 amount=-1 +kerning first=69 second=351 amount=-1 +kerning first=69 second=352 amount=-1 +kerning first=69 second=353 amount=-1 +kerning first=69 second=354 amount=-1 +kerning first=69 second=356 amount=-1 +kerning first=69 second=361 amount=-1 +kerning first=69 second=362 amount=-1 +kerning first=69 second=363 amount=-1 +kerning first=69 second=364 amount=-1 +kerning first=69 second=365 amount=-1 +kerning first=69 second=366 amount=-1 +kerning first=69 second=367 amount=-1 +kerning first=69 second=368 amount=-1 +kerning first=69 second=369 amount=-1 +kerning first=69 second=370 amount=-1 +kerning first=69 second=374 amount=-1 +kerning first=69 second=377 amount=-1 +kerning first=69 second=378 amount=-1 +kerning first=69 second=379 amount=-1 +kerning first=69 second=380 amount=-1 +kerning first=69 second=381 amount=-1 +kerning first=69 second=382 amount=-1 +kerning first=211 second=196 amount=-3 +kerning first=211 second=194 amount=-3 +kerning first=211 second=193 amount=-3 +kerning first=211 second=192 amount=-3 +kerning first=211 second=171 amount=-1 +kerning first=211 second=122 amount=-1 +kerning first=211 second=120 amount=-1 +kerning first=211 second=106 amount=-1 +kerning first=211 second=103 amount=-1 +kerning first=211 second=97 amount=-1 +kerning first=211 second=90 amount=-1 +kerning first=211 second=89 amount=-1 +kerning first=211 second=87 amount=-1 +kerning first=211 second=86 amount=-1 +kerning first=211 second=85 amount=-1 +kerning first=211 second=84 amount=-1 +kerning first=211 second=83 amount=-1 +kerning first=211 second=82 amount=-1 +kerning first=211 second=80 amount=-1 +kerning first=211 second=78 amount=-1 +kerning first=211 second=77 amount=-1 +kerning first=211 second=76 amount=-1 +kerning first=69 second=8249 amount=-1 +kerning first=211 second=75 amount=-1 +kerning first=211 second=74 amount=-1 +kerning first=211 second=73 amount=-1 +kerning first=211 second=72 amount=-1 +kerning first=211 second=70 amount=-1 +kerning first=70 second=44 amount=-2 +kerning first=70 second=45 amount=-2 +kerning first=70 second=46 amount=-2 +kerning first=70 second=65 amount=-2 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=74 amount=-3 +kerning first=70 second=79 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=70 second=83 amount=-2 +kerning first=70 second=97 amount=-1 +kerning first=70 second=99 amount=-1 +kerning first=70 second=100 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=102 amount=-1 +kerning first=70 second=103 amount=-2 +kerning first=211 second=69 amount=-1 +kerning first=211 second=68 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=211 second=66 amount=-1 +kerning first=70 second=113 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=118 amount=-1 +kerning first=70 second=119 amount=-1 +kerning first=70 second=120 amount=-1 +kerning first=70 second=122 amount=-1 +kerning first=70 second=171 amount=-2 +kerning first=70 second=192 amount=-2 +kerning first=70 second=193 amount=-2 +kerning first=70 second=194 amount=-2 +kerning first=70 second=196 amount=-2 +kerning first=70 second=197 amount=-2 +kerning first=70 second=198 amount=-2 +kerning first=70 second=199 amount=-1 +kerning first=70 second=210 amount=-1 +kerning first=70 second=211 amount=-1 +kerning first=70 second=212 amount=-1 +kerning first=70 second=213 amount=-1 +kerning first=70 second=214 amount=-1 +kerning first=70 second=216 amount=-1 +kerning first=211 second=65 amount=-3 +kerning first=70 second=224 amount=-1 +kerning first=70 second=225 amount=-1 +kerning first=70 second=226 amount=-1 +kerning first=70 second=227 amount=-1 +kerning first=70 second=228 amount=-1 +kerning first=70 second=229 amount=-1 +kerning first=70 second=230 amount=-1 +kerning first=70 second=231 amount=-1 +kerning first=211 second=46 amount=-2 +kerning first=70 second=233 amount=-1 +kerning first=70 second=234 amount=-1 +kerning first=211 second=45 amount=-1 +kerning first=70 second=240 amount=-1 +kerning first=211 second=44 amount=-2 +kerning first=210 second=8249 amount=-1 +kerning first=70 second=243 amount=-1 +kerning first=70 second=244 amount=-1 +kerning first=70 second=245 amount=-1 +kerning first=210 second=8221 amount=-1 +kerning first=70 second=248 amount=-1 +kerning first=70 second=250 amount=-1 +kerning first=70 second=251 amount=-1 +kerning first=70 second=256 amount=-2 +kerning first=70 second=257 amount=-1 +kerning first=70 second=259 amount=-1 +kerning first=70 second=260 amount=-2 +kerning first=70 second=261 amount=-1 +kerning first=70 second=262 amount=-1 +kerning first=70 second=263 amount=-1 +kerning first=70 second=264 amount=-1 +kerning first=70 second=266 amount=-1 +kerning first=70 second=267 amount=-1 +kerning first=70 second=268 amount=-1 +kerning first=70 second=269 amount=-1 +kerning first=70 second=275 amount=-1 +kerning first=70 second=277 amount=-1 +kerning first=70 second=279 amount=-1 +kerning first=70 second=281 amount=-1 +kerning first=70 second=283 amount=-1 +kerning first=70 second=284 amount=-1 +kerning first=70 second=286 amount=-1 +kerning first=70 second=287 amount=-2 +kerning first=70 second=288 amount=-1 +kerning first=70 second=289 amount=-2 +kerning first=70 second=290 amount=-1 +kerning first=70 second=291 amount=-2 +kerning first=210 second=8220 amount=-1 +kerning first=210 second=8217 amount=-1 +kerning first=210 second=382 amount=-1 +kerning first=210 second=381 amount=-1 +kerning first=70 second=332 amount=-1 +kerning first=70 second=333 amount=-1 +kerning first=70 second=334 amount=-1 +kerning first=70 second=335 amount=-1 +kerning first=70 second=336 amount=-1 +kerning first=70 second=337 amount=-1 +kerning first=70 second=338 amount=-1 +kerning first=70 second=339 amount=-1 +kerning first=70 second=346 amount=-2 +kerning first=70 second=347 amount=-1 +kerning first=70 second=350 amount=-2 +kerning first=70 second=351 amount=-1 +kerning first=70 second=352 amount=-2 +kerning first=70 second=353 amount=-1 +kerning first=70 second=361 amount=-1 +kerning first=70 second=363 amount=-1 +kerning first=70 second=365 amount=-1 +kerning first=70 second=367 amount=-1 +kerning first=70 second=369 amount=-1 +kerning first=70 second=378 amount=-1 +kerning first=70 second=380 amount=-1 +kerning first=70 second=382 amount=-1 +kerning first=210 second=380 amount=-1 +kerning first=210 second=379 amount=-1 +kerning first=210 second=378 amount=-1 +kerning first=210 second=377 amount=-1 +kerning first=210 second=374 amount=-1 +kerning first=210 second=370 amount=-1 +kerning first=210 second=368 amount=-1 +kerning first=210 second=366 amount=-1 +kerning first=210 second=364 amount=-1 +kerning first=210 second=362 amount=-1 +kerning first=70 second=8249 amount=-2 +kerning first=210 second=356 amount=-1 +kerning first=210 second=354 amount=-1 +kerning first=210 second=352 amount=-1 +kerning first=210 second=350 amount=-1 +kerning first=210 second=346 amount=-1 +kerning first=71 second=44 amount=-2 +kerning first=71 second=45 amount=-2 +kerning first=71 second=46 amount=-2 +kerning first=71 second=65 amount=-2 +kerning first=71 second=66 amount=-1 +kerning first=71 second=68 amount=-1 +kerning first=71 second=69 amount=-1 +kerning first=71 second=70 amount=-1 +kerning first=71 second=72 amount=-1 +kerning first=71 second=73 amount=-1 +kerning first=71 second=74 amount=-1 +kerning first=71 second=75 amount=-1 +kerning first=71 second=76 amount=-1 +kerning first=71 second=77 amount=-1 +kerning first=71 second=78 amount=-1 +kerning first=71 second=80 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=83 amount=-1 +kerning first=71 second=84 amount=-2 +kerning first=71 second=85 amount=-1 +kerning first=71 second=86 amount=-2 +kerning first=71 second=87 amount=-2 +kerning first=71 second=89 amount=-2 +kerning first=71 second=90 amount=-1 +kerning first=71 second=97 amount=-1 +kerning first=210 second=344 amount=-1 +kerning first=71 second=102 amount=-1 +kerning first=71 second=103 amount=-2 +kerning first=210 second=330 amount=-1 +kerning first=71 second=106 amount=-1 +kerning first=210 second=327 amount=-1 +kerning first=210 second=325 amount=-1 +kerning first=210 second=323 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=71 second=118 amount=-1 +kerning first=71 second=119 amount=-1 +kerning first=71 second=122 amount=-1 +kerning first=71 second=171 amount=-2 +kerning first=71 second=192 amount=-2 +kerning first=71 second=193 amount=-2 +kerning first=71 second=194 amount=-2 +kerning first=71 second=196 amount=-2 +kerning first=71 second=197 amount=-2 +kerning first=71 second=198 amount=-2 +kerning first=71 second=200 amount=-1 +kerning first=71 second=201 amount=-1 +kerning first=71 second=202 amount=-1 +kerning first=71 second=203 amount=-1 +kerning first=71 second=204 amount=-1 +kerning first=71 second=205 amount=-1 +kerning first=71 second=206 amount=-1 +kerning first=71 second=207 amount=-1 +kerning first=71 second=209 amount=-1 +kerning first=71 second=217 amount=-1 +kerning first=71 second=218 amount=-1 +kerning first=71 second=219 amount=-1 +kerning first=71 second=220 amount=-1 +kerning first=71 second=221 amount=-2 +kerning first=71 second=224 amount=-1 +kerning first=71 second=225 amount=-1 +kerning first=71 second=226 amount=-1 +kerning first=71 second=227 amount=-1 +kerning first=71 second=228 amount=-1 +kerning first=71 second=229 amount=-1 +kerning first=71 second=230 amount=-1 +kerning first=210 second=317 amount=-1 +kerning first=71 second=250 amount=-1 +kerning first=71 second=251 amount=-1 +kerning first=210 second=315 amount=-1 +kerning first=210 second=313 amount=-1 +kerning first=71 second=256 amount=-2 +kerning first=71 second=257 amount=-1 +kerning first=71 second=259 amount=-1 +kerning first=71 second=260 amount=-2 +kerning first=71 second=261 amount=-1 +kerning first=71 second=270 amount=-1 +kerning first=71 second=274 amount=-1 +kerning first=71 second=278 amount=-1 +kerning first=71 second=280 amount=-1 +kerning first=71 second=282 amount=-1 +kerning first=71 second=287 amount=-2 +kerning first=71 second=289 amount=-2 +kerning first=71 second=291 amount=-2 +kerning first=71 second=296 amount=-1 +kerning first=71 second=298 amount=-1 +kerning first=71 second=302 amount=-1 +kerning first=71 second=304 amount=-1 +kerning first=71 second=310 amount=-1 +kerning first=210 second=310 amount=-1 +kerning first=71 second=313 amount=-1 +kerning first=210 second=304 amount=-1 +kerning first=71 second=315 amount=-1 +kerning first=210 second=302 amount=-1 +kerning first=71 second=317 amount=-1 +kerning first=210 second=298 amount=-1 +kerning first=71 second=323 amount=-1 +kerning first=71 second=325 amount=-1 +kerning first=71 second=327 amount=-1 +kerning first=71 second=330 amount=-1 +kerning first=71 second=344 amount=-1 +kerning first=71 second=346 amount=-1 +kerning first=71 second=350 amount=-1 +kerning first=71 second=352 amount=-1 +kerning first=71 second=354 amount=-2 +kerning first=71 second=356 amount=-2 +kerning first=71 second=361 amount=-1 +kerning first=71 second=362 amount=-1 +kerning first=71 second=363 amount=-1 +kerning first=71 second=364 amount=-1 +kerning first=71 second=365 amount=-1 +kerning first=71 second=366 amount=-1 +kerning first=71 second=367 amount=-1 +kerning first=71 second=368 amount=-1 +kerning first=71 second=369 amount=-1 +kerning first=71 second=370 amount=-1 +kerning first=71 second=374 amount=-2 +kerning first=71 second=377 amount=-1 +kerning first=71 second=378 amount=-1 +kerning first=71 second=379 amount=-1 +kerning first=71 second=380 amount=-1 +kerning first=71 second=381 amount=-1 +kerning first=71 second=382 amount=-1 +kerning first=210 second=296 amount=-1 +kerning first=210 second=291 amount=-1 +kerning first=210 second=289 amount=-1 +kerning first=210 second=287 amount=-1 +kerning first=210 second=282 amount=-1 +kerning first=210 second=280 amount=-1 +kerning first=210 second=278 amount=-1 +kerning first=210 second=274 amount=-1 +kerning first=210 second=270 amount=-1 +kerning first=210 second=261 amount=-1 +kerning first=210 second=260 amount=-3 +kerning first=210 second=259 amount=-1 +kerning first=210 second=257 amount=-1 +kerning first=210 second=256 amount=-3 +kerning first=210 second=230 amount=-1 +kerning first=210 second=229 amount=-1 +kerning first=210 second=228 amount=-1 +kerning first=210 second=227 amount=-1 +kerning first=210 second=226 amount=-1 +kerning first=71 second=8217 amount=-1 +kerning first=71 second=8220 amount=-1 +kerning first=71 second=8221 amount=-1 +kerning first=71 second=8249 amount=-2 +kerning first=210 second=225 amount=-1 +kerning first=210 second=224 amount=-1 +kerning first=210 second=221 amount=-1 +kerning first=210 second=220 amount=-1 +kerning first=210 second=219 amount=-1 +kerning first=72 second=44 amount=-1 +kerning first=72 second=45 amount=-3 +kerning first=72 second=46 amount=-1 +kerning first=72 second=67 amount=-1 +kerning first=72 second=71 amount=-1 +kerning first=72 second=74 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=72 second=81 amount=-1 +kerning first=72 second=83 amount=-1 +kerning first=72 second=97 amount=-2 +kerning first=72 second=99 amount=-1 +kerning first=72 second=100 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=103 amount=-2 +kerning first=210 second=218 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=112 amount=-1 +kerning first=72 second=113 amount=-1 +kerning first=72 second=115 amount=-1 +kerning first=72 second=117 amount=-2 +kerning first=72 second=118 amount=-1 +kerning first=72 second=119 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=72 second=122 amount=-1 +kerning first=72 second=171 amount=-3 +kerning first=72 second=199 amount=-1 +kerning first=72 second=210 amount=-1 +kerning first=72 second=211 amount=-1 +kerning first=72 second=212 amount=-1 +kerning first=72 second=213 amount=-1 +kerning first=72 second=214 amount=-1 +kerning first=72 second=216 amount=-1 +kerning first=72 second=224 amount=-2 +kerning first=72 second=225 amount=-2 +kerning first=72 second=226 amount=-2 +kerning first=72 second=227 amount=-2 +kerning first=72 second=228 amount=-2 +kerning first=72 second=229 amount=-2 +kerning first=72 second=230 amount=-2 +kerning first=72 second=231 amount=-1 +kerning first=72 second=232 amount=-1 +kerning first=72 second=233 amount=-1 +kerning first=72 second=234 amount=-1 +kerning first=72 second=235 amount=-1 +kerning first=210 second=217 amount=-1 +kerning first=72 second=240 amount=-1 +kerning first=72 second=242 amount=-1 +kerning first=72 second=243 amount=-1 +kerning first=72 second=244 amount=-1 +kerning first=72 second=245 amount=-1 +kerning first=72 second=246 amount=-1 +kerning first=72 second=248 amount=-1 +kerning first=72 second=249 amount=-1 +kerning first=72 second=250 amount=-2 +kerning first=72 second=251 amount=-2 +kerning first=72 second=252 amount=-1 +kerning first=72 second=253 amount=-1 +kerning first=72 second=255 amount=-1 +kerning first=72 second=257 amount=-2 +kerning first=72 second=259 amount=-2 +kerning first=72 second=261 amount=-2 +kerning first=72 second=262 amount=-1 +kerning first=72 second=263 amount=-1 +kerning first=72 second=264 amount=-1 +kerning first=72 second=266 amount=-1 +kerning first=72 second=267 amount=-1 +kerning first=72 second=268 amount=-1 +kerning first=72 second=269 amount=-1 +kerning first=72 second=275 amount=-1 +kerning first=72 second=277 amount=-1 +kerning first=72 second=279 amount=-1 +kerning first=72 second=281 amount=-1 +kerning first=72 second=283 amount=-1 +kerning first=72 second=284 amount=-1 +kerning first=72 second=286 amount=-1 +kerning first=72 second=287 amount=-2 +kerning first=72 second=288 amount=-1 +kerning first=72 second=289 amount=-2 +kerning first=72 second=290 amount=-1 +kerning first=72 second=291 amount=-2 +kerning first=210 second=209 amount=-1 +kerning first=210 second=207 amount=-1 +kerning first=72 second=332 amount=-1 +kerning first=72 second=333 amount=-1 +kerning first=72 second=334 amount=-1 +kerning first=72 second=335 amount=-1 +kerning first=72 second=336 amount=-1 +kerning first=72 second=337 amount=-1 +kerning first=72 second=338 amount=-1 +kerning first=72 second=339 amount=-1 +kerning first=72 second=346 amount=-1 +kerning first=72 second=347 amount=-1 +kerning first=72 second=350 amount=-1 +kerning first=72 second=351 amount=-1 +kerning first=72 second=352 amount=-1 +kerning first=72 second=353 amount=-1 +kerning first=72 second=361 amount=-2 +kerning first=72 second=363 amount=-2 +kerning first=72 second=365 amount=-2 +kerning first=72 second=367 amount=-2 +kerning first=72 second=369 amount=-2 +kerning first=72 second=375 amount=-1 +kerning first=72 second=378 amount=-1 +kerning first=72 second=380 amount=-1 +kerning first=72 second=382 amount=-1 +kerning first=210 second=206 amount=-1 +kerning first=210 second=205 amount=-1 +kerning first=210 second=204 amount=-1 +kerning first=210 second=203 amount=-1 +kerning first=210 second=202 amount=-1 +kerning first=210 second=201 amount=-1 +kerning first=210 second=200 amount=-1 +kerning first=210 second=198 amount=-3 +kerning first=210 second=197 amount=-3 +kerning first=72 second=8249 amount=-3 +kerning first=73 second=44 amount=-1 +kerning first=73 second=45 amount=-3 +kerning first=73 second=46 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=73 second=81 amount=-1 +kerning first=73 second=83 amount=-1 +kerning first=73 second=97 amount=-2 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=101 amount=-1 +kerning first=73 second=103 amount=-2 +kerning first=210 second=196 amount=-3 +kerning first=73 second=111 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=115 amount=-1 +kerning first=73 second=117 amount=-2 +kerning first=73 second=118 amount=-1 +kerning first=73 second=119 amount=-1 +kerning first=73 second=121 amount=-1 +kerning first=73 second=122 amount=-1 +kerning first=73 second=171 amount=-3 +kerning first=73 second=199 amount=-1 +kerning first=73 second=210 amount=-1 +kerning first=73 second=211 amount=-1 +kerning first=73 second=212 amount=-1 +kerning first=73 second=213 amount=-1 +kerning first=73 second=214 amount=-1 +kerning first=73 second=216 amount=-1 +kerning first=73 second=224 amount=-2 +kerning first=73 second=225 amount=-2 +kerning first=73 second=226 amount=-2 +kerning first=73 second=227 amount=-2 +kerning first=73 second=228 amount=-2 +kerning first=73 second=229 amount=-2 +kerning first=73 second=230 amount=-2 +kerning first=73 second=231 amount=-1 +kerning first=73 second=232 amount=-1 +kerning first=73 second=233 amount=-1 +kerning first=73 second=234 amount=-1 +kerning first=73 second=235 amount=-1 +kerning first=210 second=194 amount=-3 +kerning first=73 second=240 amount=-1 +kerning first=73 second=242 amount=-1 +kerning first=73 second=243 amount=-1 +kerning first=73 second=244 amount=-1 +kerning first=73 second=245 amount=-1 +kerning first=73 second=246 amount=-1 +kerning first=73 second=248 amount=-1 +kerning first=73 second=249 amount=-1 +kerning first=73 second=250 amount=-2 +kerning first=73 second=251 amount=-2 +kerning first=73 second=252 amount=-1 +kerning first=73 second=253 amount=-1 +kerning first=73 second=255 amount=-1 +kerning first=73 second=257 amount=-2 +kerning first=73 second=259 amount=-2 +kerning first=73 second=261 amount=-2 +kerning first=73 second=262 amount=-1 +kerning first=73 second=263 amount=-1 +kerning first=73 second=264 amount=-1 +kerning first=73 second=266 amount=-1 +kerning first=73 second=267 amount=-1 +kerning first=73 second=268 amount=-1 +kerning first=73 second=269 amount=-1 +kerning first=73 second=275 amount=-1 +kerning first=73 second=277 amount=-1 +kerning first=73 second=279 amount=-1 +kerning first=73 second=281 amount=-1 +kerning first=73 second=283 amount=-1 +kerning first=73 second=284 amount=-1 +kerning first=73 second=286 amount=-1 +kerning first=73 second=287 amount=-2 +kerning first=73 second=288 amount=-1 +kerning first=73 second=289 amount=-2 +kerning first=73 second=290 amount=-1 +kerning first=73 second=291 amount=-2 +kerning first=210 second=193 amount=-3 +kerning first=210 second=192 amount=-3 +kerning first=73 second=332 amount=-1 +kerning first=73 second=333 amount=-1 +kerning first=73 second=334 amount=-1 +kerning first=73 second=335 amount=-1 +kerning first=73 second=336 amount=-1 +kerning first=73 second=337 amount=-1 +kerning first=73 second=338 amount=-1 +kerning first=73 second=339 amount=-1 +kerning first=73 second=346 amount=-1 +kerning first=73 second=347 amount=-1 +kerning first=73 second=350 amount=-1 +kerning first=73 second=351 amount=-1 +kerning first=73 second=352 amount=-1 +kerning first=73 second=353 amount=-1 +kerning first=73 second=361 amount=-2 +kerning first=73 second=363 amount=-2 +kerning first=73 second=365 amount=-2 +kerning first=73 second=367 amount=-2 +kerning first=73 second=369 amount=-2 +kerning first=73 second=375 amount=-1 +kerning first=73 second=378 amount=-1 +kerning first=73 second=380 amount=-1 +kerning first=73 second=382 amount=-1 +kerning first=210 second=171 amount=-1 +kerning first=210 second=122 amount=-1 +kerning first=210 second=120 amount=-1 +kerning first=210 second=106 amount=-1 +kerning first=210 second=103 amount=-1 +kerning first=210 second=97 amount=-1 +kerning first=210 second=90 amount=-1 +kerning first=210 second=89 amount=-1 +kerning first=210 second=87 amount=-1 +kerning first=73 second=8249 amount=-3 +kerning first=74 second=44 amount=-1 +kerning first=74 second=45 amount=-3 +kerning first=74 second=46 amount=-1 +kerning first=74 second=65 amount=-4 +kerning first=74 second=67 amount=-1 +kerning first=74 second=71 amount=-1 +kerning first=74 second=74 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=74 second=81 amount=-1 +kerning first=74 second=83 amount=-1 +kerning first=210 second=86 amount=-1 +kerning first=210 second=85 amount=-1 +kerning first=210 second=84 amount=-1 +kerning first=210 second=83 amount=-1 +kerning first=74 second=97 amount=-2 +kerning first=74 second=99 amount=-1 +kerning first=74 second=100 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=102 amount=-1 +kerning first=74 second=103 amount=-2 +kerning first=74 second=105 amount=-1 +kerning first=74 second=109 amount=-1 +kerning first=74 second=110 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=112 amount=-1 +kerning first=74 second=113 amount=-1 +kerning first=210 second=82 amount=-1 +kerning first=74 second=115 amount=-1 +kerning first=74 second=118 amount=-1 +kerning first=74 second=119 amount=-1 +kerning first=74 second=122 amount=-1 +kerning first=74 second=171 amount=-3 +kerning first=74 second=192 amount=-4 +kerning first=74 second=193 amount=-4 +kerning first=74 second=194 amount=-4 +kerning first=74 second=196 amount=-4 +kerning first=74 second=197 amount=-4 +kerning first=74 second=198 amount=-4 +kerning first=74 second=199 amount=-1 +kerning first=74 second=210 amount=-1 +kerning first=74 second=211 amount=-1 +kerning first=74 second=212 amount=-1 +kerning first=74 second=213 amount=-1 +kerning first=74 second=214 amount=-1 +kerning first=74 second=216 amount=-1 +kerning first=210 second=80 amount=-1 +kerning first=74 second=223 amount=-1 +kerning first=74 second=224 amount=-1 +kerning first=74 second=225 amount=-2 +kerning first=74 second=226 amount=-2 +kerning first=74 second=227 amount=-2 +kerning first=74 second=228 amount=-1 +kerning first=74 second=229 amount=-2 +kerning first=74 second=230 amount=-2 +kerning first=74 second=231 amount=-1 +kerning first=74 second=232 amount=-1 +kerning first=74 second=233 amount=-1 +kerning first=74 second=234 amount=-1 +kerning first=74 second=235 amount=-1 +kerning first=74 second=237 amount=-1 +kerning first=74 second=240 amount=-1 +kerning first=74 second=241 amount=-1 +kerning first=74 second=242 amount=-1 +kerning first=74 second=243 amount=-1 +kerning first=74 second=244 amount=-1 +kerning first=74 second=245 amount=-1 +kerning first=74 second=246 amount=-1 +kerning first=74 second=248 amount=-1 +kerning first=74 second=256 amount=-4 +kerning first=74 second=257 amount=-2 +kerning first=74 second=259 amount=-2 +kerning first=74 second=260 amount=-4 +kerning first=74 second=261 amount=-2 +kerning first=74 second=262 amount=-1 +kerning first=74 second=263 amount=-1 +kerning first=74 second=264 amount=-1 +kerning first=74 second=266 amount=-1 +kerning first=74 second=267 amount=-1 +kerning first=74 second=268 amount=-1 +kerning first=74 second=269 amount=-1 +kerning first=74 second=275 amount=-1 +kerning first=74 second=277 amount=-1 +kerning first=74 second=279 amount=-1 +kerning first=74 second=281 amount=-1 +kerning first=74 second=283 amount=-1 +kerning first=74 second=284 amount=-1 +kerning first=74 second=286 amount=-1 +kerning first=74 second=287 amount=-2 +kerning first=74 second=288 amount=-1 +kerning first=74 second=289 amount=-2 +kerning first=74 second=290 amount=-1 +kerning first=74 second=291 amount=-2 +kerning first=74 second=303 amount=-1 +kerning first=74 second=305 amount=-1 +kerning first=74 second=324 amount=-1 +kerning first=74 second=326 amount=-1 +kerning first=74 second=328 amount=-1 +kerning first=74 second=331 amount=-1 +kerning first=74 second=332 amount=-1 +kerning first=74 second=333 amount=-1 +kerning first=74 second=334 amount=-1 +kerning first=74 second=335 amount=-1 +kerning first=74 second=336 amount=-1 +kerning first=74 second=337 amount=-1 +kerning first=74 second=338 amount=-1 +kerning first=74 second=339 amount=-1 +kerning first=210 second=78 amount=-1 +kerning first=74 second=346 amount=-1 +kerning first=74 second=347 amount=-1 +kerning first=74 second=350 amount=-1 +kerning first=74 second=351 amount=-1 +kerning first=74 second=352 amount=-1 +kerning first=74 second=353 amount=-1 +kerning first=210 second=77 amount=-1 +kerning first=210 second=76 amount=-1 +kerning first=210 second=75 amount=-1 +kerning first=74 second=378 amount=-1 +kerning first=74 second=380 amount=-1 +kerning first=74 second=382 amount=-1 +kerning first=210 second=74 amount=-1 +kerning first=210 second=73 amount=-1 +kerning first=210 second=72 amount=-1 +kerning first=210 second=70 amount=-1 +kerning first=210 second=69 amount=-1 +kerning first=210 second=68 amount=-1 +kerning first=210 second=66 amount=-1 +kerning first=210 second=65 amount=-3 +kerning first=210 second=46 amount=-2 +kerning first=210 second=45 amount=-1 +kerning first=210 second=44 amount=-2 +kerning first=209 second=8249 amount=-3 +kerning first=209 second=382 amount=-1 +kerning first=74 second=8249 amount=-3 +kerning first=209 second=380 amount=-1 +kerning first=209 second=378 amount=-1 +kerning first=209 second=375 amount=-1 +kerning first=209 second=369 amount=-2 +kerning first=209 second=367 amount=-2 +kerning first=75 second=44 amount=-1 +kerning first=75 second=45 amount=-3 +kerning first=75 second=46 amount=-1 +kerning first=75 second=67 amount=-2 +kerning first=75 second=71 amount=-2 +kerning first=75 second=79 amount=-2 +kerning first=75 second=81 amount=-2 +kerning first=75 second=83 amount=-1 +kerning first=75 second=84 amount=-1 +kerning first=75 second=85 amount=-1 +kerning first=75 second=86 amount=-1 +kerning first=75 second=87 amount=-1 +kerning first=75 second=89 amount=-1 +kerning first=75 second=97 amount=-1 +kerning first=75 second=98 amount=-1 +kerning first=75 second=99 amount=-1 +kerning first=75 second=100 amount=-1 +kerning first=75 second=101 amount=-1 +kerning first=75 second=103 amount=-1 +kerning first=75 second=104 amount=-1 +kerning first=75 second=106 amount=-1 +kerning first=75 second=107 amount=-1 +kerning first=75 second=108 amount=-1 +kerning first=75 second=111 amount=-1 +kerning first=75 second=112 amount=-1 +kerning first=75 second=113 amount=-1 +kerning first=209 second=365 amount=-2 +kerning first=75 second=115 amount=-1 +kerning first=75 second=116 amount=-1 +kerning first=75 second=117 amount=-2 +kerning first=75 second=118 amount=-2 +kerning first=75 second=119 amount=-2 +kerning first=75 second=121 amount=-2 +kerning first=75 second=171 amount=-3 +kerning first=75 second=199 amount=-2 +kerning first=75 second=210 amount=-2 +kerning first=75 second=211 amount=-2 +kerning first=75 second=212 amount=-2 +kerning first=75 second=213 amount=-2 +kerning first=75 second=214 amount=-2 +kerning first=75 second=216 amount=-2 +kerning first=75 second=217 amount=-1 +kerning first=75 second=218 amount=-1 +kerning first=75 second=219 amount=-1 +kerning first=75 second=220 amount=-1 +kerning first=75 second=221 amount=-1 +kerning first=75 second=224 amount=-1 +kerning first=75 second=225 amount=-1 +kerning first=75 second=226 amount=-1 +kerning first=75 second=227 amount=-1 +kerning first=75 second=228 amount=-1 +kerning first=75 second=229 amount=-1 +kerning first=75 second=230 amount=-1 +kerning first=75 second=231 amount=-1 +kerning first=75 second=232 amount=-1 +kerning first=75 second=233 amount=-1 +kerning first=75 second=234 amount=-1 +kerning first=75 second=235 amount=-1 +kerning first=75 second=240 amount=-1 +kerning first=75 second=242 amount=-1 +kerning first=75 second=243 amount=-1 +kerning first=75 second=244 amount=-1 +kerning first=75 second=245 amount=-1 +kerning first=75 second=246 amount=-1 +kerning first=75 second=248 amount=-1 +kerning first=75 second=249 amount=-2 +kerning first=75 second=250 amount=-2 +kerning first=75 second=251 amount=-2 +kerning first=75 second=252 amount=-2 +kerning first=75 second=253 amount=-2 +kerning first=75 second=254 amount=-1 +kerning first=75 second=255 amount=-2 +kerning first=75 second=257 amount=-1 +kerning first=75 second=259 amount=-1 +kerning first=75 second=261 amount=-1 +kerning first=75 second=262 amount=-2 +kerning first=75 second=263 amount=-1 +kerning first=75 second=264 amount=-2 +kerning first=75 second=266 amount=-2 +kerning first=75 second=267 amount=-1 +kerning first=75 second=268 amount=-2 +kerning first=75 second=269 amount=-1 +kerning first=75 second=275 amount=-1 +kerning first=75 second=277 amount=-1 +kerning first=75 second=279 amount=-1 +kerning first=75 second=281 amount=-1 +kerning first=75 second=283 amount=-1 +kerning first=75 second=284 amount=-2 +kerning first=75 second=286 amount=-2 +kerning first=75 second=287 amount=-1 +kerning first=75 second=288 amount=-2 +kerning first=75 second=289 amount=-1 +kerning first=75 second=290 amount=-2 +kerning first=75 second=291 amount=-1 +kerning first=75 second=311 amount=-1 +kerning first=75 second=314 amount=-1 +kerning first=75 second=316 amount=-1 +kerning first=75 second=318 amount=-1 +kerning first=75 second=332 amount=-2 +kerning first=75 second=333 amount=-1 +kerning first=75 second=334 amount=-2 +kerning first=75 second=335 amount=-1 +kerning first=75 second=336 amount=-2 +kerning first=75 second=337 amount=-1 +kerning first=75 second=338 amount=-2 +kerning first=75 second=339 amount=-1 +kerning first=209 second=363 amount=-2 +kerning first=75 second=346 amount=-1 +kerning first=75 second=347 amount=-1 +kerning first=75 second=350 amount=-1 +kerning first=75 second=351 amount=-1 +kerning first=75 second=352 amount=-1 +kerning first=75 second=353 amount=-1 +kerning first=75 second=354 amount=-1 +kerning first=75 second=355 amount=-1 +kerning first=75 second=356 amount=-1 +kerning first=75 second=361 amount=-2 +kerning first=75 second=362 amount=-1 +kerning first=75 second=363 amount=-2 +kerning first=75 second=364 amount=-1 +kerning first=75 second=365 amount=-2 +kerning first=75 second=366 amount=-1 +kerning first=75 second=367 amount=-2 +kerning first=75 second=368 amount=-1 +kerning first=75 second=369 amount=-2 +kerning first=75 second=370 amount=-1 +kerning first=75 second=374 amount=-1 +kerning first=75 second=375 amount=-2 +kerning first=209 second=361 amount=-2 +kerning first=209 second=353 amount=-1 +kerning first=209 second=352 amount=-1 +kerning first=209 second=351 amount=-1 +kerning first=209 second=350 amount=-1 +kerning first=209 second=347 amount=-1 +kerning first=209 second=346 amount=-1 +kerning first=209 second=339 amount=-1 +kerning first=209 second=338 amount=-1 +kerning first=209 second=337 amount=-1 +kerning first=209 second=336 amount=-1 +kerning first=209 second=335 amount=-1 +kerning first=209 second=334 amount=-1 +kerning first=209 second=333 amount=-1 +kerning first=75 second=8217 amount=-1 +kerning first=75 second=8220 amount=-1 +kerning first=75 second=8221 amount=-1 +kerning first=75 second=8249 amount=-3 +kerning first=76 second=45 amount=-1 +kerning first=76 second=65 amount=-1 +kerning first=76 second=66 amount=-1 +kerning first=76 second=67 amount=-1 +kerning first=76 second=68 amount=-1 +kerning first=76 second=69 amount=-1 +kerning first=76 second=70 amount=-1 +kerning first=76 second=71 amount=-1 +kerning first=76 second=72 amount=-1 +kerning first=76 second=73 amount=-1 +kerning first=76 second=74 amount=-1 +kerning first=76 second=75 amount=-1 +kerning first=76 second=76 amount=-1 +kerning first=76 second=77 amount=-1 +kerning first=76 second=78 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=76 second=80 amount=-1 +kerning first=76 second=81 amount=-1 +kerning first=76 second=82 amount=-1 +kerning first=76 second=83 amount=-1 +kerning first=76 second=84 amount=-2 +kerning first=76 second=85 amount=-2 +kerning first=76 second=86 amount=-2 +kerning first=76 second=87 amount=-2 +kerning first=76 second=89 amount=-2 +kerning first=76 second=90 amount=-2 +kerning first=76 second=98 amount=-1 +kerning first=76 second=103 amount=-2 +kerning first=76 second=104 amount=-1 +kerning first=76 second=105 amount=-1 +kerning first=76 second=106 amount=-1 +kerning first=76 second=107 amount=-1 +kerning first=76 second=108 amount=-1 +kerning first=76 second=109 amount=-1 +kerning first=76 second=110 amount=-1 +kerning first=76 second=112 amount=-1 +kerning first=76 second=115 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=118 amount=-2 +kerning first=76 second=119 amount=-2 +kerning first=76 second=120 amount=-1 +kerning first=76 second=121 amount=-2 +kerning first=76 second=122 amount=-2 +kerning first=76 second=171 amount=-1 +kerning first=76 second=192 amount=-1 +kerning first=76 second=193 amount=-1 +kerning first=76 second=194 amount=-1 +kerning first=76 second=196 amount=-1 +kerning first=76 second=197 amount=-1 +kerning first=76 second=198 amount=-1 +kerning first=76 second=199 amount=-1 +kerning first=76 second=200 amount=-1 +kerning first=76 second=201 amount=-1 +kerning first=76 second=202 amount=-1 +kerning first=76 second=203 amount=-1 +kerning first=76 second=204 amount=-1 +kerning first=76 second=205 amount=-1 +kerning first=76 second=206 amount=-1 +kerning first=76 second=207 amount=-1 +kerning first=76 second=209 amount=-1 +kerning first=76 second=210 amount=-1 +kerning first=76 second=211 amount=-1 +kerning first=76 second=212 amount=-1 +kerning first=76 second=213 amount=-1 +kerning first=76 second=214 amount=-1 +kerning first=76 second=216 amount=-1 +kerning first=76 second=217 amount=-2 +kerning first=76 second=218 amount=-2 +kerning first=76 second=219 amount=-2 +kerning first=76 second=220 amount=-2 +kerning first=76 second=221 amount=-2 +kerning first=76 second=223 amount=-1 +kerning first=76 second=237 amount=-1 +kerning first=76 second=241 amount=-1 +kerning first=76 second=249 amount=-1 +kerning first=76 second=250 amount=-1 +kerning first=76 second=251 amount=-1 +kerning first=76 second=252 amount=-1 +kerning first=76 second=253 amount=-2 +kerning first=76 second=254 amount=-1 +kerning first=76 second=255 amount=-2 +kerning first=76 second=256 amount=-1 +kerning first=76 second=260 amount=-1 +kerning first=76 second=262 amount=-1 +kerning first=76 second=264 amount=-1 +kerning first=76 second=266 amount=-1 +kerning first=76 second=268 amount=-1 +kerning first=76 second=270 amount=-1 +kerning first=76 second=274 amount=-1 +kerning first=76 second=278 amount=-1 +kerning first=76 second=280 amount=-1 +kerning first=76 second=282 amount=-1 +kerning first=76 second=284 amount=-1 +kerning first=76 second=286 amount=-1 +kerning first=76 second=287 amount=-2 +kerning first=76 second=288 amount=-1 +kerning first=76 second=289 amount=-2 +kerning first=76 second=290 amount=-1 +kerning first=76 second=291 amount=-2 +kerning first=76 second=296 amount=-1 +kerning first=76 second=298 amount=-1 +kerning first=76 second=302 amount=-1 +kerning first=76 second=303 amount=-1 +kerning first=76 second=304 amount=-1 +kerning first=76 second=305 amount=-1 +kerning first=76 second=310 amount=-1 +kerning first=76 second=311 amount=-1 +kerning first=76 second=313 amount=-1 +kerning first=76 second=314 amount=-1 +kerning first=76 second=315 amount=-1 +kerning first=76 second=316 amount=-1 +kerning first=76 second=317 amount=-1 +kerning first=76 second=318 amount=-1 +kerning first=76 second=323 amount=-1 +kerning first=76 second=324 amount=-1 +kerning first=76 second=325 amount=-1 +kerning first=76 second=326 amount=-1 +kerning first=76 second=327 amount=-1 +kerning first=76 second=328 amount=-1 +kerning first=76 second=330 amount=-1 +kerning first=76 second=331 amount=-1 +kerning first=76 second=332 amount=-1 +kerning first=76 second=334 amount=-1 +kerning first=76 second=336 amount=-1 +kerning first=76 second=338 amount=-1 +kerning first=76 second=344 amount=-1 +kerning first=76 second=346 amount=-1 +kerning first=76 second=347 amount=-1 +kerning first=76 second=350 amount=-1 +kerning first=76 second=351 amount=-1 +kerning first=76 second=352 amount=-1 +kerning first=76 second=353 amount=-1 +kerning first=76 second=354 amount=-2 +kerning first=76 second=356 amount=-2 +kerning first=76 second=361 amount=-1 +kerning first=76 second=362 amount=-2 +kerning first=76 second=363 amount=-1 +kerning first=76 second=364 amount=-2 +kerning first=76 second=365 amount=-1 +kerning first=76 second=366 amount=-2 +kerning first=76 second=367 amount=-1 +kerning first=76 second=368 amount=-2 +kerning first=76 second=369 amount=-1 +kerning first=76 second=370 amount=-2 +kerning first=76 second=374 amount=-2 +kerning first=76 second=375 amount=-2 +kerning first=76 second=377 amount=-2 +kerning first=76 second=378 amount=-2 +kerning first=76 second=379 amount=-2 +kerning first=76 second=380 amount=-2 +kerning first=76 second=381 amount=-2 +kerning first=76 second=382 amount=-2 +kerning first=209 second=332 amount=-1 +kerning first=209 second=291 amount=-2 +kerning first=209 second=290 amount=-1 +kerning first=209 second=289 amount=-2 +kerning first=209 second=288 amount=-1 +kerning first=209 second=287 amount=-2 +kerning first=209 second=286 amount=-1 +kerning first=209 second=284 amount=-1 +kerning first=209 second=283 amount=-1 +kerning first=209 second=281 amount=-1 +kerning first=209 second=279 amount=-1 +kerning first=209 second=277 amount=-1 +kerning first=209 second=275 amount=-1 +kerning first=209 second=269 amount=-1 +kerning first=209 second=268 amount=-1 +kerning first=209 second=267 amount=-1 +kerning first=209 second=266 amount=-1 +kerning first=209 second=264 amount=-1 +kerning first=209 second=263 amount=-1 +kerning first=209 second=262 amount=-1 +kerning first=209 second=261 amount=-2 +kerning first=209 second=259 amount=-2 +kerning first=76 second=8217 amount=-3 +kerning first=76 second=8220 amount=-3 +kerning first=76 second=8221 amount=-3 +kerning first=76 second=8249 amount=-1 +kerning first=77 second=44 amount=-1 +kerning first=77 second=45 amount=-3 +kerning first=77 second=46 amount=-1 +kerning first=77 second=67 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=77 second=74 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=77 second=81 amount=-1 +kerning first=77 second=83 amount=-1 +kerning first=77 second=97 amount=-2 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=103 amount=-2 +kerning first=209 second=257 amount=-2 +kerning first=77 second=111 amount=-1 +kerning first=77 second=112 amount=-1 +kerning first=77 second=113 amount=-1 +kerning first=77 second=115 amount=-1 +kerning first=77 second=117 amount=-2 +kerning first=77 second=118 amount=-1 +kerning first=77 second=119 amount=-1 +kerning first=77 second=121 amount=-1 +kerning first=77 second=122 amount=-1 +kerning first=77 second=171 amount=-3 +kerning first=77 second=199 amount=-1 +kerning first=77 second=210 amount=-1 +kerning first=77 second=211 amount=-1 +kerning first=77 second=212 amount=-1 +kerning first=77 second=213 amount=-1 +kerning first=77 second=214 amount=-1 +kerning first=77 second=216 amount=-1 +kerning first=77 second=224 amount=-2 +kerning first=77 second=225 amount=-2 +kerning first=77 second=226 amount=-2 +kerning first=77 second=227 amount=-2 +kerning first=77 second=228 amount=-2 +kerning first=77 second=229 amount=-2 +kerning first=77 second=230 amount=-2 +kerning first=77 second=231 amount=-1 +kerning first=77 second=232 amount=-1 +kerning first=77 second=233 amount=-1 +kerning first=77 second=234 amount=-1 +kerning first=77 second=235 amount=-1 +kerning first=209 second=255 amount=-1 +kerning first=77 second=240 amount=-1 +kerning first=77 second=242 amount=-1 +kerning first=77 second=243 amount=-1 +kerning first=77 second=244 amount=-1 +kerning first=77 second=245 amount=-1 +kerning first=77 second=246 amount=-1 +kerning first=77 second=248 amount=-1 +kerning first=77 second=249 amount=-1 +kerning first=77 second=250 amount=-2 +kerning first=77 second=251 amount=-2 +kerning first=77 second=252 amount=-1 +kerning first=77 second=253 amount=-1 +kerning first=77 second=255 amount=-1 +kerning first=77 second=257 amount=-2 +kerning first=77 second=259 amount=-2 +kerning first=77 second=261 amount=-2 +kerning first=77 second=262 amount=-1 +kerning first=77 second=263 amount=-1 +kerning first=77 second=264 amount=-1 +kerning first=77 second=266 amount=-1 +kerning first=77 second=267 amount=-1 +kerning first=77 second=268 amount=-1 +kerning first=77 second=269 amount=-1 +kerning first=77 second=275 amount=-1 +kerning first=77 second=277 amount=-1 +kerning first=77 second=279 amount=-1 +kerning first=77 second=281 amount=-1 +kerning first=77 second=283 amount=-1 +kerning first=77 second=284 amount=-1 +kerning first=77 second=286 amount=-1 +kerning first=77 second=287 amount=-2 +kerning first=77 second=288 amount=-1 +kerning first=77 second=289 amount=-2 +kerning first=77 second=290 amount=-1 +kerning first=77 second=291 amount=-2 +kerning first=209 second=253 amount=-1 +kerning first=209 second=252 amount=-1 +kerning first=77 second=332 amount=-1 +kerning first=77 second=333 amount=-1 +kerning first=77 second=334 amount=-1 +kerning first=77 second=335 amount=-1 +kerning first=77 second=336 amount=-1 +kerning first=77 second=337 amount=-1 +kerning first=77 second=338 amount=-1 +kerning first=77 second=339 amount=-1 +kerning first=77 second=346 amount=-1 +kerning first=77 second=347 amount=-1 +kerning first=77 second=350 amount=-1 +kerning first=77 second=351 amount=-1 +kerning first=77 second=352 amount=-1 +kerning first=77 second=353 amount=-1 +kerning first=77 second=361 amount=-2 +kerning first=77 second=363 amount=-2 +kerning first=77 second=365 amount=-2 +kerning first=77 second=367 amount=-2 +kerning first=77 second=369 amount=-2 +kerning first=77 second=375 amount=-1 +kerning first=77 second=378 amount=-1 +kerning first=77 second=380 amount=-1 +kerning first=77 second=382 amount=-1 +kerning first=209 second=251 amount=-2 +kerning first=209 second=250 amount=-2 +kerning first=209 second=249 amount=-1 +kerning first=209 second=248 amount=-1 +kerning first=209 second=246 amount=-1 +kerning first=209 second=245 amount=-1 +kerning first=209 second=244 amount=-1 +kerning first=209 second=243 amount=-1 +kerning first=209 second=242 amount=-1 +kerning first=77 second=8249 amount=-3 +kerning first=78 second=44 amount=-1 +kerning first=78 second=45 amount=-3 +kerning first=78 second=46 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=74 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=78 second=81 amount=-1 +kerning first=78 second=83 amount=-1 +kerning first=78 second=97 amount=-2 +kerning first=78 second=99 amount=-1 +kerning first=78 second=100 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=103 amount=-2 +kerning first=209 second=240 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=112 amount=-1 +kerning first=78 second=113 amount=-1 +kerning first=78 second=115 amount=-1 +kerning first=78 second=117 amount=-2 +kerning first=78 second=118 amount=-1 +kerning first=78 second=119 amount=-1 +kerning first=78 second=121 amount=-1 +kerning first=78 second=122 amount=-1 +kerning first=78 second=171 amount=-3 +kerning first=78 second=199 amount=-1 +kerning first=78 second=210 amount=-1 +kerning first=78 second=211 amount=-1 +kerning first=78 second=212 amount=-1 +kerning first=78 second=213 amount=-1 +kerning first=78 second=214 amount=-1 +kerning first=78 second=216 amount=-1 +kerning first=78 second=224 amount=-2 +kerning first=78 second=225 amount=-2 +kerning first=78 second=226 amount=-2 +kerning first=78 second=227 amount=-2 +kerning first=78 second=228 amount=-2 +kerning first=78 second=229 amount=-2 +kerning first=78 second=230 amount=-2 +kerning first=78 second=231 amount=-1 +kerning first=78 second=232 amount=-1 +kerning first=78 second=233 amount=-1 +kerning first=78 second=234 amount=-1 +kerning first=78 second=235 amount=-1 +kerning first=209 second=235 amount=-1 +kerning first=78 second=240 amount=-1 +kerning first=78 second=242 amount=-1 +kerning first=78 second=243 amount=-1 +kerning first=78 second=244 amount=-1 +kerning first=78 second=245 amount=-1 +kerning first=78 second=246 amount=-1 +kerning first=78 second=248 amount=-1 +kerning first=78 second=249 amount=-1 +kerning first=78 second=250 amount=-2 +kerning first=78 second=251 amount=-2 +kerning first=78 second=252 amount=-1 +kerning first=78 second=253 amount=-1 +kerning first=78 second=255 amount=-1 +kerning first=78 second=257 amount=-2 +kerning first=78 second=259 amount=-2 +kerning first=78 second=261 amount=-2 +kerning first=78 second=262 amount=-1 +kerning first=78 second=263 amount=-1 +kerning first=78 second=264 amount=-1 +kerning first=78 second=266 amount=-1 +kerning first=78 second=267 amount=-1 +kerning first=78 second=268 amount=-1 +kerning first=78 second=269 amount=-1 +kerning first=78 second=275 amount=-1 +kerning first=78 second=277 amount=-1 +kerning first=78 second=279 amount=-1 +kerning first=78 second=281 amount=-1 +kerning first=78 second=283 amount=-1 +kerning first=78 second=284 amount=-1 +kerning first=78 second=286 amount=-1 +kerning first=78 second=287 amount=-2 +kerning first=78 second=288 amount=-1 +kerning first=78 second=289 amount=-2 +kerning first=78 second=290 amount=-1 +kerning first=78 second=291 amount=-2 +kerning first=209 second=234 amount=-1 +kerning first=209 second=233 amount=-1 +kerning first=78 second=332 amount=-1 +kerning first=78 second=333 amount=-1 +kerning first=78 second=334 amount=-1 +kerning first=78 second=335 amount=-1 +kerning first=78 second=336 amount=-1 +kerning first=78 second=337 amount=-1 +kerning first=78 second=338 amount=-1 +kerning first=78 second=339 amount=-1 +kerning first=78 second=346 amount=-1 +kerning first=78 second=347 amount=-1 +kerning first=78 second=350 amount=-1 +kerning first=78 second=351 amount=-1 +kerning first=78 second=352 amount=-1 +kerning first=78 second=353 amount=-1 +kerning first=78 second=361 amount=-2 +kerning first=78 second=363 amount=-2 +kerning first=78 second=365 amount=-2 +kerning first=78 second=367 amount=-2 +kerning first=78 second=369 amount=-2 +kerning first=78 second=375 amount=-1 +kerning first=78 second=378 amount=-1 +kerning first=78 second=380 amount=-1 +kerning first=78 second=382 amount=-1 +kerning first=209 second=232 amount=-1 +kerning first=209 second=231 amount=-1 +kerning first=209 second=230 amount=-2 +kerning first=209 second=229 amount=-2 +kerning first=209 second=228 amount=-2 +kerning first=209 second=227 amount=-2 +kerning first=209 second=226 amount=-2 +kerning first=209 second=225 amount=-2 +kerning first=209 second=224 amount=-2 +kerning first=78 second=8249 amount=-3 +kerning first=79 second=44 amount=-2 +kerning first=79 second=45 amount=-1 +kerning first=79 second=46 amount=-2 +kerning first=79 second=65 amount=-3 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=74 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=83 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=89 amount=-1 +kerning first=79 second=90 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=79 second=103 amount=-1 +kerning first=209 second=216 amount=-1 +kerning first=79 second=106 amount=-1 +kerning first=209 second=214 amount=-1 +kerning first=79 second=120 amount=-1 +kerning first=79 second=122 amount=-1 +kerning first=79 second=171 amount=-1 +kerning first=79 second=192 amount=-3 +kerning first=79 second=193 amount=-3 +kerning first=79 second=194 amount=-3 +kerning first=79 second=196 amount=-3 +kerning first=79 second=197 amount=-3 +kerning first=79 second=198 amount=-3 +kerning first=79 second=200 amount=-1 +kerning first=79 second=201 amount=-1 +kerning first=79 second=202 amount=-1 +kerning first=79 second=203 amount=-1 +kerning first=79 second=204 amount=-1 +kerning first=79 second=205 amount=-1 +kerning first=79 second=206 amount=-1 +kerning first=79 second=207 amount=-1 +kerning first=79 second=209 amount=-1 +kerning first=79 second=217 amount=-1 +kerning first=79 second=218 amount=-1 +kerning first=79 second=219 amount=-1 +kerning first=79 second=220 amount=-1 +kerning first=79 second=221 amount=-1 +kerning first=79 second=224 amount=-1 +kerning first=79 second=225 amount=-1 +kerning first=79 second=226 amount=-1 +kerning first=79 second=227 amount=-1 +kerning first=79 second=228 amount=-1 +kerning first=79 second=229 amount=-1 +kerning first=79 second=230 amount=-1 +kerning first=209 second=213 amount=-1 +kerning first=79 second=256 amount=-3 +kerning first=79 second=257 amount=-1 +kerning first=79 second=259 amount=-1 +kerning first=79 second=260 amount=-3 +kerning first=79 second=261 amount=-1 +kerning first=79 second=270 amount=-1 +kerning first=79 second=274 amount=-1 +kerning first=79 second=278 amount=-1 +kerning first=79 second=280 amount=-1 +kerning first=79 second=282 amount=-1 +kerning first=79 second=287 amount=-1 +kerning first=79 second=289 amount=-1 +kerning first=79 second=291 amount=-1 +kerning first=79 second=296 amount=-1 +kerning first=79 second=298 amount=-1 +kerning first=79 second=302 amount=-1 +kerning first=209 second=212 amount=-1 +kerning first=79 second=304 amount=-1 +kerning first=209 second=211 amount=-1 +kerning first=79 second=310 amount=-1 +kerning first=79 second=313 amount=-1 +kerning first=79 second=315 amount=-1 +kerning first=79 second=317 amount=-1 +kerning first=79 second=323 amount=-1 +kerning first=79 second=325 amount=-1 +kerning first=79 second=327 amount=-1 +kerning first=79 second=330 amount=-1 +kerning first=79 second=344 amount=-1 +kerning first=79 second=346 amount=-1 +kerning first=79 second=350 amount=-1 +kerning first=79 second=352 amount=-1 +kerning first=79 second=354 amount=-1 +kerning first=79 second=356 amount=-1 +kerning first=79 second=362 amount=-1 +kerning first=79 second=364 amount=-1 +kerning first=79 second=366 amount=-1 +kerning first=79 second=368 amount=-1 +kerning first=79 second=370 amount=-1 +kerning first=79 second=374 amount=-1 +kerning first=79 second=377 amount=-1 +kerning first=79 second=378 amount=-1 +kerning first=79 second=379 amount=-1 +kerning first=79 second=380 amount=-1 +kerning first=79 second=381 amount=-1 +kerning first=79 second=382 amount=-1 +kerning first=209 second=210 amount=-1 +kerning first=209 second=199 amount=-1 +kerning first=209 second=171 amount=-3 +kerning first=209 second=122 amount=-1 +kerning first=209 second=121 amount=-1 +kerning first=209 second=119 amount=-1 +kerning first=209 second=118 amount=-1 +kerning first=209 second=117 amount=-2 +kerning first=209 second=115 amount=-1 +kerning first=209 second=113 amount=-1 +kerning first=209 second=112 amount=-1 +kerning first=209 second=111 amount=-1 +kerning first=209 second=103 amount=-2 +kerning first=209 second=101 amount=-1 +kerning first=209 second=100 amount=-1 +kerning first=209 second=99 amount=-1 +kerning first=79 second=8217 amount=-1 +kerning first=79 second=8220 amount=-1 +kerning first=79 second=8221 amount=-1 +kerning first=79 second=8249 amount=-1 +kerning first=80 second=44 amount=-3 +kerning first=80 second=45 amount=-2 +kerning first=80 second=46 amount=-3 +kerning first=80 second=65 amount=-3 +kerning first=80 second=66 amount=-1 +kerning first=80 second=68 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=80 second=70 amount=-1 +kerning first=80 second=72 amount=-1 +kerning first=80 second=73 amount=-1 +kerning first=80 second=74 amount=-2 +kerning first=80 second=75 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=77 amount=-1 +kerning first=80 second=78 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=82 amount=-1 +kerning first=80 second=84 amount=-1 +kerning first=80 second=86 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=209 second=97 amount=-2 +kerning first=80 second=99 amount=-1 +kerning first=80 second=100 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=103 amount=-2 +kerning first=80 second=111 amount=-1 +kerning first=80 second=113 amount=-1 +kerning first=80 second=115 amount=-1 +kerning first=209 second=83 amount=-1 +kerning first=80 second=171 amount=-2 +kerning first=80 second=192 amount=-3 +kerning first=80 second=193 amount=-3 +kerning first=80 second=194 amount=-3 +kerning first=80 second=196 amount=-3 +kerning first=80 second=197 amount=-3 +kerning first=80 second=198 amount=-3 +kerning first=80 second=200 amount=-1 +kerning first=80 second=201 amount=-1 +kerning first=80 second=202 amount=-1 +kerning first=80 second=203 amount=-1 +kerning first=80 second=204 amount=-1 +kerning first=80 second=205 amount=-1 +kerning first=80 second=206 amount=-1 +kerning first=80 second=207 amount=-1 +kerning first=80 second=209 amount=-1 +kerning first=80 second=221 amount=-1 +kerning first=209 second=81 amount=-1 +kerning first=209 second=79 amount=-1 +kerning first=209 second=74 amount=-1 +kerning first=209 second=71 amount=-1 +kerning first=209 second=67 amount=-1 +kerning first=209 second=46 amount=-1 +kerning first=209 second=45 amount=-3 +kerning first=80 second=231 amount=-1 +kerning first=80 second=232 amount=-1 +kerning first=80 second=233 amount=-1 +kerning first=80 second=234 amount=-1 +kerning first=80 second=235 amount=-1 +kerning first=80 second=240 amount=-1 +kerning first=80 second=242 amount=-1 +kerning first=80 second=243 amount=-1 +kerning first=80 second=244 amount=-1 +kerning first=80 second=245 amount=-1 +kerning first=80 second=246 amount=-1 +kerning first=80 second=248 amount=-1 +kerning first=80 second=256 amount=-3 +kerning first=209 second=44 amount=-1 +kerning first=208 second=8249 amount=-1 +kerning first=80 second=260 amount=-3 +kerning first=208 second=8221 amount=-1 +kerning first=80 second=263 amount=-1 +kerning first=80 second=267 amount=-1 +kerning first=80 second=269 amount=-1 +kerning first=80 second=270 amount=-1 +kerning first=80 second=274 amount=-1 +kerning first=80 second=275 amount=-1 +kerning first=80 second=277 amount=-1 +kerning first=80 second=278 amount=-1 +kerning first=80 second=279 amount=-1 +kerning first=80 second=280 amount=-1 +kerning first=80 second=281 amount=-1 +kerning first=80 second=282 amount=-1 +kerning first=80 second=283 amount=-1 +kerning first=80 second=287 amount=-2 +kerning first=80 second=289 amount=-2 +kerning first=80 second=291 amount=-2 +kerning first=80 second=296 amount=-1 +kerning first=80 second=298 amount=-1 +kerning first=80 second=302 amount=-1 +kerning first=80 second=304 amount=-1 +kerning first=80 second=310 amount=-1 +kerning first=80 second=313 amount=-1 +kerning first=80 second=315 amount=-1 +kerning first=80 second=317 amount=-1 +kerning first=80 second=323 amount=-1 +kerning first=80 second=325 amount=-1 +kerning first=80 second=327 amount=-1 +kerning first=80 second=330 amount=-1 +kerning first=80 second=333 amount=-1 +kerning first=80 second=335 amount=-1 +kerning first=80 second=337 amount=-1 +kerning first=80 second=339 amount=-1 +kerning first=80 second=344 amount=-1 +kerning first=80 second=347 amount=-1 +kerning first=80 second=351 amount=-1 +kerning first=80 second=353 amount=-1 +kerning first=80 second=354 amount=-1 +kerning first=80 second=356 amount=-1 +kerning first=80 second=374 amount=-1 +kerning first=208 second=8220 amount=-1 +kerning first=208 second=8217 amount=-1 +kerning first=208 second=382 amount=-1 +kerning first=208 second=381 amount=-1 +kerning first=208 second=380 amount=-1 +kerning first=208 second=379 amount=-1 +kerning first=208 second=378 amount=-1 +kerning first=208 second=377 amount=-1 +kerning first=208 second=374 amount=-1 +kerning first=208 second=370 amount=-1 +kerning first=208 second=368 amount=-1 +kerning first=208 second=366 amount=-1 +kerning first=208 second=364 amount=-1 +kerning first=208 second=362 amount=-1 +kerning first=208 second=356 amount=-1 +kerning first=80 second=8249 amount=-2 +kerning first=81 second=44 amount=-2 +kerning first=81 second=45 amount=-1 +kerning first=81 second=46 amount=-2 +kerning first=81 second=65 amount=-3 +kerning first=81 second=66 amount=-1 +kerning first=81 second=68 amount=-1 +kerning first=81 second=69 amount=-1 +kerning first=81 second=70 amount=-1 +kerning first=81 second=72 amount=-1 +kerning first=81 second=73 amount=-1 +kerning first=81 second=74 amount=-1 +kerning first=81 second=75 amount=-1 +kerning first=81 second=76 amount=-1 +kerning first=81 second=77 amount=-1 +kerning first=81 second=78 amount=-1 +kerning first=81 second=80 amount=-1 +kerning first=81 second=82 amount=-1 +kerning first=81 second=83 amount=-1 +kerning first=81 second=84 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=81 second=86 amount=-1 +kerning first=81 second=87 amount=-1 +kerning first=81 second=89 amount=-1 +kerning first=81 second=90 amount=-1 +kerning first=81 second=97 amount=-1 +kerning first=81 second=103 amount=-1 +kerning first=208 second=354 amount=-1 +kerning first=81 second=106 amount=-1 +kerning first=208 second=352 amount=-1 +kerning first=81 second=120 amount=-1 +kerning first=81 second=122 amount=-1 +kerning first=81 second=171 amount=-1 +kerning first=81 second=192 amount=-3 +kerning first=81 second=193 amount=-3 +kerning first=81 second=194 amount=-3 +kerning first=81 second=196 amount=-3 +kerning first=81 second=197 amount=-3 +kerning first=81 second=198 amount=-3 +kerning first=81 second=200 amount=-1 +kerning first=81 second=201 amount=-1 +kerning first=81 second=202 amount=-1 +kerning first=81 second=203 amount=-1 +kerning first=81 second=204 amount=-1 +kerning first=81 second=205 amount=-1 +kerning first=81 second=206 amount=-1 +kerning first=81 second=207 amount=-1 +kerning first=81 second=209 amount=-1 +kerning first=81 second=217 amount=-1 +kerning first=81 second=218 amount=-1 +kerning first=81 second=219 amount=-1 +kerning first=81 second=220 amount=-1 +kerning first=81 second=221 amount=-1 +kerning first=81 second=224 amount=-1 +kerning first=81 second=225 amount=-1 +kerning first=81 second=226 amount=-1 +kerning first=81 second=227 amount=-1 +kerning first=81 second=228 amount=-1 +kerning first=81 second=229 amount=-1 +kerning first=81 second=230 amount=-1 +kerning first=208 second=350 amount=-1 +kerning first=81 second=256 amount=-3 +kerning first=81 second=257 amount=-1 +kerning first=81 second=259 amount=-1 +kerning first=81 second=260 amount=-3 +kerning first=81 second=261 amount=-1 +kerning first=81 second=270 amount=-1 +kerning first=81 second=274 amount=-1 +kerning first=81 second=278 amount=-1 +kerning first=81 second=280 amount=-1 +kerning first=81 second=282 amount=-1 +kerning first=81 second=287 amount=-1 +kerning first=81 second=289 amount=-1 +kerning first=81 second=291 amount=-1 +kerning first=81 second=296 amount=-1 +kerning first=81 second=298 amount=-1 +kerning first=81 second=302 amount=-1 +kerning first=208 second=346 amount=-1 +kerning first=81 second=304 amount=-1 +kerning first=208 second=344 amount=-1 +kerning first=81 second=310 amount=-1 +kerning first=81 second=313 amount=-1 +kerning first=81 second=315 amount=-1 +kerning first=81 second=317 amount=-1 +kerning first=81 second=323 amount=-1 +kerning first=81 second=325 amount=-1 +kerning first=81 second=327 amount=-1 +kerning first=81 second=330 amount=-1 +kerning first=81 second=344 amount=-1 +kerning first=81 second=346 amount=-1 +kerning first=81 second=350 amount=-1 +kerning first=81 second=352 amount=-1 +kerning first=81 second=354 amount=-1 +kerning first=81 second=356 amount=-1 +kerning first=81 second=362 amount=-1 +kerning first=81 second=364 amount=-1 +kerning first=81 second=366 amount=-1 +kerning first=81 second=368 amount=-1 +kerning first=81 second=370 amount=-1 +kerning first=81 second=374 amount=-1 +kerning first=81 second=377 amount=-1 +kerning first=81 second=378 amount=-1 +kerning first=81 second=379 amount=-1 +kerning first=81 second=380 amount=-1 +kerning first=81 second=381 amount=-1 +kerning first=81 second=382 amount=-1 +kerning first=208 second=330 amount=-1 +kerning first=208 second=327 amount=-1 +kerning first=208 second=325 amount=-1 +kerning first=208 second=323 amount=-1 +kerning first=208 second=317 amount=-1 +kerning first=208 second=315 amount=-1 +kerning first=208 second=313 amount=-1 +kerning first=208 second=310 amount=-1 +kerning first=208 second=304 amount=-1 +kerning first=208 second=302 amount=-1 +kerning first=208 second=298 amount=-1 +kerning first=208 second=296 amount=-1 +kerning first=208 second=291 amount=-1 +kerning first=208 second=289 amount=-1 +kerning first=208 second=287 amount=-1 +kerning first=208 second=282 amount=-1 +kerning first=81 second=8217 amount=-1 +kerning first=81 second=8220 amount=-1 +kerning first=81 second=8221 amount=-1 +kerning first=81 second=8249 amount=-1 +kerning first=82 second=44 amount=-1 +kerning first=82 second=45 amount=-3 +kerning first=82 second=46 amount=-1 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-2 +kerning first=82 second=79 amount=-2 +kerning first=82 second=81 amount=-2 +kerning first=82 second=83 amount=-2 +kerning first=82 second=84 amount=-2 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-2 +kerning first=82 second=87 amount=-2 +kerning first=82 second=89 amount=-2 +kerning first=82 second=97 amount=-1 +kerning first=82 second=98 amount=-2 +kerning first=82 second=99 amount=-2 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-2 +kerning first=82 second=103 amount=-2 +kerning first=82 second=104 amount=-2 +kerning first=208 second=280 amount=-1 +kerning first=82 second=106 amount=-1 +kerning first=82 second=107 amount=-2 +kerning first=82 second=108 amount=-2 +kerning first=82 second=111 amount=-2 +kerning first=82 second=112 amount=-1 +kerning first=82 second=113 amount=-2 +kerning first=82 second=115 amount=-1 +kerning first=82 second=116 amount=-2 +kerning first=82 second=117 amount=-1 +kerning first=82 second=118 amount=-2 +kerning first=82 second=119 amount=-2 +kerning first=82 second=121 amount=-2 +kerning first=82 second=171 amount=-3 +kerning first=82 second=199 amount=-2 +kerning first=82 second=210 amount=-2 +kerning first=82 second=211 amount=-2 +kerning first=82 second=212 amount=-2 +kerning first=82 second=213 amount=-2 +kerning first=82 second=214 amount=-2 +kerning first=82 second=216 amount=-2 +kerning first=82 second=217 amount=-2 +kerning first=82 second=218 amount=-2 +kerning first=82 second=219 amount=-2 +kerning first=82 second=220 amount=-2 +kerning first=82 second=221 amount=-2 +kerning first=82 second=224 amount=-1 +kerning first=82 second=225 amount=-1 +kerning first=82 second=226 amount=-1 +kerning first=82 second=227 amount=-1 +kerning first=82 second=228 amount=-1 +kerning first=82 second=229 amount=-1 +kerning first=82 second=230 amount=-1 +kerning first=82 second=231 amount=-2 +kerning first=82 second=232 amount=-2 +kerning first=82 second=233 amount=-2 +kerning first=82 second=234 amount=-2 +kerning first=82 second=235 amount=-2 +kerning first=208 second=278 amount=-1 +kerning first=82 second=240 amount=-2 +kerning first=82 second=242 amount=-2 +kerning first=82 second=243 amount=-2 +kerning first=82 second=244 amount=-2 +kerning first=82 second=245 amount=-2 +kerning first=82 second=246 amount=-2 +kerning first=82 second=248 amount=-2 +kerning first=82 second=249 amount=-1 +kerning first=82 second=250 amount=-1 +kerning first=82 second=251 amount=-1 +kerning first=82 second=252 amount=-1 +kerning first=82 second=253 amount=-2 +kerning first=82 second=254 amount=-2 +kerning first=82 second=255 amount=-2 +kerning first=82 second=257 amount=-1 +kerning first=82 second=259 amount=-1 +kerning first=82 second=261 amount=-1 +kerning first=82 second=262 amount=-2 +kerning first=82 second=263 amount=-2 +kerning first=82 second=264 amount=-2 +kerning first=82 second=266 amount=-2 +kerning first=82 second=267 amount=-2 +kerning first=82 second=268 amount=-2 +kerning first=82 second=269 amount=-2 +kerning first=82 second=275 amount=-2 +kerning first=82 second=277 amount=-2 +kerning first=82 second=279 amount=-2 +kerning first=82 second=281 amount=-2 +kerning first=82 second=283 amount=-2 +kerning first=82 second=284 amount=-2 +kerning first=82 second=286 amount=-2 +kerning first=82 second=287 amount=-2 +kerning first=82 second=288 amount=-2 +kerning first=82 second=289 amount=-2 +kerning first=82 second=290 amount=-2 +kerning first=82 second=291 amount=-2 +kerning first=208 second=274 amount=-1 +kerning first=208 second=270 amount=-1 +kerning first=82 second=311 amount=-2 +kerning first=82 second=314 amount=-2 +kerning first=82 second=316 amount=-2 +kerning first=82 second=318 amount=-2 +kerning first=82 second=332 amount=-2 +kerning first=82 second=333 amount=-2 +kerning first=82 second=334 amount=-2 +kerning first=82 second=335 amount=-2 +kerning first=82 second=336 amount=-2 +kerning first=82 second=337 amount=-2 +kerning first=82 second=338 amount=-2 +kerning first=82 second=339 amount=-2 +kerning first=82 second=346 amount=-2 +kerning first=82 second=347 amount=-1 +kerning first=82 second=350 amount=-2 +kerning first=82 second=351 amount=-1 +kerning first=82 second=352 amount=-2 +kerning first=82 second=353 amount=-1 +kerning first=82 second=354 amount=-2 +kerning first=82 second=355 amount=-2 +kerning first=82 second=356 amount=-2 +kerning first=82 second=361 amount=-1 +kerning first=82 second=362 amount=-2 +kerning first=82 second=363 amount=-1 +kerning first=82 second=364 amount=-2 +kerning first=82 second=365 amount=-1 +kerning first=82 second=366 amount=-2 +kerning first=82 second=367 amount=-1 +kerning first=82 second=368 amount=-2 +kerning first=82 second=369 amount=-1 +kerning first=82 second=370 amount=-2 +kerning first=82 second=374 amount=-2 +kerning first=82 second=375 amount=-2 +kerning first=208 second=261 amount=-1 +kerning first=208 second=260 amount=-3 +kerning first=208 second=259 amount=-1 +kerning first=208 second=257 amount=-1 +kerning first=208 second=256 amount=-3 +kerning first=208 second=230 amount=-1 +kerning first=208 second=229 amount=-1 +kerning first=208 second=228 amount=-1 +kerning first=208 second=227 amount=-1 +kerning first=208 second=226 amount=-1 +kerning first=208 second=225 amount=-1 +kerning first=208 second=224 amount=-1 +kerning first=208 second=221 amount=-1 +kerning first=208 second=220 amount=-1 +kerning first=82 second=8217 amount=-4 +kerning first=82 second=8220 amount=-4 +kerning first=82 second=8221 amount=-4 +kerning first=82 second=8249 amount=-3 +kerning first=83 second=44 amount=-3 +kerning first=83 second=45 amount=-2 +kerning first=83 second=46 amount=-3 +kerning first=83 second=65 amount=-3 +kerning first=83 second=66 amount=-2 +kerning first=83 second=68 amount=-2 +kerning first=83 second=69 amount=-2 +kerning first=83 second=70 amount=-2 +kerning first=83 second=72 amount=-2 +kerning first=83 second=73 amount=-2 +kerning first=83 second=74 amount=-1 +kerning first=83 second=75 amount=-2 +kerning first=83 second=76 amount=-2 +kerning first=83 second=77 amount=-2 +kerning first=83 second=78 amount=-2 +kerning first=83 second=80 amount=-2 +kerning first=83 second=82 amount=-2 +kerning first=83 second=83 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-2 +kerning first=83 second=86 amount=-2 +kerning first=83 second=87 amount=-2 +kerning first=83 second=89 amount=-2 +kerning first=83 second=90 amount=-1 +kerning first=83 second=97 amount=-1 +kerning first=83 second=98 amount=-1 +kerning first=208 second=219 amount=-1 +kerning first=208 second=218 amount=-1 +kerning first=208 second=217 amount=-1 +kerning first=83 second=102 amount=-2 +kerning first=83 second=103 amount=-2 +kerning first=83 second=104 amount=-1 +kerning first=83 second=105 amount=-2 +kerning first=83 second=106 amount=-1 +kerning first=83 second=107 amount=-1 +kerning first=83 second=108 amount=-1 +kerning first=83 second=109 amount=-1 +kerning first=83 second=110 amount=-1 +kerning first=208 second=209 amount=-1 +kerning first=83 second=112 amount=-2 +kerning first=208 second=207 amount=-1 +kerning first=83 second=114 amount=-1 +kerning first=83 second=115 amount=-1 +kerning first=83 second=116 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=118 amount=-2 +kerning first=83 second=119 amount=-2 +kerning first=83 second=120 amount=-2 +kerning first=83 second=121 amount=-1 +kerning first=83 second=122 amount=-1 +kerning first=83 second=171 amount=-2 +kerning first=83 second=187 amount=-1 +kerning first=83 second=192 amount=-3 +kerning first=83 second=193 amount=-3 +kerning first=83 second=194 amount=-3 +kerning first=83 second=196 amount=-3 +kerning first=83 second=197 amount=-3 +kerning first=83 second=198 amount=-3 +kerning first=83 second=200 amount=-2 +kerning first=83 second=201 amount=-2 +kerning first=83 second=202 amount=-2 +kerning first=83 second=203 amount=-2 +kerning first=83 second=204 amount=-2 +kerning first=83 second=205 amount=-2 +kerning first=83 second=206 amount=-2 +kerning first=83 second=207 amount=-2 +kerning first=83 second=209 amount=-2 +kerning first=83 second=217 amount=-2 +kerning first=83 second=218 amount=-2 +kerning first=83 second=219 amount=-2 +kerning first=83 second=220 amount=-2 +kerning first=83 second=221 amount=-2 +kerning first=83 second=223 amount=-1 +kerning first=83 second=224 amount=-1 +kerning first=83 second=225 amount=-1 +kerning first=83 second=226 amount=-1 +kerning first=83 second=227 amount=-1 +kerning first=83 second=228 amount=-1 +kerning first=83 second=229 amount=-1 +kerning first=83 second=230 amount=-1 +kerning first=208 second=206 amount=-1 +kerning first=208 second=205 amount=-1 +kerning first=208 second=204 amount=-1 +kerning first=208 second=203 amount=-1 +kerning first=208 second=202 amount=-1 +kerning first=83 second=237 amount=-2 +kerning first=208 second=201 amount=-1 +kerning first=83 second=241 amount=-1 +kerning first=208 second=200 amount=-1 +kerning first=208 second=198 amount=-3 +kerning first=208 second=197 amount=-3 +kerning first=208 second=196 amount=-3 +kerning first=208 second=194 amount=-3 +kerning first=208 second=193 amount=-3 +kerning first=83 second=249 amount=-1 +kerning first=83 second=250 amount=-1 +kerning first=83 second=251 amount=-1 +kerning first=83 second=252 amount=-1 +kerning first=83 second=253 amount=-1 +kerning first=83 second=254 amount=-1 +kerning first=83 second=255 amount=-1 +kerning first=83 second=256 amount=-3 +kerning first=83 second=257 amount=-1 +kerning first=83 second=259 amount=-1 +kerning first=83 second=260 amount=-3 +kerning first=83 second=261 amount=-1 +kerning first=208 second=192 amount=-3 +kerning first=208 second=171 amount=-1 +kerning first=208 second=122 amount=-1 +kerning first=83 second=270 amount=-2 +kerning first=83 second=274 amount=-2 +kerning first=208 second=120 amount=-1 +kerning first=208 second=106 amount=-1 +kerning first=83 second=278 amount=-2 +kerning first=208 second=103 amount=-1 +kerning first=83 second=280 amount=-2 +kerning first=208 second=97 amount=-1 +kerning first=83 second=282 amount=-2 +kerning first=208 second=90 amount=-1 +kerning first=83 second=287 amount=-2 +kerning first=83 second=289 amount=-2 +kerning first=83 second=291 amount=-2 +kerning first=83 second=296 amount=-2 +kerning first=83 second=298 amount=-2 +kerning first=83 second=302 amount=-2 +kerning first=83 second=303 amount=-2 +kerning first=83 second=304 amount=-2 +kerning first=83 second=305 amount=-2 +kerning first=83 second=310 amount=-2 +kerning first=83 second=311 amount=-1 +kerning first=83 second=313 amount=-2 +kerning first=83 second=314 amount=-1 +kerning first=83 second=315 amount=-2 +kerning first=83 second=316 amount=-1 +kerning first=83 second=317 amount=-2 +kerning first=83 second=318 amount=-1 +kerning first=83 second=323 amount=-2 +kerning first=83 second=324 amount=-1 +kerning first=83 second=325 amount=-2 +kerning first=83 second=326 amount=-1 +kerning first=83 second=327 amount=-2 +kerning first=83 second=328 amount=-1 +kerning first=83 second=330 amount=-2 +kerning first=83 second=331 amount=-1 +kerning first=208 second=89 amount=-1 +kerning first=208 second=87 amount=-1 +kerning first=208 second=86 amount=-1 +kerning first=208 second=85 amount=-1 +kerning first=83 second=344 amount=-2 +kerning first=83 second=345 amount=-1 +kerning first=83 second=346 amount=-1 +kerning first=83 second=347 amount=-1 +kerning first=83 second=350 amount=-1 +kerning first=83 second=351 amount=-1 +kerning first=83 second=352 amount=-1 +kerning first=83 second=353 amount=-1 +kerning first=83 second=354 amount=-2 +kerning first=83 second=355 amount=-1 +kerning first=83 second=356 amount=-2 +kerning first=83 second=361 amount=-1 +kerning first=83 second=362 amount=-2 +kerning first=83 second=363 amount=-1 +kerning first=83 second=364 amount=-2 +kerning first=83 second=365 amount=-1 +kerning first=83 second=366 amount=-2 +kerning first=83 second=367 amount=-1 +kerning first=83 second=368 amount=-2 +kerning first=83 second=369 amount=-1 +kerning first=83 second=370 amount=-2 +kerning first=83 second=374 amount=-2 +kerning first=83 second=375 amount=-1 +kerning first=83 second=377 amount=-1 +kerning first=83 second=378 amount=-1 +kerning first=83 second=379 amount=-1 +kerning first=83 second=380 amount=-1 +kerning first=83 second=381 amount=-1 +kerning first=83 second=382 amount=-1 +kerning first=208 second=84 amount=-1 +kerning first=208 second=83 amount=-1 +kerning first=208 second=82 amount=-1 +kerning first=208 second=80 amount=-1 +kerning first=208 second=78 amount=-1 +kerning first=208 second=77 amount=-1 +kerning first=208 second=76 amount=-1 +kerning first=208 second=75 amount=-1 +kerning first=208 second=74 amount=-1 +kerning first=208 second=73 amount=-1 +kerning first=208 second=72 amount=-1 +kerning first=208 second=70 amount=-1 +kerning first=208 second=69 amount=-1 +kerning first=208 second=68 amount=-1 +kerning first=208 second=66 amount=-1 +kerning first=208 second=65 amount=-3 +kerning first=208 second=46 amount=-2 +kerning first=208 second=45 amount=-1 +kerning first=208 second=44 amount=-2 +kerning first=207 second=382 amount=-1 +kerning first=207 second=380 amount=-1 +kerning first=207 second=378 amount=-1 +kerning first=207 second=375 amount=-1 +kerning first=207 second=369 amount=-2 +kerning first=207 second=367 amount=-2 +kerning first=207 second=365 amount=-2 +kerning first=83 second=8217 amount=-1 +kerning first=83 second=8220 amount=-1 +kerning first=83 second=8221 amount=-1 +kerning first=83 second=8249 amount=-2 +kerning first=83 second=8250 amount=-1 +kerning first=207 second=363 amount=-2 +kerning first=207 second=361 amount=-2 +kerning first=207 second=353 amount=-1 +kerning first=207 second=352 amount=-1 +kerning first=207 second=351 amount=-1 +kerning first=84 second=44 amount=-4 +kerning first=84 second=45 amount=-4 +kerning first=84 second=46 amount=-4 +kerning first=84 second=65 amount=-5 +kerning first=84 second=66 amount=-1 +kerning first=84 second=67 amount=-2 +kerning first=84 second=68 amount=-1 +kerning first=84 second=69 amount=-1 +kerning first=84 second=70 amount=-1 +kerning first=84 second=71 amount=-2 +kerning first=84 second=72 amount=-1 +kerning first=84 second=73 amount=-1 +kerning first=84 second=74 amount=-3 +kerning first=84 second=75 amount=-1 +kerning first=84 second=76 amount=-1 +kerning first=84 second=77 amount=-1 +kerning first=84 second=78 amount=-1 +kerning first=84 second=79 amount=-2 +kerning first=84 second=80 amount=-1 +kerning first=84 second=81 amount=-2 +kerning first=84 second=82 amount=-1 +kerning first=84 second=83 amount=-2 +kerning first=84 second=85 amount=-1 +kerning first=84 second=90 amount=-2 +kerning first=84 second=97 amount=-4 +kerning first=84 second=99 amount=-2 +kerning first=84 second=100 amount=-2 +kerning first=84 second=101 amount=-2 +kerning first=84 second=102 amount=-1 +kerning first=84 second=103 amount=-3 +kerning first=84 second=105 amount=-1 +kerning first=84 second=109 amount=-2 +kerning first=84 second=110 amount=-2 +kerning first=84 second=111 amount=-2 +kerning first=84 second=112 amount=-1 +kerning first=84 second=113 amount=-2 +kerning first=84 second=114 amount=-1 +kerning first=84 second=115 amount=-2 +kerning first=84 second=116 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=84 second=118 amount=-2 +kerning first=84 second=119 amount=-2 +kerning first=84 second=120 amount=-1 +kerning first=84 second=121 amount=-2 +kerning first=84 second=122 amount=-2 +kerning first=84 second=171 amount=-4 +kerning first=84 second=187 amount=-2 +kerning first=84 second=192 amount=-5 +kerning first=84 second=193 amount=-5 +kerning first=84 second=194 amount=-5 +kerning first=84 second=196 amount=-5 +kerning first=84 second=197 amount=-5 +kerning first=84 second=198 amount=-5 +kerning first=84 second=199 amount=-2 +kerning first=84 second=200 amount=-1 +kerning first=84 second=201 amount=-1 +kerning first=84 second=202 amount=-1 +kerning first=84 second=203 amount=-1 +kerning first=84 second=204 amount=-1 +kerning first=84 second=205 amount=-1 +kerning first=84 second=206 amount=-1 +kerning first=84 second=207 amount=-1 +kerning first=84 second=209 amount=-1 +kerning first=84 second=210 amount=-2 +kerning first=84 second=211 amount=-2 +kerning first=84 second=212 amount=-2 +kerning first=84 second=213 amount=-2 +kerning first=84 second=214 amount=-2 +kerning first=84 second=216 amount=-2 +kerning first=84 second=217 amount=-1 +kerning first=84 second=218 amount=-1 +kerning first=84 second=219 amount=-1 +kerning first=84 second=220 amount=-1 +kerning first=84 second=223 amount=-2 +kerning first=84 second=224 amount=-3 +kerning first=84 second=225 amount=-4 +kerning first=84 second=226 amount=-4 +kerning first=84 second=227 amount=-4 +kerning first=84 second=228 amount=-3 +kerning first=84 second=229 amount=-4 +kerning first=84 second=230 amount=-4 +kerning first=84 second=231 amount=-2 +kerning first=84 second=232 amount=-2 +kerning first=84 second=233 amount=-2 +kerning first=84 second=234 amount=-2 +kerning first=84 second=235 amount=-2 +kerning first=84 second=237 amount=-1 +kerning first=84 second=240 amount=-2 +kerning first=84 second=241 amount=-2 +kerning first=84 second=242 amount=-2 +kerning first=84 second=243 amount=-2 +kerning first=84 second=244 amount=-2 +kerning first=84 second=245 amount=-2 +kerning first=84 second=246 amount=-2 +kerning first=84 second=248 amount=-2 +kerning first=84 second=249 amount=-1 +kerning first=84 second=250 amount=-1 +kerning first=84 second=251 amount=-1 +kerning first=84 second=252 amount=-1 +kerning first=84 second=253 amount=-2 +kerning first=84 second=255 amount=-2 +kerning first=84 second=256 amount=-5 +kerning first=84 second=257 amount=-4 +kerning first=84 second=259 amount=-4 +kerning first=84 second=260 amount=-5 +kerning first=84 second=261 amount=-4 +kerning first=84 second=262 amount=-2 +kerning first=84 second=263 amount=-2 +kerning first=84 second=264 amount=-2 +kerning first=84 second=266 amount=-2 +kerning first=84 second=267 amount=-2 +kerning first=84 second=268 amount=-2 +kerning first=84 second=269 amount=-2 +kerning first=84 second=270 amount=-1 +kerning first=84 second=274 amount=-1 +kerning first=84 second=275 amount=-2 +kerning first=84 second=277 amount=-2 +kerning first=84 second=278 amount=-1 +kerning first=84 second=279 amount=-2 +kerning first=84 second=280 amount=-1 +kerning first=84 second=281 amount=-2 +kerning first=84 second=282 amount=-1 +kerning first=84 second=283 amount=-2 +kerning first=84 second=284 amount=-2 +kerning first=84 second=286 amount=-2 +kerning first=84 second=287 amount=-3 +kerning first=84 second=288 amount=-2 +kerning first=84 second=289 amount=-3 +kerning first=84 second=290 amount=-2 +kerning first=84 second=291 amount=-3 +kerning first=84 second=296 amount=-1 +kerning first=84 second=298 amount=-1 +kerning first=84 second=302 amount=-1 +kerning first=84 second=303 amount=-1 +kerning first=84 second=304 amount=-1 +kerning first=84 second=305 amount=-1 +kerning first=84 second=310 amount=-1 +kerning first=84 second=313 amount=-1 +kerning first=84 second=315 amount=-1 +kerning first=84 second=317 amount=-1 +kerning first=84 second=323 amount=-1 +kerning first=84 second=324 amount=-2 +kerning first=84 second=325 amount=-1 +kerning first=84 second=326 amount=-2 +kerning first=84 second=327 amount=-1 +kerning first=84 second=328 amount=-2 +kerning first=84 second=330 amount=-1 +kerning first=84 second=331 amount=-2 +kerning first=84 second=332 amount=-2 +kerning first=84 second=333 amount=-2 +kerning first=84 second=334 amount=-2 +kerning first=84 second=335 amount=-2 +kerning first=84 second=336 amount=-2 +kerning first=84 second=337 amount=-2 +kerning first=84 second=338 amount=-2 +kerning first=84 second=339 amount=-2 +kerning first=84 second=344 amount=-1 +kerning first=84 second=345 amount=-1 +kerning first=84 second=346 amount=-2 +kerning first=84 second=347 amount=-2 +kerning first=84 second=350 amount=-2 +kerning first=84 second=351 amount=-2 +kerning first=84 second=352 amount=-2 +kerning first=84 second=353 amount=-2 +kerning first=84 second=355 amount=-1 +kerning first=84 second=361 amount=-1 +kerning first=84 second=362 amount=-1 +kerning first=84 second=363 amount=-1 +kerning first=84 second=364 amount=-1 +kerning first=84 second=365 amount=-1 +kerning first=84 second=366 amount=-1 +kerning first=84 second=367 amount=-1 +kerning first=84 second=368 amount=-1 +kerning first=84 second=369 amount=-1 +kerning first=84 second=370 amount=-1 +kerning first=84 second=375 amount=-2 +kerning first=84 second=377 amount=-2 +kerning first=84 second=378 amount=-2 +kerning first=84 second=379 amount=-2 +kerning first=84 second=380 amount=-2 +kerning first=84 second=381 amount=-2 +kerning first=84 second=382 amount=-2 +kerning first=207 second=350 amount=-1 +kerning first=207 second=347 amount=-1 +kerning first=207 second=346 amount=-1 +kerning first=207 second=339 amount=-1 +kerning first=207 second=338 amount=-1 +kerning first=207 second=337 amount=-1 +kerning first=207 second=336 amount=-1 +kerning first=207 second=335 amount=-1 +kerning first=207 second=334 amount=-1 +kerning first=207 second=333 amount=-1 +kerning first=207 second=332 amount=-1 +kerning first=207 second=291 amount=-2 +kerning first=207 second=290 amount=-1 +kerning first=207 second=289 amount=-2 +kerning first=207 second=288 amount=-1 +kerning first=207 second=287 amount=-2 +kerning first=207 second=286 amount=-1 +kerning first=207 second=284 amount=-1 +kerning first=207 second=283 amount=-1 +kerning first=207 second=281 amount=-1 +kerning first=207 second=279 amount=-1 +kerning first=84 second=8249 amount=-4 +kerning first=84 second=8250 amount=-2 +kerning first=207 second=277 amount=-1 +kerning first=207 second=275 amount=-1 +kerning first=207 second=269 amount=-1 +kerning first=207 second=268 amount=-1 +kerning first=207 second=267 amount=-1 +kerning first=85 second=44 amount=-4 +kerning first=85 second=45 amount=-4 +kerning first=85 second=46 amount=-4 +kerning first=85 second=65 amount=-3 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=74 amount=-2 +kerning first=85 second=79 amount=-1 +kerning first=85 second=81 amount=-1 +kerning first=85 second=83 amount=-2 +kerning first=85 second=90 amount=-1 +kerning first=85 second=97 amount=-2 +kerning first=85 second=99 amount=-1 +kerning first=85 second=100 amount=-1 +kerning first=85 second=101 amount=-1 +kerning first=85 second=102 amount=-1 +kerning first=85 second=103 amount=-3 +kerning first=85 second=105 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=111 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=113 amount=-1 +kerning first=85 second=114 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=117 amount=-1 +kerning first=85 second=118 amount=-1 +kerning first=85 second=119 amount=-1 +kerning first=85 second=120 amount=-1 +kerning first=85 second=121 amount=-1 +kerning first=85 second=122 amount=-2 +kerning first=85 second=171 amount=-4 +kerning first=85 second=192 amount=-3 +kerning first=85 second=193 amount=-3 +kerning first=85 second=194 amount=-3 +kerning first=85 second=196 amount=-3 +kerning first=85 second=197 amount=-3 +kerning first=85 second=198 amount=-3 +kerning first=85 second=199 amount=-1 +kerning first=85 second=210 amount=-1 +kerning first=85 second=211 amount=-1 +kerning first=85 second=212 amount=-1 +kerning first=85 second=213 amount=-1 +kerning first=85 second=214 amount=-1 +kerning first=85 second=216 amount=-1 +kerning first=85 second=223 amount=-1 +kerning first=85 second=224 amount=-2 +kerning first=85 second=225 amount=-2 +kerning first=85 second=226 amount=-2 +kerning first=85 second=227 amount=-2 +kerning first=85 second=228 amount=-2 +kerning first=85 second=229 amount=-2 +kerning first=85 second=230 amount=-2 +kerning first=85 second=231 amount=-1 +kerning first=85 second=232 amount=-1 +kerning first=85 second=233 amount=-1 +kerning first=85 second=234 amount=-1 +kerning first=85 second=235 amount=-1 +kerning first=85 second=237 amount=-1 +kerning first=85 second=240 amount=-1 +kerning first=85 second=241 amount=-1 +kerning first=85 second=242 amount=-1 +kerning first=85 second=243 amount=-1 +kerning first=85 second=244 amount=-1 +kerning first=85 second=245 amount=-1 +kerning first=85 second=246 amount=-1 +kerning first=85 second=248 amount=-1 +kerning first=85 second=249 amount=-1 +kerning first=85 second=250 amount=-1 +kerning first=85 second=251 amount=-1 +kerning first=85 second=252 amount=-1 +kerning first=85 second=253 amount=-1 +kerning first=85 second=255 amount=-1 +kerning first=85 second=256 amount=-3 +kerning first=85 second=257 amount=-2 +kerning first=85 second=259 amount=-2 +kerning first=85 second=260 amount=-3 +kerning first=85 second=261 amount=-2 +kerning first=85 second=262 amount=-1 +kerning first=85 second=263 amount=-1 +kerning first=85 second=264 amount=-1 +kerning first=85 second=266 amount=-1 +kerning first=85 second=267 amount=-1 +kerning first=85 second=268 amount=-1 +kerning first=85 second=269 amount=-1 +kerning first=85 second=275 amount=-1 +kerning first=85 second=277 amount=-1 +kerning first=85 second=279 amount=-1 +kerning first=85 second=281 amount=-1 +kerning first=85 second=283 amount=-1 +kerning first=85 second=284 amount=-1 +kerning first=85 second=286 amount=-1 +kerning first=85 second=287 amount=-3 +kerning first=85 second=288 amount=-1 +kerning first=85 second=289 amount=-3 +kerning first=85 second=290 amount=-1 +kerning first=85 second=291 amount=-3 +kerning first=85 second=303 amount=-1 +kerning first=85 second=305 amount=-1 +kerning first=85 second=324 amount=-1 +kerning first=85 second=326 amount=-1 +kerning first=85 second=328 amount=-1 +kerning first=85 second=331 amount=-1 +kerning first=85 second=332 amount=-1 +kerning first=85 second=333 amount=-1 +kerning first=85 second=334 amount=-1 +kerning first=85 second=335 amount=-1 +kerning first=85 second=336 amount=-1 +kerning first=85 second=337 amount=-1 +kerning first=85 second=338 amount=-1 +kerning first=85 second=339 amount=-1 +kerning first=85 second=345 amount=-1 +kerning first=85 second=346 amount=-2 +kerning first=85 second=347 amount=-1 +kerning first=85 second=350 amount=-2 +kerning first=85 second=351 amount=-1 +kerning first=85 second=352 amount=-2 +kerning first=85 second=353 amount=-1 +kerning first=85 second=361 amount=-1 +kerning first=85 second=363 amount=-1 +kerning first=85 second=365 amount=-1 +kerning first=85 second=367 amount=-1 +kerning first=85 second=369 amount=-1 +kerning first=85 second=375 amount=-1 +kerning first=85 second=377 amount=-1 +kerning first=85 second=378 amount=-2 +kerning first=85 second=379 amount=-1 +kerning first=85 second=380 amount=-2 +kerning first=85 second=381 amount=-1 +kerning first=85 second=382 amount=-2 +kerning first=207 second=266 amount=-1 +kerning first=207 second=264 amount=-1 +kerning first=207 second=263 amount=-1 +kerning first=207 second=262 amount=-1 +kerning first=207 second=261 amount=-2 +kerning first=207 second=259 amount=-2 +kerning first=207 second=257 amount=-2 +kerning first=207 second=255 amount=-1 +kerning first=207 second=253 amount=-1 +kerning first=207 second=252 amount=-1 +kerning first=207 second=251 amount=-2 +kerning first=85 second=8249 amount=-4 +kerning first=207 second=250 amount=-2 +kerning first=207 second=249 amount=-1 +kerning first=207 second=248 amount=-1 +kerning first=207 second=246 amount=-1 +kerning first=207 second=245 amount=-1 +kerning first=86 second=44 amount=-4 +kerning first=86 second=45 amount=-4 +kerning first=86 second=46 amount=-4 +kerning first=86 second=65 amount=-5 +kerning first=86 second=66 amount=-1 +kerning first=86 second=67 amount=-2 +kerning first=86 second=68 amount=-1 +kerning first=86 second=69 amount=-1 +kerning first=86 second=70 amount=-1 +kerning first=86 second=71 amount=-2 +kerning first=86 second=72 amount=-1 +kerning first=86 second=73 amount=-1 +kerning first=86 second=74 amount=-3 +kerning first=86 second=75 amount=-1 +kerning first=86 second=76 amount=-1 +kerning first=86 second=77 amount=-1 +kerning first=86 second=78 amount=-1 +kerning first=86 second=79 amount=-2 +kerning first=86 second=80 amount=-1 +kerning first=86 second=81 amount=-2 +kerning first=86 second=82 amount=-1 +kerning first=86 second=83 amount=-2 +kerning first=86 second=85 amount=-1 +kerning first=86 second=90 amount=-2 +kerning first=86 second=97 amount=-4 +kerning first=86 second=99 amount=-2 +kerning first=86 second=100 amount=-2 +kerning first=86 second=101 amount=-2 +kerning first=86 second=102 amount=-1 +kerning first=86 second=103 amount=-3 +kerning first=86 second=105 amount=-1 +kerning first=86 second=109 amount=-2 +kerning first=86 second=110 amount=-2 +kerning first=86 second=111 amount=-2 +kerning first=86 second=112 amount=-1 +kerning first=86 second=113 amount=-2 +kerning first=86 second=114 amount=-1 +kerning first=86 second=115 amount=-2 +kerning first=86 second=116 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=86 second=118 amount=-2 +kerning first=86 second=119 amount=-2 +kerning first=86 second=120 amount=-1 +kerning first=86 second=121 amount=-2 +kerning first=86 second=122 amount=-2 +kerning first=86 second=171 amount=-4 +kerning first=86 second=187 amount=-2 +kerning first=86 second=192 amount=-5 +kerning first=86 second=193 amount=-5 +kerning first=86 second=194 amount=-5 +kerning first=86 second=196 amount=-5 +kerning first=86 second=197 amount=-5 +kerning first=86 second=198 amount=-5 +kerning first=86 second=199 amount=-2 +kerning first=86 second=200 amount=-1 +kerning first=86 second=201 amount=-1 +kerning first=86 second=202 amount=-1 +kerning first=86 second=203 amount=-1 +kerning first=86 second=204 amount=-1 +kerning first=86 second=205 amount=-1 +kerning first=86 second=206 amount=-1 +kerning first=86 second=207 amount=-1 +kerning first=86 second=209 amount=-1 +kerning first=86 second=210 amount=-2 +kerning first=86 second=211 amount=-2 +kerning first=86 second=212 amount=-2 +kerning first=86 second=213 amount=-2 +kerning first=86 second=214 amount=-2 +kerning first=86 second=216 amount=-2 +kerning first=86 second=217 amount=-1 +kerning first=86 second=218 amount=-1 +kerning first=86 second=219 amount=-1 +kerning first=86 second=220 amount=-1 +kerning first=86 second=223 amount=-2 +kerning first=86 second=224 amount=-3 +kerning first=86 second=225 amount=-4 +kerning first=86 second=226 amount=-4 +kerning first=86 second=227 amount=-4 +kerning first=86 second=228 amount=-3 +kerning first=86 second=229 amount=-4 +kerning first=86 second=230 amount=-4 +kerning first=86 second=231 amount=-2 +kerning first=86 second=232 amount=-2 +kerning first=86 second=233 amount=-2 +kerning first=86 second=234 amount=-2 +kerning first=86 second=235 amount=-2 +kerning first=86 second=237 amount=-1 +kerning first=86 second=240 amount=-2 +kerning first=86 second=241 amount=-2 +kerning first=86 second=242 amount=-2 +kerning first=86 second=243 amount=-2 +kerning first=86 second=244 amount=-2 +kerning first=86 second=245 amount=-2 +kerning first=86 second=246 amount=-2 +kerning first=86 second=248 amount=-2 +kerning first=86 second=249 amount=-1 +kerning first=86 second=250 amount=-1 +kerning first=86 second=251 amount=-1 +kerning first=86 second=252 amount=-1 +kerning first=86 second=253 amount=-2 +kerning first=86 second=255 amount=-2 +kerning first=86 second=256 amount=-5 +kerning first=86 second=257 amount=-4 +kerning first=86 second=259 amount=-4 +kerning first=86 second=260 amount=-5 +kerning first=86 second=261 amount=-4 +kerning first=86 second=262 amount=-2 +kerning first=86 second=263 amount=-2 +kerning first=86 second=264 amount=-2 +kerning first=86 second=266 amount=-2 +kerning first=86 second=267 amount=-2 +kerning first=86 second=268 amount=-2 +kerning first=86 second=269 amount=-2 +kerning first=86 second=270 amount=-1 +kerning first=86 second=274 amount=-1 +kerning first=86 second=275 amount=-2 +kerning first=86 second=277 amount=-2 +kerning first=86 second=278 amount=-1 +kerning first=86 second=279 amount=-2 +kerning first=86 second=280 amount=-1 +kerning first=86 second=281 amount=-2 +kerning first=86 second=282 amount=-1 +kerning first=86 second=283 amount=-2 +kerning first=86 second=284 amount=-2 +kerning first=86 second=286 amount=-2 +kerning first=86 second=287 amount=-3 +kerning first=86 second=288 amount=-2 +kerning first=86 second=289 amount=-3 +kerning first=86 second=290 amount=-2 +kerning first=86 second=291 amount=-3 +kerning first=86 second=296 amount=-1 +kerning first=86 second=298 amount=-1 +kerning first=86 second=302 amount=-1 +kerning first=86 second=303 amount=-1 +kerning first=86 second=304 amount=-1 +kerning first=86 second=305 amount=-1 +kerning first=86 second=310 amount=-1 +kerning first=86 second=313 amount=-1 +kerning first=86 second=315 amount=-1 +kerning first=86 second=317 amount=-1 +kerning first=86 second=323 amount=-1 +kerning first=86 second=324 amount=-2 +kerning first=86 second=325 amount=-1 +kerning first=86 second=326 amount=-2 +kerning first=86 second=327 amount=-1 +kerning first=86 second=328 amount=-2 +kerning first=86 second=330 amount=-1 +kerning first=86 second=331 amount=-2 +kerning first=86 second=332 amount=-2 +kerning first=86 second=333 amount=-2 +kerning first=86 second=334 amount=-2 +kerning first=86 second=335 amount=-2 +kerning first=86 second=336 amount=-2 +kerning first=86 second=337 amount=-2 +kerning first=86 second=338 amount=-2 +kerning first=86 second=339 amount=-2 +kerning first=86 second=344 amount=-1 +kerning first=86 second=345 amount=-1 +kerning first=86 second=346 amount=-2 +kerning first=86 second=347 amount=-2 +kerning first=86 second=350 amount=-2 +kerning first=86 second=351 amount=-2 +kerning first=86 second=352 amount=-2 +kerning first=86 second=353 amount=-2 +kerning first=86 second=355 amount=-1 +kerning first=86 second=361 amount=-1 +kerning first=86 second=362 amount=-1 +kerning first=86 second=363 amount=-1 +kerning first=86 second=364 amount=-1 +kerning first=86 second=365 amount=-1 +kerning first=86 second=366 amount=-1 +kerning first=86 second=367 amount=-1 +kerning first=86 second=368 amount=-1 +kerning first=86 second=369 amount=-1 +kerning first=86 second=370 amount=-1 +kerning first=86 second=375 amount=-2 +kerning first=86 second=377 amount=-2 +kerning first=86 second=378 amount=-2 +kerning first=86 second=379 amount=-2 +kerning first=86 second=380 amount=-2 +kerning first=86 second=381 amount=-2 +kerning first=86 second=382 amount=-2 +kerning first=207 second=244 amount=-1 +kerning first=207 second=243 amount=-1 +kerning first=207 second=242 amount=-1 +kerning first=207 second=240 amount=-1 +kerning first=207 second=235 amount=-1 +kerning first=207 second=234 amount=-1 +kerning first=207 second=233 amount=-1 +kerning first=207 second=232 amount=-1 +kerning first=207 second=231 amount=-1 +kerning first=207 second=230 amount=-2 +kerning first=207 second=229 amount=-2 +kerning first=207 second=228 amount=-2 +kerning first=207 second=227 amount=-2 +kerning first=207 second=226 amount=-2 +kerning first=207 second=225 amount=-2 +kerning first=207 second=224 amount=-2 +kerning first=207 second=216 amount=-1 +kerning first=207 second=214 amount=-1 +kerning first=207 second=213 amount=-1 +kerning first=207 second=212 amount=-1 +kerning first=207 second=211 amount=-1 +kerning first=86 second=8249 amount=-4 +kerning first=86 second=8250 amount=-2 +kerning first=207 second=210 amount=-1 +kerning first=207 second=199 amount=-1 +kerning first=207 second=122 amount=-1 +kerning first=207 second=121 amount=-1 +kerning first=207 second=119 amount=-1 +kerning first=87 second=44 amount=-4 +kerning first=87 second=45 amount=-4 +kerning first=87 second=46 amount=-4 +kerning first=87 second=65 amount=-5 +kerning first=87 second=66 amount=-1 +kerning first=87 second=67 amount=-2 +kerning first=87 second=68 amount=-1 +kerning first=87 second=69 amount=-1 +kerning first=87 second=70 amount=-1 +kerning first=87 second=71 amount=-2 +kerning first=87 second=72 amount=-1 +kerning first=87 second=73 amount=-1 +kerning first=87 second=74 amount=-3 +kerning first=87 second=75 amount=-1 +kerning first=87 second=76 amount=-1 +kerning first=87 second=77 amount=-1 +kerning first=87 second=78 amount=-1 +kerning first=87 second=79 amount=-2 +kerning first=87 second=80 amount=-1 +kerning first=87 second=81 amount=-2 +kerning first=87 second=82 amount=-1 +kerning first=87 second=83 amount=-2 +kerning first=87 second=85 amount=-1 +kerning first=87 second=90 amount=-2 +kerning first=87 second=97 amount=-4 +kerning first=87 second=99 amount=-2 +kerning first=87 second=100 amount=-2 +kerning first=87 second=101 amount=-2 +kerning first=87 second=102 amount=-1 +kerning first=87 second=103 amount=-3 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-2 +kerning first=87 second=110 amount=-2 +kerning first=87 second=111 amount=-2 +kerning first=87 second=112 amount=-1 +kerning first=87 second=113 amount=-2 +kerning first=87 second=114 amount=-1 +kerning first=87 second=115 amount=-2 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-1 +kerning first=87 second=118 amount=-2 +kerning first=87 second=119 amount=-2 +kerning first=87 second=120 amount=-1 +kerning first=87 second=121 amount=-2 +kerning first=87 second=122 amount=-2 +kerning first=87 second=171 amount=-4 +kerning first=87 second=187 amount=-2 +kerning first=87 second=192 amount=-5 +kerning first=87 second=193 amount=-5 +kerning first=87 second=194 amount=-5 +kerning first=87 second=196 amount=-5 +kerning first=87 second=197 amount=-5 +kerning first=87 second=198 amount=-5 +kerning first=87 second=199 amount=-2 +kerning first=87 second=200 amount=-1 +kerning first=87 second=201 amount=-1 +kerning first=87 second=202 amount=-1 +kerning first=87 second=203 amount=-1 +kerning first=87 second=204 amount=-1 +kerning first=87 second=205 amount=-1 +kerning first=87 second=206 amount=-1 +kerning first=87 second=207 amount=-1 +kerning first=87 second=209 amount=-1 +kerning first=87 second=210 amount=-2 +kerning first=87 second=211 amount=-2 +kerning first=87 second=212 amount=-2 +kerning first=87 second=213 amount=-2 +kerning first=87 second=214 amount=-2 +kerning first=87 second=216 amount=-2 +kerning first=87 second=217 amount=-1 +kerning first=87 second=218 amount=-1 +kerning first=87 second=219 amount=-1 +kerning first=87 second=220 amount=-1 +kerning first=87 second=223 amount=-2 +kerning first=87 second=224 amount=-3 +kerning first=87 second=225 amount=-4 +kerning first=87 second=226 amount=-4 +kerning first=87 second=227 amount=-4 +kerning first=87 second=228 amount=-3 +kerning first=87 second=229 amount=-4 +kerning first=87 second=230 amount=-4 +kerning first=87 second=231 amount=-2 +kerning first=87 second=232 amount=-2 +kerning first=87 second=233 amount=-2 +kerning first=87 second=234 amount=-2 +kerning first=87 second=235 amount=-2 +kerning first=87 second=237 amount=-1 +kerning first=87 second=240 amount=-2 +kerning first=87 second=241 amount=-2 +kerning first=87 second=242 amount=-2 +kerning first=87 second=243 amount=-2 +kerning first=87 second=244 amount=-2 +kerning first=87 second=245 amount=-2 +kerning first=87 second=246 amount=-2 +kerning first=87 second=248 amount=-2 +kerning first=87 second=249 amount=-1 +kerning first=87 second=250 amount=-1 +kerning first=87 second=251 amount=-1 +kerning first=87 second=252 amount=-1 +kerning first=87 second=253 amount=-2 +kerning first=87 second=255 amount=-2 +kerning first=87 second=256 amount=-5 +kerning first=87 second=257 amount=-4 +kerning first=87 second=259 amount=-4 +kerning first=87 second=260 amount=-5 +kerning first=87 second=261 amount=-4 +kerning first=87 second=262 amount=-2 +kerning first=87 second=263 amount=-2 +kerning first=87 second=264 amount=-2 +kerning first=87 second=266 amount=-2 +kerning first=87 second=267 amount=-2 +kerning first=87 second=268 amount=-2 +kerning first=87 second=269 amount=-2 +kerning first=87 second=270 amount=-1 +kerning first=87 second=274 amount=-1 +kerning first=87 second=275 amount=-2 +kerning first=87 second=277 amount=-2 +kerning first=87 second=278 amount=-1 +kerning first=87 second=279 amount=-2 +kerning first=87 second=280 amount=-1 +kerning first=87 second=281 amount=-2 +kerning first=87 second=282 amount=-1 +kerning first=87 second=283 amount=-2 +kerning first=87 second=284 amount=-2 +kerning first=87 second=286 amount=-2 +kerning first=87 second=287 amount=-3 +kerning first=87 second=288 amount=-2 +kerning first=87 second=289 amount=-3 +kerning first=87 second=290 amount=-2 +kerning first=87 second=291 amount=-3 +kerning first=87 second=296 amount=-1 +kerning first=87 second=298 amount=-1 +kerning first=87 second=302 amount=-1 +kerning first=87 second=303 amount=-1 +kerning first=87 second=304 amount=-1 +kerning first=87 second=305 amount=-1 +kerning first=87 second=310 amount=-1 +kerning first=87 second=313 amount=-1 +kerning first=87 second=315 amount=-1 +kerning first=87 second=317 amount=-1 +kerning first=87 second=323 amount=-1 +kerning first=87 second=324 amount=-2 +kerning first=87 second=325 amount=-1 +kerning first=87 second=326 amount=-2 +kerning first=87 second=327 amount=-1 +kerning first=87 second=328 amount=-2 +kerning first=87 second=330 amount=-1 +kerning first=87 second=331 amount=-2 +kerning first=87 second=332 amount=-2 +kerning first=87 second=333 amount=-2 +kerning first=87 second=334 amount=-2 +kerning first=87 second=335 amount=-2 +kerning first=87 second=336 amount=-2 +kerning first=87 second=337 amount=-2 +kerning first=87 second=338 amount=-2 +kerning first=87 second=339 amount=-2 +kerning first=87 second=344 amount=-1 +kerning first=87 second=345 amount=-1 +kerning first=87 second=346 amount=-2 +kerning first=87 second=347 amount=-2 +kerning first=87 second=350 amount=-2 +kerning first=87 second=351 amount=-2 +kerning first=87 second=352 amount=-2 +kerning first=87 second=353 amount=-2 +kerning first=87 second=355 amount=-1 +kerning first=87 second=361 amount=-1 +kerning first=87 second=362 amount=-1 +kerning first=87 second=363 amount=-1 +kerning first=87 second=364 amount=-1 +kerning first=87 second=365 amount=-1 +kerning first=87 second=366 amount=-1 +kerning first=87 second=367 amount=-1 +kerning first=87 second=368 amount=-1 +kerning first=87 second=369 amount=-1 +kerning first=87 second=370 amount=-1 +kerning first=87 second=375 amount=-2 +kerning first=87 second=377 amount=-2 +kerning first=87 second=378 amount=-2 +kerning first=87 second=379 amount=-2 +kerning first=87 second=380 amount=-2 +kerning first=87 second=381 amount=-2 +kerning first=87 second=382 amount=-2 +kerning first=207 second=118 amount=-1 +kerning first=207 second=117 amount=-2 +kerning first=207 second=115 amount=-1 +kerning first=207 second=113 amount=-1 +kerning first=207 second=112 amount=-1 +kerning first=207 second=111 amount=-1 +kerning first=207 second=103 amount=-2 +kerning first=207 second=101 amount=-1 +kerning first=207 second=100 amount=-1 +kerning first=207 second=99 amount=-1 +kerning first=207 second=97 amount=-2 +kerning first=207 second=83 amount=-1 +kerning first=207 second=81 amount=-1 +kerning first=207 second=79 amount=-1 +kerning first=207 second=74 amount=-1 +kerning first=207 second=71 amount=-1 +kerning first=207 second=67 amount=-1 +kerning first=206 second=8249 amount=-3 +kerning first=206 second=382 amount=-1 +kerning first=206 second=380 amount=-1 +kerning first=206 second=378 amount=-1 +kerning first=87 second=8249 amount=-4 +kerning first=87 second=8250 amount=-2 +kerning first=206 second=375 amount=-1 +kerning first=206 second=369 amount=-2 +kerning first=206 second=367 amount=-2 +kerning first=206 second=365 amount=-2 +kerning first=206 second=363 amount=-2 +kerning first=88 second=44 amount=-1 +kerning first=88 second=45 amount=-3 +kerning first=88 second=46 amount=-1 +kerning first=88 second=67 amount=-2 +kerning first=88 second=71 amount=-2 +kerning first=88 second=79 amount=-2 +kerning first=88 second=81 amount=-2 +kerning first=88 second=83 amount=-1 +kerning first=88 second=84 amount=-1 +kerning first=88 second=85 amount=-1 +kerning first=88 second=86 amount=-1 +kerning first=88 second=87 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=98 amount=-1 +kerning first=88 second=99 amount=-1 +kerning first=88 second=100 amount=-1 +kerning first=88 second=101 amount=-1 +kerning first=88 second=103 amount=-1 +kerning first=88 second=104 amount=-1 +kerning first=88 second=106 amount=-1 +kerning first=88 second=107 amount=-1 +kerning first=88 second=108 amount=-1 +kerning first=88 second=111 amount=-1 +kerning first=88 second=112 amount=-1 +kerning first=88 second=113 amount=-1 +kerning first=206 second=361 amount=-2 +kerning first=88 second=115 amount=-1 +kerning first=88 second=116 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=118 amount=-2 +kerning first=88 second=119 amount=-2 +kerning first=88 second=121 amount=-2 +kerning first=88 second=171 amount=-3 +kerning first=88 second=199 amount=-2 +kerning first=88 second=210 amount=-2 +kerning first=88 second=211 amount=-2 +kerning first=88 second=212 amount=-2 +kerning first=88 second=213 amount=-2 +kerning first=88 second=214 amount=-2 +kerning first=88 second=216 amount=-2 +kerning first=88 second=217 amount=-1 +kerning first=88 second=218 amount=-1 +kerning first=88 second=219 amount=-1 +kerning first=88 second=220 amount=-1 +kerning first=88 second=221 amount=-1 +kerning first=88 second=224 amount=-1 +kerning first=88 second=225 amount=-1 +kerning first=88 second=226 amount=-1 +kerning first=88 second=227 amount=-1 +kerning first=88 second=228 amount=-1 +kerning first=88 second=229 amount=-1 +kerning first=88 second=230 amount=-1 +kerning first=88 second=231 amount=-1 +kerning first=88 second=232 amount=-1 +kerning first=88 second=233 amount=-1 +kerning first=88 second=234 amount=-1 +kerning first=88 second=235 amount=-1 +kerning first=88 second=240 amount=-1 +kerning first=88 second=242 amount=-1 +kerning first=88 second=243 amount=-1 +kerning first=88 second=244 amount=-1 +kerning first=88 second=245 amount=-1 +kerning first=88 second=246 amount=-1 +kerning first=88 second=248 amount=-1 +kerning first=88 second=249 amount=-2 +kerning first=88 second=250 amount=-2 +kerning first=88 second=251 amount=-2 +kerning first=88 second=252 amount=-2 +kerning first=88 second=253 amount=-2 +kerning first=88 second=254 amount=-1 +kerning first=88 second=255 amount=-2 +kerning first=88 second=257 amount=-1 +kerning first=88 second=259 amount=-1 +kerning first=88 second=261 amount=-1 +kerning first=88 second=262 amount=-2 +kerning first=88 second=263 amount=-1 +kerning first=88 second=264 amount=-2 +kerning first=88 second=266 amount=-2 +kerning first=88 second=267 amount=-1 +kerning first=88 second=268 amount=-2 +kerning first=88 second=269 amount=-1 +kerning first=88 second=275 amount=-1 +kerning first=88 second=277 amount=-1 +kerning first=88 second=279 amount=-1 +kerning first=88 second=281 amount=-1 +kerning first=88 second=283 amount=-1 +kerning first=88 second=284 amount=-2 +kerning first=88 second=286 amount=-2 +kerning first=88 second=287 amount=-1 +kerning first=88 second=288 amount=-2 +kerning first=88 second=289 amount=-1 +kerning first=88 second=290 amount=-2 +kerning first=88 second=291 amount=-1 +kerning first=88 second=311 amount=-1 +kerning first=88 second=314 amount=-1 +kerning first=88 second=316 amount=-1 +kerning first=88 second=318 amount=-1 +kerning first=88 second=332 amount=-2 +kerning first=88 second=333 amount=-1 +kerning first=88 second=334 amount=-2 +kerning first=88 second=335 amount=-1 +kerning first=88 second=336 amount=-2 +kerning first=88 second=337 amount=-1 +kerning first=88 second=338 amount=-2 +kerning first=88 second=339 amount=-1 +kerning first=206 second=353 amount=-1 +kerning first=88 second=346 amount=-1 +kerning first=88 second=347 amount=-1 +kerning first=88 second=350 amount=-1 +kerning first=88 second=351 amount=-1 +kerning first=88 second=352 amount=-1 +kerning first=88 second=353 amount=-1 +kerning first=88 second=354 amount=-1 +kerning first=88 second=355 amount=-1 +kerning first=88 second=356 amount=-1 +kerning first=88 second=361 amount=-2 +kerning first=88 second=362 amount=-1 +kerning first=88 second=363 amount=-2 +kerning first=88 second=364 amount=-1 +kerning first=88 second=365 amount=-2 +kerning first=88 second=366 amount=-1 +kerning first=88 second=367 amount=-2 +kerning first=88 second=368 amount=-1 +kerning first=88 second=369 amount=-2 +kerning first=88 second=370 amount=-1 +kerning first=88 second=374 amount=-1 +kerning first=88 second=375 amount=-2 +kerning first=206 second=352 amount=-1 +kerning first=206 second=351 amount=-1 +kerning first=206 second=350 amount=-1 +kerning first=206 second=347 amount=-1 +kerning first=206 second=346 amount=-1 +kerning first=206 second=339 amount=-1 +kerning first=206 second=338 amount=-1 +kerning first=206 second=337 amount=-1 +kerning first=206 second=336 amount=-1 +kerning first=206 second=335 amount=-1 +kerning first=206 second=334 amount=-1 +kerning first=206 second=333 amount=-1 +kerning first=206 second=332 amount=-1 +kerning first=206 second=291 amount=-2 +kerning first=88 second=8217 amount=-1 +kerning first=88 second=8220 amount=-1 +kerning first=88 second=8221 amount=-1 +kerning first=88 second=8249 amount=-3 +kerning first=89 second=44 amount=-4 +kerning first=89 second=45 amount=-4 +kerning first=89 second=46 amount=-4 +kerning first=89 second=65 amount=-5 +kerning first=89 second=66 amount=-1 +kerning first=89 second=67 amount=-2 +kerning first=89 second=68 amount=-1 +kerning first=89 second=69 amount=-1 +kerning first=89 second=70 amount=-1 +kerning first=89 second=71 amount=-2 +kerning first=89 second=72 amount=-1 +kerning first=89 second=73 amount=-1 +kerning first=89 second=74 amount=-3 +kerning first=89 second=75 amount=-1 +kerning first=89 second=76 amount=-1 +kerning first=89 second=77 amount=-1 +kerning first=89 second=78 amount=-1 +kerning first=89 second=79 amount=-2 +kerning first=89 second=80 amount=-1 +kerning first=89 second=81 amount=-2 +kerning first=89 second=82 amount=-1 +kerning first=89 second=83 amount=-2 +kerning first=89 second=85 amount=-1 +kerning first=89 second=90 amount=-2 +kerning first=89 second=97 amount=-4 +kerning first=89 second=99 amount=-2 +kerning first=89 second=100 amount=-2 +kerning first=89 second=101 amount=-2 +kerning first=89 second=102 amount=-1 +kerning first=89 second=103 amount=-3 +kerning first=89 second=105 amount=-1 +kerning first=89 second=109 amount=-2 +kerning first=89 second=110 amount=-2 +kerning first=89 second=111 amount=-2 +kerning first=89 second=112 amount=-1 +kerning first=89 second=113 amount=-2 +kerning first=89 second=114 amount=-1 +kerning first=89 second=115 amount=-2 +kerning first=89 second=116 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=89 second=118 amount=-2 +kerning first=89 second=119 amount=-2 +kerning first=89 second=120 amount=-1 +kerning first=89 second=121 amount=-2 +kerning first=89 second=122 amount=-2 +kerning first=89 second=171 amount=-4 +kerning first=89 second=187 amount=-2 +kerning first=89 second=192 amount=-5 +kerning first=89 second=193 amount=-5 +kerning first=89 second=194 amount=-5 +kerning first=89 second=196 amount=-5 +kerning first=89 second=197 amount=-5 +kerning first=89 second=198 amount=-5 +kerning first=89 second=199 amount=-2 +kerning first=89 second=200 amount=-1 +kerning first=89 second=201 amount=-1 +kerning first=89 second=202 amount=-1 +kerning first=89 second=203 amount=-1 +kerning first=89 second=204 amount=-1 +kerning first=89 second=205 amount=-1 +kerning first=89 second=206 amount=-1 +kerning first=89 second=207 amount=-1 +kerning first=89 second=209 amount=-1 +kerning first=89 second=210 amount=-2 +kerning first=89 second=211 amount=-2 +kerning first=89 second=212 amount=-2 +kerning first=89 second=213 amount=-2 +kerning first=89 second=214 amount=-2 +kerning first=89 second=216 amount=-2 +kerning first=89 second=217 amount=-1 +kerning first=89 second=218 amount=-1 +kerning first=89 second=219 amount=-1 +kerning first=89 second=220 amount=-1 +kerning first=89 second=223 amount=-2 +kerning first=89 second=224 amount=-3 +kerning first=89 second=225 amount=-4 +kerning first=89 second=226 amount=-4 +kerning first=89 second=227 amount=-4 +kerning first=89 second=228 amount=-3 +kerning first=89 second=229 amount=-4 +kerning first=89 second=230 amount=-4 +kerning first=89 second=231 amount=-2 +kerning first=89 second=232 amount=-2 +kerning first=89 second=233 amount=-2 +kerning first=89 second=234 amount=-2 +kerning first=89 second=235 amount=-2 +kerning first=89 second=237 amount=-1 +kerning first=89 second=240 amount=-2 +kerning first=89 second=241 amount=-2 +kerning first=89 second=242 amount=-2 +kerning first=89 second=243 amount=-2 +kerning first=89 second=244 amount=-2 +kerning first=89 second=245 amount=-2 +kerning first=89 second=246 amount=-2 +kerning first=89 second=248 amount=-2 +kerning first=89 second=249 amount=-1 +kerning first=89 second=250 amount=-1 +kerning first=89 second=251 amount=-1 +kerning first=89 second=252 amount=-1 +kerning first=89 second=253 amount=-2 +kerning first=89 second=255 amount=-2 +kerning first=89 second=256 amount=-5 +kerning first=89 second=257 amount=-4 +kerning first=89 second=259 amount=-4 +kerning first=89 second=260 amount=-5 +kerning first=89 second=261 amount=-4 +kerning first=89 second=262 amount=-2 +kerning first=89 second=263 amount=-2 +kerning first=89 second=264 amount=-2 +kerning first=89 second=266 amount=-2 +kerning first=89 second=267 amount=-2 +kerning first=89 second=268 amount=-2 +kerning first=89 second=269 amount=-2 +kerning first=89 second=270 amount=-1 +kerning first=89 second=274 amount=-1 +kerning first=89 second=275 amount=-2 +kerning first=89 second=277 amount=-2 +kerning first=89 second=278 amount=-1 +kerning first=89 second=279 amount=-2 +kerning first=89 second=280 amount=-1 +kerning first=89 second=281 amount=-2 +kerning first=89 second=282 amount=-1 +kerning first=89 second=283 amount=-2 +kerning first=89 second=284 amount=-2 +kerning first=89 second=286 amount=-2 +kerning first=89 second=287 amount=-3 +kerning first=89 second=288 amount=-2 +kerning first=89 second=289 amount=-3 +kerning first=89 second=290 amount=-2 +kerning first=89 second=291 amount=-3 +kerning first=89 second=296 amount=-1 +kerning first=89 second=298 amount=-1 +kerning first=89 second=302 amount=-1 +kerning first=89 second=303 amount=-1 +kerning first=89 second=304 amount=-1 +kerning first=89 second=305 amount=-1 +kerning first=89 second=310 amount=-1 +kerning first=89 second=313 amount=-1 +kerning first=89 second=315 amount=-1 +kerning first=89 second=317 amount=-1 +kerning first=89 second=323 amount=-1 +kerning first=89 second=324 amount=-2 +kerning first=89 second=325 amount=-1 +kerning first=89 second=326 amount=-2 +kerning first=89 second=327 amount=-1 +kerning first=89 second=328 amount=-2 +kerning first=89 second=330 amount=-1 +kerning first=89 second=331 amount=-2 +kerning first=89 second=332 amount=-2 +kerning first=89 second=333 amount=-2 +kerning first=89 second=334 amount=-2 +kerning first=89 second=335 amount=-2 +kerning first=89 second=336 amount=-2 +kerning first=89 second=337 amount=-2 +kerning first=89 second=338 amount=-2 +kerning first=89 second=339 amount=-2 +kerning first=89 second=344 amount=-1 +kerning first=89 second=345 amount=-1 +kerning first=89 second=346 amount=-2 +kerning first=89 second=347 amount=-2 +kerning first=89 second=350 amount=-2 +kerning first=89 second=351 amount=-2 +kerning first=89 second=352 amount=-2 +kerning first=89 second=353 amount=-2 +kerning first=89 second=355 amount=-1 +kerning first=89 second=361 amount=-1 +kerning first=89 second=362 amount=-1 +kerning first=89 second=363 amount=-1 +kerning first=89 second=364 amount=-1 +kerning first=89 second=365 amount=-1 +kerning first=89 second=366 amount=-1 +kerning first=89 second=367 amount=-1 +kerning first=89 second=368 amount=-1 +kerning first=89 second=369 amount=-1 +kerning first=89 second=370 amount=-1 +kerning first=89 second=375 amount=-2 +kerning first=89 second=377 amount=-2 +kerning first=89 second=378 amount=-2 +kerning first=89 second=379 amount=-2 +kerning first=89 second=380 amount=-2 +kerning first=89 second=381 amount=-2 +kerning first=89 second=382 amount=-2 +kerning first=206 second=290 amount=-1 +kerning first=206 second=289 amount=-2 +kerning first=206 second=288 amount=-1 +kerning first=206 second=287 amount=-2 +kerning first=206 second=286 amount=-1 +kerning first=206 second=284 amount=-1 +kerning first=206 second=283 amount=-1 +kerning first=206 second=281 amount=-1 +kerning first=206 second=279 amount=-1 +kerning first=206 second=277 amount=-1 +kerning first=206 second=275 amount=-1 +kerning first=206 second=269 amount=-1 +kerning first=206 second=268 amount=-1 +kerning first=206 second=267 amount=-1 +kerning first=206 second=266 amount=-1 +kerning first=206 second=264 amount=-1 +kerning first=206 second=263 amount=-1 +kerning first=206 second=262 amount=-1 +kerning first=206 second=261 amount=-2 +kerning first=206 second=259 amount=-2 +kerning first=206 second=257 amount=-2 +kerning first=89 second=8249 amount=-4 +kerning first=89 second=8250 amount=-2 +kerning first=206 second=255 amount=-1 +kerning first=206 second=253 amount=-1 +kerning first=206 second=252 amount=-1 +kerning first=206 second=251 amount=-2 +kerning first=206 second=250 amount=-2 +kerning first=206 second=249 amount=-1 +kerning first=90 second=45 amount=-2 +kerning first=206 second=248 amount=-1 +kerning first=90 second=65 amount=-1 +kerning first=90 second=66 amount=-1 +kerning first=90 second=67 amount=-1 +kerning first=90 second=68 amount=-1 +kerning first=90 second=69 amount=-1 +kerning first=90 second=70 amount=-1 +kerning first=90 second=71 amount=-1 +kerning first=90 second=72 amount=-1 +kerning first=90 second=73 amount=-1 +kerning first=90 second=75 amount=-1 +kerning first=90 second=76 amount=-1 +kerning first=90 second=77 amount=-1 +kerning first=90 second=78 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=90 second=80 amount=-1 +kerning first=90 second=81 amount=-1 +kerning first=90 second=82 amount=-1 +kerning first=90 second=83 amount=-1 +kerning first=90 second=84 amount=-1 +kerning first=90 second=86 amount=-1 +kerning first=90 second=87 amount=-1 +kerning first=90 second=89 amount=-1 +kerning first=90 second=90 amount=-1 +kerning first=90 second=97 amount=-1 +kerning first=90 second=99 amount=-1 +kerning first=90 second=100 amount=-1 +kerning first=90 second=101 amount=-1 +kerning first=90 second=102 amount=-2 +kerning first=90 second=103 amount=-2 +kerning first=90 second=105 amount=-1 +kerning first=90 second=109 amount=-1 +kerning first=90 second=110 amount=-1 +kerning first=90 second=111 amount=-1 +kerning first=90 second=112 amount=-1 +kerning first=90 second=113 amount=-1 +kerning first=90 second=115 amount=-1 +kerning first=90 second=116 amount=-1 +kerning first=90 second=117 amount=-2 +kerning first=90 second=118 amount=-1 +kerning first=90 second=119 amount=-1 +kerning first=90 second=121 amount=-2 +kerning first=90 second=122 amount=-2 +kerning first=90 second=171 amount=-2 +kerning first=90 second=187 amount=-1 +kerning first=90 second=192 amount=-1 +kerning first=90 second=193 amount=-1 +kerning first=90 second=194 amount=-1 +kerning first=90 second=196 amount=-1 +kerning first=90 second=197 amount=-1 +kerning first=90 second=198 amount=-1 +kerning first=90 second=199 amount=-1 +kerning first=90 second=200 amount=-1 +kerning first=90 second=201 amount=-1 +kerning first=90 second=202 amount=-1 +kerning first=90 second=203 amount=-1 +kerning first=90 second=204 amount=-1 +kerning first=90 second=205 amount=-1 +kerning first=90 second=206 amount=-1 +kerning first=90 second=207 amount=-1 +kerning first=90 second=209 amount=-1 +kerning first=90 second=210 amount=-1 +kerning first=90 second=211 amount=-1 +kerning first=90 second=212 amount=-1 +kerning first=90 second=213 amount=-1 +kerning first=90 second=214 amount=-1 +kerning first=90 second=216 amount=-1 +kerning first=90 second=221 amount=-1 +kerning first=90 second=223 amount=-1 +kerning first=90 second=224 amount=-1 +kerning first=90 second=225 amount=-1 +kerning first=90 second=226 amount=-1 +kerning first=90 second=227 amount=-1 +kerning first=90 second=228 amount=-1 +kerning first=90 second=229 amount=-1 +kerning first=90 second=230 amount=-1 +kerning first=90 second=231 amount=-1 +kerning first=90 second=232 amount=-1 +kerning first=90 second=233 amount=-1 +kerning first=90 second=234 amount=-1 +kerning first=90 second=235 amount=-1 +kerning first=90 second=237 amount=-1 +kerning first=90 second=240 amount=-1 +kerning first=90 second=241 amount=-1 +kerning first=90 second=242 amount=-1 +kerning first=90 second=243 amount=-1 +kerning first=90 second=244 amount=-1 +kerning first=90 second=245 amount=-1 +kerning first=90 second=246 amount=-1 +kerning first=90 second=248 amount=-1 +kerning first=90 second=249 amount=-2 +kerning first=90 second=250 amount=-2 +kerning first=90 second=251 amount=-2 +kerning first=90 second=252 amount=-2 +kerning first=90 second=253 amount=-2 +kerning first=90 second=255 amount=-2 +kerning first=90 second=256 amount=-1 +kerning first=90 second=257 amount=-1 +kerning first=90 second=259 amount=-1 +kerning first=90 second=260 amount=-1 +kerning first=90 second=261 amount=-1 +kerning first=90 second=262 amount=-1 +kerning first=90 second=263 amount=-1 +kerning first=90 second=264 amount=-1 +kerning first=90 second=266 amount=-1 +kerning first=90 second=267 amount=-1 +kerning first=90 second=268 amount=-1 +kerning first=90 second=269 amount=-1 +kerning first=90 second=270 amount=-1 +kerning first=90 second=274 amount=-1 +kerning first=90 second=275 amount=-1 +kerning first=90 second=277 amount=-1 +kerning first=90 second=278 amount=-1 +kerning first=90 second=279 amount=-1 +kerning first=90 second=280 amount=-1 +kerning first=90 second=281 amount=-1 +kerning first=90 second=282 amount=-1 +kerning first=90 second=283 amount=-1 +kerning first=90 second=284 amount=-1 +kerning first=90 second=286 amount=-1 +kerning first=90 second=287 amount=-2 +kerning first=90 second=288 amount=-1 +kerning first=90 second=289 amount=-2 +kerning first=90 second=290 amount=-1 +kerning first=90 second=291 amount=-2 +kerning first=90 second=296 amount=-1 +kerning first=90 second=298 amount=-1 +kerning first=90 second=302 amount=-1 +kerning first=90 second=303 amount=-1 +kerning first=90 second=304 amount=-1 +kerning first=90 second=305 amount=-1 +kerning first=90 second=310 amount=-1 +kerning first=90 second=313 amount=-1 +kerning first=90 second=315 amount=-1 +kerning first=90 second=317 amount=-1 +kerning first=90 second=323 amount=-1 +kerning first=90 second=324 amount=-1 +kerning first=90 second=325 amount=-1 +kerning first=90 second=326 amount=-1 +kerning first=90 second=327 amount=-1 +kerning first=90 second=328 amount=-1 +kerning first=90 second=330 amount=-1 +kerning first=90 second=331 amount=-1 +kerning first=90 second=332 amount=-1 +kerning first=90 second=333 amount=-1 +kerning first=90 second=334 amount=-1 +kerning first=90 second=335 amount=-1 +kerning first=90 second=336 amount=-1 +kerning first=90 second=337 amount=-1 +kerning first=90 second=338 amount=-1 +kerning first=90 second=339 amount=-1 +kerning first=90 second=344 amount=-1 +kerning first=90 second=346 amount=-1 +kerning first=90 second=347 amount=-1 +kerning first=90 second=350 amount=-1 +kerning first=90 second=351 amount=-1 +kerning first=90 second=352 amount=-1 +kerning first=90 second=353 amount=-1 +kerning first=90 second=354 amount=-1 +kerning first=90 second=355 amount=-1 +kerning first=90 second=356 amount=-1 +kerning first=90 second=361 amount=-2 +kerning first=90 second=363 amount=-2 +kerning first=90 second=365 amount=-2 +kerning first=90 second=367 amount=-2 +kerning first=90 second=369 amount=-2 +kerning first=90 second=374 amount=-1 +kerning first=90 second=375 amount=-2 +kerning first=90 second=377 amount=-1 +kerning first=90 second=378 amount=-2 +kerning first=90 second=379 amount=-1 +kerning first=90 second=380 amount=-2 +kerning first=90 second=381 amount=-1 +kerning first=90 second=382 amount=-2 +kerning first=206 second=246 amount=-1 +kerning first=206 second=245 amount=-1 +kerning first=206 second=244 amount=-1 +kerning first=206 second=243 amount=-1 +kerning first=206 second=242 amount=-1 +kerning first=206 second=240 amount=-1 +kerning first=206 second=235 amount=-1 +kerning first=206 second=234 amount=-1 +kerning first=206 second=233 amount=-1 +kerning first=206 second=232 amount=-1 +kerning first=206 second=231 amount=-1 +kerning first=206 second=230 amount=-2 +kerning first=206 second=229 amount=-2 +kerning first=206 second=228 amount=-2 +kerning first=206 second=227 amount=-2 +kerning first=206 second=226 amount=-2 +kerning first=206 second=225 amount=-2 +kerning first=206 second=224 amount=-2 +kerning first=206 second=216 amount=-1 +kerning first=206 second=214 amount=-1 +kerning first=206 second=213 amount=-1 +kerning first=206 second=212 amount=-1 +kerning first=206 second=211 amount=-1 +kerning first=90 second=8249 amount=-2 +kerning first=90 second=8250 amount=-1 +kerning first=206 second=210 amount=-1 +kerning first=206 second=199 amount=-1 +kerning first=206 second=171 amount=-3 +kerning first=206 second=122 amount=-1 +kerning first=206 second=121 amount=-1 +kerning first=97 second=44 amount=-1 +kerning first=97 second=45 amount=-1 +kerning first=97 second=46 amount=-1 +kerning first=97 second=97 amount=-1 +kerning first=97 second=98 amount=-1 +kerning first=206 second=119 amount=-1 +kerning first=206 second=118 amount=-1 +kerning first=206 second=117 amount=-2 +kerning first=206 second=115 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=206 second=113 amount=-1 +kerning first=206 second=112 amount=-1 +kerning first=97 second=106 amount=-1 +kerning first=206 second=111 amount=-1 +kerning first=97 second=108 amount=-1 +kerning first=206 second=103 amount=-2 +kerning first=206 second=101 amount=-1 +kerning first=206 second=100 amount=-1 +kerning first=206 second=99 amount=-1 +kerning first=97 second=115 amount=-1 +kerning first=206 second=97 amount=-2 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-2 +kerning first=97 second=119 amount=-2 +kerning first=97 second=120 amount=-1 +kerning first=97 second=121 amount=-2 +kerning first=206 second=83 amount=-1 +kerning first=97 second=171 amount=-1 +kerning first=97 second=224 amount=-1 +kerning first=97 second=225 amount=-1 +kerning first=97 second=226 amount=-1 +kerning first=97 second=227 amount=-1 +kerning first=97 second=228 amount=-1 +kerning first=97 second=229 amount=-1 +kerning first=97 second=230 amount=-1 +kerning first=206 second=81 amount=-1 +kerning first=206 second=79 amount=-1 +kerning first=206 second=74 amount=-1 +kerning first=206 second=71 amount=-1 +kerning first=206 second=67 amount=-1 +kerning first=206 second=46 amount=-1 +kerning first=206 second=45 amount=-3 +kerning first=206 second=44 amount=-1 +kerning first=205 second=382 amount=-1 +kerning first=205 second=380 amount=-1 +kerning first=205 second=378 amount=-1 +kerning first=205 second=375 amount=-1 +kerning first=205 second=369 amount=-2 +kerning first=205 second=367 amount=-2 +kerning first=97 second=249 amount=-1 +kerning first=97 second=250 amount=-1 +kerning first=97 second=251 amount=-1 +kerning first=97 second=252 amount=-1 +kerning first=97 second=253 amount=-2 +kerning first=97 second=254 amount=-1 +kerning first=97 second=255 amount=-2 +kerning first=97 second=257 amount=-1 +kerning first=97 second=259 amount=-1 +kerning first=97 second=261 amount=-1 +kerning first=205 second=365 amount=-2 +kerning first=205 second=363 amount=-2 +kerning first=205 second=361 amount=-2 +kerning first=205 second=353 amount=-1 +kerning first=205 second=352 amount=-1 +kerning first=205 second=351 amount=-1 +kerning first=205 second=350 amount=-1 +kerning first=205 second=347 amount=-1 +kerning first=205 second=346 amount=-1 +kerning first=205 second=339 amount=-1 +kerning first=97 second=287 amount=-1 +kerning first=97 second=289 amount=-1 +kerning first=97 second=291 amount=-1 +kerning first=205 second=338 amount=-1 +kerning first=205 second=337 amount=-1 +kerning first=205 second=336 amount=-1 +kerning first=205 second=335 amount=-1 +kerning first=97 second=314 amount=-1 +kerning first=97 second=316 amount=-1 +kerning first=97 second=318 amount=-1 +kerning first=205 second=334 amount=-1 +kerning first=205 second=333 amount=-1 +kerning first=205 second=332 amount=-1 +kerning first=205 second=291 amount=-2 +kerning first=205 second=290 amount=-1 +kerning first=205 second=289 amount=-2 +kerning first=205 second=288 amount=-1 +kerning first=205 second=287 amount=-2 +kerning first=97 second=347 amount=-1 +kerning first=97 second=351 amount=-1 +kerning first=97 second=353 amount=-1 +kerning first=205 second=286 amount=-1 +kerning first=97 second=361 amount=-1 +kerning first=97 second=363 amount=-1 +kerning first=97 second=365 amount=-1 +kerning first=97 second=367 amount=-1 +kerning first=97 second=369 amount=-1 +kerning first=97 second=371 amount=-1 +kerning first=97 second=375 amount=-2 +kerning first=205 second=284 amount=-1 +kerning first=205 second=283 amount=-1 +kerning first=205 second=281 amount=-1 +kerning first=205 second=279 amount=-1 +kerning first=205 second=277 amount=-1 +kerning first=205 second=275 amount=-1 +kerning first=205 second=269 amount=-1 +kerning first=205 second=268 amount=-1 +kerning first=205 second=267 amount=-1 +kerning first=205 second=266 amount=-1 +kerning first=205 second=264 amount=-1 +kerning first=205 second=263 amount=-1 +kerning first=205 second=262 amount=-1 +kerning first=205 second=261 amount=-2 +kerning first=205 second=259 amount=-2 +kerning first=97 second=8217 amount=-2 +kerning first=97 second=8220 amount=-2 +kerning first=97 second=8221 amount=-2 +kerning first=97 second=8249 amount=-1 +kerning first=205 second=257 amount=-2 +kerning first=205 second=255 amount=-1 +kerning first=205 second=253 amount=-1 +kerning first=205 second=252 amount=-1 +kerning first=205 second=251 amount=-2 +kerning first=98 second=44 amount=-2 +kerning first=98 second=46 amount=-2 +kerning first=98 second=97 amount=-1 +kerning first=205 second=250 amount=-2 +kerning first=98 second=102 amount=-1 +kerning first=98 second=103 amount=-1 +kerning first=98 second=104 amount=-1 +kerning first=98 second=105 amount=-1 +kerning first=98 second=106 amount=-1 +kerning first=98 second=107 amount=-1 +kerning first=98 second=108 amount=-2 +kerning first=98 second=109 amount=-1 +kerning first=98 second=110 amount=-1 +kerning first=98 second=112 amount=-1 +kerning first=205 second=249 amount=-1 +kerning first=98 second=115 amount=-1 +kerning first=205 second=248 amount=-1 +kerning first=205 second=246 amount=-1 +kerning first=98 second=118 amount=-1 +kerning first=98 second=119 amount=-1 +kerning first=98 second=120 amount=-2 +kerning first=98 second=121 amount=-2 +kerning first=98 second=122 amount=-1 +kerning first=98 second=187 amount=-1 +kerning first=205 second=245 amount=-1 +kerning first=98 second=224 amount=-1 +kerning first=98 second=225 amount=-1 +kerning first=98 second=226 amount=-1 +kerning first=98 second=227 amount=-1 +kerning first=98 second=228 amount=-1 +kerning first=98 second=229 amount=-1 +kerning first=98 second=230 amount=-1 +kerning first=98 second=237 amount=-1 +kerning first=98 second=241 amount=-1 +kerning first=205 second=244 amount=-1 +kerning first=205 second=243 amount=-1 +kerning first=205 second=242 amount=-1 +kerning first=205 second=240 amount=-1 +kerning first=98 second=253 amount=-2 +kerning first=205 second=235 amount=-1 +kerning first=98 second=255 amount=-2 +kerning first=98 second=257 amount=-1 +kerning first=98 second=259 amount=-1 +kerning first=98 second=261 amount=-1 +kerning first=98 second=287 amount=-1 +kerning first=98 second=289 amount=-1 +kerning first=98 second=291 amount=-1 +kerning first=98 second=303 amount=-1 +kerning first=98 second=305 amount=-1 +kerning first=98 second=307 amount=-1 +kerning first=98 second=311 amount=-1 +kerning first=98 second=314 amount=-2 +kerning first=98 second=316 amount=-2 +kerning first=98 second=318 amount=-2 +kerning first=98 second=324 amount=-1 +kerning first=98 second=326 amount=-1 +kerning first=98 second=328 amount=-1 +kerning first=98 second=331 amount=-1 +kerning first=205 second=234 amount=-1 +kerning first=98 second=347 amount=-1 +kerning first=98 second=351 amount=-1 +kerning first=98 second=353 amount=-1 +kerning first=205 second=233 amount=-1 +kerning first=205 second=232 amount=-1 +kerning first=205 second=231 amount=-1 +kerning first=205 second=230 amount=-2 +kerning first=205 second=229 amount=-2 +kerning first=205 second=228 amount=-2 +kerning first=205 second=227 amount=-2 +kerning first=98 second=375 amount=-2 +kerning first=98 second=378 amount=-1 +kerning first=98 second=380 amount=-1 +kerning first=98 second=382 amount=-1 +kerning first=205 second=226 amount=-2 +kerning first=205 second=225 amount=-2 +kerning first=205 second=224 amount=-2 +kerning first=205 second=216 amount=-1 +kerning first=205 second=214 amount=-1 +kerning first=205 second=213 amount=-1 +kerning first=205 second=212 amount=-1 +kerning first=205 second=211 amount=-1 +kerning first=205 second=210 amount=-1 +kerning first=205 second=199 amount=-1 +kerning first=205 second=122 amount=-1 +kerning first=98 second=8217 amount=-1 +kerning first=98 second=8220 amount=-1 +kerning first=98 second=8221 amount=-1 +kerning first=98 second=8250 amount=-1 +kerning first=205 second=121 amount=-1 +kerning first=205 second=119 amount=-1 +kerning first=205 second=118 amount=-1 +kerning first=205 second=117 amount=-2 +kerning first=205 second=115 amount=-1 +kerning first=99 second=44 amount=-2 +kerning first=99 second=45 amount=-1 +kerning first=99 second=46 amount=-2 +kerning first=99 second=97 amount=-2 +kerning first=99 second=98 amount=-1 +kerning first=99 second=99 amount=-1 +kerning first=99 second=100 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=99 second=102 amount=-1 +kerning first=99 second=103 amount=-2 +kerning first=99 second=104 amount=-1 +kerning first=99 second=105 amount=-2 +kerning first=99 second=106 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=99 second=108 amount=-2 +kerning first=99 second=109 amount=-1 +kerning first=99 second=110 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=99 second=112 amount=-1 +kerning first=99 second=113 amount=-1 +kerning first=99 second=114 amount=-1 +kerning first=99 second=115 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=99 second=117 amount=-1 +kerning first=99 second=118 amount=-2 +kerning first=99 second=119 amount=-2 +kerning first=99 second=120 amount=-1 +kerning first=99 second=121 amount=-2 +kerning first=99 second=122 amount=-1 +kerning first=99 second=171 amount=-1 +kerning first=99 second=223 amount=-1 +kerning first=99 second=224 amount=-2 +kerning first=99 second=225 amount=-2 +kerning first=99 second=226 amount=-2 +kerning first=99 second=227 amount=-2 +kerning first=99 second=228 amount=-2 +kerning first=99 second=229 amount=-2 +kerning first=99 second=230 amount=-2 +kerning first=99 second=231 amount=-1 +kerning first=99 second=232 amount=-1 +kerning first=99 second=233 amount=-1 +kerning first=99 second=234 amount=-1 +kerning first=99 second=235 amount=-1 +kerning first=99 second=237 amount=-2 +kerning first=99 second=240 amount=-1 +kerning first=99 second=241 amount=-1 +kerning first=99 second=242 amount=-1 +kerning first=99 second=243 amount=-1 +kerning first=99 second=244 amount=-1 +kerning first=99 second=245 amount=-1 +kerning first=99 second=246 amount=-1 +kerning first=99 second=248 amount=-1 +kerning first=99 second=249 amount=-1 +kerning first=99 second=250 amount=-1 +kerning first=99 second=251 amount=-1 +kerning first=99 second=252 amount=-1 +kerning first=99 second=253 amount=-2 +kerning first=99 second=254 amount=-1 +kerning first=99 second=255 amount=-2 +kerning first=99 second=257 amount=-2 +kerning first=99 second=259 amount=-2 +kerning first=99 second=261 amount=-2 +kerning first=99 second=263 amount=-1 +kerning first=99 second=267 amount=-1 +kerning first=99 second=269 amount=-1 +kerning first=99 second=271 amount=-1 +kerning first=99 second=273 amount=-1 +kerning first=99 second=275 amount=-1 +kerning first=99 second=277 amount=-1 +kerning first=99 second=279 amount=-1 +kerning first=99 second=281 amount=-1 +kerning first=99 second=283 amount=-1 +kerning first=99 second=287 amount=-2 +kerning first=99 second=289 amount=-2 +kerning first=99 second=291 amount=-2 +kerning first=99 second=303 amount=-2 +kerning first=99 second=305 amount=-1 +kerning first=99 second=307 amount=-2 +kerning first=99 second=311 amount=-1 +kerning first=99 second=314 amount=-2 +kerning first=99 second=316 amount=-2 +kerning first=99 second=318 amount=-2 +kerning first=99 second=324 amount=-1 +kerning first=99 second=326 amount=-1 +kerning first=99 second=328 amount=-1 +kerning first=99 second=331 amount=-1 +kerning first=99 second=333 amount=-1 +kerning first=99 second=335 amount=-1 +kerning first=99 second=337 amount=-1 +kerning first=99 second=339 amount=-1 +kerning first=99 second=345 amount=-1 +kerning first=99 second=347 amount=-1 +kerning first=99 second=351 amount=-1 +kerning first=99 second=353 amount=-1 +kerning first=99 second=355 amount=-1 +kerning first=99 second=361 amount=-1 +kerning first=99 second=363 amount=-1 +kerning first=99 second=365 amount=-1 +kerning first=99 second=367 amount=-1 +kerning first=99 second=369 amount=-1 +kerning first=99 second=371 amount=-1 +kerning first=99 second=375 amount=-2 +kerning first=99 second=378 amount=-1 +kerning first=99 second=380 amount=-1 +kerning first=99 second=382 amount=-1 +kerning first=205 second=113 amount=-1 +kerning first=205 second=112 amount=-1 +kerning first=205 second=111 amount=-1 +kerning first=205 second=103 amount=-2 +kerning first=205 second=101 amount=-1 +kerning first=205 second=100 amount=-1 +kerning first=205 second=99 amount=-1 +kerning first=205 second=97 amount=-2 +kerning first=205 second=83 amount=-1 +kerning first=205 second=81 amount=-1 +kerning first=205 second=79 amount=-1 +kerning first=205 second=74 amount=-1 +kerning first=205 second=71 amount=-1 +kerning first=99 second=8217 amount=-1 +kerning first=99 second=8220 amount=-1 +kerning first=99 second=8221 amount=-1 +kerning first=99 second=8249 amount=-1 +kerning first=205 second=67 amount=-1 +kerning first=204 second=382 amount=-1 +kerning first=204 second=380 amount=-1 +kerning first=204 second=378 amount=-1 +kerning first=204 second=375 amount=-1 +kerning first=100 second=45 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=98 amount=-1 +kerning first=204 second=369 amount=-2 +kerning first=204 second=367 amount=-2 +kerning first=204 second=365 amount=-2 +kerning first=204 second=363 amount=-2 +kerning first=100 second=103 amount=-1 +kerning first=100 second=104 amount=-1 +kerning first=204 second=361 amount=-2 +kerning first=204 second=353 amount=-1 +kerning first=100 second=107 amount=-1 +kerning first=100 second=108 amount=-1 +kerning first=204 second=352 amount=-1 +kerning first=204 second=351 amount=-1 +kerning first=204 second=350 amount=-1 +kerning first=100 second=112 amount=-1 +kerning first=204 second=347 amount=-1 +kerning first=100 second=115 amount=-1 +kerning first=204 second=346 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=120 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=122 amount=-1 +kerning first=100 second=171 amount=-1 +kerning first=100 second=224 amount=-1 +kerning first=100 second=225 amount=-1 +kerning first=100 second=226 amount=-1 +kerning first=100 second=227 amount=-1 +kerning first=100 second=228 amount=-1 +kerning first=100 second=229 amount=-1 +kerning first=100 second=230 amount=-1 +kerning first=204 second=339 amount=-1 +kerning first=204 second=338 amount=-1 +kerning first=204 second=337 amount=-1 +kerning first=204 second=336 amount=-1 +kerning first=204 second=335 amount=-1 +kerning first=204 second=334 amount=-1 +kerning first=204 second=333 amount=-1 +kerning first=204 second=332 amount=-1 +kerning first=204 second=291 amount=-2 +kerning first=204 second=290 amount=-1 +kerning first=204 second=289 amount=-2 +kerning first=204 second=288 amount=-1 +kerning first=204 second=287 amount=-2 +kerning first=204 second=286 amount=-1 +kerning first=100 second=249 amount=-1 +kerning first=100 second=250 amount=-1 +kerning first=100 second=251 amount=-1 +kerning first=100 second=252 amount=-1 +kerning first=100 second=253 amount=-1 +kerning first=100 second=254 amount=-1 +kerning first=100 second=255 amount=-1 +kerning first=100 second=257 amount=-1 +kerning first=100 second=259 amount=-1 +kerning first=100 second=261 amount=-1 +kerning first=204 second=284 amount=-1 +kerning first=204 second=283 amount=-1 +kerning first=204 second=281 amount=-1 +kerning first=204 second=279 amount=-1 +kerning first=204 second=277 amount=-1 +kerning first=204 second=275 amount=-1 +kerning first=204 second=269 amount=-1 +kerning first=204 second=268 amount=-1 +kerning first=204 second=267 amount=-1 +kerning first=204 second=266 amount=-1 +kerning first=100 second=287 amount=-1 +kerning first=100 second=289 amount=-1 +kerning first=100 second=291 amount=-1 +kerning first=204 second=264 amount=-1 +kerning first=204 second=263 amount=-1 +kerning first=204 second=262 amount=-1 +kerning first=100 second=311 amount=-1 +kerning first=100 second=314 amount=-1 +kerning first=100 second=316 amount=-1 +kerning first=100 second=318 amount=-1 +kerning first=204 second=261 amount=-2 +kerning first=204 second=259 amount=-2 +kerning first=204 second=257 amount=-2 +kerning first=204 second=255 amount=-1 +kerning first=204 second=253 amount=-1 +kerning first=204 second=252 amount=-1 +kerning first=204 second=251 amount=-2 +kerning first=204 second=250 amount=-2 +kerning first=100 second=347 amount=-1 +kerning first=100 second=351 amount=-1 +kerning first=100 second=353 amount=-1 +kerning first=204 second=249 amount=-1 +kerning first=100 second=361 amount=-1 +kerning first=100 second=363 amount=-1 +kerning first=100 second=365 amount=-1 +kerning first=100 second=367 amount=-1 +kerning first=100 second=369 amount=-1 +kerning first=100 second=371 amount=-1 +kerning first=100 second=375 amount=-1 +kerning first=100 second=378 amount=-1 +kerning first=100 second=380 amount=-1 +kerning first=100 second=382 amount=-1 +kerning first=204 second=248 amount=-1 +kerning first=204 second=246 amount=-1 +kerning first=204 second=245 amount=-1 +kerning first=204 second=244 amount=-1 +kerning first=204 second=243 amount=-1 +kerning first=204 second=242 amount=-1 +kerning first=204 second=240 amount=-1 +kerning first=204 second=235 amount=-1 +kerning first=204 second=234 amount=-1 +kerning first=204 second=233 amount=-1 +kerning first=204 second=232 amount=-1 +kerning first=204 second=231 amount=-1 +kerning first=204 second=230 amount=-2 +kerning first=100 second=8217 amount=-1 +kerning first=100 second=8220 amount=-1 +kerning first=100 second=8221 amount=-1 +kerning first=100 second=8249 amount=-1 +kerning first=204 second=229 amount=-2 +kerning first=204 second=228 amount=-2 +kerning first=204 second=227 amount=-2 +kerning first=204 second=226 amount=-2 +kerning first=204 second=225 amount=-2 +kerning first=101 second=44 amount=-2 +kerning first=101 second=46 amount=-2 +kerning first=101 second=97 amount=-1 +kerning first=101 second=98 amount=-1 +kerning first=204 second=224 amount=-2 +kerning first=204 second=216 amount=-1 +kerning first=204 second=214 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=101 second=103 amount=-2 +kerning first=101 second=104 amount=-2 +kerning first=101 second=105 amount=-1 +kerning first=101 second=106 amount=-1 +kerning first=101 second=107 amount=-2 +kerning first=101 second=108 amount=-2 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=204 second=213 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=204 second=212 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-2 +kerning first=101 second=119 amount=-2 +kerning first=101 second=120 amount=-1 +kerning first=101 second=121 amount=-2 +kerning first=101 second=122 amount=-1 +kerning first=101 second=187 amount=-1 +kerning first=101 second=223 amount=-1 +kerning first=101 second=224 amount=-1 +kerning first=101 second=225 amount=-1 +kerning first=101 second=226 amount=-1 +kerning first=101 second=227 amount=-1 +kerning first=101 second=228 amount=-1 +kerning first=101 second=229 amount=-1 +kerning first=101 second=230 amount=-1 +kerning first=204 second=211 amount=-1 +kerning first=204 second=210 amount=-1 +kerning first=204 second=199 amount=-1 +kerning first=204 second=122 amount=-1 +kerning first=204 second=121 amount=-1 +kerning first=101 second=237 amount=-1 +kerning first=204 second=119 amount=-1 +kerning first=101 second=241 amount=-1 +kerning first=204 second=118 amount=-1 +kerning first=204 second=117 amount=-2 +kerning first=204 second=115 amount=-1 +kerning first=204 second=113 amount=-1 +kerning first=204 second=112 amount=-1 +kerning first=204 second=111 amount=-1 +kerning first=101 second=249 amount=-1 +kerning first=101 second=250 amount=-1 +kerning first=101 second=251 amount=-1 +kerning first=101 second=252 amount=-1 +kerning first=101 second=253 amount=-2 +kerning first=101 second=254 amount=-1 +kerning first=101 second=255 amount=-2 +kerning first=101 second=257 amount=-1 +kerning first=101 second=259 amount=-1 +kerning first=101 second=261 amount=-1 +kerning first=204 second=103 amount=-2 +kerning first=204 second=101 amount=-1 +kerning first=204 second=100 amount=-1 +kerning first=204 second=99 amount=-1 +kerning first=204 second=97 amount=-2 +kerning first=204 second=83 amount=-1 +kerning first=204 second=81 amount=-1 +kerning first=204 second=79 amount=-1 +kerning first=204 second=74 amount=-1 +kerning first=204 second=71 amount=-1 +kerning first=101 second=287 amount=-2 +kerning first=101 second=289 amount=-2 +kerning first=101 second=291 amount=-2 +kerning first=101 second=303 amount=-1 +kerning first=101 second=305 amount=-1 +kerning first=101 second=307 amount=-1 +kerning first=101 second=311 amount=-2 +kerning first=101 second=314 amount=-2 +kerning first=101 second=316 amount=-2 +kerning first=101 second=318 amount=-2 +kerning first=101 second=324 amount=-1 +kerning first=101 second=326 amount=-1 +kerning first=101 second=328 amount=-1 +kerning first=101 second=331 amount=-1 +kerning first=204 second=67 amount=-1 +kerning first=203 second=8249 amount=-1 +kerning first=203 second=382 amount=-1 +kerning first=203 second=381 amount=-1 +kerning first=101 second=345 amount=-1 +kerning first=101 second=347 amount=-1 +kerning first=101 second=351 amount=-1 +kerning first=101 second=353 amount=-1 +kerning first=101 second=355 amount=-1 +kerning first=101 second=361 amount=-1 +kerning first=101 second=363 amount=-1 +kerning first=101 second=365 amount=-1 +kerning first=101 second=367 amount=-1 +kerning first=101 second=369 amount=-1 +kerning first=101 second=371 amount=-1 +kerning first=101 second=375 amount=-2 +kerning first=101 second=378 amount=-1 +kerning first=101 second=380 amount=-1 +kerning first=101 second=382 amount=-1 +kerning first=203 second=380 amount=-1 +kerning first=203 second=379 amount=-1 +kerning first=203 second=378 amount=-1 +kerning first=203 second=377 amount=-1 +kerning first=203 second=374 amount=-1 +kerning first=203 second=370 amount=-1 +kerning first=203 second=369 amount=-1 +kerning first=203 second=368 amount=-1 +kerning first=203 second=367 amount=-1 +kerning first=203 second=366 amount=-1 +kerning first=203 second=365 amount=-1 +kerning first=203 second=364 amount=-1 +kerning first=203 second=363 amount=-1 +kerning first=101 second=8217 amount=-1 +kerning first=101 second=8220 amount=-1 +kerning first=101 second=8221 amount=-1 +kerning first=101 second=8250 amount=-1 +kerning first=203 second=362 amount=-1 +kerning first=203 second=361 amount=-1 +kerning first=203 second=356 amount=-1 +kerning first=203 second=354 amount=-1 +kerning first=203 second=353 amount=-1 +kerning first=102 second=44 amount=-1 +kerning first=102 second=45 amount=-2 +kerning first=102 second=46 amount=-1 +kerning first=102 second=97 amount=-1 +kerning first=102 second=98 amount=3 +kerning first=102 second=99 amount=-1 +kerning first=102 second=100 amount=-1 +kerning first=102 second=101 amount=-1 +kerning first=102 second=102 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=102 second=104 amount=2 +kerning first=203 second=352 amount=-1 +kerning first=102 second=107 amount=2 +kerning first=102 second=108 amount=2 +kerning first=203 second=351 amount=-1 +kerning first=203 second=350 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=102 second=113 amount=-1 +kerning first=203 second=347 amount=-1 +kerning first=102 second=115 amount=-1 +kerning first=203 second=346 amount=-1 +kerning first=203 second=344 amount=-1 +kerning first=102 second=120 amount=-1 +kerning first=203 second=338 amount=-1 +kerning first=102 second=122 amount=-1 +kerning first=102 second=171 amount=-2 +kerning first=203 second=336 amount=-1 +kerning first=102 second=225 amount=-1 +kerning first=102 second=226 amount=-1 +kerning first=102 second=227 amount=-1 +kerning first=102 second=229 amount=-1 +kerning first=102 second=230 amount=-1 +kerning first=102 second=231 amount=-1 +kerning first=102 second=233 amount=-1 +kerning first=102 second=234 amount=-1 +kerning first=102 second=240 amount=-1 +kerning first=203 second=334 amount=-1 +kerning first=102 second=243 amount=-1 +kerning first=102 second=244 amount=-1 +kerning first=102 second=245 amount=-1 +kerning first=102 second=248 amount=-1 +kerning first=203 second=332 amount=-1 +kerning first=203 second=331 amount=-1 +kerning first=203 second=330 amount=-1 +kerning first=102 second=254 amount=3 +kerning first=203 second=328 amount=-1 +kerning first=102 second=257 amount=-1 +kerning first=102 second=259 amount=-1 +kerning first=102 second=261 amount=-1 +kerning first=102 second=263 amount=-1 +kerning first=102 second=267 amount=-1 +kerning first=102 second=269 amount=-1 +kerning first=102 second=271 amount=-1 +kerning first=102 second=273 amount=-1 +kerning first=102 second=275 amount=-1 +kerning first=102 second=277 amount=-1 +kerning first=102 second=279 amount=-1 +kerning first=102 second=281 amount=-1 +kerning first=102 second=283 amount=-1 +kerning first=102 second=287 amount=-1 +kerning first=102 second=289 amount=-1 +kerning first=102 second=291 amount=-1 +kerning first=203 second=327 amount=-1 +kerning first=102 second=311 amount=2 +kerning first=102 second=314 amount=2 +kerning first=102 second=316 amount=2 +kerning first=102 second=318 amount=2 +kerning first=203 second=326 amount=-1 +kerning first=203 second=325 amount=-1 +kerning first=203 second=324 amount=-1 +kerning first=203 second=323 amount=-1 +kerning first=102 second=333 amount=-1 +kerning first=102 second=335 amount=-1 +kerning first=102 second=337 amount=-1 +kerning first=102 second=339 amount=-1 +kerning first=203 second=318 amount=-1 +kerning first=102 second=347 amount=-1 +kerning first=102 second=351 amount=-1 +kerning first=102 second=353 amount=-1 +kerning first=203 second=317 amount=-1 +kerning first=203 second=316 amount=-1 +kerning first=203 second=315 amount=-1 +kerning first=203 second=314 amount=-1 +kerning first=203 second=313 amount=-1 +kerning first=203 second=311 amount=-1 +kerning first=203 second=310 amount=-1 +kerning first=203 second=304 amount=-1 +kerning first=102 second=378 amount=-1 +kerning first=102 second=380 amount=-1 +kerning first=102 second=382 amount=-1 +kerning first=203 second=302 amount=-1 +kerning first=203 second=298 amount=-1 +kerning first=203 second=296 amount=-1 +kerning first=203 second=291 amount=-2 +kerning first=203 second=290 amount=-1 +kerning first=203 second=289 amount=-2 +kerning first=203 second=288 amount=-1 +kerning first=203 second=287 amount=-2 +kerning first=203 second=286 amount=-1 +kerning first=203 second=284 amount=-1 +kerning first=203 second=282 amount=-1 +kerning first=203 second=280 amount=-1 +kerning first=102 second=8217 amount=2 +kerning first=102 second=8220 amount=2 +kerning first=102 second=8221 amount=2 +kerning first=102 second=8249 amount=-2 +kerning first=203 second=278 amount=-1 +kerning first=203 second=274 amount=-1 +kerning first=203 second=270 amount=-1 +kerning first=203 second=268 amount=-1 +kerning first=203 second=266 amount=-1 +kerning first=103 second=44 amount=-2 +kerning first=103 second=45 amount=-2 +kerning first=103 second=46 amount=-2 +kerning first=103 second=97 amount=-2 +kerning first=103 second=98 amount=-1 +kerning first=103 second=99 amount=-1 +kerning first=103 second=100 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=203 second=264 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=105 amount=-1 +kerning first=103 second=107 amount=-1 +kerning first=103 second=108 amount=-2 +kerning first=103 second=109 amount=-1 +kerning first=103 second=110 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=203 second=262 amount=-1 +kerning first=103 second=113 amount=-1 +kerning first=203 second=261 amount=-1 +kerning first=103 second=115 amount=-2 +kerning first=103 second=116 amount=-1 +kerning first=103 second=117 amount=-1 +kerning first=103 second=118 amount=-1 +kerning first=103 second=119 amount=-1 +kerning first=103 second=120 amount=-1 +kerning first=103 second=121 amount=-1 +kerning first=103 second=122 amount=-2 +kerning first=103 second=171 amount=-2 +kerning first=203 second=260 amount=-1 +kerning first=103 second=224 amount=-2 +kerning first=103 second=225 amount=-2 +kerning first=103 second=226 amount=-2 +kerning first=103 second=227 amount=-2 +kerning first=103 second=228 amount=-2 +kerning first=103 second=229 amount=-2 +kerning first=103 second=230 amount=-2 +kerning first=103 second=231 amount=-1 +kerning first=103 second=232 amount=-1 +kerning first=103 second=233 amount=-1 +kerning first=103 second=234 amount=-1 +kerning first=103 second=235 amount=-1 +kerning first=103 second=237 amount=-1 +kerning first=103 second=240 amount=-1 +kerning first=103 second=241 amount=-1 +kerning first=103 second=242 amount=-1 +kerning first=103 second=243 amount=-1 +kerning first=103 second=244 amount=-1 +kerning first=103 second=245 amount=-1 +kerning first=103 second=246 amount=-1 +kerning first=103 second=248 amount=-1 +kerning first=103 second=249 amount=-1 +kerning first=103 second=250 amount=-1 +kerning first=103 second=251 amount=-1 +kerning first=103 second=252 amount=-1 +kerning first=103 second=253 amount=-1 +kerning first=103 second=254 amount=-1 +kerning first=103 second=255 amount=-1 +kerning first=103 second=257 amount=-2 +kerning first=103 second=259 amount=-2 +kerning first=103 second=261 amount=-2 +kerning first=103 second=263 amount=-1 +kerning first=103 second=267 amount=-1 +kerning first=103 second=269 amount=-1 +kerning first=103 second=271 amount=-1 +kerning first=103 second=273 amount=-1 +kerning first=103 second=275 amount=-1 +kerning first=103 second=277 amount=-1 +kerning first=103 second=279 amount=-1 +kerning first=103 second=281 amount=-1 +kerning first=103 second=283 amount=-1 +kerning first=103 second=287 amount=-1 +kerning first=103 second=289 amount=-1 +kerning first=103 second=291 amount=-1 +kerning first=103 second=303 amount=-1 +kerning first=103 second=305 amount=-1 +kerning first=103 second=307 amount=-1 +kerning first=103 second=311 amount=-1 +kerning first=103 second=314 amount=-2 +kerning first=103 second=316 amount=-2 +kerning first=103 second=318 amount=-2 +kerning first=103 second=324 amount=-1 +kerning first=103 second=326 amount=-1 +kerning first=103 second=328 amount=-1 +kerning first=103 second=331 amount=-1 +kerning first=103 second=333 amount=-1 +kerning first=103 second=335 amount=-1 +kerning first=103 second=337 amount=-1 +kerning first=103 second=339 amount=-1 +kerning first=203 second=259 amount=-1 +kerning first=103 second=347 amount=-2 +kerning first=103 second=351 amount=-2 +kerning first=103 second=353 amount=-2 +kerning first=103 second=355 amount=-1 +kerning first=103 second=361 amount=-1 +kerning first=103 second=363 amount=-1 +kerning first=103 second=365 amount=-1 +kerning first=103 second=367 amount=-1 +kerning first=103 second=369 amount=-1 +kerning first=103 second=371 amount=-1 +kerning first=103 second=375 amount=-1 +kerning first=103 second=378 amount=-2 +kerning first=103 second=380 amount=-2 +kerning first=103 second=382 amount=-2 +kerning first=203 second=257 amount=-1 +kerning first=203 second=256 amount=-1 +kerning first=203 second=254 amount=-1 +kerning first=203 second=252 amount=-1 +kerning first=203 second=251 amount=-1 +kerning first=203 second=250 amount=-1 +kerning first=203 second=249 amount=-1 +kerning first=203 second=241 amount=-1 +kerning first=203 second=230 amount=-1 +kerning first=203 second=229 amount=-1 +kerning first=203 second=228 amount=-1 +kerning first=203 second=227 amount=-1 +kerning first=203 second=226 amount=-1 +kerning first=103 second=8249 amount=-2 +kerning first=203 second=225 amount=-1 +kerning first=203 second=224 amount=-1 +kerning first=203 second=223 amount=-1 +kerning first=203 second=221 amount=-1 +kerning first=203 second=220 amount=-1 +kerning first=104 second=44 amount=-1 +kerning first=104 second=45 amount=-2 +kerning first=104 second=46 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=104 second=98 amount=-1 +kerning first=203 second=219 amount=-1 +kerning first=203 second=218 amount=-1 +kerning first=203 second=217 amount=-1 +kerning first=203 second=216 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=203 second=214 amount=-1 +kerning first=104 second=106 amount=-1 +kerning first=104 second=108 amount=-1 +kerning first=203 second=213 amount=-1 +kerning first=203 second=212 amount=-1 +kerning first=203 second=211 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=203 second=210 amount=-1 +kerning first=104 second=115 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=203 second=209 amount=-1 +kerning first=104 second=121 amount=-1 +kerning first=203 second=207 amount=-1 +kerning first=104 second=171 amount=-2 +kerning first=104 second=224 amount=-1 +kerning first=104 second=225 amount=-1 +kerning first=104 second=226 amount=-1 +kerning first=104 second=227 amount=-1 +kerning first=104 second=228 amount=-1 +kerning first=104 second=229 amount=-1 +kerning first=104 second=230 amount=-1 +kerning first=203 second=206 amount=-1 +kerning first=203 second=205 amount=-1 +kerning first=203 second=204 amount=-1 +kerning first=203 second=203 amount=-1 +kerning first=203 second=202 amount=-1 +kerning first=203 second=201 amount=-1 +kerning first=203 second=200 amount=-1 +kerning first=203 second=199 amount=-1 +kerning first=203 second=198 amount=-1 +kerning first=203 second=197 amount=-1 +kerning first=203 second=196 amount=-1 +kerning first=203 second=194 amount=-1 +kerning first=203 second=193 amount=-1 +kerning first=203 second=192 amount=-1 +kerning first=104 second=249 amount=-1 +kerning first=104 second=250 amount=-1 +kerning first=104 second=251 amount=-1 +kerning first=104 second=252 amount=-1 +kerning first=104 second=253 amount=-1 +kerning first=104 second=254 amount=-1 +kerning first=104 second=255 amount=-1 +kerning first=104 second=257 amount=-1 +kerning first=104 second=259 amount=-1 +kerning first=104 second=261 amount=-1 +kerning first=203 second=171 amount=-1 +kerning first=203 second=122 amount=-1 +kerning first=203 second=120 amount=-1 +kerning first=203 second=119 amount=-1 +kerning first=203 second=118 amount=-1 +kerning first=203 second=117 amount=-1 +kerning first=203 second=115 amount=-1 +kerning first=203 second=112 amount=-1 +kerning first=203 second=110 amount=-1 +kerning first=203 second=109 amount=-1 +kerning first=104 second=287 amount=-1 +kerning first=104 second=289 amount=-1 +kerning first=104 second=291 amount=-1 +kerning first=203 second=108 amount=-1 +kerning first=203 second=107 amount=-1 +kerning first=203 second=104 amount=-1 +kerning first=104 second=314 amount=-1 +kerning first=104 second=316 amount=-1 +kerning first=104 second=318 amount=-1 +kerning first=203 second=103 amount=-2 +kerning first=203 second=102 amount=-1 +kerning first=203 second=98 amount=-1 +kerning first=203 second=97 amount=-1 +kerning first=203 second=90 amount=-1 +kerning first=203 second=89 amount=-1 +kerning first=203 second=87 amount=-1 +kerning first=203 second=86 amount=-1 +kerning first=104 second=347 amount=-1 +kerning first=104 second=351 amount=-1 +kerning first=104 second=353 amount=-1 +kerning first=104 second=361 amount=-1 +kerning first=104 second=363 amount=-1 +kerning first=104 second=365 amount=-1 +kerning first=104 second=367 amount=-1 +kerning first=104 second=369 amount=-1 +kerning first=104 second=371 amount=-1 +kerning first=104 second=375 amount=-1 +kerning first=203 second=85 amount=-1 +kerning first=203 second=84 amount=-1 +kerning first=203 second=83 amount=-1 +kerning first=203 second=82 amount=-1 +kerning first=203 second=81 amount=-1 +kerning first=203 second=80 amount=-1 +kerning first=203 second=79 amount=-1 +kerning first=203 second=78 amount=-1 +kerning first=203 second=77 amount=-1 +kerning first=203 second=76 amount=-1 +kerning first=203 second=75 amount=-1 +kerning first=203 second=74 amount=-1 +kerning first=203 second=73 amount=-1 +kerning first=104 second=8217 amount=-3 +kerning first=104 second=8220 amount=-3 +kerning first=104 second=8221 amount=-3 +kerning first=104 second=8249 amount=-2 +kerning first=203 second=72 amount=-1 +kerning first=203 second=71 amount=-1 +kerning first=203 second=70 amount=-1 +kerning first=203 second=69 amount=-1 +kerning first=203 second=68 amount=-1 +kerning first=105 second=44 amount=-1 +kerning first=105 second=45 amount=-2 +kerning first=105 second=46 amount=-1 +kerning first=105 second=97 amount=-1 +kerning first=105 second=98 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=102 amount=-1 +kerning first=105 second=103 amount=-2 +kerning first=105 second=104 amount=-1 +kerning first=105 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=105 second=107 amount=-1 +kerning first=105 second=108 amount=-1 +kerning first=105 second=109 amount=-1 +kerning first=105 second=110 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=113 amount=-1 +kerning first=203 second=67 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-2 +kerning first=105 second=119 amount=-2 +kerning first=105 second=120 amount=-1 +kerning first=105 second=121 amount=-2 +kerning first=105 second=122 amount=-1 +kerning first=105 second=171 amount=-2 +kerning first=203 second=66 amount=-1 +kerning first=105 second=224 amount=-1 +kerning first=105 second=225 amount=-1 +kerning first=105 second=226 amount=-1 +kerning first=105 second=227 amount=-1 +kerning first=105 second=228 amount=-1 +kerning first=105 second=229 amount=-1 +kerning first=105 second=230 amount=-1 +kerning first=105 second=231 amount=-1 +kerning first=105 second=232 amount=-1 +kerning first=105 second=233 amount=-1 +kerning first=105 second=234 amount=-1 +kerning first=105 second=235 amount=-1 +kerning first=105 second=237 amount=-1 +kerning first=105 second=240 amount=-1 +kerning first=105 second=241 amount=-1 +kerning first=105 second=242 amount=-1 +kerning first=105 second=243 amount=-1 +kerning first=105 second=244 amount=-1 +kerning first=105 second=245 amount=-1 +kerning first=105 second=246 amount=-1 +kerning first=105 second=248 amount=-1 +kerning first=105 second=249 amount=-1 +kerning first=105 second=250 amount=-1 +kerning first=105 second=251 amount=-1 +kerning first=105 second=252 amount=-1 +kerning first=105 second=253 amount=-2 +kerning first=105 second=254 amount=-1 +kerning first=105 second=255 amount=-2 +kerning first=105 second=257 amount=-1 +kerning first=105 second=259 amount=-1 +kerning first=105 second=261 amount=-1 +kerning first=105 second=263 amount=-1 +kerning first=105 second=267 amount=-1 +kerning first=105 second=269 amount=-1 +kerning first=105 second=271 amount=-1 +kerning first=105 second=273 amount=-1 +kerning first=105 second=275 amount=-1 +kerning first=105 second=277 amount=-1 +kerning first=105 second=279 amount=-1 +kerning first=105 second=281 amount=-1 +kerning first=105 second=283 amount=-1 +kerning first=105 second=287 amount=-2 +kerning first=105 second=289 amount=-2 +kerning first=105 second=291 amount=-2 +kerning first=105 second=303 amount=-1 +kerning first=105 second=305 amount=-1 +kerning first=105 second=307 amount=-1 +kerning first=105 second=311 amount=-1 +kerning first=105 second=314 amount=-1 +kerning first=105 second=316 amount=-1 +kerning first=105 second=318 amount=-1 +kerning first=105 second=324 amount=-1 +kerning first=105 second=326 amount=-1 +kerning first=105 second=328 amount=-1 +kerning first=105 second=331 amount=-1 +kerning first=105 second=333 amount=-1 +kerning first=105 second=335 amount=-1 +kerning first=105 second=337 amount=-1 +kerning first=105 second=339 amount=-1 +kerning first=203 second=65 amount=-1 +kerning first=105 second=347 amount=-1 +kerning first=105 second=351 amount=-1 +kerning first=105 second=353 amount=-1 +kerning first=105 second=355 amount=-1 +kerning first=105 second=361 amount=-1 +kerning first=105 second=363 amount=-1 +kerning first=105 second=365 amount=-1 +kerning first=105 second=367 amount=-1 +kerning first=105 second=369 amount=-1 +kerning first=105 second=371 amount=-1 +kerning first=105 second=375 amount=-2 +kerning first=105 second=378 amount=-1 +kerning first=105 second=380 amount=-1 +kerning first=105 second=382 amount=-1 +kerning first=203 second=46 amount=-1 +kerning first=203 second=45 amount=-1 +kerning first=203 second=44 amount=-1 +kerning first=202 second=8249 amount=-1 +kerning first=202 second=382 amount=-1 +kerning first=202 second=381 amount=-1 +kerning first=202 second=380 amount=-1 +kerning first=202 second=379 amount=-1 +kerning first=202 second=378 amount=-1 +kerning first=202 second=377 amount=-1 +kerning first=202 second=374 amount=-1 +kerning first=202 second=370 amount=-1 +kerning first=202 second=369 amount=-1 +kerning first=105 second=8217 amount=-1 +kerning first=105 second=8220 amount=-1 +kerning first=105 second=8221 amount=-1 +kerning first=105 second=8249 amount=-2 +kerning first=202 second=368 amount=-1 +kerning first=202 second=367 amount=-1 +kerning first=202 second=366 amount=-1 +kerning first=202 second=365 amount=-1 +kerning first=202 second=364 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=106 second=45 amount=-2 +kerning first=106 second=46 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=98 amount=-1 +kerning first=106 second=99 amount=-1 +kerning first=106 second=100 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=102 amount=-1 +kerning first=106 second=103 amount=-2 +kerning first=106 second=104 amount=-1 +kerning first=106 second=105 amount=-1 +kerning first=106 second=106 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=106 second=108 amount=-1 +kerning first=106 second=109 amount=-1 +kerning first=106 second=110 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=112 amount=-1 +kerning first=106 second=113 amount=-1 +kerning first=202 second=363 amount=-1 +kerning first=106 second=115 amount=-1 +kerning first=106 second=116 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=118 amount=-2 +kerning first=106 second=119 amount=-2 +kerning first=106 second=120 amount=-1 +kerning first=106 second=121 amount=-2 +kerning first=106 second=122 amount=-1 +kerning first=106 second=171 amount=-2 +kerning first=202 second=362 amount=-1 +kerning first=106 second=224 amount=-1 +kerning first=106 second=225 amount=-1 +kerning first=106 second=226 amount=-1 +kerning first=106 second=227 amount=-1 +kerning first=106 second=228 amount=-1 +kerning first=106 second=229 amount=-1 +kerning first=106 second=230 amount=-1 +kerning first=106 second=231 amount=-1 +kerning first=106 second=232 amount=-1 +kerning first=106 second=233 amount=-1 +kerning first=106 second=234 amount=-1 +kerning first=106 second=235 amount=-1 +kerning first=106 second=237 amount=-1 +kerning first=106 second=240 amount=-1 +kerning first=106 second=241 amount=-1 +kerning first=106 second=242 amount=-1 +kerning first=106 second=243 amount=-1 +kerning first=106 second=244 amount=-1 +kerning first=106 second=245 amount=-1 +kerning first=106 second=246 amount=-1 +kerning first=106 second=248 amount=-1 +kerning first=106 second=249 amount=-1 +kerning first=106 second=250 amount=-1 +kerning first=106 second=251 amount=-1 +kerning first=106 second=252 amount=-1 +kerning first=106 second=253 amount=-2 +kerning first=106 second=254 amount=-1 +kerning first=106 second=255 amount=-2 +kerning first=106 second=257 amount=-1 +kerning first=106 second=259 amount=-1 +kerning first=106 second=261 amount=-1 +kerning first=106 second=263 amount=-1 +kerning first=106 second=267 amount=-1 +kerning first=106 second=269 amount=-1 +kerning first=106 second=271 amount=-1 +kerning first=106 second=273 amount=-1 +kerning first=106 second=275 amount=-1 +kerning first=106 second=277 amount=-1 +kerning first=106 second=279 amount=-1 +kerning first=106 second=281 amount=-1 +kerning first=106 second=283 amount=-1 +kerning first=106 second=287 amount=-2 +kerning first=106 second=289 amount=-2 +kerning first=106 second=291 amount=-2 +kerning first=106 second=303 amount=-1 +kerning first=106 second=305 amount=-1 +kerning first=106 second=307 amount=-1 +kerning first=106 second=311 amount=-1 +kerning first=106 second=314 amount=-1 +kerning first=106 second=316 amount=-1 +kerning first=106 second=318 amount=-1 +kerning first=106 second=324 amount=-1 +kerning first=106 second=326 amount=-1 +kerning first=106 second=328 amount=-1 +kerning first=106 second=331 amount=-1 +kerning first=106 second=333 amount=-1 +kerning first=106 second=335 amount=-1 +kerning first=106 second=337 amount=-1 +kerning first=106 second=339 amount=-1 +kerning first=202 second=361 amount=-1 +kerning first=106 second=347 amount=-1 +kerning first=106 second=351 amount=-1 +kerning first=106 second=353 amount=-1 +kerning first=106 second=355 amount=-1 +kerning first=106 second=361 amount=-1 +kerning first=106 second=363 amount=-1 +kerning first=106 second=365 amount=-1 +kerning first=106 second=367 amount=-1 +kerning first=106 second=369 amount=-1 +kerning first=106 second=371 amount=-1 +kerning first=106 second=375 amount=-2 +kerning first=106 second=378 amount=-1 +kerning first=106 second=380 amount=-1 +kerning first=106 second=382 amount=-1 +kerning first=202 second=356 amount=-1 +kerning first=202 second=354 amount=-1 +kerning first=202 second=353 amount=-1 +kerning first=202 second=352 amount=-1 +kerning first=202 second=351 amount=-1 +kerning first=202 second=350 amount=-1 +kerning first=202 second=347 amount=-1 +kerning first=202 second=346 amount=-1 +kerning first=202 second=344 amount=-1 +kerning first=202 second=338 amount=-1 +kerning first=202 second=336 amount=-1 +kerning first=202 second=334 amount=-1 +kerning first=202 second=332 amount=-1 +kerning first=106 second=8217 amount=-1 +kerning first=106 second=8220 amount=-1 +kerning first=106 second=8221 amount=-1 +kerning first=106 second=8249 amount=-2 +kerning first=202 second=331 amount=-1 +kerning first=202 second=330 amount=-1 +kerning first=202 second=328 amount=-1 +kerning first=202 second=327 amount=-1 +kerning first=202 second=326 amount=-1 +kerning first=107 second=44 amount=-1 +kerning first=107 second=45 amount=-2 +kerning first=107 second=46 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=98 amount=-1 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-1 +kerning first=202 second=325 amount=-1 +kerning first=107 second=111 amount=-2 +kerning first=107 second=112 amount=-1 +kerning first=107 second=113 amount=-2 +kerning first=107 second=115 amount=-1 +kerning first=107 second=116 amount=-1 +kerning first=202 second=324 amount=-1 +kerning first=107 second=118 amount=-1 +kerning first=107 second=119 amount=-1 +kerning first=202 second=323 amount=-1 +kerning first=202 second=318 amount=-1 +kerning first=107 second=171 amount=-2 +kerning first=107 second=224 amount=-1 +kerning first=107 second=225 amount=-1 +kerning first=107 second=226 amount=-1 +kerning first=107 second=227 amount=-1 +kerning first=107 second=228 amount=-1 +kerning first=107 second=229 amount=-1 +kerning first=107 second=230 amount=-1 +kerning first=107 second=231 amount=-2 +kerning first=107 second=232 amount=-2 +kerning first=107 second=233 amount=-2 +kerning first=107 second=234 amount=-2 +kerning first=107 second=235 amount=-2 +kerning first=107 second=240 amount=-2 +kerning first=107 second=242 amount=-2 +kerning first=107 second=243 amount=-2 +kerning first=107 second=244 amount=-2 +kerning first=107 second=245 amount=-2 +kerning first=107 second=246 amount=-2 +kerning first=107 second=248 amount=-2 +kerning first=202 second=317 amount=-1 +kerning first=202 second=316 amount=-1 +kerning first=202 second=315 amount=-1 +kerning first=202 second=314 amount=-1 +kerning first=202 second=313 amount=-1 +kerning first=107 second=254 amount=-1 +kerning first=202 second=311 amount=-1 +kerning first=107 second=257 amount=-1 +kerning first=107 second=259 amount=-1 +kerning first=107 second=261 amount=-1 +kerning first=107 second=263 amount=-2 +kerning first=107 second=267 amount=-2 +kerning first=107 second=269 amount=-2 +kerning first=107 second=271 amount=-2 +kerning first=107 second=273 amount=-2 +kerning first=107 second=275 amount=-2 +kerning first=107 second=277 amount=-2 +kerning first=107 second=279 amount=-2 +kerning first=107 second=281 amount=-2 +kerning first=107 second=283 amount=-2 +kerning first=107 second=287 amount=-1 +kerning first=107 second=289 amount=-1 +kerning first=107 second=291 amount=-1 +kerning first=107 second=333 amount=-2 +kerning first=107 second=335 amount=-2 +kerning first=107 second=337 amount=-2 +kerning first=107 second=339 amount=-2 +kerning first=107 second=347 amount=-1 +kerning first=107 second=351 amount=-1 +kerning first=107 second=353 amount=-1 +kerning first=107 second=355 amount=-1 +kerning first=202 second=310 amount=-1 +kerning first=202 second=304 amount=-1 +kerning first=202 second=302 amount=-1 +kerning first=202 second=298 amount=-1 +kerning first=202 second=296 amount=-1 +kerning first=202 second=291 amount=-2 +kerning first=202 second=290 amount=-1 +kerning first=202 second=289 amount=-2 +kerning first=202 second=288 amount=-1 +kerning first=202 second=287 amount=-2 +kerning first=202 second=286 amount=-1 +kerning first=202 second=284 amount=-1 +kerning first=202 second=282 amount=-1 +kerning first=202 second=280 amount=-1 +kerning first=202 second=278 amount=-1 +kerning first=202 second=274 amount=-1 +kerning first=202 second=270 amount=-1 +kerning first=202 second=268 amount=-1 +kerning first=202 second=266 amount=-1 +kerning first=202 second=264 amount=-1 +kerning first=107 second=8217 amount=-1 +kerning first=107 second=8220 amount=-1 +kerning first=107 second=8221 amount=-1 +kerning first=107 second=8249 amount=-2 +kerning first=108 second=45 amount=-2 +kerning first=108 second=97 amount=-1 +kerning first=108 second=98 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-2 +kerning first=202 second=262 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=108 second=106 amount=-2 +kerning first=202 second=261 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=108 second=110 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=115 amount=-1 +kerning first=108 second=116 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-2 +kerning first=108 second=119 amount=-2 +kerning first=108 second=120 amount=-1 +kerning first=108 second=121 amount=-2 +kerning first=108 second=122 amount=-1 +kerning first=108 second=171 amount=-2 +kerning first=108 second=224 amount=-1 +kerning first=108 second=225 amount=-1 +kerning first=108 second=226 amount=-1 +kerning first=108 second=227 amount=-1 +kerning first=108 second=228 amount=-1 +kerning first=108 second=229 amount=-1 +kerning first=108 second=230 amount=-1 +kerning first=108 second=231 amount=-1 +kerning first=108 second=232 amount=-1 +kerning first=108 second=233 amount=-1 +kerning first=108 second=234 amount=-1 +kerning first=108 second=235 amount=-1 +kerning first=108 second=237 amount=-1 +kerning first=108 second=240 amount=-1 +kerning first=108 second=241 amount=-1 +kerning first=108 second=242 amount=-1 +kerning first=108 second=243 amount=-1 +kerning first=108 second=244 amount=-1 +kerning first=108 second=245 amount=-1 +kerning first=108 second=246 amount=-1 +kerning first=108 second=248 amount=-1 +kerning first=108 second=249 amount=-1 +kerning first=108 second=250 amount=-1 +kerning first=108 second=251 amount=-1 +kerning first=108 second=252 amount=-1 +kerning first=108 second=253 amount=-2 +kerning first=108 second=254 amount=-1 +kerning first=108 second=255 amount=-2 +kerning first=108 second=257 amount=-1 +kerning first=108 second=259 amount=-1 +kerning first=108 second=261 amount=-1 +kerning first=108 second=263 amount=-1 +kerning first=108 second=267 amount=-1 +kerning first=108 second=269 amount=-1 +kerning first=108 second=271 amount=-1 +kerning first=108 second=273 amount=-1 +kerning first=108 second=275 amount=-1 +kerning first=108 second=277 amount=-1 +kerning first=108 second=279 amount=-1 +kerning first=108 second=281 amount=-1 +kerning first=108 second=283 amount=-1 +kerning first=108 second=287 amount=-2 +kerning first=108 second=289 amount=-2 +kerning first=108 second=291 amount=-2 +kerning first=108 second=303 amount=-1 +kerning first=108 second=305 amount=-1 +kerning first=108 second=307 amount=-1 +kerning first=202 second=260 amount=-1 +kerning first=108 second=314 amount=-1 +kerning first=108 second=316 amount=-1 +kerning first=108 second=318 amount=-1 +kerning first=108 second=324 amount=-1 +kerning first=108 second=326 amount=-1 +kerning first=108 second=328 amount=-1 +kerning first=108 second=331 amount=-1 +kerning first=108 second=333 amount=-1 +kerning first=108 second=335 amount=-1 +kerning first=108 second=337 amount=-1 +kerning first=108 second=339 amount=-1 +kerning first=108 second=347 amount=-1 +kerning first=108 second=351 amount=-1 +kerning first=108 second=353 amount=-1 +kerning first=108 second=355 amount=-1 +kerning first=108 second=361 amount=-1 +kerning first=108 second=363 amount=-1 +kerning first=108 second=365 amount=-1 +kerning first=108 second=367 amount=-1 +kerning first=108 second=369 amount=-1 +kerning first=108 second=371 amount=-1 +kerning first=108 second=375 amount=-2 +kerning first=108 second=378 amount=-1 +kerning first=108 second=380 amount=-1 +kerning first=108 second=382 amount=-1 +kerning first=202 second=259 amount=-1 +kerning first=202 second=257 amount=-1 +kerning first=202 second=256 amount=-1 +kerning first=202 second=254 amount=-1 +kerning first=202 second=252 amount=-1 +kerning first=202 second=251 amount=-1 +kerning first=202 second=250 amount=-1 +kerning first=202 second=249 amount=-1 +kerning first=202 second=241 amount=-1 +kerning first=202 second=230 amount=-1 +kerning first=202 second=229 amount=-1 +kerning first=202 second=228 amount=-1 +kerning first=202 second=227 amount=-1 +kerning first=108 second=8217 amount=-2 +kerning first=108 second=8220 amount=-2 +kerning first=108 second=8221 amount=-2 +kerning first=108 second=8249 amount=-2 +kerning first=202 second=226 amount=-1 +kerning first=202 second=225 amount=-1 +kerning first=202 second=224 amount=-1 +kerning first=202 second=223 amount=-1 +kerning first=202 second=221 amount=-1 +kerning first=109 second=44 amount=-1 +kerning first=109 second=45 amount=-2 +kerning first=109 second=46 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=98 amount=-1 +kerning first=202 second=220 amount=-1 +kerning first=202 second=219 amount=-1 +kerning first=202 second=218 amount=-1 +kerning first=202 second=217 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=202 second=216 amount=-1 +kerning first=109 second=106 amount=-1 +kerning first=109 second=108 amount=-1 +kerning first=202 second=214 amount=-1 +kerning first=202 second=213 amount=-1 +kerning first=202 second=212 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=202 second=211 amount=-1 +kerning first=109 second=115 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-2 +kerning first=109 second=119 amount=-2 +kerning first=202 second=210 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=202 second=209 amount=-1 +kerning first=109 second=171 amount=-2 +kerning first=109 second=224 amount=-1 +kerning first=109 second=225 amount=-1 +kerning first=109 second=226 amount=-1 +kerning first=109 second=227 amount=-1 +kerning first=109 second=228 amount=-1 +kerning first=109 second=229 amount=-1 +kerning first=109 second=230 amount=-1 +kerning first=202 second=207 amount=-1 +kerning first=202 second=206 amount=-1 +kerning first=202 second=205 amount=-1 +kerning first=202 second=204 amount=-1 +kerning first=202 second=203 amount=-1 +kerning first=202 second=202 amount=-1 +kerning first=202 second=201 amount=-1 +kerning first=202 second=200 amount=-1 +kerning first=202 second=199 amount=-1 +kerning first=202 second=198 amount=-1 +kerning first=202 second=197 amount=-1 +kerning first=202 second=196 amount=-1 +kerning first=202 second=194 amount=-1 +kerning first=202 second=193 amount=-1 +kerning first=109 second=249 amount=-1 +kerning first=109 second=250 amount=-1 +kerning first=109 second=251 amount=-1 +kerning first=109 second=252 amount=-1 +kerning first=109 second=253 amount=-1 +kerning first=109 second=254 amount=-1 +kerning first=109 second=255 amount=-1 +kerning first=109 second=257 amount=-1 +kerning first=109 second=259 amount=-1 +kerning first=109 second=261 amount=-1 +kerning first=202 second=192 amount=-1 +kerning first=202 second=171 amount=-1 +kerning first=202 second=122 amount=-1 +kerning first=202 second=120 amount=-1 +kerning first=202 second=119 amount=-1 +kerning first=202 second=118 amount=-1 +kerning first=202 second=117 amount=-1 +kerning first=202 second=115 amount=-1 +kerning first=202 second=112 amount=-1 +kerning first=202 second=110 amount=-1 +kerning first=109 second=287 amount=-1 +kerning first=109 second=289 amount=-1 +kerning first=109 second=291 amount=-1 +kerning first=202 second=109 amount=-1 +kerning first=202 second=108 amount=-1 +kerning first=202 second=107 amount=-1 +kerning first=109 second=314 amount=-1 +kerning first=109 second=316 amount=-1 +kerning first=109 second=318 amount=-1 +kerning first=202 second=104 amount=-1 +kerning first=202 second=103 amount=-2 +kerning first=202 second=102 amount=-1 +kerning first=202 second=98 amount=-1 +kerning first=202 second=97 amount=-1 +kerning first=202 second=90 amount=-1 +kerning first=202 second=89 amount=-1 +kerning first=202 second=87 amount=-1 +kerning first=109 second=347 amount=-1 +kerning first=109 second=351 amount=-1 +kerning first=109 second=353 amount=-1 +kerning first=109 second=361 amount=-1 +kerning first=109 second=363 amount=-1 +kerning first=109 second=365 amount=-1 +kerning first=109 second=367 amount=-1 +kerning first=109 second=369 amount=-1 +kerning first=109 second=371 amount=-1 +kerning first=109 second=375 amount=-1 +kerning first=202 second=86 amount=-1 +kerning first=202 second=85 amount=-1 +kerning first=202 second=84 amount=-1 +kerning first=202 second=83 amount=-1 +kerning first=202 second=82 amount=-1 +kerning first=202 second=81 amount=-1 +kerning first=202 second=80 amount=-1 +kerning first=202 second=79 amount=-1 +kerning first=202 second=78 amount=-1 +kerning first=202 second=77 amount=-1 +kerning first=202 second=76 amount=-1 +kerning first=202 second=75 amount=-1 +kerning first=202 second=74 amount=-1 +kerning first=109 second=8217 amount=-3 +kerning first=109 second=8220 amount=-3 +kerning first=109 second=8221 amount=-3 +kerning first=109 second=8249 amount=-2 +kerning first=202 second=73 amount=-1 +kerning first=202 second=72 amount=-1 +kerning first=202 second=71 amount=-1 +kerning first=202 second=70 amount=-1 +kerning first=202 second=69 amount=-1 +kerning first=110 second=44 amount=-1 +kerning first=110 second=45 amount=-2 +kerning first=110 second=46 amount=-1 +kerning first=110 second=97 amount=-1 +kerning first=110 second=98 amount=-1 +kerning first=202 second=68 amount=-1 +kerning first=202 second=67 amount=-1 +kerning first=202 second=66 amount=-1 +kerning first=202 second=65 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=202 second=46 amount=-1 +kerning first=110 second=106 amount=-1 +kerning first=110 second=108 amount=-1 +kerning first=202 second=45 amount=-1 +kerning first=202 second=44 amount=-1 +kerning first=201 second=8249 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=201 second=382 amount=-1 +kerning first=110 second=115 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-2 +kerning first=201 second=381 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=201 second=380 amount=-1 +kerning first=110 second=171 amount=-2 +kerning first=110 second=224 amount=-1 +kerning first=110 second=225 amount=-1 +kerning first=110 second=226 amount=-1 +kerning first=110 second=227 amount=-1 +kerning first=110 second=228 amount=-1 +kerning first=110 second=229 amount=-1 +kerning first=110 second=230 amount=-1 +kerning first=201 second=379 amount=-1 +kerning first=201 second=378 amount=-1 +kerning first=201 second=377 amount=-1 +kerning first=201 second=374 amount=-1 +kerning first=201 second=370 amount=-1 +kerning first=201 second=369 amount=-1 +kerning first=201 second=368 amount=-1 +kerning first=201 second=367 amount=-1 +kerning first=201 second=366 amount=-1 +kerning first=201 second=365 amount=-1 +kerning first=201 second=364 amount=-1 +kerning first=201 second=363 amount=-1 +kerning first=201 second=362 amount=-1 +kerning first=201 second=361 amount=-1 +kerning first=110 second=249 amount=-1 +kerning first=110 second=250 amount=-1 +kerning first=110 second=251 amount=-1 +kerning first=110 second=252 amount=-1 +kerning first=110 second=253 amount=-1 +kerning first=110 second=254 amount=-1 +kerning first=110 second=255 amount=-1 +kerning first=110 second=257 amount=-1 +kerning first=110 second=259 amount=-1 +kerning first=110 second=261 amount=-1 +kerning first=201 second=356 amount=-1 +kerning first=201 second=354 amount=-1 +kerning first=201 second=353 amount=-1 +kerning first=201 second=352 amount=-1 +kerning first=201 second=351 amount=-1 +kerning first=201 second=350 amount=-1 +kerning first=201 second=347 amount=-1 +kerning first=201 second=346 amount=-1 +kerning first=201 second=344 amount=-1 +kerning first=201 second=338 amount=-1 +kerning first=110 second=287 amount=-1 +kerning first=110 second=289 amount=-1 +kerning first=110 second=291 amount=-1 +kerning first=201 second=336 amount=-1 +kerning first=201 second=334 amount=-1 +kerning first=201 second=332 amount=-1 +kerning first=110 second=314 amount=-1 +kerning first=110 second=316 amount=-1 +kerning first=110 second=318 amount=-1 +kerning first=201 second=331 amount=-1 +kerning first=201 second=330 amount=-1 +kerning first=201 second=328 amount=-1 +kerning first=201 second=327 amount=-1 +kerning first=201 second=326 amount=-1 +kerning first=201 second=325 amount=-1 +kerning first=201 second=324 amount=-1 +kerning first=201 second=323 amount=-1 +kerning first=110 second=347 amount=-1 +kerning first=110 second=351 amount=-1 +kerning first=110 second=353 amount=-1 +kerning first=110 second=361 amount=-1 +kerning first=110 second=363 amount=-1 +kerning first=110 second=365 amount=-1 +kerning first=110 second=367 amount=-1 +kerning first=110 second=369 amount=-1 +kerning first=110 second=371 amount=-1 +kerning first=110 second=375 amount=-1 +kerning first=201 second=318 amount=-1 +kerning first=201 second=317 amount=-1 +kerning first=201 second=316 amount=-1 +kerning first=201 second=315 amount=-1 +kerning first=201 second=314 amount=-1 +kerning first=201 second=313 amount=-1 +kerning first=201 second=311 amount=-1 +kerning first=201 second=310 amount=-1 +kerning first=201 second=304 amount=-1 +kerning first=201 second=302 amount=-1 +kerning first=201 second=298 amount=-1 +kerning first=201 second=296 amount=-1 +kerning first=201 second=291 amount=-2 +kerning first=110 second=8217 amount=-3 +kerning first=110 second=8220 amount=-3 +kerning first=110 second=8221 amount=-3 +kerning first=110 second=8249 amount=-2 +kerning first=201 second=290 amount=-1 +kerning first=201 second=289 amount=-2 +kerning first=201 second=288 amount=-1 +kerning first=201 second=287 amount=-2 +kerning first=201 second=286 amount=-1 +kerning first=111 second=44 amount=-2 +kerning first=111 second=46 amount=-2 +kerning first=111 second=97 amount=-1 +kerning first=201 second=284 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=105 amount=-1 +kerning first=111 second=106 amount=-1 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-2 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=201 second=282 amount=-1 +kerning first=111 second=115 amount=-1 +kerning first=201 second=280 amount=-1 +kerning first=201 second=278 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-2 +kerning first=111 second=121 amount=-2 +kerning first=111 second=122 amount=-1 +kerning first=111 second=187 amount=-1 +kerning first=201 second=274 amount=-1 +kerning first=111 second=224 amount=-1 +kerning first=111 second=225 amount=-1 +kerning first=111 second=226 amount=-1 +kerning first=111 second=227 amount=-1 +kerning first=111 second=228 amount=-1 +kerning first=111 second=229 amount=-1 +kerning first=111 second=230 amount=-1 +kerning first=111 second=237 amount=-1 +kerning first=111 second=241 amount=-1 +kerning first=201 second=270 amount=-1 +kerning first=201 second=268 amount=-1 +kerning first=201 second=266 amount=-1 +kerning first=201 second=264 amount=-1 +kerning first=111 second=253 amount=-2 +kerning first=201 second=262 amount=-1 +kerning first=111 second=255 amount=-2 +kerning first=111 second=257 amount=-1 +kerning first=111 second=259 amount=-1 +kerning first=111 second=261 amount=-1 +kerning first=111 second=287 amount=-1 +kerning first=111 second=289 amount=-1 +kerning first=111 second=291 amount=-1 +kerning first=111 second=303 amount=-1 +kerning first=111 second=305 amount=-1 +kerning first=111 second=307 amount=-1 +kerning first=111 second=311 amount=-1 +kerning first=111 second=314 amount=-2 +kerning first=111 second=316 amount=-2 +kerning first=111 second=318 amount=-2 +kerning first=111 second=324 amount=-1 +kerning first=111 second=326 amount=-1 +kerning first=111 second=328 amount=-1 +kerning first=111 second=331 amount=-1 +kerning first=201 second=261 amount=-1 +kerning first=111 second=347 amount=-1 +kerning first=111 second=351 amount=-1 +kerning first=111 second=353 amount=-1 +kerning first=201 second=260 amount=-1 +kerning first=201 second=259 amount=-1 +kerning first=201 second=257 amount=-1 +kerning first=201 second=256 amount=-1 +kerning first=201 second=254 amount=-1 +kerning first=201 second=252 amount=-1 +kerning first=201 second=251 amount=-1 +kerning first=111 second=375 amount=-2 +kerning first=111 second=378 amount=-1 +kerning first=111 second=380 amount=-1 +kerning first=111 second=382 amount=-1 +kerning first=201 second=250 amount=-1 +kerning first=201 second=249 amount=-1 +kerning first=201 second=241 amount=-1 +kerning first=201 second=230 amount=-1 +kerning first=201 second=229 amount=-1 +kerning first=201 second=228 amount=-1 +kerning first=201 second=227 amount=-1 +kerning first=201 second=226 amount=-1 +kerning first=201 second=225 amount=-1 +kerning first=201 second=224 amount=-1 +kerning first=201 second=223 amount=-1 +kerning first=111 second=8217 amount=-1 +kerning first=111 second=8220 amount=-1 +kerning first=111 second=8221 amount=-1 +kerning first=111 second=8250 amount=-1 +kerning first=201 second=221 amount=-1 +kerning first=201 second=220 amount=-1 +kerning first=201 second=219 amount=-1 +kerning first=201 second=218 amount=-1 +kerning first=201 second=217 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=112 second=46 amount=-2 +kerning first=112 second=97 amount=-1 +kerning first=201 second=216 amount=-1 +kerning first=112 second=102 amount=-1 +kerning first=112 second=103 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=106 amount=-1 +kerning first=112 second=107 amount=-1 +kerning first=112 second=108 amount=-2 +kerning first=112 second=109 amount=-1 +kerning first=112 second=110 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=201 second=214 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=201 second=213 amount=-1 +kerning first=201 second=212 amount=-1 +kerning first=112 second=118 amount=-1 +kerning first=112 second=119 amount=-1 +kerning first=112 second=120 amount=-2 +kerning first=112 second=121 amount=-2 +kerning first=112 second=122 amount=-1 +kerning first=112 second=187 amount=-1 +kerning first=201 second=211 amount=-1 +kerning first=112 second=224 amount=-1 +kerning first=112 second=225 amount=-1 +kerning first=112 second=226 amount=-1 +kerning first=112 second=227 amount=-1 +kerning first=112 second=228 amount=-1 +kerning first=112 second=229 amount=-1 +kerning first=112 second=230 amount=-1 +kerning first=112 second=237 amount=-1 +kerning first=112 second=241 amount=-1 +kerning first=201 second=210 amount=-1 +kerning first=201 second=209 amount=-1 +kerning first=201 second=207 amount=-1 +kerning first=201 second=206 amount=-1 +kerning first=112 second=253 amount=-2 +kerning first=201 second=205 amount=-1 +kerning first=112 second=255 amount=-2 +kerning first=112 second=257 amount=-1 +kerning first=112 second=259 amount=-1 +kerning first=112 second=261 amount=-1 +kerning first=112 second=287 amount=-1 +kerning first=112 second=289 amount=-1 +kerning first=112 second=291 amount=-1 +kerning first=112 second=303 amount=-1 +kerning first=112 second=305 amount=-1 +kerning first=112 second=307 amount=-1 +kerning first=112 second=311 amount=-1 +kerning first=112 second=314 amount=-2 +kerning first=112 second=316 amount=-2 +kerning first=112 second=318 amount=-2 +kerning first=112 second=324 amount=-1 +kerning first=112 second=326 amount=-1 +kerning first=112 second=328 amount=-1 +kerning first=112 second=331 amount=-1 +kerning first=201 second=204 amount=-1 +kerning first=112 second=347 amount=-1 +kerning first=112 second=351 amount=-1 +kerning first=112 second=353 amount=-1 +kerning first=201 second=203 amount=-1 +kerning first=201 second=202 amount=-1 +kerning first=201 second=201 amount=-1 +kerning first=201 second=200 amount=-1 +kerning first=201 second=199 amount=-1 +kerning first=201 second=198 amount=-1 +kerning first=201 second=197 amount=-1 +kerning first=112 second=375 amount=-2 +kerning first=112 second=378 amount=-1 +kerning first=112 second=380 amount=-1 +kerning first=112 second=382 amount=-1 +kerning first=201 second=196 amount=-1 +kerning first=201 second=194 amount=-1 +kerning first=201 second=193 amount=-1 +kerning first=201 second=192 amount=-1 +kerning first=201 second=171 amount=-1 +kerning first=201 second=122 amount=-1 +kerning first=201 second=120 amount=-1 +kerning first=201 second=119 amount=-1 +kerning first=201 second=118 amount=-1 +kerning first=201 second=117 amount=-1 +kerning first=201 second=115 amount=-1 +kerning first=112 second=8217 amount=-1 +kerning first=112 second=8220 amount=-1 +kerning first=112 second=8221 amount=-1 +kerning first=112 second=8250 amount=-1 +kerning first=201 second=112 amount=-1 +kerning first=201 second=110 amount=-1 +kerning first=201 second=109 amount=-1 +kerning first=201 second=108 amount=-1 +kerning first=201 second=107 amount=-1 +kerning first=113 second=44 amount=-1 +kerning first=113 second=45 amount=-1 +kerning first=113 second=46 amount=-1 +kerning first=113 second=97 amount=-1 +kerning first=113 second=98 amount=-1 +kerning first=113 second=99 amount=-1 +kerning first=113 second=100 amount=-1 +kerning first=113 second=101 amount=-1 +kerning first=113 second=102 amount=-1 +kerning first=113 second=104 amount=-1 +kerning first=113 second=105 amount=-1 +kerning first=113 second=106 amount=3 +kerning first=113 second=107 amount=-1 +kerning first=113 second=108 amount=-1 +kerning first=113 second=109 amount=-1 +kerning first=113 second=110 amount=-1 +kerning first=113 second=111 amount=-1 +kerning first=113 second=113 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=113 second=115 amount=-1 +kerning first=113 second=116 amount=-1 +kerning first=113 second=117 amount=-1 +kerning first=113 second=118 amount=-2 +kerning first=113 second=119 amount=-2 +kerning first=113 second=120 amount=-1 +kerning first=113 second=121 amount=-1 +kerning first=113 second=122 amount=-1 +kerning first=113 second=171 amount=-1 +kerning first=113 second=223 amount=-1 +kerning first=113 second=224 amount=-1 +kerning first=113 second=225 amount=-1 +kerning first=113 second=226 amount=-1 +kerning first=113 second=227 amount=-1 +kerning first=113 second=228 amount=-1 +kerning first=113 second=229 amount=-1 +kerning first=113 second=230 amount=-1 +kerning first=113 second=231 amount=-1 +kerning first=113 second=232 amount=-1 +kerning first=113 second=233 amount=-1 +kerning first=113 second=234 amount=-1 +kerning first=113 second=235 amount=-1 +kerning first=113 second=237 amount=-1 +kerning first=113 second=240 amount=-1 +kerning first=113 second=241 amount=-1 +kerning first=113 second=242 amount=-1 +kerning first=113 second=243 amount=-1 +kerning first=113 second=244 amount=-1 +kerning first=113 second=245 amount=-1 +kerning first=113 second=246 amount=-1 +kerning first=113 second=248 amount=-1 +kerning first=113 second=249 amount=-1 +kerning first=113 second=250 amount=-1 +kerning first=113 second=251 amount=-1 +kerning first=113 second=252 amount=-1 +kerning first=113 second=253 amount=-1 +kerning first=113 second=254 amount=-1 +kerning first=113 second=255 amount=-1 +kerning first=113 second=257 amount=-1 +kerning first=113 second=259 amount=-1 +kerning first=113 second=261 amount=-1 +kerning first=113 second=263 amount=-1 +kerning first=113 second=267 amount=-1 +kerning first=113 second=269 amount=-1 +kerning first=113 second=271 amount=-1 +kerning first=113 second=273 amount=-1 +kerning first=113 second=275 amount=-1 +kerning first=113 second=277 amount=-1 +kerning first=113 second=279 amount=-1 +kerning first=113 second=281 amount=-1 +kerning first=113 second=283 amount=-1 +kerning first=113 second=303 amount=-1 +kerning first=113 second=305 amount=-1 +kerning first=113 second=307 amount=-1 +kerning first=113 second=311 amount=-1 +kerning first=113 second=314 amount=-1 +kerning first=113 second=316 amount=-1 +kerning first=113 second=318 amount=-1 +kerning first=113 second=324 amount=-1 +kerning first=113 second=326 amount=-1 +kerning first=113 second=328 amount=-1 +kerning first=113 second=331 amount=-1 +kerning first=113 second=333 amount=-1 +kerning first=113 second=335 amount=-1 +kerning first=113 second=337 amount=-1 +kerning first=113 second=339 amount=-1 +kerning first=113 second=345 amount=-1 +kerning first=113 second=347 amount=-1 +kerning first=113 second=351 amount=-1 +kerning first=113 second=353 amount=-1 +kerning first=113 second=355 amount=-1 +kerning first=113 second=361 amount=-1 +kerning first=113 second=363 amount=-1 +kerning first=113 second=365 amount=-1 +kerning first=113 second=367 amount=-1 +kerning first=113 second=369 amount=-1 +kerning first=113 second=371 amount=-1 +kerning first=113 second=375 amount=-1 +kerning first=113 second=378 amount=-1 +kerning first=113 second=380 amount=-1 +kerning first=113 second=382 amount=-1 +kerning first=201 second=104 amount=-1 +kerning first=201 second=103 amount=-2 +kerning first=201 second=102 amount=-1 +kerning first=201 second=98 amount=-1 +kerning first=201 second=97 amount=-1 +kerning first=201 second=90 amount=-1 +kerning first=201 second=89 amount=-1 +kerning first=201 second=87 amount=-1 +kerning first=201 second=86 amount=-1 +kerning first=201 second=85 amount=-1 +kerning first=201 second=84 amount=-1 +kerning first=201 second=83 amount=-1 +kerning first=113 second=8217 amount=-2 +kerning first=113 second=8220 amount=-2 +kerning first=113 second=8221 amount=-2 +kerning first=113 second=8249 amount=-1 +kerning first=201 second=82 amount=-1 +kerning first=201 second=81 amount=-1 +kerning first=201 second=80 amount=-1 +kerning first=201 second=79 amount=-1 +kerning first=201 second=78 amount=-1 +kerning first=114 second=44 amount=-3 +kerning first=114 second=45 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=201 second=77 amount=-1 +kerning first=201 second=76 amount=-1 +kerning first=201 second=75 amount=-1 +kerning first=201 second=74 amount=-1 +kerning first=114 second=103 amount=-1 +kerning first=201 second=73 amount=-1 +kerning first=201 second=72 amount=-1 +kerning first=201 second=71 amount=-1 +kerning first=201 second=70 amount=-1 +kerning first=114 second=171 amount=-1 +kerning first=201 second=69 amount=-1 +kerning first=201 second=68 amount=-1 +kerning first=201 second=67 amount=-1 +kerning first=201 second=66 amount=-1 +kerning first=201 second=65 amount=-1 +kerning first=201 second=46 amount=-1 +kerning first=201 second=45 amount=-1 +kerning first=201 second=44 amount=-1 +kerning first=200 second=8249 amount=-1 +kerning first=200 second=382 amount=-1 +kerning first=200 second=381 amount=-1 +kerning first=200 second=380 amount=-1 +kerning first=200 second=379 amount=-1 +kerning first=200 second=378 amount=-1 +kerning first=200 second=377 amount=-1 +kerning first=200 second=374 amount=-1 +kerning first=200 second=370 amount=-1 +kerning first=200 second=369 amount=-1 +kerning first=200 second=368 amount=-1 +kerning first=200 second=367 amount=-1 +kerning first=200 second=366 amount=-1 +kerning first=200 second=365 amount=-1 +kerning first=200 second=364 amount=-1 +kerning first=200 second=363 amount=-1 +kerning first=200 second=362 amount=-1 +kerning first=200 second=361 amount=-1 +kerning first=200 second=356 amount=-1 +kerning first=200 second=354 amount=-1 +kerning first=200 second=353 amount=-1 +kerning first=200 second=352 amount=-1 +kerning first=200 second=351 amount=-1 +kerning first=200 second=350 amount=-1 +kerning first=114 second=287 amount=-1 +kerning first=114 second=289 amount=-1 +kerning first=114 second=291 amount=-1 +kerning first=200 second=347 amount=-1 +kerning first=200 second=346 amount=-1 +kerning first=200 second=344 amount=-1 +kerning first=200 second=338 amount=-1 +kerning first=200 second=336 amount=-1 +kerning first=200 second=334 amount=-1 +kerning first=200 second=332 amount=-1 +kerning first=200 second=331 amount=-1 +kerning first=200 second=330 amount=-1 +kerning first=200 second=328 amount=-1 +kerning first=200 second=327 amount=-1 +kerning first=200 second=326 amount=-1 +kerning first=114 second=8249 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=115 second=45 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=97 amount=-1 +kerning first=115 second=98 amount=-1 +kerning first=200 second=325 amount=-1 +kerning first=200 second=324 amount=-1 +kerning first=200 second=323 amount=-1 +kerning first=115 second=102 amount=-1 +kerning first=115 second=103 amount=-2 +kerning first=115 second=104 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=115 second=106 amount=-1 +kerning first=115 second=107 amount=-1 +kerning first=115 second=108 amount=-1 +kerning first=115 second=109 amount=-1 +kerning first=115 second=110 amount=-1 +kerning first=200 second=318 amount=-1 +kerning first=115 second=112 amount=-2 +kerning first=200 second=317 amount=-1 +kerning first=115 second=114 amount=-1 +kerning first=115 second=115 amount=-2 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=118 amount=-2 +kerning first=115 second=119 amount=-2 +kerning first=115 second=120 amount=-2 +kerning first=115 second=121 amount=-2 +kerning first=115 second=122 amount=-1 +kerning first=115 second=171 amount=-1 +kerning first=115 second=223 amount=-1 +kerning first=115 second=224 amount=-1 +kerning first=115 second=225 amount=-1 +kerning first=115 second=226 amount=-1 +kerning first=115 second=227 amount=-1 +kerning first=115 second=228 amount=-1 +kerning first=115 second=229 amount=-1 +kerning first=115 second=230 amount=-1 +kerning first=200 second=316 amount=-1 +kerning first=200 second=315 amount=-1 +kerning first=200 second=314 amount=-1 +kerning first=200 second=313 amount=-1 +kerning first=200 second=311 amount=-1 +kerning first=115 second=237 amount=-1 +kerning first=200 second=310 amount=-1 +kerning first=115 second=241 amount=-1 +kerning first=200 second=304 amount=-1 +kerning first=200 second=302 amount=-1 +kerning first=200 second=298 amount=-1 +kerning first=200 second=296 amount=-1 +kerning first=200 second=291 amount=-2 +kerning first=200 second=290 amount=-1 +kerning first=115 second=249 amount=-1 +kerning first=115 second=250 amount=-1 +kerning first=115 second=251 amount=-1 +kerning first=115 second=252 amount=-1 +kerning first=115 second=253 amount=-2 +kerning first=115 second=254 amount=-1 +kerning first=115 second=255 amount=-2 +kerning first=115 second=257 amount=-1 +kerning first=115 second=259 amount=-1 +kerning first=115 second=261 amount=-1 +kerning first=200 second=289 amount=-2 +kerning first=200 second=288 amount=-1 +kerning first=200 second=287 amount=-2 +kerning first=200 second=286 amount=-1 +kerning first=200 second=284 amount=-1 +kerning first=200 second=282 amount=-1 +kerning first=200 second=280 amount=-1 +kerning first=200 second=278 amount=-1 +kerning first=200 second=274 amount=-1 +kerning first=200 second=270 amount=-1 +kerning first=115 second=287 amount=-2 +kerning first=115 second=289 amount=-2 +kerning first=115 second=291 amount=-2 +kerning first=115 second=303 amount=-1 +kerning first=115 second=305 amount=-1 +kerning first=115 second=307 amount=-1 +kerning first=115 second=311 amount=-1 +kerning first=115 second=314 amount=-1 +kerning first=115 second=316 amount=-1 +kerning first=115 second=318 amount=-1 +kerning first=115 second=324 amount=-1 +kerning first=115 second=326 amount=-1 +kerning first=115 second=328 amount=-1 +kerning first=115 second=331 amount=-1 +kerning first=200 second=268 amount=-1 +kerning first=200 second=266 amount=-1 +kerning first=200 second=264 amount=-1 +kerning first=200 second=262 amount=-1 +kerning first=115 second=345 amount=-1 +kerning first=115 second=347 amount=-2 +kerning first=115 second=351 amount=-2 +kerning first=115 second=353 amount=-2 +kerning first=115 second=355 amount=-1 +kerning first=115 second=361 amount=-1 +kerning first=115 second=363 amount=-1 +kerning first=115 second=365 amount=-1 +kerning first=115 second=367 amount=-1 +kerning first=115 second=369 amount=-1 +kerning first=115 second=371 amount=-1 +kerning first=115 second=375 amount=-2 +kerning first=115 second=378 amount=-1 +kerning first=115 second=380 amount=-1 +kerning first=115 second=382 amount=-1 +kerning first=200 second=261 amount=-1 +kerning first=200 second=260 amount=-1 +kerning first=200 second=259 amount=-1 +kerning first=200 second=257 amount=-1 +kerning first=200 second=256 amount=-1 +kerning first=200 second=254 amount=-1 +kerning first=200 second=252 amount=-1 +kerning first=200 second=251 amount=-1 +kerning first=200 second=250 amount=-1 +kerning first=200 second=249 amount=-1 +kerning first=200 second=241 amount=-1 +kerning first=200 second=230 amount=-1 +kerning first=200 second=229 amount=-1 +kerning first=115 second=8217 amount=-1 +kerning first=115 second=8220 amount=-1 +kerning first=115 second=8221 amount=-1 +kerning first=115 second=8249 amount=-1 +kerning first=200 second=228 amount=-1 +kerning first=200 second=227 amount=-1 +kerning first=200 second=226 amount=-1 +kerning first=200 second=225 amount=-1 +kerning first=200 second=224 amount=-1 +kerning first=116 second=45 amount=-1 +kerning first=200 second=223 amount=-1 +kerning first=200 second=221 amount=-1 +kerning first=200 second=220 amount=-1 +kerning first=200 second=219 amount=-1 +kerning first=200 second=218 amount=-1 +kerning first=116 second=103 amount=-1 +kerning first=200 second=217 amount=-1 +kerning first=116 second=108 amount=-1 +kerning first=200 second=216 amount=-1 +kerning first=200 second=214 amount=-1 +kerning first=200 second=213 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=200 second=212 amount=-1 +kerning first=200 second=211 amount=-1 +kerning first=116 second=118 amount=-1 +kerning first=116 second=119 amount=-1 +kerning first=116 second=120 amount=-1 +kerning first=116 second=121 amount=-1 +kerning first=116 second=122 amount=-1 +kerning first=116 second=171 amount=-1 +kerning first=200 second=210 amount=-1 +kerning first=200 second=209 amount=-1 +kerning first=200 second=207 amount=-1 +kerning first=200 second=206 amount=-1 +kerning first=200 second=205 amount=-1 +kerning first=200 second=204 amount=-1 +kerning first=200 second=203 amount=-1 +kerning first=200 second=202 amount=-1 +kerning first=200 second=201 amount=-1 +kerning first=200 second=200 amount=-1 +kerning first=200 second=199 amount=-1 +kerning first=200 second=198 amount=-1 +kerning first=200 second=197 amount=-1 +kerning first=200 second=196 amount=-1 +kerning first=200 second=194 amount=-1 +kerning first=200 second=193 amount=-1 +kerning first=200 second=192 amount=-1 +kerning first=200 second=171 amount=-1 +kerning first=200 second=122 amount=-1 +kerning first=200 second=120 amount=-1 +kerning first=200 second=119 amount=-1 +kerning first=200 second=118 amount=-1 +kerning first=200 second=117 amount=-1 +kerning first=200 second=115 amount=-1 +kerning first=116 second=253 amount=-1 +kerning first=200 second=112 amount=-1 +kerning first=116 second=255 amount=-1 +kerning first=200 second=110 amount=-1 +kerning first=200 second=109 amount=-1 +kerning first=200 second=108 amount=-1 +kerning first=200 second=107 amount=-1 +kerning first=200 second=104 amount=-1 +kerning first=200 second=103 amount=-2 +kerning first=200 second=102 amount=-1 +kerning first=200 second=98 amount=-1 +kerning first=200 second=97 amount=-1 +kerning first=200 second=90 amount=-1 +kerning first=200 second=89 amount=-1 +kerning first=200 second=87 amount=-1 +kerning first=200 second=86 amount=-1 +kerning first=116 second=287 amount=-1 +kerning first=116 second=289 amount=-1 +kerning first=116 second=291 amount=-1 +kerning first=200 second=85 amount=-1 +kerning first=200 second=84 amount=-1 +kerning first=116 second=314 amount=-1 +kerning first=116 second=316 amount=-1 +kerning first=116 second=318 amount=-1 +kerning first=200 second=83 amount=-1 +kerning first=200 second=82 amount=-1 +kerning first=200 second=81 amount=-1 +kerning first=200 second=80 amount=-1 +kerning first=116 second=347 amount=-1 +kerning first=116 second=351 amount=-1 +kerning first=116 second=353 amount=-1 +kerning first=200 second=79 amount=-1 +kerning first=200 second=78 amount=-1 +kerning first=200 second=77 amount=-1 +kerning first=200 second=76 amount=-1 +kerning first=200 second=75 amount=-1 +kerning first=200 second=74 amount=-1 +kerning first=200 second=73 amount=-1 +kerning first=116 second=375 amount=-1 +kerning first=116 second=378 amount=-1 +kerning first=116 second=380 amount=-1 +kerning first=116 second=382 amount=-1 +kerning first=200 second=72 amount=-1 +kerning first=200 second=71 amount=-1 +kerning first=200 second=70 amount=-1 +kerning first=200 second=69 amount=-1 +kerning first=200 second=68 amount=-1 +kerning first=200 second=67 amount=-1 +kerning first=200 second=66 amount=-1 +kerning first=200 second=65 amount=-1 +kerning first=200 second=46 amount=-1 +kerning first=200 second=45 amount=-1 +kerning first=116 second=8249 amount=-1 +kerning first=117 second=44 amount=-1 +kerning first=117 second=45 amount=-1 +kerning first=117 second=46 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=98 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=102 amount=-1 +kerning first=117 second=103 amount=-2 +kerning first=117 second=104 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=117 second=106 amount=-1 +kerning first=117 second=107 amount=-1 +kerning first=117 second=108 amount=-2 +kerning first=117 second=109 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=200 second=44 amount=-1 +kerning first=117 second=115 amount=-1 +kerning first=199 second=8249 amount=-3 +kerning first=117 second=117 amount=-1 +kerning first=117 second=118 amount=-2 +kerning first=117 second=119 amount=-2 +kerning first=117 second=120 amount=-1 +kerning first=117 second=121 amount=-2 +kerning first=117 second=122 amount=-1 +kerning first=117 second=171 amount=-1 +kerning first=199 second=382 amount=-2 +kerning first=199 second=381 amount=-1 +kerning first=117 second=225 amount=-1 +kerning first=117 second=226 amount=-1 +kerning first=117 second=227 amount=-1 +kerning first=199 second=380 amount=-2 +kerning first=117 second=229 amount=-1 +kerning first=117 second=230 amount=-1 +kerning first=117 second=231 amount=-1 +kerning first=117 second=232 amount=-1 +kerning first=117 second=233 amount=-1 +kerning first=117 second=234 amount=-1 +kerning first=117 second=235 amount=-1 +kerning first=117 second=237 amount=-1 +kerning first=117 second=240 amount=-1 +kerning first=117 second=241 amount=-1 +kerning first=117 second=242 amount=-1 +kerning first=117 second=243 amount=-1 +kerning first=117 second=244 amount=-1 +kerning first=117 second=245 amount=-1 +kerning first=117 second=246 amount=-1 +kerning first=117 second=248 amount=-1 +kerning first=117 second=249 amount=-1 +kerning first=117 second=250 amount=-1 +kerning first=117 second=251 amount=-1 +kerning first=117 second=252 amount=-1 +kerning first=117 second=253 amount=-2 +kerning first=117 second=254 amount=-1 +kerning first=117 second=255 amount=-2 +kerning first=117 second=257 amount=-1 +kerning first=117 second=259 amount=-1 +kerning first=117 second=261 amount=-1 +kerning first=117 second=263 amount=-1 +kerning first=117 second=267 amount=-1 +kerning first=117 second=269 amount=-1 +kerning first=117 second=271 amount=-1 +kerning first=117 second=273 amount=-1 +kerning first=117 second=275 amount=-1 +kerning first=117 second=277 amount=-1 +kerning first=117 second=279 amount=-1 +kerning first=117 second=281 amount=-1 +kerning first=117 second=283 amount=-1 +kerning first=117 second=287 amount=-2 +kerning first=117 second=289 amount=-2 +kerning first=117 second=291 amount=-2 +kerning first=117 second=303 amount=-1 +kerning first=117 second=305 amount=-1 +kerning first=117 second=307 amount=-1 +kerning first=117 second=311 amount=-1 +kerning first=117 second=314 amount=-2 +kerning first=117 second=316 amount=-2 +kerning first=117 second=318 amount=-2 +kerning first=117 second=324 amount=-1 +kerning first=117 second=326 amount=-1 +kerning first=117 second=328 amount=-1 +kerning first=117 second=331 amount=-1 +kerning first=117 second=333 amount=-1 +kerning first=117 second=335 amount=-1 +kerning first=117 second=337 amount=-1 +kerning first=117 second=339 amount=-1 +kerning first=199 second=379 amount=-1 +kerning first=117 second=347 amount=-1 +kerning first=117 second=351 amount=-1 +kerning first=117 second=353 amount=-1 +kerning first=199 second=378 amount=-2 +kerning first=117 second=361 amount=-1 +kerning first=117 second=363 amount=-1 +kerning first=117 second=365 amount=-1 +kerning first=117 second=367 amount=-1 +kerning first=117 second=369 amount=-1 +kerning first=117 second=371 amount=-1 +kerning first=117 second=375 amount=-2 +kerning first=117 second=378 amount=-1 +kerning first=117 second=380 amount=-1 +kerning first=117 second=382 amount=-1 +kerning first=199 second=377 amount=-1 +kerning first=199 second=374 amount=-1 +kerning first=199 second=370 amount=-1 +kerning first=199 second=369 amount=-1 +kerning first=199 second=368 amount=-1 +kerning first=199 second=367 amount=-1 +kerning first=199 second=366 amount=-1 +kerning first=199 second=365 amount=-1 +kerning first=199 second=364 amount=-1 +kerning first=199 second=363 amount=-1 +kerning first=199 second=362 amount=-1 +kerning first=199 second=361 amount=-1 +kerning first=199 second=356 amount=-1 +kerning first=117 second=8217 amount=-2 +kerning first=117 second=8220 amount=-2 +kerning first=117 second=8221 amount=-2 +kerning first=117 second=8249 amount=-1 +kerning first=199 second=354 amount=-1 +kerning first=199 second=353 amount=-1 +kerning first=199 second=352 amount=-2 +kerning first=199 second=351 amount=-1 +kerning first=199 second=350 amount=-2 +kerning first=118 second=44 amount=-4 +kerning first=118 second=45 amount=-3 +kerning first=118 second=46 amount=-4 +kerning first=118 second=97 amount=-2 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-2 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-2 +kerning first=118 second=104 amount=-1 +kerning first=118 second=105 amount=-1 +kerning first=118 second=106 amount=-1 +kerning first=118 second=107 amount=-1 +kerning first=118 second=108 amount=-2 +kerning first=118 second=109 amount=-1 +kerning first=118 second=110 amount=-1 +kerning first=118 second=111 amount=-2 +kerning first=118 second=112 amount=-1 +kerning first=118 second=113 amount=-2 +kerning first=118 second=114 amount=-1 +kerning first=118 second=115 amount=-2 +kerning first=118 second=116 amount=-1 +kerning first=199 second=347 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=119 amount=-1 +kerning first=118 second=120 amount=-1 +kerning first=118 second=122 amount=-2 +kerning first=118 second=171 amount=-3 +kerning first=118 second=223 amount=-1 +kerning first=118 second=224 amount=-2 +kerning first=118 second=225 amount=-2 +kerning first=118 second=226 amount=-2 +kerning first=118 second=227 amount=-2 +kerning first=118 second=228 amount=-2 +kerning first=118 second=229 amount=-2 +kerning first=118 second=230 amount=-2 +kerning first=118 second=231 amount=-2 +kerning first=118 second=232 amount=-2 +kerning first=118 second=233 amount=-2 +kerning first=118 second=234 amount=-2 +kerning first=118 second=235 amount=-2 +kerning first=118 second=237 amount=-1 +kerning first=118 second=240 amount=-2 +kerning first=118 second=241 amount=-1 +kerning first=118 second=242 amount=-2 +kerning first=118 second=243 amount=-2 +kerning first=118 second=244 amount=-2 +kerning first=118 second=245 amount=-2 +kerning first=118 second=246 amount=-2 +kerning first=118 second=248 amount=-2 +kerning first=199 second=346 amount=-2 +kerning first=199 second=345 amount=-1 +kerning first=199 second=344 amount=-2 +kerning first=199 second=339 amount=-1 +kerning first=118 second=254 amount=-1 +kerning first=118 second=257 amount=-2 +kerning first=118 second=259 amount=-2 +kerning first=118 second=261 amount=-2 +kerning first=118 second=263 amount=-2 +kerning first=118 second=267 amount=-2 +kerning first=118 second=269 amount=-2 +kerning first=118 second=271 amount=-2 +kerning first=118 second=273 amount=-2 +kerning first=118 second=275 amount=-2 +kerning first=118 second=277 amount=-2 +kerning first=118 second=279 amount=-2 +kerning first=118 second=281 amount=-2 +kerning first=118 second=283 amount=-2 +kerning first=118 second=287 amount=-2 +kerning first=118 second=289 amount=-2 +kerning first=118 second=291 amount=-2 +kerning first=118 second=303 amount=-1 +kerning first=118 second=305 amount=-1 +kerning first=118 second=307 amount=-1 +kerning first=118 second=311 amount=-1 +kerning first=118 second=314 amount=-2 +kerning first=118 second=316 amount=-2 +kerning first=118 second=318 amount=-2 +kerning first=118 second=324 amount=-1 +kerning first=118 second=326 amount=-1 +kerning first=118 second=328 amount=-1 +kerning first=118 second=331 amount=-1 +kerning first=118 second=333 amount=-2 +kerning first=118 second=335 amount=-2 +kerning first=118 second=337 amount=-2 +kerning first=118 second=339 amount=-2 +kerning first=118 second=345 amount=-1 +kerning first=118 second=347 amount=-2 +kerning first=118 second=351 amount=-2 +kerning first=118 second=353 amount=-2 +kerning first=118 second=355 amount=-1 +kerning first=199 second=338 amount=-2 +kerning first=199 second=337 amount=-1 +kerning first=199 second=336 amount=-2 +kerning first=199 second=335 amount=-1 +kerning first=199 second=334 amount=-2 +kerning first=199 second=333 amount=-1 +kerning first=118 second=378 amount=-2 +kerning first=118 second=380 amount=-2 +kerning first=118 second=382 amount=-2 +kerning first=199 second=332 amount=-2 +kerning first=199 second=331 amount=-1 +kerning first=199 second=330 amount=-2 +kerning first=199 second=328 amount=-1 +kerning first=199 second=327 amount=-2 +kerning first=199 second=326 amount=-1 +kerning first=199 second=325 amount=-2 +kerning first=199 second=324 amount=-1 +kerning first=199 second=323 amount=-2 +kerning first=199 second=318 amount=-1 +kerning first=199 second=317 amount=-2 +kerning first=118 second=8249 amount=-3 +kerning first=119 second=44 amount=-4 +kerning first=119 second=45 amount=-3 +kerning first=119 second=46 amount=-4 +kerning first=119 second=97 amount=-2 +kerning first=119 second=98 amount=-1 +kerning first=119 second=99 amount=-2 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=119 second=106 amount=-1 +kerning first=119 second=107 amount=-1 +kerning first=119 second=108 amount=-2 +kerning first=119 second=109 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=119 second=111 amount=-2 +kerning first=119 second=112 amount=-1 +kerning first=119 second=113 amount=-2 +kerning first=119 second=114 amount=-1 +kerning first=119 second=115 amount=-2 +kerning first=119 second=116 amount=-1 +kerning first=199 second=316 amount=-1 +kerning first=119 second=118 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=122 amount=-2 +kerning first=119 second=171 amount=-3 +kerning first=119 second=223 amount=-1 +kerning first=119 second=224 amount=-2 +kerning first=119 second=225 amount=-2 +kerning first=119 second=226 amount=-2 +kerning first=119 second=227 amount=-2 +kerning first=119 second=228 amount=-2 +kerning first=119 second=229 amount=-2 +kerning first=119 second=230 amount=-2 +kerning first=119 second=231 amount=-2 +kerning first=119 second=232 amount=-2 +kerning first=119 second=233 amount=-2 +kerning first=119 second=234 amount=-2 +kerning first=119 second=235 amount=-2 +kerning first=119 second=237 amount=-1 +kerning first=119 second=240 amount=-2 +kerning first=119 second=241 amount=-1 +kerning first=119 second=242 amount=-2 +kerning first=119 second=243 amount=-2 +kerning first=119 second=244 amount=-2 +kerning first=119 second=245 amount=-2 +kerning first=119 second=246 amount=-2 +kerning first=119 second=248 amount=-2 +kerning first=199 second=315 amount=-2 +kerning first=199 second=314 amount=-1 +kerning first=199 second=313 amount=-2 +kerning first=199 second=311 amount=-1 +kerning first=119 second=254 amount=-1 +kerning first=119 second=257 amount=-2 +kerning first=119 second=259 amount=-2 +kerning first=119 second=261 amount=-2 +kerning first=119 second=263 amount=-2 +kerning first=119 second=267 amount=-2 +kerning first=119 second=269 amount=-2 +kerning first=119 second=271 amount=-2 +kerning first=119 second=273 amount=-2 +kerning first=119 second=275 amount=-2 +kerning first=119 second=277 amount=-2 +kerning first=119 second=279 amount=-2 +kerning first=119 second=281 amount=-2 +kerning first=119 second=283 amount=-2 +kerning first=119 second=287 amount=-2 +kerning first=119 second=289 amount=-2 +kerning first=119 second=291 amount=-2 +kerning first=119 second=303 amount=-1 +kerning first=119 second=305 amount=-1 +kerning first=119 second=307 amount=-1 +kerning first=119 second=311 amount=-1 +kerning first=119 second=314 amount=-2 +kerning first=119 second=316 amount=-2 +kerning first=119 second=318 amount=-2 +kerning first=119 second=324 amount=-1 +kerning first=119 second=326 amount=-1 +kerning first=119 second=328 amount=-1 +kerning first=119 second=331 amount=-1 +kerning first=119 second=333 amount=-2 +kerning first=119 second=335 amount=-2 +kerning first=119 second=337 amount=-2 +kerning first=119 second=339 amount=-2 +kerning first=119 second=345 amount=-1 +kerning first=119 second=347 amount=-2 +kerning first=119 second=351 amount=-2 +kerning first=119 second=353 amount=-2 +kerning first=119 second=355 amount=-1 +kerning first=199 second=310 amount=-2 +kerning first=199 second=305 amount=-1 +kerning first=199 second=304 amount=-2 +kerning first=199 second=303 amount=-1 +kerning first=199 second=302 amount=-2 +kerning first=199 second=298 amount=-2 +kerning first=119 second=378 amount=-2 +kerning first=119 second=380 amount=-2 +kerning first=119 second=382 amount=-2 +kerning first=199 second=296 amount=-2 +kerning first=199 second=291 amount=-2 +kerning first=199 second=290 amount=-2 +kerning first=199 second=289 amount=-2 +kerning first=199 second=288 amount=-2 +kerning first=199 second=287 amount=-2 +kerning first=199 second=286 amount=-2 +kerning first=199 second=284 amount=-2 +kerning first=199 second=283 amount=-1 +kerning first=199 second=282 amount=-2 +kerning first=199 second=281 amount=-1 +kerning first=119 second=8249 amount=-3 +kerning first=120 second=44 amount=-1 +kerning first=120 second=45 amount=-2 +kerning first=120 second=46 amount=-1 +kerning first=120 second=97 amount=-2 +kerning first=120 second=98 amount=-2 +kerning first=120 second=99 amount=-1 +kerning first=120 second=100 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=199 second=280 amount=-2 +kerning first=120 second=103 amount=-1 +kerning first=199 second=279 amount=-1 +kerning first=199 second=278 amount=-2 +kerning first=199 second=277 amount=-1 +kerning first=199 second=275 amount=-1 +kerning first=120 second=111 amount=-1 +kerning first=120 second=112 amount=-2 +kerning first=120 second=113 amount=-1 +kerning first=120 second=115 amount=-2 +kerning first=120 second=116 amount=-1 +kerning first=120 second=117 amount=-2 +kerning first=120 second=118 amount=-2 +kerning first=120 second=119 amount=-2 +kerning first=199 second=274 amount=-2 +kerning first=120 second=121 amount=-2 +kerning first=120 second=122 amount=-1 +kerning first=120 second=171 amount=-2 +kerning first=120 second=224 amount=-2 +kerning first=120 second=225 amount=-2 +kerning first=120 second=226 amount=-2 +kerning first=120 second=227 amount=-2 +kerning first=120 second=228 amount=-2 +kerning first=120 second=229 amount=-2 +kerning first=120 second=230 amount=-2 +kerning first=120 second=231 amount=-1 +kerning first=120 second=232 amount=-1 +kerning first=120 second=233 amount=-1 +kerning first=120 second=234 amount=-1 +kerning first=120 second=235 amount=-1 +kerning first=199 second=270 amount=-2 +kerning first=120 second=240 amount=-1 +kerning first=199 second=269 amount=-1 +kerning first=120 second=242 amount=-1 +kerning first=120 second=243 amount=-1 +kerning first=120 second=244 amount=-1 +kerning first=120 second=245 amount=-1 +kerning first=120 second=246 amount=-1 +kerning first=120 second=248 amount=-1 +kerning first=120 second=249 amount=-2 +kerning first=120 second=250 amount=-2 +kerning first=120 second=251 amount=-2 +kerning first=120 second=252 amount=-2 +kerning first=120 second=253 amount=-2 +kerning first=120 second=254 amount=-2 +kerning first=120 second=255 amount=-2 +kerning first=120 second=257 amount=-2 +kerning first=120 second=259 amount=-2 +kerning first=120 second=261 amount=-2 +kerning first=120 second=263 amount=-1 +kerning first=120 second=267 amount=-1 +kerning first=120 second=269 amount=-1 +kerning first=120 second=271 amount=-1 +kerning first=120 second=273 amount=-1 +kerning first=120 second=275 amount=-1 +kerning first=120 second=277 amount=-1 +kerning first=120 second=279 amount=-1 +kerning first=120 second=281 amount=-1 +kerning first=120 second=283 amount=-1 +kerning first=120 second=287 amount=-1 +kerning first=120 second=289 amount=-1 +kerning first=120 second=291 amount=-1 +kerning first=199 second=268 amount=-2 +kerning first=199 second=267 amount=-1 +kerning first=199 second=266 amount=-2 +kerning first=199 second=264 amount=-2 +kerning first=199 second=263 amount=-1 +kerning first=199 second=262 amount=-2 +kerning first=199 second=261 amount=-1 +kerning first=199 second=260 amount=-2 +kerning first=199 second=259 amount=-1 +kerning first=199 second=257 amount=-1 +kerning first=120 second=333 amount=-1 +kerning first=120 second=335 amount=-1 +kerning first=120 second=337 amount=-1 +kerning first=120 second=339 amount=-1 +kerning first=120 second=347 amount=-2 +kerning first=120 second=351 amount=-2 +kerning first=120 second=353 amount=-2 +kerning first=120 second=355 amount=-1 +kerning first=120 second=361 amount=-2 +kerning first=120 second=363 amount=-2 +kerning first=120 second=365 amount=-2 +kerning first=120 second=367 amount=-2 +kerning first=120 second=369 amount=-2 +kerning first=120 second=371 amount=-2 +kerning first=120 second=375 amount=-2 +kerning first=120 second=378 amount=-1 +kerning first=120 second=380 amount=-1 +kerning first=120 second=382 amount=-1 +kerning first=199 second=256 amount=-2 +kerning first=199 second=254 amount=-1 +kerning first=199 second=252 amount=-1 +kerning first=199 second=251 amount=-1 +kerning first=199 second=250 amount=-1 +kerning first=199 second=249 amount=-1 +kerning first=199 second=248 amount=-1 +kerning first=199 second=246 amount=-1 +kerning first=199 second=245 amount=-1 +kerning first=199 second=244 amount=-1 +kerning first=199 second=243 amount=-1 +kerning first=199 second=242 amount=-1 +kerning first=120 second=8217 amount=-1 +kerning first=120 second=8220 amount=-1 +kerning first=120 second=8221 amount=-1 +kerning first=120 second=8249 amount=-2 +kerning first=199 second=241 amount=-1 +kerning first=199 second=240 amount=-1 +kerning first=199 second=237 amount=-1 +kerning first=199 second=235 amount=-1 +kerning first=199 second=234 amount=-1 +kerning first=121 second=44 amount=-4 +kerning first=121 second=45 amount=-3 +kerning first=121 second=46 amount=-4 +kerning first=121 second=97 amount=-2 +kerning first=121 second=98 amount=-1 +kerning first=121 second=99 amount=-2 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=103 amount=-2 +kerning first=121 second=104 amount=-1 +kerning first=121 second=105 amount=-1 +kerning first=121 second=106 amount=-1 +kerning first=121 second=107 amount=-1 +kerning first=121 second=108 amount=-2 +kerning first=121 second=109 amount=-1 +kerning first=121 second=110 amount=-1 +kerning first=121 second=111 amount=-2 +kerning first=121 second=112 amount=-1 +kerning first=121 second=113 amount=-2 +kerning first=121 second=114 amount=-1 +kerning first=121 second=115 amount=-2 +kerning first=121 second=116 amount=-1 +kerning first=199 second=233 amount=-1 +kerning first=121 second=118 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=121 second=120 amount=-1 +kerning first=121 second=122 amount=-2 +kerning first=121 second=171 amount=-3 +kerning first=121 second=223 amount=-1 +kerning first=121 second=224 amount=-2 +kerning first=121 second=225 amount=-2 +kerning first=121 second=226 amount=-2 +kerning first=121 second=227 amount=-2 +kerning first=121 second=228 amount=-2 +kerning first=121 second=229 amount=-2 +kerning first=121 second=230 amount=-2 +kerning first=121 second=231 amount=-2 +kerning first=121 second=232 amount=-2 +kerning first=121 second=233 amount=-2 +kerning first=121 second=234 amount=-2 +kerning first=121 second=235 amount=-2 +kerning first=121 second=237 amount=-1 +kerning first=121 second=240 amount=-2 +kerning first=121 second=241 amount=-1 +kerning first=121 second=242 amount=-2 +kerning first=121 second=243 amount=-2 +kerning first=121 second=244 amount=-2 +kerning first=121 second=245 amount=-2 +kerning first=121 second=246 amount=-2 +kerning first=121 second=248 amount=-2 +kerning first=199 second=232 amount=-1 +kerning first=199 second=231 amount=-1 +kerning first=199 second=230 amount=-1 +kerning first=199 second=229 amount=-1 +kerning first=121 second=254 amount=-1 +kerning first=121 second=257 amount=-2 +kerning first=121 second=259 amount=-2 +kerning first=121 second=261 amount=-2 +kerning first=121 second=263 amount=-2 +kerning first=121 second=267 amount=-2 +kerning first=121 second=269 amount=-2 +kerning first=121 second=271 amount=-2 +kerning first=121 second=273 amount=-2 +kerning first=121 second=275 amount=-2 +kerning first=121 second=277 amount=-2 +kerning first=121 second=279 amount=-2 +kerning first=121 second=281 amount=-2 +kerning first=121 second=283 amount=-2 +kerning first=121 second=287 amount=-2 +kerning first=121 second=289 amount=-2 +kerning first=121 second=291 amount=-2 +kerning first=121 second=303 amount=-1 +kerning first=121 second=305 amount=-1 +kerning first=121 second=307 amount=-1 +kerning first=121 second=311 amount=-1 +kerning first=121 second=314 amount=-2 +kerning first=121 second=316 amount=-2 +kerning first=121 second=318 amount=-2 +kerning first=121 second=324 amount=-1 +kerning first=121 second=326 amount=-1 +kerning first=121 second=328 amount=-1 +kerning first=121 second=331 amount=-1 +kerning first=121 second=333 amount=-2 +kerning first=121 second=335 amount=-2 +kerning first=121 second=337 amount=-2 +kerning first=121 second=339 amount=-2 +kerning first=121 second=345 amount=-1 +kerning first=121 second=347 amount=-2 +kerning first=121 second=351 amount=-2 +kerning first=121 second=353 amount=-2 +kerning first=121 second=355 amount=-1 +kerning first=199 second=228 amount=-1 +kerning first=199 second=227 amount=-1 +kerning first=199 second=226 amount=-1 +kerning first=199 second=225 amount=-1 +kerning first=199 second=224 amount=-1 +kerning first=199 second=223 amount=-1 +kerning first=121 second=378 amount=-2 +kerning first=121 second=380 amount=-2 +kerning first=121 second=382 amount=-2 +kerning first=199 second=221 amount=-1 +kerning first=199 second=220 amount=-1 +kerning first=199 second=219 amount=-1 +kerning first=199 second=218 amount=-1 +kerning first=199 second=217 amount=-1 +kerning first=199 second=216 amount=-2 +kerning first=199 second=214 amount=-2 +kerning first=199 second=213 amount=-2 +kerning first=199 second=212 amount=-2 +kerning first=199 second=211 amount=-2 +kerning first=199 second=210 amount=-2 +kerning first=121 second=8249 amount=-3 +kerning first=122 second=44 amount=-1 +kerning first=122 second=45 amount=-2 +kerning first=122 second=46 amount=-1 +kerning first=122 second=97 amount=-1 +kerning first=122 second=98 amount=-1 +kerning first=122 second=99 amount=-1 +kerning first=122 second=100 amount=-1 +kerning first=122 second=101 amount=-1 +kerning first=122 second=102 amount=-1 +kerning first=122 second=103 amount=-1 +kerning first=122 second=104 amount=-1 +kerning first=122 second=105 amount=-1 +kerning first=122 second=106 amount=-1 +kerning first=122 second=107 amount=-1 +kerning first=122 second=108 amount=-1 +kerning first=122 second=109 amount=-1 +kerning first=122 second=110 amount=-1 +kerning first=122 second=111 amount=-1 +kerning first=122 second=112 amount=-2 +kerning first=122 second=113 amount=-1 +kerning first=122 second=115 amount=-1 +kerning first=122 second=116 amount=-1 +kerning first=122 second=117 amount=-1 +kerning first=122 second=118 amount=-1 +kerning first=122 second=119 amount=-1 +kerning first=122 second=120 amount=-1 +kerning first=122 second=121 amount=-1 +kerning first=122 second=122 amount=-1 +kerning first=122 second=171 amount=-2 +kerning first=122 second=224 amount=-1 +kerning first=122 second=225 amount=-1 +kerning first=122 second=226 amount=-1 +kerning first=122 second=227 amount=-1 +kerning first=122 second=228 amount=-1 +kerning first=122 second=229 amount=-1 +kerning first=122 second=230 amount=-1 +kerning first=122 second=231 amount=-1 +kerning first=122 second=232 amount=-1 +kerning first=122 second=233 amount=-1 +kerning first=122 second=234 amount=-1 +kerning first=122 second=235 amount=-1 +kerning first=122 second=237 amount=-1 +kerning first=122 second=240 amount=-1 +kerning first=122 second=241 amount=-1 +kerning first=122 second=242 amount=-1 +kerning first=122 second=243 amount=-1 +kerning first=122 second=244 amount=-1 +kerning first=122 second=245 amount=-1 +kerning first=122 second=246 amount=-1 +kerning first=122 second=248 amount=-1 +kerning first=122 second=249 amount=-1 +kerning first=122 second=250 amount=-1 +kerning first=122 second=251 amount=-1 +kerning first=122 second=252 amount=-1 +kerning first=122 second=253 amount=-1 +kerning first=122 second=254 amount=-1 +kerning first=122 second=255 amount=-1 +kerning first=122 second=257 amount=-1 +kerning first=122 second=259 amount=-1 +kerning first=122 second=261 amount=-1 +kerning first=122 second=263 amount=-1 +kerning first=122 second=267 amount=-1 +kerning first=122 second=269 amount=-1 +kerning first=122 second=271 amount=-1 +kerning first=122 second=273 amount=-1 +kerning first=122 second=275 amount=-1 +kerning first=122 second=277 amount=-1 +kerning first=122 second=279 amount=-1 +kerning first=122 second=281 amount=-1 +kerning first=122 second=283 amount=-1 +kerning first=122 second=287 amount=-1 +kerning first=122 second=289 amount=-1 +kerning first=122 second=291 amount=-1 +kerning first=122 second=303 amount=-1 +kerning first=122 second=305 amount=-1 +kerning first=122 second=307 amount=-1 +kerning first=122 second=311 amount=-1 +kerning first=122 second=314 amount=-1 +kerning first=122 second=316 amount=-1 +kerning first=122 second=318 amount=-1 +kerning first=122 second=324 amount=-1 +kerning first=122 second=326 amount=-1 +kerning first=122 second=328 amount=-1 +kerning first=122 second=331 amount=-1 +kerning first=122 second=333 amount=-1 +kerning first=122 second=335 amount=-1 +kerning first=122 second=337 amount=-1 +kerning first=122 second=339 amount=-1 +kerning first=122 second=347 amount=-1 +kerning first=122 second=351 amount=-1 +kerning first=122 second=353 amount=-1 +kerning first=122 second=355 amount=-1 +kerning first=122 second=361 amount=-1 +kerning first=122 second=363 amount=-1 +kerning first=122 second=365 amount=-1 +kerning first=122 second=367 amount=-1 +kerning first=122 second=369 amount=-1 +kerning first=122 second=371 amount=-1 +kerning first=122 second=375 amount=-1 +kerning first=122 second=378 amount=-1 +kerning first=122 second=380 amount=-1 +kerning first=122 second=382 amount=-1 +kerning first=199 second=209 amount=-2 +kerning first=199 second=207 amount=-2 +kerning first=199 second=206 amount=-2 +kerning first=199 second=205 amount=-2 +kerning first=199 second=204 amount=-2 +kerning first=199 second=203 amount=-2 +kerning first=199 second=202 amount=-2 +kerning first=199 second=201 amount=-2 +kerning first=199 second=200 amount=-2 +kerning first=199 second=199 amount=-2 +kerning first=199 second=198 amount=-2 +kerning first=199 second=197 amount=-2 +kerning first=199 second=196 amount=-2 +kerning first=122 second=8249 amount=-2 +kerning first=199 second=194 amount=-2 +kerning first=199 second=193 amount=-2 +kerning first=199 second=192 amount=-2 +kerning first=199 second=171 amount=-3 +kerning first=199 second=122 amount=-2 +kerning first=171 second=84 amount=-2 +kerning first=171 second=86 amount=-2 +kerning first=171 second=87 amount=-2 +kerning first=171 second=89 amount=-2 +kerning first=171 second=221 amount=-2 +kerning first=171 second=354 amount=-2 +kerning first=171 second=356 amount=-2 +kerning first=171 second=374 amount=-2 +kerning first=199 second=119 amount=-1 +kerning first=199 second=118 amount=-1 +kerning first=199 second=117 amount=-1 +kerning first=187 second=65 amount=-3 +kerning first=187 second=66 amount=-4 +kerning first=187 second=68 amount=-4 +kerning first=187 second=69 amount=-4 +kerning first=187 second=70 amount=-4 +kerning first=187 second=72 amount=-4 +kerning first=187 second=73 amount=-4 +kerning first=187 second=74 amount=-3 +kerning first=187 second=75 amount=-4 +kerning first=187 second=76 amount=-4 +kerning first=187 second=77 amount=-4 +kerning first=187 second=78 amount=-4 +kerning first=187 second=80 amount=-4 +kerning first=187 second=82 amount=-4 +kerning first=187 second=83 amount=-2 +kerning first=187 second=84 amount=-3 +kerning first=187 second=85 amount=-3 +kerning first=187 second=86 amount=-3 +kerning first=187 second=87 amount=-3 +kerning first=187 second=89 amount=-3 +kerning first=187 second=90 amount=-3 +kerning first=187 second=97 amount=-1 +kerning first=187 second=98 amount=-1 +kerning first=187 second=102 amount=-1 +kerning first=187 second=103 amount=-2 +kerning first=187 second=104 amount=-1 +kerning first=187 second=105 amount=-1 +kerning first=187 second=106 amount=-1 +kerning first=187 second=107 amount=-1 +kerning first=187 second=108 amount=-1 +kerning first=187 second=109 amount=-1 +kerning first=187 second=110 amount=-1 +kerning first=187 second=112 amount=-1 +kerning first=187 second=114 amount=-1 +kerning first=187 second=115 amount=-1 +kerning first=187 second=116 amount=-1 +kerning first=187 second=117 amount=-1 +kerning first=187 second=118 amount=-2 +kerning first=187 second=119 amount=-2 +kerning first=187 second=120 amount=-2 +kerning first=187 second=121 amount=-2 +kerning first=187 second=122 amount=-4 +kerning first=187 second=192 amount=-3 +kerning first=187 second=193 amount=-3 +kerning first=187 second=194 amount=-3 +kerning first=187 second=195 amount=-3 +kerning first=187 second=196 amount=-3 +kerning first=187 second=197 amount=-3 +kerning first=187 second=198 amount=-3 +kerning first=187 second=200 amount=-4 +kerning first=187 second=201 amount=-4 +kerning first=187 second=202 amount=-4 +kerning first=187 second=203 amount=-4 +kerning first=187 second=204 amount=-4 +kerning first=187 second=205 amount=-4 +kerning first=187 second=206 amount=-4 +kerning first=187 second=207 amount=-4 +kerning first=187 second=209 amount=-4 +kerning first=187 second=217 amount=-3 +kerning first=187 second=218 amount=-3 +kerning first=187 second=219 amount=-3 +kerning first=187 second=220 amount=-3 +kerning first=187 second=221 amount=-3 +kerning first=187 second=223 amount=-1 +kerning first=187 second=224 amount=-1 +kerning first=187 second=225 amount=-1 +kerning first=187 second=226 amount=-1 +kerning first=187 second=227 amount=-1 +kerning first=187 second=229 amount=-1 +kerning first=187 second=230 amount=-1 +kerning first=187 second=237 amount=-1 +kerning first=187 second=241 amount=-1 +kerning first=187 second=249 amount=-1 +kerning first=187 second=250 amount=-1 +kerning first=187 second=251 amount=-1 +kerning first=187 second=252 amount=-1 +kerning first=187 second=253 amount=-2 +kerning first=187 second=254 amount=-1 +kerning first=187 second=255 amount=-2 +kerning first=187 second=256 amount=-3 +kerning first=187 second=257 amount=-1 +kerning first=187 second=259 amount=-1 +kerning first=187 second=260 amount=-3 +kerning first=187 second=261 amount=-1 +kerning first=187 second=270 amount=-4 +kerning first=187 second=274 amount=-4 +kerning first=187 second=278 amount=-4 +kerning first=187 second=280 amount=-4 +kerning first=187 second=282 amount=-4 +kerning first=187 second=287 amount=-2 +kerning first=187 second=289 amount=-2 +kerning first=187 second=291 amount=-2 +kerning first=187 second=296 amount=-4 +kerning first=187 second=298 amount=-4 +kerning first=187 second=302 amount=-4 +kerning first=187 second=303 amount=-1 +kerning first=187 second=305 amount=-1 +kerning first=187 second=307 amount=-1 +kerning first=187 second=310 amount=-4 +kerning first=187 second=311 amount=-1 +kerning first=187 second=313 amount=-4 +kerning first=187 second=314 amount=-1 +kerning first=187 second=315 amount=-4 +kerning first=187 second=316 amount=-1 +kerning first=187 second=317 amount=-4 +kerning first=187 second=318 amount=-1 +kerning first=187 second=323 amount=-4 +kerning first=187 second=324 amount=-1 +kerning first=187 second=325 amount=-4 +kerning first=187 second=326 amount=-1 +kerning first=187 second=327 amount=-4 +kerning first=187 second=328 amount=-1 +kerning first=187 second=330 amount=-4 +kerning first=187 second=331 amount=-1 +kerning first=187 second=344 amount=-4 +kerning first=187 second=345 amount=-1 +kerning first=187 second=346 amount=-2 +kerning first=187 second=347 amount=-1 +kerning first=187 second=350 amount=-2 +kerning first=187 second=351 amount=-1 +kerning first=187 second=352 amount=-2 +kerning first=187 second=353 amount=-1 +kerning first=187 second=354 amount=-3 +kerning first=187 second=355 amount=-1 +kerning first=187 second=356 amount=-3 +kerning first=187 second=357 amount=-1 +kerning first=187 second=361 amount=-1 +kerning first=187 second=362 amount=-3 +kerning first=187 second=363 amount=-1 +kerning first=187 second=364 amount=-3 +kerning first=187 second=365 amount=-1 +kerning first=187 second=366 amount=-3 +kerning first=187 second=367 amount=-1 +kerning first=187 second=368 amount=-3 +kerning first=187 second=369 amount=-1 +kerning first=187 second=370 amount=-3 +kerning first=187 second=371 amount=-1 +kerning first=187 second=374 amount=-3 +kerning first=187 second=375 amount=-2 +kerning first=187 second=377 amount=-3 +kerning first=187 second=378 amount=-4 +kerning first=187 second=379 amount=-3 +kerning first=187 second=380 amount=-4 +kerning first=187 second=381 amount=-3 +kerning first=187 second=382 amount=-4 +kerning first=199 second=115 amount=-1 +kerning first=199 second=114 amount=-1 +kerning first=199 second=113 amount=-1 +kerning first=199 second=112 amount=-2 +kerning first=199 second=111 amount=-1 +kerning first=199 second=110 amount=-1 +kerning first=199 second=109 amount=-1 +kerning first=199 second=108 amount=-1 +kerning first=199 second=107 amount=-1 +kerning first=199 second=106 amount=-1 +kerning first=199 second=105 amount=-1 +kerning first=199 second=104 amount=-1 +kerning first=199 second=103 amount=-2 +kerning first=199 second=102 amount=-1 +kerning first=199 second=101 amount=-1 +kerning first=199 second=100 amount=-1 +kerning first=199 second=99 amount=-1 +kerning first=199 second=98 amount=-1 +kerning first=199 second=97 amount=-1 +kerning first=199 second=90 amount=-1 +kerning first=199 second=89 amount=-1 +kerning first=199 second=87 amount=-1 +kerning first=199 second=86 amount=-1 +kerning first=199 second=85 amount=-1 +kerning first=199 second=84 amount=-1 +kerning first=199 second=83 amount=-2 +kerning first=199 second=82 amount=-2 +kerning first=199 second=81 amount=-2 +kerning first=199 second=80 amount=-2 +kerning first=199 second=79 amount=-2 +kerning first=192 second=45 amount=-3 +kerning first=192 second=67 amount=-2 +kerning first=192 second=71 amount=-2 +kerning first=192 second=79 amount=-2 +kerning first=192 second=81 amount=-2 +kerning first=192 second=83 amount=-2 +kerning first=192 second=84 amount=-5 +kerning first=192 second=85 amount=-2 +kerning first=192 second=86 amount=-5 +kerning first=192 second=87 amount=-5 +kerning first=192 second=89 amount=-5 +kerning first=192 second=98 amount=-1 +kerning first=192 second=99 amount=-1 +kerning first=192 second=100 amount=-1 +kerning first=192 second=101 amount=-1 +kerning first=199 second=78 amount=-2 +kerning first=192 second=103 amount=-2 +kerning first=192 second=104 amount=-1 +kerning first=199 second=77 amount=-2 +kerning first=192 second=107 amount=-1 +kerning first=192 second=108 amount=-1 +kerning first=192 second=111 amount=-1 +kerning first=192 second=112 amount=-2 +kerning first=192 second=113 amount=-1 +kerning first=192 second=115 amount=-2 +kerning first=192 second=116 amount=-1 +kerning first=192 second=117 amount=-2 +kerning first=192 second=118 amount=-2 +kerning first=192 second=119 amount=-2 +kerning first=192 second=121 amount=-2 +kerning first=192 second=171 amount=-3 +kerning first=192 second=199 amount=-2 +kerning first=192 second=210 amount=-2 +kerning first=192 second=211 amount=-2 +kerning first=192 second=212 amount=-2 +kerning first=192 second=213 amount=-2 +kerning first=192 second=214 amount=-2 +kerning first=192 second=216 amount=-2 +kerning first=192 second=217 amount=-2 +kerning first=192 second=218 amount=-2 +kerning first=192 second=219 amount=-2 +kerning first=192 second=220 amount=-2 +kerning first=192 second=221 amount=-5 +kerning first=192 second=231 amount=-1 +kerning first=192 second=232 amount=-1 +kerning first=192 second=233 amount=-1 +kerning first=192 second=234 amount=-1 +kerning first=192 second=235 amount=-1 +kerning first=199 second=76 amount=-2 +kerning first=192 second=240 amount=-1 +kerning first=192 second=242 amount=-1 +kerning first=192 second=243 amount=-1 +kerning first=192 second=244 amount=-1 +kerning first=192 second=245 amount=-1 +kerning first=192 second=246 amount=-1 +kerning first=192 second=248 amount=-1 +kerning first=192 second=249 amount=-2 +kerning first=192 second=250 amount=-2 +kerning first=192 second=251 amount=-2 +kerning first=192 second=252 amount=-2 +kerning first=192 second=253 amount=-2 +kerning first=192 second=254 amount=-1 +kerning first=192 second=255 amount=-2 +kerning first=192 second=262 amount=-2 +kerning first=192 second=263 amount=-1 +kerning first=192 second=264 amount=-2 +kerning first=192 second=266 amount=-2 +kerning first=192 second=267 amount=-1 +kerning first=192 second=268 amount=-2 +kerning first=192 second=269 amount=-1 +kerning first=192 second=275 amount=-1 +kerning first=192 second=277 amount=-1 +kerning first=192 second=279 amount=-1 +kerning first=192 second=281 amount=-1 +kerning first=192 second=283 amount=-1 +kerning first=192 second=284 amount=-2 +kerning first=192 second=286 amount=-2 +kerning first=192 second=287 amount=-2 +kerning first=192 second=288 amount=-2 +kerning first=192 second=289 amount=-2 +kerning first=192 second=290 amount=-2 +kerning first=192 second=291 amount=-2 +kerning first=199 second=75 amount=-2 +kerning first=199 second=74 amount=-1 +kerning first=192 second=311 amount=-1 +kerning first=192 second=314 amount=-1 +kerning first=192 second=316 amount=-1 +kerning first=192 second=318 amount=-1 +kerning first=192 second=332 amount=-2 +kerning first=192 second=333 amount=-1 +kerning first=192 second=334 amount=-2 +kerning first=192 second=335 amount=-1 +kerning first=192 second=336 amount=-2 +kerning first=192 second=337 amount=-1 +kerning first=192 second=338 amount=-2 +kerning first=192 second=339 amount=-1 +kerning first=192 second=346 amount=-2 +kerning first=192 second=347 amount=-2 +kerning first=192 second=350 amount=-2 +kerning first=192 second=351 amount=-2 +kerning first=192 second=352 amount=-2 +kerning first=192 second=353 amount=-2 +kerning first=192 second=354 amount=-5 +kerning first=192 second=355 amount=-1 +kerning first=192 second=356 amount=-5 +kerning first=192 second=361 amount=-2 +kerning first=192 second=362 amount=-2 +kerning first=192 second=363 amount=-2 +kerning first=192 second=364 amount=-2 +kerning first=192 second=365 amount=-2 +kerning first=192 second=366 amount=-2 +kerning first=192 second=367 amount=-2 +kerning first=192 second=368 amount=-2 +kerning first=192 second=369 amount=-2 +kerning first=192 second=370 amount=-2 +kerning first=192 second=374 amount=-5 +kerning first=192 second=375 amount=-2 +kerning first=199 second=73 amount=-2 +kerning first=199 second=72 amount=-2 +kerning first=199 second=71 amount=-2 +kerning first=199 second=70 amount=-2 +kerning first=199 second=69 amount=-2 +kerning first=199 second=68 amount=-2 +kerning first=199 second=67 amount=-2 +kerning first=199 second=66 amount=-2 +kerning first=199 second=65 amount=-2 +kerning first=199 second=46 amount=-1 +kerning first=199 second=45 amount=-3 +kerning first=199 second=44 amount=-1 +kerning first=198 second=8249 amount=-1 +kerning first=198 second=382 amount=-1 +kerning first=198 second=381 amount=-1 +kerning first=192 second=8217 amount=-4 +kerning first=192 second=8220 amount=-4 +kerning first=192 second=8221 amount=-4 +kerning first=192 second=8249 amount=-3 +kerning first=198 second=380 amount=-1 +kerning first=198 second=379 amount=-1 +kerning first=198 second=378 amount=-1 +kerning first=198 second=377 amount=-1 +kerning first=198 second=374 amount=-1 +kerning first=193 second=45 amount=-3 +kerning first=193 second=67 amount=-2 +kerning first=193 second=71 amount=-2 +kerning first=193 second=79 amount=-2 +kerning first=193 second=81 amount=-2 +kerning first=193 second=83 amount=-2 +kerning first=193 second=84 amount=-5 +kerning first=193 second=85 amount=-2 +kerning first=193 second=86 amount=-5 +kerning first=193 second=87 amount=-5 +kerning first=193 second=89 amount=-5 +kerning first=193 second=98 amount=-1 +kerning first=193 second=99 amount=-1 +kerning first=193 second=100 amount=-1 +kerning first=193 second=101 amount=-1 +kerning first=198 second=370 amount=-1 +kerning first=193 second=103 amount=-2 +kerning first=193 second=104 amount=-1 +kerning first=198 second=369 amount=-1 +kerning first=193 second=107 amount=-1 +kerning first=193 second=108 amount=-1 +kerning first=193 second=111 amount=-1 +kerning first=193 second=112 amount=-2 +kerning first=193 second=113 amount=-1 +kerning first=193 second=115 amount=-2 +kerning first=193 second=116 amount=-1 +kerning first=193 second=117 amount=-2 +kerning first=193 second=118 amount=-2 +kerning first=193 second=119 amount=-2 +kerning first=193 second=121 amount=-2 +kerning first=193 second=171 amount=-3 +kerning first=193 second=199 amount=-2 +kerning first=193 second=210 amount=-2 +kerning first=193 second=211 amount=-2 +kerning first=193 second=212 amount=-2 +kerning first=193 second=213 amount=-2 +kerning first=193 second=214 amount=-2 +kerning first=193 second=216 amount=-2 +kerning first=193 second=217 amount=-2 +kerning first=193 second=218 amount=-2 +kerning first=193 second=219 amount=-2 +kerning first=193 second=220 amount=-2 +kerning first=193 second=221 amount=-5 +kerning first=193 second=231 amount=-1 +kerning first=193 second=232 amount=-1 +kerning first=193 second=233 amount=-1 +kerning first=193 second=234 amount=-1 +kerning first=193 second=235 amount=-1 +kerning first=198 second=368 amount=-1 +kerning first=193 second=240 amount=-1 +kerning first=193 second=242 amount=-1 +kerning first=193 second=243 amount=-1 +kerning first=193 second=244 amount=-1 +kerning first=193 second=245 amount=-1 +kerning first=193 second=246 amount=-1 +kerning first=193 second=248 amount=-1 +kerning first=193 second=249 amount=-2 +kerning first=193 second=250 amount=-2 +kerning first=193 second=251 amount=-2 +kerning first=193 second=252 amount=-2 +kerning first=193 second=253 amount=-2 +kerning first=193 second=254 amount=-1 +kerning first=193 second=255 amount=-2 +kerning first=193 second=262 amount=-2 +kerning first=193 second=263 amount=-1 +kerning first=193 second=264 amount=-2 +kerning first=193 second=266 amount=-2 +kerning first=193 second=267 amount=-1 +kerning first=193 second=268 amount=-2 +kerning first=193 second=269 amount=-1 +kerning first=193 second=275 amount=-1 +kerning first=193 second=277 amount=-1 +kerning first=193 second=279 amount=-1 +kerning first=193 second=281 amount=-1 +kerning first=193 second=283 amount=-1 +kerning first=193 second=284 amount=-2 +kerning first=193 second=286 amount=-2 +kerning first=193 second=287 amount=-2 +kerning first=193 second=288 amount=-2 +kerning first=193 second=289 amount=-2 +kerning first=193 second=290 amount=-2 +kerning first=193 second=291 amount=-2 +kerning first=198 second=367 amount=-1 +kerning first=198 second=366 amount=-1 +kerning first=193 second=311 amount=-1 +kerning first=193 second=314 amount=-1 +kerning first=193 second=316 amount=-1 +kerning first=193 second=318 amount=-1 +kerning first=193 second=332 amount=-2 +kerning first=193 second=333 amount=-1 +kerning first=193 second=334 amount=-2 +kerning first=193 second=335 amount=-1 +kerning first=193 second=336 amount=-2 +kerning first=193 second=337 amount=-1 +kerning first=193 second=338 amount=-2 +kerning first=193 second=339 amount=-1 +kerning first=193 second=346 amount=-2 +kerning first=193 second=347 amount=-2 +kerning first=193 second=350 amount=-2 +kerning first=193 second=351 amount=-2 +kerning first=193 second=352 amount=-2 +kerning first=193 second=353 amount=-2 +kerning first=193 second=354 amount=-5 +kerning first=193 second=355 amount=-1 +kerning first=193 second=356 amount=-5 +kerning first=193 second=361 amount=-2 +kerning first=193 second=362 amount=-2 +kerning first=193 second=363 amount=-2 +kerning first=193 second=364 amount=-2 +kerning first=193 second=365 amount=-2 +kerning first=193 second=366 amount=-2 +kerning first=193 second=367 amount=-2 +kerning first=193 second=368 amount=-2 +kerning first=193 second=369 amount=-2 +kerning first=193 second=370 amount=-2 +kerning first=193 second=374 amount=-5 +kerning first=193 second=375 amount=-2 +kerning first=198 second=365 amount=-1 +kerning first=198 second=364 amount=-1 +kerning first=198 second=363 amount=-1 +kerning first=198 second=362 amount=-1 +kerning first=198 second=361 amount=-1 +kerning first=198 second=356 amount=-1 +kerning first=198 second=354 amount=-1 +kerning first=198 second=353 amount=-1 +kerning first=198 second=352 amount=-1 +kerning first=198 second=351 amount=-1 +kerning first=198 second=350 amount=-1 +kerning first=198 second=347 amount=-1 +kerning first=198 second=346 amount=-1 +kerning first=198 second=344 amount=-1 +kerning first=198 second=338 amount=-1 +kerning first=193 second=8217 amount=-4 +kerning first=193 second=8220 amount=-4 +kerning first=193 second=8221 amount=-4 +kerning first=193 second=8249 amount=-3 +kerning first=198 second=336 amount=-1 +kerning first=198 second=334 amount=-1 +kerning first=198 second=332 amount=-1 +kerning first=198 second=331 amount=-1 +kerning first=198 second=330 amount=-1 +kerning first=194 second=45 amount=-3 +kerning first=194 second=67 amount=-2 +kerning first=194 second=71 amount=-2 +kerning first=194 second=79 amount=-2 +kerning first=194 second=81 amount=-2 +kerning first=194 second=83 amount=-2 +kerning first=194 second=84 amount=-5 +kerning first=194 second=85 amount=-2 +kerning first=194 second=86 amount=-5 +kerning first=194 second=87 amount=-5 +kerning first=194 second=89 amount=-5 +kerning first=194 second=98 amount=-1 +kerning first=194 second=99 amount=-1 +kerning first=194 second=100 amount=-1 +kerning first=194 second=101 amount=-1 +kerning first=198 second=328 amount=-1 +kerning first=194 second=103 amount=-2 +kerning first=194 second=104 amount=-1 +kerning first=198 second=327 amount=-1 +kerning first=194 second=107 amount=-1 +kerning first=194 second=108 amount=-1 +kerning first=194 second=111 amount=-1 +kerning first=194 second=112 amount=-2 +kerning first=194 second=113 amount=-1 +kerning first=194 second=115 amount=-2 +kerning first=194 second=116 amount=-1 +kerning first=194 second=117 amount=-2 +kerning first=194 second=118 amount=-2 +kerning first=194 second=119 amount=-2 +kerning first=194 second=121 amount=-2 +kerning first=194 second=171 amount=-3 +kerning first=194 second=199 amount=-2 +kerning first=194 second=210 amount=-2 +kerning first=194 second=211 amount=-2 +kerning first=194 second=212 amount=-2 +kerning first=194 second=213 amount=-2 +kerning first=194 second=214 amount=-2 +kerning first=194 second=216 amount=-2 +kerning first=194 second=217 amount=-2 +kerning first=194 second=218 amount=-2 +kerning first=194 second=219 amount=-2 +kerning first=194 second=220 amount=-2 +kerning first=194 second=221 amount=-5 +kerning first=194 second=231 amount=-1 +kerning first=194 second=232 amount=-1 +kerning first=194 second=233 amount=-1 +kerning first=194 second=234 amount=-1 +kerning first=194 second=235 amount=-1 +kerning first=198 second=326 amount=-1 +kerning first=194 second=240 amount=-1 +kerning first=194 second=242 amount=-1 +kerning first=194 second=243 amount=-1 +kerning first=194 second=244 amount=-1 +kerning first=194 second=245 amount=-1 +kerning first=194 second=246 amount=-1 +kerning first=194 second=248 amount=-1 +kerning first=194 second=249 amount=-2 +kerning first=194 second=250 amount=-2 +kerning first=194 second=251 amount=-2 +kerning first=194 second=252 amount=-2 +kerning first=194 second=253 amount=-2 +kerning first=194 second=254 amount=-1 +kerning first=194 second=255 amount=-2 +kerning first=194 second=262 amount=-2 +kerning first=194 second=263 amount=-1 +kerning first=194 second=264 amount=-2 +kerning first=194 second=266 amount=-2 +kerning first=194 second=267 amount=-1 +kerning first=194 second=268 amount=-2 +kerning first=194 second=269 amount=-1 +kerning first=194 second=275 amount=-1 +kerning first=194 second=277 amount=-1 +kerning first=194 second=279 amount=-1 +kerning first=194 second=281 amount=-1 +kerning first=194 second=283 amount=-1 +kerning first=194 second=284 amount=-2 +kerning first=194 second=286 amount=-2 +kerning first=194 second=287 amount=-2 +kerning first=194 second=288 amount=-2 +kerning first=194 second=289 amount=-2 +kerning first=194 second=290 amount=-2 +kerning first=194 second=291 amount=-2 +kerning first=198 second=325 amount=-1 +kerning first=198 second=324 amount=-1 +kerning first=194 second=311 amount=-1 +kerning first=194 second=314 amount=-1 +kerning first=194 second=316 amount=-1 +kerning first=194 second=318 amount=-1 +kerning first=194 second=332 amount=-2 +kerning first=194 second=333 amount=-1 +kerning first=194 second=334 amount=-2 +kerning first=194 second=335 amount=-1 +kerning first=194 second=336 amount=-2 +kerning first=194 second=337 amount=-1 +kerning first=194 second=338 amount=-2 +kerning first=194 second=339 amount=-1 +kerning first=194 second=346 amount=-2 +kerning first=194 second=347 amount=-2 +kerning first=194 second=350 amount=-2 +kerning first=194 second=351 amount=-2 +kerning first=194 second=352 amount=-2 +kerning first=194 second=353 amount=-2 +kerning first=194 second=354 amount=-5 +kerning first=194 second=355 amount=-1 +kerning first=194 second=356 amount=-5 +kerning first=194 second=361 amount=-2 +kerning first=194 second=362 amount=-2 +kerning first=194 second=363 amount=-2 +kerning first=194 second=364 amount=-2 +kerning first=194 second=365 amount=-2 +kerning first=194 second=366 amount=-2 +kerning first=194 second=367 amount=-2 +kerning first=194 second=368 amount=-2 +kerning first=194 second=369 amount=-2 +kerning first=194 second=370 amount=-2 +kerning first=194 second=374 amount=-5 +kerning first=194 second=375 amount=-2 +kerning first=198 second=323 amount=-1 +kerning first=198 second=318 amount=-1 +kerning first=198 second=317 amount=-1 +kerning first=198 second=316 amount=-1 +kerning first=198 second=315 amount=-1 +kerning first=198 second=314 amount=-1 +kerning first=198 second=313 amount=-1 +kerning first=198 second=311 amount=-1 +kerning first=198 second=310 amount=-1 +kerning first=198 second=304 amount=-1 +kerning first=198 second=302 amount=-1 +kerning first=198 second=298 amount=-1 +kerning first=198 second=296 amount=-1 +kerning first=198 second=291 amount=-2 +kerning first=198 second=290 amount=-1 +kerning first=194 second=8217 amount=-4 +kerning first=194 second=8220 amount=-4 +kerning first=194 second=8221 amount=-4 +kerning first=194 second=8249 amount=-3 +kerning first=198 second=289 amount=-2 +kerning first=198 second=288 amount=-1 +kerning first=198 second=287 amount=-2 +kerning first=198 second=286 amount=-1 +kerning first=198 second=284 amount=-1 +kerning first=195 second=45 amount=-3 +kerning first=195 second=67 amount=-2 +kerning first=195 second=71 amount=-2 +kerning first=195 second=79 amount=-2 +kerning first=195 second=81 amount=-2 +kerning first=195 second=83 amount=-2 +kerning first=195 second=84 amount=-5 +kerning first=195 second=85 amount=-2 +kerning first=195 second=86 amount=-5 +kerning first=195 second=87 amount=-5 +kerning first=195 second=89 amount=-5 +kerning first=195 second=98 amount=-1 +kerning first=195 second=99 amount=-1 +kerning first=195 second=100 amount=-1 +kerning first=195 second=101 amount=-1 +kerning first=198 second=282 amount=-1 +kerning first=195 second=103 amount=-2 +kerning first=195 second=104 amount=-1 +kerning first=198 second=280 amount=-1 +kerning first=195 second=107 amount=-1 +kerning first=195 second=108 amount=-1 +kerning first=195 second=111 amount=-1 +kerning first=195 second=112 amount=-2 +kerning first=195 second=113 amount=-1 +kerning first=195 second=115 amount=-2 +kerning first=195 second=116 amount=-1 +kerning first=195 second=117 amount=-2 +kerning first=195 second=118 amount=-2 +kerning first=195 second=119 amount=-2 +kerning first=195 second=121 amount=-2 +kerning first=195 second=171 amount=-3 +kerning first=195 second=199 amount=-2 +kerning first=195 second=210 amount=-2 +kerning first=195 second=211 amount=-2 +kerning first=195 second=212 amount=-2 +kerning first=195 second=213 amount=-2 +kerning first=195 second=214 amount=-2 +kerning first=195 second=216 amount=-2 +kerning first=195 second=217 amount=-2 +kerning first=195 second=218 amount=-2 +kerning first=195 second=219 amount=-2 +kerning first=195 second=220 amount=-2 +kerning first=195 second=221 amount=-5 +kerning first=195 second=231 amount=-1 +kerning first=195 second=232 amount=-1 +kerning first=195 second=233 amount=-1 +kerning first=195 second=234 amount=-1 +kerning first=195 second=235 amount=-1 +kerning first=198 second=278 amount=-1 +kerning first=195 second=240 amount=-1 +kerning first=195 second=242 amount=-1 +kerning first=195 second=243 amount=-1 +kerning first=195 second=244 amount=-1 +kerning first=195 second=245 amount=-1 +kerning first=195 second=246 amount=-1 +kerning first=195 second=248 amount=-1 +kerning first=195 second=249 amount=-2 +kerning first=195 second=250 amount=-2 +kerning first=195 second=251 amount=-2 +kerning first=195 second=252 amount=-2 +kerning first=195 second=253 amount=-2 +kerning first=195 second=254 amount=-1 +kerning first=195 second=255 amount=-2 +kerning first=195 second=262 amount=-2 +kerning first=195 second=263 amount=-1 +kerning first=195 second=264 amount=-2 +kerning first=195 second=266 amount=-2 +kerning first=195 second=267 amount=-1 +kerning first=195 second=268 amount=-2 +kerning first=195 second=269 amount=-1 +kerning first=195 second=275 amount=-1 +kerning first=195 second=277 amount=-1 +kerning first=195 second=279 amount=-1 +kerning first=195 second=281 amount=-1 +kerning first=195 second=283 amount=-1 +kerning first=195 second=284 amount=-2 +kerning first=195 second=286 amount=-2 +kerning first=195 second=287 amount=-2 +kerning first=195 second=288 amount=-2 +kerning first=195 second=289 amount=-2 +kerning first=195 second=290 amount=-2 +kerning first=195 second=291 amount=-2 +kerning first=198 second=274 amount=-1 +kerning first=198 second=270 amount=-1 +kerning first=195 second=311 amount=-1 +kerning first=195 second=314 amount=-1 +kerning first=195 second=316 amount=-1 +kerning first=195 second=318 amount=-1 +kerning first=195 second=332 amount=-2 +kerning first=195 second=333 amount=-1 +kerning first=195 second=334 amount=-2 +kerning first=195 second=335 amount=-1 +kerning first=195 second=336 amount=-2 +kerning first=195 second=337 amount=-1 +kerning first=195 second=338 amount=-2 +kerning first=195 second=339 amount=-1 +kerning first=195 second=346 amount=-2 +kerning first=195 second=347 amount=-2 +kerning first=195 second=350 amount=-2 +kerning first=195 second=351 amount=-2 +kerning first=195 second=352 amount=-2 +kerning first=195 second=353 amount=-2 +kerning first=195 second=354 amount=-5 +kerning first=195 second=355 amount=-1 +kerning first=195 second=356 amount=-5 +kerning first=195 second=361 amount=-2 +kerning first=195 second=362 amount=-2 +kerning first=195 second=363 amount=-2 +kerning first=195 second=364 amount=-2 +kerning first=195 second=365 amount=-2 +kerning first=195 second=366 amount=-2 +kerning first=195 second=367 amount=-2 +kerning first=195 second=368 amount=-2 +kerning first=195 second=369 amount=-2 +kerning first=195 second=370 amount=-2 +kerning first=195 second=374 amount=-5 +kerning first=195 second=375 amount=-2 +kerning first=198 second=268 amount=-1 +kerning first=198 second=266 amount=-1 +kerning first=198 second=264 amount=-1 +kerning first=198 second=262 amount=-1 +kerning first=198 second=261 amount=-1 +kerning first=198 second=260 amount=-1 +kerning first=198 second=259 amount=-1 +kerning first=198 second=257 amount=-1 +kerning first=198 second=256 amount=-1 +kerning first=198 second=254 amount=-1 +kerning first=198 second=252 amount=-1 +kerning first=198 second=251 amount=-1 +kerning first=198 second=250 amount=-1 +kerning first=198 second=249 amount=-1 +kerning first=198 second=241 amount=-1 +kerning first=195 second=8217 amount=-4 +kerning first=195 second=8220 amount=-4 +kerning first=195 second=8221 amount=-4 +kerning first=195 second=8249 amount=-3 +kerning first=198 second=230 amount=-1 +kerning first=198 second=229 amount=-1 +kerning first=198 second=228 amount=-1 +kerning first=198 second=227 amount=-1 +kerning first=198 second=226 amount=-1 +kerning first=196 second=45 amount=-3 +kerning first=196 second=67 amount=-2 +kerning first=196 second=71 amount=-2 +kerning first=196 second=79 amount=-2 +kerning first=196 second=81 amount=-2 +kerning first=196 second=83 amount=-2 +kerning first=196 second=84 amount=-5 +kerning first=196 second=85 amount=-2 +kerning first=196 second=86 amount=-5 +kerning first=196 second=87 amount=-5 +kerning first=196 second=89 amount=-5 +kerning first=196 second=98 amount=-1 +kerning first=196 second=99 amount=-1 +kerning first=196 second=100 amount=-1 +kerning first=196 second=101 amount=-1 +kerning first=198 second=225 amount=-1 +kerning first=196 second=103 amount=-2 +kerning first=196 second=104 amount=-1 +kerning first=198 second=224 amount=-1 +kerning first=196 second=107 amount=-1 +kerning first=196 second=108 amount=-1 +kerning first=196 second=111 amount=-1 +kerning first=196 second=112 amount=-2 +kerning first=196 second=113 amount=-1 +kerning first=196 second=115 amount=-2 +kerning first=196 second=116 amount=-1 +kerning first=196 second=117 amount=-2 +kerning first=196 second=118 amount=-2 +kerning first=196 second=119 amount=-2 +kerning first=196 second=121 amount=-2 +kerning first=196 second=171 amount=-3 +kerning first=196 second=199 amount=-2 +kerning first=196 second=210 amount=-2 +kerning first=196 second=211 amount=-2 +kerning first=196 second=212 amount=-2 +kerning first=196 second=213 amount=-2 +kerning first=196 second=214 amount=-2 +kerning first=196 second=216 amount=-2 +kerning first=196 second=217 amount=-2 +kerning first=196 second=218 amount=-2 +kerning first=196 second=219 amount=-2 +kerning first=196 second=220 amount=-2 +kerning first=196 second=221 amount=-5 +kerning first=196 second=231 amount=-1 +kerning first=196 second=232 amount=-1 +kerning first=196 second=233 amount=-1 +kerning first=196 second=234 amount=-1 +kerning first=196 second=235 amount=-1 +kerning first=198 second=223 amount=-1 +kerning first=196 second=240 amount=-1 +kerning first=196 second=242 amount=-1 +kerning first=196 second=243 amount=-1 +kerning first=196 second=244 amount=-1 +kerning first=196 second=245 amount=-1 +kerning first=196 second=246 amount=-1 +kerning first=196 second=248 amount=-1 +kerning first=196 second=249 amount=-2 +kerning first=196 second=250 amount=-2 +kerning first=196 second=251 amount=-2 +kerning first=196 second=252 amount=-2 +kerning first=196 second=253 amount=-2 +kerning first=196 second=254 amount=-1 +kerning first=196 second=255 amount=-2 +kerning first=196 second=262 amount=-2 +kerning first=196 second=263 amount=-1 +kerning first=196 second=264 amount=-2 +kerning first=196 second=266 amount=-2 +kerning first=196 second=267 amount=-1 +kerning first=196 second=268 amount=-2 +kerning first=196 second=269 amount=-1 +kerning first=196 second=275 amount=-1 +kerning first=196 second=277 amount=-1 +kerning first=196 second=279 amount=-1 +kerning first=196 second=281 amount=-1 +kerning first=196 second=283 amount=-1 +kerning first=196 second=284 amount=-2 +kerning first=196 second=286 amount=-2 +kerning first=196 second=287 amount=-2 +kerning first=196 second=288 amount=-2 +kerning first=196 second=289 amount=-2 +kerning first=196 second=290 amount=-2 +kerning first=196 second=291 amount=-2 +kerning first=198 second=221 amount=-1 +kerning first=198 second=220 amount=-1 +kerning first=196 second=311 amount=-1 +kerning first=196 second=314 amount=-1 +kerning first=196 second=316 amount=-1 +kerning first=196 second=318 amount=-1 +kerning first=196 second=332 amount=-2 +kerning first=196 second=333 amount=-1 +kerning first=196 second=334 amount=-2 +kerning first=196 second=335 amount=-1 +kerning first=196 second=336 amount=-2 +kerning first=196 second=337 amount=-1 +kerning first=196 second=338 amount=-2 +kerning first=196 second=339 amount=-1 +kerning first=196 second=346 amount=-2 +kerning first=196 second=347 amount=-2 +kerning first=196 second=350 amount=-2 +kerning first=196 second=351 amount=-2 +kerning first=196 second=352 amount=-2 +kerning first=196 second=353 amount=-2 +kerning first=196 second=354 amount=-5 +kerning first=196 second=355 amount=-1 +kerning first=196 second=356 amount=-5 +kerning first=196 second=361 amount=-2 +kerning first=196 second=362 amount=-2 +kerning first=196 second=363 amount=-2 +kerning first=196 second=364 amount=-2 +kerning first=196 second=365 amount=-2 +kerning first=196 second=366 amount=-2 +kerning first=196 second=367 amount=-2 +kerning first=196 second=368 amount=-2 +kerning first=196 second=369 amount=-2 +kerning first=196 second=370 amount=-2 +kerning first=196 second=374 amount=-5 +kerning first=196 second=375 amount=-2 +kerning first=198 second=219 amount=-1 +kerning first=198 second=218 amount=-1 +kerning first=198 second=217 amount=-1 +kerning first=198 second=216 amount=-1 +kerning first=198 second=214 amount=-1 +kerning first=198 second=213 amount=-1 +kerning first=198 second=212 amount=-1 +kerning first=198 second=211 amount=-1 +kerning first=198 second=210 amount=-1 +kerning first=198 second=209 amount=-1 +kerning first=198 second=207 amount=-1 +kerning first=198 second=206 amount=-1 +kerning first=198 second=205 amount=-1 +kerning first=198 second=204 amount=-1 +kerning first=198 second=203 amount=-1 +kerning first=196 second=8217 amount=-4 +kerning first=196 second=8220 amount=-4 +kerning first=196 second=8221 amount=-4 +kerning first=196 second=8249 amount=-3 +kerning first=198 second=202 amount=-1 +kerning first=198 second=201 amount=-1 +kerning first=198 second=200 amount=-1 +kerning first=198 second=199 amount=-1 +kerning first=198 second=198 amount=-1 +kerning first=197 second=45 amount=-3 +kerning first=197 second=67 amount=-2 +kerning first=197 second=71 amount=-2 +kerning first=197 second=79 amount=-2 +kerning first=197 second=81 amount=-2 +kerning first=197 second=83 amount=-2 +kerning first=197 second=84 amount=-5 +kerning first=197 second=85 amount=-2 +kerning first=197 second=86 amount=-5 +kerning first=197 second=87 amount=-5 +kerning first=197 second=89 amount=-5 +kerning first=197 second=98 amount=-1 +kerning first=197 second=99 amount=-1 +kerning first=197 second=100 amount=-1 +kerning first=197 second=101 amount=-1 +kerning first=198 second=197 amount=-1 +kerning first=197 second=103 amount=-2 +kerning first=197 second=104 amount=-1 +kerning first=198 second=196 amount=-1 +kerning first=197 second=107 amount=-1 +kerning first=197 second=108 amount=-1 +kerning first=197 second=111 amount=-1 +kerning first=197 second=112 amount=-2 +kerning first=197 second=113 amount=-1 +kerning first=197 second=115 amount=-2 +kerning first=197 second=116 amount=-1 +kerning first=197 second=117 amount=-2 +kerning first=197 second=118 amount=-2 +kerning first=197 second=119 amount=-2 +kerning first=197 second=121 amount=-2 +kerning first=197 second=171 amount=-3 +kerning first=197 second=199 amount=-2 +kerning first=197 second=210 amount=-2 +kerning first=197 second=211 amount=-2 +kerning first=197 second=212 amount=-2 +kerning first=197 second=213 amount=-2 +kerning first=197 second=214 amount=-2 +kerning first=197 second=216 amount=-2 +kerning first=197 second=217 amount=-2 +kerning first=197 second=218 amount=-2 +kerning first=197 second=219 amount=-2 +kerning first=197 second=220 amount=-2 +kerning first=197 second=221 amount=-5 +kerning first=197 second=231 amount=-1 +kerning first=197 second=232 amount=-1 +kerning first=197 second=233 amount=-1 +kerning first=197 second=234 amount=-1 +kerning first=197 second=235 amount=-1 +kerning first=198 second=194 amount=-1 +kerning first=197 second=240 amount=-1 +kerning first=197 second=242 amount=-1 +kerning first=197 second=243 amount=-1 +kerning first=197 second=244 amount=-1 +kerning first=197 second=245 amount=-1 +kerning first=197 second=246 amount=-1 +kerning first=197 second=248 amount=-1 +kerning first=197 second=249 amount=-2 +kerning first=197 second=250 amount=-2 +kerning first=197 second=251 amount=-2 +kerning first=197 second=252 amount=-2 +kerning first=197 second=253 amount=-2 +kerning first=197 second=254 amount=-1 +kerning first=197 second=255 amount=-2 +kerning first=197 second=262 amount=-2 +kerning first=197 second=263 amount=-1 +kerning first=197 second=264 amount=-2 +kerning first=197 second=266 amount=-2 +kerning first=197 second=267 amount=-1 +kerning first=197 second=268 amount=-2 +kerning first=197 second=269 amount=-1 +kerning first=197 second=275 amount=-1 +kerning first=197 second=277 amount=-1 +kerning first=197 second=279 amount=-1 +kerning first=197 second=281 amount=-1 +kerning first=197 second=283 amount=-1 +kerning first=197 second=284 amount=-2 +kerning first=197 second=286 amount=-2 +kerning first=197 second=287 amount=-2 +kerning first=197 second=288 amount=-2 +kerning first=197 second=289 amount=-2 +kerning first=197 second=290 amount=-2 +kerning first=197 second=291 amount=-2 +kerning first=198 second=193 amount=-1 +kerning first=198 second=192 amount=-1 +kerning first=197 second=311 amount=-1 +kerning first=197 second=314 amount=-1 +kerning first=197 second=316 amount=-1 +kerning first=197 second=318 amount=-1 +kerning first=197 second=332 amount=-2 +kerning first=197 second=333 amount=-1 +kerning first=197 second=334 amount=-2 +kerning first=197 second=335 amount=-1 +kerning first=197 second=336 amount=-2 +kerning first=197 second=337 amount=-1 +kerning first=197 second=338 amount=-2 +kerning first=197 second=339 amount=-1 +kerning first=197 second=346 amount=-2 +kerning first=197 second=347 amount=-2 +kerning first=197 second=350 amount=-2 +kerning first=197 second=351 amount=-2 +kerning first=197 second=352 amount=-2 +kerning first=197 second=353 amount=-2 +kerning first=197 second=354 amount=-5 +kerning first=197 second=355 amount=-1 +kerning first=197 second=356 amount=-5 +kerning first=197 second=361 amount=-2 +kerning first=197 second=362 amount=-2 +kerning first=197 second=363 amount=-2 +kerning first=197 second=364 amount=-2 +kerning first=197 second=365 amount=-2 +kerning first=197 second=366 amount=-2 +kerning first=197 second=367 amount=-2 +kerning first=197 second=368 amount=-2 +kerning first=197 second=369 amount=-2 +kerning first=197 second=370 amount=-2 +kerning first=197 second=374 amount=-5 +kerning first=197 second=375 amount=-2 +kerning first=198 second=171 amount=-1 +kerning first=198 second=122 amount=-1 +kerning first=198 second=120 amount=-1 +kerning first=198 second=119 amount=-1 +kerning first=198 second=118 amount=-1 +kerning first=198 second=117 amount=-1 +kerning first=198 second=115 amount=-1 +kerning first=198 second=112 amount=-1 +kerning first=198 second=110 amount=-1 +kerning first=198 second=109 amount=-1 +kerning first=198 second=108 amount=-1 +kerning first=198 second=107 amount=-1 +kerning first=198 second=104 amount=-1 +kerning first=198 second=103 amount=-2 +kerning first=198 second=102 amount=-1 +kerning first=197 second=8217 amount=-4 +kerning first=197 second=8220 amount=-4 +kerning first=197 second=8221 amount=-4 +kerning first=197 second=8249 amount=-3 +kerning first=198 second=98 amount=-1 +kerning first=198 second=97 amount=-1 +kerning first=198 second=90 amount=-1 +kerning first=198 second=89 amount=-1 +kerning first=198 second=87 amount=-1 +kerning first=198 second=44 amount=-1 +kerning first=198 second=45 amount=-1 +kerning first=198 second=46 amount=-1 +kerning first=198 second=65 amount=-1 +kerning first=198 second=66 amount=-1 +kerning first=198 second=67 amount=-1 +kerning first=198 second=68 amount=-1 +kerning first=198 second=69 amount=-1 +kerning first=198 second=70 amount=-1 +kerning first=198 second=71 amount=-1 +kerning first=198 second=72 amount=-1 +kerning first=198 second=73 amount=-1 +kerning first=198 second=74 amount=-1 +kerning first=198 second=75 amount=-1 +kerning first=198 second=76 amount=-1 +kerning first=198 second=77 amount=-1 +kerning first=198 second=78 amount=-1 +kerning first=198 second=79 amount=-1 +kerning first=198 second=80 amount=-1 +kerning first=198 second=81 amount=-1 +kerning first=198 second=82 amount=-1 +kerning first=198 second=83 amount=-1 +kerning first=198 second=84 amount=-1 +kerning first=198 second=85 amount=-1 +kerning first=198 second=86 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif64I_0.png b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif64I_0.png new file mode 100644 index 000000000..50d479e03 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/BM-FreeSerif64I_0.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FT-FreeSerif16I.fnt b/jme3-examples/src/main/resources/jme3test/font/FT-FreeSerif16I.fnt new file mode 100644 index 000000000..41f96ff7a --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/FT-FreeSerif16I.fnt @@ -0,0 +1,18131 @@ +info face="Free Serif Italic" size=16 bold=0 italic=1 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=22 base=16 scaleW=512 scaleH=512 pages=1 packed=0 +page id=0 file="FT-FreeSerif16I.png" +chars count=754 +char id=0 x=406 y=60 width=12 height=11 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=13 x=83 y=0 width=15 height=15 xoffset=1 yoffset=1 xadvance=14 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 +char id=33 x=235 y=84 width=5 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=34 x=101 y=152 width=5 height=4 xoffset=2 yoffset=4 xadvance=7 page=0 chnl=0 +char id=35 x=418 y=60 width=9 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=36 x=435 y=0 width=8 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=37 x=427 y=60 width=12 height=11 xoffset=1 yoffset=3 xadvance=13 page=0 chnl=0 +char id=38 x=240 y=84 width=11 height=10 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=39 x=509 y=95 width=2 height=4 xoffset=2 yoffset=4 xadvance=3 page=0 chnl=0 +char id=40 x=443 y=0 width=6 height=14 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=41 x=449 y=0 width=5 height=14 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=42 x=481 y=135 width=6 height=7 xoffset=2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=43 x=295 y=135 width=9 height=8 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 +char id=44 x=106 y=152 width=4 height=4 xoffset=-1 yoffset=12 xadvance=4 page=0 chnl=0 +char id=45 x=242 y=152 width=5 height=1 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 +char id=46 x=210 y=152 width=3 height=2 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 +char id=47 x=439 y=60 width=9 height=11 xoffset=-2 yoffset=3 xadvance=4 page=0 chnl=0 +char id=48 x=448 y=60 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=49 x=456 y=60 width=7 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=50 x=463 y=60 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=51 x=471 y=60 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=52 x=479 y=60 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=53 x=487 y=60 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=54 x=495 y=60 width=9 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=55 x=0 y=73 width=8 height=11 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=56 x=8 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=57 x=16 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=58 x=487 y=135 width=5 height=7 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 +char id=59 x=186 y=135 width=5 height=9 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 +char id=60 x=251 y=84 width=9 height=10 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=61 x=22 y=152 width=9 height=5 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=62 x=260 y=84 width=9 height=10 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=63 x=269 y=84 width=6 height=10 xoffset=2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=64 x=275 y=84 width=12 height=10 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=65 x=24 y=73 width=11 height=11 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=66 x=287 y=84 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=67 x=298 y=84 width=11 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=68 x=309 y=84 width=13 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=69 x=322 y=84 width=12 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=70 x=334 y=84 width=12 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=71 x=346 y=84 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=72 x=358 y=84 width=14 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=73 x=372 y=84 width=8 height=10 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=74 x=380 y=84 width=9 height=10 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=75 x=389 y=84 width=13 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=76 x=402 y=84 width=10 height=10 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=77 x=412 y=84 width=15 height=10 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=78 x=427 y=84 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=79 x=440 y=84 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=80 x=452 y=84 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=348 y=33 width=12 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=82 x=463 y=84 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=83 x=474 y=84 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=84 x=483 y=84 width=11 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=85 x=494 y=84 width=12 height=10 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=86 x=0 y=95 width=11 height=10 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=87 x=11 y=95 width=14 height=10 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=88 x=25 y=95 width=12 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=89 x=37 y=95 width=10 height=10 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=90 x=47 y=95 width=11 height=10 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=91 x=360 y=33 width=7 height=13 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=92 x=504 y=60 width=7 height=11 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=93 x=367 y=33 width=7 height=13 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=94 x=497 y=145 width=7 height=6 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=95 x=247 y=152 width=8 height=1 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 +char id=96 x=162 y=152 width=3 height=3 xoffset=6 yoffset=3 xadvance=5 page=0 chnl=0 +char id=97 x=492 y=135 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=98 x=130 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=99 x=500 y=135 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=100 x=138 y=60 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=101 x=0 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=102 x=454 y=0 width=10 height=14 xoffset=-3 yoffset=3 xadvance=4 page=0 chnl=0 +char id=103 x=58 y=95 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=104 x=147 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=105 x=506 y=84 width=5 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=106 x=374 y=33 width=7 height=13 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=107 x=155 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=108 x=163 y=60 width=5 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=109 x=7 y=145 width=12 height=7 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=110 x=19 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=111 x=27 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=112 x=66 y=95 width=10 height=10 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=113 x=76 y=95 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=114 x=35 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 +char id=115 x=42 y=145 width=6 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 +char id=116 x=191 y=135 width=5 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=117 x=304 y=135 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=118 x=48 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=119 x=55 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=120 x=66 y=145 width=9 height=7 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=121 x=84 y=95 width=8 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=122 x=196 y=135 width=8 height=9 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=123 x=464 y=0 width=7 height=14 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=124 x=508 y=47 width=2 height=11 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=125 x=471 y=0 width=7 height=14 xoffset=-1 yoffset=3 xadvance=6 page=0 chnl=0 +char id=126 x=165 y=152 width=9 height=3 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 +char id=161 x=35 y=73 width=6 height=11 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=162 x=41 y=73 width=7 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=163 x=48 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=164 x=204 y=135 width=10 height=9 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=165 x=92 y=95 width=10 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=166 x=57 y=73 width=2 height=11 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=167 x=381 y=33 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=168 x=213 y=152 width=6 height=2 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=169 x=59 y=73 width=12 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 +char id=170 x=31 y=152 width=6 height=5 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=171 x=0 y=152 width=8 height=6 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=172 x=37 y=152 width=9 height=5 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=173 x=242 y=152 width=5 height=1 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 +char id=174 x=71 y=73 width=12 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 +char id=175 x=255 y=152 width=6 height=1 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=176 x=46 y=152 width=6 height=5 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=0 +char id=177 x=214 y=135 width=9 height=9 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=178 x=75 y=145 width=6 height=7 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=179 x=81 y=145 width=5 height=7 xoffset=2 yoffset=3 xadvance=5 page=0 chnl=0 +char id=180 x=174 y=152 width=5 height=3 xoffset=2 yoffset=3 xadvance=5 page=0 chnl=0 +char id=181 x=102 y=95 width=9 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=182 x=389 y=33 width=10 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=183 x=509 y=105 width=2 height=2 xoffset=2 yoffset=9 xadvance=4 page=0 chnl=0 +char id=184 x=110 y=152 width=4 height=4 xoffset=-1 yoffset=14 xadvance=5 page=0 chnl=0 +char id=185 x=86 y=145 width=5 height=7 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=186 x=52 y=152 width=5 height=5 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=187 x=504 y=145 width=7 height=6 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=188 x=168 y=60 width=12 height=12 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=189 x=83 y=73 width=12 height=11 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=190 x=95 y=73 width=12 height=11 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=191 x=107 y=73 width=6 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=192 x=478 y=0 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=193 x=489 y=0 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=194 x=500 y=0 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=195 x=399 y=33 width=11 height=13 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=196 x=410 y=33 width=11 height=13 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=197 x=98 y=0 width=11 height=15 xoffset=-1 yoffset=-1 xadvance=10 page=0 chnl=0 +char id=198 x=111 y=95 width=16 height=10 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=199 x=421 y=33 width=11 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=200 x=0 y=19 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=201 x=12 y=19 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=202 x=24 y=19 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=203 x=432 y=33 width=12 height=13 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=204 x=36 y=19 width=8 height=14 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=205 x=44 y=19 width=8 height=14 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=206 x=52 y=19 width=9 height=14 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=207 x=444 y=33 width=8 height=13 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=208 x=127 y=95 width=13 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=209 x=61 y=19 width=13 height=14 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=210 x=109 y=0 width=12 height=15 xoffset=0 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=211 x=74 y=19 width=12 height=14 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=212 x=121 y=0 width=12 height=15 xoffset=0 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=213 x=452 y=33 width=12 height=13 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=214 x=464 y=33 width=12 height=13 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=215 x=312 y=135 width=9 height=8 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 +char id=216 x=86 y=19 width=12 height=14 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=133 y=0 width=12 height=15 xoffset=1 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=218 x=98 y=19 width=12 height=14 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=219 x=145 y=0 width=12 height=15 xoffset=1 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=220 x=476 y=33 width=12 height=13 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=221 x=110 y=19 width=10 height=14 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=222 x=140 y=95 width=10 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=223 x=120 y=19 width=11 height=14 xoffset=-3 yoffset=3 xadvance=8 page=0 chnl=0 +char id=224 x=113 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=225 x=150 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=226 x=121 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=227 x=158 y=95 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=228 x=167 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=229 x=180 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=230 x=91 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=231 x=175 y=95 width=7 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=232 x=129 y=73 width=7 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=233 x=182 y=95 width=9 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=234 x=136 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=235 x=191 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=236 x=144 y=73 width=5 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=237 x=199 y=95 width=6 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=238 x=149 y=73 width=6 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=239 x=205 y=95 width=6 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=240 x=155 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=241 x=211 y=95 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=242 x=163 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=243 x=220 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=244 x=171 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=245 x=228 y=95 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=246 x=237 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=247 x=321 y=135 width=9 height=8 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 +char id=248 x=179 y=73 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=249 x=187 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=250 x=245 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=251 x=195 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=252 x=253 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=253 x=488 y=33 width=9 height=13 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=254 x=157 y=0 width=10 height=15 xoffset=-2 yoffset=2 xadvance=8 page=0 chnl=0 +char id=255 x=497 y=33 width=9 height=13 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=256 x=0 y=47 width=11 height=13 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=257 x=261 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=258 x=131 y=19 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=259 x=203 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=260 x=142 y=19 width=13 height=14 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=261 x=269 y=95 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=262 x=155 y=19 width=11 height=14 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=263 x=277 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=264 x=167 y=0 width=11 height=15 xoffset=1 yoffset=-1 xadvance=11 page=0 chnl=0 +char id=265 x=211 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=266 x=166 y=19 width=11 height=14 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=267 x=285 y=95 width=7 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=268 x=178 y=0 width=11 height=15 xoffset=1 yoffset=-1 xadvance=11 page=0 chnl=0 +char id=269 x=219 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=270 x=177 y=19 width=13 height=14 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=271 x=228 y=73 width=12 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 +char id=272 x=127 y=95 width=13 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=273 x=188 y=60 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=274 x=11 y=47 width=12 height=13 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=275 x=223 y=135 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=276 x=190 y=19 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=277 x=240 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=278 x=23 y=47 width=12 height=13 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=279 x=292 y=95 width=7 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=280 x=35 y=47 width=12 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=281 x=299 y=95 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=282 x=202 y=19 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=283 x=249 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=284 x=189 y=0 width=12 height=15 xoffset=0 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=285 x=214 y=19 width=8 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=286 x=222 y=19 width=12 height=14 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=287 x=234 y=19 width=8 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=288 x=47 y=47 width=12 height=13 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=289 x=59 y=47 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=290 x=201 y=0 width=12 height=15 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=291 x=75 y=0 width=8 height=16 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 +char id=292 x=242 y=19 width=14 height=14 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=293 x=213 y=0 width=10 height=15 xoffset=0 yoffset=-1 xadvance=8 page=0 chnl=0 +char id=294 x=307 y=95 width=14 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=295 x=197 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=296 x=67 y=47 width=9 height=13 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=297 x=321 y=95 width=7 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=298 x=76 y=47 width=9 height=13 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=299 x=328 y=95 width=7 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=300 x=256 y=19 width=9 height=14 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=301 x=258 y=73 width=7 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=302 x=85 y=47 width=8 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=303 x=506 y=33 width=5 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=304 x=93 y=47 width=8 height=13 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=305 x=507 y=115 width=4 height=8 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 +char id=306 x=335 y=95 width=14 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=307 x=101 y=47 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=308 x=223 y=0 width=11 height=15 xoffset=-1 yoffset=-1 xadvance=7 page=0 chnl=0 +char id=309 x=265 y=19 width=9 height=14 xoffset=-2 yoffset=3 xadvance=4 page=0 chnl=0 +char id=310 x=234 y=0 width=13 height=15 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=311 x=19 y=0 width=8 height=17 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=312 x=330 y=135 width=8 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=313 x=274 y=19 width=10 height=14 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=314 x=284 y=19 width=7 height=14 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=315 x=247 y=0 width=10 height=15 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=316 x=27 y=0 width=5 height=17 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=317 x=349 y=95 width=12 height=10 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=318 x=265 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=319 x=361 y=95 width=10 height=10 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=320 x=205 y=60 width=6 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=321 x=371 y=95 width=10 height=10 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=322 x=211 y=60 width=5 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=323 x=291 y=19 width=13 height=14 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=324 x=381 y=95 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=325 x=257 y=0 width=13 height=15 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=326 x=216 y=60 width=8 height=12 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=327 x=270 y=0 width=13 height=15 xoffset=-1 yoffset=-1 xadvance=11 page=0 chnl=0 +char id=328 x=273 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=329 x=224 y=60 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=330 x=282 y=73 width=13 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 +char id=331 x=389 y=95 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=332 x=109 y=47 width=12 height=13 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=333 x=231 y=135 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=334 x=304 y=19 width=12 height=14 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=335 x=295 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=336 x=283 y=0 width=13 height=15 xoffset=0 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=337 x=304 y=73 width=11 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=338 x=397 y=95 width=16 height=10 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 +char id=339 x=102 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=340 x=316 y=19 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=341 x=413 y=95 width=7 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=342 x=296 y=0 width=11 height=15 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=343 x=232 y=60 width=8 height=12 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=344 x=327 y=19 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=345 x=315 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=346 x=338 y=19 width=9 height=14 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=347 x=420 y=95 width=7 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=348 x=307 y=0 width=9 height=15 xoffset=0 yoffset=-1 xadvance=8 page=0 chnl=0 +char id=349 x=323 y=73 width=7 height=11 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=350 x=121 y=47 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=351 x=427 y=95 width=7 height=10 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=352 x=316 y=0 width=9 height=15 xoffset=0 yoffset=-1 xadvance=8 page=0 chnl=0 +char id=353 x=330 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=354 x=130 y=47 width=11 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=355 x=141 y=47 width=6 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=356 x=347 y=19 width=11 height=14 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=357 x=434 y=95 width=9 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=358 x=443 y=95 width=11 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=359 x=239 y=135 width=5 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=360 x=147 y=47 width=12 height=13 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=361 x=454 y=95 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=362 x=159 y=47 width=12 height=13 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=363 x=244 y=135 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=364 x=358 y=19 width=12 height=14 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=365 x=338 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=366 x=325 y=0 width=12 height=15 xoffset=1 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=367 x=240 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=368 x=337 y=0 width=12 height=15 xoffset=1 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=369 x=346 y=73 width=10 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=370 x=248 y=60 width=12 height=12 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=371 x=356 y=73 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=372 x=349 y=0 width=14 height=15 xoffset=1 yoffset=-1 xadvance=13 page=0 chnl=0 +char id=373 x=364 y=73 width=11 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 +char id=374 x=370 y=19 width=10 height=14 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=375 x=380 y=19 width=9 height=14 xoffset=-1 yoffset=3 xadvance=7 page=0 chnl=0 +char id=376 x=171 y=47 width=10 height=13 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=377 x=389 y=19 width=11 height=14 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=378 x=260 y=60 width=8 height=12 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=379 x=181 y=47 width=11 height=13 xoffset=-1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=380 x=268 y=60 width=8 height=12 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=381 x=400 y=19 width=11 height=14 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=382 x=192 y=47 width=9 height=13 xoffset=-1 yoffset=3 xadvance=6 page=0 chnl=0 +char id=383 x=411 y=19 width=10 height=14 xoffset=-3 yoffset=3 xadvance=4 page=0 chnl=0 +char id=884 x=114 y=152 width=4 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 +char id=885 x=118 y=152 width=4 height=4 xoffset=0 yoffset=13 xadvance=3 page=0 chnl=0 +char id=890 x=179 y=152 width=3 height=3 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 +char id=894 x=252 y=135 width=5 height=9 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 +char id=900 x=122 y=152 width=3 height=4 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=0 +char id=901 x=57 y=152 width=6 height=5 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=0 +char id=902 x=375 y=73 width=11 height=11 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=903 x=219 y=152 width=3 height=2 xoffset=2 yoffset=7 xadvance=4 page=0 chnl=0 +char id=904 x=463 y=95 width=12 height=10 xoffset=2 yoffset=4 xadvance=13 page=0 chnl=0 +char id=905 x=475 y=95 width=14 height=10 xoffset=2 yoffset=4 xadvance=15 page=0 chnl=0 +char id=906 x=489 y=95 width=8 height=10 xoffset=2 yoffset=4 xadvance=9 page=0 chnl=0 +char id=908 x=497 y=95 width=12 height=10 xoffset=2 yoffset=4 xadvance=13 page=0 chnl=0 +char id=910 x=0 y=105 width=14 height=10 xoffset=2 yoffset=4 xadvance=14 page=0 chnl=0 +char id=911 x=14 y=105 width=13 height=10 xoffset=2 yoffset=4 xadvance=14 page=0 chnl=0 +char id=912 x=276 y=60 width=6 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=913 x=386 y=73 width=11 height=11 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=914 x=27 y=105 width=11 height=10 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=915 x=38 y=105 width=11 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=916 x=397 y=73 width=11 height=11 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=917 x=49 y=105 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=918 x=60 y=105 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=919 x=71 y=105 width=13 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=920 x=84 y=105 width=11 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=921 x=95 y=105 width=8 height=10 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=922 x=103 y=105 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=923 x=408 y=73 width=11 height=11 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=924 x=116 y=105 width=15 height=10 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=925 x=131 y=105 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=926 x=144 y=105 width=11 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=927 x=155 y=105 width=12 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=928 x=167 y=105 width=13 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=929 x=180 y=105 width=10 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=931 x=190 y=105 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=932 x=203 y=105 width=10 height=10 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=933 x=213 y=105 width=11 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=934 x=224 y=105 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=935 x=236 y=105 width=12 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=936 x=248 y=105 width=14 height=10 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=937 x=262 y=105 width=14 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=938 x=201 y=47 width=9 height=13 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=939 x=210 y=47 width=11 height=13 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=940 x=419 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=941 x=428 y=73 width=8 height=11 xoffset=-1 yoffset=3 xadvance=7 page=0 chnl=0 +char id=942 x=421 y=19 width=8 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=943 x=436 y=73 width=5 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=944 x=282 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=945 x=113 y=145 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=946 x=429 y=19 width=9 height=14 xoffset=-1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=947 x=276 y=105 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=948 x=441 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=949 x=122 y=145 width=8 height=7 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=950 x=438 y=19 width=7 height=14 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=951 x=284 y=105 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=952 x=292 y=105 width=9 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=953 x=507 y=135 width=4 height=7 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 +char id=954 x=130 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=955 x=449 y=73 width=9 height=11 xoffset=-1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=956 x=301 y=105 width=9 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=957 x=138 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=958 x=445 y=19 width=7 height=14 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=959 x=146 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=960 x=154 y=145 width=11 height=7 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=961 x=458 y=73 width=9 height=11 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=962 x=310 y=105 width=8 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=963 x=165 y=145 width=9 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=964 x=174 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=965 x=181 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=966 x=318 y=105 width=10 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=967 x=328 y=105 width=10 height=10 xoffset=-2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=968 x=221 y=47 width=11 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=969 x=189 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=970 x=338 y=105 width=6 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=971 x=344 y=105 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=972 x=467 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=973 x=475 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=974 x=483 y=73 width=11 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 +char id=976 x=494 y=73 width=9 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=977 x=0 y=84 width=10 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=978 x=352 y=105 width=11 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=979 x=363 y=105 width=14 height=10 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=980 x=232 y=47 width=11 height=13 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=981 x=243 y=47 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=982 x=257 y=135 width=12 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=983 x=377 y=105 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=984 x=385 y=105 width=10 height=10 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=985 x=395 y=105 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=986 x=403 y=105 width=10 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=987 x=413 y=105 width=9 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=988 x=422 y=105 width=11 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=989 x=433 y=105 width=10 height=10 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=990 x=443 y=105 width=10 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=991 x=452 y=19 width=7 height=14 xoffset=-1 yoffset=3 xadvance=7 page=0 chnl=0 +char id=992 x=10 y=84 width=12 height=11 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=993 x=459 y=19 width=10 height=14 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=1008 x=200 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1009 x=453 y=105 width=9 height=10 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1010 x=208 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1011 x=253 y=47 width=7 height=13 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1012 x=462 y=105 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1013 x=216 y=145 width=5 height=7 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 +char id=1014 x=221 y=145 width=5 height=7 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 +char id=1015 x=474 y=105 width=10 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1016 x=469 y=19 width=9 height=14 xoffset=-1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=1017 x=484 y=105 width=10 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1018 x=494 y=105 width=15 height=10 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1019 x=0 y=115 width=12 height=10 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1020 x=12 y=115 width=11 height=10 xoffset=-3 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1021 x=23 y=115 width=10 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1022 x=33 y=115 width=10 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1023 x=43 y=115 width=10 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1024 x=478 y=19 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1025 x=490 y=19 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1026 x=53 y=115 width=11 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1027 x=0 y=33 width=11 height=14 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1028 x=64 y=115 width=11 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1029 x=474 y=84 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1030 x=372 y=84 width=8 height=10 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=1031 x=260 y=47 width=9 height=13 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=1032 x=380 y=84 width=9 height=10 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1033 x=75 y=115 width=16 height=10 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1034 x=91 y=115 width=16 height=10 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1035 x=107 y=115 width=11 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1036 x=11 y=33 width=13 height=14 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1037 x=24 y=33 width=14 height=14 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1038 x=38 y=33 width=12 height=14 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1039 x=269 y=47 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1040 x=118 y=115 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1041 x=129 y=115 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1042 x=287 y=84 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1043 x=140 y=115 width=11 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1044 x=283 y=47 width=14 height=13 xoffset=-2 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1045 x=322 y=84 width=12 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1046 x=151 y=115 width=18 height=10 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1047 x=169 y=115 width=10 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1048 x=179 y=115 width=14 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1049 x=50 y=33 width=14 height=14 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1050 x=193 y=115 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1051 x=206 y=115 width=14 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1052 x=412 y=84 width=15 height=10 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1053 x=358 y=84 width=14 height=10 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1054 x=440 y=84 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1055 x=220 y=115 width=13 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1056 x=452 y=84 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1057 x=298 y=84 width=11 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1058 x=483 y=84 width=11 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1059 x=233 y=115 width=12 height=10 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1060 x=245 y=115 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1061 x=25 y=95 width=12 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1062 x=297 y=47 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1063 x=257 y=115 width=11 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1064 x=268 y=115 width=18 height=10 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1065 x=311 y=47 width=18 height=13 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1066 x=286 y=115 width=11 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1067 x=297 y=115 width=16 height=10 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1068 x=313 y=115 width=10 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1069 x=323 y=115 width=10 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1070 x=333 y=115 width=18 height=10 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1071 x=351 y=115 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1072 x=492 y=135 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1073 x=22 y=84 width=10 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=1074 x=226 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1075 x=233 y=145 width=7 height=7 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1076 x=503 y=73 width=8 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=1077 x=240 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1078 x=247 y=145 width=15 height=7 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1079 x=262 y=145 width=8 height=7 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1080 x=304 y=135 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1081 x=364 y=115 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1082 x=270 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1083 x=278 y=145 width=9 height=7 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1084 x=338 y=135 width=11 height=8 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=1085 x=349 y=135 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1086 x=27 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1087 x=19 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1088 x=66 y=95 width=10 height=10 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1089 x=287 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1090 x=7 y=145 width=12 height=7 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1091 x=32 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1092 x=329 y=47 width=12 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1093 x=66 y=145 width=9 height=7 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1094 x=40 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1095 x=357 y=135 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1096 x=365 y=135 width=12 height=8 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 +char id=1097 x=48 y=84 width=12 height=11 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 +char id=1098 x=294 y=145 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1099 x=377 y=135 width=11 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=1100 x=388 y=135 width=7 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=1101 x=303 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1102 x=310 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1103 x=321 y=145 width=9 height=7 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1104 x=372 y=115 width=7 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1105 x=379 y=115 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1106 x=363 y=0 width=8 height=15 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1107 x=387 y=115 width=7 height=10 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=1108 x=330 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1109 x=42 y=145 width=6 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1110 x=506 y=84 width=5 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1111 x=394 y=115 width=6 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1112 x=374 y=33 width=7 height=13 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1113 x=337 y=145 width=12 height=7 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1114 x=395 y=135 width=11 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=1115 x=290 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1116 x=400 y=115 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1117 x=408 y=115 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1118 x=341 y=47 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1119 x=60 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1120 x=416 y=115 width=16 height=10 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1121 x=349 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1122 x=432 y=115 width=10 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1123 x=360 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1124 x=442 y=115 width=17 height=10 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1125 x=406 y=135 width=11 height=8 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=1126 x=459 y=115 width=14 height=10 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1127 x=417 y=135 width=11 height=8 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=1128 x=473 y=115 width=18 height=10 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=1129 x=428 y=135 width=13 height=8 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 +char id=1130 x=491 y=115 width=16 height=10 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1131 x=371 y=145 width=13 height=7 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1132 x=0 y=125 width=21 height=10 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=0 +char id=1133 x=441 y=135 width=14 height=8 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=1134 x=32 y=0 width=11 height=17 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1135 x=298 y=60 width=9 height=12 xoffset=-1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1136 x=21 y=125 width=14 height=10 xoffset=2 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1137 x=371 y=0 width=12 height=15 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=1138 x=35 y=125 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1139 x=384 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1140 x=47 y=125 width=12 height=10 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1141 x=392 y=145 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1142 x=383 y=0 width=12 height=15 xoffset=1 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=1143 x=307 y=60 width=9 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1144 x=349 y=47 width=20 height=13 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 +char id=1145 x=59 y=125 width=16 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1146 x=369 y=47 width=14 height=13 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 +char id=1147 x=75 y=125 width=10 height=10 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=1148 x=395 y=0 width=16 height=15 xoffset=0 yoffset=-1 xadvance=15 page=0 chnl=0 +char id=1149 x=85 y=125 width=12 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1150 x=64 y=33 width=16 height=14 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1151 x=97 y=125 width=12 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1152 x=109 y=125 width=10 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1153 x=119 y=125 width=7 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1154 x=8 y=152 width=5 height=6 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 +char id=1155 x=222 y=152 width=7 height=2 xoffset=-4 yoffset=4 xadvance=0 page=0 chnl=0 +char id=1156 x=182 y=152 width=8 height=3 xoffset=-5 yoffset=4 xadvance=0 page=0 chnl=0 +char id=1157 x=63 y=152 width=4 height=5 xoffset=-1 yoffset=1 xadvance=0 page=0 chnl=0 +char id=1158 x=67 y=152 width=4 height=5 xoffset=-1 yoffset=1 xadvance=0 page=0 chnl=0 +char id=1159 x=190 y=152 width=11 height=3 xoffset=-7 yoffset=3 xadvance=0 page=0 chnl=0 +char id=1160 x=43 y=0 width=18 height=17 xoffset=-13 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1161 x=0 y=0 width=19 height=19 xoffset=-13 yoffset=-1 xadvance=0 page=0 chnl=0 +char id=1162 x=61 y=0 width=14 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1163 x=383 y=47 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1164 x=126 y=125 width=10 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1165 x=455 y=135 width=7 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=1166 x=136 y=125 width=10 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1167 x=146 y=125 width=10 height=10 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1168 x=316 y=60 width=12 height=12 xoffset=-1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1169 x=269 y=135 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1170 x=156 y=125 width=12 height=10 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1171 x=401 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1172 x=80 y=33 width=11 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1173 x=168 y=125 width=7 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1174 x=391 y=47 width=18 height=13 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1175 x=175 y=125 width=15 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1176 x=409 y=47 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1177 x=190 y=125 width=8 height=10 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1178 x=419 y=47 width=13 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1179 x=198 y=125 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1180 x=206 y=125 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1181 x=408 y=145 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1182 x=219 y=125 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1183 x=417 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1184 x=232 y=125 width=13 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1185 x=425 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1186 x=432 y=47 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1187 x=68 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1188 x=245 y=125 width=17 height=10 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1189 x=462 y=135 width=11 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=1190 x=91 y=33 width=16 height=14 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=1191 x=262 y=125 width=11 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1192 x=273 y=125 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1193 x=436 y=145 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1194 x=446 y=47 width=11 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1195 x=285 y=125 width=7 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1196 x=328 y=60 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1197 x=292 y=125 width=12 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1198 x=37 y=95 width=10 height=10 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1199 x=304 y=125 width=10 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1200 x=314 y=125 width=10 height=10 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1201 x=324 y=125 width=10 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1202 x=457 y=47 width=12 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1203 x=334 y=125 width=9 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1204 x=339 y=60 width=15 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1205 x=343 y=125 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1206 x=469 y=47 width=11 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1207 x=76 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1208 x=352 y=125 width=11 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1209 x=473 y=135 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1210 x=363 y=125 width=11 height=10 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1211 x=147 y=60 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1212 x=374 y=125 width=13 height=10 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1213 x=445 y=145 width=10 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1214 x=354 y=60 width=13 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1215 x=277 y=135 width=10 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1216 x=372 y=84 width=8 height=10 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=1217 x=107 y=33 width=18 height=14 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1218 x=387 y=125 width=15 height=10 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1219 x=125 y=33 width=13 height=14 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1220 x=402 y=125 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1221 x=480 y=47 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1222 x=410 y=125 width=9 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1223 x=138 y=33 width=14 height=14 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1224 x=84 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1225 x=494 y=47 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1226 x=92 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1227 x=0 y=60 width=11 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1228 x=100 y=84 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=1229 x=11 y=60 width=15 height=13 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1230 x=108 y=84 width=11 height=11 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=1231 x=372 y=84 width=8 height=10 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=1232 x=152 y=33 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1233 x=419 y=125 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1234 x=163 y=33 width=11 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1235 x=427 y=125 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1236 x=111 y=95 width=16 height=10 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1237 x=91 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1238 x=174 y=33 width=12 height=14 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1239 x=435 y=125 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1240 x=443 y=125 width=11 height=10 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1241 x=455 y=145 width=7 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1242 x=186 y=33 width=11 height=14 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1243 x=454 y=125 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1244 x=197 y=33 width=18 height=14 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1245 x=462 y=125 width=15 height=10 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1246 x=215 y=33 width=10 height=14 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1247 x=477 y=125 width=8 height=10 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=1248 x=485 y=125 width=11 height=10 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1249 x=496 y=125 width=8 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1250 x=26 y=60 width=14 height=13 xoffset=-1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=1251 x=287 y=135 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1252 x=225 y=33 width=14 height=14 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1253 x=0 y=135 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1254 x=239 y=33 width=12 height=14 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1255 x=8 y=135 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1256 x=17 y=135 width=12 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1257 x=462 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1258 x=251 y=33 width=12 height=14 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1259 x=29 y=135 width=9 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1260 x=263 y=33 width=10 height=14 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1261 x=504 y=125 width=7 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1262 x=40 y=60 width=12 height=13 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=1263 x=52 y=60 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1264 x=273 y=33 width=12 height=14 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1265 x=60 y=60 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1266 x=411 y=0 width=12 height=15 xoffset=1 yoffset=-1 xadvance=12 page=0 chnl=0 +char id=1267 x=68 y=60 width=10 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1268 x=285 y=33 width=11 height=14 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1269 x=38 y=135 width=8 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1270 x=78 y=60 width=11 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1271 x=46 y=135 width=7 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1272 x=296 y=33 width=16 height=14 xoffset=-1 yoffset=0 xadvance=14 page=0 chnl=0 +char id=1273 x=53 y=135 width=11 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1296 x=64 y=135 width=9 height=10 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1297 x=470 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1298 x=312 y=33 width=14 height=14 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1299 x=73 y=135 width=8 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1306 x=348 y=33 width=12 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1307 x=81 y=135 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1308 x=11 y=95 width=14 height=10 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1309 x=478 y=145 width=11 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1310 x=89 y=135 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1311 x=489 y=145 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=8192 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 +char id=8193 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=8194 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 +char id=8195 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=8196 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 +char id=8197 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 +char id=8198 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=3 page=0 chnl=0 +char id=8199 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 +char id=8200 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 +char id=8201 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=3 page=0 chnl=0 +char id=8202 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=2 page=0 chnl=0 +char id=8203 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=0 page=0 chnl=0 +char id=8204 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=0 page=0 chnl=0 +char id=8210 x=261 y=152 width=9 height=1 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=8211 x=270 y=152 width=9 height=1 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=8212 x=279 y=152 width=17 height=1 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=8213 x=296 y=152 width=17 height=1 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=8214 x=102 y=135 width=6 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=8215 x=201 y=152 width=9 height=3 xoffset=-1 yoffset=15 xadvance=7 page=0 chnl=0 +char id=8216 x=125 y=152 width=3 height=4 xoffset=2 yoffset=3 xadvance=4 page=0 chnl=0 +char id=8217 x=128 y=152 width=3 height=4 xoffset=2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=8218 x=131 y=152 width=3 height=4 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 +char id=8219 x=134 y=152 width=3 height=4 xoffset=2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=8220 x=137 y=152 width=7 height=4 xoffset=2 yoffset=3 xadvance=7 page=0 chnl=0 +char id=8221 x=144 y=152 width=6 height=4 xoffset=3 yoffset=4 xadvance=7 page=0 chnl=0 +char id=8222 x=150 y=152 width=6 height=4 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 +char id=8223 x=156 y=152 width=6 height=4 xoffset=3 yoffset=4 xadvance=7 page=0 chnl=0 +char id=8224 x=89 y=60 width=7 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=8225 x=96 y=60 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=8226 x=71 y=152 width=6 height=5 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=8230 x=229 y=152 width=13 height=2 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 +char id=8239 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 +char id=8240 x=367 y=60 width=17 height=12 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 +char id=8242 x=77 y=152 width=5 height=5 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=0 +char id=8243 x=82 y=152 width=8 height=5 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=8244 x=90 y=152 width=11 height=5 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=8249 x=13 y=152 width=5 height=6 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 +char id=8250 x=18 y=152 width=4 height=6 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 +char id=8252 x=108 y=135 width=11 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=8254 x=313 y=152 width=9 height=1 xoffset=2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=8260 x=119 y=84 width=12 height=11 xoffset=-3 yoffset=3 xadvance=3 page=0 chnl=0 +char id=8286 x=104 y=60 width=6 height=13 xoffset=0 yoffset=1 xadvance=3 page=0 chnl=0 +char id=8352 x=131 y=84 width=10 height=11 xoffset=2 yoffset=3 xadvance=11 page=0 chnl=0 +char id=8353 x=423 y=0 width=12 height=15 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=8354 x=119 y=135 width=11 height=10 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=8355 x=130 y=135 width=11 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=8356 x=141 y=84 width=9 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=8357 x=384 y=60 width=12 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=8358 x=141 y=135 width=13 height=10 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=8359 x=150 y=84 width=16 height=11 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 +char id=8360 x=154 y=135 width=17 height=10 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=8361 x=171 y=135 width=15 height=10 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=8363 x=110 y=60 width=10 height=13 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=8364 x=166 y=84 width=13 height=11 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=8365 x=179 y=84 width=13 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 +char id=8366 x=192 y=84 width=11 height=11 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=8367 x=326 y=33 width=22 height=14 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 +char id=8368 x=502 y=19 width=9 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=8369 x=203 y=84 width=11 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=8370 x=120 y=60 width=10 height=13 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=8371 x=214 y=84 width=12 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 +char id=8372 x=226 y=84 width=9 height=11 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=8373 x=396 y=60 width=10 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 +kernings count=17372 +kerning first=1051 second=1052 amount=-1 +kerning first=1049 second=1107 amount=-1 +kerning first=354 second=233 amount=-1 +kerning first=8249 second=217 amount=-1 +kerning first=351 second=44 amount=-1 +kerning first=314 second=45 amount=-1 +kerning first=197 second=46 amount=-1 +kerning first=280 second=288 amount=-1 +kerning first=375 second=291 amount=-1 +kerning first=339 second=291 amount=-1 +kerning first=211 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=370 second=67 amount=-1 +kerning first=334 second=68 amount=-1 +kerning first=211 second=70 amount=-1 +kerning first=8217 second=71 amount=-1 +kerning first=327 second=72 amount=-1 +kerning first=346 second=75 amount=-1 +kerning first=201 second=76 amount=-1 +kerning first=207 second=77 amount=-1 +kerning first=202 second=78 amount=-1 +kerning first=366 second=80 amount=-1 +kerning first=304 second=82 amount=-1 +kerning first=72 second=83 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=8216 second=85 amount=-1 +kerning first=231 second=291 amount=-1 +kerning first=270 second=87 amount=-1 +kerning first=211 second=88 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=187 second=90 amount=-1 +kerning first=362 second=97 amount=-1 +kerning first=230 second=98 amount=-1 +kerning first=116 second=99 amount=-1 +kerning first=8218 second=100 amount=-1 +kerning first=283 second=101 amount=-1 +kerning first=70 second=102 amount=-1 +kerning first=8218 second=104 amount=-1 +kerning first=88 second=105 amount=-1 +kerning first=187 second=106 amount=-1 +kerning first=192 second=107 amount=-1 +kerning first=253 second=108 amount=-1 +kerning first=304 second=109 amount=-1 +kerning first=327 second=110 amount=-1 +kerning first=364 second=111 amount=-1 +kerning first=99 second=112 amount=-1 +kerning first=233 second=113 amount=-1 +kerning first=110 second=114 amount=-1 +kerning first=291 second=115 amount=-1 +kerning first=194 second=116 amount=-1 +kerning first=364 second=117 amount=-1 +kerning first=8250 second=119 amount=-1 +kerning first=103 second=120 amount=-1 +kerning first=1030 second=1043 amount=-1 +kerning first=89 second=122 amount=-1 +kerning first=336 second=8218 amount=-1 +kerning first=1067 second=1079 amount=-1 +kerning first=8220 second=65 amount=-2 +kerning first=325 second=81 amount=-1 +kerning first=1064 second=1049 amount=-1 +kerning first=197 second=171 amount=-1 +kerning first=121 second=353 amount=-1 +kerning first=282 second=187 amount=-1 +kerning first=356 second=273 amount=-1 +kerning first=368 second=192 amount=-1 +kerning first=45 second=193 amount=-1 +kerning first=8217 second=196 amount=-2 +kerning first=8217 second=197 amount=-2 +kerning first=74 second=198 amount=-1 +kerning first=72 second=199 amount=-1 +kerning first=209 second=201 amount=-1 +kerning first=209 second=202 amount=-1 +kerning first=80 second=203 amount=-1 +kerning first=284 second=204 amount=-1 +kerning first=262 second=205 amount=-1 +kerning first=220 second=206 amount=-1 +kerning first=366 second=207 amount=-1 +kerning first=78 second=209 amount=-1 +kerning first=302 second=210 amount=-1 +kerning first=220 second=211 amount=-1 +kerning first=199 second=212 amount=-1 +kerning first=209 second=213 amount=-1 +kerning first=82 second=214 amount=-1 +kerning first=67 second=216 amount=-1 +kerning first=88 second=217 amount=-1 +kerning first=187 second=218 amount=-1 +kerning first=65 second=219 amount=-1 +kerning first=74 second=80 amount=-1 +kerning first=68 second=221 amount=-1 +kerning first=194 second=223 amount=-1 +kerning first=304 second=224 amount=-1 +kerning first=99 second=225 amount=-1 +kerning first=77 second=227 amount=-1 +kerning first=263 second=228 amount=-1 +kerning first=220 second=230 amount=-1 +kerning first=314 second=231 amount=-1 +kerning first=281 second=232 amount=-1 +kerning first=206 second=234 amount=-1 +kerning first=264 second=8218 amount=-1 +kerning first=231 second=240 amount=-1 +kerning first=77 second=241 amount=-1 +kerning first=266 second=242 amount=-1 +kerning first=226 second=243 amount=-1 +kerning first=281 second=187 amount=-1 +kerning first=304 second=245 amount=-1 +kerning first=8218 second=246 amount=-1 +kerning first=325 second=248 amount=-1 +kerning first=198 second=249 amount=-1 +kerning first=366 second=250 amount=-1 +kerning first=66 second=251 amount=-1 +kerning first=8222 second=252 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=264 second=254 amount=-1 +kerning first=193 second=255 amount=-1 +kerning first=204 second=257 amount=-1 +kerning first=8217 second=259 amount=-1 +kerning first=323 second=261 amount=-1 +kerning first=187 second=377 amount=-1 +kerning first=367 second=263 amount=-1 +kerning first=344 second=266 amount=-1 +kerning first=229 second=267 amount=-1 +kerning first=85 second=268 amount=-1 +kerning first=266 second=199 amount=-1 +kerning first=218 second=271 amount=-1 +kerning first=217 second=273 amount=-1 +kerning first=369 second=275 amount=-1 +kerning first=45 second=278 amount=-1 +kerning first=235 second=279 amount=-1 +kerning first=217 second=280 amount=-1 +kerning first=289 second=281 amount=-1 +kerning first=45 second=282 amount=-1 +kerning first=305 second=283 amount=-1 +kerning first=310 second=284 amount=-1 +kerning first=8218 second=286 amount=-1 +kerning first=296 second=290 amount=-1 +kerning first=101 second=291 amount=-1 +kerning first=1062 second=1104 amount=-1 +kerning first=355 second=279 amount=-1 +kerning first=270 second=296 amount=-1 +kerning first=68 second=187 amount=-1 +kerning first=272 second=302 amount=-1 +kerning first=195 second=303 amount=-1 +kerning first=206 second=304 amount=-1 +kerning first=269 second=305 amount=-1 +kerning first=287 second=307 amount=-1 +kerning first=70 second=310 amount=-1 +kerning first=279 second=311 amount=-1 +kerning first=259 second=314 amount=-1 +kerning first=266 second=315 amount=-1 +kerning first=79 second=317 amount=-1 +kerning first=227 second=318 amount=-1 +kerning first=78 second=323 amount=-1 +kerning first=231 second=324 amount=-1 +kerning first=78 second=325 amount=-1 +kerning first=263 second=326 amount=-1 +kerning first=73 second=327 amount=-1 +kerning first=45 second=328 amount=-1 +kerning first=74 second=316 amount=-1 +kerning first=268 second=330 amount=-1 +kerning first=80 second=331 amount=-1 +kerning first=203 second=332 amount=-1 +kerning first=289 second=333 amount=-1 +kerning first=325 second=334 amount=-1 +kerning first=362 second=335 amount=-1 +kerning first=355 second=337 amount=-1 +kerning first=366 second=338 amount=-1 +kerning first=78 second=206 amount=-1 +kerning first=210 second=66 amount=-1 +kerning first=82 second=364 amount=-1 +kerning first=78 second=344 amount=-1 +kerning first=201 second=345 amount=-1 +kerning first=72 second=346 amount=-1 +kerning first=291 second=347 amount=-1 +kerning first=204 second=264 amount=-1 +kerning first=209 second=350 amount=-1 +kerning first=217 second=352 amount=-1 +kerning first=264 second=353 amount=-1 +kerning first=274 second=355 amount=-1 +kerning first=196 second=356 amount=-1 +kerning first=194 second=357 amount=-1 +kerning first=324 second=283 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=298 second=362 amount=-1 +kerning first=45 second=363 amount=-1 +kerning first=67 second=364 amount=-1 +kerning first=8250 second=366 amount=-1 +kerning first=296 second=368 amount=-1 +kerning first=321 second=370 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=79 second=374 amount=-1 +kerning first=192 second=375 amount=-1 +kerning first=325 second=261 amount=-1 +kerning first=45 second=377 amount=-1 +kerning first=266 second=378 amount=-1 +kerning first=289 second=380 amount=-1 +kerning first=282 second=367 amount=-1 +kerning first=233 second=382 amount=-1 +kerning first=219 second=193 amount=-1 +kerning first=298 second=368 amount=-1 +kerning first=73 second=257 amount=-1 +kerning first=69 second=367 amount=-1 +kerning first=246 second=380 amount=-1 +kerning first=1067 second=1027 amount=-1 +kerning first=354 second=380 amount=-1 +kerning first=68 second=200 amount=-1 +kerning first=8250 second=325 amount=-1 +kerning first=356 second=245 amount=-1 +kerning first=203 second=205 amount=-1 +kerning first=286 second=270 amount=-1 +kerning first=316 second=108 amount=-1 +kerning first=81 second=197 amount=-1 +kerning first=70 second=99 amount=-1 +kerning first=45 second=197 amount=-1 +kerning first=1054 second=1030 amount=-1 +kerning first=262 second=368 amount=-1 +kerning first=350 second=209 amount=-1 +kerning first=338 second=78 amount=-1 +kerning first=355 second=8221 amount=-1 +kerning first=213 second=44 amount=-1 +kerning first=302 second=78 amount=-1 +kerning first=298 second=355 amount=-1 +kerning first=220 second=252 amount=-1 +kerning first=344 second=214 amount=-1 +kerning first=262 second=355 amount=-1 +kerning first=1054 second=1043 amount=-1 +kerning first=307 second=8222 amount=-1 +kerning first=1030 second=1071 amount=-1 +kerning first=1046 second=1116 amount=-1 +kerning first=8250 second=250 amount=-1 +kerning first=71 second=325 amount=-1 +kerning first=364 second=252 amount=-1 +kerning first=366 second=197 amount=-1 +kerning first=266 second=78 amount=-1 +kerning first=85 second=355 amount=-1 +kerning first=8220 second=366 amount=-1 +kerning first=366 second=8249 amount=-2 +kerning first=217 second=248 amount=-1 +kerning first=277 second=117 amount=-1 +kerning first=75 second=8250 amount=-1 +kerning first=1118 second=1116 amount=-1 +kerning first=270 second=282 amount=-1 +kerning first=1051 second=1039 amount=-1 +kerning first=202 second=296 amount=-1 +kerning first=1091 second=1096 amount=-1 +kerning first=72 second=44 amount=-1 +kerning first=200 second=214 amount=-1 +kerning first=121 second=367 amount=-1 +kerning first=8218 second=363 amount=-1 +kerning first=370 second=355 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=68 second=347 amount=-1 +kerning first=268 second=350 amount=-1 +kerning first=69 second=220 amount=-1 +kerning first=304 second=350 amount=-1 +kerning first=1038 second=1072 amount=-1 +kerning first=1041 second=1059 amount=-1 +kerning first=229 second=333 amount=-1 +kerning first=73 second=77 amount=-1 +kerning first=1118 second=1103 amount=-1 +kerning first=112 second=382 amount=-1 +kerning first=354 second=246 amount=-1 +kerning first=1054 second=1056 amount=-1 +kerning first=263 second=251 amount=-1 +kerning first=217 second=382 amount=-1 +kerning first=119 second=289 amount=-1 +kerning first=1048 second=1048 amount=-1 +kerning first=86 second=100 amount=-1 +kerning first=250 second=103 amount=-1 +kerning first=284 second=327 amount=-1 +kerning first=350 second=330 amount=-1 +kerning first=224 second=289 amount=-1 +kerning first=282 second=77 amount=-1 +kerning first=1051 second=1065 amount=-1 +kerning first=217 second=8218 amount=-2 +kerning first=1049 second=1094 amount=-1 +kerning first=1088 second=1113 amount=-1 +kerning first=286 second=77 amount=-1 +kerning first=105 second=246 amount=-1 +kerning first=65 second=356 amount=-1 +kerning first=1062 second=1091 amount=-1 +kerning first=326 second=281 amount=-1 +kerning first=210 second=220 amount=-1 +kerning first=214 second=77 amount=-1 +kerning first=366 second=171 amount=-2 +kerning first=362 second=281 amount=-1 +kerning first=244 second=378 amount=-1 +kerning first=296 second=109 amount=-1 +kerning first=87 second=120 amount=-1 +kerning first=220 second=85 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=298 second=72 amount=-1 +kerning first=72 second=211 amount=-1 +kerning first=264 second=120 amount=-1 +kerning first=1038 second=1079 amount=-1 +kerning first=77 second=281 amount=-1 +kerning first=253 second=382 amount=-1 +kerning first=275 second=339 amount=-1 +kerning first=202 second=332 amount=-1 +kerning first=289 second=382 amount=-1 +kerning first=231 second=275 amount=-1 +kerning first=325 second=382 amount=-1 +kerning first=74 second=290 amount=-1 +kerning first=1060 second=1025 amount=-1 +kerning first=8250 second=374 amount=-2 +kerning first=281 second=347 amount=-1 +kerning first=310 second=332 amount=-1 +kerning first=1048 second=1074 amount=-1 +kerning first=1071 second=1051 amount=-1 +kerning first=274 second=332 amount=-1 +kerning first=209 second=347 amount=-1 +kerning first=1065 second=1108 amount=-1 +kerning first=264 second=313 amount=-1 +kerning first=1091 second=1076 amount=-1 +kerning first=267 second=111 amount=-1 +kerning first=310 second=8250 amount=-1 +kerning first=263 second=254 amount=-1 +kerning first=279 second=337 amount=-1 +kerning first=272 second=374 amount=-1 +kerning first=274 second=8250 amount=-1 +kerning first=233 second=357 amount=-1 +kerning first=205 second=113 amount=-1 +kerning first=302 second=271 amount=-1 +kerning first=370 second=195 amount=-1 +kerning first=266 second=271 amount=-1 +kerning first=1055 second=1076 amount=-1 +kerning first=67 second=8221 amount=-1 +kerning first=202 second=8250 amount=-1 +kerning first=205 second=323 amount=-1 +kerning first=374 second=271 amount=-1 +kerning first=219 second=219 amount=-1 +kerning first=1047 second=1041 amount=-1 +kerning first=97 second=8250 amount=-1 +kerning first=1053 second=1118 amount=-1 +kerning first=197 second=357 amount=-1 +kerning first=8216 second=368 amount=-1 +kerning first=187 second=76 amount=-1 +kerning first=269 second=107 amount=-1 +kerning first=1059 second=1071 amount=-1 +kerning first=248 second=8217 amount=-2 +kerning first=193 second=212 amount=-1 +kerning first=284 second=8217 amount=-1 +kerning first=356 second=8217 amount=-1 +kerning first=1039 second=1075 amount=-1 +kerning first=71 second=8217 amount=-1 +kerning first=364 second=85 amount=-1 +kerning first=1067 second=1107 amount=-1 +kerning first=107 second=8217 amount=-1 +kerning first=197 second=262 amount=-1 +kerning first=202 second=310 amount=-1 +kerning first=88 second=212 amount=-1 +kerning first=231 second=111 amount=-1 +kerning first=194 second=366 amount=-1 +kerning first=217 second=68 amount=-1 +kerning first=330 second=331 amount=-1 +kerning first=278 second=8250 amount=-1 +kerning first=325 second=68 amount=-1 +kerning first=366 second=331 amount=-1 +kerning first=67 second=314 amount=-1 +kerning first=224 second=263 amount=-1 +kerning first=1068 second=1024 amount=-1 +kerning first=1041 second=1025 amount=-1 +kerning first=1053 second=1027 amount=-1 +kerning first=1040 second=1028 amount=-1 +kerning first=1060 second=1030 amount=-1 +kerning first=1064 second=1031 amount=-1 +kerning first=1060 second=1034 amount=-1 +kerning first=316 second=314 amount=-1 +kerning first=1041 second=1036 amount=-1 +kerning first=296 second=263 amount=-1 +kerning first=1068 second=1038 amount=-2 +kerning first=1064 second=1039 amount=-1 +kerning first=203 second=365 amount=-1 +kerning first=119 second=117 amount=-1 +kerning first=234 second=314 amount=-1 +kerning first=298 second=67 amount=-1 +kerning first=1041 second=1044 amount=-1 +kerning first=1041 second=1045 amount=-1 +kerning first=1040 second=1047 amount=-1 +kerning first=1041 second=1048 amount=-1 +kerning first=1069 second=1049 amount=-1 +kerning first=1071 second=1050 amount=-1 +kerning first=1052 second=1051 amount=-1 +kerning first=1041 second=1052 amount=-1 +kerning first=1042 second=1053 amount=-1 +kerning first=1046 second=1054 amount=-1 +kerning first=1051 second=1055 amount=-1 +kerning first=1053 second=1056 amount=-1 +kerning first=1065 second=1057 amount=-1 +kerning first=1060 second=1059 amount=-1 +kerning first=1046 second=1060 amount=-1 +kerning first=1041 second=1061 amount=-1 +kerning first=1034 second=1062 amount=-1 +kerning first=1040 second=1063 amount=-2 +kerning first=1041 second=1064 amount=-1 +kerning first=1054 second=1065 amount=-1 +kerning first=262 second=67 amount=-1 +kerning first=1041 second=1068 amount=-1 +kerning first=1049 second=1069 amount=-1 +kerning first=1049 second=1070 amount=-1 +kerning first=1071 second=1071 amount=-1 +kerning first=1053 second=1072 amount=-1 +kerning first=1040 second=1073 amount=-1 +kerning first=1027 second=1074 amount=-1 +kerning first=8250 second=70 amount=-1 +kerning first=1078 second=1076 amount=-1 +kerning first=1050 second=1077 amount=-1 +kerning first=1073 second=1078 amount=-1 +kerning first=1051 second=1079 amount=-1 +kerning first=1059 second=1080 amount=-1 +kerning first=1042 second=1081 amount=-1 +kerning first=1041 second=1082 amount=-1 +kerning first=1041 second=1083 amount=-1 +kerning first=1056 second=1084 amount=-1 +kerning first=1041 second=1085 amount=-1 +kerning first=1071 second=1086 amount=-1 +kerning first=1058 second=1087 amount=-1 +kerning first=1027 second=1088 amount=-1 +kerning first=1027 second=1089 amount=-1 +kerning first=1041 second=1090 amount=-1 +kerning first=1077 second=1091 amount=-1 +kerning first=8218 second=307 amount=-1 +kerning first=338 second=366 amount=-1 +kerning first=1048 second=1094 amount=-1 +kerning first=1094 second=1095 amount=-1 +kerning first=1040 second=1096 amount=-1 +kerning first=1076 second=1097 amount=-1 +kerning first=1052 second=1098 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=1059 second=1100 amount=-1 +kerning first=1065 second=1101 amount=-1 +kerning first=1041 second=1102 amount=-1 +kerning first=1078 second=1103 amount=-1 +kerning first=1027 second=1104 amount=-1 +kerning first=207 second=229 amount=-1 +kerning first=1027 second=1107 amount=-1 +kerning first=1049 second=1108 amount=-1 +kerning first=266 second=366 amount=-1 +kerning first=1054 second=1113 amount=-1 +kerning first=89 second=271 amount=-1 +kerning first=268 second=203 amount=-1 +kerning first=344 second=374 amount=-1 +kerning first=1047 second=1117 amount=-1 +kerning first=1105 second=1118 amount=-1 +kerning first=1065 second=1119 amount=-1 +kerning first=194 second=104 amount=-1 +kerning first=230 second=104 amount=-1 +kerning first=256 second=46 amount=-1 +kerning first=87 second=192 amount=-1 +kerning first=296 second=70 amount=-1 +kerning first=73 second=378 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=207 second=101 amount=-1 +kerning first=209 second=46 amount=-1 +kerning first=83 second=70 amount=-1 +kerning first=279 second=101 amount=-1 +kerning first=281 second=46 amount=-1 +kerning first=270 second=76 amount=-1 +kerning first=1064 second=1075 amount=-1 +kerning first=67 second=262 amount=-1 +kerning first=69 second=207 amount=-1 +kerning first=8218 second=261 amount=-1 +kerning first=198 second=76 amount=-1 +kerning first=280 second=262 amount=-1 +kerning first=207 second=286 amount=-1 +kerning first=73 second=296 amount=-1 +kerning first=201 second=8217 amount=-1 +kerning first=66 second=216 amount=-1 +kerning first=207 second=216 amount=-1 +kerning first=1059 second=1087 amount=-1 +kerning first=258 second=357 amount=-1 +kerning first=286 second=296 amount=-1 +kerning first=266 second=104 amount=-1 +kerning first=366 second=357 amount=-1 +kerning first=97 second=345 amount=-1 +kerning first=214 second=296 amount=-1 +kerning first=212 second=204 amount=-1 +kerning first=196 second=311 amount=-1 +kerning first=232 second=311 amount=-1 +kerning first=202 second=345 amount=-1 +kerning first=78 second=366 amount=-1 +kerning first=253 second=369 amount=-1 +kerning first=8250 second=262 amount=-1 +kerning first=274 second=280 amount=-1 +kerning first=274 second=345 amount=-1 +kerning first=217 second=369 amount=-1 +kerning first=368 second=122 amount=-1 +kerning first=366 second=210 amount=-1 +kerning first=354 second=259 amount=-1 +kerning first=8217 second=100 amount=-1 +kerning first=310 second=345 amount=-1 +kerning first=70 second=8218 amount=-2 +kerning first=213 second=198 amount=-1 +kerning first=346 second=280 amount=-1 +kerning first=346 second=345 amount=-1 +kerning first=112 second=287 amount=-1 +kerning first=1053 second=1105 amount=-1 +kerning first=296 second=122 amount=-1 +kerning first=221 second=225 amount=-1 +kerning first=330 second=210 amount=-1 +kerning first=8250 second=109 amount=-1 +kerning first=1056 second=1096 amount=-1 +kerning first=210 second=207 amount=-1 +kerning first=66 second=210 amount=-1 +kerning first=258 second=210 amount=-1 +kerning first=65 second=318 amount=-1 +kerning first=289 second=287 amount=-1 +kerning first=263 second=113 amount=-1 +kerning first=282 second=207 amount=-1 +kerning first=253 second=287 amount=-1 +kerning first=1030 second=1113 amount=-1 +kerning first=327 second=366 amount=-1 +kerning first=45 second=210 amount=-1 +kerning first=1038 second=1114 amount=-1 +kerning first=201 second=67 amount=-1 +kerning first=219 second=366 amount=-1 +kerning first=227 second=113 amount=-1 +kerning first=277 second=271 amount=-1 +kerning first=205 second=336 amount=-1 +kerning first=86 second=113 amount=-1 +kerning first=8218 second=279 amount=-1 +kerning first=74 second=195 amount=-1 +kerning first=346 second=8250 amount=-1 +kerning first=279 second=281 amount=-1 +kerning first=109 second=244 amount=-1 +kerning first=79 second=278 amount=-1 +kerning first=200 second=73 amount=-1 +kerning first=220 second=347 amount=-1 +kerning first=272 second=73 amount=-1 +kerning first=207 second=268 amount=-1 +kerning first=1048 second=1108 amount=-1 +kerning first=235 second=8220 amount=-2 +kerning first=344 second=86 amount=-1 +kerning first=79 second=347 amount=-1 +kerning first=220 second=278 amount=-1 +kerning first=323 second=97 amount=-1 +kerning first=307 second=8220 amount=-1 +kerning first=272 second=86 amount=-1 +kerning first=66 second=268 amount=-1 +kerning first=271 second=8220 amount=-1 +kerning first=258 second=303 amount=-1 +kerning first=84 second=283 amount=-1 +kerning first=281 second=365 amount=-1 +kerning first=364 second=278 amount=-1 +kerning first=99 second=277 amount=-1 +kerning first=364 second=323 amount=-1 +kerning first=1030 second=1099 amount=-1 +kerning first=250 second=267 amount=-1 +kerning first=203 second=77 amount=-1 +kerning first=8250 second=122 amount=-1 +kerning first=217 second=235 amount=-1 +kerning first=207 second=281 amount=-1 +kerning first=240 second=277 amount=-1 +kerning first=369 second=283 amount=-1 +kerning first=259 second=269 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=70 second=253 amount=-1 +kerning first=8217 second=267 amount=-1 +kerning first=1038 second=1081 amount=-1 +kerning first=225 second=283 amount=-1 +kerning first=103 second=246 amount=-1 +kerning first=275 second=231 amount=-1 +kerning first=261 second=283 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=219 second=65 amount=-1 +kerning first=187 second=338 amount=-1 +kerning first=367 second=269 amount=-1 +kerning first=85 second=260 amount=-1 +kerning first=379 second=8220 amount=-1 +kerning first=82 second=338 amount=-1 +kerning first=196 second=363 amount=-1 +kerning first=8250 second=290 amount=-1 +kerning first=232 second=363 amount=-1 +kerning first=201 second=286 amount=-1 +kerning first=221 second=79 amount=-1 +kerning first=364 second=347 amount=-1 +kerning first=73 second=244 amount=-1 +kerning first=334 second=8250 amount=-1 +kerning first=111 second=289 amount=-1 +kerning first=264 second=261 amount=-1 +kerning first=67 second=275 amount=-1 +kerning first=85 second=85 amount=-1 +kerning first=1036 second=1097 amount=-1 +kerning first=334 second=260 amount=-1 +kerning first=201 second=80 amount=-1 +kerning first=370 second=260 amount=-1 +kerning first=375 second=8222 amount=-1 +kerning first=264 second=82 amount=-1 +kerning first=279 second=114 amount=-1 +kerning first=82 second=217 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=334 second=368 amount=-1 +kerning first=81 second=344 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=267 second=8222 amount=-1 +kerning first=231 second=8222 amount=-1 +kerning first=68 second=115 amount=-1 +kerning first=8220 second=193 amount=-2 +kerning first=78 second=353 amount=-1 +kerning first=288 second=310 amount=-1 +kerning first=1051 second=1070 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=264 second=205 amount=-1 +kerning first=281 second=115 amount=-1 +kerning first=87 second=261 amount=-1 +kerning first=219 second=353 amount=-1 +kerning first=1056 second=1027 amount=-1 +kerning first=89 second=258 amount=-1 +kerning first=205 second=284 amount=-1 +kerning first=1031 second=1053 amount=-1 +kerning first=291 second=353 amount=-1 +kerning first=1067 second=1053 amount=-1 +kerning first=200 second=81 amount=-1 +kerning first=289 second=235 amount=-1 +kerning first=375 second=252 amount=-1 +kerning first=325 second=235 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=1055 second=1037 amount=-1 +kerning first=233 second=249 amount=-1 +kerning first=288 second=362 amount=-1 +kerning first=1030 second=1092 amount=-1 +kerning first=232 second=242 amount=-1 +kerning first=316 second=380 amount=-1 +kerning first=268 second=242 amount=-1 +kerning first=8218 second=107 amount=-1 +kerning first=8222 second=311 amount=-1 +kerning first=1027 second=1116 amount=-1 +kerning first=248 second=106 amount=-1 +kerning first=209 second=200 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=304 second=242 amount=-1 +kerning first=366 second=223 amount=-1 +kerning first=88 second=45 amount=-1 +kerning first=1034 second=1044 amount=-1 +kerning first=324 second=248 amount=-1 +kerning first=269 second=249 amount=-1 +kerning first=75 second=362 amount=-1 +kerning first=231 second=252 amount=-1 +kerning first=339 second=252 amount=-1 +kerning first=204 second=71 amount=-1 +kerning first=364 second=226 amount=-1 +kerning first=316 second=275 amount=-1 +kerning first=71 second=270 amount=-1 +kerning first=235 second=233 amount=-1 +kerning first=328 second=291 amount=-1 +kerning first=271 second=233 amount=-1 +kerning first=45 second=223 amount=-1 +kerning first=70 second=364 amount=-1 +kerning first=199 second=233 amount=-1 +kerning first=199 second=302 amount=-1 +kerning first=258 second=223 amount=-1 +kerning first=115 second=291 amount=-1 +kerning first=307 second=233 amount=-1 +kerning first=67 second=327 amount=-1 +kerning first=200 second=361 amount=-1 +kerning first=250 second=101 amount=-1 +kerning first=1048 second=1113 amount=-1 +kerning first=224 second=122 amount=-1 +kerning first=369 second=335 amount=-1 +kerning first=234 second=243 amount=-1 +kerning first=327 second=232 amount=-1 +kerning first=291 second=232 amount=-1 +kerning first=119 second=122 amount=-1 +kerning first=1101 second=1083 amount=-1 +kerning first=209 second=8217 amount=-1 +kerning first=218 second=284 amount=-1 +kerning first=219 second=232 amount=-1 +kerning first=1058 second=1080 amount=-1 +kerning first=110 second=8221 amount=-2 +kerning first=280 second=327 amount=-1 +kerning first=8218 second=382 amount=-1 +kerning first=264 second=107 amount=-1 +kerning first=352 second=327 amount=-1 +kerning first=268 second=311 amount=-1 +kerning first=251 second=8221 amount=-1 +kerning first=363 second=232 amount=-1 +kerning first=207 second=337 amount=-1 +kerning first=338 second=250 amount=-1 +kerning first=1051 second=1077 amount=-1 +kerning first=204 second=225 amount=-1 +kerning first=45 second=211 amount=-1 +kerning first=8222 second=363 amount=-1 +kerning first=70 second=318 amount=-1 +kerning first=8216 second=260 amount=-2 +kerning first=1059 second=1113 amount=-1 +kerning first=220 second=72 amount=-1 +kerning first=270 second=89 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=78 second=232 amount=-1 +kerning first=71 second=76 amount=-1 +kerning first=261 second=335 amount=-1 +kerning first=1075 second=1088 amount=-1 +kerning first=1051 second=1104 amount=-1 +kerning first=353 second=46 amount=-1 +kerning first=283 second=318 amount=-1 +kerning first=364 second=72 amount=-1 +kerning first=1049 second=1055 amount=-1 +kerning first=267 second=98 amount=-1 +kerning first=330 second=344 amount=-1 +kerning first=263 second=267 amount=-1 +kerning first=195 second=98 amount=-1 +kerning first=8222 second=107 amount=-1 +kerning first=88 second=199 amount=-1 +kerning first=212 second=325 amount=-1 +kerning first=366 second=344 amount=-1 +kerning first=1053 second=1036 amount=-1 +kerning first=298 second=210 amount=-1 +kerning first=193 second=199 amount=-1 +kerning first=375 second=98 amount=-1 +kerning first=86 second=267 amount=-1 +kerning first=339 second=98 amount=-1 +kerning first=324 second=267 amount=-1 +kerning first=362 second=212 amount=-1 +kerning first=1056 second=1070 amount=-1 +kerning first=8218 second=235 amount=-1 +kerning first=218 second=212 amount=-1 +kerning first=337 second=114 amount=-1 +kerning first=1036 second=1028 amount=-1 +kerning first=67 second=206 amount=-1 +kerning first=252 second=267 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=229 second=114 amount=-1 +kerning first=1053 second=1079 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=352 second=206 amount=-1 +kerning first=193 second=114 amount=-1 +kerning first=100 second=245 amount=-1 +kerning first=77 second=212 amount=-1 +kerning first=1118 second=1096 amount=-1 +kerning first=219 second=258 amount=-1 +kerning first=282 second=315 amount=-1 +kerning first=355 second=8249 amount=-1 +kerning first=280 second=206 amount=-1 +kerning first=206 second=111 amount=-1 +kerning first=8222 second=242 amount=-1 +kerning first=73 second=352 amount=-1 +kerning first=314 second=111 amount=-1 +kerning first=88 second=114 amount=-1 +kerning first=74 second=368 amount=-1 +kerning first=302 second=310 amount=-1 +kerning first=235 second=263 amount=-1 +kerning first=8217 second=336 amount=-1 +kerning first=266 second=310 amount=-1 +kerning first=85 second=120 amount=-1 +kerning first=70 second=197 amount=-1 +kerning first=67 second=370 amount=-1 +kerning first=8250 second=117 amount=-1 +kerning first=1118 second=1082 amount=-1 +kerning first=307 second=263 amount=-1 +kerning first=211 second=197 amount=-1 +kerning first=278 second=81 amount=-1 +kerning first=70 second=8249 amount=-2 +kerning first=87 second=365 amount=-1 +kerning first=106 second=8249 amount=-1 +kerning first=339 second=8218 amount=-1 +kerning first=108 second=8221 amount=-1 +kerning first=255 second=8222 amount=-1 +kerning first=70 second=331 amount=-1 +kerning first=264 second=68 amount=-1 +kerning first=1033 second=1037 amount=-1 +kerning first=209 second=72 amount=-1 +kerning first=352 second=370 amount=-1 +kerning first=1069 second=1037 amount=-1 +kerning first=75 second=8249 amount=-1 +kerning first=280 second=370 amount=-1 +kerning first=204 second=199 amount=-1 +kerning first=121 second=106 amount=-1 +kerning first=70 second=361 amount=-1 +kerning first=1064 second=1101 amount=-1 +kerning first=338 second=310 amount=-1 +kerning first=202 second=67 amount=-1 +kerning first=1055 second=1024 amount=-1 +kerning first=364 second=8222 amount=-2 +kerning first=362 second=346 amount=-1 +kerning first=70 second=227 amount=-1 +kerning first=68 second=282 amount=-1 +kerning first=220 second=298 amount=-1 +kerning first=220 second=8222 amount=-2 +kerning first=218 second=346 amount=-1 +kerning first=266 second=327 amount=-1 +kerning first=73 second=207 amount=-1 +kerning first=302 second=327 amount=-1 +kerning first=115 second=8222 amount=-1 +kerning first=338 second=327 amount=-1 +kerning first=79 second=8222 amount=-1 +kerning first=77 second=346 amount=-1 +kerning first=80 second=350 amount=-1 +kerning first=314 second=291 amount=-1 +kerning first=219 second=288 amount=-1 +kerning first=116 second=337 amount=-1 +kerning first=364 second=334 amount=-1 +kerning first=78 second=288 amount=-1 +kerning first=80 second=337 amount=-1 +kerning first=242 second=291 amount=-1 +kerning first=346 second=44 amount=-1 +kerning first=219 second=8218 amount=-2 +kerning first=327 second=288 amount=-1 +kerning first=206 second=81 amount=-1 +kerning first=1066 second=1046 amount=-1 +kerning first=197 second=318 amount=-1 +kerning first=192 second=253 amount=-1 +kerning first=233 second=318 amount=-1 +kerning first=290 second=75 amount=-1 +kerning first=269 second=318 amount=-1 +kerning first=1033 second=1050 amount=-1 +kerning first=1053 second=1098 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=365 second=337 amount=-1 +kerning first=234 second=187 amount=-1 +kerning first=1058 second=1119 amount=-1 +kerning first=85 second=195 amount=-1 +kerning first=270 second=187 amount=-1 +kerning first=1060 second=1064 amount=-1 +kerning first=77 second=75 amount=-1 +kerning first=277 second=245 amount=-1 +kerning first=257 second=337 amount=-1 +kerning first=241 second=245 amount=-1 +kerning first=198 second=187 amount=-1 +kerning first=221 second=337 amount=-1 +kerning first=205 second=245 amount=-1 +kerning first=356 second=230 amount=-1 +kerning first=330 second=279 amount=-1 +kerning first=1039 second=1036 amount=-1 +kerning first=366 second=279 amount=-1 +kerning first=345 second=226 amount=-1 +kerning first=268 second=234 amount=-1 +kerning first=327 second=364 amount=-1 +kerning first=305 second=8250 amount=-1 +kerning first=199 second=243 amount=-1 +kerning first=8218 second=339 amount=-1 +kerning first=196 second=105 amount=-1 +kerning first=1066 second=1059 amount=-2 +kerning first=362 second=75 amount=-1 +kerning first=86 second=332 amount=-1 +kerning first=262 second=316 amount=-1 +kerning first=82 second=8217 amount=-1 +kerning first=205 second=202 amount=-1 +kerning first=226 second=316 amount=-1 +kerning first=118 second=8217 amount=-2 +kerning first=86 second=8250 amount=-1 +kerning first=374 second=117 amount=-1 +kerning first=323 second=264 amount=-1 +kerning first=201 second=362 amount=-1 +kerning first=345 second=8220 amount=-1 +kerning first=364 second=80 amount=-1 +kerning first=338 second=117 amount=-1 +kerning first=270 second=351 amount=-1 +kerning first=234 second=351 amount=-1 +kerning first=1071 second=1025 amount=-1 +kerning first=8222 second=105 amount=-1 +kerning first=278 second=361 amount=-1 +kerning first=88 second=307 amount=-1 +kerning first=233 second=108 amount=-1 +kerning first=74 second=264 amount=-1 +kerning first=280 second=69 amount=-1 +kerning first=1057 second=1073 amount=-1 +kerning first=325 second=8217 amount=-1 +kerning first=268 second=248 amount=-1 +kerning first=193 second=307 amount=-1 +kerning first=330 second=82 amount=-1 +kerning first=284 second=364 amount=-1 +kerning first=352 second=69 amount=-1 +kerning first=197 second=108 amount=-1 +kerning first=223 second=8217 amount=-2 +kerning first=212 second=364 amount=-1 +kerning first=1069 second=1050 amount=-1 +kerning first=338 second=323 amount=-1 +kerning first=366 second=82 amount=-1 +kerning first=302 second=323 amount=-1 +kerning first=266 second=323 amount=-1 +kerning first=201 second=338 amount=-1 +kerning first=71 second=364 amount=-1 +kerning first=262 second=286 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=8250 second=194 amount=-1 +kerning first=298 second=286 amount=-1 +kerning first=1062 second=1117 amount=-1 +kerning first=249 second=113 amount=-1 +kerning first=67 second=69 amount=-1 +kerning first=268 second=262 amount=-1 +kerning first=268 second=171 amount=-1 +kerning first=187 second=325 amount=-1 +kerning first=370 second=286 amount=-1 +kerning first=199 second=257 amount=-1 +kerning first=74 second=355 amount=-1 +kerning first=1047 second=1067 amount=-1 +kerning first=85 second=286 amount=-1 +kerning first=335 second=316 amount=-1 +kerning first=197 second=314 amount=-1 +kerning first=81 second=82 amount=-1 +kerning first=68 second=72 amount=-1 +kerning first=72 second=113 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=73 second=8250 amount=-1 +kerning first=1040 second=1069 amount=-1 +kerning first=325 second=317 amount=-1 +kerning first=269 second=314 amount=-1 +kerning first=233 second=314 amount=-1 +kerning first=8222 second=229 amount=-1 +kerning first=323 second=355 amount=-1 +kerning first=287 second=355 amount=-1 +kerning first=230 second=117 amount=-1 +kerning first=209 second=282 amount=-1 +kerning first=121 second=316 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=277 second=267 amount=-1 +kerning first=1048 second=1100 amount=-1 +kerning first=235 second=289 amount=-1 +kerning first=264 second=339 amount=-1 +kerning first=268 second=229 amount=-1 +kerning first=228 second=339 amount=-1 +kerning first=307 second=289 amount=-1 +kerning first=195 second=356 amount=-1 +kerning first=1049 second=1042 amount=-1 +kerning first=271 second=289 amount=-1 +kerning first=304 second=229 amount=-1 +kerning first=269 second=171 amount=-1 +kerning first=1053 second=1049 amount=-1 +kerning first=232 second=101 amount=-1 +kerning first=365 second=246 amount=-1 +kerning first=369 second=103 amount=-1 +kerning first=364 second=304 amount=-1 +kerning first=304 second=101 amount=-1 +kerning first=368 second=194 amount=-1 +kerning first=66 second=315 amount=-1 +kerning first=257 second=246 amount=-1 +kerning first=240 second=333 amount=-1 +kerning first=220 second=256 amount=-1 +kerning first=362 second=246 amount=-1 +kerning first=221 second=246 amount=-1 +kerning first=225 second=103 amount=-1 +kerning first=220 second=304 amount=-1 +kerning first=199 second=220 amount=-1 +kerning first=1051 second=1091 amount=-1 +kerning first=116 second=246 amount=-1 +kerning first=204 second=333 amount=-1 +kerning first=275 second=120 amount=-1 +kerning first=69 second=315 amount=-1 +kerning first=202 second=211 amount=-1 +kerning first=72 second=109 amount=-1 +kerning first=45 second=86 amount=-2 +kerning first=79 second=304 amount=-1 +kerning first=81 second=86 amount=-1 +kerning first=325 second=313 amount=-1 +kerning first=347 second=8218 amount=-1 +kerning first=195 second=85 amount=-1 +kerning first=311 second=8218 amount=-1 +kerning first=288 second=202 amount=-1 +kerning first=229 second=281 amount=-1 +kerning first=101 second=382 amount=-1 +kerning first=87 second=339 amount=-1 +kerning first=101 second=287 amount=-1 +kerning first=206 second=382 amount=-1 +kerning first=304 second=298 amount=-1 +kerning first=242 second=382 amount=-1 +kerning first=8217 second=332 amount=-1 +kerning first=274 second=211 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=262 second=290 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=98 second=120 amount=-1 +kerning first=314 second=382 amount=-1 +kerning first=8250 second=198 amount=-1 +kerning first=298 second=290 amount=-1 +kerning first=242 second=287 amount=-1 +kerning first=263 second=8250 amount=-1 +kerning first=310 second=211 amount=-1 +kerning first=258 second=86 amount=-1 +kerning first=370 second=290 amount=-1 +kerning first=1046 second=1090 amount=-1 +kerning first=289 second=339 amount=-1 +kerning first=289 second=107 amount=-1 +kerning first=83 second=302 amount=-1 +kerning first=253 second=107 amount=-1 +kerning first=246 second=289 amount=-1 +kerning first=325 second=339 amount=-1 +kerning first=83 second=8220 amount=-1 +kerning first=8217 second=362 amount=-1 +kerning first=1052 second=1067 amount=-1 +kerning first=338 second=219 amount=-1 +kerning first=356 second=234 amount=-1 +kerning first=1118 second=1090 amount=-1 +kerning first=252 second=101 amount=-1 +kerning first=219 second=211 amount=-1 +kerning first=68 second=278 amount=-1 +kerning first=266 second=219 amount=-1 +kerning first=217 second=339 amount=-1 +kerning first=8222 second=268 amount=-1 +kerning first=119 second=8220 amount=-2 +kerning first=302 second=219 amount=-1 +kerning first=194 second=219 amount=-1 +kerning first=79 second=330 amount=-1 +kerning first=103 second=232 amount=-1 +kerning first=106 second=8222 amount=-1 +kerning first=220 second=330 amount=-1 +kerning first=67 second=232 amount=-1 +kerning first=279 second=365 amount=-1 +kerning first=271 second=122 amount=-1 +kerning first=1059 second=1057 amount=-1 +kerning first=1042 second=1118 amount=-1 +kerning first=209 second=278 amount=-1 +kerning first=72 second=280 amount=-1 +kerning first=316 second=232 amount=-1 +kerning first=199 second=122 amount=-1 +kerning first=253 second=187 amount=-1 +kerning first=205 second=74 amount=-1 +kerning first=1046 second=1101 amount=-1 +kerning first=66 second=298 amount=-1 +kerning first=1046 second=1094 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=1060 second=1047 amount=-1 +kerning first=323 second=225 amount=-1 +kerning first=66 second=363 amount=-1 +kerning first=187 second=89 amount=-2 +kerning first=1027 second=1094 amount=-1 +kerning first=207 second=298 amount=-1 +kerning first=350 second=85 amount=-1 +kerning first=101 second=246 amount=-1 +kerning first=352 second=8217 amount=-1 +kerning first=370 second=296 amount=-1 +kerning first=8218 second=314 amount=-1 +kerning first=279 second=363 amount=-1 +kerning first=278 second=85 amount=-1 +kerning first=77 second=216 amount=-1 +kerning first=260 second=8220 amount=-2 +kerning first=234 second=46 amount=-1 +kerning first=224 second=8220 amount=-2 +kerning first=206 second=85 amount=-1 +kerning first=332 second=8220 amount=-2 +kerning first=74 second=225 amount=-1 +kerning first=1051 second=1028 amount=-1 +kerning first=65 second=85 amount=-1 +kerning first=205 second=241 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=368 second=8220 amount=-1 +kerning first=368 second=302 amount=-1 +kerning first=355 second=283 amount=-1 +kerning first=105 second=289 amount=-1 +kerning first=296 second=302 amount=-1 +kerning first=1060 second=1038 amount=-1 +kerning first=72 second=70 amount=-1 +kerning first=266 second=82 amount=-1 +kerning first=287 second=109 amount=-1 +kerning first=261 second=378 amount=-1 +kerning first=78 second=262 amount=-1 +kerning first=80 second=207 amount=-1 +kerning first=225 second=378 amount=-1 +kerning first=277 second=104 amount=-1 +kerning first=213 second=70 amount=-1 +kerning first=1053 second=1075 amount=-1 +kerning first=352 second=366 amount=-1 +kerning first=346 second=250 amount=-1 +kerning first=310 second=250 amount=-1 +kerning first=280 second=366 amount=-1 +kerning first=274 second=250 amount=-1 +kerning first=219 second=262 amount=-1 +kerning first=333 second=378 amount=-1 +kerning first=8218 second=231 amount=-1 +kerning first=200 second=317 amount=-1 +kerning first=1053 second=1070 amount=-1 +kerning first=86 second=198 amount=-1 +kerning first=324 second=8221 amount=-2 +kerning first=209 second=76 amount=-1 +kerning first=304 second=225 amount=-1 +kerning first=362 second=216 amount=-1 +kerning first=1046 second=1073 amount=-1 +kerning first=84 second=378 amount=-1 +kerning first=67 second=339 amount=-1 +kerning first=45 second=253 amount=-1 +kerning first=272 second=201 amount=-1 +kerning first=218 second=251 amount=-1 +kerning first=1086 second=1084 amount=-1 +kerning first=200 second=201 amount=-1 +kerning first=97 second=113 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=362 second=251 amount=-1 +kerning first=8220 second=353 amount=-1 +kerning first=80 second=242 amount=-1 +kerning first=199 second=259 amount=-1 +kerning first=201 second=204 amount=-1 +kerning first=255 second=250 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=368 second=198 amount=-1 +kerning first=230 second=99 amount=-1 +kerning first=257 second=242 amount=-1 +kerning first=196 second=268 amount=-1 +kerning first=87 second=369 amount=-1 +kerning first=206 second=317 amount=-1 +kerning first=275 second=8218 amount=-1 +kerning first=267 second=8217 amount=-2 +kerning first=278 second=317 amount=-1 +kerning first=187 second=256 amount=-1 +kerning first=197 second=210 amount=-1 +kerning first=67 second=366 amount=-1 +kerning first=350 second=317 amount=-1 +kerning first=1060 second=1061 amount=-1 +kerning first=304 second=268 amount=-1 +kerning first=192 second=369 amount=-1 +kerning first=365 second=242 amount=-1 +kerning first=1073 second=1113 amount=-1 +kerning first=324 second=171 amount=-1 +kerning first=218 second=207 amount=-1 +kerning first=369 second=244 amount=-1 +kerning first=272 second=69 amount=-1 +kerning first=78 second=327 amount=-1 +kerning first=224 second=233 amount=-1 +kerning first=305 second=279 amount=-1 +kerning first=1105 second=1080 amount=-1 +kerning first=368 second=371 amount=-1 +kerning first=217 second=209 amount=-1 +kerning first=233 second=279 amount=-1 +kerning first=219 second=327 amount=-1 +kerning first=8250 second=302 amount=-1 +kerning first=269 second=279 amount=-1 +kerning first=368 second=233 amount=-1 +kerning first=302 second=288 amount=-1 +kerning first=87 second=235 amount=-1 +kerning first=198 second=213 amount=-1 +kerning first=338 second=288 amount=-1 +kerning first=298 second=280 amount=-1 +kerning first=327 second=327 amount=-1 +kerning first=296 second=233 amount=-1 +kerning first=207 second=335 amount=-1 +kerning first=220 second=200 amount=-1 +kerning first=266 second=288 amount=-1 +kerning first=228 second=235 amount=-1 +kerning first=83 second=371 amount=-1 +kerning first=264 second=235 amount=-1 +kerning first=86 second=224 amount=-1 +kerning first=79 second=200 amount=-1 +kerning first=374 second=288 amount=-1 +kerning first=8220 second=219 amount=-1 +kerning first=99 second=8221 amount=-2 +kerning first=334 second=84 amount=-1 +kerning first=264 second=231 amount=-1 +kerning first=1053 second=1077 amount=-1 +kerning first=250 second=283 amount=-1 +kerning first=286 second=218 amount=-1 +kerning first=80 second=380 amount=-1 +kerning first=263 second=224 amount=-1 +kerning first=214 second=218 amount=-1 +kerning first=272 second=270 amount=-1 +kerning first=87 second=231 amount=-1 +kerning first=73 second=283 amount=-1 +kerning first=257 second=380 amount=-1 +kerning first=206 second=248 amount=-1 +kerning first=109 second=283 amount=-1 +kerning first=73 second=218 amount=-1 +kerning first=221 second=380 amount=-1 +kerning first=314 second=248 amount=-1 +kerning first=1031 second=1027 amount=-1 +kerning first=213 second=280 amount=-1 +kerning first=228 second=231 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=268 second=66 amount=-1 +kerning first=282 second=79 amount=-1 +kerning first=368 second=367 amount=-1 +kerning first=84 second=244 amount=-1 +kerning first=66 second=266 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=72 second=218 amount=-1 +kerning first=8217 second=228 amount=-1 +kerning first=200 second=270 amount=-1 +kerning first=225 second=244 amount=-1 +kerning first=261 second=244 amount=-1 +kerning first=220 second=196 amount=-1 +kerning first=1039 second=1062 amount=-1 +kerning first=83 second=367 amount=-1 +kerning first=259 second=99 amount=-1 +kerning first=85 second=80 amount=-1 +kerning first=362 second=114 amount=-1 +kerning first=332 second=8250 amount=-1 +kerning first=362 second=45 amount=-2 +kerning first=241 second=283 amount=-1 +kerning first=198 second=217 amount=-1 +kerning first=210 second=354 amount=-1 +kerning first=119 second=367 amount=-1 +kerning first=290 second=45 amount=-1 +kerning first=217 second=205 amount=-1 +kerning first=298 second=80 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=254 second=114 amount=-1 +kerning first=270 second=217 amount=-1 +kerning first=266 second=284 amount=-1 +kerning first=262 second=80 amount=-1 +kerning first=187 second=69 amount=-1 +kerning first=8249 second=364 amount=-1 +kerning first=326 second=114 amount=-1 +kerning first=325 second=205 amount=-1 +kerning first=101 second=252 amount=-1 +kerning first=304 second=66 amount=-1 +kerning first=302 second=284 amount=-1 +kerning first=72 second=232 amount=-1 +kerning first=230 second=353 amount=-1 +kerning first=77 second=114 amount=-1 +kerning first=1027 second=1098 amount=-1 +kerning first=89 second=284 amount=-1 +kerning first=1052 second=1072 amount=-1 +kerning first=108 second=243 amount=-1 +kerning first=302 second=353 amount=-1 +kerning first=194 second=284 amount=-1 +kerning first=266 second=353 amount=-1 +kerning first=72 second=345 amount=-1 +kerning first=374 second=353 amount=-1 +kerning first=108 second=345 amount=-1 +kerning first=262 second=268 amount=-1 +kerning first=234 second=115 amount=-1 +kerning first=270 second=115 amount=-1 +kerning first=249 second=345 amount=-1 +kerning first=364 second=45 amount=-2 +kerning first=1031 second=1054 amount=-1 +kerning first=108 second=250 amount=-1 +kerning first=45 second=249 amount=-1 +kerning first=200 second=266 amount=-1 +kerning first=73 second=214 amount=-1 +kerning first=1049 second=1077 amount=-1 +kerning first=104 second=243 amount=-1 +kerning first=193 second=71 amount=-1 +kerning first=204 second=368 amount=-1 +kerning first=209 second=243 amount=-1 +kerning first=364 second=200 amount=-1 +kerning first=231 second=226 amount=-1 +kerning first=89 second=353 amount=-1 +kerning first=75 second=336 amount=-1 +kerning first=205 second=310 amount=-1 +kerning first=267 second=226 amount=-1 +kerning first=269 second=275 amount=-1 +kerning first=272 second=197 amount=-1 +kerning first=233 second=275 amount=-1 +kerning first=67 second=318 amount=-1 +kerning first=370 second=80 amount=-1 +kerning first=314 second=252 amount=-1 +kerning first=334 second=80 amount=-1 +kerning first=278 second=252 amount=-1 +kerning first=1030 second=1089 amount=-1 +kerning first=374 second=8220 amount=-1 +kerning first=305 second=275 amount=-1 +kerning first=73 second=270 amount=-1 +kerning first=350 second=252 amount=-1 +kerning first=218 second=45 amount=-2 +kerning first=88 second=71 amount=-1 +kerning first=77 second=45 amount=-1 +kerning first=1046 second=1087 amount=-1 +kerning first=258 second=249 amount=-1 +kerning first=113 second=45 amount=-1 +kerning first=1046 second=1086 amount=-1 +kerning first=374 second=275 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=8217 second=338 amount=-1 +kerning first=233 second=353 amount=-1 +kerning first=317 second=217 amount=-1 +kerning first=102 second=45 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=230 second=275 amount=-1 +kerning first=262 second=71 amount=-1 +kerning first=258 second=214 amount=-1 +kerning first=209 second=79 amount=-1 +kerning first=269 second=353 amount=-1 +kerning first=1071 second=1031 amount=-1 +kerning first=266 second=275 amount=-1 +kerning first=1052 second=1068 amount=-1 +kerning first=217 second=66 amount=-1 +kerning first=302 second=362 amount=-1 +kerning first=266 second=362 amount=-1 +kerning first=1047 second=1045 amount=-1 +kerning first=246 second=122 amount=-1 +kerning first=219 second=223 amount=-1 +kerning first=8217 second=224 amount=-1 +kerning first=103 second=318 amount=-1 +kerning first=8217 second=241 amount=-1 +kerning first=1042 second=1062 amount=-1 +kerning first=187 second=80 amount=-1 +kerning first=338 second=362 amount=-1 +kerning first=89 second=275 amount=-1 +kerning first=1058 second=1097 amount=-1 +kerning first=244 second=318 amount=-1 +kerning first=218 second=97 amount=-1 +kerning first=327 second=223 amount=-1 +kerning first=316 second=318 amount=-1 +kerning first=291 second=223 amount=-1 +kerning first=211 second=315 amount=-1 +kerning first=187 second=200 amount=-1 +kerning first=240 second=234 amount=-1 +kerning first=324 second=232 amount=-1 +kerning first=206 second=226 amount=-1 +kerning first=8222 second=354 amount=-1 +kerning first=1038 second=1085 amount=-1 +kerning first=75 second=249 amount=-1 +kerning first=194 second=362 amount=-1 +kerning first=217 second=80 amount=-1 +kerning first=264 second=283 amount=-1 +kerning first=197 second=266 amount=-1 +kerning first=86 second=371 amount=-1 +kerning first=370 second=71 amount=-1 +kerning first=1077 second=1076 amount=-1 +kerning first=1042 second=1079 amount=-1 +kerning first=298 second=71 amount=-1 +kerning first=283 second=249 amount=-1 +kerning first=75 second=332 amount=-1 +kerning first=68 second=217 amount=-1 +kerning first=66 second=45 amount=-1 +kerning first=197 second=8250 amount=-1 +kerning first=70 second=249 amount=-1 +kerning first=209 second=217 amount=-1 +kerning first=289 second=98 amount=-1 +kerning first=366 second=361 amount=-1 +kerning first=270 second=206 amount=-1 +kerning first=253 second=98 amount=-1 +kerning first=8250 second=66 amount=-1 +kerning first=205 second=267 amount=-1 +kerning first=258 second=361 amount=-1 +kerning first=241 second=267 amount=-1 +kerning first=201 second=250 amount=-1 +kerning first=1042 second=1051 amount=-1 +kerning first=1047 second=1042 amount=-1 +kerning first=1050 second=1080 amount=-1 +kerning first=69 second=216 amount=-1 +kerning first=199 second=345 amount=-1 +kerning first=100 second=267 amount=-1 +kerning first=235 second=345 amount=-1 +kerning first=8250 second=380 amount=-1 +kerning first=271 second=345 amount=-1 +kerning first=1071 second=1107 amount=-1 +kerning first=207 second=225 amount=-1 +kerning first=1064 second=1079 amount=-1 +kerning first=1036 second=1080 amount=-1 +kerning first=275 second=335 amount=-1 +kerning first=72 second=241 amount=-1 +kerning first=1041 second=1063 amount=-1 +kerning first=80 second=302 amount=-1 +kerning first=355 second=97 amount=-1 +kerning first=240 second=114 amount=-1 +kerning first=262 second=171 amount=-1 +kerning first=72 second=207 amount=-1 +kerning first=325 second=378 amount=-1 +kerning first=327 second=323 amount=-1 +kerning first=69 second=250 amount=-1 +kerning first=78 second=310 amount=-1 +kerning first=289 second=378 amount=-1 +kerning first=78 second=370 amount=-1 +kerning first=99 second=114 amount=-1 +kerning first=202 second=336 amount=-1 +kerning first=253 second=378 amount=-1 +kerning first=327 second=370 amount=-1 +kerning first=282 second=250 amount=-1 +kerning first=274 second=336 amount=-1 +kerning first=74 second=199 amount=-1 +kerning first=213 second=207 amount=-1 +kerning first=219 second=378 amount=-1 +kerning first=310 second=336 amount=-1 +kerning first=65 second=46 amount=-1 +kerning first=86 second=284 amount=-1 +kerning first=79 second=89 amount=-1 +kerning first=45 second=361 amount=-1 +kerning first=1039 second=1071 amount=-1 +kerning first=207 second=259 amount=-1 +kerning first=368 second=337 amount=-1 +kerning first=323 second=199 amount=-1 +kerning first=327 second=310 amount=-1 +kerning first=217 second=378 amount=-1 +kerning first=270 second=72 amount=-1 +kerning first=1044 second=1054 amount=-1 +kerning first=200 second=344 amount=-1 +kerning first=112 second=378 amount=-1 +kerning first=1056 second=1105 amount=-1 +kerning first=219 second=310 amount=-1 +kerning first=198 second=72 amount=-1 +kerning first=258 second=314 amount=-1 +kerning first=45 second=288 amount=-1 +kerning first=207 second=346 amount=-1 +kerning first=307 second=235 amount=-1 +kerning first=195 second=334 amount=-1 +kerning first=67 second=331 amount=-1 +kerning first=66 second=346 amount=-1 +kerning first=321 second=87 amount=-1 +kerning first=1052 second=1055 amount=-1 +kerning first=258 second=288 amount=-1 +kerning first=362 second=110 amount=-1 +kerning first=368 second=109 amount=-1 +kerning first=79 second=282 amount=-1 +kerning first=1058 second=1095 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=116 second=101 amount=-1 +kerning first=201 second=278 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=209 second=230 amount=-1 +kerning first=221 second=101 amount=-1 +kerning first=8250 second=220 amount=-1 +kerning first=289 second=291 amount=-1 +kerning first=253 second=291 amount=-1 +kerning first=198 second=325 amount=-1 +kerning first=257 second=101 amount=-1 +kerning first=354 second=337 amount=-1 +kerning first=67 second=245 amount=-1 +kerning first=225 second=279 amount=-1 +kerning first=74 second=212 amount=-1 +kerning first=283 second=281 amount=-1 +kerning first=8217 second=211 amount=-1 +kerning first=261 second=279 amount=-1 +kerning first=1070 second=1061 amount=-1 +kerning first=286 second=8218 amount=-1 +kerning first=1034 second=1061 amount=-1 +kerning first=84 second=99 amount=-1 +kerning first=88 second=303 amount=-1 +kerning first=369 second=279 amount=-1 +kerning first=1066 second=1098 amount=-1 +kerning first=267 second=279 amount=-1 +kerning first=1030 second=1098 amount=-1 +kerning first=105 second=337 amount=-1 +kerning first=264 second=296 amount=-1 +kerning first=193 second=303 amount=-1 +kerning first=1049 second=1064 amount=-1 +kerning first=261 second=99 amount=-1 +kerning first=366 second=288 amount=-1 +kerning first=1055 second=1119 amount=-1 +kerning first=231 second=187 amount=-1 +kerning first=1091 second=1119 amount=-1 +kerning first=316 second=245 amount=-1 +kerning first=1039 second=1118 amount=-1 +kerning first=80 second=75 amount=-1 +kerning first=225 second=99 amount=-1 +kerning first=216 second=8250 amount=-1 +kerning first=330 second=288 amount=-1 +kerning first=339 second=187 amount=-1 +kerning first=214 second=8218 amount=-1 +kerning first=352 second=363 amount=-1 +kerning first=84 second=279 amount=-1 +kerning first=212 second=221 amount=-1 +kerning first=307 second=243 amount=-1 +kerning first=103 second=245 amount=-1 +kerning first=67 second=214 amount=-1 +kerning first=104 second=277 amount=-1 +kerning first=291 second=117 amount=-1 +kerning first=80 second=226 amount=-1 +kerning first=365 second=8220 amount=-1 +kerning first=1071 second=1065 amount=-1 +kerning first=296 second=380 amount=-1 +kerning first=255 second=117 amount=-1 +kerning first=219 second=117 amount=-1 +kerning first=267 second=287 amount=-1 +kerning first=275 second=248 amount=-1 +kerning first=368 second=380 amount=-1 +kerning first=231 second=287 amount=-1 +kerning first=368 second=212 amount=-1 +kerning first=325 second=218 amount=-1 +kerning first=267 second=363 amount=-1 +kerning first=99 second=307 amount=-1 +kerning first=298 second=264 amount=-1 +kerning first=1068 second=1030 amount=-1 +kerning first=262 second=264 amount=-1 +kerning first=291 second=171 amount=-1 +kerning first=198 second=278 amount=-1 +kerning first=296 second=66 amount=-1 +kerning first=201 second=364 amount=-1 +kerning first=116 second=8220 amount=-1 +kerning first=194 second=121 amount=-1 +kerning first=220 second=209 amount=-1 +kerning first=80 second=8220 amount=-1 +kerning first=85 second=264 amount=-1 +kerning first=196 second=367 amount=-1 +kerning first=266 second=202 amount=-1 +kerning first=119 second=380 amount=-1 +kerning first=264 second=270 amount=-1 +kerning first=79 second=209 amount=-1 +kerning first=83 second=66 amount=-1 +kerning first=338 second=202 amount=-1 +kerning first=327 second=69 amount=-1 +kerning first=257 second=8220 amount=-2 +kerning first=89 second=74 amount=-1 +kerning first=302 second=202 amount=-1 +kerning first=270 second=325 amount=-1 +kerning first=8217 second=269 amount=-1 +kerning first=78 second=69 amount=-1 +kerning first=208 second=8220 amount=-2 +kerning first=362 second=330 amount=-1 +kerning first=201 second=202 amount=-1 +kerning first=219 second=69 amount=-1 +kerning first=1040 second=1091 amount=-1 +kerning first=352 second=203 amount=-1 +kerning first=302 second=74 amount=-1 +kerning first=364 second=330 amount=-1 +kerning first=234 second=252 amount=-1 +kerning first=374 second=74 amount=-1 +kerning first=275 second=252 amount=-1 +kerning first=198 second=252 amount=-1 +kerning first=368 second=66 amount=-1 +kerning first=280 second=313 amount=-1 +kerning first=73 second=227 amount=-1 +kerning first=235 second=44 amount=-1 +kerning first=288 second=78 amount=-1 +kerning first=366 second=214 amount=-1 +kerning first=1055 second=1057 amount=-1 +kerning first=330 second=214 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=8217 second=284 amount=-1 +kerning first=269 second=112 amount=-1 +kerning first=204 second=68 amount=-1 +kerning first=204 second=355 amount=-1 +kerning first=1104 second=1103 amount=-1 +kerning first=1043 second=1082 amount=-1 +kerning first=364 second=282 amount=-1 +kerning first=307 second=44 amount=-1 +kerning first=200 second=365 amount=-1 +kerning first=82 second=286 amount=-1 +kerning first=103 second=117 amount=-1 +kerning first=200 second=171 amount=-1 +kerning first=70 second=252 amount=-1 +kerning first=368 second=204 amount=-1 +kerning first=103 second=112 amount=-1 +kerning first=316 second=117 amount=-1 +kerning first=116 second=229 amount=-1 +kerning first=1051 second=1108 amount=-1 +kerning first=1049 second=1051 amount=-1 +kerning first=280 second=117 amount=-1 +kerning first=80 second=229 amount=-1 +kerning first=344 second=171 amount=-1 +kerning first=364 second=68 amount=-1 +kerning first=380 second=171 amount=-1 +kerning first=212 second=192 amount=-1 +kerning first=362 second=8218 amount=-2 +kerning first=240 second=287 amount=-1 +kerning first=83 second=220 amount=-1 +kerning first=1052 second=1042 amount=-1 +kerning first=352 second=117 amount=-1 +kerning first=195 second=361 amount=-1 +kerning first=227 second=263 amount=-1 +kerning first=197 second=374 amount=-1 +kerning first=1054 second=1039 amount=-1 +kerning first=77 second=298 amount=-1 +kerning first=263 second=263 amount=-1 +kerning first=304 second=246 amount=-1 +kerning first=72 second=100 amount=-1 +kerning first=279 second=251 amount=-1 +kerning first=268 second=246 amount=-1 +kerning first=339 second=382 amount=-1 +kerning first=232 second=246 amount=-1 +kerning first=1054 second=1034 amount=-1 +kerning first=375 second=382 amount=-1 +kerning first=283 second=103 amount=-1 +kerning first=325 second=77 amount=-1 +kerning first=296 second=220 amount=-1 +kerning first=1047 second=1062 amount=-1 +kerning first=368 second=220 amount=-1 +kerning first=212 second=206 amount=-1 +kerning first=325 second=304 amount=-1 +kerning first=107 second=316 amount=-1 +kerning first=209 second=330 amount=-1 +kerning first=8217 second=198 amount=-2 +kerning first=106 second=103 amount=-1 +kerning first=248 second=316 amount=-1 +kerning first=279 second=333 amount=-1 +kerning first=193 second=118 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=365 second=281 amount=-1 +kerning first=8250 second=207 amount=-1 +kerning first=207 second=333 amount=-1 +kerning first=328 second=248 amount=-1 +kerning first=325 second=8222 amount=-1 +kerning first=217 second=304 amount=-1 +kerning first=1051 second=1048 amount=-1 +kerning first=289 second=8222 amount=-1 +kerning first=86 second=211 amount=-1 +kerning first=253 second=8222 amount=-1 +kerning first=334 second=221 amount=-1 +kerning first=8217 second=83 amount=-1 +kerning first=231 second=382 amount=-1 +kerning first=1050 second=1060 amount=-1 +kerning first=1044 second=1087 amount=-1 +kerning first=267 second=382 amount=-1 +kerning first=262 second=310 amount=-1 +kerning first=365 second=289 amount=-1 +kerning first=286 second=313 amount=-1 +kerning first=195 second=375 amount=-1 +kerning first=187 second=221 amount=-2 +kerning first=67 second=210 amount=-1 +kerning first=206 second=339 amount=-1 +kerning first=213 second=315 amount=-1 +kerning first=354 second=242 amount=-1 +kerning first=72 second=233 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=108 second=233 amount=-1 +kerning first=83 second=280 amount=-1 +kerning first=209 second=111 amount=-1 +kerning first=305 second=245 amount=-1 +kerning first=206 second=205 amount=-1 +kerning first=214 second=313 amount=-1 +kerning first=269 second=245 amount=-1 +kerning first=249 second=233 amount=-1 +kerning first=1048 second=1057 amount=-1 +kerning first=101 second=120 amount=-1 +kerning first=364 second=230 amount=-1 +kerning first=68 second=330 amount=-1 +kerning first=313 second=219 amount=-1 +kerning first=314 second=339 amount=-1 +kerning first=72 second=315 amount=-1 +kerning first=296 second=280 amount=-1 +kerning first=1036 second=1101 amount=-1 +kerning first=368 second=280 amount=-1 +kerning first=80 second=317 amount=-1 +kerning first=1044 second=1101 amount=-1 +kerning first=262 second=212 amount=-1 +kerning first=218 second=298 amount=-1 +kerning first=110 second=8217 amount=-2 +kerning first=298 second=212 amount=-1 +kerning first=220 second=76 amount=-1 +kerning first=290 second=298 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=323 second=231 amount=-1 +kerning first=370 second=212 amount=-1 +kerning first=251 second=8217 amount=-1 +kerning first=85 second=212 amount=-1 +kerning first=362 second=298 amount=-1 +kerning first=45 second=344 amount=-1 +kerning first=75 second=118 amount=-1 +kerning first=1055 second=1113 amount=-1 +kerning first=8222 second=367 amount=-1 +kerning first=345 second=46 amount=-1 +kerning first=281 second=111 amount=-1 +kerning first=217 second=218 amount=-1 +kerning first=325 second=85 amount=-1 +kerning first=194 second=254 amount=-1 +kerning first=116 second=289 amount=-1 +kerning first=230 second=254 amount=-1 +kerning first=266 second=254 amount=-1 +kerning first=217 second=85 amount=-1 +kerning first=287 second=8217 amount=-2 +kerning first=323 second=8217 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=257 second=289 amount=-1 +kerning first=80 second=216 amount=-1 +kerning first=89 second=262 amount=-1 +kerning first=267 second=46 amount=-1 +kerning first=375 second=46 amount=-1 +kerning first=339 second=46 amount=-1 +kerning first=302 second=262 amount=-1 +kerning first=187 second=67 amount=-1 +kerning first=224 second=8250 amount=-1 +kerning first=266 second=262 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=221 second=216 amount=-1 +kerning first=374 second=262 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=1104 second=1095 amount=-1 +kerning first=338 second=262 amount=-1 +kerning first=197 second=366 amount=-1 +kerning first=83 second=345 amount=-1 +kerning first=45 second=206 amount=-1 +kerning first=272 second=304 amount=-1 +kerning first=274 second=70 amount=-1 +kerning first=204 second=110 amount=-1 +kerning first=355 second=353 amount=-1 +kerning first=214 second=192 amount=-1 +kerning first=8217 second=380 amount=-1 +kerning first=235 second=250 amount=-1 +kerning first=346 second=70 amount=-1 +kerning first=224 second=345 amount=-1 +kerning first=8250 second=75 amount=-1 +kerning first=67 second=104 amount=-1 +kerning first=362 second=225 amount=-1 +kerning first=364 second=76 amount=-1 +kerning first=77 second=229 amount=-1 +kerning first=1039 second=1084 amount=-1 +kerning first=231 second=46 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=202 second=70 amount=-1 +kerning first=350 second=274 amount=-1 +kerning first=368 second=345 amount=-1 +kerning first=302 second=224 amount=-1 +kerning first=206 second=366 amount=-1 +kerning first=366 second=206 amount=-1 +kerning first=217 second=44 amount=-2 +kerning first=193 second=368 amount=-1 +kerning first=8220 second=362 amount=-1 +kerning first=68 second=317 amount=-1 +kerning first=296 second=207 amount=-1 +kerning first=1031 second=1105 amount=-1 +kerning first=86 second=271 amount=-1 +kerning first=194 second=375 amount=-1 +kerning first=330 second=206 amount=-1 +kerning first=88 second=8221 amount=-1 +kerning first=368 second=207 amount=-1 +kerning first=195 second=369 amount=-1 +kerning first=209 second=317 amount=-1 +kerning first=97 second=122 amount=-1 +kerning first=193 second=8221 amount=-2 +kerning first=211 second=201 amount=-1 +kerning first=263 second=271 amount=-1 +kerning first=229 second=8221 amount=-2 +kerning first=88 second=368 amount=-1 +kerning first=70 second=201 amount=-1 +kerning first=1054 second=1047 amount=-1 +kerning first=1108 second=1093 amount=-1 +kerning first=212 second=256 amount=-1 +kerning first=228 second=378 amount=-1 +kerning first=283 second=116 amount=-1 +kerning first=100 second=113 amount=-1 +kerning first=337 second=8221 amount=-2 +kerning first=1056 second=1031 amount=-1 +kerning first=304 second=122 amount=-1 +kerning first=87 second=378 amount=-1 +kerning first=214 second=270 amount=-1 +kerning first=85 second=204 amount=-1 +kerning first=78 second=267 amount=-1 +kerning first=88 second=219 amount=-1 +kerning first=370 second=204 amount=-1 +kerning first=304 second=259 amount=-1 +kerning first=1067 second=1105 amount=-1 +kerning first=334 second=204 amount=-1 +kerning first=268 second=259 amount=-1 +kerning first=298 second=204 amount=-1 +kerning first=83 second=207 amount=-1 +kerning first=264 second=378 amount=-1 +kerning first=262 second=204 amount=-1 +kerning first=214 second=86 amount=-1 +kerning first=80 second=281 amount=-1 +kerning first=193 second=268 amount=-1 +kerning first=8250 second=280 amount=-1 +kerning first=1055 second=1091 amount=-1 +kerning first=221 second=281 amount=-1 +kerning first=257 second=281 amount=-1 +kerning first=206 second=347 amount=-1 +kerning first=199 second=350 amount=-1 +kerning first=275 second=235 amount=-1 +kerning first=218 second=290 amount=-1 +kerning first=101 second=347 amount=-1 +kerning first=370 second=277 amount=-1 +kerning first=1051 second=1056 amount=-1 +kerning first=366 second=73 amount=-1 +kerning first=330 second=73 amount=-1 +kerning first=88 second=268 amount=-1 +kerning first=351 second=8220 amount=-2 +kerning first=333 second=8218 amount=-1 +kerning first=8217 second=271 amount=-1 +kerning first=375 second=369 amount=-1 +kerning first=204 second=282 amount=-1 +kerning first=352 second=8249 amount=-1 +kerning first=327 second=82 amount=-1 +kerning first=8250 second=328 amount=-1 +kerning first=275 second=108 amount=-1 +kerning first=218 second=363 amount=-1 +kerning first=85 second=277 amount=-1 +kerning first=249 second=235 amount=-1 +kerning first=45 second=73 amount=-1 +kerning first=1027 second=1072 amount=-1 +kerning first=298 second=277 amount=-1 +kerning first=99 second=246 amount=-1 +kerning first=362 second=363 amount=-1 +kerning first=262 second=277 amount=-1 +kerning first=77 second=290 amount=-1 +kerning first=226 second=277 amount=-1 +kerning first=81 second=73 amount=-1 +kerning first=353 second=103 amount=-1 +kerning first=1068 second=1041 amount=-1 +kerning first=67 second=8249 amount=-1 +kerning first=78 second=73 amount=-1 +kerning first=103 second=8249 amount=-1 +kerning first=199 second=79 amount=-1 +kerning first=78 second=82 amount=-1 +kerning first=219 second=82 amount=-1 +kerning first=289 second=231 amount=-1 +kerning first=325 second=231 amount=-1 +kerning first=275 second=283 amount=-1 +kerning first=209 second=338 amount=-1 +kerning first=280 second=8249 amount=-1 +kerning first=316 second=8249 amount=-1 +kerning first=1048 second=1065 amount=-1 +kerning first=217 second=196 amount=-1 +kerning first=199 second=66 amount=-1 +kerning first=73 second=235 amount=-1 +kerning first=69 second=345 amount=-1 +kerning first=109 second=235 amount=-1 +kerning first=105 second=345 amount=-1 +kerning first=87 second=248 amount=-1 +kerning first=289 second=283 amount=-1 +kerning first=246 second=345 amount=-1 +kerning first=325 second=283 amount=-1 +kerning first=282 second=345 amount=-1 +kerning first=217 second=283 amount=-1 +kerning first=206 second=261 amount=-1 +kerning first=1030 second=1076 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=8216 second=370 amount=-1 +kerning first=1033 second=1067 amount=-1 +kerning first=221 second=367 amount=-1 +kerning first=1069 second=1067 amount=-1 +kerning first=235 second=380 amount=-1 +kerning first=286 second=205 amount=-1 +kerning first=199 second=380 amount=-1 +kerning first=220 second=274 amount=-1 +kerning first=272 second=192 amount=-1 +kerning first=79 second=274 amount=-1 +kerning first=67 second=323 amount=-1 +kerning first=72 second=336 amount=-1 +kerning first=1047 second=1080 amount=-1 +kerning first=84 second=257 amount=-1 +kerning first=195 second=249 amount=-1 +kerning first=288 second=70 amount=-1 +kerning first=332 second=44 amount=-1 +kerning first=73 second=205 amount=-1 +kerning first=368 second=44 amount=-2 +kerning first=260 second=44 amount=-1 +kerning first=214 second=205 amount=-1 +kerning first=70 second=244 amount=-1 +kerning first=106 second=244 amount=-1 +kerning first=1048 second=1052 amount=-1 +kerning first=268 second=83 amount=-1 +kerning first=364 second=274 amount=-1 +kerning first=280 second=323 amount=-1 +kerning first=70 second=314 amount=-1 +kerning first=1055 second=1054 amount=-1 +kerning first=283 second=244 amount=-1 +kerning first=264 second=218 amount=-1 +kerning first=355 second=244 amount=-1 +kerning first=192 second=218 amount=-1 +kerning first=228 second=248 amount=-1 +kerning first=206 second=231 amount=-1 +kerning first=288 second=327 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=187 second=290 amount=-1 +kerning first=264 second=248 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=364 second=217 amount=-1 +kerning first=1039 second=1049 amount=-1 +kerning first=219 second=275 amount=-1 +kerning first=1046 second=1081 amount=-1 +kerning first=356 second=243 amount=-1 +kerning first=327 second=275 amount=-1 +kerning first=207 second=110 amount=-1 +kerning first=352 second=223 amount=-1 +kerning first=283 second=314 amount=-1 +kerning first=291 second=275 amount=-1 +kerning first=117 second=8220 amount=-1 +kerning first=1036 second=1088 amount=-1 +kerning first=70 second=214 amount=-1 +kerning first=196 second=45 amount=-1 +kerning first=1038 second=1107 amount=-1 +kerning first=78 second=275 amount=-1 +kerning first=200 second=249 amount=-1 +kerning first=8222 second=259 amount=-1 +kerning first=1069 second=1031 amount=-1 +kerning first=330 second=298 amount=-1 +kerning first=1118 second=1081 amount=-1 +kerning first=103 second=223 amount=-1 +kerning first=1105 second=1097 amount=-1 +kerning first=71 second=80 amount=-1 +kerning first=207 second=97 amount=-1 +kerning first=67 second=223 amount=-1 +kerning first=268 second=45 amount=-1 +kerning first=194 second=370 amount=-1 +kerning first=284 second=80 amount=-1 +kerning first=103 second=353 amount=-1 +kerning first=280 second=223 amount=-1 +kerning first=67 second=353 amount=-1 +kerning first=212 second=80 amount=-1 +kerning first=1028 second=1091 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=69 second=200 amount=-1 +kerning first=277 second=232 amount=-1 +kerning first=366 second=266 amount=-1 +kerning first=270 second=200 amount=-1 +kerning first=330 second=266 amount=-1 +kerning first=205 second=232 amount=-1 +kerning first=1049 second=1072 amount=-1 +kerning first=205 second=362 amount=-1 +kerning first=198 second=200 amount=-1 +kerning first=325 second=226 amount=-1 +kerning first=217 second=296 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=354 second=101 amount=-1 +kerning first=277 second=8250 amount=-1 +kerning first=219 second=122 amount=-1 +kerning first=258 second=266 amount=-1 +kerning first=313 second=362 amount=-1 +kerning first=310 second=371 amount=-1 +kerning first=74 second=234 amount=-1 +kerning first=45 second=266 amount=-1 +kerning first=79 second=217 amount=-1 +kerning first=274 second=371 amount=-1 +kerning first=89 second=251 amount=-1 +kerning first=100 second=8250 amount=-1 +kerning first=207 second=209 amount=-1 +kerning first=315 second=354 amount=-1 +kerning first=110 second=234 amount=-1 +kerning first=8217 second=219 amount=-1 +kerning first=220 second=217 amount=-1 +kerning first=100 second=232 amount=-1 +kerning first=251 second=234 amount=-1 +kerning first=1044 second=1089 amount=-1 +kerning first=203 second=264 amount=-1 +kerning first=363 second=275 amount=-1 +kerning first=210 second=88 amount=-1 +kerning first=70 second=274 amount=-1 +kerning first=323 second=71 amount=-1 +kerning first=323 second=234 amount=-1 +kerning first=287 second=234 amount=-1 +kerning first=1069 second=1065 amount=-1 +kerning first=1047 second=1037 amount=-1 +kerning first=262 second=380 amount=-1 +kerning first=207 second=203 amount=-1 +kerning first=115 second=287 amount=-1 +kerning first=282 second=8220 amount=-1 +kerning first=203 second=313 amount=-1 +kerning first=289 second=324 amount=-1 +kerning first=368 second=315 amount=-1 +kerning first=220 second=111 amount=-1 +kerning first=1042 second=1070 amount=-1 +kerning first=84 second=8218 amount=-1 +kerning first=354 second=8220 amount=-1 +kerning first=328 second=287 amount=-1 +kerning first=1033 second=1024 amount=-1 +kerning first=211 second=374 amount=-1 +kerning first=328 second=111 amount=-1 +kerning first=66 second=203 amount=-1 +kerning first=1047 second=1034 amount=-1 +kerning first=8218 second=248 amount=-1 +kerning first=83 second=315 amount=-1 +kerning first=289 second=120 amount=-1 +kerning first=1064 second=1054 amount=-1 +kerning first=374 second=267 amount=-1 +kerning first=1050 second=1028 amount=-1 +kerning first=288 second=278 amount=-1 +kerning first=323 second=114 amount=-1 +kerning first=296 second=315 amount=-1 +kerning first=196 second=118 amount=-1 +kerning first=230 second=267 amount=-1 +kerning first=204 second=212 amount=-1 +kerning first=105 second=8220 amount=-1 +kerning first=266 second=267 amount=-1 +kerning first=187 second=220 amount=-1 +kerning first=69 second=8220 amount=-1 +kerning first=302 second=267 amount=-1 +kerning first=338 second=370 amount=-1 +kerning first=1105 second=1076 amount=-1 +kerning first=76 second=356 amount=-1 +kerning first=85 second=199 amount=-1 +kerning first=206 second=68 amount=-1 +kerning first=266 second=370 amount=-1 +kerning first=8217 second=113 amount=-1 +kerning first=251 second=114 amount=-1 +kerning first=78 second=74 amount=-1 +kerning first=302 second=370 amount=-1 +kerning first=72 second=263 amount=-1 +kerning first=330 second=242 amount=-1 +kerning first=108 second=263 amount=-1 +kerning first=219 second=74 amount=-1 +kerning first=262 second=199 amount=-1 +kerning first=210 second=194 amount=-1 +kerning first=74 second=114 amount=-1 +kerning first=284 second=85 amount=-1 +kerning first=220 second=81 amount=-1 +kerning first=249 second=263 amount=-1 +kerning first=352 second=310 amount=-1 +kerning first=327 second=74 amount=-1 +kerning first=370 second=199 amount=-1 +kerning first=197 second=361 amount=-1 +kerning first=99 second=106 amount=-1 +kerning first=280 second=310 amount=-1 +kerning first=364 second=81 amount=-1 +kerning first=85 second=269 amount=-1 +kerning first=278 second=68 amount=-1 +kerning first=298 second=269 amount=-1 +kerning first=45 second=65 amount=-1 +kerning first=350 second=68 amount=-1 +kerning first=226 second=269 amount=-1 +kerning first=8222 second=79 amount=-1 +kerning first=1107 second=1116 amount=-1 +kerning first=67 second=310 amount=-1 +kerning first=209 second=315 amount=-1 +kerning first=206 second=334 amount=-1 +kerning first=197 second=288 amount=-1 +kerning first=368 second=101 amount=-1 +kerning first=1050 second=1101 amount=-1 +kerning first=1051 second=1043 amount=-1 +kerning first=304 second=100 amount=-1 +kerning first=1041 second=1055 amount=-1 +kerning first=68 second=325 amount=-1 +kerning first=193 second=84 amount=-1 +kerning first=203 second=278 amount=-1 +kerning first=255 second=318 amount=-1 +kerning first=8220 second=370 amount=-1 +kerning first=84 second=227 amount=-1 +kerning first=304 second=346 amount=-1 +kerning first=268 second=346 amount=-1 +kerning first=1069 second=1051 amount=-1 +kerning first=209 second=325 amount=-1 +kerning first=207 second=114 amount=-1 +kerning first=283 second=108 amount=-1 +kerning first=219 second=245 amount=-1 +kerning first=235 second=337 amount=-1 +kerning first=364 second=187 amount=-2 +kerning first=199 second=337 amount=-1 +kerning first=228 second=291 amount=-1 +kerning first=256 second=187 amount=-1 +kerning first=333 second=122 amount=-1 +kerning first=78 second=245 amount=-1 +kerning first=1027 second=1085 amount=-1 +kerning first=8250 second=315 amount=-1 +kerning first=281 second=351 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=345 second=8217 amount=-1 +kerning first=232 second=251 amount=-1 +kerning first=381 second=8217 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=304 second=75 amount=-1 +kerning first=217 second=274 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=268 second=75 amount=-1 +kerning first=363 second=245 amount=-1 +kerning first=250 second=99 amount=-1 +kerning first=327 second=245 amount=-1 +kerning first=220 second=187 amount=-2 +kerning first=1044 second=1119 amount=-1 +kerning first=291 second=245 amount=-1 +kerning first=79 second=187 amount=-1 +kerning first=307 second=337 amount=-1 +kerning first=65 second=334 amount=-1 +kerning first=1064 second=1027 amount=-1 +kerning first=115 second=187 amount=-1 +kerning first=271 second=337 amount=-1 +kerning first=197 second=375 amount=-1 +kerning first=339 second=347 amount=-1 +kerning first=271 second=242 amount=-1 +kerning first=277 second=122 amount=-1 +kerning first=234 second=106 amount=-1 +kerning first=70 second=330 amount=-1 +kerning first=375 second=347 amount=-1 +kerning first=1054 second=1069 amount=-1 +kerning first=307 second=242 amount=-1 +kerning first=232 second=281 amount=-1 +kerning first=77 second=268 amount=-1 +kerning first=1070 second=1069 amount=-1 +kerning first=268 second=281 amount=-1 +kerning first=235 second=242 amount=-1 +kerning first=304 second=281 amount=-1 +kerning first=85 second=362 amount=-1 +kerning first=231 second=347 amount=-1 +kerning first=218 second=268 amount=-1 +kerning first=79 second=325 amount=-1 +kerning first=85 second=364 amount=-1 +kerning first=97 second=233 amount=-1 +kerning first=323 second=277 amount=-1 +kerning first=287 second=277 amount=-1 +kerning first=327 second=202 amount=-1 +kerning first=70 second=73 amount=-1 +kerning first=211 second=73 amount=-1 +kerning first=78 second=202 amount=-1 +kerning first=219 second=202 amount=-1 +kerning first=201 second=264 amount=-1 +kerning first=1071 second=1073 amount=-1 +kerning first=262 second=8217 amount=-1 +kerning first=105 second=267 amount=-1 +kerning first=302 second=69 amount=-1 +kerning first=370 second=364 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=266 second=69 amount=-1 +kerning first=1070 second=1083 amount=-1 +kerning first=334 second=8217 amount=-2 +kerning first=334 second=364 amount=-1 +kerning first=280 second=82 amount=-1 +kerning first=298 second=364 amount=-1 +kerning first=88 second=290 amount=-1 +kerning first=356 second=351 amount=-1 +kerning first=338 second=69 amount=-1 +kerning first=85 second=8217 amount=-1 +kerning first=262 second=364 amount=-1 +kerning first=121 second=8217 amount=-2 +kerning first=352 second=82 amount=-1 +kerning first=193 second=290 amount=-1 +kerning first=374 second=338 amount=-1 +kerning first=110 second=277 amount=-1 +kerning first=1065 second=1091 amount=-1 +kerning first=226 second=8217 amount=-2 +kerning first=355 second=103 amount=-1 +kerning first=198 second=338 amount=-1 +kerning first=234 second=273 amount=-1 +kerning first=193 second=355 amount=-1 +kerning first=70 second=266 amount=-1 +kerning first=1051 second=1113 amount=-1 +kerning first=251 second=277 amount=-1 +kerning first=205 second=224 amount=-1 +kerning first=88 second=355 amount=-1 +kerning first=366 second=193 amount=-1 +kerning first=350 second=223 amount=-1 +kerning first=217 second=334 amount=-1 +kerning first=1042 second=1059 amount=-2 +kerning first=212 second=351 amount=-1 +kerning first=77 second=333 amount=-1 +kerning first=290 second=203 amount=-1 +kerning first=355 second=171 amount=-1 +kerning first=45 second=122 amount=-1 +kerning first=291 second=112 amount=-1 +kerning first=1093 second=1095 amount=-1 +kerning first=362 second=203 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=77 second=203 amount=-1 +kerning first=218 second=333 amount=-1 +kerning first=218 second=203 amount=-1 +kerning first=97 second=263 amount=-1 +kerning first=72 second=220 amount=-1 +kerning first=269 second=117 amount=-1 +kerning first=8222 second=216 amount=-1 +kerning first=70 second=171 amount=-2 +kerning first=233 second=117 amount=-1 +kerning first=81 second=374 amount=-1 +kerning first=106 second=171 amount=-1 +kerning first=8222 second=251 amount=-1 +kerning first=70 second=206 amount=-1 +kerning first=65 second=367 amount=-1 +kerning first=344 second=264 amount=-1 +kerning first=323 second=212 amount=-1 +kerning first=354 second=229 amount=-1 +kerning first=321 second=220 amount=-1 +kerning first=8250 second=87 amount=-2 +kerning first=278 second=304 amount=-1 +kerning first=77 second=368 amount=-1 +kerning first=220 second=382 amount=-1 +kerning first=118 second=316 amount=-1 +kerning first=350 second=304 amount=-1 +kerning first=192 second=356 amount=-1 +kerning first=279 second=246 amount=-1 +kerning first=211 second=206 amount=-1 +kerning first=1056 second=1118 amount=-1 +kerning first=366 second=103 amount=-1 +kerning first=223 second=316 amount=-1 +kerning first=112 second=120 amount=-1 +kerning first=230 second=244 amount=-1 +kerning first=207 second=246 amount=-1 +kerning first=364 second=382 amount=-1 +kerning first=217 second=120 amount=-1 +kerning first=77 second=8221 amount=-1 +kerning first=213 second=220 amount=-1 +kerning first=259 second=316 amount=-1 +kerning first=253 second=120 amount=-1 +kerning first=113 second=8221 amount=-2 +kerning first=80 second=194 amount=-1 +kerning first=323 second=273 amount=-1 +kerning first=362 second=368 amount=-1 +kerning first=75 second=211 amount=-1 +kerning first=199 second=109 amount=-1 +kerning first=218 second=8221 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=1060 second=1051 amount=-1 +kerning first=378 second=8220 amount=-1 +kerning first=326 second=333 amount=-1 +kerning first=254 second=8221 amount=-2 +kerning first=221 second=194 amount=-1 +kerning first=362 second=333 amount=-1 +kerning first=290 second=8221 amount=-1 +kerning first=218 second=368 amount=-1 +kerning first=326 second=8221 amount=-2 +kerning first=270 second=330 amount=-1 +kerning first=362 second=8221 amount=-1 +kerning first=1064 second=1092 amount=-1 +kerning first=290 second=368 amount=-1 +kerning first=1050 second=1088 amount=-1 +kerning first=214 second=197 amount=-1 +kerning first=192 second=85 amount=-1 +kerning first=269 second=223 amount=-1 +kerning first=327 second=210 amount=-1 +kerning first=101 second=98 amount=-1 +kerning first=65 second=98 amount=-1 +kerning first=367 second=243 amount=-1 +kerning first=197 second=223 amount=-1 +kerning first=85 second=234 amount=-1 +kerning first=219 second=210 amount=-1 +kerning first=1050 second=1108 amount=-1 +kerning first=78 second=210 amount=-1 +kerning first=199 second=280 amount=-1 +kerning first=289 second=326 amount=-1 +kerning first=282 second=302 amount=-1 +kerning first=72 second=122 amount=-1 +kerning first=250 second=335 amount=-1 +kerning first=1027 second=1077 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=108 second=122 amount=-1 +kerning first=210 second=302 amount=-1 +kerning first=264 second=213 amount=-1 +kerning first=69 second=302 amount=-1 +kerning first=259 second=243 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=1071 second=1079 amount=-1 +kerning first=267 second=339 amount=-1 +kerning first=193 second=363 amount=-1 +kerning first=288 second=219 amount=-1 +kerning first=231 second=339 amount=-1 +kerning first=75 second=284 amount=-1 +kerning first=1033 second=1059 amount=-2 +kerning first=269 second=8249 amount=-1 +kerning first=368 second=350 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=8218 second=218 amount=-1 +kerning first=75 second=219 amount=-1 +kerning first=305 second=8249 amount=-1 +kerning first=251 second=235 amount=-1 +kerning first=205 second=78 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=1069 second=1059 amount=-1 +kerning first=73 second=335 amount=-1 +kerning first=302 second=232 amount=-1 +kerning first=266 second=232 amount=-1 +kerning first=230 second=232 amount=-1 +kerning first=109 second=335 amount=-1 +kerning first=296 second=350 amount=-1 +kerning first=317 second=89 amount=-1 +kerning first=262 second=234 amount=-1 +kerning first=8250 second=79 amount=-1 +kerning first=252 second=281 amount=-1 +kerning first=69 second=262 amount=-1 +kerning first=263 second=241 amount=-1 +kerning first=226 second=234 amount=-1 +kerning first=291 second=116 amount=-1 +kerning first=70 second=344 amount=-1 +kerning first=1071 second=1081 amount=-1 +kerning first=196 second=354 amount=-1 +kerning first=278 second=8222 amount=-1 +kerning first=298 second=234 amount=-1 +kerning first=232 second=289 amount=-1 +kerning first=117 second=171 amount=-1 +kerning first=1030 second=1068 amount=-1 +kerning first=370 second=234 amount=-1 +kerning first=1067 second=1075 amount=-1 +kerning first=68 second=89 amount=-1 +kerning first=264 second=85 amount=-1 +kerning first=1031 second=1075 amount=-1 +kerning first=197 second=8249 amount=-1 +kerning first=1066 second=1068 amount=-1 +kerning first=296 second=79 amount=-1 +kerning first=258 second=366 amount=-1 +kerning first=196 second=216 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=1062 second=1108 amount=-1 +kerning first=304 second=216 amount=-1 +kerning first=323 second=204 amount=-1 +kerning first=368 second=79 amount=-1 +kerning first=268 second=216 amount=-1 +kerning first=368 second=250 amount=-1 +kerning first=81 second=366 amount=-1 +kerning first=89 second=332 amount=-1 +kerning first=86 second=241 amount=-1 +kerning first=98 second=378 amount=-1 +kerning first=1056 second=1053 amount=-1 +kerning first=350 second=8222 amount=-1 +kerning first=45 second=366 amount=-1 +kerning first=1046 second=1038 amount=-1 +kerning first=266 second=332 amount=-1 +kerning first=1064 second=1084 amount=-1 +kerning first=198 second=67 amount=-1 +kerning first=83 second=250 amount=-1 +kerning first=291 second=104 amount=-1 +kerning first=194 second=332 amount=-1 +kerning first=369 second=99 amount=-1 +kerning first=362 second=195 amount=-1 +kerning first=255 second=104 amount=-1 +kerning first=374 second=332 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=330 second=366 amount=-1 +kerning first=338 second=332 amount=-1 +kerning first=366 second=366 amount=-1 +kerning first=302 second=332 amount=-1 +kerning first=1078 second=1105 amount=-1 +kerning first=220 second=317 amount=-1 +kerning first=366 second=201 amount=-1 +kerning first=291 second=110 amount=-1 +kerning first=221 second=259 amount=-1 +kerning first=344 second=116 amount=-1 +kerning first=65 second=369 amount=-1 +kerning first=330 second=201 amount=-1 +kerning first=187 second=381 amount=-1 +kerning first=314 second=369 amount=-1 +kerning first=364 second=317 amount=-1 +kerning first=99 second=316 amount=-1 +kerning first=282 second=355 amount=-1 +kerning first=1049 second=1062 amount=-1 +kerning first=74 second=204 amount=-1 +kerning first=8218 second=356 amount=-1 +kerning first=88 second=119 amount=-1 +kerning first=252 second=113 amount=-1 +kerning first=275 second=378 amount=-1 +kerning first=45 second=201 amount=-1 +kerning first=242 second=8222 amount=-1 +kerning first=81 second=201 amount=-1 +kerning first=1039 second=1041 amount=-1 +kerning first=362 second=268 amount=-1 +kerning first=1056 second=1061 amount=-1 +kerning first=116 second=259 amount=-1 +kerning first=101 second=8222 amount=-1 +kerning first=199 second=207 amount=-1 +kerning first=80 second=259 amount=-1 +kerning first=1059 second=1044 amount=-1 +kerning first=78 second=331 amount=-1 +kerning first=200 second=116 amount=-1 +kerning first=205 second=262 amount=-1 +kerning first=1062 second=1095 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=99 second=311 amount=-1 +kerning first=233 second=116 amount=-1 +kerning first=205 second=271 amount=-1 +kerning first=73 second=313 amount=-1 +kerning first=197 second=116 amount=-1 +kerning first=89 second=198 amount=-1 +kerning first=334 second=8221 amount=-2 +kerning first=83 second=363 amount=-1 +kerning first=362 second=67 amount=-1 +kerning first=119 second=363 amount=-1 +kerning first=187 second=110 amount=-1 +kerning first=282 second=270 amount=-1 +kerning first=66 second=195 amount=-1 +kerning first=1033 second=1039 amount=-1 +kerning first=370 second=268 amount=-1 +kerning first=77 second=207 amount=-1 +kerning first=339 second=378 amount=-1 +kerning first=187 second=317 amount=-1 +kerning first=354 second=113 amount=-1 +kerning first=218 second=67 amount=-1 +kerning first=346 second=366 amount=-1 +kerning first=205 second=210 amount=-1 +kerning first=298 second=268 amount=-1 +kerning first=274 second=366 amount=-1 +kerning first=310 second=366 amount=-1 +kerning first=1030 second=1081 amount=-1 +kerning first=8222 second=97 amount=-1 +kerning first=202 second=366 amount=-1 +kerning first=77 second=67 amount=-1 +kerning first=8250 second=249 amount=-1 +kerning first=370 second=115 amount=-1 +kerning first=187 second=68 amount=-1 +kerning first=374 second=8250 amount=-1 +kerning first=1086 second=1093 amount=-1 +kerning first=288 second=302 amount=-1 +kerning first=338 second=8250 amount=-1 +kerning first=75 second=8220 amount=-1 +kerning first=199 second=101 amount=-1 +kerning first=281 second=107 amount=-1 +kerning first=327 second=73 amount=-1 +kerning first=266 second=8250 amount=-1 +kerning first=271 second=101 amount=-1 +kerning first=230 second=8250 amount=-1 +kerning first=111 second=8220 amount=-2 +kerning first=235 second=101 amount=-1 +kerning first=194 second=8250 amount=-1 +kerning first=252 second=8220 amount=-1 +kerning first=78 second=8218 amount=-1 +kerning first=211 second=219 amount=-1 +kerning first=216 second=8220 amount=-2 +kerning first=287 second=351 amount=-1 +kerning first=307 second=101 amount=-1 +kerning first=89 second=8250 amount=-1 +kerning first=268 second=277 amount=-1 +kerning first=232 second=277 amount=-1 +kerning first=70 second=219 amount=-1 +kerning first=111 second=122 amount=-1 +kerning first=1056 second=1089 amount=-1 +kerning first=220 second=334 amount=-1 +kerning first=374 second=198 amount=-1 +kerning first=89 second=345 amount=-1 +kerning first=350 second=296 amount=-1 +kerning first=219 second=73 amount=-1 +kerning first=1038 second=1102 amount=-1 +kerning first=194 second=345 amount=-1 +kerning first=278 second=296 amount=-1 +kerning first=225 second=235 amount=-1 +kerning first=261 second=235 amount=-1 +kerning first=233 second=283 amount=-1 +kerning first=269 second=283 amount=-1 +kerning first=369 second=235 amount=-1 +kerning first=1041 second=1047 amount=-1 +kerning first=339 second=231 amount=-1 +kerning first=204 second=338 amount=-1 +kerning first=364 second=286 amount=-1 +kerning first=8217 second=328 amount=-1 +kerning first=8250 second=256 amount=-1 +kerning first=310 second=79 amount=-1 +kerning first=324 second=8220 amount=-2 +kerning first=231 second=351 amount=-1 +kerning first=288 second=8220 amount=-1 +kerning first=220 second=286 amount=-1 +kerning first=68 second=197 amount=-1 +kerning first=1064 second=1076 amount=-1 +kerning first=192 second=86 amount=-1 +kerning first=68 second=274 amount=-1 +kerning first=375 second=351 amount=-1 +kerning first=205 second=83 amount=-1 +kerning first=202 second=79 amount=-1 +kerning first=339 second=351 amount=-1 +kerning first=1062 second=1074 amount=-1 +kerning first=274 second=79 amount=-1 +kerning first=257 second=8250 amount=-1 +kerning first=267 second=351 amount=-1 +kerning first=1043 second=1051 amount=-1 +kerning first=1049 second=1041 amount=-1 +kerning first=258 second=104 amount=-1 +kerning first=212 second=8220 amount=-2 +kerning first=374 second=171 amount=-2 +kerning first=334 second=362 amount=-1 +kerning first=71 second=278 amount=-1 +kerning first=268 second=70 amount=-1 +kerning first=8250 second=323 amount=-1 +kerning first=70 second=192 amount=-1 +kerning first=231 second=244 amount=-1 +kerning first=8216 second=115 amount=-1 +kerning first=267 second=244 amount=-1 +kerning first=284 second=278 amount=-1 +kerning first=209 second=274 amount=-1 +kerning first=207 second=280 amount=-1 +kerning first=339 second=244 amount=-1 +kerning first=1034 second=1065 amount=-1 +kerning first=8250 second=216 amount=-1 +kerning first=108 second=382 amount=-1 +kerning first=1070 second=1065 amount=-1 +kerning first=1057 second=1094 amount=-1 +kerning first=231 second=231 amount=-1 +kerning first=325 second=201 amount=-1 +kerning first=267 second=231 amount=-1 +kerning first=194 second=171 amount=-1 +kerning first=219 second=100 amount=-1 +kerning first=304 second=70 amount=-1 +kerning first=327 second=100 amount=-1 +kerning first=84 second=235 amount=-1 +kerning first=266 second=171 amount=-1 +kerning first=206 second=269 amount=-1 +kerning first=338 second=171 amount=-1 +kerning first=217 second=201 amount=-1 +kerning first=101 second=269 amount=-1 +kerning first=192 second=266 amount=-1 +kerning first=314 second=269 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=1053 second=1071 amount=-1 +kerning first=264 second=266 amount=-1 +kerning first=280 second=214 amount=-1 +kerning first=8250 second=363 amount=-1 +kerning first=1064 second=1048 amount=-1 +kerning first=8222 second=250 amount=-1 +kerning first=194 second=318 amount=-1 +kerning first=71 second=45 amount=-1 +kerning first=1107 second=1090 amount=-1 +kerning first=70 second=353 amount=-1 +kerning first=87 second=266 amount=-1 +kerning first=266 second=318 amount=-1 +kerning first=220 second=313 amount=-1 +kerning first=316 second=171 amount=-1 +kerning first=264 second=200 amount=-1 +kerning first=324 second=275 amount=-1 +kerning first=210 second=200 amount=-1 +kerning first=218 second=260 amount=-1 +kerning first=214 second=370 amount=-1 +kerning first=214 second=8222 amount=-1 +kerning first=107 second=45 amount=-1 +kerning first=73 second=370 amount=-1 +kerning first=114 second=240 amount=-1 +kerning first=261 second=243 amount=-1 +kerning first=1044 second=1097 amount=-1 +kerning first=356 second=45 amount=-1 +kerning first=199 second=362 amount=-1 +kerning first=73 second=8222 amount=-1 +kerning first=362 second=260 amount=-1 +kerning first=1051 second=1050 amount=-1 +kerning first=263 second=100 amount=-1 +kerning first=1038 second=1092 amount=-1 +kerning first=284 second=45 amount=-1 +kerning first=375 second=187 amount=-1 +kerning first=252 second=275 amount=-1 +kerning first=268 second=333 amount=-1 +kerning first=286 second=370 amount=-1 +kerning first=80 second=71 amount=-1 +kerning first=330 second=257 amount=-1 +kerning first=77 second=234 amount=-1 +kerning first=366 second=257 amount=-1 +kerning first=270 second=209 amount=-1 +kerning first=363 second=267 amount=-1 +kerning first=198 second=209 amount=-1 +kerning first=268 second=97 amount=-1 +kerning first=213 second=80 amount=-1 +kerning first=286 second=223 amount=-1 +kerning first=304 second=97 amount=-1 +kerning first=218 second=234 amount=-1 +kerning first=195 second=217 amount=-1 +kerning first=337 second=380 amount=-1 +kerning first=101 second=243 amount=-1 +kerning first=1048 second=1027 amount=-1 +kerning first=213 second=258 amount=-1 +kerning first=314 second=243 amount=-1 +kerning first=74 second=266 amount=-1 +kerning first=8218 second=224 amount=-1 +kerning first=218 second=325 amount=-1 +kerning first=71 second=72 amount=-1 +kerning first=232 second=8221 amount=-2 +kerning first=230 second=345 amount=-1 +kerning first=8222 second=277 amount=-1 +kerning first=268 second=8221 amount=-1 +kerning first=266 second=345 amount=-1 +kerning first=217 second=335 amount=-1 +kerning first=302 second=345 amount=-1 +kerning first=338 second=345 amount=-1 +kerning first=84 second=171 amount=-1 +kerning first=296 second=242 amount=-1 +kerning first=374 second=345 amount=-1 +kerning first=284 second=72 amount=-1 +kerning first=1030 second=1054 amount=-1 +kerning first=250 second=245 amount=-1 +kerning first=224 second=242 amount=-1 +kerning first=220 second=352 amount=-1 +kerning first=354 second=99 amount=-1 +kerning first=325 second=335 amount=-1 +kerning first=356 second=225 amount=-1 +kerning first=97 second=232 amount=-1 +kerning first=219 second=267 amount=-1 +kerning first=326 second=234 amount=-1 +kerning first=368 second=242 amount=-1 +kerning first=364 second=352 amount=-1 +kerning first=327 second=267 amount=-1 +kerning first=362 second=234 amount=-1 +kerning first=193 second=105 amount=-1 +kerning first=103 second=241 amount=-1 +kerning first=296 second=336 amount=-1 +kerning first=249 second=8221 amount=-1 +kerning first=263 second=328 amount=-1 +kerning first=1039 second=1028 amount=-1 +kerning first=77 second=233 amount=-1 +kerning first=275 second=98 amount=-1 +kerning first=296 second=216 amount=-1 +kerning first=209 second=80 amount=-1 +kerning first=368 second=336 amount=-1 +kerning first=201 second=199 amount=-1 +kerning first=1042 second=1045 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=1102 second=1093 amount=-1 +kerning first=271 second=114 amount=-1 +kerning first=326 second=233 amount=-1 +kerning first=368 second=216 amount=-1 +kerning first=1043 second=1077 amount=-1 +kerning first=218 second=233 amount=-1 +kerning first=1050 second=1079 amount=-1 +kerning first=267 second=378 amount=-1 +kerning first=8218 second=227 amount=-1 +kerning first=1077 second=1080 amount=-1 +kerning first=330 second=284 amount=-1 +kerning first=67 second=241 amount=-1 +kerning first=231 second=378 amount=-1 +kerning first=1041 second=1080 amount=-1 +kerning first=1067 second=1113 amount=-1 +kerning first=235 second=114 amount=-1 +kerning first=362 second=233 amount=-1 +kerning first=205 second=344 amount=-1 +kerning first=286 second=8222 amount=-1 +kerning first=199 second=114 amount=-1 +kerning first=366 second=284 amount=-1 +kerning first=1033 second=1046 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=200 second=327 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=352 second=361 amount=-1 +kerning first=272 second=327 amount=-1 +kerning first=258 second=284 amount=-1 +kerning first=211 second=353 amount=-1 +kerning first=280 second=361 amount=-1 +kerning first=266 second=224 amount=-1 +kerning first=283 second=353 amount=-1 +kerning first=262 second=115 amount=-1 +kerning first=201 second=8222 amount=-1 +kerning first=298 second=115 amount=-1 +kerning first=344 second=81 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=334 second=115 amount=-1 +kerning first=196 second=8221 amount=-2 +kerning first=45 second=284 amount=-1 +kerning first=351 second=8221 amount=-2 +kerning first=70 second=218 amount=-1 +kerning first=77 second=273 amount=-1 +kerning first=196 second=44 amount=-1 +kerning first=374 second=224 amount=-1 +kerning first=232 second=44 amount=-1 +kerning first=281 second=355 amount=-1 +kerning first=203 second=8249 amount=-1 +kerning first=224 second=235 amount=-1 +kerning first=70 second=78 amount=-1 +kerning first=209 second=355 amount=-1 +kerning first=350 second=282 amount=-1 +kerning first=325 second=227 amount=-1 +kerning first=1049 second=1104 amount=-1 +kerning first=77 second=380 amount=-1 +kerning first=311 second=8249 amount=-1 +kerning first=67 second=267 amount=-1 +kerning first=103 second=267 amount=-1 +kerning first=217 second=102 amount=-1 +kerning first=1043 second=1104 amount=-1 +kerning first=206 second=282 amount=-1 +kerning first=201 second=72 amount=-1 +kerning first=80 second=346 amount=-1 +kerning first=104 second=248 amount=-1 +kerning first=279 second=273 amount=-1 +kerning first=211 second=218 amount=-1 +kerning first=1059 second=1079 amount=-1 +kerning first=209 second=248 amount=-1 +kerning first=1036 second=1089 amount=-1 +kerning first=1052 second=1119 amount=-1 +kerning first=116 second=224 amount=-1 +kerning first=74 second=337 amount=-1 +kerning first=290 second=114 amount=-1 +kerning first=1051 second=1031 amount=-1 +kerning first=1049 second=1086 amount=-1 +kerning first=344 second=288 amount=-1 +kerning first=323 second=230 amount=-1 +kerning first=1051 second=1073 amount=-1 +kerning first=8250 second=324 amount=-1 +kerning first=89 second=279 amount=-1 +kerning first=272 second=206 amount=-1 +kerning first=200 second=274 amount=-1 +kerning first=70 second=337 amount=-1 +kerning first=248 second=291 amount=-1 +kerning first=74 second=230 amount=-1 +kerning first=8222 second=71 amount=-1 +kerning first=219 second=361 amount=-1 +kerning first=200 second=206 amount=-1 +kerning first=207 second=368 amount=-1 +kerning first=107 second=291 amount=-1 +kerning first=66 second=8221 amount=-2 +kerning first=356 second=232 amount=-1 +kerning first=217 second=227 amount=-1 +kerning first=344 second=8218 amount=-1 +kerning first=1027 second=1117 amount=-1 +kerning first=8217 second=275 amount=-1 +kerning first=323 second=337 amount=-1 +kerning first=1030 second=1080 amount=-1 +kerning first=315 second=368 amount=-1 +kerning first=272 second=8218 amount=-1 +kerning first=251 second=337 amount=-1 +kerning first=243 second=8221 amount=-2 +kerning first=66 second=368 amount=-1 +kerning first=279 second=8221 amount=-2 +kerning first=187 second=84 amount=-1 +kerning first=200 second=288 amount=-1 +kerning first=315 second=8221 amount=-1 +kerning first=171 second=368 amount=-1 +kerning first=110 second=337 amount=-1 +kerning first=121 second=187 amount=-1 +kerning first=304 second=211 amount=-1 +kerning first=375 second=107 amount=-1 +kerning first=268 second=211 amount=-1 +kerning first=325 second=200 amount=-1 +kerning first=85 second=187 amount=-2 +kerning first=78 second=99 amount=-1 +kerning first=291 second=99 amount=-1 +kerning first=334 second=187 amount=-1 +kerning first=278 second=270 amount=-1 +kerning first=296 second=362 amount=-1 +kerning first=217 second=200 amount=-1 +kerning first=200 second=8218 amount=-1 +kerning first=226 second=187 amount=-1 +kerning first=8250 second=336 amount=-1 +kerning first=219 second=99 amount=-1 +kerning first=262 second=187 amount=-1 +kerning first=206 second=270 amount=-1 +kerning first=196 second=211 amount=-1 +kerning first=203 second=266 amount=-1 +kerning first=196 second=71 amount=-1 +kerning first=98 second=8222 amount=-1 +kerning first=266 second=279 amount=-1 +kerning first=338 second=371 amount=-1 +kerning first=302 second=279 amount=-1 +kerning first=363 second=99 amount=-1 +kerning first=230 second=279 amount=-1 +kerning first=171 second=218 amount=-1 +kerning first=304 second=71 amount=-1 +kerning first=268 second=71 amount=-1 +kerning first=67 second=202 amount=-1 +kerning first=83 second=362 amount=-1 +kerning first=374 second=279 amount=-1 +kerning first=263 second=367 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=187 second=209 amount=-1 +kerning first=89 second=371 amount=-1 +kerning first=120 second=108 amount=-1 +kerning first=74 second=364 amount=-1 +kerning first=194 second=371 amount=-1 +kerning first=72 second=350 amount=-1 +kerning first=1030 second=1107 amount=-1 +kerning first=352 second=202 amount=-1 +kerning first=1055 second=1068 amount=-1 +kerning first=314 second=122 amount=-1 +kerning first=218 second=380 amount=-1 +kerning first=347 second=8249 amount=-1 +kerning first=220 second=205 amount=-1 +kerning first=333 second=108 amount=-1 +kerning first=362 second=273 amount=-1 +kerning first=79 second=205 amount=-1 +kerning first=338 second=270 amount=-1 +kerning first=205 second=69 amount=-1 +kerning first=201 second=334 amount=-1 +kerning first=196 second=303 amount=-1 +kerning first=350 second=270 amount=-1 +kerning first=254 second=380 amount=-1 +kerning first=261 second=108 amount=-1 +kerning first=362 second=380 amount=-1 +kerning first=210 second=221 amount=-1 +kerning first=218 second=273 amount=-1 +kerning first=327 second=216 amount=-1 +kerning first=323 second=364 amount=-1 +kerning first=198 second=68 amount=-1 +kerning first=220 second=8221 amount=-1 +kerning first=270 second=68 amount=-1 +kerning first=85 second=229 amount=-1 +kerning first=73 second=82 amount=-1 +kerning first=100 second=263 amount=-1 +kerning first=209 second=286 amount=-1 +kerning first=205 second=263 amount=-1 +kerning first=366 second=365 amount=-1 +kerning first=241 second=263 amount=-1 +kerning first=258 second=365 amount=-1 +kerning first=86 second=194 amount=-1 +kerning first=277 second=263 amount=-1 +kerning first=195 second=214 amount=-1 +kerning first=214 second=82 amount=-1 +kerning first=298 second=229 amount=-1 +kerning first=370 second=229 amount=-1 +kerning first=213 second=298 amount=-1 +kerning first=1054 second=1051 amount=-1 +kerning first=45 second=365 amount=-1 +kerning first=262 second=229 amount=-1 +kerning first=366 second=219 amount=-1 +kerning first=323 second=203 amount=-1 +kerning first=1030 second=1091 amount=-1 +kerning first=1051 second=1100 amount=-1 +kerning first=45 second=77 amount=-1 +kerning first=1027 second=1076 amount=-1 +kerning first=1064 second=1083 amount=-1 +kerning first=81 second=77 amount=-1 +kerning first=356 second=333 amount=-1 +kerning first=279 second=316 amount=-1 +kerning first=73 second=330 amount=-1 +kerning first=243 second=316 amount=-1 +kerning first=202 second=220 amount=-1 +kerning first=351 second=316 amount=-1 +kerning first=328 second=339 amount=-1 +kerning first=209 second=382 amount=-1 +kerning first=326 second=246 amount=-1 +kerning first=1043 second=1090 amount=-1 +kerning first=1056 second=1048 amount=-1 +kerning first=245 second=382 amount=-1 +kerning first=1091 second=1102 amount=-1 +kerning first=281 second=382 amount=-1 +kerning first=1030 second=1079 amount=-1 +kerning first=364 second=339 amount=-1 +kerning first=366 second=77 amount=-1 +kerning first=218 second=246 amount=-1 +kerning first=8216 second=256 amount=-2 +kerning first=314 second=103 amount=-1 +kerning first=286 second=330 amount=-1 +kerning first=1049 second=1034 amount=-1 +kerning first=1049 second=1099 amount=-1 +kerning first=1073 second=1093 amount=-1 +kerning first=213 second=323 amount=-1 +kerning first=8220 second=197 amount=-2 +kerning first=242 second=103 amount=-1 +kerning first=330 second=77 amount=-1 +kerning first=77 second=246 amount=-1 +kerning first=270 second=356 amount=-1 +kerning first=206 second=103 amount=-1 +kerning first=199 second=281 amount=-1 +kerning first=203 second=304 amount=-1 +kerning first=350 second=315 amount=-1 +kerning first=310 second=220 amount=-1 +kerning first=235 second=281 amount=-1 +kerning first=274 second=220 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=271 second=281 amount=-1 +kerning first=307 second=281 amount=-1 +kerning first=346 second=220 amount=-1 +kerning first=283 second=245 amount=-1 +kerning first=268 second=109 amount=-1 +kerning first=78 second=280 amount=-1 +kerning first=87 second=196 amount=-1 +kerning first=374 second=210 amount=-1 +kerning first=219 second=280 amount=-1 +kerning first=212 second=85 amount=-1 +kerning first=283 second=120 amount=-1 +kerning first=326 second=119 amount=-1 +kerning first=106 second=245 amount=-1 +kerning first=85 second=256 amount=-1 +kerning first=261 second=314 amount=-1 +kerning first=337 second=8217 amount=-2 +kerning first=338 second=210 amount=-1 +kerning first=70 second=245 amount=-1 +kerning first=225 second=314 amount=-1 +kerning first=298 second=216 amount=-1 +kerning first=317 second=221 amount=-1 +kerning first=1059 second=1114 amount=-1 +kerning first=266 second=210 amount=-1 +kerning first=327 second=280 amount=-1 +kerning first=120 second=314 amount=-1 +kerning first=77 second=315 amount=-1 +kerning first=112 second=8222 amount=-1 +kerning first=209 second=313 amount=-1 +kerning first=194 second=210 amount=-1 +kerning first=8250 second=255 amount=-1 +kerning first=310 second=118 amount=-1 +kerning first=333 second=314 amount=-1 +kerning first=223 second=8218 amount=-1 +kerning first=370 second=246 amount=-1 +kerning first=89 second=210 amount=-1 +kerning first=220 second=339 amount=-1 +kerning first=72 second=271 amount=-1 +kerning first=68 second=313 amount=-1 +kerning first=70 second=120 amount=-1 +kerning first=355 second=245 amount=-1 +kerning first=327 second=8250 amount=-1 +kerning first=1059 second=1107 amount=-1 +kerning first=370 second=256 amount=-1 +kerning first=1043 second=1117 amount=-1 +kerning first=255 second=8250 amount=-1 +kerning first=199 second=254 amount=-1 +kerning first=74 second=203 amount=-1 +kerning first=258 second=171 amount=-1 +kerning first=1066 second=1042 amount=-1 +kerning first=219 second=8250 amount=-2 +kerning first=367 second=111 amount=-1 +kerning first=235 second=254 amount=-1 +kerning first=350 second=76 amount=-1 +kerning first=272 second=219 amount=-1 +kerning first=114 second=8250 amount=-1 +kerning first=78 second=8250 amount=-1 +kerning first=278 second=76 amount=-1 +kerning first=200 second=219 amount=-1 +kerning first=205 second=327 amount=-1 +kerning first=192 second=374 amount=-1 +kerning first=243 second=289 amount=-1 +kerning first=1101 second=1084 amount=-1 +kerning first=224 second=101 amount=-1 +kerning first=206 second=76 amount=-1 +kerning first=291 second=305 amount=-1 +kerning first=1058 second=1101 amount=-1 +kerning first=73 second=357 amount=-1 +kerning first=226 second=314 amount=-1 +kerning first=296 second=101 amount=-1 +kerning first=193 second=8217 amount=-2 +kerning first=279 second=289 amount=-1 +kerning first=8217 second=367 amount=-1 +kerning first=261 second=114 amount=-1 +kerning first=229 second=8217 amount=-2 +kerning first=218 second=315 amount=-1 +kerning first=351 second=289 amount=-1 +kerning first=80 second=212 amount=-1 +kerning first=259 second=111 amount=-1 +kerning first=362 second=315 amount=-1 +kerning first=88 second=8217 amount=-1 +kerning first=1040 second=1059 amount=-2 +kerning first=302 second=280 amount=-1 +kerning first=1028 second=1044 amount=-1 +kerning first=266 second=280 amount=-1 +kerning first=264 second=335 amount=-1 +kerning first=8217 second=79 amount=-1 +kerning first=338 second=280 amount=-1 +kerning first=267 second=120 amount=-1 +kerning first=86 second=232 amount=-1 +kerning first=324 second=233 amount=-1 +kerning first=1060 second=1067 amount=-1 +kerning first=45 second=326 amount=-1 +kerning first=1071 second=1099 amount=-1 +kerning first=369 second=263 amount=-1 +kerning first=261 second=287 amount=-1 +kerning first=225 second=287 amount=-1 +kerning first=262 second=46 amount=-1 +kerning first=277 second=8220 amount=-2 +kerning first=82 second=85 amount=-1 +kerning first=104 second=339 amount=-1 +kerning first=241 second=8220 amount=-2 +kerning first=120 second=287 amount=-1 +kerning first=264 second=98 amount=-1 +kerning first=269 second=241 amount=-1 +kerning first=296 second=271 amount=-1 +kerning first=313 second=8220 amount=-1 +kerning first=369 second=287 amount=-1 +kerning first=87 second=335 amount=-1 +kerning first=192 second=98 amount=-1 +kerning first=205 second=302 amount=-1 +kerning first=368 second=271 amount=-1 +kerning first=228 second=335 amount=-1 +kerning first=88 second=67 amount=-1 +kerning first=242 second=378 amount=-1 +kerning first=196 second=219 amount=-1 +kerning first=266 second=83 amount=-1 +kerning first=206 second=378 amount=-1 +kerning first=302 second=83 amount=-1 +kerning first=284 second=298 amount=-1 +kerning first=1065 second=1090 amount=-1 +kerning first=101 second=378 amount=-1 +kerning first=262 second=311 amount=-1 +kerning first=288 second=344 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=198 second=80 amount=-1 +kerning first=254 second=289 amount=-1 +kerning first=284 second=8250 amount=-1 +kerning first=85 second=46 amount=-2 +kerning first=314 second=378 amount=-1 +kerning first=1042 second=1114 amount=-1 +kerning first=326 second=289 amount=-1 +kerning first=325 second=76 amount=-1 +kerning first=217 second=76 amount=-1 +kerning first=366 second=353 amount=-1 +kerning first=199 second=216 amount=-1 +kerning first=330 second=353 amount=-1 +kerning first=1054 second=1061 amount=-1 +kerning first=70 second=284 amount=-1 +kerning first=1036 second=1105 amount=-1 +kerning first=1059 second=1118 amount=-1 +kerning first=203 second=357 amount=-1 +kerning first=296 second=74 amount=-1 +kerning first=275 second=357 amount=-1 +kerning first=240 second=246 amount=-1 +kerning first=257 second=113 amount=-1 +kerning first=368 second=74 amount=-1 +kerning first=86 second=259 amount=-1 +kerning first=264 second=201 amount=-1 +kerning first=231 second=269 amount=-1 +kerning first=45 second=116 amount=-1 +kerning first=1069 second=1084 amount=-1 +kerning first=1064 second=1071 amount=-1 +kerning first=221 second=113 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=80 second=113 amount=-1 +kerning first=339 second=269 amount=-1 +kerning first=263 second=259 amount=-1 +kerning first=258 second=116 amount=-1 +kerning first=220 second=204 amount=-1 +kerning first=267 second=269 amount=-1 +kerning first=364 second=310 amount=-1 +kerning first=370 second=302 amount=-1 +kerning first=270 second=317 amount=-1 +kerning first=1058 second=1085 amount=-1 +kerning first=200 second=330 amount=-1 +kerning first=364 second=204 amount=-1 +kerning first=272 second=65 amount=-1 +kerning first=1048 second=1069 amount=-1 +kerning first=212 second=200 amount=-1 +kerning first=259 second=187 amount=-1 +kerning first=200 second=369 amount=-1 +kerning first=362 second=350 amount=-1 +kerning first=193 second=67 amount=-1 +kerning first=101 second=244 amount=-1 +kerning first=365 second=113 amount=-1 +kerning first=323 second=268 amount=-1 +kerning first=374 second=103 amount=-1 +kerning first=278 second=278 amount=-1 +kerning first=75 second=210 amount=-1 +kerning first=86 second=122 amount=-1 +kerning first=1052 second=1094 amount=-1 +kerning first=234 second=107 amount=-1 +kerning first=365 second=277 amount=-1 +kerning first=106 second=113 amount=-1 +kerning first=298 second=225 amount=-1 +kerning first=1042 second=1087 amount=-1 +kerning first=206 second=351 amount=-1 +kerning first=1034 second=1053 amount=-1 +kerning first=85 second=213 amount=-1 +kerning first=74 second=268 amount=-1 +kerning first=280 second=73 amount=-1 +kerning first=101 second=351 amount=-1 +kerning first=200 second=262 amount=-1 +kerning first=330 second=219 amount=-1 +kerning first=198 second=317 amount=-1 +kerning first=352 second=73 amount=-1 +kerning first=298 second=213 amount=-1 +kerning first=116 second=277 amount=-1 +kerning first=258 second=219 amount=-1 +kerning first=262 second=213 amount=-1 +kerning first=80 second=277 amount=-1 +kerning first=286 second=82 amount=-1 +kerning first=201 second=251 amount=-1 +kerning first=366 second=116 amount=-1 +kerning first=344 second=262 amount=-1 +kerning first=335 second=122 amount=-1 +kerning first=330 second=116 amount=-1 +kerning first=344 second=370 amount=-1 +kerning first=283 second=8218 amount=-1 +kerning first=1027 second=1102 amount=-1 +kerning first=81 second=219 amount=-1 +kerning first=263 second=122 amount=-1 +kerning first=257 second=277 amount=-1 +kerning first=1052 second=1076 amount=-1 +kerning first=193 second=311 amount=-1 +kerning first=370 second=213 amount=-1 +kerning first=221 second=277 amount=-1 +kerning first=1065 second=1117 amount=-1 +kerning first=1041 second=1038 amount=-1 +kerning first=45 second=219 amount=-1 +kerning first=227 second=122 amount=-1 +kerning first=204 second=380 amount=-1 +kerning first=217 second=270 amount=-1 +kerning first=8217 second=232 amount=-1 +kerning first=364 second=231 amount=-1 +kerning first=80 second=8221 amount=-1 +kerning first=80 second=218 amount=-1 +kerning first=240 second=380 amount=-1 +kerning first=117 second=283 amount=-1 +kerning first=367 second=248 amount=-1 +kerning first=1058 second=1089 amount=-1 +kerning first=221 second=8221 amount=-1 +kerning first=210 second=75 amount=-1 +kerning first=220 second=231 amount=-1 +kerning first=1030 second=1119 amount=-1 +kerning first=257 second=382 amount=-1 +kerning first=257 second=8221 amount=-2 +kerning first=72 second=242 amount=-1 +kerning first=259 second=248 amount=-1 +kerning first=325 second=270 amount=-1 +kerning first=108 second=242 amount=-1 +kerning first=69 second=75 amount=-1 +kerning first=209 second=209 amount=-1 +kerning first=204 second=66 amount=-1 +kerning first=365 second=8221 amount=-1 +kerning first=199 second=336 amount=-1 +kerning first=249 second=242 amount=-1 +kerning first=68 second=209 amount=-1 +kerning first=330 second=283 amount=-1 +kerning first=356 second=226 amount=-1 +kerning first=366 second=283 amount=-1 +kerning first=8249 second=85 amount=-1 +kerning first=99 second=380 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=268 second=268 amount=-1 +kerning first=210 second=8220 amount=-2 +kerning first=206 second=244 amount=-1 +kerning first=366 second=102 amount=-1 +kerning first=207 second=233 amount=-1 +kerning first=70 second=327 amount=-1 +kerning first=347 second=8222 amount=-1 +kerning first=80 second=70 amount=-1 +kerning first=270 second=274 amount=-1 +kerning first=311 second=8222 amount=-1 +kerning first=345 second=45 amount=-1 +kerning first=366 second=192 amount=-1 +kerning first=314 second=244 amount=-1 +kerning first=211 second=327 amount=-1 +kerning first=1056 second=1113 amount=-1 +kerning first=203 second=8222 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=279 second=233 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=270 second=256 amount=-1 +kerning first=354 second=44 amount=-1 +kerning first=246 second=44 amount=-1 +kerning first=73 second=8249 amount=-1 +kerning first=45 second=192 amount=-1 +kerning first=287 second=115 amount=-1 +kerning first=327 second=337 amount=-1 +kerning first=209 second=205 amount=-1 +kerning first=1028 second=1071 amount=-1 +kerning first=68 second=205 amount=-1 +kerning first=78 second=224 amount=-1 +kerning first=366 second=310 amount=-1 +kerning first=330 second=310 amount=-1 +kerning first=197 second=214 amount=-1 +kerning first=327 second=224 amount=-1 +kerning first=254 second=8218 amount=-1 +kerning first=219 second=224 amount=-1 +kerning first=206 second=332 amount=-1 +kerning first=81 second=353 amount=-1 +kerning first=289 second=248 amount=-1 +kerning first=272 second=84 amount=-1 +kerning first=278 second=369 amount=-1 +kerning first=67 second=277 amount=-1 +kerning first=81 second=310 amount=-1 +kerning first=217 second=243 amount=-1 +kerning first=282 second=71 amount=-1 +kerning first=116 second=243 amount=-1 +kerning first=187 second=252 amount=-1 +kerning first=205 second=275 amount=-1 +kerning first=118 second=252 amount=-1 +kerning first=277 second=275 amount=-1 +kerning first=210 second=362 amount=-1 +kerning first=270 second=80 amount=-1 +kerning first=241 second=275 amount=-1 +kerning first=69 second=71 amount=-1 +kerning first=282 second=362 amount=-1 +kerning first=369 second=242 amount=-1 +kerning first=245 second=106 amount=-1 +kerning first=1052 second=1107 amount=-1 +kerning first=281 second=106 amount=-1 +kerning first=100 second=275 amount=-1 +kerning first=193 second=354 amount=-1 +kerning first=1077 second=1081 amount=-1 +kerning first=221 second=97 amount=-1 +kerning first=1055 second=1097 amount=-1 +kerning first=65 second=217 amount=-1 +kerning first=1091 second=1097 amount=-1 +kerning first=229 second=234 amount=-1 +kerning first=8218 second=98 amount=-1 +kerning first=206 second=217 amount=-1 +kerning first=80 second=97 amount=-1 +kerning first=203 second=223 amount=-1 +kerning first=69 second=362 amount=-1 +kerning first=116 second=97 amount=-1 +kerning first=70 second=257 amount=-1 +kerning first=278 second=217 amount=-1 +kerning first=325 second=243 amount=-1 +kerning first=350 second=217 amount=-1 +kerning first=263 second=232 amount=-1 +kerning first=289 second=243 amount=-1 +kerning first=325 second=266 amount=-1 +kerning first=227 second=232 amount=-1 +kerning first=1046 second=1098 amount=-1 +kerning first=75 second=371 amount=-1 +kerning first=100 second=345 amount=-1 +kerning first=196 second=368 amount=-1 +kerning first=1071 second=1072 amount=-1 +kerning first=217 second=266 amount=-1 +kerning first=330 second=68 amount=-1 +kerning first=205 second=345 amount=-1 +kerning first=244 second=108 amount=-1 +kerning first=241 second=345 amount=-1 +kerning first=78 second=219 amount=-1 +kerning first=199 second=263 amount=-1 +kerning first=220 second=325 amount=-1 +kerning first=1118 second=1098 amount=-1 +kerning first=211 second=8218 amount=-1 +kerning first=80 second=109 amount=-1 +kerning first=194 second=86 amount=-1 +kerning first=366 second=245 amount=-1 +kerning first=270 second=221 amount=-1 +kerning first=106 second=8218 amount=-1 +kerning first=366 second=120 amount=-1 +kerning first=330 second=245 amount=-1 +kerning first=355 second=8218 amount=-1 +kerning first=219 second=197 amount=-1 +kerning first=272 second=370 amount=-1 +kerning first=268 second=368 amount=-1 +kerning first=270 second=313 amount=-1 +kerning first=1065 second=1116 amount=-1 +kerning first=304 second=368 amount=-1 +kerning first=200 second=370 amount=-1 +kerning first=1059 second=1092 amount=-1 +kerning first=221 second=109 amount=-1 +kerning first=117 second=245 amount=-1 +kerning first=1052 second=1037 amount=-1 +kerning first=335 second=378 amount=-1 +kerning first=66 second=288 amount=-1 +kerning first=70 second=108 amount=-1 +kerning first=187 second=199 amount=-1 +kerning first=275 second=249 amount=-1 +kerning first=8218 second=266 amount=-1 +kerning first=45 second=120 amount=-1 +kerning first=71 second=201 amount=-1 +kerning first=198 second=313 amount=-1 +kerning first=350 second=72 amount=-1 +kerning first=1047 second=1101 amount=-1 +kerning first=89 second=361 amount=-1 +kerning first=368 second=275 amount=-1 +kerning first=85 second=45 amount=-2 +kerning first=99 second=105 amount=-1 +kerning first=121 second=45 amount=-1 +kerning first=1038 second=1086 amount=-1 +kerning first=203 second=249 amount=-1 +kerning first=218 second=229 amount=-1 +kerning first=233 second=267 amount=-1 +kerning first=269 second=267 amount=-1 +kerning first=217 second=217 amount=-1 +kerning first=370 second=72 amount=-1 +kerning first=305 second=267 amount=-1 +kerning first=80 second=274 amount=-1 +kerning first=1030 second=1097 amount=-1 +kerning first=1041 second=1042 amount=-1 +kerning first=325 second=217 amount=-1 +kerning first=282 second=212 amount=-1 +kerning first=1053 second=1113 amount=-1 +kerning first=282 second=114 amount=-1 +kerning first=1030 second=1042 amount=-1 +kerning first=268 second=205 amount=-1 +kerning first=264 second=102 amount=-1 +kerning first=69 second=212 amount=-1 +kerning first=228 second=8249 amount=-1 +kerning first=105 second=114 amount=-1 +kerning first=86 second=258 amount=-1 +kerning first=264 second=8249 amount=-1 +kerning first=246 second=114 amount=-1 +kerning first=234 second=111 amount=-1 +kerning first=73 second=262 amount=-1 +kerning first=1118 second=1102 amount=-1 +kerning first=8217 second=193 amount=-2 +kerning first=1071 second=1098 amount=-1 +kerning first=74 second=115 amount=-1 +kerning first=69 second=114 amount=-1 +kerning first=87 second=331 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=366 second=78 amount=-1 +kerning first=234 second=355 amount=-1 +kerning first=1042 second=1061 amount=-1 +kerning first=198 second=355 amount=-1 +kerning first=277 second=318 amount=-1 +kerning first=80 second=44 amount=-2 +kerning first=1052 second=1064 amount=-1 +kerning first=325 second=209 amount=-1 +kerning first=70 second=288 amount=-1 +kerning first=45 second=218 amount=-1 +kerning first=264 second=331 amount=-1 +kerning first=1031 second=1074 amount=-1 +kerning first=330 second=78 amount=-1 +kerning first=221 second=44 amount=-1 +kerning first=229 second=380 amount=-1 +kerning first=81 second=78 amount=-1 +kerning first=45 second=78 amount=-1 +kerning first=234 second=248 amount=-1 +kerning first=221 second=345 amount=-1 +kerning first=85 second=72 amount=-1 +kerning first=1047 second=1036 amount=-1 +kerning first=1066 second=1055 amount=-1 +kerning first=366 second=218 amount=-1 +kerning first=330 second=218 amount=-1 +kerning first=67 second=332 amount=-1 +kerning first=1039 second=1068 amount=-1 +kerning first=258 second=218 amount=-1 +kerning first=99 second=230 amount=-1 +kerning first=114 second=224 amount=-1 +kerning first=87 second=227 amount=-1 +kerning first=264 second=8222 amount=-1 +kerning first=280 second=332 amount=-1 +kerning first=100 second=279 amount=-1 +kerning first=194 second=361 amount=-1 +kerning first=1067 second=1092 amount=-1 +kerning first=241 second=279 amount=-1 +kerning first=87 second=8222 amount=-2 +kerning first=367 second=291 amount=-1 +kerning first=198 second=274 amount=-1 +kerning first=338 second=361 amount=-1 +kerning first=1048 second=1070 amount=-1 +kerning first=227 second=267 amount=-1 +kerning first=374 second=361 amount=-1 +kerning first=205 second=279 amount=-1 +kerning first=259 second=291 amount=-1 +kerning first=323 second=187 amount=-1 +kerning first=223 second=291 amount=-1 +kerning first=240 second=337 amount=-1 +kerning first=79 second=207 amount=-1 +kerning first=204 second=337 amount=-1 +kerning first=80 second=246 amount=-1 +kerning first=118 second=291 amount=-1 +kerning first=287 second=187 amount=-1 +kerning first=264 second=227 amount=-1 +kerning first=99 second=337 amount=-1 +kerning first=8217 second=283 amount=-1 +kerning first=8222 second=368 amount=-1 +kerning first=258 second=374 amount=-1 +kerning first=274 second=323 amount=-1 +kerning first=336 second=8222 amount=-1 +kerning first=206 second=352 amount=-1 +kerning first=202 second=323 amount=-1 +kerning first=270 second=84 amount=-1 +kerning first=73 second=81 amount=-1 +kerning first=206 second=325 amount=-1 +kerning first=74 second=317 amount=-1 +kerning first=193 second=338 amount=-1 +kerning first=278 second=325 amount=-1 +kerning first=346 second=323 amount=-1 +kerning first=88 second=338 amount=-1 +kerning first=221 second=211 amount=-1 +kerning first=350 second=325 amount=-1 +kerning first=1101 second=1078 amount=-1 +kerning first=105 second=281 amount=-1 +kerning first=80 second=211 amount=-1 +kerning first=103 second=99 amount=-1 +kerning first=325 second=347 amount=-1 +kerning first=316 second=99 amount=-1 +kerning first=255 second=251 amount=-1 +kerning first=352 second=8250 amount=-1 +kerning first=218 second=201 amount=-1 +kerning first=1048 second=1043 amount=-1 +kerning first=8218 second=335 amount=-1 +kerning first=253 second=347 amount=-1 +kerning first=1075 second=1116 amount=-1 +kerning first=282 second=214 amount=-1 +kerning first=289 second=347 amount=-1 +kerning first=280 second=8250 amount=-1 +kerning first=70 second=369 amount=-1 +kerning first=244 second=8250 amount=-1 +kerning first=198 second=290 amount=-1 +kerning first=8218 second=243 amount=-1 +kerning first=217 second=347 amount=-1 +kerning first=208 second=8250 amount=-1 +kerning first=113 second=316 amount=-1 +kerning first=1053 second=1097 amount=-1 +kerning first=283 second=369 amount=-1 +kerning first=254 second=316 amount=-1 +kerning first=204 second=268 amount=-1 +kerning first=103 second=8250 amount=-1 +kerning first=278 second=334 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=103 second=305 amount=-1 +kerning first=67 second=8250 amount=-1 +kerning first=8250 second=379 amount=-1 +kerning first=217 second=351 amount=-1 +kerning first=310 second=117 amount=-1 +kerning first=99 second=8217 amount=-2 +kerning first=274 second=117 amount=-1 +kerning first=233 second=104 amount=-1 +kerning first=282 second=202 amount=-1 +kerning first=269 second=104 amount=-1 +kerning first=325 second=351 amount=-1 +kerning first=289 second=351 amount=-1 +kerning first=82 second=264 amount=-1 +kerning first=364 second=366 amount=-1 +kerning first=197 second=104 amount=-1 +kerning first=224 second=113 amount=-1 +kerning first=203 second=82 amount=-1 +kerning first=1051 second=1030 amount=-1 +kerning first=8218 second=336 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=86 second=193 amount=-1 +kerning first=1034 second=1049 amount=-1 +kerning first=288 second=69 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=79 second=296 amount=-1 +kerning first=249 second=101 amount=-1 +kerning first=1054 second=1052 amount=-1 +kerning first=105 second=277 amount=-1 +kerning first=240 second=8217 amount=-2 +kerning first=204 second=364 amount=-1 +kerning first=198 second=286 amount=-1 +kerning first=1065 second=1074 amount=-1 +kerning first=112 second=103 amount=-1 +kerning first=283 second=365 amount=-1 +kerning first=252 second=263 amount=-1 +kerning first=75 second=171 amount=-1 +kerning first=204 second=220 amount=-1 +kerning first=8217 second=366 amount=-1 +kerning first=324 second=263 amount=-1 +kerning first=364 second=296 amount=-1 +kerning first=83 second=298 amount=-1 +kerning first=87 second=8249 amount=-2 +kerning first=1070 second=1049 amount=-1 +kerning first=252 second=171 amount=-1 +kerning first=209 second=68 amount=-1 +kerning first=288 second=171 amount=-1 +kerning first=296 second=298 amount=-1 +kerning first=70 second=365 amount=-1 +kerning first=1067 second=1071 amount=-1 +kerning first=368 second=298 amount=-1 +kerning first=250 second=287 amount=-1 +kerning first=364 second=46 amount=-2 +kerning first=202 second=117 amount=-1 +kerning first=109 second=287 amount=-1 +kerning first=283 second=246 amount=-1 +kerning first=204 second=203 amount=-1 +kerning first=233 second=100 amount=-1 +kerning first=1054 second=1025 amount=-1 +kerning first=78 second=83 amount=-1 +kerning first=367 second=333 amount=-1 +kerning first=269 second=100 amount=-1 +kerning first=219 second=83 amount=-1 +kerning first=1053 second=1083 amount=-1 +kerning first=85 second=278 amount=-1 +kerning first=209 second=339 amount=-1 +kerning first=323 second=229 amount=-1 +kerning first=327 second=83 amount=-1 +kerning first=281 second=339 amount=-1 +kerning first=187 second=356 amount=-1 +kerning first=203 second=330 amount=-1 +kerning first=264 second=304 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=229 second=246 amount=-1 +kerning first=80 second=267 amount=-1 +kerning first=325 second=103 amount=-1 +kerning first=72 second=74 amount=-1 +kerning first=354 second=281 amount=-1 +kerning first=1051 second=1057 amount=-1 +kerning first=370 second=278 amount=-1 +kerning first=253 second=103 amount=-1 +kerning first=334 second=278 amount=-1 +kerning first=217 second=103 amount=-1 +kerning first=206 second=296 amount=-1 +kerning first=298 second=278 amount=-1 +kerning first=323 second=246 amount=-1 +kerning first=248 second=382 amount=-1 +kerning first=200 second=8222 amount=-1 +kerning first=287 second=246 amount=-1 +kerning first=251 second=246 amount=-1 +kerning first=205 second=100 amount=-1 +kerning first=8222 second=87 amount=-2 +kerning first=199 second=298 amount=-1 +kerning first=228 second=103 amount=-1 +kerning first=356 second=382 amount=-1 +kerning first=220 second=269 amount=-1 +kerning first=272 second=77 amount=-1 +kerning first=277 second=100 amount=-1 +kerning first=205 second=220 amount=-1 +kerning first=110 second=246 amount=-1 +kerning first=313 second=220 amount=-1 +kerning first=198 second=330 amount=-1 +kerning first=74 second=246 amount=-1 +kerning first=200 second=77 amount=-1 +kerning first=79 second=356 amount=-1 +kerning first=364 second=269 amount=-1 +kerning first=212 second=68 amount=-1 +kerning first=1053 second=1062 amount=-1 +kerning first=213 second=194 amount=-1 +kerning first=199 second=211 amount=-1 +kerning first=251 second=333 amount=-1 +kerning first=110 second=333 amount=-1 +kerning first=284 second=68 amount=-1 +kerning first=352 second=365 amount=-1 +kerning first=328 second=269 amount=-1 +kerning first=280 second=365 amount=-1 +kerning first=344 second=8222 amount=-1 +kerning first=1070 second=1048 amount=-1 +kerning first=316 second=365 amount=-1 +kerning first=1034 second=1048 amount=-1 +kerning first=229 second=289 amount=-1 +kerning first=272 second=8222 amount=-1 +kerning first=323 second=333 amount=-1 +kerning first=71 second=68 amount=-1 +kerning first=85 second=335 amount=-1 +kerning first=72 second=281 amount=-1 +kerning first=350 second=313 amount=-1 +kerning first=108 second=281 amount=-1 +kerning first=80 second=315 amount=-1 +kerning first=70 second=202 amount=-1 +kerning first=8217 second=220 amount=-1 +kerning first=214 second=84 amount=-1 +kerning first=206 second=313 amount=-1 +kerning first=85 second=111 amount=-1 +kerning first=214 second=347 amount=-1 +kerning first=278 second=313 amount=-1 +kerning first=65 second=86 amount=-1 +kerning first=1036 second=1087 amount=-1 +kerning first=8222 second=336 amount=-1 +kerning first=1040 second=1057 amount=-1 +kerning first=77 second=364 amount=-1 +kerning first=1040 second=1117 amount=-1 +kerning first=263 second=324 amount=-1 +kerning first=73 second=347 amount=-1 +kerning first=1069 second=1042 amount=-1 +kerning first=230 second=271 amount=-1 +kerning first=211 second=202 amount=-1 +kerning first=209 second=264 amount=-1 +kerning first=1044 second=1088 amount=-1 +kerning first=214 second=325 amount=-1 +kerning first=346 second=69 amount=-1 +kerning first=85 second=251 amount=-1 +kerning first=121 second=251 amount=-1 +kerning first=193 second=214 amount=-1 +kerning first=370 second=251 amount=-1 +kerning first=243 second=8217 amount=-2 +kerning first=207 second=212 amount=-1 +kerning first=1048 second=1118 amount=-1 +kerning first=279 second=8217 amount=-2 +kerning first=315 second=8217 amount=-1 +kerning first=69 second=8221 amount=-1 +kerning first=277 second=345 amount=-1 +kerning first=66 second=8217 amount=-2 +kerning first=105 second=8221 amount=-1 +kerning first=199 second=271 amount=-1 +kerning first=66 second=212 amount=-1 +kerning first=8250 second=367 amount=-1 +kerning first=210 second=8221 amount=-2 +kerning first=226 second=111 amount=-1 +kerning first=270 second=85 amount=-1 +kerning first=261 second=245 amount=-1 +kerning first=298 second=111 amount=-1 +kerning first=198 second=85 amount=-1 +kerning first=97 second=242 amount=-1 +kerning first=354 second=8221 amount=-1 +kerning first=280 second=334 amount=-1 +kerning first=351 second=8217 amount=-2 +kerning first=195 second=221 amount=-1 +kerning first=370 second=111 amount=-1 +kerning first=84 second=245 amount=-1 +kerning first=363 second=263 amount=-1 +kerning first=103 second=365 amount=-1 +kerning first=362 second=8217 amount=-1 +kerning first=85 second=231 amount=-1 +kerning first=337 second=289 amount=-1 +kerning first=1039 second=1024 amount=-1 +kerning first=204 second=67 amount=-1 +kerning first=288 second=366 amount=-1 +kerning first=203 second=288 amount=-1 +kerning first=201 second=203 amount=-1 +kerning first=1069 second=1064 amount=-1 +kerning first=221 second=195 amount=-1 +kerning first=264 second=357 amount=-1 +kerning first=304 second=233 amount=-1 +kerning first=364 second=102 amount=-1 +kerning first=78 second=263 amount=-1 +kerning first=232 second=233 amount=-1 +kerning first=99 second=45 amount=-1 +kerning first=205 second=280 amount=-1 +kerning first=214 second=374 amount=-1 +kerning first=268 second=233 amount=-1 +kerning first=264 second=76 amount=-1 +kerning first=1036 second=1059 amount=-1 +kerning first=192 second=357 amount=-1 +kerning first=291 second=263 amount=-1 +kerning first=1058 second=1084 amount=-1 +kerning first=327 second=263 amount=-1 +kerning first=204 second=267 amount=-1 +kerning first=302 second=122 amount=-1 +kerning first=282 second=363 amount=-1 +kerning first=230 second=122 amount=-1 +kerning first=201 second=317 amount=-1 +kerning first=258 second=375 amount=-1 +kerning first=266 second=122 amount=-1 +kerning first=323 second=213 amount=-1 +kerning first=231 second=107 amount=-1 +kerning first=304 second=207 amount=-1 +kerning first=218 second=250 amount=-1 +kerning first=195 second=107 amount=-1 +kerning first=268 second=207 amount=-1 +kerning first=68 second=204 amount=-1 +kerning first=121 second=311 amount=-1 +kerning first=232 second=8250 amount=-1 +kerning first=1046 second=1072 amount=-1 +kerning first=203 second=201 amount=-1 +kerning first=296 second=232 amount=-1 +kerning first=219 second=116 amount=-1 +kerning first=198 second=282 amount=-1 +kerning first=310 second=216 amount=-1 +kerning first=8218 second=103 amount=-1 +kerning first=209 second=204 amount=-1 +kerning first=304 second=337 amount=-1 +kerning first=75 second=366 amount=-1 +kerning first=1052 second=1081 amount=-1 +kerning first=78 second=116 amount=-1 +kerning first=217 second=244 amount=-1 +kerning first=281 second=378 amount=-1 +kerning first=368 second=259 amount=-1 +kerning first=327 second=116 amount=-1 +kerning first=289 second=244 amount=-1 +kerning first=209 second=378 amount=-1 +kerning first=296 second=259 amount=-1 +kerning first=1058 second=1102 amount=-1 +kerning first=325 second=244 amount=-1 +kerning first=70 second=262 amount=-1 +kerning first=1042 second=1024 amount=-1 +kerning first=1051 second=1096 amount=-1 +kerning first=1058 second=1094 amount=-1 +kerning first=86 second=210 amount=-1 +kerning first=75 second=345 amount=-1 +kerning first=278 second=290 amount=-1 +kerning first=111 second=345 amount=-1 +kerning first=1042 second=1049 amount=-1 +kerning first=346 second=302 amount=-1 +kerning first=275 second=369 amount=-1 +kerning first=339 second=107 amount=-1 +kerning first=274 second=302 amount=-1 +kerning first=74 second=213 amount=-1 +kerning first=252 second=345 amount=-1 +kerning first=203 second=369 amount=-1 +kerning first=267 second=335 amount=-1 +kerning first=267 second=107 amount=-1 +kerning first=288 second=345 amount=-1 +kerning first=73 second=206 amount=-1 +kerning first=231 second=335 amount=-1 +kerning first=202 second=302 amount=-1 +kerning first=324 second=345 amount=-1 +kerning first=286 second=206 amount=-1 +kerning first=339 second=335 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=197 second=219 amount=-1 +kerning first=214 second=206 amount=-1 +kerning first=209 second=231 amount=-1 +kerning first=218 second=277 amount=-1 +kerning first=77 second=334 amount=-1 +kerning first=270 second=193 amount=-1 +kerning first=277 second=254 amount=-1 +kerning first=281 second=231 amount=-1 +kerning first=209 second=351 amount=-1 +kerning first=78 second=218 amount=-1 +kerning first=80 second=368 amount=-1 +kerning first=362 second=277 amount=-1 +kerning first=205 second=73 amount=-1 +kerning first=326 second=277 amount=-1 +kerning first=347 second=103 amount=-1 +kerning first=201 second=290 amount=-1 +kerning first=370 second=338 amount=-1 +kerning first=1066 second=1067 amount=-1 +kerning first=74 second=345 amount=-1 +kerning first=262 second=338 amount=-1 +kerning first=70 second=82 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=298 second=338 amount=-1 +kerning first=211 second=82 amount=-1 +kerning first=200 second=8249 amount=-1 +kerning first=283 second=283 amount=-1 +kerning first=278 second=286 amount=-1 +kerning first=77 second=277 amount=-1 +kerning first=1047 second=1097 amount=-1 +kerning first=85 second=338 amount=-1 +kerning first=68 second=351 amount=-1 +kerning first=344 second=8249 amount=-1 +kerning first=70 second=283 amount=-1 +kerning first=1027 second=1086 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=380 second=8249 amount=-1 +kerning first=106 second=283 amount=-1 +kerning first=1048 second=1031 amount=-1 +kerning first=187 second=274 amount=-1 +kerning first=262 second=45 amount=-1 +kerning first=67 second=171 amount=-1 +kerning first=1033 second=1068 amount=-1 +kerning first=103 second=171 amount=-1 +kerning first=206 second=286 amount=-1 +kerning first=368 second=113 amount=-1 +kerning first=8222 second=233 amount=-1 +kerning first=226 second=45 amount=-1 +kerning first=296 second=113 amount=-1 +kerning first=74 second=333 amount=-1 +kerning first=280 second=171 amount=-1 +kerning first=70 second=235 amount=-1 +kerning first=65 second=286 amount=-1 +kerning first=106 second=235 amount=-1 +kerning first=352 second=171 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=210 second=70 amount=-1 +kerning first=282 second=70 amount=-1 +kerning first=352 second=280 amount=-1 +kerning first=283 second=235 amount=-1 +kerning first=69 second=363 amount=-1 +kerning first=269 second=240 amount=-1 +kerning first=355 second=235 amount=-1 +kerning first=69 second=70 amount=-1 +kerning first=1051 second=1069 amount=-1 +kerning first=1068 second=1056 amount=-1 +kerning first=8217 second=351 amount=-1 +kerning first=121 second=252 amount=-1 +kerning first=280 second=344 amount=-1 +kerning first=1070 second=1027 amount=-1 +kerning first=85 second=252 amount=-1 +kerning first=327 second=284 amount=-1 +kerning first=1091 second=1085 amount=-1 +kerning first=1034 second=1027 amount=-1 +kerning first=352 second=344 amount=-1 +kerning first=278 second=205 amount=-1 +kerning first=78 second=284 amount=-1 +kerning first=219 second=284 amount=-1 +kerning first=1044 second=1080 amount=-1 +kerning first=314 second=283 amount=-1 +kerning first=338 second=214 amount=-1 +kerning first=302 second=214 amount=-1 +kerning first=266 second=214 amount=-1 +kerning first=290 second=315 amount=-1 +kerning first=192 second=365 amount=-1 +kerning first=234 second=231 amount=-1 +kerning first=192 second=217 amount=-1 +kerning first=366 second=46 amount=-2 +kerning first=187 second=112 amount=-1 +kerning first=1076 second=1113 amount=-1 +kerning first=67 second=344 amount=-1 +kerning first=212 second=89 amount=-1 +kerning first=374 second=214 amount=-1 +kerning first=220 second=243 amount=-1 +kerning first=197 second=332 amount=-1 +kerning first=110 second=45 amount=-1 +kerning first=375 second=287 amount=-1 +kerning first=339 second=122 amount=-1 +kerning first=217 second=65 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=73 second=353 amount=-1 +kerning first=117 second=235 amount=-1 +kerning first=364 second=243 amount=-1 +kerning first=214 second=353 amount=-1 +kerning first=194 second=214 amount=-1 +kerning first=287 second=45 amount=-1 +kerning first=328 second=243 amount=-1 +kerning first=249 second=275 amount=-1 +kerning first=89 second=214 amount=-1 +kerning first=1049 second=1076 amount=-1 +kerning first=362 second=226 amount=-1 +kerning first=218 second=71 amount=-1 +kerning first=1053 second=1028 amount=-1 +kerning first=251 second=45 amount=-1 +kerning first=370 second=252 amount=-1 +kerning first=8217 second=210 amount=-1 +kerning first=354 second=97 amount=-1 +kerning first=200 second=223 amount=-1 +kerning first=202 second=362 amount=-1 +kerning first=278 second=80 amount=-1 +kerning first=366 second=235 amount=-1 +kerning first=1039 second=1050 amount=-1 +kerning first=72 second=275 amount=-1 +kerning first=310 second=362 amount=-1 +kerning first=323 second=44 amount=-1 +kerning first=1077 second=1093 amount=-1 +kerning first=206 second=80 amount=-1 +kerning first=235 second=367 amount=-1 +kerning first=344 second=223 amount=-1 +kerning first=346 second=362 amount=-1 +kerning first=350 second=80 amount=-1 +kerning first=72 second=302 amount=-1 +kerning first=304 second=234 amount=-1 +kerning first=69 second=336 amount=-1 +kerning first=101 second=107 amount=-1 +kerning first=8218 second=244 amount=-1 +kerning first=78 second=122 amount=-1 +kerning first=65 second=107 amount=-1 +kerning first=363 second=234 amount=-1 +kerning first=211 second=370 amount=-1 +kerning first=196 second=119 amount=-1 +kerning first=229 second=337 amount=-1 +kerning first=1047 second=1079 amount=-1 +kerning first=198 second=199 amount=-1 +kerning first=8250 second=116 amount=-1 +kerning first=282 second=336 amount=-1 +kerning first=289 second=267 amount=-1 +kerning first=262 second=317 amount=-1 +kerning first=209 second=224 amount=-1 +kerning first=269 second=8250 amount=-1 +kerning first=87 second=249 amount=-1 +kerning first=338 second=116 amount=-1 +kerning first=98 second=314 amount=-1 +kerning first=302 second=116 amount=-1 +kerning first=192 second=249 amount=-1 +kerning first=266 second=116 amount=-1 +kerning first=374 second=241 amount=-1 +kerning first=287 second=105 amount=-1 +kerning first=1039 second=1105 amount=-1 +kerning first=327 second=122 amount=-1 +kerning first=1056 second=1071 amount=-1 +kerning first=275 second=314 amount=-1 +kerning first=45 second=327 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=81 second=327 amount=-1 +kerning first=232 second=234 amount=-1 +kerning first=1052 second=1054 amount=-1 +kerning first=77 second=382 amount=-1 +kerning first=364 second=335 amount=-1 +kerning first=101 second=345 amount=-1 +kerning first=323 second=72 amount=-1 +kerning first=328 second=335 amount=-1 +kerning first=1065 second=1087 amount=-1 +kerning first=89 second=241 amount=-1 +kerning first=262 second=110 amount=-1 +kerning first=1031 second=1049 amount=-1 +kerning first=347 second=314 amount=-1 +kerning first=171 second=374 amount=-1 +kerning first=1067 second=1049 amount=-1 +kerning first=202 second=216 amount=-1 +kerning first=330 second=327 amount=-1 +kerning first=302 second=241 amount=-1 +kerning first=298 second=110 amount=-1 +kerning first=366 second=327 amount=-1 +kerning first=266 second=241 amount=-1 +kerning first=302 second=245 amount=-1 +kerning first=274 second=216 amount=-1 +kerning first=270 second=205 amount=-1 +kerning first=370 second=110 amount=-1 +kerning first=74 second=254 amount=-1 +kerning first=362 second=250 amount=-1 +kerning first=257 second=114 amount=-1 +kerning first=1041 second=1097 amount=-1 +kerning first=99 second=115 amount=-1 +kerning first=118 second=46 amount=-1 +kerning first=75 second=262 amount=-1 +kerning first=82 second=46 amount=-1 +kerning first=1064 second=1045 amount=-1 +kerning first=204 second=115 amount=-1 +kerning first=111 second=318 amount=-1 +kerning first=223 second=46 amount=-1 +kerning first=213 second=302 amount=-1 +kerning first=70 second=370 amount=-1 +kerning first=220 second=335 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=221 second=114 amount=-1 +kerning first=1047 second=1046 amount=-1 +kerning first=330 second=267 amount=-1 +kerning first=370 second=225 amount=-1 +kerning first=83 second=187 amount=-1 +kerning first=366 second=267 amount=-1 +kerning first=230 second=347 amount=-1 +kerning first=203 second=81 amount=-1 +kerning first=82 second=355 amount=-1 +kerning first=352 second=44 amount=-1 +kerning first=1033 second=1055 amount=-1 +kerning first=204 second=273 amount=-1 +kerning first=209 second=296 amount=-1 +kerning first=99 second=273 amount=-1 +kerning first=8218 second=217 amount=-1 +kerning first=264 second=284 amount=-1 +kerning first=289 second=103 amount=-1 +kerning first=254 second=44 amount=-1 +kerning first=290 second=44 amount=-1 +kerning first=218 second=44 amount=-2 +kerning first=1038 second=1098 amount=-1 +kerning first=98 second=287 amount=-1 +kerning first=82 second=334 amount=-1 +kerning first=257 second=291 amount=-1 +kerning first=201 second=114 amount=-1 +kerning first=8217 second=117 amount=-1 +kerning first=74 second=72 amount=-1 +kerning first=304 second=317 amount=-1 +kerning first=187 second=355 amount=-1 +kerning first=264 second=282 amount=-1 +kerning first=275 second=287 amount=-1 +kerning first=199 second=346 amount=-1 +kerning first=67 second=83 amount=-1 +kerning first=73 second=288 amount=-1 +kerning first=288 second=8250 amount=-1 +kerning first=98 second=8220 amount=-2 +kerning first=258 second=311 amount=-1 +kerning first=80 second=199 amount=-1 +kerning first=347 second=287 amount=-1 +kerning first=1050 second=1089 amount=-1 +kerning first=369 second=245 amount=-1 +kerning first=311 second=287 amount=-1 +kerning first=74 second=278 amount=-1 +kerning first=224 second=8249 amount=-1 +kerning first=1031 second=1118 amount=-1 +kerning first=234 second=291 amount=-1 +kerning first=325 second=352 amount=-1 +kerning first=8222 second=119 amount=-1 +kerning first=347 second=108 amount=-1 +kerning first=78 second=257 amount=-1 +kerning first=120 second=44 amount=-1 +kerning first=1059 second=1091 amount=-1 +kerning first=316 second=279 amount=-1 +kerning first=352 second=371 amount=-1 +kerning first=323 second=278 amount=-1 +kerning first=69 second=211 amount=-1 +kerning first=311 second=108 amount=-1 +kerning first=222 second=8218 amount=-1 +kerning first=356 second=187 amount=-1 +kerning first=268 second=116 amount=-1 +kerning first=366 second=8218 amount=-2 +kerning first=344 second=355 amount=-1 +kerning first=71 second=187 amount=-1 +kerning first=209 second=269 amount=-1 +kerning first=267 second=252 amount=-1 +kerning first=233 second=99 amount=-1 +kerning first=213 second=75 amount=-1 +kerning first=118 second=382 amount=-1 +kerning first=229 second=316 amount=-1 +kerning first=362 second=71 amount=-1 +kerning first=193 second=316 amount=-1 +kerning first=103 second=279 amount=-1 +kerning first=248 second=187 amount=-1 +kerning first=223 second=382 amount=-1 +kerning first=1055 second=1098 amount=-1 +kerning first=45 second=357 amount=-1 +kerning first=284 second=187 amount=-1 +kerning first=259 second=382 amount=-1 +kerning first=282 second=211 amount=-1 +kerning first=269 second=99 amount=-1 +kerning first=81 second=8218 amount=-1 +kerning first=187 second=313 amount=-1 +kerning first=214 second=65 amount=-1 +kerning first=67 second=279 amount=-1 +kerning first=212 second=187 amount=-1 +kerning first=280 second=371 amount=-1 +kerning first=337 second=316 amount=-1 +kerning first=268 second=380 amount=-1 +kerning first=272 second=196 amount=-1 +kerning first=267 second=248 amount=-1 +kerning first=232 second=380 amount=-1 +kerning first=80 second=8218 amount=-2 +kerning first=80 second=260 amount=-1 +kerning first=231 second=248 amount=-1 +kerning first=364 second=270 amount=-1 +kerning first=304 second=380 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=187 second=334 amount=-1 +kerning first=73 second=261 amount=-1 +kerning first=77 second=44 amount=-1 +kerning first=221 second=260 amount=-1 +kerning first=280 second=202 amount=-1 +kerning first=81 second=202 amount=-1 +kerning first=45 second=202 amount=-1 +kerning first=198 second=264 amount=-1 +kerning first=108 second=8220 amount=-1 +kerning first=72 second=8220 amount=-1 +kerning first=201 second=209 amount=-1 +kerning first=213 second=8220 amount=-2 +kerning first=350 second=205 amount=-1 +kerning first=258 second=121 amount=-1 +kerning first=193 second=364 amount=-1 +kerning first=79 second=270 amount=-1 +kerning first=108 second=367 amount=-1 +kerning first=330 second=202 amount=-1 +kerning first=249 second=8220 amount=-1 +kerning first=248 second=345 amount=-1 +kerning first=88 second=364 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=207 second=66 amount=-1 +kerning first=327 second=257 amount=-1 +kerning first=220 second=270 amount=-1 +kerning first=217 second=325 amount=-1 +kerning first=45 second=121 amount=-1 +kerning first=366 second=202 amount=-1 +kerning first=326 second=8217 amount=-2 +kerning first=197 second=121 amount=-1 +kerning first=192 second=108 amount=-1 +kerning first=315 second=364 amount=-1 +kerning first=272 second=82 amount=-1 +kerning first=364 second=351 amount=-1 +kerning first=1043 second=1073 amount=-1 +kerning first=1051 second=1047 amount=-1 +kerning first=89 second=193 amount=-1 +kerning first=279 second=277 amount=-1 +kerning first=207 second=364 amount=-1 +kerning first=65 second=104 amount=-1 +kerning first=323 second=338 amount=-1 +kerning first=207 second=277 amount=-1 +kerning first=254 second=8217 amount=-2 +kerning first=287 second=251 amount=-1 +kerning first=8222 second=212 amount=-1 +kerning first=66 second=364 amount=-1 +kerning first=1038 second=1060 amount=-1 +kerning first=370 second=273 amount=-1 +kerning first=201 second=355 amount=-1 +kerning first=76 second=86 amount=-1 +kerning first=374 second=193 amount=-1 +kerning first=79 second=351 amount=-1 +kerning first=298 second=273 amount=-1 +kerning first=199 second=8221 amount=-1 +kerning first=262 second=273 amount=-1 +kerning first=74 second=338 amount=-1 +kerning first=72 second=69 amount=-1 +kerning first=271 second=8221 amount=-1 +kerning first=1055 second=1064 amount=-1 +kerning first=282 second=334 amount=-1 +kerning first=307 second=8221 amount=-1 +kerning first=327 second=78 amount=-1 +kerning first=220 second=351 amount=-1 +kerning first=1048 second=1045 amount=-1 +kerning first=85 second=273 amount=-1 +kerning first=379 second=8221 amount=-1 +kerning first=200 second=82 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=219 second=78 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=219 second=171 amount=-2 +kerning first=251 second=8249 amount=-1 +kerning first=255 second=171 amount=-1 +kerning first=67 second=229 amount=-1 +kerning first=255 second=98 amount=-1 +kerning first=311 second=314 amount=-1 +kerning first=263 second=242 amount=-1 +kerning first=269 second=108 amount=-1 +kerning first=214 second=8220 amount=-2 +kerning first=70 second=104 amount=-1 +kerning first=1071 second=1064 amount=-1 +kerning first=363 second=171 amount=-1 +kerning first=226 second=333 amount=-1 +kerning first=286 second=282 amount=-1 +kerning first=85 second=333 amount=-1 +kerning first=78 second=78 amount=-1 +kerning first=214 second=282 amount=-1 +kerning first=302 second=100 amount=-1 +kerning first=221 second=233 amount=-1 +kerning first=266 second=100 amount=-1 +kerning first=80 second=233 amount=-1 +kerning first=77 second=8217 amount=-1 +kerning first=374 second=100 amount=-1 +kerning first=70 second=357 amount=-1 +kerning first=73 second=282 amount=-1 +kerning first=1071 second=1039 amount=-1 +kerning first=283 second=104 amount=-1 +kerning first=365 second=233 amount=-1 +kerning first=78 second=171 amount=-1 +kerning first=264 second=325 amount=-1 +kerning first=257 second=233 amount=-1 +kerning first=315 second=87 amount=-1 +kerning first=282 second=298 amount=-1 +kerning first=217 second=330 amount=-1 +kerning first=194 second=220 amount=-1 +kerning first=264 second=103 amount=-1 +kerning first=302 second=220 amount=-1 +kerning first=68 second=356 amount=-1 +kerning first=266 second=220 amount=-1 +kerning first=298 second=246 amount=-1 +kerning first=311 second=103 amount=-1 +kerning first=262 second=246 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=79 second=362 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=226 second=246 amount=-1 +kerning first=230 second=100 amount=-1 +kerning first=218 second=109 amount=-1 +kerning first=1051 second=1074 amount=-1 +kerning first=99 second=289 amount=-1 +kerning first=85 second=246 amount=-1 +kerning first=98 second=103 amount=-1 +kerning first=233 second=365 amount=-1 +kerning first=244 second=8218 amount=-1 +kerning first=269 second=224 amount=-1 +kerning first=269 second=365 amount=-1 +kerning first=298 second=333 amount=-1 +kerning first=362 second=109 amount=-1 +kerning first=187 second=193 amount=-1 +kerning first=334 second=203 amount=-1 +kerning first=1070 second=1113 amount=-1 +kerning first=197 second=365 amount=-1 +kerning first=240 second=289 amount=-1 +kerning first=338 second=220 amount=-1 +kerning first=1069 second=1024 amount=-1 +kerning first=1056 second=1046 amount=-1 +kerning first=352 second=8218 amount=-1 +kerning first=224 second=281 amount=-1 +kerning first=368 second=211 amount=-1 +kerning first=275 second=347 amount=-1 +kerning first=122 second=8220 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=203 second=371 amount=-1 +kerning first=86 second=8220 amount=-1 +kerning first=296 second=281 amount=-1 +kerning first=268 second=315 amount=-1 +kerning first=242 second=120 amount=-1 +kerning first=196 second=255 amount=-1 +kerning first=304 second=315 amount=-1 +kerning first=368 second=281 amount=-1 +kerning first=302 second=357 amount=-1 +kerning first=8218 second=216 amount=-1 +kerning first=77 second=109 amount=-1 +kerning first=103 second=8218 amount=-1 +kerning first=263 second=8220 amount=-2 +kerning first=296 second=211 amount=-1 +kerning first=67 second=8218 amount=-1 +kerning first=1040 second=1095 amount=-1 +kerning first=368 second=338 amount=-1 +kerning first=335 second=8220 amount=-2 +kerning first=67 second=116 amount=-1 +kerning first=367 second=339 amount=-1 +kerning first=272 second=202 amount=-1 +kerning first=211 second=77 amount=-1 +kerning first=333 second=120 amount=-1 +kerning first=364 second=264 amount=-1 +kerning first=325 second=100 amount=-1 +kerning first=1039 second=1083 amount=-1 +kerning first=259 second=339 amount=-1 +kerning first=233 second=111 amount=-1 +kerning first=1042 second=1088 amount=-1 +kerning first=69 second=298 amount=-1 +kerning first=317 second=356 amount=-1 +kerning first=210 second=298 amount=-1 +kerning first=220 second=264 amount=-1 +kerning first=280 second=219 amount=-1 +kerning first=108 second=232 amount=-1 +kerning first=369 second=8249 amount=-1 +kerning first=210 second=368 amount=-1 +kerning first=1071 second=1060 amount=-1 +kerning first=1050 second=1105 amount=-1 +kerning first=112 second=8250 amount=-1 +kerning first=203 second=76 amount=-1 +kerning first=67 second=219 amount=-1 +kerning first=334 second=89 amount=-1 +kerning first=101 second=335 amount=-1 +kerning first=217 second=357 amount=-1 +kerning first=325 second=357 amount=-1 +kerning first=249 second=232 amount=-1 +kerning first=206 second=335 amount=-1 +kerning first=69 second=368 amount=-1 +kerning first=289 second=357 amount=-1 +kerning first=327 second=241 amount=-1 +kerning first=354 second=271 amount=-1 +kerning first=1064 second=1067 amount=-1 +kerning first=1042 second=1044 amount=-1 +kerning first=291 second=241 amount=-1 +kerning first=1052 second=1086 amount=-1 +kerning first=8217 second=242 amount=-1 +kerning first=317 second=85 amount=-1 +kerning first=84 second=8249 amount=-1 +kerning first=207 second=234 amount=-1 +kerning first=45 second=262 amount=-1 +kerning first=120 second=8249 amount=-1 +kerning first=282 second=368 amount=-1 +kerning first=338 second=344 amount=-1 +kerning first=365 second=8249 amount=-1 +kerning first=302 second=344 amount=-1 +kerning first=209 second=85 amount=-1 +kerning first=225 second=8249 amount=-1 +kerning first=261 second=8249 amount=-1 +kerning first=1059 second=1075 amount=-1 +kerning first=313 second=366 amount=-1 +kerning first=78 second=378 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=323 second=67 amount=-1 +kerning first=263 second=275 amount=-1 +kerning first=227 second=275 amount=-1 +kerning first=280 second=298 amount=-1 +kerning first=219 second=241 amount=-1 +kerning first=219 second=345 amount=-1 +kerning first=205 second=366 amount=-1 +kerning first=86 second=275 amount=-1 +kerning first=1027 second=1081 amount=-1 +kerning first=78 second=241 amount=-1 +kerning first=187 second=213 amount=-1 +kerning first=74 second=67 amount=-1 +kerning first=362 second=229 amount=-1 +kerning first=210 second=195 amount=-1 +kerning first=288 second=280 amount=-1 +kerning first=345 second=225 amount=-1 +kerning first=72 second=73 amount=-1 +kerning first=1047 second=1084 amount=-1 +kerning first=316 second=267 amount=-1 +kerning first=71 second=46 amount=-1 +kerning first=220 second=80 amount=-1 +kerning first=221 second=363 amount=-1 +kerning first=1046 second=1077 amount=-1 +kerning first=272 second=353 amount=-1 +kerning first=72 second=216 amount=-1 +kerning first=279 second=250 amount=-1 +kerning first=107 second=46 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=287 second=311 amount=-1 +kerning first=284 second=317 amount=-1 +kerning first=70 second=375 amount=-1 +kerning first=280 second=116 amount=-1 +kerning first=204 second=213 amount=-1 +kerning first=199 second=70 amount=-1 +kerning first=262 second=111 amount=-1 +kerning first=1042 second=1071 amount=-1 +kerning first=286 second=201 amount=-1 +kerning first=87 second=244 amount=-1 +kerning first=1089 second=1093 amount=-1 +kerning first=314 second=171 amount=-1 +kerning first=72 second=259 amount=-1 +kerning first=214 second=201 amount=-1 +kerning first=1055 second=1062 amount=-1 +kerning first=271 second=113 amount=-1 +kerning first=228 second=244 amount=-1 +kerning first=307 second=113 amount=-1 +kerning first=333 second=8222 amount=-1 +kerning first=220 second=378 amount=-1 +kerning first=264 second=244 amount=-1 +kerning first=199 second=113 amount=-1 +kerning first=66 second=207 amount=-1 +kerning first=235 second=113 amount=-1 +kerning first=8218 second=249 amount=-1 +kerning first=73 second=201 amount=-1 +kerning first=8250 second=362 amount=-1 +kerning first=270 second=204 amount=-1 +kerning first=364 second=378 amount=-1 +kerning first=120 second=8222 amount=-1 +kerning first=1034 second=1063 amount=-2 +kerning first=304 second=345 amount=-1 +kerning first=198 second=204 amount=-1 +kerning first=84 second=8222 amount=-1 +kerning first=207 second=207 amount=-1 +kerning first=362 second=256 amount=-1 +kerning first=201 second=268 amount=-1 +kerning first=310 second=210 amount=-1 +kerning first=258 second=262 amount=-1 +kerning first=366 second=262 amount=-1 +kerning first=1064 second=1050 amount=-1 +kerning first=330 second=262 amount=-1 +kerning first=274 second=210 amount=-1 +kerning first=218 second=256 amount=-1 +kerning first=1036 second=1079 amount=-1 +kerning first=83 second=203 amount=-1 +kerning first=202 second=210 amount=-1 +kerning first=1062 second=1096 amount=-1 +kerning first=45 second=332 amount=-1 +kerning first=314 second=335 amount=-1 +kerning first=330 second=332 amount=-1 +kerning first=8222 second=255 amount=-1 +kerning first=205 second=122 amount=-1 +kerning first=330 second=325 amount=-1 +kerning first=219 second=198 amount=-1 +kerning first=8250 second=118 amount=-1 +kerning first=258 second=332 amount=-1 +kerning first=100 second=122 amount=-1 +kerning first=302 second=73 amount=-1 +kerning first=266 second=73 amount=-1 +kerning first=1048 second=1053 amount=-1 +kerning first=352 second=219 amount=-1 +kerning first=338 second=73 amount=-1 +kerning first=366 second=332 amount=-1 +kerning first=83 second=75 amount=-1 +kerning first=193 second=213 amount=-1 +kerning first=89 second=196 amount=-1 +kerning first=206 second=200 amount=-1 +kerning first=327 second=279 amount=-1 +kerning first=221 second=336 amount=-1 +kerning first=88 second=213 amount=-1 +kerning first=201 second=187 amount=-1 +kerning first=363 second=279 amount=-1 +kerning first=72 second=362 amount=-1 +kerning first=213 second=362 amount=-1 +kerning first=258 second=8250 amount=-1 +kerning first=288 second=323 amount=-1 +kerning first=222 second=8250 amount=-1 +kerning first=325 second=344 amount=-1 +kerning first=1039 second=1045 amount=-1 +kerning first=275 second=244 amount=-1 +kerning first=219 second=371 amount=-1 +kerning first=368 second=75 amount=-1 +kerning first=73 second=266 amount=-1 +kerning first=81 second=8250 amount=-1 +kerning first=1031 second=1071 amount=-1 +kerning first=296 second=75 amount=-1 +kerning first=207 second=71 amount=-1 +kerning first=209 second=288 amount=-1 +kerning first=192 second=314 amount=-1 +kerning first=291 second=279 amount=-1 +kerning first=350 second=200 amount=-1 +kerning first=1036 second=1119 amount=-1 +kerning first=278 second=200 amount=-1 +kerning first=205 second=79 amount=-1 +kerning first=218 second=66 amount=-1 +kerning first=1069 second=1036 amount=-1 +kerning first=264 second=314 amount=-1 +kerning first=220 second=248 amount=-1 +kerning first=1033 second=1036 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=228 second=314 amount=-1 +kerning first=74 second=110 amount=-1 +kerning first=77 second=66 amount=-1 +kerning first=8222 second=228 amount=-1 +kerning first=310 second=367 amount=-1 +kerning first=274 second=367 amount=-1 +kerning first=344 second=218 amount=-1 +kerning first=1055 second=1030 amount=-1 +kerning first=287 second=110 amount=-1 +kerning first=104 second=242 amount=-1 +kerning first=346 second=367 amount=-1 +kerning first=66 second=380 amount=-1 +kerning first=323 second=110 amount=-1 +kerning first=284 second=274 amount=-1 +kerning first=212 second=76 amount=-1 +kerning first=202 second=367 amount=-1 +kerning first=243 second=380 amount=-1 +kerning first=362 second=66 amount=-1 +kerning first=67 second=257 amount=-1 +kerning first=207 second=380 amount=-1 +kerning first=212 second=274 amount=-1 +kerning first=335 second=318 amount=-1 +kerning first=86 second=101 amount=-1 +kerning first=290 second=66 amount=-1 +kerning first=1056 second=1049 amount=-1 +kerning first=279 second=380 amount=-1 +kerning first=201 second=252 amount=-1 +kerning first=327 second=344 amount=-1 +kerning first=1055 second=1042 amount=-1 +kerning first=8218 second=81 amount=-1 +kerning first=263 second=101 amount=-1 +kerning first=250 second=8249 amount=-1 +kerning first=196 second=114 amount=-1 +kerning first=227 second=101 amount=-1 +kerning first=286 second=8249 amount=-1 +kerning first=1049 second=1098 amount=-1 +kerning first=67 second=284 amount=-1 +kerning first=85 second=315 amount=-1 +kerning first=316 second=283 amount=-1 +kerning first=259 second=231 amount=-1 +kerning first=1036 second=1091 amount=-1 +kerning first=118 second=106 amount=-1 +kerning first=112 second=291 amount=-1 +kerning first=78 second=214 amount=-1 +kerning first=203 second=217 amount=-1 +kerning first=1078 second=1077 amount=-1 +kerning first=223 second=106 amount=-1 +kerning first=198 second=296 amount=-1 +kerning first=327 second=214 amount=-1 +kerning first=219 second=344 amount=-1 +kerning first=200 second=310 amount=-1 +kerning first=219 second=214 amount=-1 +kerning first=109 second=8249 amount=-1 +kerning first=366 second=330 amount=-1 +kerning first=339 second=243 amount=-1 +kerning first=289 second=249 amount=-1 +kerning first=233 second=235 amount=-1 +kerning first=363 second=8221 amount=-1 +kerning first=269 second=235 amount=-1 +kerning first=86 second=345 amount=-1 +kerning first=305 second=235 amount=-1 +kerning first=97 second=275 amount=-1 +kerning first=227 second=345 amount=-1 +kerning first=228 second=287 amount=-1 +kerning first=217 second=249 amount=-1 +kerning first=263 second=345 amount=-1 +kerning first=335 second=345 amount=-1 +kerning first=321 second=362 amount=-1 +kerning first=8217 second=103 amount=-1 +kerning first=1033 second=1063 amount=-2 +kerning first=1091 second=1080 amount=-1 +kerning first=1055 second=1080 amount=-1 +kerning first=280 second=284 amount=-1 +kerning first=80 second=66 amount=-1 +kerning first=82 second=219 amount=-1 +kerning first=209 second=226 amount=-1 +kerning first=267 second=243 amount=-1 +kerning first=1069 second=1063 amount=-1 +kerning first=80 second=336 amount=-1 +kerning first=84 second=353 amount=-1 +kerning first=199 second=97 amount=-1 +kerning first=8220 second=198 amount=-2 +kerning first=214 second=304 amount=-1 +kerning first=1058 second=1079 amount=-1 +kerning first=218 second=337 amount=-1 +kerning first=204 second=278 amount=-1 +kerning first=330 second=370 amount=-1 +kerning first=104 second=291 amount=-1 +kerning first=209 second=199 amount=-1 +kerning first=366 second=370 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=86 second=74 amount=-1 +kerning first=77 second=337 amount=-1 +kerning first=263 second=107 amount=-1 +kerning first=73 second=304 amount=-1 +kerning first=78 second=100 amount=-1 +kerning first=1034 second=1043 amount=-1 +kerning first=364 second=313 amount=-1 +kerning first=211 second=344 amount=-1 +kerning first=275 second=365 amount=-1 +kerning first=257 second=187 amount=-1 +kerning first=234 second=269 amount=-1 +kerning first=79 second=221 amount=-1 +kerning first=305 second=8218 amount=-1 +kerning first=362 second=337 amount=-1 +kerning first=1066 second=1037 amount=-1 +kerning first=280 second=278 amount=-1 +kerning first=269 second=8218 amount=-1 +kerning first=287 second=283 amount=-1 +kerning first=326 second=337 amount=-1 +kerning first=1043 second=1116 amount=-1 +kerning first=233 second=8218 amount=-1 +kerning first=195 second=286 amount=-1 +kerning first=207 second=109 amount=-1 +kerning first=274 second=8220 amount=-1 +kerning first=204 second=72 amount=-1 +kerning first=79 second=313 amount=-1 +kerning first=346 second=8220 amount=-1 +kerning first=262 second=203 amount=-1 +kerning first=70 second=267 amount=-1 +kerning first=364 second=218 amount=-1 +kerning first=310 second=8220 amount=-1 +kerning first=298 second=203 amount=-1 +kerning first=356 second=111 amount=-1 +kerning first=382 second=8220 amount=-1 +kerning first=1060 second=1055 amount=-1 +kerning first=85 second=203 amount=-1 +kerning first=328 second=8220 amount=-2 +kerning first=283 second=267 amount=-1 +kerning first=81 second=370 amount=-1 +kerning first=207 second=315 amount=-1 +kerning first=230 second=263 amount=-1 +kerning first=1055 second=1107 amount=-1 +kerning first=266 second=263 amount=-1 +kerning first=8217 second=101 amount=-1 +kerning first=302 second=263 amount=-1 +kerning first=45 second=370 amount=-1 +kerning first=1104 second=1094 amount=-1 +kerning first=106 second=267 amount=-1 +kerning first=346 second=371 amount=-1 +kerning first=196 second=212 amount=-1 +kerning first=97 second=8220 amount=-2 +kerning first=268 second=114 amount=-1 +kerning first=374 second=263 amount=-1 +kerning first=232 second=114 amount=-1 +kerning first=1052 second=1097 amount=-1 +kerning first=268 second=212 amount=-1 +kerning first=202 second=8220 amount=-1 +kerning first=8218 second=108 amount=-1 +kerning first=304 second=212 amount=-1 +kerning first=1044 second=1085 amount=-1 +kerning first=254 second=46 amount=-1 +kerning first=202 second=69 amount=-1 +kerning first=362 second=364 amount=-1 +kerning first=274 second=69 amount=-1 +kerning first=192 second=81 amount=-1 +kerning first=290 second=364 amount=-1 +kerning first=87 second=81 amount=-1 +kerning first=99 second=251 amount=-1 +kerning first=206 second=227 amount=-1 +kerning first=240 second=44 amount=-1 +kerning first=218 second=364 amount=-1 +kerning first=102 second=44 amount=-1 +kerning first=1030 second=1064 amount=-1 +kerning first=291 second=103 amount=-1 +kerning first=1028 second=1061 amount=-1 +kerning first=352 second=78 amount=-1 +kerning first=200 second=218 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=1066 second=1064 amount=-1 +kerning first=366 second=302 amount=-1 +kerning first=74 second=273 amount=-1 +kerning first=279 second=44 amount=-1 +kerning first=198 second=334 amount=-1 +kerning first=374 second=351 amount=-1 +kerning first=364 second=248 amount=-1 +kerning first=243 second=44 amount=-1 +kerning first=8217 second=345 amount=-1 +kerning first=280 second=78 amount=-1 +kerning first=197 second=370 amount=-1 +kerning first=67 second=78 amount=-1 +kerning first=330 second=99 amount=-1 +kerning first=252 second=242 amount=-1 +kerning first=370 second=230 amount=-1 +kerning first=366 second=99 amount=-1 +kerning first=82 second=199 amount=-1 +kerning first=262 second=230 amount=-1 +kerning first=203 second=282 amount=-1 +kerning first=1071 second=1092 amount=-1 +kerning first=264 second=352 amount=-1 +kerning first=86 second=367 amount=-1 +kerning first=324 second=242 amount=-1 +kerning first=298 second=230 amount=-1 +kerning first=85 second=230 amount=-1 +kerning first=196 second=87 amount=-1 +kerning first=212 second=84 amount=-1 +kerning first=368 second=346 amount=-1 +kerning first=353 second=291 amount=-1 +kerning first=296 second=346 amount=-1 +kerning first=1034 second=1031 amount=-1 +kerning first=325 second=44 amount=-1 +kerning first=281 second=291 amount=-1 +kerning first=105 second=233 amount=-1 +kerning first=245 second=291 amount=-1 +kerning first=171 second=217 amount=-1 +kerning first=364 second=346 amount=-1 +kerning first=8217 second=214 amount=-1 +kerning first=1049 second=1117 amount=-1 +kerning first=67 second=81 amount=-1 +kerning first=1058 second=1107 amount=-1 +kerning first=73 second=230 amount=-1 +kerning first=220 second=346 amount=-1 +kerning first=204 second=224 amount=-1 +kerning first=277 second=337 amount=-1 +kerning first=117 second=291 amount=-1 +kerning first=241 second=337 amount=-1 +kerning first=99 second=224 amount=-1 +kerning first=228 second=245 amount=-1 +kerning first=205 second=337 amount=-1 +kerning first=199 second=288 amount=-1 +kerning first=195 second=84 amount=-1 +kerning first=1043 second=1098 amount=-1 +kerning first=362 second=334 amount=-1 +kerning first=86 second=227 amount=-1 +kerning first=280 second=81 amount=-1 +kerning first=218 second=187 amount=-2 +kerning first=220 second=99 amount=-1 +kerning first=254 second=187 amount=-1 +kerning first=1078 second=1119 amount=-1 +kerning first=332 second=8221 amount=-2 +kerning first=103 second=328 amount=-1 +kerning first=275 second=245 amount=-1 +kerning first=1056 second=1095 amount=-1 +kerning first=362 second=187 amount=-2 +kerning first=8217 second=281 amount=-1 +kerning first=1057 second=1061 amount=-1 +kerning first=187 second=270 amount=-1 +kerning first=255 second=8218 amount=-1 +kerning first=290 second=187 amount=-1 +kerning first=266 second=352 amount=-1 +kerning first=302 second=352 amount=-1 +kerning first=328 second=99 amount=-1 +kerning first=366 second=241 amount=-1 +kerning first=220 second=279 amount=-1 +kerning first=194 second=105 amount=-1 +kerning first=187 second=198 amount=-1 +kerning first=328 second=279 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=77 second=187 amount=-1 +kerning first=1071 second=1104 amount=-1 +kerning first=364 second=279 amount=-1 +kerning first=270 second=75 amount=-1 +kerning first=212 second=278 amount=-1 +kerning first=327 second=66 amount=-1 +kerning first=323 second=209 amount=-1 +kerning first=101 second=316 amount=-1 +kerning first=196 second=364 amount=-1 +kerning first=67 second=261 amount=-1 +kerning first=65 second=316 amount=-1 +kerning first=1077 second=1096 amount=-1 +kerning first=195 second=264 amount=-1 +kerning first=219 second=66 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=353 second=187 amount=-1 +kerning first=235 second=108 amount=-1 +kerning first=350 second=69 amount=-1 +kerning first=207 second=202 amount=-1 +kerning first=242 second=316 amount=-1 +kerning first=1059 second=1073 amount=-1 +kerning first=330 second=275 amount=-1 +kerning first=291 second=367 amount=-1 +kerning first=78 second=66 amount=-1 +kerning first=74 second=209 amount=-1 +kerning first=1059 second=1086 amount=-1 +kerning first=264 second=206 amount=-1 +kerning first=199 second=108 amount=-1 +kerning first=314 second=316 amount=-1 +kerning first=206 second=69 amount=-1 +kerning first=266 second=205 amount=-1 +kerning first=325 second=368 amount=-1 +kerning first=278 second=69 amount=-1 +kerning first=345 second=8218 amount=-1 +kerning first=354 second=273 amount=-1 +kerning first=304 second=364 amount=-1 +kerning first=213 second=197 amount=-1 +kerning first=302 second=205 amount=-1 +kerning first=217 second=368 amount=-1 +kerning first=268 second=364 amount=-1 +kerning first=87 second=193 amount=-1 +kerning first=338 second=205 amount=-1 +kerning first=283 second=252 amount=-1 +kerning first=222 second=44 amount=-1 +kerning first=325 second=355 amount=-1 +kerning first=119 second=316 amount=-1 +kerning first=71 second=218 amount=-1 +kerning first=289 second=355 amount=-1 +kerning first=374 second=249 amount=-1 +kerning first=231 second=8249 amount=-1 +kerning first=370 second=248 amount=-1 +kerning first=366 second=44 amount=-2 +kerning first=267 second=8249 amount=-1 +kerning first=203 second=325 amount=-1 +kerning first=375 second=8249 amount=-1 +kerning first=86 second=214 amount=-1 +kerning first=219 second=120 amount=-1 +kerning first=232 second=117 amount=-1 +kerning first=277 second=279 amount=-1 +kerning first=298 second=248 amount=-1 +kerning first=196 second=117 amount=-1 +kerning first=1044 second=1077 amount=-1 +kerning first=277 second=314 amount=-1 +kerning first=262 second=248 amount=-1 +kerning first=1091 second=1116 amount=-1 +kerning first=235 second=122 amount=-1 +kerning first=207 second=282 amount=-1 +kerning first=80 second=78 amount=-1 +kerning first=304 second=113 amount=-1 +kerning first=284 second=218 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=8217 second=361 amount=-1 +kerning first=66 second=282 amount=-1 +kerning first=212 second=218 amount=-1 +kerning first=85 second=248 amount=-1 +kerning first=78 second=220 amount=-1 +kerning first=187 second=77 amount=-1 +kerning first=362 second=100 amount=-1 +kerning first=220 second=333 amount=-1 +kerning first=327 second=362 amount=-1 +kerning first=67 second=382 amount=-1 +kerning first=103 second=382 amount=-1 +kerning first=356 second=339 amount=-1 +kerning first=328 second=333 amount=-1 +kerning first=363 second=246 amount=-1 +kerning first=205 second=350 amount=-1 +kerning first=110 second=289 amount=-1 +kerning first=364 second=333 amount=-1 +kerning first=327 second=246 amount=-1 +kerning first=1039 second=1048 amount=-1 +kerning first=244 second=382 amount=-1 +kerning first=251 second=289 amount=-1 +kerning first=277 second=103 amount=-1 +kerning first=241 second=103 amount=-1 +kerning first=1042 second=1065 amount=-1 +kerning first=205 second=103 amount=-1 +kerning first=219 second=246 amount=-1 +kerning first=287 second=289 amount=-1 +kerning first=231 second=171 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=267 second=171 amount=-1 +kerning first=334 second=194 amount=-1 +kerning first=78 second=246 amount=-1 +kerning first=219 second=220 amount=-1 +kerning first=218 second=100 amount=-1 +kerning first=1047 second=1068 amount=-1 +kerning first=370 second=194 amount=-1 +kerning first=327 second=220 amount=-1 +kerning first=375 second=171 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=323 second=109 amount=-1 +kerning first=263 second=307 amount=-1 +kerning first=204 second=211 amount=-1 +kerning first=248 second=120 amount=-1 +kerning first=204 second=304 amount=-1 +kerning first=193 second=85 amount=-1 +kerning first=203 second=338 amount=-1 +kerning first=85 second=97 amount=-1 +kerning first=257 second=245 amount=-1 +kerning first=291 second=120 amount=-1 +kerning first=89 second=115 amount=-1 +kerning first=203 second=200 amount=-1 +kerning first=66 second=202 amount=-1 +kerning first=193 second=332 amount=-1 +kerning first=327 second=313 amount=-1 +kerning first=1069 second=1025 amount=-1 +kerning first=1033 second=1025 amount=-1 +kerning first=88 second=332 amount=-1 +kerning first=207 second=218 amount=-1 +kerning first=8217 second=335 amount=-1 +kerning first=266 second=298 amount=-1 +kerning first=1068 second=1059 amount=-2 +kerning first=1078 second=1117 amount=-1 +kerning first=272 second=347 amount=-1 +kerning first=338 second=298 amount=-1 +kerning first=264 second=8250 amount=-1 +kerning first=74 second=109 amount=-1 +kerning first=219 second=313 amount=-1 +kerning first=117 second=45 amount=-1 +kerning first=302 second=298 amount=-1 +kerning first=1038 second=1108 amount=-1 +kerning first=187 second=324 amount=-1 +kerning first=296 second=357 amount=-1 +kerning first=70 second=338 amount=-1 +kerning first=1118 second=1076 amount=-1 +kerning first=229 second=8250 amount=-1 +kerning first=368 second=357 amount=-1 +kerning first=1054 second=1083 amount=-1 +kerning first=282 second=219 amount=-1 +kerning first=330 second=111 amount=-1 +kerning first=193 second=8250 amount=-1 +kerning first=1046 second=1076 amount=-1 +kerning first=275 second=271 amount=-1 +kerning first=78 second=313 amount=-1 +kerning first=310 second=212 amount=-1 +kerning first=214 second=323 amount=-1 +kerning first=210 second=219 amount=-1 +kerning first=214 second=76 amount=-1 +kerning first=88 second=8250 amount=-1 +kerning first=1056 second=1041 amount=-1 +kerning first=1062 second=1118 amount=-1 +kerning first=302 second=268 amount=-1 +kerning first=73 second=323 amount=-1 +kerning first=202 second=212 amount=-1 +kerning first=280 second=315 amount=-1 +kerning first=275 second=8217 amount=-2 +kerning first=69 second=219 amount=-1 +kerning first=73 second=76 amount=-1 +kerning first=286 second=323 amount=-1 +kerning first=65 second=262 amount=-1 +kerning first=347 second=8217 amount=-2 +kerning first=206 second=262 amount=-1 +kerning first=101 second=113 amount=-1 +kerning first=1030 second=1075 amount=-1 +kerning first=98 second=8217 amount=-2 +kerning first=192 second=119 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=278 second=262 amount=-1 +kerning first=356 second=46 amount=-1 +kerning first=352 second=315 amount=-1 +kerning first=203 second=8217 amount=-1 +kerning first=262 second=68 amount=-1 +kerning first=74 second=263 amount=-1 +kerning first=77 second=280 amount=-1 +kerning first=304 second=204 amount=-1 +kerning first=110 second=263 amount=-1 +kerning first=112 second=314 amount=-1 +kerning first=268 second=204 amount=-1 +kerning first=80 second=366 amount=-1 +kerning first=298 second=68 amount=-1 +kerning first=205 second=368 amount=-1 +kerning first=85 second=68 amount=-1 +kerning first=251 second=263 amount=-1 +kerning first=287 second=263 amount=-1 +kerning first=218 second=280 amount=-1 +kerning first=289 second=314 amount=-1 +kerning first=323 second=263 amount=-1 +kerning first=323 second=330 amount=-1 +kerning first=253 second=314 amount=-1 +kerning first=72 second=110 amount=-1 +kerning first=85 second=194 amount=-1 +kerning first=290 second=280 amount=-1 +kerning first=325 second=67 amount=-1 +kerning first=1065 second=1105 amount=-1 +kerning first=8218 second=232 amount=-1 +kerning first=1065 second=1028 amount=-1 +kerning first=350 second=344 amount=-1 +kerning first=1027 second=1084 amount=-1 +kerning first=1066 second=1101 amount=-1 +kerning first=362 second=280 amount=-1 +kerning first=1069 second=1046 amount=-1 +kerning first=1053 second=1024 amount=-1 +kerning first=370 second=68 amount=-1 +kerning first=1033 second=1101 amount=-1 +kerning first=251 second=103 amount=-1 +kerning first=187 second=378 amount=-1 +kerning first=118 second=378 amount=-1 +kerning first=219 second=192 amount=-1 +kerning first=72 second=357 amount=-1 +kerning first=323 second=70 amount=-1 +kerning first=77 second=46 amount=-1 +kerning first=218 second=46 amount=-2 +kerning first=74 second=70 amount=-1 +kerning first=259 second=378 amount=-1 +kerning first=290 second=46 amount=-1 +kerning first=223 second=378 amount=-1 +kerning first=368 second=195 amount=-1 +kerning first=327 second=274 amount=-1 +kerning first=327 second=46 amount=-1 +kerning first=78 second=207 amount=-1 +kerning first=81 second=65 amount=-1 +kerning first=1055 second=1075 amount=-1 +kerning first=87 second=8217 amount=-1 +kerning first=217 second=262 amount=-1 +kerning first=324 second=101 amount=-1 +kerning first=270 second=201 amount=-1 +kerning first=192 second=8217 amount=-2 +kerning first=1062 second=1101 amount=-1 +kerning first=228 second=8217 amount=-2 +kerning first=198 second=201 amount=-1 +kerning first=1050 second=1072 amount=-1 +kerning first=8218 second=121 amount=-1 +kerning first=198 second=216 amount=-1 +kerning first=1050 second=1087 amount=-1 +kerning first=99 second=250 amount=-1 +kerning first=70 second=345 amount=-1 +kerning first=316 second=369 amount=-1 +kerning first=264 second=267 amount=-1 +kerning first=280 second=369 amount=-1 +kerning first=114 second=259 amount=-1 +kerning first=69 second=366 amount=-1 +kerning first=117 second=246 amount=-1 +kerning first=81 second=198 amount=-1 +kerning first=66 second=256 amount=-1 +kerning first=78 second=259 amount=-1 +kerning first=1048 second=1089 amount=-1 +kerning first=80 second=204 amount=-1 +kerning first=234 second=116 amount=-1 +kerning first=45 second=198 amount=-1 +kerning first=118 second=311 amount=-1 +kerning first=121 second=287 amount=-1 +kerning first=1062 second=1105 amount=-1 +kerning first=283 second=345 amount=-1 +kerning first=327 second=259 amount=-1 +kerning first=287 second=122 amount=-1 +kerning first=70 second=212 amount=-1 +kerning first=1038 second=1054 amount=-1 +kerning first=219 second=259 amount=-1 +kerning first=323 second=122 amount=-1 +kerning first=231 second=235 amount=-1 +kerning first=1065 second=1096 amount=-1 +kerning first=219 second=207 amount=-1 +kerning first=221 second=244 amount=-1 +kerning first=226 second=287 amount=-1 +kerning first=282 second=366 amount=-1 +kerning first=264 second=67 amount=-1 +kerning first=73 second=271 amount=-1 +kerning first=195 second=210 amount=-1 +kerning first=198 second=116 amount=-1 +kerning first=210 second=366 amount=-1 +kerning first=192 second=67 amount=-1 +kerning first=268 second=264 amount=-1 +kerning first=204 second=83 amount=-1 +kerning first=196 second=336 amount=-1 +kerning first=204 second=317 amount=-1 +kerning first=87 second=67 amount=-1 +kerning first=337 second=8250 amount=-1 +kerning first=268 second=336 amount=-1 +kerning first=324 second=281 amount=-1 +kerning first=205 second=244 amount=-1 +kerning first=241 second=244 amount=-1 +kerning first=242 second=46 amount=-1 +kerning first=121 second=8220 amount=-2 +kerning first=104 second=171 amount=-1 +kerning first=277 second=244 amount=-1 +kerning first=1056 second=1056 amount=-1 +kerning first=1062 second=1090 amount=-1 +kerning first=70 second=347 amount=-1 +kerning first=75 second=268 amount=-1 +kerning first=84 second=74 amount=-1 +kerning first=262 second=8220 amount=-1 +kerning first=8218 second=119 amount=-1 +kerning first=231 second=277 amount=-1 +kerning first=344 second=213 amount=-1 +kerning first=70 second=380 amount=-1 +kerning first=366 second=198 amount=-1 +kerning first=85 second=235 amount=-1 +kerning first=334 second=356 amount=-1 +kerning first=284 second=77 amount=-1 +kerning first=73 second=269 amount=-1 +kerning first=339 second=277 amount=-1 +kerning first=212 second=77 amount=-1 +kerning first=272 second=296 amount=-1 +kerning first=226 second=235 amount=-1 +kerning first=71 second=77 amount=-1 +kerning first=267 second=277 amount=-1 +kerning first=262 second=235 amount=-1 +kerning first=1065 second=1081 amount=-1 +kerning first=250 second=269 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=1089 second=1078 amount=-1 +kerning first=194 second=79 amount=-1 +kerning first=187 second=296 amount=-1 +kerning first=264 second=286 amount=-1 +kerning first=87 second=65 amount=-1 +kerning first=206 second=82 amount=-1 +kerning first=1047 second=1094 amount=-1 +kerning first=1053 second=1065 amount=-1 +kerning first=356 second=231 amount=-1 +kerning first=118 second=363 amount=-1 +kerning first=278 second=82 amount=-1 +kerning first=374 second=79 amount=-1 +kerning first=219 second=274 amount=-1 +kerning first=187 second=363 amount=-1 +kerning first=87 second=286 amount=-1 +kerning first=304 second=351 amount=-1 +kerning first=268 second=351 amount=-1 +kerning first=73 second=338 amount=-1 +kerning first=192 second=286 amount=-1 +kerning first=232 second=351 amount=-1 +kerning first=1050 second=1085 amount=-1 +kerning first=210 second=77 amount=-1 +kerning first=355 second=347 amount=-1 +kerning first=266 second=79 amount=-1 +kerning first=78 second=274 amount=-1 +kerning first=266 second=337 amount=-1 +kerning first=302 second=79 amount=-1 +kerning first=283 second=347 amount=-1 +kerning first=338 second=79 amount=-1 +kerning first=100 second=244 amount=-1 +kerning first=217 second=260 amount=-1 +kerning first=72 second=290 amount=-1 +kerning first=1064 second=1042 amount=-1 +kerning first=282 second=80 amount=-1 +kerning first=250 second=279 amount=-1 +kerning first=234 second=114 amount=-1 +kerning first=219 second=261 amount=-1 +kerning first=8217 second=227 amount=-1 +kerning first=210 second=80 amount=-1 +kerning first=327 second=205 amount=-1 +kerning first=316 second=367 amount=-1 +kerning first=327 second=261 amount=-1 +kerning first=8218 second=67 amount=-1 +kerning first=338 second=66 amount=-1 +kerning first=280 second=367 amount=-1 +kerning first=73 second=217 amount=-1 +kerning first=352 second=70 amount=-1 +kerning first=302 second=66 amount=-1 +kerning first=72 second=344 amount=-1 +kerning first=266 second=66 amount=-1 +kerning first=198 second=114 amount=-1 +kerning first=214 second=217 amount=-1 +kerning first=77 second=115 amount=-1 +kerning first=103 second=367 amount=-1 +kerning first=78 second=205 amount=-1 +kerning first=286 second=217 amount=-1 +kerning first=66 second=362 amount=-1 +kerning first=344 second=357 amount=-1 +kerning first=274 second=251 amount=-1 +kerning first=207 second=310 amount=-1 +kerning first=202 second=251 amount=-1 +kerning first=374 second=284 amount=-1 +kerning first=73 second=284 amount=-1 +kerning first=69 second=80 amount=-1 +kerning first=66 second=310 amount=-1 +kerning first=362 second=209 amount=-1 +kerning first=310 second=251 amount=-1 +kerning first=205 second=333 amount=-1 +kerning first=346 second=251 amount=-1 +kerning first=219 second=205 amount=-1 +kerning first=275 second=106 amount=-1 +kerning first=298 second=235 amount=-1 +kerning first=119 second=249 amount=-1 +kerning first=366 second=252 amount=-1 +kerning first=100 second=242 amount=-1 +kerning first=202 second=266 amount=-1 +kerning first=370 second=235 amount=-1 +kerning first=310 second=266 amount=-1 +kerning first=274 second=266 amount=-1 +kerning first=98 second=106 amount=-1 +kerning first=241 second=242 amount=-1 +kerning first=277 second=242 amount=-1 +kerning first=117 second=267 amount=-1 +kerning first=272 second=200 amount=-1 +kerning first=205 second=242 amount=-1 +kerning first=83 second=249 amount=-1 +kerning first=232 second=263 amount=-1 +kerning first=200 second=200 amount=-1 +kerning first=115 second=45 amount=-1 +kerning first=45 second=252 amount=-1 +kerning first=305 second=8220 amount=-1 +kerning first=72 second=71 amount=-1 +kerning first=99 second=8222 amount=-1 +kerning first=274 second=71 amount=-1 +kerning first=217 second=226 amount=-1 +kerning first=264 second=101 amount=-1 +kerning first=206 second=97 amount=-1 +kerning first=85 second=242 amount=-1 +kerning first=258 second=252 amount=-1 +kerning first=271 second=275 amount=-1 +kerning first=328 second=45 amount=-1 +kerning first=75 second=214 amount=-1 +kerning first=235 second=275 amount=-1 +kerning first=85 second=233 amount=-1 +kerning first=220 second=45 amount=-2 +kerning first=368 second=249 amount=-1 +kerning first=1049 second=1028 amount=-1 +kerning first=256 second=45 amount=-1 +kerning first=355 second=291 amount=-1 +kerning first=304 second=336 amount=-1 +kerning first=226 second=233 amount=-1 +kerning first=274 second=199 amount=-1 +kerning first=1041 second=1114 amount=-1 +kerning first=262 second=233 amount=-1 +kerning first=310 second=199 amount=-1 +kerning first=283 second=291 amount=-1 +kerning first=201 second=315 amount=-1 +kerning first=220 second=363 amount=-1 +kerning first=171 second=87 amount=-1 +kerning first=262 second=302 amount=-1 +kerning first=80 second=258 amount=-1 +kerning first=105 second=234 amount=-1 +kerning first=298 second=302 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=275 second=99 amount=-1 +kerning first=267 second=223 amount=-1 +kerning first=106 second=291 amount=-1 +kerning first=231 second=223 amount=-1 +kerning first=298 second=233 amount=-1 +kerning first=1105 second=1103 amount=-1 +kerning first=195 second=223 amount=-1 +kerning first=264 second=232 amount=-1 +kerning first=45 second=356 amount=-1 +kerning first=207 second=243 amount=-1 +kerning first=199 second=327 amount=-1 +kerning first=1067 second=1080 amount=-1 +kerning first=228 second=232 amount=-1 +kerning first=1031 second=1080 amount=-1 +kerning first=1041 second=1095 amount=-1 +kerning first=206 second=225 amount=-1 +kerning first=119 second=8221 amount=-2 +kerning first=324 second=337 amount=-1 +kerning first=1033 second=1079 amount=-1 +kerning first=74 second=122 amount=-1 +kerning first=221 second=258 amount=-1 +kerning first=224 second=8221 amount=-2 +kerning first=252 second=337 amount=-1 +kerning first=8217 second=382 amount=-1 +kerning first=260 second=8221 amount=-2 +kerning first=291 second=328 amount=-1 +kerning first=1068 second=1039 amount=-1 +kerning first=220 second=216 amount=-1 +kerning first=231 second=225 amount=-1 +kerning first=314 second=287 amount=-1 +kerning first=8220 second=351 amount=-1 +kerning first=267 second=225 amount=-1 +kerning first=65 second=370 amount=-1 +kerning first=252 second=335 amount=-1 +kerning first=115 second=318 amount=-1 +kerning first=211 second=72 amount=-1 +kerning first=87 second=232 amount=-1 +kerning first=70 second=72 amount=-1 +kerning first=1034 second=1071 amount=-1 +kerning first=324 second=335 amount=-1 +kerning first=291 second=105 amount=-1 +kerning first=1070 second=1071 amount=-1 +kerning first=209 second=8222 amount=-1 +kerning first=1048 second=1096 amount=-1 +kerning first=362 second=46 amount=-2 +kerning first=213 second=344 amount=-1 +kerning first=354 second=234 amount=-1 +kerning first=278 second=370 amount=-1 +kerning first=258 second=98 amount=-1 +kerning first=206 second=370 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=193 second=89 amount=-1 +kerning first=199 second=44 amount=-1 +kerning first=272 second=310 amount=-1 +kerning first=202 second=199 amount=-1 +kerning first=207 second=241 amount=-1 +kerning first=350 second=370 amount=-1 +kerning first=202 second=361 amount=-1 +kerning first=1030 second=1062 amount=-1 +kerning first=369 second=267 amount=-1 +kerning first=1048 second=1086 amount=-1 +kerning first=67 second=243 amount=-1 +kerning first=346 second=361 amount=-1 +kerning first=1047 second=1070 amount=-1 +kerning first=364 second=114 amount=-1 +kerning first=1043 second=1083 amount=-1 +kerning first=217 second=206 amount=-1 +kerning first=328 second=114 amount=-1 +kerning first=274 second=361 amount=-1 +kerning first=8218 second=365 amount=-1 +kerning first=225 second=267 amount=-1 +kerning first=310 second=361 amount=-1 +kerning first=261 second=267 amount=-1 +kerning first=291 second=8250 amount=-1 +kerning first=325 second=206 amount=-1 +kerning first=1044 second=1079 amount=-1 +kerning first=220 second=114 amount=-1 +kerning first=210 second=258 amount=-1 +kerning first=206 second=368 amount=-1 +kerning first=109 second=245 amount=-1 +kerning first=1058 second=1092 amount=-1 +kerning first=218 second=275 amount=-1 +kerning first=328 second=8249 amount=-1 +kerning first=73 second=245 amount=-1 +kerning first=327 second=315 amount=-1 +kerning first=364 second=8249 amount=-2 +kerning first=207 second=351 amount=-1 +kerning first=278 second=368 amount=-1 +kerning first=268 second=115 amount=-1 +kerning first=86 second=212 amount=-1 +kerning first=205 second=352 amount=-1 +kerning first=364 second=331 amount=-1 +kerning first=235 second=316 amount=-1 +kerning first=283 second=254 amount=-1 +kerning first=305 second=111 amount=-1 +kerning first=65 second=368 amount=-1 +kerning first=1081 second=1095 amount=-1 +kerning first=1045 second=1095 amount=-1 +kerning first=226 second=263 amount=-1 +kerning first=220 second=331 amount=-1 +kerning first=262 second=263 amount=-1 +kerning first=218 second=216 amount=-1 +kerning first=298 second=263 amount=-1 +kerning first=201 second=365 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=217 second=370 amount=-1 +kerning first=304 second=115 amount=-1 +kerning first=1030 second=1055 amount=-1 +kerning first=115 second=8249 amount=-1 +kerning first=201 second=68 amount=-1 +kerning first=350 second=368 amount=-1 +kerning first=80 second=310 amount=-1 +kerning first=220 second=8249 amount=-2 +kerning first=200 second=72 amount=-1 +kerning first=218 second=102 amount=-1 +kerning first=1067 second=1067 amount=-1 +kerning first=212 second=203 amount=-1 +kerning first=1060 second=1037 amount=-1 +kerning first=325 second=370 amount=-1 +kerning first=284 second=203 amount=-1 +kerning first=1059 second=1088 amount=-1 +kerning first=84 second=267 amount=-1 +kerning first=362 second=102 amount=-1 +kerning first=112 second=106 amount=-1 +kerning first=85 second=263 amount=-1 +kerning first=1055 second=1101 amount=-1 +kerning first=1027 second=1118 amount=-1 +kerning first=272 second=72 amount=-1 +kerning first=71 second=203 amount=-1 +kerning first=1091 second=1101 amount=-1 +kerning first=253 second=106 amount=-1 +kerning first=1064 second=1024 amount=-1 +kerning first=80 second=327 amount=-1 +kerning first=337 second=8222 amount=-1 +kerning first=1038 second=1028 amount=-1 +kerning first=77 second=282 amount=-1 +kerning first=65 second=84 amount=-1 +kerning first=1071 second=1052 amount=-1 +kerning first=209 second=346 amount=-1 +kerning first=193 second=334 amount=-1 +kerning first=88 second=8222 amount=-1 +kerning first=88 second=334 amount=-1 +kerning first=305 second=291 amount=-1 +kerning first=269 second=291 amount=-1 +kerning first=89 second=337 amount=-1 +kerning first=69 second=288 amount=-1 +kerning first=233 second=291 amount=-1 +kerning first=351 second=187 amount=-1 +kerning first=266 second=350 amount=-1 +kerning first=302 second=350 amount=-1 +kerning first=101 second=318 amount=-1 +kerning first=217 second=78 amount=-1 +kerning first=350 second=73 amount=-1 +kerning first=282 second=288 amount=-1 +kerning first=66 second=187 amount=-1 +kerning first=242 second=318 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=198 second=270 amount=-1 +kerning first=314 second=318 amount=-1 +kerning first=209 second=75 amount=-1 +kerning first=1067 second=1119 amount=-1 +kerning first=243 second=187 amount=-1 +kerning first=8217 second=266 amount=-1 +kerning first=302 second=337 amount=-1 +kerning first=281 second=99 amount=-1 +kerning first=279 second=187 amount=-1 +kerning first=1051 second=1064 amount=-1 +kerning first=1051 second=1027 amount=-1 +kerning first=230 second=337 amount=-1 +kerning first=209 second=99 amount=-1 +kerning first=270 second=270 amount=-1 +kerning first=339 second=279 amount=-1 +kerning first=1048 second=1036 amount=-1 +kerning first=231 second=279 amount=-1 +kerning first=266 second=187 amount=-1 +kerning first=269 second=328 amount=-1 +kerning first=87 second=242 amount=-1 +kerning first=1039 second=1074 amount=-1 +kerning first=218 second=332 amount=-1 +kerning first=116 second=232 amount=-1 +kerning first=352 second=367 amount=-1 +kerning first=323 second=8222 amount=-1 +kerning first=77 second=332 amount=-1 +kerning first=268 second=202 amount=-1 +kerning first=364 second=277 amount=-1 +kerning first=362 second=332 amount=-1 +kerning first=66 second=351 amount=-1 +kerning first=328 second=277 amount=-1 +kerning first=109 second=8217 amount=-2 +kerning first=77 second=8250 amount=-1 +kerning first=304 second=202 amount=-1 +kerning first=278 second=264 amount=-1 +kerning first=279 second=351 amount=-1 +kerning first=274 second=116 amount=-1 +kerning first=206 second=264 amount=-1 +kerning first=283 second=8221 amount=-2 +kerning first=291 second=267 amount=-1 +kerning first=192 second=121 amount=-1 +kerning first=288 second=73 amount=-1 +kerning first=209 second=115 amount=-1 +kerning first=325 second=69 amount=-1 +kerning first=203 second=323 amount=-1 +kerning first=1048 second=1073 amount=-1 +kerning first=65 second=264 amount=-1 +kerning first=219 second=279 amount=-1 +kerning first=119 second=108 amount=-1 +kerning first=1052 second=1030 amount=-1 +kerning first=214 second=8217 amount=-2 +kerning first=264 second=338 amount=-1 +kerning first=220 second=277 amount=-1 +kerning first=250 second=8217 amount=-1 +kerning first=1060 second=1050 amount=-1 +kerning first=171 second=350 amount=-1 +kerning first=1052 second=1060 amount=-1 +kerning first=286 second=8217 amount=-1 +kerning first=192 second=338 amount=-1 +kerning first=194 second=356 amount=-1 +kerning first=310 second=307 amount=-1 +kerning first=1071 second=1076 amount=-1 +kerning first=217 second=69 amount=-1 +kerning first=80 second=364 amount=-1 +kerning first=8217 second=212 amount=-1 +kerning first=255 second=8249 amount=-1 +kerning first=8217 second=347 amount=-1 +kerning first=330 second=113 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=73 second=325 amount=-1 +kerning first=366 second=113 amount=-1 +kerning first=325 second=286 amount=-1 +kerning first=221 second=273 amount=-1 +kerning first=116 second=242 amount=-1 +kerning first=101 second=355 amount=-1 +kerning first=1067 second=1025 amount=-1 +kerning first=65 second=171 amount=-1 +kerning first=65 second=355 amount=-1 +kerning first=286 second=325 amount=-1 +kerning first=80 second=273 amount=-1 +kerning first=304 second=78 amount=-1 +kerning first=76 second=370 amount=-1 +kerning first=217 second=193 amount=-1 +kerning first=1031 second=1039 amount=-1 +kerning first=217 second=286 amount=-1 +kerning first=101 second=314 amount=-1 +kerning first=1066 second=1063 amount=-2 +kerning first=1067 second=1039 amount=-1 +kerning first=65 second=314 amount=-1 +kerning first=298 second=317 amount=-1 +kerning first=1055 second=1047 amount=-1 +kerning first=334 second=317 amount=-1 +kerning first=1034 second=1056 amount=-1 +kerning first=314 second=314 amount=-1 +kerning first=1027 second=1082 amount=-1 +kerning first=370 second=317 amount=-1 +kerning first=268 second=78 amount=-1 +kerning first=1070 second=1056 amount=-1 +kerning first=217 second=81 amount=-1 +kerning first=362 second=282 amount=-1 +kerning first=242 second=314 amount=-1 +kerning first=368 second=8221 amount=-1 +kerning first=290 second=282 amount=-1 +kerning first=171 second=364 amount=-1 +kerning first=1039 second=1119 amount=-1 +kerning first=278 second=355 amount=-1 +kerning first=221 second=117 amount=-1 +kerning first=218 second=282 amount=-1 +kerning first=112 second=316 amount=-1 +kerning first=270 second=77 amount=-1 +kerning first=279 second=100 amount=-1 +kerning first=198 second=77 amount=-1 +kerning first=121 second=289 amount=-1 +kerning first=367 second=234 amount=-1 +kerning first=1039 second=1100 amount=-1 +kerning first=226 second=289 amount=-1 +kerning first=286 second=76 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=263 second=305 amount=-1 +kerning first=205 second=101 amount=-1 +kerning first=278 second=171 amount=-1 +kerning first=280 second=220 amount=-1 +kerning first=374 second=246 amount=-1 +kerning first=277 second=101 amount=-1 +kerning first=350 second=171 amount=-1 +kerning first=352 second=220 amount=-1 +kerning first=330 second=330 amount=-1 +kerning first=241 second=101 amount=-1 +kerning first=302 second=246 amount=-1 +kerning first=324 second=103 amount=-1 +kerning first=311 second=8217 amount=-1 +kerning first=266 second=246 amount=-1 +kerning first=231 second=333 amount=-1 +kerning first=291 second=246 amount=-1 +kerning first=230 second=246 amount=-1 +kerning first=67 second=220 amount=-1 +kerning first=267 second=333 amount=-1 +kerning first=1067 second=1065 amount=-1 +kerning first=207 second=100 amount=-1 +kerning first=1104 second=1096 amount=-1 +kerning first=284 second=325 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=87 second=338 amount=-1 +kerning first=88 second=211 amount=-1 +kerning first=78 second=315 amount=-1 +kerning first=230 second=8218 amount=-1 +kerning first=266 second=120 amount=-1 +kerning first=302 second=296 amount=-1 +kerning first=1046 second=1074 amount=-1 +kerning first=266 second=296 amount=-1 +kerning first=219 second=315 amount=-1 +kerning first=374 second=120 amount=-1 +kerning first=97 second=281 amount=-1 +kerning first=374 second=8218 amount=-2 +kerning first=352 second=313 amount=-1 +kerning first=338 second=8218 amount=-1 +kerning first=1038 second=1084 amount=-1 +kerning first=290 second=207 amount=-1 +kerning first=110 second=287 amount=-1 +kerning first=262 second=225 amount=-1 +kerning first=205 second=298 amount=-1 +kerning first=199 second=290 amount=-1 +kerning first=8250 second=221 amount=-2 +kerning first=253 second=114 amount=-1 +kerning first=362 second=8250 amount=-2 +kerning first=269 second=382 amount=-1 +kerning first=89 second=8218 amount=-2 +kerning first=287 second=287 amount=-1 +kerning first=89 second=120 amount=-1 +kerning first=290 second=8250 amount=-1 +kerning first=262 second=8250 amount=-1 +kerning first=1076 second=1117 amount=-1 +kerning first=213 second=86 amount=-1 +kerning first=67 second=313 amount=-1 +kerning first=254 second=8250 amount=-1 +kerning first=352 second=204 amount=-1 +kerning first=218 second=8250 amount=-2 +kerning first=221 second=234 amount=-1 +kerning first=298 second=339 amount=-1 +kerning first=262 second=339 amount=-1 +kerning first=74 second=302 amount=-1 +kerning first=370 second=339 amount=-1 +kerning first=262 second=107 amount=-1 +kerning first=257 second=234 amount=-1 +kerning first=365 second=234 amount=-1 +kerning first=350 second=365 amount=-1 +kerning first=85 second=339 amount=-1 +kerning first=321 second=354 amount=-1 +kerning first=226 second=339 amount=-1 +kerning first=77 second=278 amount=-1 +kerning first=110 second=8220 amount=-2 +kerning first=362 second=243 amount=-1 +kerning first=370 second=122 amount=-1 +kerning first=290 second=278 amount=-1 +kerning first=262 second=122 amount=-1 +kerning first=211 second=330 amount=-1 +kerning first=1051 second=1118 amount=-1 +kerning first=298 second=122 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=218 second=278 amount=-1 +kerning first=204 second=280 amount=-1 +kerning first=325 second=232 amount=-1 +kerning first=289 second=232 amount=-1 +kerning first=121 second=107 amount=-1 +kerning first=80 second=219 amount=-1 +kerning first=226 second=122 amount=-1 +kerning first=116 second=234 amount=-1 +kerning first=85 second=122 amount=-1 +kerning first=335 second=103 amount=-1 +kerning first=80 second=234 amount=-1 +kerning first=217 second=232 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=362 second=278 amount=-1 +kerning first=227 second=335 amount=-1 +kerning first=1066 second=1039 amount=-1 +kerning first=1036 second=1094 amount=-1 +kerning first=268 second=241 amount=-1 +kerning first=304 second=209 amount=-1 +kerning first=263 second=335 amount=-1 +kerning first=8218 second=333 amount=-1 +kerning first=275 second=269 amount=-1 +kerning first=1031 second=1083 amount=-1 +kerning first=198 second=363 amount=-1 +kerning first=323 second=115 amount=-1 +kerning first=234 second=363 amount=-1 +kerning first=288 second=298 amount=-1 +kerning first=323 second=85 amount=-1 +kerning first=368 second=344 amount=-1 +kerning first=251 second=8220 amount=-1 +kerning first=72 second=202 amount=-1 +kerning first=279 second=46 amount=-1 +kerning first=205 second=229 amount=-1 +kerning first=70 second=98 amount=-1 +kerning first=243 second=46 amount=-1 +kerning first=287 second=8220 amount=-2 +kerning first=323 second=302 amount=-1 +kerning first=1040 second=1081 amount=-1 +kerning first=74 second=85 amount=-1 +kerning first=1076 second=1081 amount=-1 +kerning first=283 second=98 amount=-1 +kerning first=291 second=316 amount=-1 +kerning first=86 second=335 amount=-1 +kerning first=1069 second=1038 amount=-1 +kerning first=203 second=67 amount=-1 +kerning first=262 second=284 amount=-1 +kerning first=213 second=195 amount=-1 +kerning first=352 second=274 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=374 second=192 amount=-1 +kerning first=87 second=262 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=234 second=378 amount=-1 +kerning first=8250 second=112 amount=-1 +kerning first=204 second=70 amount=-1 +kerning first=192 second=262 amount=-1 +kerning first=289 second=8218 amount=-1 +kerning first=102 second=46 amount=-1 +kerning first=264 second=262 amount=-1 +kerning first=266 second=207 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=1075 second=1085 amount=-1 +kerning first=86 second=251 amount=-1 +kerning first=310 second=357 amount=-1 +kerning first=1069 second=1053 amount=-1 +kerning first=209 second=216 amount=-1 +kerning first=233 second=8250 amount=-1 +kerning first=1102 second=1078 amount=-1 +kerning first=274 second=357 amount=-1 +kerning first=224 second=171 amount=-1 +kerning first=270 second=278 amount=-1 +kerning first=272 second=76 amount=-1 +kerning first=346 second=200 amount=-1 +kerning first=326 second=243 amount=-1 +kerning first=1033 second=1053 amount=-1 +kerning first=214 second=310 amount=-1 +kerning first=187 second=369 amount=-1 +kerning first=66 second=250 amount=-1 +kerning first=1064 second=1117 amount=-1 +kerning first=8250 second=344 amount=-1 +kerning first=103 second=314 amount=-1 +kerning first=280 second=68 amount=-1 +kerning first=370 second=350 amount=-1 +kerning first=187 second=116 amount=-1 +kerning first=1041 second=1084 amount=-1 +kerning first=73 second=286 amount=-1 +kerning first=68 second=201 amount=-1 +kerning first=70 second=113 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=115 second=8250 amount=-1 +kerning first=8218 second=316 amount=-1 +kerning first=100 second=8220 amount=-1 +kerning first=210 second=204 amount=-1 +kerning first=1054 second=1044 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=84 second=271 amount=-1 +kerning first=69 second=204 amount=-1 +kerning first=67 second=259 amount=-1 +kerning first=338 second=207 amount=-1 +kerning first=205 second=268 amount=-1 +kerning first=302 second=207 amount=-1 +kerning first=278 second=210 amount=-1 +kerning first=282 second=204 amount=-1 +kerning first=266 second=80 amount=-1 +kerning first=8216 second=194 amount=-2 +kerning first=199 second=366 amount=-1 +kerning first=206 second=210 amount=-1 +kerning first=291 second=369 amount=-1 +kerning first=374 second=242 amount=-1 +kerning first=255 second=369 amount=-1 +kerning first=1030 second=1047 amount=-1 +kerning first=219 second=369 amount=-1 +kerning first=302 second=242 amount=-1 +kerning first=1076 second=1096 amount=-1 +kerning first=283 second=113 amount=-1 +kerning first=74 second=233 amount=-1 +kerning first=267 second=97 amount=-1 +kerning first=1118 second=1113 amount=-1 +kerning first=324 second=244 amount=-1 +kerning first=110 second=233 amount=-1 +kerning first=206 second=279 amount=-1 +kerning first=199 second=315 amount=-1 +kerning first=69 second=327 amount=-1 +kerning first=101 second=279 amount=-1 +kerning first=251 second=233 amount=-1 +kerning first=298 second=209 amount=-1 +kerning first=314 second=279 amount=-1 +kerning first=287 second=233 amount=-1 +kerning first=76 second=84 amount=-1 +kerning first=253 second=171 amount=-1 +kerning first=210 second=327 amount=-1 +kerning first=231 second=97 amount=-1 +kerning first=1042 second=1080 amount=-1 +kerning first=232 second=187 amount=-1 +kerning first=282 second=327 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=268 second=187 amount=-1 +kerning first=211 second=200 amount=-1 +kerning first=323 second=233 amount=-1 +kerning first=196 second=187 amount=-1 +kerning first=74 second=371 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=70 second=200 amount=-1 +kerning first=1052 second=1045 amount=-1 +kerning first=1067 second=1070 amount=-1 +kerning first=70 second=44 amount=-2 +kerning first=277 second=283 amount=-1 +kerning first=209 second=270 amount=-1 +kerning first=364 second=75 amount=-1 +kerning first=195 second=318 amount=-1 +kerning first=205 second=283 amount=-1 +kerning first=231 second=318 amount=-1 +kerning first=362 second=224 amount=-1 +kerning first=267 second=318 amount=-1 +kerning first=251 second=248 amount=-1 +kerning first=107 second=8221 amount=-1 +kerning first=82 second=218 amount=-1 +kerning first=356 second=380 amount=-1 +kerning first=220 second=75 amount=-1 +kerning first=339 second=318 amount=-1 +kerning first=323 second=248 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=375 second=318 amount=-1 +kerning first=287 second=248 amount=-1 +kerning first=74 second=248 amount=-1 +kerning first=67 second=274 amount=-1 +kerning first=85 second=209 amount=-1 +kerning first=327 second=79 amount=-1 +kerning first=110 second=248 amount=-1 +kerning first=269 second=367 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=356 second=257 amount=-1 +kerning first=233 second=367 amount=-1 +kerning first=218 second=195 amount=-1 +kerning first=8218 second=354 amount=-1 +kerning first=1067 second=1084 amount=-1 +kerning first=68 second=270 amount=-1 +kerning first=252 second=244 amount=-1 +kerning first=280 second=205 amount=-1 +kerning first=374 second=261 amount=-1 +kerning first=353 second=45 amount=-1 +kerning first=367 second=8217 amount=-1 +kerning first=197 second=367 amount=-1 +kerning first=8250 second=201 amount=-1 +kerning first=83 second=344 amount=-1 +kerning first=66 second=115 amount=-1 +kerning first=245 second=114 amount=-1 +kerning first=8217 second=251 amount=-1 +kerning first=209 second=114 amount=-1 +kerning first=226 second=248 amount=-1 +kerning first=352 second=205 amount=-1 +kerning first=296 second=344 amount=-1 +kerning first=8222 second=364 amount=-1 +kerning first=1056 second=1097 amount=-1 +kerning first=281 second=114 amount=-1 +kerning first=199 second=80 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=206 second=206 amount=-1 +kerning first=8249 second=218 amount=-1 +kerning first=279 second=115 amount=-1 +kerning first=8220 second=192 amount=-2 +kerning first=45 second=345 amount=-1 +kerning first=275 second=353 amount=-1 +kerning first=214 second=89 amount=-1 +kerning first=1031 second=1048 amount=-1 +kerning first=266 second=261 amount=-1 +kerning first=330 second=109 amount=-1 +kerning first=350 second=206 amount=-1 +kerning first=117 second=345 amount=-1 +kerning first=278 second=206 amount=-1 +kerning first=207 second=115 amount=-1 +kerning first=67 second=205 amount=-1 +kerning first=258 second=345 amount=-1 +kerning first=310 second=71 amount=-1 +kerning first=86 second=266 amount=-1 +kerning first=344 second=362 amount=-1 +kerning first=330 second=345 amount=-1 +kerning first=1046 second=1089 amount=-1 +kerning first=366 second=345 amount=-1 +kerning first=286 second=44 amount=-1 +kerning first=77 second=243 amount=-1 +kerning first=202 second=71 amount=-1 +kerning first=99 second=226 amount=-1 +kerning first=218 second=243 amount=-1 +kerning first=304 second=310 amount=-1 +kerning first=195 second=368 amount=-1 +kerning first=321 second=8221 amount=-1 +kerning first=204 second=226 amount=-1 +kerning first=1071 second=1037 amount=-1 +kerning first=205 second=214 amount=-1 +kerning first=66 second=336 amount=-1 +kerning first=264 second=347 amount=-1 +kerning first=233 second=252 amount=-1 +kerning first=368 second=241 amount=-1 +kerning first=197 second=252 amount=-1 +kerning first=224 second=275 amount=-1 +kerning first=207 second=336 amount=-1 +kerning first=269 second=252 amount=-1 +kerning first=296 second=275 amount=-1 +kerning first=87 second=263 amount=-1 +kerning first=220 second=223 amount=-1 +kerning first=108 second=249 amount=-1 +kerning first=209 second=45 amount=-1 +kerning first=200 second=362 amount=-1 +kerning first=8218 second=262 amount=-1 +kerning first=104 second=45 amount=-1 +kerning first=272 second=362 amount=-1 +kerning first=364 second=223 amount=-1 +kerning first=101 second=353 amount=-1 +kerning first=1056 second=1051 amount=-1 +kerning first=198 second=45 amount=-1 +kerning first=365 second=275 amount=-1 +kerning first=272 second=217 amount=-1 +kerning first=268 second=327 amount=-1 +kerning first=304 second=327 amount=-1 +kerning first=369 second=8217 amount=-1 +kerning first=344 second=217 amount=-1 +kerning first=78 second=350 amount=-1 +kerning first=310 second=249 amount=-1 +kerning first=314 second=106 amount=-1 +kerning first=221 second=275 amount=-1 +kerning first=346 second=249 amount=-1 +kerning first=199 second=71 amount=-1 +kerning first=378 second=45 amount=-1 +kerning first=354 second=243 amount=-1 +kerning first=257 second=275 amount=-1 +kerning first=268 second=80 amount=-1 +kerning first=264 second=223 amount=-1 +kerning first=327 second=350 amount=-1 +kerning first=8250 second=253 amount=-1 +kerning first=1069 second=1062 amount=-1 +kerning first=112 second=318 amount=-1 +kerning first=1031 second=1097 amount=-1 +kerning first=192 second=223 amount=-1 +kerning first=8218 second=210 amount=-1 +kerning first=80 second=275 amount=-1 +kerning first=344 second=284 amount=-1 +kerning first=219 second=350 amount=-1 +kerning first=304 second=80 amount=-1 +kerning first=74 second=226 amount=-1 +kerning first=249 second=234 amount=-1 +kerning first=369 second=232 amount=-1 +kerning first=210 second=87 amount=-1 +kerning first=8250 second=73 amount=-1 +kerning first=73 second=200 amount=-1 +kerning first=231 second=8221 amount=-2 +kerning first=69 second=278 amount=-1 +kerning first=368 second=266 amount=-1 +kerning first=1047 second=1085 amount=-1 +kerning first=87 second=223 amount=-1 +kerning first=323 second=226 amount=-1 +kerning first=203 second=362 amount=-1 +kerning first=207 second=70 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=202 second=249 amount=-1 +kerning first=291 second=283 amount=-1 +kerning first=8218 second=277 amount=-1 +kerning first=296 second=266 amount=-1 +kerning first=274 second=249 amount=-1 +kerning first=220 second=296 amount=-1 +kerning first=218 second=371 amount=-1 +kerning first=1046 second=1059 amount=-1 +kerning first=108 second=234 amount=-1 +kerning first=261 second=232 amount=-1 +kerning first=78 second=283 amount=-1 +kerning first=66 second=332 amount=-1 +kerning first=72 second=234 amount=-1 +kerning first=225 second=232 amount=-1 +kerning first=286 second=200 amount=-1 +kerning first=375 second=378 amount=-1 +kerning first=1053 second=1055 amount=-1 +kerning first=362 second=371 amount=-1 +kerning first=214 second=200 amount=-1 +kerning first=85 second=8249 amount=-2 +kerning first=187 second=85 amount=-1 +kerning first=374 second=335 amount=-1 +kerning first=207 second=332 amount=-1 +kerning first=1050 second=1063 amount=-1 +kerning first=1034 second=1041 amount=-1 +kerning first=8250 second=211 amount=-1 +kerning first=204 second=241 amount=-1 +kerning first=67 second=345 amount=-1 +kerning first=103 second=345 amount=-1 +kerning first=204 second=350 amount=-1 +kerning first=1104 second=1076 amount=-1 +kerning first=201 second=216 amount=-1 +kerning first=366 second=217 amount=-1 +kerning first=75 second=105 amount=-1 +kerning first=109 second=267 amount=-1 +kerning first=244 second=345 amount=-1 +kerning first=284 second=302 amount=-1 +kerning first=89 second=335 amount=-1 +kerning first=339 second=114 amount=-1 +kerning first=280 second=345 amount=-1 +kerning first=1052 second=1028 amount=-1 +kerning first=316 second=345 amount=-1 +kerning first=212 second=302 amount=-1 +kerning first=80 second=115 amount=-1 +kerning first=1091 second=1079 amount=-1 +kerning first=352 second=345 amount=-1 +kerning first=73 second=171 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=375 second=114 amount=-1 +kerning first=1055 second=1079 amount=-1 +kerning first=287 second=46 amount=-1 +kerning first=266 second=335 amount=-1 +kerning first=195 second=114 amount=-1 +kerning first=99 second=241 amount=-1 +kerning first=67 second=98 amount=-1 +kerning first=230 second=335 amount=-1 +kerning first=1071 second=1067 amount=-1 +kerning first=1049 second=1050 amount=-1 +kerning first=85 second=266 amount=-1 +kerning first=267 second=114 amount=-1 +kerning first=323 second=46 amount=-1 +kerning first=71 second=302 amount=-1 +kerning first=302 second=335 amount=-1 +kerning first=231 second=114 amount=-1 +kerning first=65 second=119 amount=-1 +kerning first=81 second=207 amount=-1 +kerning first=370 second=378 amount=-1 +kerning first=192 second=370 amount=-1 +kerning first=200 second=284 amount=-1 +kerning first=255 second=103 amount=-1 +kerning first=45 second=207 amount=-1 +kerning first=258 second=81 amount=-1 +kerning first=69 second=310 amount=-1 +kerning first=298 second=378 amount=-1 +kerning first=193 second=336 amount=-1 +kerning first=262 second=378 amount=-1 +kerning first=264 second=323 amount=-1 +kerning first=8217 second=244 amount=-1 +kerning first=366 second=81 amount=-1 +kerning first=221 second=115 amount=-1 +kerning first=330 second=207 amount=-1 +kerning first=264 second=370 amount=-1 +kerning first=201 second=368 amount=-1 +kerning first=330 second=81 amount=-1 +kerning first=79 second=315 amount=-1 +kerning first=231 second=314 amount=-1 +kerning first=1068 second=1063 amount=-2 +kerning first=195 second=314 amount=-1 +kerning first=187 second=264 amount=-1 +kerning first=296 second=199 amount=-1 +kerning first=242 second=106 amount=-1 +kerning first=287 second=107 amount=-1 +kerning first=1049 second=1037 amount=-1 +kerning first=375 second=314 amount=-1 +kerning first=368 second=199 amount=-1 +kerning first=86 second=110 amount=-1 +kerning first=1070 second=1041 amount=-1 +kerning first=282 second=310 amount=-1 +kerning first=211 second=89 amount=-1 +kerning first=8216 second=218 amount=-1 +kerning first=121 second=378 amount=-1 +kerning first=1048 second=1071 amount=-1 +kerning first=210 second=310 amount=-1 +kerning first=101 second=106 amount=-1 +kerning first=72 second=288 amount=-1 +kerning first=263 second=110 amount=-1 +kerning first=204 second=334 amount=-1 +kerning first=8250 second=266 amount=-1 +kerning first=66 second=78 amount=-1 +kerning first=1052 second=1101 amount=-1 +kerning first=80 second=221 amount=-1 +kerning first=1033 second=1042 amount=-1 +kerning first=289 second=122 amount=-1 +kerning first=1077 second=1078 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=230 second=101 amount=-1 +kerning first=316 second=291 amount=-1 +kerning first=45 second=81 amount=-1 +kerning first=280 second=114 amount=-1 +kerning first=302 second=101 amount=-1 +kerning first=244 second=291 amount=-1 +kerning first=8218 second=370 amount=-1 +kerning first=217 second=362 amount=-1 +kerning first=266 second=101 amount=-1 +kerning first=374 second=101 amount=-1 +kerning first=219 second=296 amount=-1 +kerning first=363 second=337 amount=-1 +kerning first=234 second=279 amount=-1 +kerning first=103 second=291 amount=-1 +kerning first=317 second=84 amount=-1 +kerning first=291 second=337 amount=-1 +kerning first=78 second=296 amount=-1 +kerning first=310 second=303 amount=-1 +kerning first=219 second=337 amount=-1 +kerning first=121 second=8250 amount=-1 +kerning first=327 second=296 amount=-1 +kerning first=365 second=114 amount=-1 +kerning first=78 second=337 amount=-1 +kerning first=212 second=75 amount=-1 +kerning first=351 second=8250 amount=-1 +kerning first=234 second=99 amount=-1 +kerning first=1028 second=1119 amount=-1 +kerning first=325 second=245 amount=-1 +kerning first=279 second=8250 amount=-1 +kerning first=1064 second=1119 amount=-1 +kerning first=71 second=75 amount=-1 +kerning first=243 second=8250 amount=-1 +kerning first=220 second=261 amount=-1 +kerning first=277 second=8218 amount=-1 +kerning first=290 second=274 amount=-1 +kerning first=217 second=245 amount=-1 +kerning first=1065 second=1094 amount=-1 +kerning first=99 second=287 amount=-1 +kerning first=66 second=8250 amount=-1 +kerning first=356 second=8220 amount=-1 +kerning first=323 second=380 amount=-1 +kerning first=80 second=202 amount=-1 +kerning first=338 second=363 amount=-1 +kerning first=287 second=380 amount=-1 +kerning first=282 second=117 amount=-1 +kerning first=1055 second=1025 amount=-1 +kerning first=77 second=83 amount=-1 +kerning first=246 second=46 amount=-1 +kerning first=204 second=246 amount=-1 +kerning first=370 second=218 amount=-1 +kerning first=334 second=218 amount=-1 +kerning first=298 second=218 amount=-1 +kerning first=218 second=83 amount=-1 +kerning first=284 second=75 amount=-1 +kerning first=262 second=218 amount=-1 +kerning first=1041 second=1030 amount=-1 +kerning first=325 second=264 amount=-1 +kerning first=208 second=187 amount=-1 +kerning first=374 second=122 amount=-1 +kerning first=210 second=364 amount=-1 +kerning first=362 second=83 amount=-1 +kerning first=66 second=278 amount=-1 +kerning first=107 second=8220 amount=-1 +kerning first=74 second=380 amount=-1 +kerning first=217 second=264 amount=-1 +kerning first=71 second=8220 amount=-1 +kerning first=201 second=270 amount=-1 +kerning first=69 second=364 amount=-1 +kerning first=209 second=257 amount=-1 +kerning first=235 second=98 amount=-1 +kerning first=264 second=69 amount=-1 +kerning first=284 second=8220 amount=-1 +kerning first=277 second=367 amount=-1 +kerning first=207 second=278 amount=-1 +kerning first=248 second=8220 amount=-2 +kerning first=263 second=103 amount=-1 +kerning first=227 second=103 amount=-1 +kerning first=1056 second=1039 amount=-1 +kerning first=8250 second=199 amount=-1 +kerning first=304 second=273 amount=-1 +kerning first=268 second=273 amount=-1 +kerning first=205 second=227 amount=-1 +kerning first=86 second=103 amount=-1 +kerning first=305 second=171 amount=-1 +kerning first=187 second=278 amount=-1 +kerning first=232 second=273 amount=-1 +kerning first=288 second=205 amount=-1 +kerning first=1070 second=1034 amount=-1 +kerning first=366 second=273 amount=-1 +kerning first=87 second=269 amount=-1 +kerning first=104 second=8220 amount=-2 +kerning first=1034 second=1034 amount=-1 +kerning first=8217 second=110 amount=-1 +kerning first=70 second=258 amount=-1 +kerning first=1065 second=1102 amount=-1 +kerning first=339 second=355 amount=-1 +kerning first=1067 second=1043 amount=-1 +kerning first=192 second=316 amount=-1 +kerning first=85 second=218 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=1031 second=1043 amount=-1 +kerning first=264 second=269 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=330 second=261 amount=-1 +kerning first=264 second=316 amount=-1 +kerning first=356 second=248 amount=-1 +kerning first=287 second=382 amount=-1 +kerning first=228 second=316 amount=-1 +kerning first=195 second=355 amount=-1 +kerning first=244 second=44 amount=-1 +kerning first=69 second=117 amount=-1 +kerning first=366 second=261 amount=-1 +kerning first=207 second=78 amount=-1 +kerning first=302 second=229 amount=-1 +kerning first=326 second=263 amount=-1 +kerning first=287 second=8221 amount=-2 +kerning first=362 second=263 amount=-1 +kerning first=1066 second=1030 amount=-1 +kerning first=8217 second=352 amount=-1 +kerning first=338 second=251 amount=-1 +kerning first=316 second=382 amount=-1 +kerning first=353 second=171 amount=-1 +kerning first=1030 second=1030 amount=-1 +kerning first=291 second=8218 amount=-1 +kerning first=235 second=117 amount=-1 +kerning first=1064 second=1100 amount=-1 +kerning first=364 second=203 amount=-1 +kerning first=79 second=203 amount=-1 +kerning first=1104 second=1078 amount=-1 +kerning first=77 second=263 amount=-1 +kerning first=220 second=203 amount=-1 +kerning first=97 second=108 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=316 second=252 amount=-1 +kerning first=1066 second=1025 amount=-1 +kerning first=218 second=263 amount=-1 +kerning first=1030 second=1025 amount=-1 +kerning first=1047 second=1050 amount=-1 +kerning first=277 second=246 amount=-1 +kerning first=241 second=246 amount=-1 +kerning first=334 second=77 amount=-1 +kerning first=121 second=8222 amount=-1 +kerning first=205 second=246 amount=-1 +kerning first=370 second=77 amount=-1 +kerning first=1069 second=1113 amount=-1 +kerning first=330 second=382 amount=-1 +kerning first=85 second=8222 amount=-2 +kerning first=1055 second=1060 amount=-1 +kerning first=262 second=77 amount=-1 +kerning first=366 second=382 amount=-1 +kerning first=100 second=246 amount=-1 +kerning first=298 second=77 amount=-1 +kerning first=99 second=100 amount=-1 +kerning first=212 second=356 amount=-1 +kerning first=203 second=218 amount=-1 +kerning first=262 second=304 amount=-1 +kerning first=204 second=100 amount=-1 +kerning first=298 second=304 amount=-1 +kerning first=85 second=77 amount=-1 +kerning first=304 second=282 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=1051 second=1083 amount=-1 +kerning first=98 second=316 amount=-1 +kerning first=8250 second=361 amount=-1 +kerning first=370 second=304 amount=-1 +kerning first=85 second=304 amount=-1 +kerning first=78 second=242 amount=-1 +kerning first=374 second=281 amount=-1 +kerning first=362 second=211 amount=-1 +kerning first=268 second=101 amount=-1 +kerning first=311 second=316 amount=-1 +kerning first=275 second=316 amount=-1 +kerning first=334 second=8222 amount=-1 +kerning first=234 second=333 amount=-1 +kerning first=1042 second=1048 amount=-1 +kerning first=77 second=211 amount=-1 +kerning first=351 second=45 amount=-1 +kerning first=347 second=316 amount=-1 +kerning first=262 second=8222 amount=-1 +kerning first=218 second=211 amount=-1 +kerning first=187 second=194 amount=-1 +kerning first=219 second=242 amount=-1 +kerning first=196 second=223 amount=-1 +kerning first=110 second=339 amount=-1 +kerning first=1031 second=1024 amount=-1 +kerning first=217 second=210 amount=-1 +kerning first=196 second=221 amount=-1 +kerning first=251 second=339 amount=-1 +kerning first=1067 second=1024 amount=-1 +kerning first=254 second=287 amount=-1 +kerning first=327 second=242 amount=-1 +kerning first=210 second=8250 amount=-1 +kerning first=363 second=242 amount=-1 +kerning first=99 second=233 amount=-1 +kerning first=307 second=269 amount=-1 +kerning first=304 second=110 amount=-1 +kerning first=74 second=280 amount=-1 +kerning first=74 second=339 amount=-1 +kerning first=314 second=245 amount=-1 +kerning first=330 second=315 amount=-1 +kerning first=205 second=313 amount=-1 +kerning first=366 second=315 amount=-1 +kerning first=199 second=242 amount=-1 +kerning first=240 second=233 amount=-1 +kerning first=355 second=240 amount=-1 +kerning first=268 second=219 amount=-1 +kerning first=233 second=120 amount=-1 +kerning first=304 second=219 amount=-1 +kerning first=204 second=233 amount=-1 +kerning first=269 second=120 amount=-1 +kerning first=355 second=230 amount=-1 +kerning first=323 second=280 amount=-1 +kerning first=323 second=339 amount=-1 +kerning first=78 second=279 amount=-1 +kerning first=81 second=315 amount=-1 +kerning first=287 second=339 amount=-1 +kerning first=324 second=118 amount=-1 +kerning first=80 second=206 amount=-1 +kerning first=1027 second=1101 amount=-1 +kerning first=1076 second=1118 amount=-1 +kerning first=45 second=315 amount=-1 +kerning first=1040 second=1118 amount=-1 +kerning first=101 second=8217 amount=-2 +kerning first=252 second=231 amount=-1 +kerning first=211 second=76 amount=-1 +kerning first=8217 second=290 amount=-1 +kerning first=70 second=76 amount=-1 +kerning first=242 second=8217 amount=-2 +kerning first=198 second=206 amount=-1 +kerning first=73 second=213 amount=-1 +kerning first=65 second=8217 amount=-2 +kerning first=207 second=224 amount=-1 +kerning first=370 second=85 amount=-1 +kerning first=334 second=85 amount=-1 +kerning first=206 second=245 amount=-1 +kerning first=298 second=85 amount=-1 +kerning first=107 second=289 amount=-1 +kerning first=262 second=85 amount=-1 +kerning first=101 second=245 amount=-1 +kerning first=275 second=254 amount=-1 +kerning first=278 second=8217 amount=-1 +kerning first=8222 second=273 amount=-1 +kerning first=314 second=8217 amount=-1 +kerning first=1041 second=1119 amount=-1 +kerning first=350 second=8217 amount=-1 +kerning first=217 second=331 amount=-1 +kerning first=1071 second=1113 amount=-1 +kerning first=248 second=289 amount=-1 +kerning first=368 second=366 amount=-1 +kerning first=258 second=318 amount=-1 +kerning first=296 second=366 amount=-1 +kerning first=203 second=262 amount=-1 +kerning first=1059 second=1095 amount=-1 +kerning first=250 second=113 amount=-1 +kerning first=280 second=79 amount=-1 +kerning first=194 second=311 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=1043 second=1096 amount=-1 +kerning first=1095 second=1095 amount=-1 +kerning first=197 second=307 amount=-1 +kerning first=339 second=287 amount=-1 +kerning first=362 second=317 amount=-1 +kerning first=253 second=104 amount=-1 +kerning first=209 second=225 amount=-1 +kerning first=321 second=84 amount=-1 +kerning first=197 second=345 amount=-1 +kerning first=1102 second=1084 amount=-1 +kerning first=1033 second=1048 amount=-1 +kerning first=233 second=345 amount=-1 +kerning first=269 second=345 amount=-1 +kerning first=99 second=46 amount=-1 +kerning first=1030 second=1084 amount=-1 +kerning first=305 second=345 amount=-1 +kerning first=240 second=46 amount=-1 +kerning first=370 second=250 amount=-1 +kerning first=118 second=107 amount=-1 +kerning first=45 second=369 amount=-1 +kerning first=220 second=368 amount=-1 +kerning first=77 second=317 amount=-1 +kerning first=364 second=201 amount=-1 +kerning first=229 second=122 amount=-1 +kerning first=244 second=314 amount=-1 +kerning first=97 second=8221 amount=-2 +kerning first=77 second=336 amount=-1 +kerning first=218 second=317 amount=-1 +kerning first=121 second=250 amount=-1 +kerning first=105 second=335 amount=-1 +kerning first=220 second=201 amount=-1 +kerning first=85 second=250 amount=-1 +kerning first=79 second=368 amount=-1 +kerning first=290 second=317 amount=-1 +kerning first=79 second=201 amount=-1 +kerning first=218 second=336 amount=-1 +kerning first=281 second=311 amount=-1 +kerning first=274 second=8221 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=221 second=256 amount=-1 +kerning first=310 second=8221 amount=-1 +kerning first=83 second=366 amount=-1 +kerning first=109 second=113 amount=-1 +kerning first=199 second=204 amount=-1 +kerning first=8216 second=197 amount=-2 +kerning first=346 second=8221 amount=-1 +kerning first=220 second=116 amount=-1 +kerning first=1066 second=1038 amount=-2 +kerning first=382 second=8221 amount=-1 +kerning first=362 second=336 amount=-1 +kerning first=287 second=326 amount=-1 +kerning first=1062 second=1086 amount=-1 +kerning first=325 second=210 amount=-1 +kerning first=364 second=368 amount=-1 +kerning first=80 second=256 amount=-1 +kerning first=1047 second=1031 amount=-1 +kerning first=337 second=122 amount=-1 +kerning first=364 second=116 amount=-1 +kerning first=104 second=114 amount=-1 +kerning first=205 second=259 amount=-1 +kerning first=310 second=268 amount=-1 +kerning first=274 second=268 amount=-1 +kerning first=220 second=97 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=280 second=8220 amount=-1 +kerning first=202 second=268 amount=-1 +kerning first=286 second=304 amount=-1 +kerning first=8222 second=221 amount=-2 +kerning first=1038 second=1116 amount=-1 +kerning first=230 second=281 amount=-1 +kerning first=269 second=347 amount=-1 +kerning first=266 second=281 amount=-1 +kerning first=119 second=187 amount=-1 +kerning first=302 second=281 amount=-1 +kerning first=213 second=73 amount=-1 +kerning first=366 second=369 amount=-1 +kerning first=233 second=347 amount=-1 +kerning first=202 second=8221 amount=-1 +kerning first=258 second=369 amount=-1 +kerning first=356 second=235 amount=-1 +kerning first=262 second=8218 amount=-1 +kerning first=1052 second=1069 amount=-1 +kerning first=364 second=97 amount=-1 +kerning first=107 second=287 amount=-1 +kerning first=67 second=350 amount=-1 +kerning first=313 second=86 amount=-1 +kerning first=272 second=198 amount=-1 +kerning first=89 second=283 amount=-1 +kerning first=8222 second=219 amount=-1 +kerning first=226 second=231 amount=-1 +kerning first=210 second=351 amount=-1 +kerning first=262 second=231 amount=-1 +kerning first=325 second=277 amount=-1 +kerning first=281 second=363 amount=-1 +kerning first=1036 second=1072 amount=-1 +kerning first=289 second=277 amount=-1 +kerning first=86 second=290 amount=-1 +kerning first=289 second=104 amount=-1 +kerning first=354 second=351 amount=-1 +kerning first=217 second=277 amount=-1 +kerning first=344 second=338 amount=-1 +kerning first=86 second=244 amount=-1 +kerning first=1051 second=1081 amount=-1 +kerning first=374 second=283 amount=-1 +kerning first=266 second=355 amount=-1 +kerning first=227 second=244 amount=-1 +kerning first=266 second=283 amount=-1 +kerning first=200 second=338 amount=-1 +kerning first=298 second=231 amount=-1 +kerning first=263 second=244 amount=-1 +kerning first=302 second=283 amount=-1 +kerning first=253 second=8249 amount=-1 +kerning first=289 second=8249 amount=-1 +kerning first=370 second=231 amount=-1 +kerning first=194 second=354 amount=-1 +kerning first=1039 second=1065 amount=-1 +kerning first=325 second=8249 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=78 second=345 amount=-1 +kerning first=67 second=66 amount=-1 +kerning first=85 second=196 amount=-1 +kerning first=258 second=79 amount=-1 +kerning first=278 second=8220 amount=-1 +kerning first=248 second=46 amount=-1 +kerning first=268 second=332 amount=-1 +kerning first=334 second=196 amount=-1 +kerning first=374 second=367 amount=-1 +kerning first=88 second=371 amount=-1 +kerning first=255 second=345 amount=-1 +kerning first=259 second=235 amount=-1 +kerning first=370 second=196 amount=-1 +kerning first=338 second=367 amount=-1 +kerning first=196 second=332 amount=-1 +kerning first=193 second=371 amount=-1 +kerning first=327 second=345 amount=-1 +kerning first=363 second=345 amount=-1 +kerning first=121 second=380 amount=-1 +kerning first=367 second=235 amount=-1 +kerning first=230 second=367 amount=-1 +kerning first=85 second=380 amount=-1 +kerning first=194 second=367 amount=-1 +kerning first=211 second=274 amount=-1 +kerning first=1042 second=1091 amount=-1 +kerning first=226 second=380 amount=-1 +kerning first=85 second=368 amount=-1 +kerning first=66 second=70 amount=-1 +kerning first=304 second=332 amount=-1 +kerning first=352 second=66 amount=-1 +kerning first=298 second=380 amount=-1 +kerning first=330 second=79 amount=-1 +kerning first=280 second=66 amount=-1 +kerning first=105 second=287 amount=-1 +kerning first=85 second=226 amount=-1 +kerning first=366 second=79 amount=-1 +kerning first=370 second=380 amount=-1 +kerning first=284 second=270 amount=-1 +kerning first=204 second=209 amount=-1 +kerning first=1056 second=1080 amount=-1 +kerning first=204 second=336 amount=-1 +kerning first=89 second=367 amount=-1 +kerning first=86 second=192 amount=-1 +kerning first=217 second=323 amount=-1 +kerning first=327 second=99 amount=-1 +kerning first=269 second=44 amount=-1 +kerning first=200 second=252 amount=-1 +kerning first=110 second=231 amount=-1 +kerning first=1049 second=1045 amount=-1 +kerning first=205 second=205 amount=-1 +kerning first=268 second=355 amount=-1 +kerning first=97 second=244 amount=-1 +kerning first=195 second=119 amount=-1 +kerning first=278 second=201 amount=-1 +kerning first=1070 second=1063 amount=-1 +kerning first=274 second=214 amount=-1 +kerning first=66 second=327 amount=-1 +kerning first=206 second=201 amount=-1 +kerning first=346 second=76 amount=-1 +kerning first=202 second=214 amount=-1 +kerning first=207 second=327 amount=-1 +kerning first=201 second=218 amount=-1 +kerning first=197 second=44 amount=-1 +kerning first=233 second=44 amount=-1 +kerning first=257 second=8217 amount=-2 +kerning first=251 second=231 amount=-1 +kerning first=115 second=314 amount=-1 +kerning first=8217 second=246 amount=-1 +kerning first=310 second=214 amount=-1 +kerning first=339 second=106 amount=-1 +kerning first=289 second=353 amount=-1 +kerning first=375 second=106 amount=-1 +kerning first=1048 second=1049 amount=-1 +kerning first=257 second=243 amount=-1 +kerning first=253 second=353 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=325 second=223 amount=-1 +kerning first=365 second=243 amount=-1 +kerning first=8249 second=346 amount=-1 +kerning first=289 second=223 amount=-1 +kerning first=325 second=353 amount=-1 +kerning first=80 second=353 amount=-1 +kerning first=231 second=106 amount=-1 +kerning first=259 second=45 amount=-1 +kerning first=267 second=106 amount=-1 +kerning first=75 second=114 amount=-1 +kerning first=263 second=249 amount=-1 +kerning first=118 second=45 amount=-1 +kerning first=105 second=275 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=1078 second=1097 amount=-1 +kerning first=367 second=45 amount=-1 +kerning first=1091 second=1114 amount=-1 +kerning first=195 second=363 amount=-1 +kerning first=231 second=363 amount=-1 +kerning first=307 second=275 amount=-1 +kerning first=1050 second=1054 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=217 second=223 amount=-1 +kerning first=80 second=243 amount=-1 +kerning first=203 second=370 amount=-1 +kerning first=339 second=363 amount=-1 +kerning first=217 second=353 amount=-1 +kerning first=280 second=325 amount=-1 +kerning first=363 second=8220 amount=-1 +kerning first=375 second=363 amount=-1 +kerning first=1042 second=1097 amount=-1 +kerning first=212 second=87 amount=-1 +kerning first=73 second=362 amount=-1 +kerning first=219 second=101 amount=-1 +kerning first=368 second=234 amount=-1 +kerning first=250 second=232 amount=-1 +kerning first=214 second=362 amount=-1 +kerning first=327 second=101 amount=-1 +kerning first=298 second=226 amount=-1 +kerning first=291 second=101 amount=-1 +kerning first=286 second=362 amount=-1 +kerning first=370 second=226 amount=-1 +kerning first=363 second=101 amount=-1 +kerning first=268 second=8250 amount=-1 +kerning first=365 second=245 amount=-1 +kerning first=8218 second=245 amount=-1 +kerning first=67 second=296 amount=-1 +kerning first=1068 second=1098 amount=-1 +kerning first=364 second=241 amount=-1 +kerning first=72 second=266 amount=-1 +kerning first=103 second=283 amount=-1 +kerning first=70 second=217 amount=-1 +kerning first=280 second=296 amount=-1 +kerning first=86 second=249 amount=-1 +kerning first=1099 second=1095 amount=-1 +kerning first=67 second=283 amount=-1 +kerning first=211 second=217 amount=-1 +kerning first=218 second=334 amount=-1 +kerning first=109 second=232 amount=-1 +kerning first=224 second=234 amount=-1 +kerning first=73 second=232 amount=-1 +kerning first=296 second=71 amount=-1 +kerning first=230 second=242 amount=-1 +kerning first=296 second=234 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=229 second=287 amount=-1 +kerning first=201 second=8220 amount=-1 +kerning first=286 second=72 amount=-1 +kerning first=1069 second=1070 amount=-1 +kerning first=214 second=72 amount=-1 +kerning first=1033 second=1070 amount=-1 +kerning first=104 second=283 amount=-1 +kerning first=381 second=8220 amount=-1 +kerning first=283 second=111 amount=-1 +kerning first=75 second=8218 amount=-1 +kerning first=337 second=287 amount=-1 +kerning first=263 second=105 amount=-1 +kerning first=355 second=111 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=171 second=83 amount=-1 +kerning first=219 second=370 amount=-1 +kerning first=207 second=83 amount=-1 +kerning first=271 second=244 amount=-1 +kerning first=350 second=114 amount=-1 +kerning first=1055 second=1041 amount=-1 +kerning first=187 second=286 amount=-1 +kerning first=275 second=267 amount=-1 +kerning first=8216 second=196 amount=-2 +kerning first=85 second=378 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=210 second=115 amount=-1 +kerning first=206 second=114 amount=-1 +kerning first=268 second=102 amount=-1 +kerning first=304 second=278 amount=-1 +kerning first=1044 second=1092 amount=-1 +kerning first=87 second=74 amount=-1 +kerning first=268 second=278 amount=-1 +kerning first=278 second=114 amount=-1 +kerning first=83 second=200 amount=-1 +kerning first=8217 second=192 amount=-2 +kerning first=99 second=263 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=204 second=263 amount=-1 +kerning first=259 second=242 amount=-1 +kerning first=1066 second=1079 amount=-1 +kerning first=65 second=114 amount=-1 +kerning first=240 second=263 amount=-1 +kerning first=1044 second=1116 amount=-1 +kerning first=370 second=117 amount=-1 +kerning first=187 second=365 amount=-1 +kerning first=206 second=331 amount=-1 +kerning first=354 second=115 amount=-1 +kerning first=199 second=310 amount=-1 +kerning first=73 second=72 amount=-1 +kerning first=270 second=203 amount=-1 +kerning first=118 second=365 amount=-1 +kerning first=368 second=361 amount=-1 +kerning first=325 second=269 amount=-1 +kerning first=323 second=68 amount=-1 +kerning first=1070 second=1036 amount=-1 +kerning first=77 second=78 amount=-1 +kerning first=1034 second=1036 amount=-1 +kerning first=323 second=334 amount=-1 +kerning first=218 second=78 amount=-1 +kerning first=367 second=99 amount=-1 +kerning first=1043 second=1071 amount=-1 +kerning first=368 second=288 amount=-1 +kerning first=364 second=355 amount=-1 +kerning first=1041 second=1101 amount=-1 +kerning first=248 second=380 amount=-1 +kerning first=201 second=266 amount=-1 +kerning first=1042 second=1043 amount=-1 +kerning first=296 second=288 amount=-1 +kerning first=1034 second=1070 amount=-1 +kerning first=8250 second=71 amount=-1 +kerning first=79 second=260 amount=-1 +kerning first=194 second=199 amount=-1 +kerning first=228 second=318 amount=-1 +kerning first=84 second=230 amount=-1 +kerning first=220 second=260 amount=-1 +kerning first=1107 second=1082 amount=-1 +kerning first=1105 second=1094 amount=-1 +kerning first=200 second=325 amount=-1 +kerning first=363 second=291 amount=-1 +kerning first=338 second=357 amount=-1 +kerning first=364 second=260 amount=-1 +kerning first=272 second=325 amount=-1 +kerning first=291 second=291 amount=-1 +kerning first=315 second=218 amount=-1 +kerning first=337 second=187 amount=-1 +kerning first=255 second=291 amount=-1 +kerning first=334 second=8220 amount=-2 +kerning first=198 second=367 amount=-1 +kerning first=281 second=279 amount=-1 +kerning first=1036 second=1085 amount=-1 +kerning first=87 second=245 amount=-1 +kerning first=72 second=212 amount=-1 +kerning first=103 second=337 amount=-1 +kerning first=67 second=337 amount=-1 +kerning first=264 second=8217 amount=-1 +kerning first=277 second=251 amount=-1 +kerning first=363 second=114 amount=-1 +kerning first=336 second=8217 amount=-2 +kerning first=104 second=269 amount=-1 +kerning first=220 second=68 amount=-1 +kerning first=334 second=195 amount=-1 +kerning first=103 second=242 amount=-1 +kerning first=187 second=75 amount=-1 +kerning first=209 second=279 amount=-1 +kerning first=193 second=187 amount=-1 +kerning first=1053 second=1119 amount=-1 +kerning first=229 second=187 amount=-1 +kerning first=1071 second=1057 amount=-1 +kerning first=208 second=8218 amount=-1 +kerning first=104 second=279 amount=-1 +kerning first=88 second=187 amount=-1 +kerning first=67 second=242 amount=-1 +kerning first=74 second=334 amount=-1 +kerning first=289 second=316 amount=-1 +kerning first=1067 second=1056 amount=-1 +kerning first=366 second=347 amount=-1 +kerning first=316 second=242 amount=-1 +kerning first=346 second=73 amount=-1 +kerning first=205 second=281 amount=-1 +kerning first=86 second=268 amount=-1 +kerning first=1053 second=1043 amount=-1 +kerning first=241 second=281 amount=-1 +kerning first=370 second=334 amount=-1 +kerning first=330 second=347 amount=-1 +kerning first=277 second=281 amount=-1 +kerning first=8222 second=375 amount=-1 +kerning first=356 second=99 amount=-1 +kerning first=70 second=325 amount=-1 +kerning first=1071 second=1089 amount=-1 +kerning first=89 second=229 amount=-1 +kerning first=310 second=290 amount=-1 +kerning first=211 second=325 amount=-1 +kerning first=213 second=115 amount=-1 +kerning first=81 second=347 amount=-1 +kerning first=218 second=366 amount=-1 +kerning first=313 second=8217 amount=-1 +kerning first=264 second=264 amount=-1 +kerning first=202 second=73 amount=-1 +kerning first=69 second=202 amount=-1 +kerning first=1056 second=1083 amount=-1 +kerning first=274 second=296 amount=-1 +kerning first=192 second=264 amount=-1 +kerning first=229 second=233 amount=-1 +kerning first=274 second=73 amount=-1 +kerning first=100 second=281 amount=-1 +kerning first=217 second=82 amount=-1 +kerning first=87 second=264 amount=-1 +kerning first=289 second=8217 amount=-2 +kerning first=355 second=101 amount=-1 +kerning first=268 second=337 amount=-1 +kerning first=77 second=283 amount=-1 +kerning first=1064 second=1065 amount=-1 +kerning first=1050 second=1117 amount=-1 +kerning first=206 second=277 amount=-1 +kerning first=112 second=8217 amount=-2 +kerning first=335 second=108 amount=-1 +kerning first=8250 second=212 amount=-1 +kerning first=1068 second=1052 amount=-1 +kerning first=202 second=290 amount=-1 +kerning first=203 second=69 amount=-1 +kerning first=227 second=108 amount=-1 +kerning first=101 second=277 amount=-1 +kerning first=198 second=69 amount=-1 +kerning first=217 second=8217 amount=-1 +kerning first=1038 second=1091 amount=-1 +kerning first=263 second=108 amount=-1 +kerning first=274 second=290 amount=-1 +kerning first=253 second=8217 amount=-2 +kerning first=85 second=334 amount=-1 +kerning first=268 second=224 amount=-1 +kerning first=1049 second=1092 amount=-1 +kerning first=220 second=355 amount=-1 +kerning first=116 second=351 amount=-1 +kerning first=1041 second=1053 amount=-1 +kerning first=1060 second=1113 amount=-1 +kerning first=80 second=351 amount=-1 +kerning first=119 second=291 amount=-1 +kerning first=290 second=78 amount=-1 +kerning first=200 second=220 amount=-1 +kerning first=262 second=334 amount=-1 +kerning first=217 second=282 amount=-1 +kerning first=298 second=334 amount=-1 +kerning first=362 second=78 amount=-1 +kerning first=203 second=286 amount=-1 +kerning first=364 second=233 amount=-1 +kerning first=221 second=351 amount=-1 +kerning first=104 second=333 amount=-1 +kerning first=1048 second=1095 amount=-1 +kerning first=114 second=229 amount=-1 +kerning first=328 second=171 amount=-1 +kerning first=8218 second=318 amount=-1 +kerning first=364 second=209 amount=-1 +kerning first=364 second=171 amount=-2 +kerning first=219 second=229 amount=-1 +kerning first=1084 second=1095 amount=-1 +kerning first=281 second=333 amount=-1 +kerning first=68 second=203 amount=-1 +kerning first=291 second=122 amount=-1 +kerning first=209 second=333 amount=-1 +kerning first=78 second=229 amount=-1 +kerning first=344 second=290 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=1043 second=1074 amount=-1 +kerning first=209 second=203 amount=-1 +kerning first=321 second=374 amount=-1 +kerning first=213 second=374 amount=-1 +kerning first=229 second=263 amount=-1 +kerning first=1053 second=1100 amount=-1 +kerning first=76 second=8217 amount=-1 +kerning first=327 second=229 amount=-1 +kerning first=115 second=171 amount=-1 +kerning first=79 second=206 amount=-1 +kerning first=296 second=212 amount=-1 +kerning first=1034 second=1039 amount=-1 +kerning first=274 second=298 amount=-1 +kerning first=278 second=203 amount=-1 +kerning first=1054 second=1042 amount=-1 +kerning first=278 second=213 amount=-1 +kerning first=220 second=171 amount=-2 +kerning first=225 second=335 amount=-1 +kerning first=368 second=117 amount=-1 +kerning first=262 second=104 amount=-1 +kerning first=256 second=171 amount=-1 +kerning first=1028 second=1097 amount=-1 +kerning first=68 second=368 amount=-1 +kerning first=258 second=220 amount=-1 +kerning first=323 second=304 amount=-1 +kerning first=370 second=109 amount=-1 +kerning first=324 second=246 amount=-1 +kerning first=366 second=220 amount=-1 +kerning first=283 second=382 amount=-1 +kerning first=330 second=220 amount=-1 +kerning first=364 second=206 amount=-1 +kerning first=74 second=304 amount=-1 +kerning first=8218 second=375 amount=-1 +kerning first=1051 second=1086 amount=-1 +kerning first=252 second=246 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=1030 second=1060 amount=-1 +kerning first=81 second=220 amount=-1 +kerning first=86 second=8221 amount=-1 +kerning first=122 second=8221 amount=-1 +kerning first=249 second=103 amount=-1 +kerning first=244 second=120 amount=-1 +kerning first=219 second=46 amount=-2 +kerning first=1067 second=1048 amount=-1 +kerning first=82 second=220 amount=-1 +kerning first=1051 second=1051 amount=-1 +kerning first=216 second=8218 amount=-1 +kerning first=263 second=8221 amount=-2 +kerning first=108 second=103 amount=-1 +kerning first=8250 second=204 amount=-1 +kerning first=207 second=211 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=111 second=8218 amount=-1 +kerning first=105 second=255 amount=-1 +kerning first=266 second=313 amount=-1 +kerning first=234 second=365 amount=-1 +kerning first=298 second=109 amount=-1 +kerning first=1056 second=1034 amount=-1 +kerning first=302 second=313 amount=-1 +kerning first=338 second=313 amount=-1 +kerning first=66 second=211 amount=-1 +kerning first=70 second=382 amount=-1 +kerning first=221 second=199 amount=-1 +kerning first=198 second=365 amount=-1 +kerning first=262 second=109 amount=-1 +kerning first=317 second=368 amount=-1 +kerning first=201 second=85 amount=-1 +kerning first=278 second=223 amount=-1 +kerning first=8222 second=365 amount=-1 +kerning first=206 second=223 amount=-1 +kerning first=85 second=280 amount=-1 +kerning first=264 second=210 amount=-1 +kerning first=1070 second=1053 amount=-1 +kerning first=288 second=304 amount=-1 +kerning first=269 second=98 amount=-1 +kerning first=192 second=210 amount=-1 +kerning first=1046 second=1057 amount=-1 +kerning first=233 second=98 amount=-1 +kerning first=262 second=280 amount=-1 +kerning first=197 second=98 amount=-1 +kerning first=210 second=256 amount=-1 +kerning first=87 second=210 amount=-1 +kerning first=1078 second=1092 amount=-1 +kerning first=241 second=335 amount=-1 +kerning first=334 second=280 amount=-1 +kerning first=1036 second=1077 amount=-1 +kerning first=99 second=122 amount=-1 +kerning first=205 second=335 amount=-1 +kerning first=72 second=380 amount=-1 +kerning first=201 second=302 amount=-1 +kerning first=277 second=335 amount=-1 +kerning first=370 second=280 amount=-1 +kerning first=268 second=243 amount=-1 +kerning first=282 second=371 amount=-1 +kerning first=315 second=219 amount=-1 +kerning first=232 second=243 amount=-1 +kerning first=65 second=223 amount=-1 +kerning first=99 second=339 amount=-1 +kerning first=8217 second=268 amount=-1 +kerning first=70 second=271 amount=-1 +kerning first=240 second=339 amount=-1 +kerning first=304 second=243 amount=-1 +kerning first=1070 second=1047 amount=-1 +kerning first=204 second=339 amount=-1 +kerning first=346 second=298 amount=-1 +kerning first=8222 second=224 amount=-1 +kerning first=272 second=89 amount=-1 +kerning first=214 second=198 amount=-1 +kerning first=171 second=219 amount=-1 +kerning first=278 second=8249 amount=-1 +kerning first=330 second=76 amount=-1 +kerning first=314 second=8249 amount=-1 +kerning first=66 second=219 amount=-1 +kerning first=75 second=213 amount=-1 +kerning first=210 second=323 amount=-1 +kerning first=364 second=363 amount=-1 +kerning first=1070 second=1039 amount=-1 +kerning first=8218 second=264 amount=-1 +kerning first=275 second=232 amount=-1 +kerning first=344 second=89 amount=-1 +kerning first=45 second=76 amount=-1 +kerning first=100 second=335 amount=-1 +kerning first=81 second=76 amount=-1 +kerning first=235 second=234 amount=-1 +kerning first=8217 second=112 amount=-1 +kerning first=118 second=289 amount=-1 +kerning first=199 second=234 amount=-1 +kerning first=259 second=289 amount=-1 +kerning first=218 second=241 amount=-1 +kerning first=307 second=234 amount=-1 +kerning first=202 second=344 amount=-1 +kerning first=223 second=289 amount=-1 +kerning first=291 second=98 amount=-1 +kerning first=271 second=234 amount=-1 +kerning first=8250 second=355 amount=-1 +kerning first=74 second=120 amount=-1 +kerning first=65 second=8249 amount=-1 +kerning first=274 second=344 amount=-1 +kerning first=313 second=354 amount=-1 +kerning first=1058 second=1075 amount=-1 +kerning first=99 second=228 amount=-1 +kerning first=362 second=241 amount=-1 +kerning first=346 second=344 amount=-1 +kerning first=367 second=289 amount=-1 +kerning first=81 second=274 amount=-1 +kerning first=193 second=46 amount=-1 +kerning first=1071 second=1091 amount=-1 +kerning first=187 second=216 amount=-1 +kerning first=1071 second=1108 amount=-1 +kerning first=45 second=274 amount=-1 +kerning first=296 second=204 amount=-1 +kerning first=213 second=366 amount=-1 +kerning first=369 second=113 amount=-1 +kerning first=72 second=366 amount=-1 +kerning first=337 second=46 amount=-1 +kerning first=80 second=332 amount=-1 +kerning first=1034 second=1038 amount=-2 +kerning first=197 second=79 amount=-1 +kerning first=363 second=283 amount=-1 +kerning first=1091 second=1084 amount=-1 +kerning first=1075 second=1087 amount=-1 +kerning first=364 second=225 amount=-1 +kerning first=1055 second=1084 amount=-1 +kerning first=330 second=274 amount=-1 +kerning first=221 second=332 amount=-1 +kerning first=366 second=274 amount=-1 +kerning first=75 second=357 amount=-1 +kerning first=86 second=195 amount=-1 +kerning first=287 second=250 amount=-1 +kerning first=264 second=104 amount=-1 +kerning first=321 second=366 amount=-1 +kerning first=88 second=46 amount=-1 +kerning first=366 second=76 amount=-1 +kerning first=82 second=216 amount=-1 +kerning first=192 second=104 amount=-1 +kerning first=77 second=70 amount=-1 +kerning first=352 second=207 amount=-1 +kerning first=197 second=369 amount=-1 +kerning first=302 second=259 amount=-1 +kerning first=1051 second=1105 amount=-1 +kerning first=8250 second=345 amount=-1 +kerning first=203 second=213 amount=-1 +kerning first=234 second=311 amount=-1 +kerning first=1047 second=1053 amount=-1 +kerning first=121 second=347 amount=-1 +kerning first=240 second=122 amount=-1 +kerning first=278 second=323 amount=-1 +kerning first=8217 second=122 amount=-1 +kerning first=290 second=70 amount=-1 +kerning first=283 second=271 amount=-1 +kerning first=206 second=323 amount=-1 +kerning first=269 second=369 amount=-1 +kerning first=204 second=122 amount=-1 +kerning first=374 second=259 amount=-1 +kerning first=70 second=198 amount=-1 +kerning first=233 second=369 amount=-1 +kerning first=225 second=113 amount=-1 +kerning first=83 second=204 amount=-1 +kerning first=356 second=378 amount=-1 +kerning first=261 second=113 amount=-1 +kerning first=287 second=8222 amount=-1 +kerning first=350 second=323 amount=-1 +kerning first=80 second=83 amount=-1 +kerning first=67 second=207 amount=-1 +kerning first=248 second=378 amount=-1 +kerning first=1048 second=1041 amount=-1 +kerning first=198 second=75 amount=-1 +kerning first=72 second=46 amount=-1 +kerning first=1038 second=1099 amount=-1 +kerning first=84 second=113 amount=-1 +kerning first=281 second=116 amount=-1 +kerning first=280 second=207 amount=-1 +kerning first=89 second=259 amount=-1 +kerning first=89 second=197 amount=-1 +kerning first=8217 second=249 amount=-1 +kerning first=209 second=116 amount=-1 +kerning first=328 second=119 amount=-1 +kerning first=278 second=116 amount=-1 +kerning first=85 second=201 amount=-1 +kerning first=88 second=366 amount=-1 +kerning first=78 second=113 amount=-1 +kerning first=245 second=314 amount=-1 +kerning first=206 second=116 amount=-1 +kerning first=204 second=204 amount=-1 +kerning first=1057 second=1081 amount=-1 +kerning first=101 second=271 amount=-1 +kerning first=74 second=363 amount=-1 +kerning first=105 second=253 amount=-1 +kerning first=355 second=259 amount=-1 +kerning first=353 second=314 amount=-1 +kerning first=1071 second=1084 amount=-1 +kerning first=281 second=314 amount=-1 +kerning first=268 second=110 amount=-1 +kerning first=287 second=363 amount=-1 +kerning first=332 second=187 amount=-1 +kerning first=327 second=113 amount=-1 +kerning first=209 second=67 amount=-1 +kerning first=368 second=256 amount=-1 +kerning first=363 second=113 amount=-1 +kerning first=69 second=82 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=70 second=259 amount=-1 +kerning first=65 second=116 amount=-1 +kerning first=291 second=113 amount=-1 +kerning first=268 second=317 amount=-1 +kerning first=193 second=366 amount=-1 +kerning first=8218 second=240 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=73 second=210 amount=-1 +kerning first=219 second=113 amount=-1 +kerning first=87 second=213 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=282 second=73 amount=-1 +kerning first=8217 second=234 amount=-1 +kerning first=67 second=101 amount=-1 +kerning first=366 second=271 amount=-1 +kerning first=119 second=254 amount=-1 +kerning first=207 second=302 amount=-1 +kerning first=330 second=271 amount=-1 +kerning first=66 second=302 amount=-1 +kerning first=274 second=219 amount=-1 +kerning first=310 second=219 amount=-1 +kerning first=116 second=8250 amount=-1 +kerning first=199 second=268 amount=-1 +kerning first=202 second=219 amount=-1 +kerning first=243 second=8220 amount=-2 +kerning first=80 second=8250 amount=-1 +kerning first=316 second=101 amount=-1 +kerning first=279 second=122 amount=-1 +kerning first=259 second=277 amount=-1 +kerning first=1038 second=1113 amount=-1 +kerning first=198 second=262 amount=-1 +kerning first=339 second=311 amount=-1 +kerning first=69 second=73 amount=-1 +kerning first=323 second=317 amount=-1 +kerning first=207 second=122 amount=-1 +kerning first=203 second=290 amount=-1 +kerning first=375 second=311 amount=-1 +kerning first=243 second=122 amount=-1 +kerning first=267 second=311 amount=-1 +kerning first=281 second=380 amount=-1 +kerning first=68 second=218 amount=-1 +kerning first=367 second=277 amount=-1 +kerning first=195 second=311 amount=-1 +kerning first=98 second=345 amount=-1 +kerning first=1047 second=1102 amount=-1 +kerning first=231 second=311 amount=-1 +kerning first=210 second=73 amount=-1 +kerning first=66 second=122 amount=-1 +kerning first=234 second=235 amount=-1 +kerning first=296 second=283 amount=-1 +kerning first=268 second=290 amount=-1 +kerning first=8218 second=267 amount=-1 +kerning first=304 second=290 amount=-1 +kerning first=224 second=283 amount=-1 +kerning first=198 second=82 amount=-1 +kerning first=187 second=82 amount=-1 +kerning first=305 second=114 amount=-1 +kerning first=245 second=287 amount=-1 +kerning first=195 second=338 amount=-1 +kerning first=270 second=82 amount=-1 +kerning first=68 second=8222 amount=-1 +kerning first=104 second=287 amount=-1 +kerning first=315 second=8220 amount=-1 +kerning first=204 second=351 amount=-1 +kerning first=353 second=287 amount=-1 +kerning first=1053 second=1031 amount=-1 +kerning first=1044 second=1091 amount=-1 +kerning first=100 second=187 amount=-1 +kerning first=99 second=351 amount=-1 +kerning first=281 second=287 amount=-1 +kerning first=262 second=278 amount=-1 +kerning first=1076 second=1095 amount=-1 +kerning first=327 second=347 amount=-1 +kerning first=304 second=83 amount=-1 +kerning first=70 second=286 amount=-1 +kerning first=219 second=347 amount=-1 +kerning first=368 second=283 amount=-1 +kerning first=196 second=290 amount=-1 +kerning first=255 second=347 amount=-1 +kerning first=8217 second=81 amount=-1 +kerning first=347 second=171 amount=-1 +kerning first=267 second=104 amount=-1 +kerning first=187 second=70 amount=-1 +kerning first=228 second=333 amount=-1 +kerning first=1052 second=1099 amount=-1 +kerning first=87 second=333 amount=-1 +kerning first=195 second=104 amount=-1 +kerning first=117 second=244 amount=-1 +kerning first=80 second=278 amount=-1 +kerning first=231 second=104 amount=-1 +kerning first=272 second=274 amount=-1 +kerning first=1068 second=1101 amount=-1 +kerning first=264 second=333 amount=-1 +kerning first=278 second=280 amount=-1 +kerning first=330 second=244 amount=-1 +kerning first=1030 second=1094 amount=-1 +kerning first=366 second=244 amount=-1 +kerning first=259 second=8217 amount=-2 +kerning first=240 second=231 amount=-1 +kerning first=334 second=201 amount=-1 +kerning first=370 second=201 amount=-1 +kerning first=212 second=195 amount=-1 +kerning first=262 second=201 amount=-1 +kerning first=203 second=171 amount=-1 +kerning first=298 second=201 amount=-1 +kerning first=315 second=89 amount=-1 +kerning first=8250 second=310 amount=-1 +kerning first=339 second=104 amount=-1 +kerning first=99 second=231 amount=-1 +kerning first=311 second=171 amount=-1 +kerning first=354 second=100 amount=-1 +kerning first=287 second=316 amount=-1 +kerning first=374 second=71 amount=-1 +kerning first=305 second=269 amount=-1 +kerning first=1065 second=1088 amount=-1 +kerning first=280 second=362 amount=-1 +kerning first=338 second=71 amount=-1 +kerning first=283 second=106 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=98 second=318 amount=-1 +kerning first=233 second=269 amount=-1 +kerning first=352 second=362 amount=-1 +kerning first=80 second=120 amount=-1 +kerning first=219 second=266 amount=-1 +kerning first=8217 second=288 amount=-1 +kerning first=368 second=310 amount=-1 +kerning first=327 second=200 amount=-1 +kerning first=89 second=245 amount=-1 +kerning first=220 second=65 amount=-1 +kerning first=296 second=310 amount=-1 +kerning first=275 second=318 amount=-1 +kerning first=78 second=266 amount=-1 +kerning first=311 second=318 amount=-1 +kerning first=347 second=318 amount=-1 +kerning first=223 second=8222 amount=-1 +kerning first=364 second=65 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=67 second=362 amount=-1 +kerning first=118 second=8222 amount=-1 +kerning first=82 second=370 amount=-1 +kerning first=203 second=45 amount=-1 +kerning first=199 second=214 amount=-1 +kerning first=82 second=8222 amount=-1 +kerning first=207 second=275 amount=-1 +kerning first=194 second=71 amount=-1 +kerning first=103 second=231 amount=-1 +kerning first=69 second=199 amount=-1 +kerning first=279 second=275 amount=-1 +kerning first=311 second=45 amount=-1 +kerning first=89 second=71 amount=-1 +kerning first=347 second=45 amount=-1 +kerning first=196 second=371 amount=-1 +kerning first=354 second=226 amount=-1 +kerning first=235 second=8221 amount=-2 +kerning first=82 second=223 amount=-1 +kerning first=45 second=217 amount=-1 +kerning first=86 second=234 amount=-1 +kerning first=227 second=234 amount=-1 +kerning first=364 second=380 amount=-1 +kerning first=219 second=200 amount=-1 +kerning first=258 second=217 amount=-1 +kerning first=355 second=232 amount=-1 +kerning first=110 second=243 amount=-1 +kerning first=251 second=243 amount=-1 +kerning first=221 second=251 amount=-1 +kerning first=78 second=200 amount=-1 +kerning first=330 second=217 amount=-1 +kerning first=283 second=232 amount=-1 +kerning first=226 second=8220 amount=-2 +kerning first=323 second=243 amount=-1 +kerning first=327 second=266 amount=-1 +kerning first=287 second=243 amount=-1 +kerning first=65 second=89 amount=-1 +kerning first=203 second=345 amount=-1 +kerning first=70 second=232 amount=-1 +kerning first=241 second=8221 amount=-2 +kerning first=103 second=335 amount=-1 +kerning first=214 second=8250 amount=-1 +kerning first=275 second=345 amount=-1 +kerning first=277 second=8221 amount=-2 +kerning first=70 second=352 amount=-1 +kerning first=1054 second=1037 amount=-1 +kerning first=313 second=8221 amount=-1 +kerning first=305 second=242 amount=-1 +kerning first=310 second=105 amount=-1 +kerning first=233 second=242 amount=-1 +kerning first=283 second=99 amount=-1 +kerning first=203 second=72 amount=-1 +kerning first=269 second=242 amount=-1 +kerning first=106 second=232 amount=-1 +kerning first=304 second=344 amount=-1 +kerning first=199 second=241 amount=-1 +kerning first=268 second=344 amount=-1 +kerning first=263 second=234 amount=-1 +kerning first=194 second=98 amount=-1 +kerning first=74 second=336 amount=-1 +kerning first=1046 second=1096 amount=-1 +kerning first=104 second=233 amount=-1 +kerning first=87 second=267 amount=-1 +kerning first=368 second=284 amount=-1 +kerning first=67 second=335 amount=-1 +kerning first=87 second=229 amount=-1 +kerning first=266 second=98 amount=-1 +kerning first=323 second=336 amount=-1 +kerning first=281 second=233 amount=-1 +kerning first=218 second=80 amount=-1 +kerning first=99 second=378 amount=-1 +kerning first=1033 second=1045 amount=-1 +kerning first=298 second=114 amount=-1 +kerning first=209 second=233 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=282 second=199 amount=-1 +kerning first=77 second=80 amount=-1 +kerning first=323 second=216 amount=-1 +kerning first=1069 second=1045 amount=-1 +kerning first=362 second=80 amount=-1 +kerning first=240 second=378 amount=-1 +kerning first=121 second=114 amount=-1 +kerning first=1040 second=1094 amount=-1 +kerning first=290 second=80 amount=-1 +kerning first=204 second=378 amount=-1 +kerning first=354 second=46 amount=-1 +kerning first=366 second=268 amount=-1 +kerning first=226 second=114 amount=-1 +kerning first=1042 second=1046 amount=-1 +kerning first=8250 second=364 amount=-1 +kerning first=80 second=224 amount=-1 +kerning first=195 second=284 amount=-1 +kerning first=289 second=318 amount=-1 +kerning first=228 second=108 amount=-1 +kerning first=85 second=114 amount=-1 +kerning first=362 second=327 amount=-1 +kerning first=8217 second=261 amount=-1 +kerning first=83 second=310 amount=-1 +kerning first=220 second=353 amount=-1 +kerning first=199 second=115 amount=-1 +kerning first=74 second=216 amount=-1 +kerning first=356 second=115 amount=-1 +kerning first=235 second=115 amount=-1 +kerning first=187 second=250 amount=-1 +kerning first=100 second=8221 amount=-1 +kerning first=85 second=290 amount=-1 +kerning first=118 second=250 amount=-1 +kerning first=221 second=224 amount=-1 +kerning first=364 second=353 amount=-1 +kerning first=274 second=78 amount=-1 +kerning first=277 second=44 amount=-1 +kerning first=86 second=273 amount=-1 +kerning first=80 second=45 amount=-1 +kerning first=346 second=78 amount=-1 +kerning first=71 second=8249 amount=-1 +kerning first=1051 second=1098 amount=-1 +kerning first=107 second=8249 amount=-1 +kerning first=100 second=283 amount=-1 +kerning first=200 second=355 amount=-1 +kerning first=330 second=352 amount=-1 +kerning first=323 second=282 amount=-1 +kerning first=284 second=8249 amount=-1 +kerning first=366 second=352 amount=-1 +kerning first=199 second=8220 amount=-1 +kerning first=264 second=72 amount=-1 +kerning first=362 second=248 amount=-1 +kerning first=1052 second=1104 amount=-1 +kerning first=326 second=248 amount=-1 +kerning first=262 second=102 amount=-1 +kerning first=74 second=282 amount=-1 +kerning first=220 second=218 amount=-1 +kerning first=77 second=248 amount=-1 +kerning first=316 second=337 amount=-1 +kerning first=218 second=248 amount=-1 +kerning first=370 second=102 amount=-1 +kerning first=334 second=87 amount=-1 +kerning first=68 second=75 amount=-1 +kerning first=68 second=206 amount=-1 +kerning first=229 second=101 amount=-1 +kerning first=1042 second=1031 amount=-1 +kerning first=347 second=291 amount=-1 +kerning first=69 second=361 amount=-1 +kerning first=311 second=291 amount=-1 +kerning first=1054 second=1024 amount=-1 +kerning first=282 second=361 amount=-1 +kerning first=275 second=291 amount=-1 +kerning first=271 second=279 amount=-1 +kerning first=119 second=345 amount=-1 +kerning first=206 second=230 amount=-1 +kerning first=209 second=206 amount=-1 +kerning first=86 second=288 amount=-1 +kerning first=335 second=8218 amount=-1 +kerning first=1039 second=1080 amount=-1 +kerning first=75 second=8221 amount=-1 +kerning first=270 second=368 amount=-1 +kerning first=111 second=8221 amount=-2 +kerning first=263 second=8218 amount=-1 +kerning first=262 second=8221 amount=-1 +kerning first=75 second=81 amount=-1 +kerning first=296 second=337 amount=-1 +kerning first=216 second=8221 amount=-2 +kerning first=1064 second=1095 amount=-1 +kerning first=67 second=227 amount=-1 +kerning first=252 second=8221 amount=-1 +kerning first=224 second=337 amount=-1 +kerning first=1054 second=1064 amount=-1 +kerning first=288 second=8221 amount=-1 +kerning first=1052 second=1079 amount=-1 +kerning first=80 second=197 amount=-1 +kerning first=198 second=368 amount=-1 +kerning first=221 second=197 amount=-1 +kerning first=302 second=266 amount=-1 +kerning first=197 second=362 amount=-1 +kerning first=199 second=187 amount=-1 +kerning first=266 second=266 amount=-1 +kerning first=352 second=200 amount=-1 +kerning first=374 second=266 amount=-1 +kerning first=81 second=325 amount=-1 +kerning first=87 second=99 amount=-1 +kerning first=338 second=266 amount=-1 +kerning first=85 second=75 amount=-1 +kerning first=307 second=187 amount=-1 +kerning first=1052 second=1077 amount=-1 +kerning first=89 second=266 amount=-1 +kerning first=235 second=187 amount=-1 +kerning first=228 second=99 amount=-1 +kerning first=86 second=8218 amount=-2 +kerning first=271 second=187 amount=-1 +kerning first=264 second=99 amount=-1 +kerning first=194 second=266 amount=-1 +kerning first=107 second=8222 amount=-1 +kerning first=366 second=325 amount=-1 +kerning first=205 second=71 amount=-1 +kerning first=71 second=8222 amount=-1 +kerning first=275 second=279 amount=-1 +kerning first=296 second=78 amount=-1 +kerning first=231 second=353 amount=-1 +kerning first=199 second=202 amount=-1 +kerning first=326 second=275 amount=-1 +kerning first=370 second=75 amount=-1 +kerning first=334 second=75 amount=-1 +kerning first=298 second=75 amount=-1 +kerning first=266 second=8218 amount=-1 +kerning first=362 second=275 amount=-1 +kerning first=262 second=75 amount=-1 +kerning first=187 second=192 amount=-1 +kerning first=263 second=245 amount=-1 +kerning first=211 second=78 amount=-1 +kerning first=346 second=66 amount=-1 +kerning first=1052 second=1052 amount=-1 +kerning first=274 second=66 amount=-1 +kerning first=221 second=371 amount=-1 +kerning first=69 second=334 amount=-1 +kerning first=286 second=69 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=202 second=66 amount=-1 +kerning first=366 second=249 amount=-1 +kerning first=187 second=196 amount=-1 +kerning first=1039 second=1107 amount=-1 +kerning first=200 second=367 amount=-1 +kerning first=1064 second=1068 amount=-1 +kerning first=209 second=380 amount=-1 +kerning first=67 second=200 amount=-1 +kerning first=211 second=205 amount=-1 +kerning first=73 second=69 amount=-1 +kerning first=70 second=205 amount=-1 +kerning first=232 second=250 amount=-1 +kerning first=214 second=69 amount=-1 +kerning first=206 second=257 amount=-1 +kerning first=245 second=380 amount=-1 +kerning first=330 second=350 amount=-1 +kerning first=263 second=273 amount=-1 +kerning first=366 second=350 amount=-1 +kerning first=1071 second=1030 amount=-1 +kerning first=70 second=193 amount=-1 +kerning first=368 second=364 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=86 second=261 amount=-1 +kerning first=268 second=209 amount=-1 +kerning first=296 second=364 amount=-1 +kerning first=218 second=194 amount=-1 +kerning first=344 second=286 amount=-1 +kerning first=207 second=68 amount=-1 +kerning first=339 second=365 amount=-1 +kerning first=200 second=286 amount=-1 +kerning first=8217 second=273 amount=-1 +kerning first=375 second=365 amount=-1 +kerning first=1036 second=1057 amount=-1 +kerning first=267 second=365 amount=-1 +kerning first=81 second=298 amount=-1 +kerning first=109 second=171 amount=-1 +kerning first=268 second=263 amount=-1 +kerning first=66 second=68 amount=-1 +kerning first=45 second=298 amount=-1 +kerning first=304 second=263 amount=-1 +kerning first=195 second=365 amount=-1 +kerning first=350 second=203 amount=-1 +kerning first=231 second=365 amount=-1 +kerning first=323 second=351 amount=-1 +kerning first=69 second=332 amount=-1 +kerning first=99 second=117 amount=-1 +kerning first=351 second=8218 amount=-1 +kerning first=199 second=229 amount=-1 +kerning first=206 second=203 amount=-1 +kerning first=1042 second=1085 amount=-1 +kerning first=1046 second=1108 amount=-1 +kerning first=1040 second=1054 amount=-1 +kerning first=366 second=298 amount=-1 +kerning first=1073 second=1083 amount=-1 +kerning first=210 second=69 amount=-1 +kerning first=234 second=316 amount=-1 +kerning first=219 second=332 amount=-1 +kerning first=267 second=242 amount=-1 +kerning first=81 second=323 amount=-1 +kerning first=8222 second=118 amount=-1 +kerning first=1047 second=1048 amount=-1 +kerning first=1052 second=1025 amount=-1 +kerning first=45 second=323 amount=-1 +kerning first=70 second=220 amount=-1 +kerning first=214 second=66 amount=-1 +kerning first=263 second=246 amount=-1 +kerning first=315 second=356 amount=-1 +kerning first=227 second=246 amount=-1 +kerning first=109 second=45 amount=-1 +kerning first=305 second=103 amount=-1 +kerning first=103 second=281 amount=-1 +kerning first=82 second=211 amount=-1 +kerning first=233 second=103 amount=-1 +kerning first=86 second=246 amount=-1 +kerning first=212 second=304 amount=-1 +kerning first=205 second=330 amount=-1 +kerning first=362 second=194 amount=-1 +kerning first=199 second=100 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=284 second=304 amount=-1 +kerning first=366 second=323 amount=-1 +kerning first=316 second=281 amount=-1 +kerning first=330 second=323 amount=-1 +kerning first=235 second=100 amount=-1 +kerning first=71 second=304 amount=-1 +kerning first=1058 second=1077 amount=-1 +kerning first=220 second=245 amount=-1 +kerning first=187 second=109 amount=-1 +kerning first=210 second=280 amount=-1 +kerning first=74 second=231 amount=-1 +kerning first=1030 second=1067 amount=-1 +kerning first=282 second=280 amount=-1 +kerning first=364 second=8217 amount=-1 +kerning first=269 second=335 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=287 second=337 amount=-1 +kerning first=80 second=110 amount=-1 +kerning first=203 second=210 amount=-1 +kerning first=272 second=313 amount=-1 +kerning first=221 second=110 amount=-1 +kerning first=8217 second=369 amount=-1 +kerning first=229 second=339 amount=-1 +kerning first=8218 second=213 amount=-1 +kerning first=287 second=324 amount=-1 +kerning first=354 second=8250 amount=-1 +kerning first=364 second=245 amount=-1 +kerning first=328 second=245 amount=-1 +kerning first=200 second=313 amount=-1 +kerning first=282 second=8250 amount=-1 +kerning first=70 second=118 amount=-1 +kerning first=205 second=357 amount=-1 +kerning first=1077 second=1118 amount=-1 +kerning first=277 second=357 amount=-1 +kerning first=105 second=8250 amount=-1 +kerning first=374 second=212 amount=-1 +kerning first=69 second=8250 amount=-1 +kerning first=255 second=8220 amount=-2 +kerning first=234 second=289 amount=-1 +kerning first=1049 second=1101 amount=-1 +kerning first=314 second=101 amount=-1 +kerning first=269 second=101 amount=-1 +kerning first=8218 second=86 amount=-2 +kerning first=81 second=296 amount=-1 +kerning first=266 second=212 amount=-1 +kerning first=220 second=8217 amount=-1 +kerning first=45 second=296 amount=-1 +kerning first=302 second=212 amount=-1 +kerning first=280 second=200 amount=-1 +kerning first=256 second=8217 amount=-2 +kerning first=73 second=111 amount=-1 +kerning first=338 second=212 amount=-1 +kerning first=89 second=212 amount=-1 +kerning first=67 second=254 amount=-1 +kerning first=69 second=280 amount=-1 +kerning first=79 second=8217 amount=-2 +kerning first=250 second=111 amount=-1 +kerning first=194 second=212 amount=-1 +kerning first=103 second=254 amount=-1 +kerning first=115 second=8217 amount=-2 +kerning first=248 second=287 amount=-1 +kerning first=67 second=347 amount=-1 +kerning first=366 second=296 amount=-1 +kerning first=1088 second=1084 amount=-1 +kerning first=262 second=318 amount=-1 +kerning first=363 second=335 amount=-1 +kerning first=330 second=296 amount=-1 +kerning first=345 second=228 amount=-1 +kerning first=327 second=335 amount=-1 +kerning first=296 second=241 amount=-1 +kerning first=304 second=85 amount=-1 +kerning first=1052 second=1080 amount=-1 +kerning first=268 second=85 amount=-1 +kerning first=275 second=107 amount=-1 +kerning first=196 second=85 amount=-1 +kerning first=1031 second=1056 amount=-1 +kerning first=234 second=287 amount=-1 +kerning first=196 second=8220 amount=-2 +kerning first=192 second=364 amount=-1 +kerning first=219 second=231 amount=-1 +kerning first=235 second=46 amount=-1 +kerning first=268 second=8220 amount=-1 +kerning first=89 second=65 amount=-1 +kerning first=77 second=339 amount=-1 +kerning first=72 second=229 amount=-1 +kerning first=269 second=271 amount=-1 +kerning first=268 second=302 amount=-1 +kerning first=249 second=243 amount=-1 +kerning first=233 second=271 amount=-1 +kerning first=73 second=225 amount=-1 +kerning first=304 second=302 amount=-1 +kerning first=78 second=335 amount=-1 +kerning first=364 second=83 amount=-1 +kerning first=1057 second=1096 amount=-1 +kerning first=219 second=335 amount=-1 +kerning first=245 second=187 amount=-1 +kerning first=364 second=284 amount=-1 +kerning first=204 second=206 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=104 second=289 amount=-1 +kerning first=245 second=289 amount=-1 +kerning first=321 second=86 amount=-1 +kerning first=8250 second=78 amount=-1 +kerning first=207 second=344 amount=-1 +kerning first=220 second=284 amount=-1 +kerning first=281 second=289 amount=-1 +kerning first=210 second=278 amount=-1 +kerning first=207 second=80 amount=-1 +kerning first=323 second=378 amount=-1 +kerning first=199 second=46 amount=-1 +kerning first=352 second=76 amount=-1 +kerning first=1038 second=1094 amount=-1 +kerning first=202 second=207 amount=-1 +kerning first=287 second=378 amount=-1 +kerning first=353 second=289 amount=-1 +kerning first=280 second=76 amount=-1 +kerning first=193 second=79 amount=-1 +kerning first=267 second=353 amount=-1 +kerning first=85 second=216 amount=-1 +kerning first=375 second=353 amount=-1 +kerning first=195 second=89 amount=-1 +kerning first=339 second=353 amount=-1 +kerning first=370 second=337 amount=-1 +kerning first=282 second=278 amount=-1 +kerning first=74 second=378 amount=-1 +kerning first=230 second=357 amount=-1 +kerning first=240 second=279 amount=-1 +kerning first=8217 second=350 amount=-1 +kerning first=262 second=216 amount=-1 +kerning first=80 second=280 amount=-1 +kerning first=249 second=246 amount=-1 +kerning first=323 second=81 amount=-1 +kerning first=66 second=344 amount=-1 +kerning first=67 second=76 amount=-1 +kerning first=266 second=357 amount=-1 +kerning first=1104 second=1118 amount=-1 +kerning first=266 second=113 amount=-1 +kerning first=302 second=113 amount=-1 +kerning first=1060 second=1084 amount=-1 +kerning first=218 second=114 amount=-1 +kerning first=230 second=113 amount=-1 +kerning first=201 second=201 amount=-1 +kerning first=117 second=269 amount=-1 +kerning first=1055 second=1094 amount=-1 +kerning first=89 second=113 amount=-1 +kerning first=330 second=269 amount=-1 +kerning first=1091 second=1094 amount=-1 +kerning first=73 second=259 amount=-1 +kerning first=366 second=269 amount=-1 +kerning first=195 second=116 amount=-1 +kerning first=296 second=268 amount=-1 +kerning first=274 second=207 amount=-1 +kerning first=1066 second=1045 amount=-1 +kerning first=253 second=8220 amount=-2 +kerning first=346 second=207 amount=-1 +kerning first=213 second=256 amount=-1 +kerning first=313 second=368 amount=-1 +kerning first=364 second=67 amount=-1 +kerning first=101 second=231 amount=-1 +kerning first=368 second=268 amount=-1 +kerning first=333 second=287 amount=-1 +kerning first=374 second=113 amount=-1 +kerning first=86 second=369 amount=-1 +kerning first=77 second=366 amount=-1 +kerning first=220 second=67 amount=-1 +kerning first=279 second=107 amount=-1 +kerning first=77 second=122 amount=-1 +kerning first=1046 second=1102 amount=-1 +kerning first=270 second=260 amount=-1 +kerning first=356 second=277 amount=-1 +kerning first=263 second=250 amount=-1 +kerning first=199 second=73 amount=-1 +kerning first=66 second=317 amount=-1 +kerning first=8250 second=251 amount=-1 +kerning first=209 second=262 amount=-1 +kerning first=207 second=317 amount=-1 +kerning first=74 second=351 amount=-1 +kerning first=321 second=219 amount=-1 +kerning first=69 second=251 amount=-1 +kerning first=217 second=213 amount=-1 +kerning first=339 second=116 amount=-1 +kerning first=65 second=375 amount=-1 +kerning first=362 second=122 amount=-1 +kerning first=1036 second=1102 amount=-1 +kerning first=267 second=326 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=254 second=122 amount=-1 +kerning first=231 second=326 amount=-1 +kerning first=8222 second=356 amount=-1 +kerning first=66 second=218 amount=-1 +kerning first=1056 second=1117 amount=-1 +kerning first=1050 second=1038 amount=-1 +kerning first=282 second=251 amount=-1 +kerning first=72 second=219 amount=-1 +kerning first=218 second=122 amount=-1 +kerning first=1068 second=1061 amount=-1 +kerning first=8250 second=219 amount=-1 +kerning first=350 second=218 amount=-1 +kerning first=262 second=270 amount=-1 +kerning first=304 second=248 amount=-1 +kerning first=89 second=8221 amount=-1 +kerning first=72 second=283 amount=-1 +kerning first=267 second=380 amount=-1 +kerning first=278 second=218 amount=-1 +kerning first=108 second=283 amount=-1 +kerning first=231 second=380 amount=-1 +kerning first=194 second=8221 amount=-2 +kerning first=1049 second=1089 amount=-1 +kerning first=339 second=380 amount=-1 +kerning first=370 second=270 amount=-1 +kerning first=206 second=218 amount=-1 +kerning first=117 second=242 amount=-1 +kerning first=230 second=8221 amount=-2 +kerning first=201 second=75 amount=-1 +kerning first=229 second=231 amount=-1 +kerning first=266 second=8221 amount=-1 +kerning first=85 second=336 amount=-1 +kerning first=298 second=270 amount=-1 +kerning first=1030 second=1065 amount=-1 +kerning first=114 second=44 amount=-1 +kerning first=375 second=380 amount=-1 +kerning first=334 second=270 amount=-1 +kerning first=65 second=218 amount=-1 +kerning first=232 second=248 amount=-1 +kerning first=338 second=8221 amount=-1 +kerning first=200 second=79 amount=-1 +kerning first=218 second=209 amount=-1 +kerning first=374 second=8221 amount=-1 +kerning first=212 second=196 amount=-1 +kerning first=221 second=226 amount=-1 +kerning first=262 second=336 amount=-1 +kerning first=298 second=336 amount=-1 +kerning first=72 second=66 amount=-1 +kerning first=8250 second=241 amount=-1 +kerning first=370 second=336 amount=-1 +kerning first=85 second=270 amount=-1 +kerning first=249 second=283 amount=-1 +kerning first=366 second=242 amount=-1 +kerning first=218 second=227 amount=-1 +kerning first=233 second=244 amount=-1 +kerning first=269 second=244 amount=-1 +kerning first=272 second=205 amount=-1 +kerning first=305 second=244 amount=-1 +kerning first=71 second=70 amount=-1 +kerning first=1038 second=1097 amount=-1 +kerning first=8222 second=275 amount=-1 +kerning first=1101 second=1113 amount=-1 +kerning first=89 second=227 amount=-1 +kerning first=284 second=8222 amount=-1 +kerning first=344 second=79 amount=-1 +kerning first=202 second=327 amount=-1 +kerning first=248 second=8222 amount=-1 +kerning first=212 second=8222 amount=-1 +kerning first=355 second=267 amount=-1 +kerning first=106 second=8220 amount=-1 +kerning first=115 second=8221 amount=-2 +kerning first=213 second=192 amount=-1 +kerning first=327 second=44 amount=-1 +kerning first=346 second=327 amount=-1 +kerning first=261 second=8217 amount=-2 +kerning first=291 second=318 amount=-1 +kerning first=255 second=44 amount=-1 +kerning first=104 second=235 amount=-1 +kerning first=193 second=44 amount=-1 +kerning first=291 second=44 amount=-1 +kerning first=99 second=110 amount=-1 +kerning first=200 second=205 amount=-1 +kerning first=209 second=235 amount=-1 +kerning first=374 second=227 amount=-1 +kerning first=212 second=70 amount=-1 +kerning first=281 second=235 amount=-1 +kerning first=302 second=227 amount=-1 +kerning first=270 second=347 amount=-1 +kerning first=284 second=70 amount=-1 +kerning first=266 second=227 amount=-1 +kerning first=100 second=171 amount=-1 +kerning first=219 second=71 amount=-1 +kerning first=85 second=363 amount=-1 +kerning first=117 second=289 amount=-1 +kerning first=121 second=363 amount=-1 +kerning first=67 second=266 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=368 second=214 amount=-1 +kerning first=368 second=115 amount=-1 +kerning first=198 second=370 amount=-1 +kerning first=85 second=243 amount=-1 +kerning first=304 second=275 amount=-1 +kerning first=213 second=310 amount=-1 +kerning first=354 second=224 amount=-1 +kerning first=296 second=214 amount=-1 +kerning first=370 second=363 amount=-1 +kerning first=87 second=45 amount=-2 +kerning first=268 second=275 amount=-1 +kerning first=219 second=362 amount=-1 +kerning first=270 second=370 amount=-1 +kerning first=232 second=275 amount=-1 +kerning first=284 second=223 amount=-1 +kerning first=228 second=45 amount=-1 +kerning first=1104 second=1081 amount=-1 +kerning first=264 second=45 amount=-1 +kerning first=277 second=249 amount=-1 +kerning first=192 second=45 amount=-1 +kerning first=8250 second=268 amount=-1 +kerning first=71 second=223 amount=-1 +kerning first=1064 second=1097 amount=-1 +kerning first=97 second=234 amount=-1 +kerning first=241 second=235 amount=-1 +kerning first=220 second=257 amount=-1 +kerning first=1055 second=1028 amount=-1 +kerning first=338 second=216 amount=-1 +kerning first=1056 second=1063 amount=-1 +kerning first=217 second=267 amount=-1 +kerning first=197 second=217 amount=-1 +kerning first=78 second=362 amount=-1 +kerning first=290 second=209 amount=-1 +kerning first=325 second=267 amount=-1 +kerning first=338 second=200 amount=-1 +kerning first=298 second=243 amount=-1 +kerning first=1089 second=1095 amount=-1 +kerning first=82 second=368 amount=-1 +kerning first=302 second=200 amount=-1 +kerning first=262 second=243 amount=-1 +kerning first=1053 second=1095 amount=-1 +kerning first=217 second=8222 amount=-2 +kerning first=266 second=200 amount=-1 +kerning first=66 second=371 amount=-1 +kerning first=109 second=345 amount=-1 +kerning first=45 second=379 amount=-1 +kerning first=1044 second=1072 amount=-1 +kerning first=187 second=368 amount=-1 +kerning first=356 second=97 amount=-1 +kerning first=250 second=345 amount=-1 +kerning first=280 second=266 amount=-1 +kerning first=286 second=345 amount=-1 +kerning first=8218 second=99 amount=-1 +kerning first=1030 second=1049 amount=-1 +kerning first=202 second=8218 amount=-1 +kerning first=339 second=245 amount=-1 +kerning first=315 second=221 amount=-1 +kerning first=8218 second=378 amount=-1 +kerning first=68 second=370 amount=-1 +kerning first=346 second=8218 amount=-1 +kerning first=267 second=245 amount=-1 +kerning first=66 second=221 amount=-1 +kerning first=274 second=315 amount=-1 +kerning first=210 second=197 amount=-1 +kerning first=317 second=370 amount=-1 +kerning first=310 second=8218 amount=-1 +kerning first=231 second=245 amount=-1 +kerning first=209 second=370 amount=-1 +kerning first=274 second=8218 amount=-1 +kerning first=1067 second=1073 amount=-1 +kerning first=171 second=221 amount=-1 +kerning first=202 second=315 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=362 second=258 amount=-1 +kerning first=1050 second=1092 amount=-1 +kerning first=350 second=46 amount=-1 +kerning first=196 second=199 amount=-1 +kerning first=1038 second=1101 amount=-1 +kerning first=338 second=249 amount=-1 +kerning first=268 second=199 amount=-1 +kerning first=304 second=199 amount=-1 +kerning first=89 second=249 amount=-1 +kerning first=1065 second=1086 amount=-1 +kerning first=267 second=230 amount=-1 +kerning first=1056 second=1024 amount=-1 +kerning first=68 second=354 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=70 second=350 amount=-1 +kerning first=314 second=267 amount=-1 +kerning first=280 second=217 amount=-1 +kerning first=1053 second=1068 amount=-1 +kerning first=219 second=212 amount=-1 +kerning first=352 second=217 amount=-1 +kerning first=101 second=267 amount=-1 +kerning first=8222 second=226 amount=-1 +kerning first=327 second=212 amount=-1 +kerning first=206 second=267 amount=-1 +kerning first=201 second=8249 amount=-1 +kerning first=72 second=310 amount=-1 +kerning first=245 second=122 amount=-1 +kerning first=78 second=212 amount=-1 +kerning first=225 second=111 amount=-1 +kerning first=296 second=115 amount=-1 +kerning first=346 second=315 amount=-1 +kerning first=8222 second=253 amount=-1 +kerning first=261 second=111 amount=-1 +kerning first=218 second=258 amount=-1 +kerning first=1039 second=1101 amount=-1 +kerning first=345 second=8249 amount=-1 +kerning first=240 second=242 amount=-1 +kerning first=194 second=67 amount=-1 +kerning first=1062 second=1098 amount=-1 +kerning first=369 second=111 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=255 second=254 amount=-1 +kerning first=291 second=254 amount=-1 +kerning first=194 second=44 amount=-1 +kerning first=195 second=218 amount=-1 +kerning first=1050 second=1119 amount=-1 +kerning first=205 second=81 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=220 second=380 amount=-1 +kerning first=272 second=193 amount=-1 +kerning first=279 second=248 amount=-1 +kerning first=230 second=44 amount=-1 +kerning first=1068 second=1027 amount=-1 +kerning first=1039 second=1117 amount=-1 +kerning first=266 second=44 amount=-1 +kerning first=1030 second=1028 amount=-1 +kerning first=66 second=209 amount=-1 +kerning first=370 second=282 amount=-1 +kerning first=314 second=337 amount=-1 +kerning first=72 second=78 amount=-1 +kerning first=334 second=282 amount=-1 +kerning first=213 second=78 amount=-1 +kerning first=298 second=282 amount=-1 +kerning first=1067 second=1097 amount=-1 +kerning first=207 second=248 amount=-1 +kerning first=262 second=282 amount=-1 +kerning first=325 second=72 amount=-1 +kerning first=326 second=291 amount=-1 +kerning first=8250 second=214 amount=-1 +kerning first=217 second=72 amount=-1 +kerning first=1055 second=1055 amount=-1 +kerning first=78 second=227 amount=-1 +kerning first=85 second=282 amount=-1 +kerning first=1053 second=1041 amount=-1 +kerning first=73 second=279 amount=-1 +kerning first=109 second=279 amount=-1 +kerning first=218 second=224 amount=-1 +kerning first=231 second=230 amount=-1 +kerning first=221 second=361 amount=-1 +kerning first=199 second=332 amount=-1 +kerning first=1067 second=1054 amount=-1 +kerning first=249 second=337 amount=-1 +kerning first=274 second=288 amount=-1 +kerning first=327 second=330 amount=-1 +kerning first=70 second=323 amount=-1 +kerning first=206 second=278 amount=-1 +kerning first=327 second=227 amount=-1 +kerning first=374 second=44 amount=-1 +kerning first=224 second=187 amount=-1 +kerning first=212 second=270 amount=-1 +kerning first=108 second=337 amount=-1 +kerning first=202 second=288 amount=-1 +kerning first=260 second=187 amount=-1 +kerning first=109 second=291 amount=-1 +kerning first=1041 second=1050 amount=-1 +kerning first=72 second=337 amount=-1 +kerning first=219 second=227 amount=-1 +kerning first=1067 second=1094 amount=-1 +kerning first=1067 second=1057 amount=-1 +kerning first=8249 second=368 amount=-1 +kerning first=310 second=288 amount=-1 +kerning first=368 second=187 amount=-2 +kerning first=211 second=323 amount=-1 +kerning first=345 second=8222 amount=-1 +kerning first=220 second=338 amount=-1 +kerning first=1055 second=1067 amount=-1 +kerning first=8222 second=199 amount=-1 +kerning first=118 second=314 amount=-1 +kerning first=1051 second=1034 amount=-1 +kerning first=194 second=303 amount=-1 +kerning first=84 second=259 amount=-1 +kerning first=217 second=99 amount=-1 +kerning first=78 second=281 amount=-1 +kerning first=325 second=99 amount=-1 +kerning first=66 second=290 amount=-1 +kerning first=225 second=382 amount=-1 +kerning first=202 second=369 amount=-1 +kerning first=72 second=268 amount=-1 +kerning first=296 second=73 amount=-1 +kerning first=1091 second=1082 amount=-1 +kerning first=223 second=314 amount=-1 +kerning first=83 second=202 amount=-1 +kerning first=289 second=99 amount=-1 +kerning first=1046 second=1091 amount=-1 +kerning first=307 second=8250 amount=-1 +kerning first=368 second=73 amount=-1 +kerning first=207 second=290 amount=-1 +kerning first=333 second=382 amount=-1 +kerning first=271 second=8250 amount=-1 +kerning first=235 second=8250 amount=-1 +kerning first=346 second=369 amount=-1 +kerning first=199 second=8250 amount=-1 +kerning first=310 second=369 amount=-1 +kerning first=245 second=316 amount=-1 +kerning first=1067 second=1089 amount=-1 +kerning first=274 second=369 amount=-1 +kerning first=103 second=347 amount=-1 +kerning first=1031 second=1100 amount=-1 +kerning first=286 second=368 amount=-1 +kerning first=80 second=334 amount=-1 +kerning first=121 second=351 amount=-1 +kerning first=296 second=202 amount=-1 +kerning first=72 second=364 amount=-1 +kerning first=85 second=351 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=368 second=202 amount=-1 +kerning first=90 second=8217 amount=-1 +kerning first=1067 second=1100 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=221 second=334 amount=-1 +kerning first=334 second=351 amount=-1 +kerning first=298 second=351 amount=-1 +kerning first=262 second=351 amount=-1 +kerning first=73 second=264 amount=-1 +kerning first=212 second=82 amount=-1 +kerning first=339 second=8217 amount=-2 +kerning first=1053 second=1092 amount=-1 +kerning first=284 second=82 amount=-1 +kerning first=375 second=8217 amount=-2 +kerning first=321 second=364 amount=-1 +kerning first=1043 second=1091 amount=-1 +kerning first=364 second=338 amount=-1 +kerning first=70 second=296 amount=-1 +kerning first=366 second=101 amount=-1 +kerning first=231 second=8217 amount=-2 +kerning first=213 second=364 amount=-1 +kerning first=330 second=101 amount=-1 +kerning first=277 second=108 amount=-1 +kerning first=290 second=68 amount=-1 +kerning first=207 second=263 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=364 second=365 amount=-1 +kerning first=282 second=216 amount=-1 +kerning first=211 second=296 amount=-1 +kerning first=229 second=45 amount=-1 +kerning first=120 second=171 amount=-1 +kerning first=362 second=68 amount=-1 +kerning first=279 second=263 amount=-1 +kerning first=67 second=103 amount=-1 +kerning first=1048 second=1039 amount=-1 +kerning first=338 second=330 amount=-1 +kerning first=1053 second=1076 amount=-1 +kerning first=225 second=171 amount=-1 +kerning first=302 second=330 amount=-1 +kerning first=220 second=365 amount=-1 +kerning first=261 second=171 amount=-1 +kerning first=227 second=281 amount=-1 +kerning first=218 second=68 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=209 second=97 amount=-1 +kerning first=370 second=351 amount=-1 +kerning first=259 second=287 amount=-1 +kerning first=223 second=287 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=187 second=66 amount=-1 +kerning first=118 second=287 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=362 second=339 amount=-1 +kerning first=326 second=339 amount=-1 +kerning first=367 second=287 amount=-1 +kerning first=281 second=316 amount=-1 +kerning first=1031 second=1031 amount=-1 +kerning first=296 second=100 amount=-1 +kerning first=330 second=103 amount=-1 +kerning first=69 second=66 amount=-1 +kerning first=353 second=316 amount=-1 +kerning first=218 second=339 amount=-1 +kerning first=368 second=100 amount=-1 +kerning first=296 second=229 amount=-1 +kerning first=84 second=382 amount=-1 +kerning first=368 second=229 amount=-1 +kerning first=334 second=304 amount=-1 +kerning first=344 second=220 amount=-1 +kerning first=199 second=278 amount=-1 +kerning first=1043 second=1118 amount=-1 +kerning first=219 second=281 amount=-1 +kerning first=77 second=68 amount=-1 +kerning first=266 second=330 amount=-1 +kerning first=291 second=281 amount=-1 +kerning first=74 second=311 amount=-1 +kerning first=73 second=333 amount=-1 +kerning first=1044 second=1060 amount=-1 +kerning first=350 second=77 amount=-1 +kerning first=327 second=281 amount=-1 +kerning first=1067 second=1031 amount=-1 +kerning first=316 second=103 amount=-1 +kerning first=278 second=77 amount=-1 +kerning first=97 second=246 amount=-1 +kerning first=272 second=220 amount=-1 +kerning first=244 second=103 amount=-1 +kerning first=250 second=333 amount=-1 +kerning first=201 second=304 amount=-1 +kerning first=323 second=362 amount=-1 +kerning first=1047 second=1065 amount=-1 +kerning first=70 second=269 amount=-1 +kerning first=67 second=298 amount=-1 +kerning first=296 second=246 amount=-1 +kerning first=1047 second=1063 amount=-1 +kerning first=232 second=100 amount=-1 +kerning first=193 second=356 amount=-1 +kerning first=8218 second=230 amount=-1 +kerning first=8249 second=87 amount=-1 +kerning first=330 second=74 amount=-1 +kerning first=224 second=246 amount=-1 +kerning first=1057 second=1091 amount=-1 +kerning first=366 second=74 amount=-1 +kerning first=219 second=330 amount=-1 +kerning first=214 second=220 amount=-1 +kerning first=241 second=171 amount=-1 +kerning first=268 second=100 amount=-1 +kerning first=1031 second=1117 amount=-1 +kerning first=106 second=269 amount=-1 +kerning first=352 second=298 amount=-1 +kerning first=78 second=103 amount=-1 +kerning first=209 second=77 amount=-1 +kerning first=355 second=269 amount=-1 +kerning first=206 second=333 amount=-1 +kerning first=364 second=109 amount=-1 +kerning first=8222 second=334 amount=-1 +kerning first=209 second=304 amount=-1 +kerning first=298 second=211 amount=-1 +kerning first=283 second=269 amount=-1 +kerning first=101 second=333 amount=-1 +kerning first=262 second=211 amount=-1 +kerning first=86 second=109 amount=-1 +kerning first=1031 second=1096 amount=-1 +kerning first=289 second=365 amount=-1 +kerning first=115 second=289 amount=-1 +kerning first=270 second=65 amount=-1 +kerning first=98 second=382 amount=-1 +kerning first=217 second=365 amount=-1 +kerning first=281 second=8222 amount=-1 +kerning first=68 second=304 amount=-1 +kerning first=85 second=211 amount=-1 +kerning first=80 second=68 amount=-1 +kerning first=253 second=365 amount=-1 +kerning first=314 second=333 amount=-1 +kerning first=187 second=260 amount=-1 +kerning first=207 second=339 amount=-1 +kerning first=117 second=281 amount=-1 +kerning first=298 second=199 amount=-1 +kerning first=197 second=86 amount=-1 +kerning first=279 second=339 amount=-1 +kerning first=370 second=211 amount=-1 +kerning first=277 second=347 amount=-1 +kerning first=338 second=315 amount=-1 +kerning first=220 second=109 amount=-1 +kerning first=1071 second=1074 amount=-1 +kerning first=205 second=347 amount=-1 +kerning first=330 second=281 amount=-1 +kerning first=1043 second=1108 amount=-1 +kerning first=196 second=307 amount=-1 +kerning first=1048 second=1051 amount=-1 +kerning first=366 second=281 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=346 second=202 amount=-1 +kerning first=1059 second=1083 amount=-1 +kerning first=380 second=8221 amount=-1 +kerning first=282 second=290 amount=-1 +kerning first=1067 second=1117 amount=-1 +kerning first=1049 second=1057 amount=-1 +kerning first=193 second=119 amount=-1 +kerning first=78 second=330 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=200 second=264 amount=-1 +kerning first=235 second=251 amount=-1 +kerning first=277 second=120 amount=-1 +kerning first=274 second=202 amount=-1 +kerning first=8218 second=242 amount=-1 +kerning first=249 second=248 amount=-1 +kerning first=83 second=219 amount=-1 +kerning first=78 second=76 amount=-1 +kerning first=234 second=8217 amount=-2 +kerning first=228 second=269 amount=-1 +kerning first=264 second=77 amount=-1 +kerning first=1057 second=1118 amount=-1 +kerning first=270 second=8217 amount=-2 +kerning first=78 second=8221 amount=-1 +kerning first=325 second=274 amount=-1 +kerning first=114 second=8221 amount=-1 +kerning first=67 second=271 amount=-1 +kerning first=75 second=212 amount=-1 +kerning first=206 second=345 amount=-1 +kerning first=1056 second=1072 amount=-1 +kerning first=217 second=111 amount=-1 +kerning first=315 second=85 amount=-1 +kerning first=291 second=8221 amount=-2 +kerning first=258 second=254 amount=-1 +kerning first=289 second=111 amount=-1 +kerning first=234 second=245 amount=-1 +kerning first=73 second=103 amount=-1 +kerning first=70 second=242 amount=-1 +kerning first=325 second=111 amount=-1 +kerning first=207 second=85 amount=-1 +kerning first=106 second=242 amount=-1 +kerning first=209 second=331 amount=-1 +kerning first=171 second=85 amount=-1 +kerning first=378 second=8217 amount=-1 +kerning first=355 second=242 amount=-1 +kerning first=70 second=279 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=283 second=242 amount=-1 +kerning first=354 second=263 amount=-1 +kerning first=89 second=195 amount=-1 +kerning first=1071 second=1101 amount=-1 +kerning first=195 second=67 amount=-1 +kerning first=328 second=289 amount=-1 +kerning first=1048 second=1024 amount=-1 +kerning first=315 second=366 amount=-1 +kerning first=194 second=288 amount=-1 +kerning first=264 second=203 amount=-1 +kerning first=1051 second=1095 amount=-1 +kerning first=89 second=288 amount=-1 +kerning first=1055 second=1036 amount=-1 +kerning first=219 second=357 amount=-1 +kerning first=367 second=233 amount=-1 +kerning first=374 second=195 amount=-1 +kerning first=313 second=374 amount=-1 +kerning first=105 second=263 amount=-1 +kerning first=327 second=357 amount=-1 +kerning first=364 second=99 amount=-1 +kerning first=327 second=76 amount=-1 +kerning first=291 second=345 amount=-1 +kerning first=291 second=357 amount=-1 +kerning first=73 second=220 amount=-1 +kerning first=268 second=280 amount=-1 +kerning first=78 second=357 amount=-1 +kerning first=8222 second=214 amount=-1 +kerning first=304 second=280 amount=-1 +kerning first=1049 second=1084 amount=-1 +kerning first=219 second=76 amount=-1 +kerning first=368 second=246 amount=-1 +kerning first=201 second=363 amount=-1 +kerning first=199 second=224 amount=-1 +kerning first=257 second=122 amount=-1 +kerning first=210 second=317 amount=-1 +kerning first=362 second=378 amount=-1 +kerning first=205 second=207 amount=-1 +kerning first=282 second=317 amount=-1 +kerning first=253 second=311 amount=-1 +kerning first=1030 second=1104 amount=-1 +kerning first=221 second=122 amount=-1 +kerning first=284 second=201 amount=-1 +kerning first=289 second=311 amount=-1 +kerning first=80 second=122 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=212 second=201 amount=-1 +kerning first=1055 second=1072 amount=-1 +kerning first=199 second=269 amount=-1 +kerning first=171 second=366 amount=-1 +kerning first=1046 second=1118 amount=-1 +kerning first=67 second=244 amount=-1 +kerning first=192 second=116 amount=-1 +kerning first=77 second=378 amount=-1 +kerning first=207 second=366 amount=-1 +kerning first=103 second=244 amount=-1 +kerning first=218 second=204 amount=-1 +kerning first=66 second=366 amount=-1 +kerning first=1043 second=1081 amount=-1 +kerning first=213 second=354 amount=-1 +kerning first=8222 second=100 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=254 second=378 amount=-1 +kerning first=362 second=204 amount=-1 +kerning first=218 second=378 amount=-1 +kerning first=269 second=259 amount=-1 +kerning first=69 second=317 amount=-1 +kerning first=264 second=116 amount=-1 +kerning first=344 second=210 amount=-1 +kerning first=8222 second=307 amount=-1 +kerning first=1044 second=1102 amount=-1 +kerning first=72 second=75 amount=-1 +kerning first=200 second=210 amount=-1 +kerning first=1078 second=1095 amount=-1 +kerning first=220 second=262 amount=-1 +kerning first=1051 second=1049 amount=-1 +kerning first=268 second=73 amount=-1 +kerning first=117 second=335 amount=-1 +kerning first=364 second=262 amount=-1 +kerning first=187 second=206 amount=-1 +kerning first=225 second=345 amount=-1 +kerning first=65 second=213 amount=-1 +kerning first=230 second=369 amount=-1 +kerning first=261 second=345 amount=-1 +kerning first=368 second=219 amount=-1 +kerning first=1027 second=1040 amount=-1 +kerning first=194 second=369 amount=-1 +kerning first=304 second=73 amount=-1 +kerning first=327 second=207 amount=-1 +kerning first=330 second=335 amount=-1 +kerning first=221 second=268 amount=-1 +kerning first=333 second=345 amount=-1 +kerning first=296 second=219 amount=-1 +kerning first=105 second=244 amount=-1 +kerning first=369 second=345 amount=-1 +kerning first=374 second=369 amount=-1 +kerning first=206 second=213 amount=-1 +kerning first=366 second=335 amount=-1 +kerning first=338 second=369 amount=-1 +kerning first=80 second=268 amount=-1 +kerning first=217 second=198 amount=-1 +kerning first=213 second=88 amount=-1 +kerning first=8249 second=86 amount=-1 +kerning first=218 second=231 amount=-1 +kerning first=284 second=368 amount=-1 +kerning first=218 second=351 amount=-1 +kerning first=209 second=277 amount=-1 +kerning first=1036 second=1060 amount=-1 +kerning first=1030 second=1077 amount=-1 +kerning first=264 second=318 amount=-1 +kerning first=1055 second=1099 amount=-1 +kerning first=326 second=231 amount=-1 +kerning first=71 second=368 amount=-1 +kerning first=69 second=290 amount=-1 +kerning first=362 second=351 amount=-1 +kerning first=1071 second=1047 amount=-1 +kerning first=77 second=231 amount=-1 +kerning first=268 second=226 amount=-1 +kerning first=325 second=338 amount=-1 +kerning first=212 second=368 amount=-1 +kerning first=304 second=226 amount=-1 +kerning first=281 second=277 amount=-1 +kerning first=104 second=8249 amount=-1 +kerning first=217 second=279 amount=-1 +kerning first=334 second=200 amount=-1 +kerning first=220 second=82 amount=-1 +kerning first=209 second=8249 amount=-1 +kerning first=217 second=338 amount=-1 +kerning first=1039 second=1031 amount=-1 +kerning first=77 second=351 amount=-1 +kerning first=362 second=231 amount=-1 +kerning first=67 second=217 amount=-1 +kerning first=97 second=283 amount=-1 +kerning first=353 second=8249 amount=-1 +kerning first=1038 second=1089 amount=-1 +kerning first=240 second=8222 amount=-1 +kerning first=253 second=45 amount=-1 +kerning first=214 second=274 amount=-1 +kerning first=289 second=45 amount=-1 +kerning first=197 second=286 amount=-1 +kerning first=1042 second=1068 amount=-1 +kerning first=73 second=274 amount=-1 +kerning first=217 second=171 amount=-2 +kerning first=217 second=45 amount=-2 +kerning first=305 second=113 amount=-1 +kerning first=289 second=171 amount=-1 +kerning first=325 second=171 amount=-1 +kerning first=325 second=45 amount=-1 +kerning first=269 second=113 amount=-1 +kerning first=281 second=104 amount=-1 +kerning first=201 second=70 amount=-1 +kerning first=220 second=235 amount=-1 +kerning first=1042 second=1030 amount=-1 +kerning first=328 second=235 amount=-1 +kerning first=364 second=235 amount=-1 +kerning first=1060 second=1069 amount=-1 +kerning first=286 second=274 amount=-1 +kerning first=207 second=226 amount=-1 +kerning first=333 second=318 amount=-1 +kerning first=199 second=344 amount=-1 +kerning first=206 second=337 amount=-1 +kerning first=45 second=367 amount=-1 +kerning first=207 second=231 amount=-1 +kerning first=217 second=252 amount=-1 +kerning first=1053 second=1053 amount=-1 +kerning first=87 second=284 amount=-1 +kerning first=1054 second=1059 amount=-1 +kerning first=289 second=252 amount=-1 +kerning first=290 second=8217 amount=-1 +kerning first=192 second=284 amount=-1 +kerning first=253 second=252 amount=-1 +kerning first=1030 second=1108 amount=-1 +kerning first=205 second=261 amount=-1 +kerning first=78 second=217 amount=-1 +kerning first=333 second=106 amount=-1 +kerning first=219 second=204 amount=-1 +kerning first=346 second=310 amount=-1 +kerning first=279 second=231 amount=-1 +kerning first=219 second=217 amount=-1 +kerning first=274 second=310 amount=-1 +kerning first=229 second=243 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=8218 second=311 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=1068 second=1034 amount=-1 +kerning first=85 second=81 amount=-1 +kerning first=65 second=45 amount=-1 +kerning first=278 second=45 amount=-1 +kerning first=255 second=249 amount=-1 +kerning first=81 second=221 amount=-1 +kerning first=296 second=332 amount=-1 +kerning first=240 second=275 amount=-1 +kerning first=291 second=249 amount=-1 +kerning first=325 second=330 amount=-1 +kerning first=80 second=214 amount=-1 +kerning first=1040 second=1076 amount=-1 +kerning first=1044 second=1028 amount=-1 +kerning first=267 second=235 amount=-1 +kerning first=99 second=275 amount=-1 +kerning first=1066 second=1050 amount=-1 +kerning first=323 second=80 amount=-1 +kerning first=267 second=240 amount=-1 +kerning first=211 second=362 amount=-1 +kerning first=1058 second=1040 amount=-1 +kerning first=1030 second=1050 amount=-1 +kerning first=221 second=284 amount=-1 +kerning first=204 second=275 amount=-1 +kerning first=368 second=332 amount=-1 +kerning first=8218 second=84 amount=-1 +kerning first=209 second=223 amount=-1 +kerning first=345 second=97 amount=-1 +kerning first=66 second=338 amount=-1 +kerning first=305 second=232 amount=-1 +kerning first=272 second=323 amount=-1 +kerning first=269 second=232 amount=-1 +kerning first=1053 second=1080 amount=-1 +kerning first=74 second=107 amount=-1 +kerning first=233 second=232 amount=-1 +kerning first=66 second=199 amount=-1 +kerning first=200 second=323 amount=-1 +kerning first=187 second=119 amount=-1 +kerning first=66 second=258 amount=-1 +kerning first=199 second=317 amount=-1 +kerning first=201 second=336 amount=-1 +kerning first=89 second=250 amount=-1 +kerning first=207 second=199 amount=-1 +kerning first=1057 second=1044 amount=-1 +kerning first=364 second=370 amount=-1 +kerning first=187 second=326 amount=-1 +kerning first=260 second=8250 amount=-1 +kerning first=334 second=256 amount=-1 +kerning first=116 second=226 amount=-1 +kerning first=107 second=314 amount=-1 +kerning first=264 second=311 amount=-1 +kerning first=100 second=234 amount=-1 +kerning first=201 second=325 amount=-1 +kerning first=275 second=116 amount=-1 +kerning first=119 second=8250 amount=-1 +kerning first=192 second=311 amount=-1 +kerning first=217 second=67 amount=-1 +kerning first=219 second=249 amount=-1 +kerning first=205 second=234 amount=-1 +kerning first=83 second=8250 amount=-1 +kerning first=1048 second=1105 amount=-1 +kerning first=73 second=331 amount=-1 +kerning first=227 second=233 amount=-1 +kerning first=354 second=122 amount=-1 +kerning first=1105 second=1119 amount=-1 +kerning first=277 second=234 amount=-1 +kerning first=1062 second=1088 amount=-1 +kerning first=248 second=314 amount=-1 +kerning first=72 second=327 amount=-1 +kerning first=241 second=234 amount=-1 +kerning first=221 second=241 amount=-1 +kerning first=199 second=110 amount=-1 +kerning first=327 second=217 amount=-1 +kerning first=213 second=327 amount=-1 +kerning first=263 second=98 amount=-1 +kerning first=231 second=267 amount=-1 +kerning first=278 second=72 amount=-1 +kerning first=80 second=241 amount=-1 +kerning first=8218 second=338 amount=-1 +kerning first=193 second=216 amount=-1 +kerning first=1067 second=1036 amount=-1 +kerning first=1044 second=1094 amount=-1 +kerning first=1031 second=1036 amount=-1 +kerning first=72 second=115 amount=-1 +kerning first=284 second=114 amount=-1 +kerning first=1050 second=1097 amount=-1 +kerning first=1036 second=1114 amount=-1 +kerning first=325 second=282 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=106 second=335 amount=-1 +kerning first=1041 second=1062 amount=-1 +kerning first=374 second=109 amount=-1 +kerning first=217 second=225 amount=-1 +kerning first=70 second=335 amount=-1 +kerning first=267 second=267 amount=-1 +kerning first=204 second=302 amount=-1 +kerning first=325 second=225 amount=-1 +kerning first=79 second=370 amount=-1 +kerning first=196 second=46 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=71 second=114 amount=-1 +kerning first=8250 second=192 amount=-1 +kerning first=339 second=267 amount=-1 +kerning first=225 second=318 amount=-1 +kerning first=283 second=335 amount=-1 +kerning first=261 second=318 amount=-1 +kerning first=268 second=46 amount=-1 +kerning first=89 second=290 amount=-1 +kerning first=73 second=355 amount=-1 +kerning first=194 second=81 amount=-1 +kerning first=206 second=353 amount=-1 +kerning first=89 second=81 amount=-1 +kerning first=302 second=81 amount=-1 +kerning first=368 second=78 amount=-1 +kerning first=338 second=81 amount=-1 +kerning first=200 second=296 amount=-1 +kerning first=72 second=273 amount=-1 +kerning first=346 second=364 amount=-1 +kerning first=1068 second=1064 amount=-1 +kerning first=266 second=81 amount=-1 +kerning first=263 second=44 amount=-1 +kerning first=269 second=8222 amount=-1 +kerning first=70 second=223 amount=-1 +kerning first=8218 second=284 amount=-1 +kerning first=86 second=281 amount=-1 +kerning first=1065 second=1098 amount=-1 +kerning first=374 second=81 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=83 second=78 amount=-1 +kerning first=8250 second=332 amount=-1 +kerning first=206 second=72 amount=-1 +kerning first=335 second=44 amount=-1 +kerning first=366 second=227 amount=-1 +kerning first=330 second=227 amount=-1 +kerning first=298 second=346 amount=-1 +kerning first=1048 second=1107 amount=-1 +kerning first=201 second=282 amount=-1 +kerning first=262 second=346 amount=-1 +kerning first=271 second=263 amount=-1 +kerning first=205 second=288 amount=-1 +kerning first=192 second=367 amount=-1 +kerning first=67 second=352 amount=-1 +kerning first=85 second=346 amount=-1 +kerning first=281 second=252 amount=-1 +kerning first=199 second=83 amount=-1 +kerning first=1047 second=1119 amount=-1 +kerning first=97 second=337 amount=-1 +kerning first=83 second=278 amount=-1 +kerning first=369 second=291 amount=-1 +kerning first=333 second=291 amount=-1 +kerning first=264 second=230 amount=-1 +kerning first=261 second=291 amount=-1 +kerning first=225 second=291 amount=-1 +kerning first=370 second=346 amount=-1 +kerning first=120 second=291 amount=-1 +kerning first=87 second=230 amount=-1 +kerning first=87 second=257 amount=-1 +kerning first=81 second=200 amount=-1 +kerning first=1047 second=1055 amount=-1 +kerning first=289 second=279 amount=-1 +kerning first=70 second=74 amount=-1 +kerning first=108 second=246 amount=-1 +kerning first=368 second=278 amount=-1 +kerning first=45 second=200 amount=-1 +kerning first=325 second=279 amount=-1 +kerning first=72 second=246 amount=-1 +kerning first=266 second=108 amount=-1 +kerning first=45 second=220 amount=-1 +kerning first=231 second=369 amount=-1 +kerning first=1104 second=1091 amount=-1 +kerning first=352 second=325 amount=-1 +kerning first=70 second=362 amount=-1 +kerning first=8222 second=361 amount=-1 +kerning first=192 second=84 amount=-1 +kerning first=217 second=231 amount=-1 +kerning first=80 second=187 amount=-1 +kerning first=115 second=316 amount=-1 +kerning first=73 second=382 amount=-1 +kerning first=206 second=99 amount=-1 +kerning first=204 second=75 amount=-1 +kerning first=330 second=200 amount=-1 +kerning first=1076 second=1103 amount=-1 +kerning first=1048 second=1091 amount=-1 +kerning first=213 second=8218 amount=-1 +kerning first=204 second=109 amount=-1 +kerning first=314 second=99 amount=-1 +kerning first=75 second=266 amount=-1 +kerning first=1080 second=1095 amount=-1 +kerning first=187 second=65 amount=-1 +kerning first=72 second=8218 amount=-1 +kerning first=221 second=187 amount=-1 +kerning first=259 second=380 amount=-1 +kerning first=223 second=380 amount=-1 +kerning first=112 second=8220 amount=-2 +kerning first=1041 second=1098 amount=-1 +kerning first=240 second=248 amount=-1 +kerning first=268 second=334 amount=-1 +kerning first=218 second=117 amount=-1 +kerning first=1059 second=1108 amount=-1 +kerning first=213 second=202 amount=-1 +kerning first=196 second=334 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=270 second=218 amount=-1 +kerning first=212 second=260 amount=-1 +kerning first=362 second=117 amount=-1 +kerning first=323 second=218 amount=-1 +kerning first=1048 second=1099 amount=-1 +kerning first=198 second=218 amount=-1 +kerning first=204 second=248 amount=-1 +kerning first=304 second=334 amount=-1 +kerning first=99 second=8220 amount=-2 +kerning first=310 second=364 amount=-1 +kerning first=282 second=209 amount=-1 +kerning first=1055 second=1092 amount=-1 +kerning first=274 second=364 amount=-1 +kerning first=258 second=367 amount=-1 +kerning first=67 second=325 amount=-1 +kerning first=210 second=209 amount=-1 +kerning first=366 second=367 amount=-1 +kerning first=202 second=364 amount=-1 +kerning first=288 second=66 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=264 second=257 amount=-1 +kerning first=194 second=108 amount=-1 +kerning first=1068 second=1042 amount=-1 +kerning first=195 second=121 amount=-1 +kerning first=240 second=8220 amount=-2 +kerning first=200 second=69 amount=-1 +kerning first=230 second=108 amount=-1 +kerning first=69 second=209 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=224 second=232 amount=-1 +kerning first=338 second=68 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=45 second=212 amount=-1 +kerning first=118 second=380 amount=-1 +kerning first=1053 second=1107 amount=-1 +kerning first=368 second=80 amount=-1 +kerning first=366 second=69 amount=-1 +kerning first=353 second=8217 amount=-2 +kerning first=255 second=108 amount=-1 +kerning first=80 second=290 amount=-1 +kerning first=330 second=69 amount=-1 +kerning first=288 second=364 amount=-1 +kerning first=70 second=264 amount=-1 +kerning first=83 second=251 amount=-1 +kerning first=119 second=251 amount=-1 +kerning first=221 second=290 amount=-1 +kerning first=208 second=8221 amount=-2 +kerning first=278 second=338 amount=-1 +kerning first=1049 second=1039 amount=-1 +kerning first=234 second=277 amount=-1 +kerning first=368 second=251 amount=-1 +kerning first=245 second=8217 amount=-2 +kerning first=231 second=316 amount=-1 +kerning first=206 second=338 amount=-1 +kerning first=195 second=316 amount=-1 +kerning first=1058 second=1072 amount=-1 +kerning first=317 second=8217 amount=-1 +kerning first=192 second=355 amount=-1 +kerning first=103 second=8221 amount=-2 +kerning first=45 second=69 amount=-1 +kerning first=330 second=286 amount=-1 +kerning first=267 second=316 amount=-1 +kerning first=366 second=286 amount=-1 +kerning first=375 second=316 amount=-1 +kerning first=339 second=316 amount=-1 +kerning first=235 second=273 amount=-1 +kerning first=81 second=69 amount=-1 +kerning first=65 second=338 amount=-1 +kerning first=280 second=8221 amount=-1 +kerning first=199 second=273 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=316 second=8221 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=231 second=99 amount=-1 +kerning first=374 second=347 amount=-1 +kerning first=209 second=82 amount=-1 +kerning first=8218 second=225 amount=-1 +kerning first=258 second=286 amount=-1 +kerning first=210 second=78 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=228 second=171 amount=-1 +kerning first=1048 second=1056 amount=-1 +kerning first=264 second=171 amount=-1 +kerning first=282 second=78 amount=-1 +kerning first=1071 second=1069 amount=-1 +kerning first=221 second=212 amount=-1 +kerning first=1044 second=1086 amount=-1 +kerning first=217 second=333 amount=-1 +kerning first=243 second=114 amount=-1 +kerning first=1058 second=1082 amount=-1 +kerning first=264 second=355 amount=-1 +kerning first=69 second=78 amount=-1 +kerning first=187 second=282 amount=-1 +kerning first=290 second=73 amount=-1 +kerning first=68 second=8217 amount=-2 +kerning first=363 second=103 amount=-1 +kerning first=219 second=325 amount=-1 +kerning first=279 second=117 amount=-1 +kerning first=8250 second=278 amount=-1 +kerning first=204 second=346 amount=-1 +kerning first=356 second=233 amount=-1 +kerning first=87 second=171 amount=-2 +kerning first=192 second=171 amount=-1 +kerning first=327 second=325 amount=-1 +kerning first=325 second=362 amount=-1 +kerning first=87 second=382 amount=-1 +kerning first=203 second=220 amount=-1 +kerning first=80 second=100 amount=-1 +kerning first=278 second=216 amount=-1 +kerning first=280 second=330 amount=-1 +kerning first=327 second=298 amount=-1 +kerning first=228 second=382 amount=-1 +kerning first=302 second=103 amount=-1 +kerning first=307 second=246 amount=-1 +kerning first=198 second=304 amount=-1 +kerning first=264 second=382 amount=-1 +kerning first=266 second=103 amount=-1 +kerning first=271 second=246 amount=-1 +kerning first=80 second=263 amount=-1 +kerning first=235 second=246 amount=-1 +kerning first=270 second=304 amount=-1 +kerning first=116 second=263 amount=-1 +kerning first=221 second=100 amount=-1 +kerning first=199 second=246 amount=-1 +kerning first=364 second=77 amount=-1 +kerning first=307 second=8218 amount=-1 +kerning first=74 second=211 amount=-1 +kerning first=230 second=245 amount=-1 +kerning first=65 second=366 amount=-1 +kerning first=89 second=103 amount=-1 +kerning first=368 second=224 amount=-1 +kerning first=304 second=68 amount=-1 +kerning first=235 second=8218 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=325 second=333 amount=-1 +kerning first=8222 second=366 amount=-1 +kerning first=278 second=365 amount=-1 +kerning first=296 second=224 amount=-1 +kerning first=267 second=289 amount=-1 +kerning first=330 second=313 amount=-1 +kerning first=1043 second=1113 amount=-1 +kerning first=325 second=203 amount=-1 +kerning first=231 second=289 amount=-1 +kerning first=366 second=313 amount=-1 +kerning first=211 second=86 amount=-1 +kerning first=339 second=289 amount=-1 +kerning first=65 second=365 amount=-1 +kerning first=268 second=68 amount=-1 +kerning first=101 second=365 amount=-1 +kerning first=98 second=8250 amount=-1 +kerning first=302 second=347 amount=-1 +kerning first=113 second=8220 amount=-2 +kerning first=233 second=281 amount=-1 +kerning first=1103 second=1095 amount=-1 +kerning first=77 second=85 amount=-1 +kerning first=77 second=8220 amount=-1 +kerning first=269 second=281 amount=-1 +kerning first=87 second=111 amount=-1 +kerning first=218 second=8220 amount=-1 +kerning first=305 second=281 amount=-1 +kerning first=305 second=118 amount=-1 +kerning first=266 second=347 amount=-1 +kerning first=290 second=8220 amount=-1 +kerning first=187 second=255 amount=-1 +kerning first=45 second=313 amount=-1 +kerning first=228 second=111 amount=-1 +kerning first=254 second=8220 amount=-2 +kerning first=289 second=369 amount=-1 +kerning first=81 second=313 amount=-1 +kerning first=323 second=211 amount=-1 +kerning first=264 second=111 amount=-1 +kerning first=362 second=8220 amount=-1 +kerning first=1031 second=1095 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=326 second=8220 amount=-2 +kerning first=1038 second=1057 amount=-1 +kerning first=1071 second=1042 amount=-1 +kerning first=370 second=233 amount=-1 +kerning first=220 second=77 amount=-1 +kerning first=1049 second=1119 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=1048 second=1083 amount=-1 +kerning first=78 second=298 amount=-1 +kerning first=205 second=315 amount=-1 +kerning first=219 second=298 amount=-1 +kerning first=304 second=339 amount=-1 +kerning first=71 second=206 amount=-1 +kerning first=268 second=310 amount=-1 +kerning first=268 second=339 amount=-1 +kerning first=197 second=118 amount=-1 +kerning first=284 second=206 amount=-1 +kerning first=78 second=271 amount=-1 +kerning first=266 second=76 amount=-1 +kerning first=87 second=225 amount=-1 +kerning first=65 second=284 amount=-1 +kerning first=117 second=232 amount=-1 +kerning first=1059 second=1105 amount=-1 +kerning first=370 second=209 amount=-1 +kerning first=199 second=219 amount=-1 +kerning first=280 second=357 amount=-1 +kerning first=1118 second=1118 amount=-1 +kerning first=366 second=232 amount=-1 +kerning first=219 second=271 amount=-1 +kerning first=330 second=232 amount=-1 +kerning first=233 second=335 amount=-1 +kerning first=327 second=271 amount=-1 +kerning first=264 second=225 amount=-1 +kerning first=1071 second=1054 amount=-1 +kerning first=362 second=85 amount=-1 +kerning first=1043 second=1086 amount=-1 +kerning first=252 second=234 amount=-1 +kerning first=277 second=98 amount=-1 +kerning first=201 second=213 amount=-1 +kerning first=290 second=85 amount=-1 +kerning first=324 second=234 amount=-1 +kerning first=198 second=8249 amount=-1 +kerning first=218 second=85 amount=-1 +kerning first=330 second=235 amount=-1 +kerning first=86 second=229 amount=-1 +kerning first=375 second=289 amount=-1 +kerning first=368 second=197 amount=-1 +kerning first=221 second=46 amount=-1 +kerning first=1031 second=1068 amount=-1 +kerning first=204 second=216 amount=-1 +kerning first=233 second=101 amount=-1 +kerning first=199 second=68 amount=-1 +kerning first=66 second=280 amount=-1 +kerning first=196 second=366 amount=-1 +kerning first=1049 second=1095 amount=-1 +kerning first=8222 second=314 amount=-1 +kerning first=8218 second=226 amount=-1 +kerning first=80 second=344 amount=-1 +kerning first=206 second=67 amount=-1 +kerning first=103 second=357 amount=-1 +kerning first=65 second=67 amount=-1 +kerning first=234 second=250 amount=-1 +kerning first=67 second=357 amount=-1 +kerning first=1055 second=1077 amount=-1 +kerning first=278 second=284 amount=-1 +kerning first=198 second=250 amount=-1 +kerning first=219 second=195 amount=-1 +kerning first=1042 second=1090 amount=-1 +kerning first=68 second=353 amount=-1 +kerning first=263 second=229 amount=-1 +kerning first=209 second=353 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=1047 second=1114 amount=-1 +kerning first=330 second=259 amount=-1 +kerning first=259 second=333 amount=-1 +kerning first=281 second=353 amount=-1 +kerning first=364 second=196 amount=-1 +kerning first=302 second=76 amount=-1 +kerning first=206 second=284 amount=-1 +kerning first=338 second=76 amount=-1 +kerning first=288 second=207 amount=-1 +kerning first=370 second=70 amount=-1 +kerning first=366 second=259 amount=-1 +kerning first=325 second=116 amount=-1 +kerning first=289 second=116 amount=-1 +kerning first=195 second=213 amount=-1 +kerning first=65 second=311 amount=-1 +kerning first=1051 second=1071 amount=-1 +kerning first=277 second=369 amount=-1 +kerning first=101 second=311 amount=-1 +kerning first=1064 second=1053 amount=-1 +kerning first=262 second=70 amount=-1 +kerning first=232 second=122 amount=-1 +kerning first=1042 second=1117 amount=-1 +kerning first=78 second=244 amount=-1 +kerning first=298 second=70 amount=-1 +kerning first=268 second=122 amount=-1 +kerning first=334 second=70 amount=-1 +kerning first=187 second=203 amount=-1 +kerning first=229 second=378 amount=-1 +kerning first=219 second=244 amount=-1 +kerning first=316 second=113 amount=-1 +kerning first=66 second=204 amount=-1 +kerning first=8218 second=252 amount=-1 +kerning first=270 second=8222 amount=-1 +kerning first=291 second=244 amount=-1 +kerning first=187 second=201 amount=-1 +kerning first=234 second=8222 amount=-1 +kerning first=327 second=244 amount=-1 +kerning first=103 second=113 amount=-1 +kerning first=212 second=366 amount=-1 +kerning first=217 second=116 amount=-1 +kerning first=198 second=8222 amount=-1 +kerning first=363 second=244 amount=-1 +kerning first=337 second=378 amount=-1 +kerning first=207 second=204 amount=-1 +kerning first=225 second=316 amount=-1 +kerning first=67 second=113 amount=-1 +kerning first=88 second=85 amount=-1 +kerning first=195 second=262 amount=-1 +kerning first=250 second=244 amount=-1 +kerning first=1042 second=1102 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=362 second=302 amount=-1 +kerning first=1050 second=1102 amount=-1 +kerning first=220 second=71 amount=-1 +kerning first=1055 second=1050 amount=-1 +kerning first=1058 second=1104 amount=-1 +kerning first=290 second=302 amount=-1 +kerning first=1036 second=1038 amount=-1 +kerning first=72 second=332 amount=-1 +kerning first=86 second=256 amount=-1 +kerning first=282 second=268 amount=-1 +kerning first=218 second=302 amount=-1 +kerning first=1071 second=1096 amount=-1 +kerning first=305 second=335 amount=-1 +kerning first=70 second=210 amount=-1 +kerning first=77 second=302 amount=-1 +kerning first=80 second=73 amount=-1 +kerning first=193 second=107 amount=-1 +kerning first=87 second=198 amount=-1 +kerning first=1047 second=1087 amount=-1 +kerning first=8220 second=347 amount=-1 +kerning first=1039 second=1053 amount=-1 +kerning first=69 second=268 amount=-1 +kerning first=206 second=77 amount=-1 +kerning first=45 second=362 amount=-1 +kerning first=74 second=75 amount=-1 +kerning first=211 second=354 amount=-1 +kerning first=1071 second=1070 amount=-1 +kerning first=210 second=187 amount=-1 +kerning first=81 second=362 amount=-1 +kerning first=89 second=244 amount=-1 +kerning first=370 second=97 amount=-1 +kerning first=45 second=75 amount=-1 +kerning first=213 second=8250 amount=-1 +kerning first=1041 second=1067 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=258 second=362 amount=-1 +kerning first=8250 second=197 amount=-1 +kerning first=220 second=213 amount=-1 +kerning first=266 second=244 amount=-1 +kerning first=1067 second=1041 amount=-1 +kerning first=87 second=279 amount=-1 +kerning first=302 second=244 amount=-1 +kerning first=72 second=8250 amount=-1 +kerning first=1031 second=1041 amount=-1 +kerning first=227 second=283 amount=-1 +kerning first=86 second=283 amount=-1 +kerning first=374 second=244 amount=-1 +kerning first=83 second=327 amount=-1 +kerning first=205 second=266 amount=-1 +kerning first=364 second=213 amount=-1 +kerning first=105 second=187 amount=-1 +kerning first=264 second=279 amount=-1 +kerning first=8217 second=120 amount=-1 +kerning first=187 second=211 amount=-1 +kerning first=69 second=187 amount=-1 +kerning first=228 second=279 amount=-1 +kerning first=1075 second=1102 amount=-1 +kerning first=80 second=209 amount=-1 +kerning first=116 second=113 amount=-1 +kerning first=296 second=327 amount=-1 +kerning first=195 second=288 amount=-1 +kerning first=362 second=115 amount=-1 +kerning first=368 second=327 amount=-1 +kerning first=1042 second=1036 amount=-1 +kerning first=283 second=367 amount=-1 +kerning first=1052 second=1062 amount=-1 +kerning first=270 second=196 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=263 second=283 amount=-1 +kerning first=317 second=218 amount=-1 +kerning first=296 second=110 amount=-1 +kerning first=70 second=367 amount=-1 +kerning first=330 second=205 amount=-1 +kerning first=85 second=70 amount=-1 +kerning first=204 second=270 amount=-1 +kerning first=368 second=110 amount=-1 +kerning first=325 second=257 amount=-1 +kerning first=203 second=274 amount=-1 +kerning first=234 second=380 amount=-1 +kerning first=85 second=317 amount=-1 +kerning first=366 second=205 amount=-1 +kerning first=338 second=296 amount=-1 +kerning first=219 second=367 amount=-1 +kerning first=82 second=114 amount=-1 +kerning first=192 second=252 amount=-1 +kerning first=296 second=338 amount=-1 +kerning first=1049 second=1047 amount=-1 +kerning first=187 second=114 amount=-1 +kerning first=259 second=8249 amount=-1 +kerning first=217 second=284 amount=-1 +kerning first=1030 second=1072 amount=-1 +kerning first=118 second=114 amount=-1 +kerning first=367 second=8249 amount=-1 +kerning first=1040 second=1098 amount=-1 +kerning first=45 second=205 amount=-1 +kerning first=81 second=205 amount=-1 +kerning first=232 second=231 amount=-1 +kerning first=268 second=231 amount=-1 +kerning first=194 second=217 amount=-1 +kerning first=200 second=217 amount=-1 +kerning first=304 second=231 amount=-1 +kerning first=266 second=217 amount=-1 +kerning first=69 second=214 amount=-1 +kerning first=69 second=344 amount=-1 +kerning first=302 second=217 amount=-1 +kerning first=210 second=344 amount=-1 +kerning first=338 second=217 amount=-1 +kerning first=87 second=252 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=118 second=8249 amount=-1 +kerning first=280 second=249 amount=-1 +kerning first=206 second=235 amount=-1 +kerning first=316 second=249 amount=-1 +kerning first=243 second=8218 amount=-1 +kerning first=270 second=353 amount=-1 +kerning first=352 second=249 amount=-1 +kerning first=365 second=248 amount=-1 +kerning first=1052 second=1089 amount=-1 +kerning first=234 second=353 amount=-1 +kerning first=314 second=235 amount=-1 +kerning first=103 second=249 amount=-1 +kerning first=200 second=345 amount=-1 +kerning first=75 second=71 amount=-1 +kerning first=229 second=275 amount=-1 +kerning first=366 second=362 amount=-1 +kerning first=204 second=80 amount=-1 +kerning first=330 second=362 amount=-1 +kerning first=344 second=345 amount=-1 +kerning first=262 second=97 amount=-1 +kerning first=99 second=243 amount=-1 +kerning first=298 second=97 amount=-1 +kerning first=231 second=45 amount=-1 +kerning first=77 second=226 amount=-1 +kerning first=325 second=284 amount=-1 +kerning first=296 second=83 amount=-1 +kerning first=198 second=223 amount=-1 +kerning first=1064 second=1080 amount=-1 +kerning first=72 second=278 amount=-1 +kerning first=8250 second=381 amount=-1 +kerning first=368 second=83 amount=-1 +kerning first=218 second=226 amount=-1 +kerning first=240 second=243 amount=-1 +kerning first=1042 second=1063 amount=-1 +kerning first=77 second=199 amount=-1 +kerning first=104 second=245 amount=-1 +kerning first=1049 second=1079 amount=-1 +kerning first=263 second=337 amount=-1 +kerning first=86 second=120 amount=-1 +kerning first=213 second=278 amount=-1 +kerning first=227 second=337 amount=-1 +kerning first=218 second=199 amount=-1 +kerning first=1078 second=1079 amount=-1 +kerning first=368 second=8218 amount=-2 +kerning first=66 second=361 amount=-1 +kerning first=86 second=337 amount=-1 +kerning first=263 second=120 amount=-1 +kerning first=362 second=199 amount=-1 +kerning first=8250 second=327 amount=-1 +kerning first=282 second=344 amount=-1 +kerning first=119 second=8218 amount=-1 +kerning first=84 second=269 amount=-1 +kerning first=83 second=8218 amount=-1 +kerning first=332 second=8218 amount=-1 +kerning first=211 second=313 amount=-1 +kerning first=98 second=291 amount=-1 +kerning first=80 second=88 amount=-1 +kerning first=261 second=269 amount=-1 +kerning first=209 second=245 amount=-1 +kerning first=193 second=221 amount=-1 +kerning first=1036 second=1092 amount=-1 +kerning first=99 second=324 amount=-1 +kerning first=352 second=330 amount=-1 +kerning first=369 second=269 amount=-1 +kerning first=8250 second=110 amount=-1 +kerning first=258 second=118 amount=-1 +kerning first=217 second=203 amount=-1 +kerning first=70 second=313 amount=-1 +kerning first=275 second=111 amount=-1 +kerning first=337 second=8220 amount=-2 +kerning first=212 second=65 amount=-1 +kerning first=197 second=254 amount=-1 +kerning first=233 second=254 amount=-1 +kerning first=356 second=8222 amount=-1 +kerning first=194 second=374 amount=-1 +kerning first=335 second=120 amount=-1 +kerning first=374 second=337 amount=-1 +kerning first=221 second=263 amount=-1 +kerning first=328 second=267 amount=-1 +kerning first=367 second=114 amount=-1 +kerning first=350 second=8249 amount=-1 +kerning first=257 second=263 amount=-1 +kerning first=364 second=267 amount=-1 +kerning first=1077 second=1094 amount=-1 +kerning first=1064 second=1107 amount=-1 +kerning first=45 second=118 amount=-1 +kerning first=205 second=212 amount=-1 +kerning first=259 second=114 amount=-1 +kerning first=365 second=263 amount=-1 +kerning first=88 second=8220 amount=-1 +kerning first=267 second=314 amount=-1 +kerning first=223 second=114 amount=-1 +kerning first=280 second=264 amount=-1 +kerning first=8217 second=364 amount=-1 +kerning first=220 second=267 amount=-1 +kerning first=288 second=315 amount=-1 +kerning first=193 second=8220 amount=-2 +kerning first=195 second=370 amount=-1 +kerning first=211 second=69 amount=-1 +kerning first=214 second=193 amount=-1 +kerning first=86 second=361 amount=-1 +kerning first=8250 second=354 amount=-1 +kerning first=368 second=273 amount=-1 +kerning first=8220 second=217 amount=-1 +kerning first=8222 second=370 amount=-1 +kerning first=1049 second=1052 amount=-1 +kerning first=219 second=81 amount=-1 +kerning first=296 second=273 amount=-1 +kerning first=78 second=81 amount=-1 +kerning first=108 second=251 amount=-1 +kerning first=70 second=69 amount=-1 +kerning first=218 second=355 amount=-1 +kerning first=327 second=81 amount=-1 +kerning first=75 second=44 amount=-1 +kerning first=84 second=281 amount=-1 +kerning first=66 second=334 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=209 second=218 amount=-1 +kerning first=8218 second=89 amount=-2 +kerning first=203 second=355 amount=-1 +kerning first=207 second=334 amount=-1 +kerning first=89 second=8217 amount=-1 +kerning first=199 second=78 amount=-1 +kerning first=229 second=248 amount=-1 +kerning first=288 second=44 amount=-1 +kerning first=1054 second=1027 amount=-1 +kerning first=216 second=44 amount=-1 +kerning first=225 second=242 amount=-1 +kerning first=339 second=99 amount=-1 +kerning first=78 second=352 amount=-1 +kerning first=261 second=242 amount=-1 +kerning first=74 second=346 amount=-1 +kerning first=267 second=99 amount=-1 +kerning first=219 second=352 amount=-1 +kerning first=1034 second=1024 amount=-1 +kerning first=217 second=230 amount=-1 +kerning first=1070 second=1024 amount=-1 +kerning first=325 second=230 amount=-1 +kerning first=214 second=187 amount=-1 +kerning first=8222 second=339 amount=-1 +kerning first=71 second=282 amount=-1 +kerning first=323 second=290 amount=-1 +kerning first=327 second=352 amount=-1 +kerning first=78 second=332 amount=-1 +kerning first=323 second=346 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=1071 second=1094 amount=-1 +kerning first=187 second=87 amount=-2 +kerning first=268 second=366 amount=-1 +kerning first=75 second=288 amount=-1 +kerning first=1031 second=1107 amount=-1 +kerning first=205 second=230 amount=-1 +kerning first=1033 second=1052 amount=-1 +kerning first=264 second=233 amount=-1 +kerning first=262 second=288 amount=-1 +kerning first=298 second=288 amount=-1 +kerning first=8218 second=220 amount=-1 +kerning first=304 second=333 amount=-1 +kerning first=249 second=291 amount=-1 +kerning first=68 second=87 amount=-1 +kerning first=1069 second=1052 amount=-1 +kerning first=199 second=81 amount=-1 +kerning first=1059 second=1046 amount=-1 +kerning first=108 second=291 amount=-1 +kerning first=231 second=224 amount=-1 +kerning first=250 second=337 amount=-1 +kerning first=354 second=8218 amount=-1 +kerning first=86 second=334 amount=-1 +kerning first=1066 second=1061 amount=-1 +kerning first=267 second=283 amount=-1 +kerning first=1034 second=1098 amount=-1 +kerning first=109 second=337 amount=-1 +kerning first=1042 second=1027 amount=-1 +kerning first=73 second=337 amount=-1 +kerning first=85 second=288 amount=-1 +kerning first=81 second=84 amount=-1 +kerning first=267 second=224 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=1051 second=1119 amount=-1 +kerning first=229 second=99 amount=-1 +kerning first=105 second=8218 amount=-1 +kerning first=269 second=8221 amount=-2 +kerning first=69 second=8218 amount=-1 +kerning first=305 second=8221 amount=-1 +kerning first=1053 second=1064 amount=-1 +kerning first=302 second=111 amount=-1 +kerning first=1047 second=1095 amount=-1 +kerning first=377 second=8221 amount=-1 +kerning first=282 second=8218 amount=-1 +kerning first=246 second=8218 amount=-1 +kerning first=210 second=8218 amount=-1 +kerning first=335 second=187 amount=-1 +kerning first=368 second=196 amount=-1 +kerning first=229 second=279 amount=-1 +kerning first=1044 second=1104 amount=-1 +kerning first=209 second=171 amount=-1 +kerning first=86 second=187 amount=-1 +kerning first=289 second=328 amount=-1 +kerning first=1042 second=1041 amount=-1 +kerning first=296 second=209 amount=-1 +kerning first=205 second=364 amount=-1 +kerning first=258 second=264 amount=-1 +kerning first=264 second=66 amount=-1 +kerning first=195 second=371 amount=-1 +kerning first=199 second=261 amount=-1 +kerning first=197 second=316 amount=-1 +kerning first=67 second=368 amount=-1 +kerning first=323 second=69 amount=-1 +kerning first=226 second=108 amount=-1 +kerning first=262 second=209 amount=-1 +kerning first=269 second=316 amount=-1 +kerning first=83 second=209 amount=-1 +kerning first=262 second=108 amount=-1 +kerning first=1050 second=1073 amount=-1 +kerning first=198 second=202 amount=-1 +kerning first=233 second=316 amount=-1 +kerning first=304 second=257 amount=-1 +kerning first=45 second=264 amount=-1 +kerning first=121 second=108 amount=-1 +kerning first=1052 second=1031 amount=-1 +kerning first=1050 second=1086 amount=-1 +kerning first=268 second=257 amount=-1 +kerning first=270 second=202 amount=-1 +kerning first=201 second=116 amount=-1 +kerning first=280 second=368 amount=-1 +kerning first=264 second=380 amount=-1 +kerning first=1049 second=1027 amount=-1 +kerning first=197 second=303 amount=-1 +kerning first=352 second=368 amount=-1 +kerning first=268 second=270 amount=-1 +kerning first=87 second=367 amount=-1 +kerning first=1031 second=1113 amount=-1 +kerning first=304 second=270 amount=-1 +kerning first=104 second=281 amount=-1 +kerning first=327 second=273 amount=-1 +kerning first=193 second=211 amount=-1 +kerning first=1119 second=1095 amount=-1 +kerning first=313 second=364 amount=-1 +kerning first=74 second=69 amount=-1 +kerning first=368 second=209 amount=-1 +kerning first=1039 second=1034 amount=-1 +kerning first=219 second=273 amount=-1 +kerning first=231 second=44 amount=-1 +kerning first=274 second=252 amount=-1 +kerning first=267 second=44 amount=-1 +kerning first=99 second=8249 amount=-1 +kerning first=280 second=355 amount=-1 +kerning first=346 second=252 amount=-1 +kerning first=78 second=273 amount=-1 +kerning first=362 second=214 amount=-1 +kerning first=310 second=252 amount=-1 +kerning first=375 second=44 amount=-1 +kerning first=212 second=78 amount=-1 +kerning first=87 second=380 amount=-1 +kerning first=80 second=205 amount=-1 +kerning first=228 second=380 amount=-1 +kerning first=284 second=78 amount=-1 +kerning first=67 second=355 amount=-1 +kerning first=362 second=227 amount=-1 +kerning first=213 second=8221 amount=-2 +kerning first=302 second=325 amount=-1 +kerning first=235 second=248 amount=-1 +kerning first=1047 second=1082 amount=-1 +kerning first=266 second=325 amount=-1 +kerning first=77 second=214 amount=-1 +kerning first=199 second=248 amount=-1 +kerning first=187 second=117 amount=-1 +kerning first=8218 second=233 amount=-1 +kerning first=70 second=346 amount=-1 +kerning first=307 second=248 amount=-1 +kerning first=338 second=325 amount=-1 +kerning first=71 second=78 amount=-1 +kerning first=271 second=248 amount=-1 +kerning first=67 second=224 amount=-1 +kerning first=317 second=87 amount=-1 +kerning first=202 second=252 amount=-1 +kerning first=218 second=214 amount=-1 +kerning first=83 second=330 amount=-1 +kerning first=283 second=333 amount=-1 +kerning first=86 second=347 amount=-1 +kerning first=350 second=75 amount=-1 +kerning first=192 second=220 amount=-1 +kerning first=1056 second=1042 amount=-1 +kerning first=1031 second=1092 amount=-1 +kerning first=1044 second=1117 amount=-1 +kerning first=73 second=350 amount=-1 +kerning first=8250 second=317 amount=-1 +kerning first=365 second=339 amount=-1 +kerning first=1066 second=1048 amount=-1 +kerning first=8217 second=334 amount=-1 +kerning first=199 second=382 amount=-1 +kerning first=101 second=289 amount=-1 +kerning first=1030 second=1048 amount=-1 +kerning first=355 second=333 amount=-1 +kerning first=235 second=382 amount=-1 +kerning first=242 second=289 amount=-1 +kerning first=304 second=103 amount=-1 +kerning first=99 second=171 amount=-1 +kerning first=368 second=330 amount=-1 +kerning first=268 second=103 amount=-1 +kerning first=264 second=246 amount=-1 +kerning first=209 second=100 amount=-1 +kerning first=314 second=289 amount=-1 +kerning first=232 second=103 amount=-1 +kerning first=228 second=246 amount=-1 +kerning first=8222 second=332 amount=-1 +kerning first=281 second=100 amount=-1 +kerning first=72 second=270 amount=-1 +kerning first=264 second=220 amount=-1 +kerning first=70 second=333 amount=-1 +kerning first=304 second=77 amount=-1 +kerning first=368 second=201 amount=-1 +kerning first=106 second=333 amount=-1 +kerning first=87 second=246 amount=-1 +kerning first=350 second=82 amount=-1 +kerning first=8222 second=378 amount=-1 +kerning first=1056 second=1068 amount=-1 +kerning first=296 second=330 amount=-1 +kerning first=268 second=77 amount=-1 +kerning first=67 second=273 amount=-1 +kerning first=274 second=85 amount=-1 +kerning first=335 second=8250 amount=-1 +kerning first=275 second=333 amount=-1 +kerning first=266 second=338 amount=-1 +kerning first=202 second=85 amount=-1 +kerning first=213 second=304 amount=-1 +kerning first=194 second=338 amount=-1 +kerning first=271 second=8249 amount=-1 +kerning first=374 second=8217 amount=-1 +kerning first=246 second=120 amount=-1 +kerning first=89 second=338 amount=-1 +kerning first=195 second=211 amount=-1 +kerning first=72 second=304 amount=-1 +kerning first=282 second=313 amount=-1 +kerning first=220 second=332 amount=-1 +kerning first=271 second=382 amount=-1 +kerning first=257 second=339 amount=-1 +kerning first=187 second=364 amount=-1 +kerning first=221 second=339 amount=-1 +kerning first=203 second=298 amount=-1 +kerning first=1042 second=1025 amount=-1 +kerning first=69 second=371 amount=-1 +kerning first=242 second=8221 amount=-2 +kerning first=364 second=332 amount=-1 +kerning first=80 second=339 amount=-1 +kerning first=193 second=86 amount=-1 +kerning first=206 second=109 amount=-1 +kerning first=263 second=347 amount=-1 +kerning first=1030 second=1074 amount=-1 +kerning first=210 second=313 amount=-1 +kerning first=366 second=264 amount=-1 +kerning first=197 second=290 amount=-1 +kerning first=330 second=264 amount=-1 +kerning first=116 second=339 amount=-1 +kerning first=249 second=111 amount=-1 +kerning first=363 second=45 amount=-1 +kerning first=287 second=357 amount=-1 +kerning first=8222 second=231 amount=-1 +kerning first=1027 second=1083 amount=-1 +kerning first=256 second=8250 amount=-1 +kerning first=281 second=254 amount=-1 +kerning first=220 second=8250 amount=-2 +kerning first=69 second=313 amount=-1 +kerning first=323 second=357 amount=-1 +kerning first=73 second=203 amount=-1 +kerning first=187 second=323 amount=-1 +kerning first=79 second=8250 amount=-1 +kerning first=74 second=357 amount=-1 +kerning first=356 second=271 amount=-1 +kerning first=1071 second=1118 amount=-1 +kerning first=205 second=76 amount=-1 +kerning first=201 second=219 amount=-1 +kerning first=230 second=8217 amount=-2 +kerning first=217 second=315 amount=-1 +kerning first=266 second=8217 amount=-1 +kerning first=338 second=8217 amount=-1 +kerning first=74 second=262 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=235 second=363 amount=-1 +kerning first=346 second=85 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=194 second=8217 amount=-2 +kerning first=8218 second=367 amount=-1 +kerning first=325 second=315 amount=-1 +kerning first=77 second=330 amount=-1 +kerning first=68 second=280 amount=-1 +kerning first=101 second=263 amount=-1 +kerning first=8222 second=103 amount=-1 +kerning first=71 second=366 amount=-1 +kerning first=67 second=203 amount=-1 +kerning first=206 second=263 amount=-1 +kerning first=205 second=204 amount=-1 +kerning first=67 second=100 amount=-1 +kerning first=45 second=110 amount=-1 +kerning first=204 second=331 amount=-1 +kerning first=85 second=366 amount=-1 +kerning first=209 second=280 amount=-1 +kerning first=304 second=277 amount=-1 +kerning first=314 second=263 amount=-1 +kerning first=262 second=314 amount=-1 +kerning first=220 second=66 amount=-1 +kerning first=221 second=365 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=286 second=203 amount=-1 +kerning first=1071 second=1055 amount=-1 +kerning first=356 second=8249 amount=-1 +kerning first=327 second=8221 amount=-1 +kerning first=366 second=110 amount=-1 +kerning first=84 second=229 amount=-1 +kerning first=330 second=110 amount=-1 +kerning first=67 second=67 amount=-1 +kerning first=214 second=203 amount=-1 +kerning first=284 second=366 amount=-1 +kerning first=339 second=250 amount=-1 +kerning first=210 second=192 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=1047 second=1024 amount=-1 +kerning first=278 second=70 amount=-1 +kerning first=84 second=101 amount=-1 +kerning first=267 second=250 amount=-1 +kerning first=76 second=354 amount=-1 +kerning first=231 second=250 amount=-1 +kerning first=8222 second=290 amount=-1 +kerning first=350 second=70 amount=-1 +kerning first=8217 second=115 amount=-1 +kerning first=304 second=378 amount=-1 +kerning first=261 second=101 amount=-1 +kerning first=263 second=46 amount=-1 +kerning first=268 second=378 amount=-1 +kerning first=288 second=76 amount=-1 +kerning first=225 second=101 amount=-1 +kerning first=375 second=250 amount=-1 +kerning first=232 second=378 amount=-1 +kerning first=206 second=70 amount=-1 +kerning first=78 second=8217 amount=-1 +kerning first=114 second=8217 amount=-1 +kerning first=325 second=325 amount=-1 +kerning first=262 second=262 amount=-1 +kerning first=344 second=366 amount=-1 +kerning first=1039 second=1030 amount=-1 +kerning first=369 second=101 amount=-1 +kerning first=219 second=8217 amount=-1 +kerning first=1041 second=1087 amount=-1 +kerning first=195 second=250 amount=-1 +kerning first=304 second=296 amount=-1 +kerning first=1059 second=1072 amount=-1 +kerning first=207 second=201 amount=-1 +kerning first=298 second=262 amount=-1 +kerning first=268 second=296 amount=-1 +kerning first=45 second=375 amount=-1 +kerning first=370 second=262 amount=-1 +kerning first=220 second=280 amount=-1 +kerning first=99 second=249 amount=-1 +kerning first=45 second=354 amount=-1 +kerning first=279 second=116 amount=-1 +kerning first=66 second=201 amount=-1 +kerning first=246 second=291 amount=-1 +kerning first=220 second=345 amount=-1 +kerning first=235 second=369 amount=-1 +kerning first=87 second=259 amount=-1 +kerning first=207 second=116 amount=-1 +kerning first=364 second=280 amount=-1 +kerning first=70 second=207 amount=-1 +kerning first=221 second=8250 amount=-1 +kerning first=1071 second=1105 amount=-1 +kerning first=338 second=204 amount=-1 +kerning first=1043 second=1084 amount=-1 +kerning first=328 second=345 amount=-1 +kerning first=302 second=204 amount=-1 +kerning first=364 second=345 amount=-1 +kerning first=266 second=204 amount=-1 +kerning first=264 second=259 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=307 second=287 amount=-1 +kerning first=204 second=210 amount=-1 +kerning first=271 second=287 amount=-1 +kerning first=278 second=274 amount=-1 +kerning first=264 second=207 amount=-1 +kerning first=235 second=287 amount=-1 +kerning first=72 second=317 amount=-1 +kerning first=327 second=67 amount=-1 +kerning first=82 second=336 amount=-1 +kerning first=209 second=113 amount=-1 +kerning first=219 second=67 amount=-1 +kerning first=201 second=366 amount=-1 +kerning first=213 second=317 amount=-1 +kerning first=187 second=336 amount=-1 +kerning first=104 second=113 amount=-1 +kerning first=364 second=8250 amount=-2 +kerning first=66 second=116 amount=-1 +kerning first=291 second=335 amount=-1 +kerning first=76 second=8220 amount=-1 +kerning first=218 second=73 amount=-1 +kerning first=232 second=244 amount=-1 +kerning first=369 second=281 amount=-1 +kerning first=1047 second=1056 amount=-1 +kerning first=1089 second=1103 amount=-1 +kerning first=268 second=244 amount=-1 +kerning first=269 second=97 amount=-1 +kerning first=304 second=244 amount=-1 +kerning first=259 second=233 amount=-1 +kerning first=362 second=73 amount=-1 +kerning first=274 second=278 amount=-1 +kerning first=325 second=8220 amount=-1 +kerning first=8217 second=216 amount=-1 +kerning first=86 second=213 amount=-1 +kerning first=289 second=8220 amount=-2 +kerning first=202 second=278 amount=-1 +kerning first=88 second=216 amount=-1 +kerning first=272 second=88 amount=-1 +kerning first=117 second=279 amount=-1 +kerning first=206 second=209 amount=-1 +kerning first=346 second=278 amount=-1 +kerning first=366 second=277 amount=-1 +kerning first=77 second=73 amount=-1 +kerning first=330 second=277 amount=-1 +kerning first=100 second=269 amount=-1 +kerning first=199 second=235 amount=-1 +kerning first=225 second=281 amount=-1 +kerning first=80 second=77 amount=-1 +kerning first=235 second=235 amount=-1 +kerning first=261 second=281 amount=-1 +kerning first=74 second=82 amount=-1 +kerning first=1056 second=1081 amount=-1 +kerning first=241 second=269 amount=-1 +kerning first=305 second=45 amount=-1 +kerning first=277 second=269 amount=-1 +kerning first=279 second=283 amount=-1 +kerning first=203 second=79 amount=-1 +kerning first=205 second=269 amount=-1 +kerning first=344 second=219 amount=-1 +kerning first=257 second=231 amount=-1 +kerning first=207 second=283 amount=-1 +kerning first=205 second=338 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=330 second=290 amount=-1 +kerning first=323 second=82 amount=-1 +kerning first=1047 second=1038 amount=-2 +kerning first=327 second=286 amount=-1 +kerning first=366 second=290 amount=-1 +kerning first=289 second=113 amount=-1 +kerning first=365 second=231 amount=-1 +kerning first=1053 second=1025 amount=-1 +kerning first=1056 second=1094 amount=-1 +kerning first=210 second=274 amount=-1 +kerning first=78 second=286 amount=-1 +kerning first=45 second=382 amount=-1 +kerning first=277 second=351 amount=-1 +kerning first=330 second=378 amount=-1 +kerning first=204 second=85 amount=-1 +kerning first=219 second=286 amount=-1 +kerning first=1059 second=1085 amount=-1 +kerning first=205 second=351 amount=-1 +kerning first=69 second=274 amount=-1 +kerning first=45 second=290 amount=-1 +kerning first=362 second=382 amount=-1 +kerning first=85 second=275 amount=-1 +kerning first=253 second=367 amount=-1 +kerning first=201 second=310 amount=-1 +kerning first=86 second=115 amount=-1 +kerning first=225 second=114 amount=-1 +kerning first=217 second=367 amount=-1 +kerning first=354 second=261 amount=-1 +kerning first=333 second=114 amount=-1 +kerning first=259 second=345 amount=-1 +kerning first=219 second=80 amount=-1 +kerning first=275 second=104 amount=-1 +kerning first=289 second=367 amount=-1 +kerning first=119 second=8217 amount=-2 +kerning first=205 second=217 amount=-1 +kerning first=203 second=66 amount=-1 +kerning first=213 second=8222 amount=-1 +kerning first=327 second=80 amount=-1 +kerning first=270 second=310 amount=-1 +kerning first=80 second=231 amount=-1 +kerning first=69 second=205 amount=-1 +kerning first=116 second=231 amount=-1 +kerning first=283 second=251 amount=-1 +kerning first=313 second=217 amount=-1 +kerning first=198 second=310 amount=-1 +kerning first=65 second=121 amount=-1 +kerning first=221 second=231 amount=-1 +kerning first=8220 second=220 amount=-1 +kerning first=82 second=284 amount=-1 +kerning first=263 second=115 amount=-1 +kerning first=1071 second=1034 amount=-1 +kerning first=282 second=205 amount=-1 +kerning first=78 second=80 amount=-1 +kerning first=187 second=284 amount=-1 +kerning first=210 second=205 amount=-1 +kerning first=1049 second=1053 amount=-1 +kerning first=270 second=362 amount=-1 +kerning first=271 second=235 amount=-1 +kerning first=323 second=353 amount=-1 +kerning first=73 second=242 amount=-1 +kerning first=207 second=214 amount=-1 +kerning first=366 second=71 amount=-1 +kerning first=330 second=71 amount=-1 +kerning first=88 second=266 amount=-1 +kerning first=1071 second=1027 amount=-1 +kerning first=207 second=75 amount=-1 +kerning first=193 second=266 amount=-1 +kerning first=109 second=242 amount=-1 +kerning first=230 second=106 amount=-1 +kerning first=284 second=46 amount=-1 +kerning first=370 second=275 amount=-1 +kerning first=286 second=310 amount=-1 +kerning first=70 second=45 amount=-2 +kerning first=108 second=252 amount=-1 +kerning first=106 second=45 amount=-1 +kerning first=262 second=275 amount=-1 +kerning first=287 second=249 amount=-1 +kerning first=66 second=214 amount=-1 +kerning first=226 second=275 amount=-1 +kerning first=258 second=71 amount=-1 +kerning first=98 second=8218 amount=-1 +kerning first=355 second=45 amount=-1 +kerning first=198 second=362 amount=-1 +kerning first=8218 second=259 amount=-1 +kerning first=245 second=378 amount=-1 +kerning first=217 second=233 amount=-1 +kerning first=325 second=302 amount=-1 +kerning first=84 second=337 amount=-1 +kerning first=99 second=223 amount=-1 +kerning first=1068 second=1045 amount=-1 +kerning first=204 second=99 amount=-1 +kerning first=78 second=234 amount=-1 +kerning first=218 second=361 amount=-1 +kerning first=219 second=234 amount=-1 +kerning first=281 second=267 amount=-1 +kerning first=193 second=87 amount=-1 +kerning first=1102 second=1113 amount=-1 +kerning first=217 second=302 amount=-1 +kerning first=1034 second=1046 amount=-1 +kerning first=289 second=233 amount=-1 +kerning first=291 second=234 amount=-1 +kerning first=1070 second=1046 amount=-1 +kerning first=97 second=291 amount=-1 +kerning first=325 second=233 amount=-1 +kerning first=366 second=346 amount=-1 +kerning first=85 second=327 amount=-1 +kerning first=118 second=117 amount=-1 +kerning first=362 second=361 amount=-1 +kerning first=206 second=122 amount=-1 +kerning first=8217 second=223 amount=-1 +kerning first=1068 second=1037 amount=-1 +kerning first=242 second=122 amount=-1 +kerning first=324 second=243 amount=-1 +kerning first=369 second=337 amount=-1 +kerning first=1076 second=1080 amount=-1 +kerning first=101 second=122 amount=-1 +kerning first=1040 second=1080 amount=-1 +kerning first=262 second=327 amount=-1 +kerning first=330 second=357 amount=-1 +kerning first=220 second=224 amount=-1 +kerning first=298 second=327 amount=-1 +kerning first=261 second=337 amount=-1 +kerning first=80 second=352 amount=-1 +kerning first=334 second=327 amount=-1 +kerning first=225 second=337 amount=-1 +kerning first=197 second=8221 amount=-2 +kerning first=212 second=258 amount=-1 +kerning first=72 second=298 amount=-1 +kerning first=233 second=8221 amount=-2 +kerning first=364 second=224 amount=-1 +kerning first=8218 second=380 amount=-1 +kerning first=1044 second=1076 amount=-1 +kerning first=1071 second=1036 amount=-1 +kerning first=268 second=107 amount=-1 +kerning first=366 second=225 amount=-1 +kerning first=202 second=72 amount=-1 +kerning first=330 second=225 amount=-1 +kerning first=1068 second=1044 amount=-1 +kerning first=74 second=370 amount=-1 +kerning first=193 second=318 amount=-1 +kerning first=229 second=318 amount=-1 +kerning first=279 second=335 amount=-1 +kerning first=335 second=46 amount=-1 +kerning first=8250 second=209 amount=-1 +kerning first=346 second=72 amount=-1 +kerning first=104 second=267 amount=-1 +kerning first=1058 second=1071 amount=-1 +kerning first=204 second=344 amount=-1 +kerning first=327 second=234 amount=-1 +kerning first=1031 second=1055 amount=-1 +kerning first=337 second=318 amount=-1 +kerning first=192 second=105 amount=-1 +kerning first=274 second=72 amount=-1 +kerning first=209 second=267 amount=-1 +kerning first=1067 second=1055 amount=-1 +kerning first=8222 second=244 amount=-1 +kerning first=70 second=199 amount=-1 +kerning first=369 second=114 amount=-1 +kerning first=323 second=370 amount=-1 +kerning first=366 second=199 amount=-1 +kerning first=193 second=361 amount=-1 +kerning first=368 second=111 amount=-1 +kerning first=344 second=212 amount=-1 +kerning first=269 second=311 amount=-1 +kerning first=66 second=374 amount=-1 +kerning first=8220 second=364 amount=-1 +kerning first=1041 second=1031 amount=-1 +kerning first=1039 second=1086 amount=-1 +kerning first=370 second=264 amount=-1 +kerning first=192 second=118 amount=-1 +kerning first=200 second=212 amount=-1 +kerning first=1052 second=1083 amount=-1 +kerning first=85 second=206 amount=-1 +kerning first=234 second=267 amount=-1 +kerning first=220 second=225 amount=-1 +kerning first=249 second=281 amount=-1 +kerning first=334 second=206 amount=-1 +kerning first=205 second=115 amount=-1 +kerning first=370 second=206 amount=-1 +kerning first=197 second=368 amount=-1 +kerning first=1108 second=1095 amount=-1 +kerning first=262 second=206 amount=-1 +kerning first=283 second=114 amount=-1 +kerning first=277 second=115 amount=-1 +kerning first=298 second=206 amount=-1 +kerning first=224 second=111 amount=-1 +kerning first=8216 second=193 amount=-2 +kerning first=325 second=220 amount=-1 +kerning first=296 second=111 amount=-1 +kerning first=1072 second=1095 amount=-1 +kerning first=362 second=284 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=1036 second=1095 amount=-1 +kerning first=368 second=81 amount=-1 +kerning first=85 second=370 amount=-1 +kerning first=284 second=310 amount=-1 +kerning first=289 second=263 amount=-1 +kerning first=296 second=81 amount=-1 +kerning first=325 second=263 amount=-1 +kerning first=212 second=310 amount=-1 +kerning first=88 second=8249 amount=-1 +kerning first=210 second=68 amount=-1 +kerning first=262 second=370 amount=-1 +kerning first=193 second=8249 amount=-1 +kerning first=71 second=310 amount=-1 +kerning first=282 second=68 amount=-1 +kerning first=69 second=365 amount=-1 +kerning first=229 second=8249 amount=-1 +kerning first=45 second=199 amount=-1 +kerning first=316 second=106 amount=-1 +kerning first=370 second=370 amount=-1 +kerning first=203 second=203 amount=-1 +kerning first=278 second=330 amount=-1 +kerning first=298 second=370 amount=-1 +kerning first=334 second=370 amount=-1 +kerning first=315 second=374 amount=-1 +kerning first=258 second=199 amount=-1 +kerning first=244 second=106 amount=-1 +kerning first=1118 second=1101 amount=-1 +kerning first=330 second=199 amount=-1 +kerning first=217 second=263 amount=-1 +kerning first=66 second=325 amount=-1 +kerning first=71 second=327 amount=-1 +kerning first=346 second=8222 amount=-1 +kerning first=204 second=223 amount=-1 +kerning first=212 second=327 amount=-1 +kerning first=89 second=230 amount=-1 +kerning first=77 second=204 amount=-1 +kerning first=202 second=8222 amount=-1 +kerning first=8222 second=227 amount=-1 +kerning first=8250 second=382 amount=-1 +kerning first=202 second=334 amount=-1 +kerning first=204 second=279 amount=-1 +kerning first=99 second=279 amount=-1 +kerning first=74 second=361 amount=-1 +kerning first=310 second=334 amount=-1 +kerning first=65 second=210 amount=-1 +kerning first=201 second=288 amount=-1 +kerning first=364 second=44 amount=-2 +kerning first=79 second=87 amount=-1 +kerning first=288 second=187 amount=-1 +kerning first=325 second=213 amount=-1 +kerning first=274 second=334 amount=-1 +kerning first=224 second=291 amount=-1 +kerning first=74 second=318 amount=-1 +kerning first=1052 second=1056 amount=-1 +kerning first=1054 second=1045 amount=-1 +kerning first=197 second=84 amount=-1 +kerning first=197 second=221 amount=-1 +kerning first=272 second=75 amount=-1 +kerning first=75 second=187 amount=-1 +kerning first=207 second=270 amount=-1 +kerning first=287 second=318 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=365 second=101 amount=-1 +kerning first=86 second=279 amount=-1 +kerning first=8222 second=234 amount=-1 +kerning first=268 second=352 amount=-1 +kerning first=200 second=75 amount=-1 +kerning first=367 second=245 amount=-1 +kerning first=304 second=352 amount=-1 +kerning first=1060 second=1027 amount=-1 +kerning first=216 second=187 amount=-1 +kerning first=1040 second=1119 amount=-1 +kerning first=218 second=99 amount=-1 +kerning first=1042 second=1064 amount=-1 +kerning first=1076 second=1119 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=259 second=245 amount=-1 +kerning first=111 second=187 amount=-1 +kerning first=275 second=337 amount=-1 +kerning first=1053 second=1067 amount=-1 +kerning first=204 second=230 amount=-1 +kerning first=374 second=230 amount=-1 +kerning first=362 second=99 amount=-1 +kerning first=213 second=196 amount=-1 +kerning first=85 second=8220 amount=-1 +kerning first=326 second=99 amount=-1 +kerning first=326 second=287 amount=-1 +kerning first=209 second=332 amount=-1 +kerning first=302 second=230 amount=-1 +kerning first=266 second=230 amount=-1 +kerning first=101 second=235 amount=-1 +kerning first=66 second=73 amount=-1 +kerning first=355 second=277 amount=-1 +kerning first=244 second=316 amount=-1 +kerning first=100 second=8217 amount=-1 +kerning first=68 second=8250 amount=-1 +kerning first=8218 second=118 amount=-1 +kerning first=283 second=277 amount=-1 +kerning first=316 second=316 amount=-1 +kerning first=74 second=108 amount=-1 +kerning first=363 second=281 amount=-1 +kerning first=207 second=73 amount=-1 +kerning first=234 second=104 amount=-1 +kerning first=1039 second=1073 amount=-1 +kerning first=67 second=290 amount=-1 +kerning first=203 second=116 amount=-1 +kerning first=197 second=264 amount=-1 +kerning first=70 second=277 amount=-1 +kerning first=85 second=193 amount=-1 +kerning first=334 second=69 amount=-1 +kerning first=212 second=323 amount=-1 +kerning first=338 second=364 amount=-1 +kerning first=298 second=69 amount=-1 +kerning first=327 second=338 amount=-1 +kerning first=302 second=364 amount=-1 +kerning first=1052 second=1084 amount=-1 +kerning first=266 second=364 amount=-1 +kerning first=370 second=69 amount=-1 +kerning first=71 second=323 amount=-1 +kerning first=241 second=8217 amount=-2 +kerning first=194 second=364 amount=-1 +kerning first=277 second=8217 amount=-2 +kerning first=262 second=69 amount=-1 +kerning first=374 second=273 amount=-1 +kerning first=106 second=277 amount=-1 +kerning first=219 second=338 amount=-1 +kerning first=233 second=355 amount=-1 +kerning first=280 second=286 amount=-1 +kerning first=302 second=273 amount=-1 +kerning first=197 second=355 amount=-1 +kerning first=370 second=193 amount=-1 +kerning first=266 second=273 amount=-1 +kerning first=205 second=325 amount=-1 +kerning first=231 second=113 amount=-1 +kerning first=85 second=69 amount=-1 +kerning first=230 second=273 amount=-1 +kerning first=267 second=113 amount=-1 +kerning first=1052 second=1091 amount=-1 +kerning first=110 second=171 amount=-1 +kerning first=89 second=273 amount=-1 +kerning first=204 second=82 amount=-1 +kerning first=334 second=193 amount=-1 +kerning first=74 second=314 amount=-1 +kerning first=80 second=116 amount=-1 +kerning first=187 second=78 amount=-1 +kerning first=70 second=110 amount=-1 +kerning first=1064 second=1047 amount=-1 +kerning first=287 second=314 amount=-1 +kerning first=1052 second=1070 amount=-1 +kerning first=1036 second=1082 amount=-1 +kerning first=67 second=286 amount=-1 +kerning first=194 second=84 amount=-1 +kerning first=103 second=316 amount=-1 +kerning first=67 second=316 amount=-1 +kerning first=1047 second=1043 amount=-1 +kerning first=366 second=333 amount=-1 +kerning first=234 second=100 amount=-1 +kerning first=240 second=269 amount=-1 +kerning first=85 second=116 amount=-1 +kerning first=321 second=356 amount=-1 +kerning first=8217 second=213 amount=-1 +kerning first=1030 second=1100 amount=-1 +kerning first=317 second=219 amount=-1 +kerning first=112 second=289 amount=-1 +kerning first=1055 second=1048 amount=-1 +kerning first=330 second=333 amount=-1 +kerning first=253 second=289 amount=-1 +kerning first=8218 second=122 amount=-1 +kerning first=354 second=339 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=366 second=194 amount=-1 +kerning first=1067 second=1042 amount=-1 +kerning first=73 second=101 amount=-1 +kerning first=66 second=77 amount=-1 +kerning first=289 second=289 amount=-1 +kerning first=213 second=356 amount=-1 +kerning first=69 second=68 amount=-1 +kerning first=251 second=171 amount=-1 +kerning first=1071 second=1049 amount=-1 +kerning first=287 second=171 amount=-1 +kerning first=346 second=304 amount=-1 +kerning first=323 second=171 amount=-1 +kerning first=351 second=103 amount=-1 +kerning first=8249 second=89 amount=-1 +kerning first=355 second=281 amount=-1 +kerning first=275 second=246 amount=-1 +kerning first=74 second=270 amount=-1 +kerning first=279 second=103 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=72 second=330 amount=-1 +kerning first=202 second=304 amount=-1 +kerning first=243 second=103 amount=-1 +kerning first=80 second=296 amount=-1 +kerning first=217 second=220 amount=-1 +kerning first=213 second=330 amount=-1 +kerning first=207 second=103 amount=-1 +kerning first=79 second=280 amount=-1 +kerning first=230 second=46 amount=-1 +kerning first=274 second=304 amount=-1 +kerning first=78 second=338 amount=-1 +kerning first=333 second=8250 amount=-1 +kerning first=325 second=262 amount=-1 +kerning first=1055 second=1074 amount=-1 +kerning first=231 second=109 amount=-1 +kerning first=321 second=85 amount=-1 +kerning first=221 second=8218 amount=-2 +kerning first=1064 second=1051 amount=-1 +kerning first=73 second=298 amount=-1 +kerning first=70 second=281 amount=-1 +kerning first=264 second=315 amount=-1 +kerning first=267 second=109 amount=-1 +kerning first=74 second=277 amount=-1 +kerning first=105 second=339 amount=-1 +kerning first=72 second=85 amount=-1 +kerning first=119 second=382 amount=-1 +kerning first=214 second=298 amount=-1 +kerning first=258 second=355 amount=-1 +kerning first=364 second=211 amount=-1 +kerning first=199 second=313 amount=-1 +kerning first=224 second=382 amount=-1 +kerning first=353 second=8250 amount=-1 +kerning first=286 second=298 amount=-1 +kerning first=1038 second=1040 amount=-1 +kerning first=280 second=290 amount=-1 +kerning first=116 second=8218 amount=-1 +kerning first=240 second=8221 amount=-2 +kerning first=296 second=382 amount=-1 +kerning first=281 second=8250 amount=-1 +kerning first=228 second=289 amount=-1 +kerning first=1068 second=1079 amount=-1 +kerning first=245 second=8250 amount=-1 +kerning first=368 second=382 amount=-1 +kerning first=209 second=8250 amount=-1 +kerning first=224 second=287 amount=-1 +kerning first=221 second=120 amount=-1 +kerning first=230 second=234 amount=-1 +kerning first=307 second=339 amount=-1 +kerning first=206 second=302 amount=-1 +kerning first=220 second=83 amount=-1 +kerning first=74 second=210 amount=-1 +kerning first=302 second=234 amount=-1 +kerning first=219 second=263 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=235 second=107 amount=-1 +kerning first=266 second=234 amount=-1 +kerning first=370 second=232 amount=-1 +kerning first=374 second=234 amount=-1 +kerning first=65 second=8220 amount=-2 +kerning first=88 second=223 amount=-1 +kerning first=370 second=362 amount=-1 +kerning first=8250 second=196 amount=-1 +kerning first=1043 second=1114 amount=-1 +kerning first=284 second=219 amount=-1 +kerning first=235 second=339 amount=-1 +kerning first=199 second=339 amount=-1 +kerning first=101 second=8220 amount=-2 +kerning first=83 second=317 amount=-1 +kerning first=212 second=219 amount=-1 +kerning first=73 second=267 amount=-1 +kerning first=323 second=75 amount=-1 +kerning first=8222 second=283 amount=-1 +kerning first=275 second=311 amount=-1 +kerning first=202 second=330 amount=-1 +kerning first=85 second=232 amount=-1 +kerning first=325 second=122 amount=-1 +kerning first=346 second=219 amount=-1 +kerning first=199 second=107 amount=-1 +kerning first=217 second=122 amount=-1 +kerning first=362 second=103 amount=-1 +kerning first=71 second=219 amount=-1 +kerning first=253 second=122 amount=-1 +kerning first=298 second=232 amount=-1 +kerning first=326 second=103 amount=-1 +kerning first=112 second=122 amount=-1 +kerning first=72 second=214 amount=-1 +kerning first=262 second=232 amount=-1 +kerning first=89 second=234 amount=-1 +kerning first=226 second=232 amount=-1 +kerning first=218 second=335 amount=-1 +kerning first=8218 second=79 amount=-1 +kerning first=89 second=269 amount=-1 +kerning first=8250 second=210 amount=-1 +kerning first=1066 second=1065 amount=-1 +kerning first=368 second=85 amount=-1 +kerning first=261 second=8220 amount=-2 +kerning first=266 second=269 amount=-1 +kerning first=326 second=335 amount=-1 +kerning first=302 second=269 amount=-1 +kerning first=193 second=45 amount=-1 +kerning first=296 second=85 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=230 second=269 amount=-1 +kerning first=216 second=46 amount=-1 +kerning first=242 second=8220 amount=-2 +kerning first=73 second=229 amount=-1 +kerning first=1102 second=1083 amount=-1 +kerning first=288 second=46 amount=-1 +kerning first=314 second=8220 amount=-1 +kerning first=210 second=8217 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=374 second=269 amount=-1 +kerning first=1031 second=1081 amount=-1 +kerning first=187 second=241 amount=-1 +kerning first=350 second=302 amount=-1 +kerning first=1067 second=1081 amount=-1 +kerning first=334 second=65 amount=-1 +kerning first=370 second=65 amount=-1 +kerning first=269 second=225 amount=-1 +kerning first=278 second=302 amount=-1 +kerning first=77 second=335 amount=-1 +kerning first=220 second=250 amount=-1 +kerning first=1042 second=1038 amount=-2 +kerning first=279 second=378 amount=-1 +kerning first=243 second=378 amount=-1 +kerning first=89 second=67 amount=-1 +kerning first=81 second=195 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=207 second=378 amount=-1 +kerning first=187 second=72 amount=-1 +kerning first=364 second=250 amount=-1 +kerning first=1071 second=1075 amount=-1 +kerning first=370 second=366 amount=-1 +kerning first=201 second=262 amount=-1 +kerning first=203 second=207 amount=-1 +kerning first=221 second=192 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=298 second=366 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=199 second=274 amount=-1 +kerning first=75 second=46 amount=-1 +kerning first=334 second=366 amount=-1 +kerning first=110 second=345 amount=-1 +kerning first=200 second=216 amount=-1 +kerning first=334 second=330 amount=-1 +kerning first=1060 second=1053 amount=-1 +kerning first=325 second=259 amount=-1 +kerning first=354 second=227 amount=-1 +kerning first=1051 second=1076 amount=-1 +kerning first=366 second=195 amount=-1 +kerning first=344 second=216 amount=-1 +kerning first=1091 second=1117 amount=-1 +kerning first=73 second=246 amount=-1 +kerning first=88 second=357 amount=-1 +kerning first=66 second=378 amount=-1 +kerning first=233 second=251 amount=-1 +kerning first=302 second=338 amount=-1 +kerning first=290 second=201 amount=-1 +kerning first=200 second=251 amount=-1 +kerning first=193 second=357 amount=-1 +kerning first=196 second=116 amount=-1 +kerning first=8250 second=356 amount=-1 +kerning first=327 second=332 amount=-1 +kerning first=220 second=113 amount=-1 +kerning first=77 second=201 amount=-1 +kerning first=217 second=259 amount=-1 +kerning first=304 second=116 amount=-1 +kerning first=120 second=103 amount=-1 +kerning first=224 second=108 amount=-1 +kerning first=187 second=375 amount=-1 +kerning first=78 second=204 amount=-1 +kerning first=232 second=116 amount=-1 +kerning first=1058 second=1108 amount=-1 +kerning first=327 second=204 amount=-1 +kerning first=262 second=366 amount=-1 +kerning first=275 second=242 amount=-1 +kerning first=69 second=369 amount=-1 +kerning first=234 second=271 amount=-1 +kerning first=323 second=210 amount=-1 +kerning first=73 second=268 amount=-1 +kerning first=1101 second=1093 amount=-1 +kerning first=1049 second=1096 amount=-1 +kerning first=328 second=113 amount=-1 +kerning first=296 second=317 amount=-1 +kerning first=1039 second=1047 amount=-1 +kerning first=374 second=67 amount=-1 +kerning first=282 second=369 amount=-1 +kerning first=364 second=113 amount=-1 +kerning first=266 second=67 amount=-1 +kerning first=368 second=317 amount=-1 +kerning first=1054 second=1067 amount=-1 +kerning first=302 second=67 amount=-1 +kerning first=8217 second=243 amount=-1 +kerning first=110 second=279 amount=-1 +kerning first=278 second=371 amount=-1 +kerning first=1091 second=1113 amount=-1 +kerning first=279 second=244 amount=-1 +kerning first=101 second=233 amount=-1 +kerning first=350 second=371 amount=-1 +kerning first=330 second=97 amount=-1 +kerning first=74 second=279 amount=-1 +kerning first=366 second=97 amount=-1 +kerning first=287 second=279 amount=-1 +kerning first=80 second=257 amount=-1 +kerning first=1039 second=1079 amount=-1 +kerning first=323 second=279 amount=-1 +kerning first=1051 second=1080 amount=-1 +kerning first=201 second=327 amount=-1 +kerning first=251 second=279 amount=-1 +kerning first=199 second=209 amount=-1 +kerning first=206 second=233 amount=-1 +kerning first=274 second=200 amount=-1 +kerning first=1062 second=1102 amount=-1 +kerning first=70 second=75 amount=-1 +kerning first=362 second=266 amount=-1 +kerning first=277 second=187 amount=-1 +kerning first=202 second=200 amount=-1 +kerning first=314 second=233 amount=-1 +kerning first=1082 second=1095 amount=-1 +kerning first=65 second=371 amount=-1 +kerning first=218 second=266 amount=-1 +kerning first=354 second=235 amount=-1 +kerning first=81 second=8221 amount=-2 +kerning first=304 second=218 amount=-1 +kerning first=98 second=380 amount=-1 +kerning first=290 second=270 amount=-1 +kerning first=232 second=283 amount=-1 +kerning first=99 second=318 amount=-1 +kerning first=211 second=220 amount=-1 +kerning first=368 second=248 amount=-1 +kerning first=268 second=283 amount=-1 +kerning first=218 second=270 amount=-1 +kerning first=354 second=231 amount=-1 +kerning first=196 second=218 amount=-1 +kerning first=8216 second=65 amount=-2 +kerning first=1054 second=1071 amount=-1 +kerning first=284 second=282 amount=-1 +kerning first=275 second=380 amount=-1 +kerning first=105 second=231 amount=-1 +kerning first=220 second=44 amount=-2 +kerning first=224 second=248 amount=-1 +kerning first=256 second=44 amount=-1 +kerning first=307 second=45 amount=-1 +kerning first=362 second=270 amount=-1 +kerning first=211 second=75 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=296 second=248 amount=-1 +kerning first=286 second=66 amount=-1 +kerning first=1060 second=1071 amount=-1 +kerning first=264 second=79 amount=-1 +kerning first=269 second=269 amount=-1 +kerning first=8218 second=289 amount=-1 +kerning first=87 second=79 amount=-1 +kerning first=278 second=367 amount=-1 +kerning first=8250 second=85 amount=-1 +kerning first=192 second=79 amount=-1 +kerning first=207 second=244 amount=-1 +kerning first=304 second=283 amount=-1 +kerning first=350 second=367 amount=-1 +kerning first=77 second=270 amount=-1 +kerning first=314 second=367 amount=-1 +kerning first=75 second=217 amount=-1 +kerning first=74 second=344 amount=-1 +kerning first=101 second=367 amount=-1 +kerning first=192 second=354 amount=-1 +kerning first=344 second=114 amount=-1 +kerning first=199 second=205 amount=-1 +kerning first=67 second=80 amount=-1 +kerning first=310 second=8222 amount=-1 +kerning first=71 second=8218 amount=-1 +kerning first=288 second=217 amount=-1 +kerning first=280 second=80 amount=-1 +kerning first=74 second=206 amount=-1 +kerning first=200 second=114 amount=-1 +kerning first=380 second=45 amount=-1 +kerning first=323 second=344 amount=-1 +kerning first=119 second=252 amount=-1 +kerning first=1065 second=1097 amount=-1 +kerning first=83 second=252 amount=-1 +kerning first=80 second=261 amount=-1 +kerning first=1025 second=1095 amount=-1 +kerning first=313 second=89 amount=-1 +kerning first=8222 second=218 amount=-1 +kerning first=45 second=368 amount=-1 +kerning first=212 second=353 amount=-1 +kerning first=8250 second=81 amount=-1 +kerning first=81 second=368 amount=-1 +kerning first=1097 second=1095 amount=-1 +kerning first=187 second=379 amount=-1 +kerning first=356 second=353 amount=-1 +kerning first=195 second=345 amount=-1 +kerning first=231 second=345 amount=-1 +kerning first=323 second=206 amount=-1 +kerning first=267 second=345 amount=-1 +kerning first=330 second=368 amount=-1 +kerning first=77 second=266 amount=-1 +kerning first=117 second=8221 amount=-1 +kerning first=366 second=368 amount=-1 +kerning first=339 second=345 amount=-1 +kerning first=1067 second=1077 amount=-1 +kerning first=222 second=8221 amount=-2 +kerning first=255 second=106 amount=-1 +kerning first=375 second=345 amount=-1 +kerning first=334 second=302 amount=-1 +kerning first=1031 second=1077 amount=-1 +kerning first=86 second=243 amount=-1 +kerning first=258 second=8221 amount=-2 +kerning first=304 second=214 amount=-1 +kerning first=72 second=226 amount=-1 +kerning first=227 second=243 amount=-1 +kerning first=268 second=214 amount=-1 +kerning first=258 second=368 amount=-1 +kerning first=218 second=197 amount=-1 +kerning first=196 second=214 amount=-1 +kerning first=187 second=310 amount=-1 +kerning first=263 second=243 amount=-1 +kerning first=287 second=275 amount=-1 +kerning first=68 second=362 amount=-1 +kerning first=286 second=46 amount=-1 +kerning first=251 second=275 amount=-1 +kerning first=198 second=336 amount=-1 +kerning first=362 second=197 amount=-1 +kerning first=67 second=315 amount=-1 +kerning first=193 second=223 amount=-1 +kerning first=323 second=275 amount=-1 +kerning first=352 second=80 amount=-1 +kerning first=110 second=275 amount=-1 +kerning first=370 second=327 amount=-1 +kerning first=368 second=252 amount=-1 +kerning first=200 second=45 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=209 second=362 amount=-1 +kerning first=220 second=288 amount=-1 +kerning first=317 second=362 amount=-1 +kerning first=232 second=8220 amount=-2 +kerning first=1064 second=1086 amount=-1 +kerning first=67 second=71 amount=-1 +kerning first=1053 second=1094 amount=-1 +kerning first=356 second=275 amount=-1 +kerning first=74 second=353 amount=-1 +kerning first=225 second=45 amount=-1 +kerning first=78 second=243 amount=-1 +kerning first=213 second=69 amount=-1 +kerning first=84 second=45 amount=-1 +kerning first=219 second=243 amount=-1 +kerning first=120 second=45 amount=-1 +kerning first=287 second=353 amount=-1 +kerning first=291 second=243 amount=-1 +kerning first=1068 second=1036 amount=-1 +kerning first=204 second=214 amount=-1 +kerning first=369 second=45 amount=-1 +kerning first=261 second=45 amount=-1 +kerning first=363 second=243 amount=-1 +kerning first=1070 second=1068 amount=-1 +kerning first=213 second=206 amount=-1 +kerning first=205 second=219 amount=-1 +kerning first=327 second=243 amount=-1 +kerning first=1034 second=1068 amount=-1 +kerning first=284 second=362 amount=-1 +kerning first=201 second=223 amount=-1 +kerning first=205 second=80 amount=-1 +kerning first=1060 second=1062 amount=-1 +kerning first=121 second=318 amount=-1 +kerning first=1040 second=1097 amount=-1 +kerning first=327 second=248 amount=-1 +kerning first=282 second=67 amount=-1 +kerning first=226 second=318 amount=-1 +kerning first=224 second=45 amount=-1 +kerning first=1051 second=1060 amount=-1 +kerning first=1038 second=1082 amount=-1 +kerning first=264 second=350 amount=-1 +kerning first=232 second=46 amount=-1 +kerning first=334 second=258 amount=-1 +kerning first=205 second=200 amount=-1 +kerning first=370 second=258 amount=-1 +kerning first=366 second=234 amount=-1 +kerning first=327 second=262 amount=-1 +kerning first=330 second=234 amount=-1 +kerning first=77 second=257 amount=-1 +kerning first=339 second=8250 amount=-1 +kerning first=87 second=110 amount=-1 +kerning first=269 second=103 amount=-1 +kerning first=296 second=226 amount=-1 +kerning first=71 second=362 amount=-1 +kerning first=323 second=266 amount=-1 +kerning first=212 second=362 amount=-1 +kerning first=368 second=226 amount=-1 +kerning first=1059 second=1076 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=280 second=71 amount=-1 +kerning first=105 second=283 amount=-1 +kerning first=234 second=232 amount=-1 +kerning first=197 second=81 amount=-1 +kerning first=1038 second=1096 amount=-1 +kerning first=88 second=249 amount=-1 +kerning first=267 second=241 amount=-1 +kerning first=1051 second=1089 amount=-1 +kerning first=231 second=241 amount=-1 +kerning first=316 second=244 amount=-1 +kerning first=198 second=332 amount=-1 +kerning first=288 second=72 amount=-1 +kerning first=259 second=267 amount=-1 +kerning first=1041 second=1096 amount=-1 +kerning first=199 second=98 amount=-1 +kerning first=87 second=216 amount=-1 +kerning first=103 second=98 amount=-1 +kerning first=116 second=275 amount=-1 +kerning first=112 second=345 amount=-1 +kerning first=267 second=328 amount=-1 +kerning first=192 second=216 amount=-1 +kerning first=217 second=8249 amount=-2 +kerning first=231 second=328 amount=-1 +kerning first=279 second=243 amount=-1 +kerning first=217 second=345 amount=-1 +kerning first=171 second=352 amount=-1 +kerning first=80 second=335 amount=-1 +kerning first=366 second=114 amount=-1 +kerning first=253 second=345 amount=-1 +kerning first=207 second=352 amount=-1 +kerning first=330 second=114 amount=-1 +kerning first=289 second=345 amount=-1 +kerning first=203 second=302 amount=-1 +kerning first=1118 second=1079 amount=-1 +kerning first=85 second=258 amount=-1 +kerning first=325 second=345 amount=-1 +kerning first=116 second=335 amount=-1 +kerning first=275 second=8222 amount=-1 +kerning first=257 second=335 amount=-1 +kerning first=221 second=335 amount=-1 +kerning first=260 second=46 amount=-1 +kerning first=1059 second=1061 amount=-1 +kerning first=368 second=46 amount=-2 +kerning first=258 second=114 amount=-1 +kerning first=201 second=370 amount=-1 +kerning first=45 second=114 amount=-1 +kerning first=290 second=344 amount=-1 +kerning first=209 second=284 amount=-1 +kerning first=374 second=115 amount=-1 +kerning first=87 second=250 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=197 second=119 amount=-1 +kerning first=362 second=344 amount=-1 +kerning first=271 second=378 amount=-1 +kerning first=70 second=8221 amount=-1 +kerning first=220 second=336 amount=-1 +kerning first=1046 second=1079 amount=-1 +kerning first=230 second=115 amount=-1 +kerning first=1107 second=1114 amount=-1 +kerning first=266 second=115 amount=-1 +kerning first=302 second=115 amount=-1 +kerning first=192 second=250 amount=-1 +kerning first=305 second=119 amount=-1 +kerning first=197 second=199 amount=-1 +kerning first=264 second=216 amount=-1 +kerning first=233 second=106 amount=-1 +kerning first=99 second=314 amount=-1 +kerning first=269 second=106 amount=-1 +kerning first=235 second=378 amount=-1 +kerning first=199 second=378 amount=-1 +kerning first=1062 second=1054 amount=-1 +kerning first=77 second=344 amount=-1 +kerning first=1038 second=1105 amount=-1 +kerning first=1057 second=1071 amount=-1 +kerning first=218 second=344 amount=-1 +kerning first=187 second=327 amount=-1 +kerning first=1043 second=1088 amount=-1 +kerning first=274 second=282 amount=-1 +kerning first=1043 second=1101 amount=-1 +kerning first=79 second=204 amount=-1 +kerning first=202 second=282 amount=-1 +kerning first=327 second=206 amount=-1 +kerning first=1070 second=1055 amount=-1 +kerning first=1067 second=1096 amount=-1 +kerning first=204 second=288 amount=-1 +kerning first=195 second=87 amount=-1 +kerning first=263 second=230 amount=-1 +kerning first=307 second=291 amount=-1 +kerning first=271 second=291 amount=-1 +kerning first=72 second=81 amount=-1 +kerning first=119 second=106 amount=-1 +kerning first=235 second=291 amount=-1 +kerning first=86 second=230 amount=-1 +kerning first=1055 second=1052 amount=-1 +kerning first=275 second=101 amount=-1 +kerning first=207 second=279 amount=-1 +kerning first=210 second=296 amount=-1 +kerning first=197 second=212 amount=-1 +kerning first=264 second=337 amount=-1 +kerning first=69 second=296 amount=-1 +kerning first=1048 second=1098 amount=-1 +kerning first=228 second=337 amount=-1 +kerning first=8218 second=374 amount=-2 +kerning first=8250 second=120 amount=-1 +kerning first=279 second=279 amount=-1 +kerning first=1031 second=1064 amount=-1 +kerning first=287 second=244 amount=-1 +kerning first=282 second=296 amount=-1 +kerning first=87 second=337 amount=-1 +kerning first=203 second=75 amount=-1 +kerning first=370 second=245 amount=-1 +kerning first=8217 second=217 amount=-1 +kerning first=1067 second=1064 amount=-1 +kerning first=279 second=99 amount=-1 +kerning first=213 second=187 amount=-1 +kerning first=298 second=245 amount=-1 +kerning first=270 second=8250 amount=-1 +kerning first=207 second=99 amount=-1 +kerning first=234 second=8250 amount=-1 +kerning first=226 second=245 amount=-1 +kerning first=268 second=8218 amount=-1 +kerning first=232 second=8218 amount=-1 +kerning first=108 second=287 amount=-1 +kerning first=234 second=233 amount=-1 +kerning first=105 second=375 amount=-1 +kerning first=85 second=245 amount=-1 +kerning first=314 second=380 amount=-1 +kerning first=347 second=8220 amount=-2 +kerning first=71 second=202 amount=-1 +kerning first=116 second=248 amount=-1 +kerning first=70 second=255 amount=-1 +kerning first=311 second=8220 amount=-1 +kerning first=212 second=202 amount=-1 +kerning first=257 second=248 amount=-1 +kerning first=250 second=235 amount=-1 +kerning first=1064 second=1025 amount=-1 +kerning first=221 second=248 amount=-1 +kerning first=201 second=117 amount=-1 +kerning first=249 second=287 amount=-1 +kerning first=205 second=116 amount=-1 +kerning first=209 second=83 amount=-1 +kerning first=72 second=8222 amount=-1 +kerning first=72 second=261 amount=-1 +kerning first=80 second=248 amount=-1 +kerning first=1059 second=1081 amount=-1 +kerning first=350 second=66 amount=-1 +kerning first=327 second=97 amount=-1 +kerning first=346 second=209 amount=-1 +kerning first=219 second=364 amount=-1 +kerning first=69 second=270 amount=-1 +kerning first=99 second=108 amount=-1 +kerning first=278 second=66 amount=-1 +kerning first=1028 second=1073 amount=-1 +kerning first=274 second=209 amount=-1 +kerning first=258 second=307 amount=-1 +kerning first=206 second=66 amount=-1 +kerning first=78 second=364 amount=-1 +kerning first=284 second=202 amount=-1 +kerning first=210 second=270 amount=-1 +kerning first=218 second=257 amount=-1 +kerning first=202 second=209 amount=-1 +kerning first=203 second=8220 amount=-1 +kerning first=1064 second=1073 amount=-1 +kerning first=364 second=257 amount=-1 +kerning first=101 second=380 amount=-1 +kerning first=67 second=264 amount=-1 +kerning first=242 second=380 amount=-1 +kerning first=275 second=8220 amount=-2 +kerning first=206 second=380 amount=-1 +kerning first=8217 second=111 amount=-1 +kerning first=205 second=296 amount=-1 +kerning first=254 second=103 amount=-1 +kerning first=338 second=211 amount=-1 +kerning first=207 second=205 amount=-1 +kerning first=45 second=355 amount=-1 +kerning first=218 second=103 amount=-1 +kerning first=8216 second=366 amount=-1 +kerning first=1058 second=1091 amount=-1 +kerning first=304 second=227 amount=-1 +kerning first=1047 second=1039 amount=-1 +kerning first=268 second=227 amount=-1 +kerning first=201 second=69 amount=-1 +kerning first=288 second=325 amount=-1 +kerning first=77 second=103 amount=-1 +kerning first=277 second=273 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=274 second=330 amount=-1 +kerning first=356 second=74 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=205 second=273 amount=-1 +kerning first=346 second=330 amount=-1 +kerning first=78 second=269 amount=-1 +kerning first=291 second=269 amount=-1 +kerning first=366 second=355 amount=-1 +kerning first=199 second=218 amount=-1 +kerning first=270 second=78 amount=-1 +kerning first=327 second=269 amount=-1 +kerning first=330 second=355 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=1091 second=1078 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=255 second=316 amount=-1 +kerning first=287 second=112 amount=-1 +kerning first=1042 second=1116 amount=-1 +kerning first=66 second=205 amount=-1 +kerning first=8218 second=250 amount=-1 +kerning first=350 second=8220 amount=-1 +kerning first=363 second=269 amount=-1 +kerning first=253 second=44 amount=-1 +kerning first=198 second=78 amount=-1 +kerning first=346 second=282 amount=-1 +kerning first=289 second=44 amount=-1 +kerning first=218 second=365 amount=-1 +kerning first=218 second=171 amount=-2 +kerning first=121 second=117 amount=-1 +kerning first=45 second=260 amount=-1 +kerning first=85 second=117 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=290 second=171 amount=-1 +kerning first=205 second=286 amount=-1 +kerning first=326 second=171 amount=-1 +kerning first=1031 second=1051 amount=-1 +kerning first=274 second=68 amount=-1 +kerning first=1067 second=1051 amount=-1 +kerning first=74 second=249 amount=-1 +kerning first=1055 second=1100 amount=-1 +kerning first=84 second=333 amount=-1 +kerning first=346 second=68 amount=-1 +kerning first=269 second=307 amount=-1 +kerning first=70 second=203 amount=-1 +kerning first=1034 second=1042 amount=-1 +kerning first=339 second=100 amount=-1 +kerning first=65 second=220 amount=-1 +kerning first=366 second=260 amount=-1 +kerning first=1070 second=1042 amount=-1 +kerning first=206 second=220 amount=-1 +kerning first=211 second=203 amount=-1 +kerning first=104 second=263 amount=-1 +kerning first=346 second=82 amount=-1 +kerning first=209 second=263 amount=-1 +kerning first=77 second=171 amount=-1 +kerning first=1039 second=1025 amount=-1 +kerning first=8222 second=248 amount=-1 +kerning first=187 second=121 amount=-1 +kerning first=113 second=171 amount=-1 +kerning first=196 second=8250 amount=-1 +kerning first=281 second=263 amount=-1 +kerning first=250 second=246 amount=-1 +kerning first=1064 second=1060 amount=-1 +kerning first=337 second=103 amount=-1 +kerning first=1027 second=1119 amount=-1 +kerning first=8220 second=256 amount=-2 +kerning first=327 second=353 amount=-1 +kerning first=85 second=102 amount=-1 +kerning first=109 second=246 amount=-1 +kerning first=1067 second=1118 amount=-1 +kerning first=229 second=103 amount=-1 +kerning first=199 second=77 amount=-1 +kerning first=231 second=100 amount=-1 +kerning first=278 second=220 amount=-1 +kerning first=350 second=220 amount=-1 +kerning first=267 second=100 amount=-1 +kerning first=1060 second=1083 amount=-1 +kerning first=264 second=109 amount=-1 +kerning first=230 second=316 amount=-1 +kerning first=290 second=310 amount=-1 +kerning first=194 second=316 amount=-1 +kerning first=225 second=333 amount=-1 +kerning first=261 second=333 amount=-1 +kerning first=202 second=68 amount=-1 +kerning first=199 second=304 amount=-1 +kerning first=266 second=316 amount=-1 +kerning first=367 second=267 amount=-1 +kerning first=264 second=242 amount=-1 +kerning first=362 second=365 amount=-1 +kerning first=102 second=8218 amount=-1 +kerning first=369 second=333 amount=-1 +kerning first=235 second=8222 amount=-1 +kerning first=209 second=211 amount=-1 +kerning first=228 second=242 amount=-1 +kerning first=199 second=8222 amount=-1 +kerning first=214 second=194 amount=-1 +kerning first=280 second=45 amount=-1 +kerning first=347 second=289 amount=-1 +kerning first=268 second=313 amount=-1 +kerning first=1051 second=1094 amount=-1 +kerning first=116 second=233 amount=-1 +kerning first=304 second=313 amount=-1 +kerning first=85 second=210 amount=-1 +kerning first=224 second=339 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=374 second=256 amount=-1 +kerning first=323 second=8220 amount=-1 +kerning first=8222 second=86 amount=-2 +kerning first=323 second=245 amount=-1 +kerning first=227 second=111 amount=-1 +kerning first=287 second=245 amount=-1 +kerning first=263 second=111 amount=-1 +kerning first=206 second=280 amount=-1 +kerning first=1030 second=1057 amount=-1 +kerning first=1041 second=1079 amount=-1 +kerning first=231 second=233 amount=-1 +kerning first=350 second=280 amount=-1 +kerning first=296 second=339 amount=-1 +kerning first=187 second=219 amount=-1 +kerning first=71 second=274 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=339 second=233 amount=-1 +kerning first=368 second=339 amount=-1 +kerning first=368 second=120 amount=-1 +kerning first=1049 second=1118 amount=-1 +kerning first=103 second=277 amount=-1 +kerning first=200 second=298 amount=-1 +kerning first=280 second=212 amount=-1 +kerning first=197 second=8217 amount=-2 +kerning first=272 second=298 amount=-1 +kerning first=233 second=8217 amount=-2 +kerning first=269 second=8217 amount=-2 +kerning first=266 second=102 amount=-1 +kerning first=67 second=212 amount=-1 +kerning first=212 second=8217 amount=-2 +kerning first=345 second=230 amount=-1 +kerning first=362 second=357 amount=-1 +kerning first=220 second=344 amount=-1 +kerning first=251 second=245 amount=-1 +kerning first=262 second=331 amount=-1 +kerning first=1038 second=1104 amount=-1 +kerning first=8250 second=334 amount=-1 +kerning first=298 second=331 amount=-1 +kerning first=98 second=289 amount=-1 +kerning first=311 second=289 amount=-1 +kerning first=110 second=245 amount=-1 +kerning first=370 second=331 amount=-1 +kerning first=74 second=245 amount=-1 +kerning first=85 second=331 amount=-1 +kerning first=305 second=8217 amount=-1 +kerning first=313 second=221 amount=-1 +kerning first=199 second=85 amount=-1 +kerning first=275 second=289 amount=-1 +kerning first=377 second=8217 amount=-1 +kerning first=244 second=8221 amount=-2 +kerning first=367 second=113 amount=-1 +kerning first=1052 second=1096 amount=-1 +kerning first=1068 second=1049 amount=-1 +kerning first=323 second=366 amount=-1 +kerning first=1050 second=1095 amount=-1 +kerning first=211 second=195 amount=-1 +kerning first=88 second=116 amount=-1 +kerning first=203 second=216 amount=-1 +kerning first=259 second=113 amount=-1 +kerning first=205 second=67 amount=-1 +kerning first=325 second=79 amount=-1 +kerning first=220 second=241 amount=-1 +kerning first=73 second=8218 amount=-1 +kerning first=65 second=345 amount=-1 +kerning first=8222 second=240 amount=-1 +kerning first=70 second=195 amount=-1 +kerning first=289 second=250 amount=-1 +kerning first=253 second=250 amount=-1 +kerning first=121 second=104 amount=-1 +kerning first=1056 second=1119 amount=-1 +kerning first=217 second=250 amount=-1 +kerning first=364 second=70 amount=-1 +kerning first=218 second=357 amount=-1 +kerning first=8218 second=283 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=368 second=274 amount=-1 +kerning first=374 second=258 amount=-1 +kerning first=314 second=345 amount=-1 +kerning first=296 second=274 amount=-1 +kerning first=77 second=357 amount=-1 +kerning first=298 second=214 amount=-1 +kerning first=220 second=70 amount=-1 +kerning first=213 second=46 amount=-1 +kerning first=274 second=76 amount=-1 +kerning first=211 second=368 amount=-1 +kerning first=206 second=207 amount=-1 +kerning first=1049 second=1105 amount=-1 +kerning first=250 second=291 amount=-1 +kerning first=106 second=8221 amount=-1 +kerning first=278 second=207 amount=-1 +kerning first=67 second=204 amount=-1 +kerning first=211 second=8221 amount=-2 +kerning first=350 second=207 amount=-1 +kerning first=232 second=107 amount=-1 +kerning first=221 second=243 amount=-1 +kerning first=99 second=382 amount=-1 +kerning first=70 second=368 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=196 second=107 amount=-1 +kerning first=108 second=369 amount=-1 +kerning first=209 second=271 amount=-1 +kerning first=209 second=336 amount=-1 +kerning first=366 second=8250 amount=-2 +kerning first=1053 second=1086 amount=-1 +kerning first=1065 second=1054 amount=-1 +kerning first=74 second=366 amount=-1 +kerning first=281 second=271 amount=-1 +kerning first=8222 second=117 amount=-1 +kerning first=296 second=103 amount=-1 +kerning first=193 second=116 amount=-1 +kerning first=354 second=378 amount=-1 +kerning first=8217 second=252 amount=-1 +kerning first=370 second=210 amount=-1 +kerning first=89 second=256 amount=-1 +kerning first=262 second=210 amount=-1 +kerning first=298 second=200 amount=-1 +kerning first=364 second=122 amount=-1 +kerning first=280 second=204 amount=-1 +kerning first=246 second=378 amount=-1 +kerning first=196 second=86 amount=-1 +kerning first=8218 second=269 amount=-1 +kerning first=302 second=382 amount=-1 +kerning first=202 second=202 amount=-1 +kerning first=209 second=8220 amount=-1 +kerning first=1059 second=1117 amount=-1 +kerning first=1069 second=1083 amount=-1 +kerning first=8250 second=326 amount=-1 +kerning first=1066 second=1044 amount=-1 +kerning first=80 second=235 amount=-1 +kerning first=223 second=187 amount=-1 +kerning first=362 second=207 amount=-1 +kerning first=116 second=235 amount=-1 +kerning first=266 second=209 amount=-1 +kerning first=368 second=347 amount=-1 +kerning first=221 second=235 amount=-1 +kerning first=275 second=281 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=296 second=347 amount=-1 +kerning first=257 second=235 amount=-1 +kerning first=200 second=290 amount=-1 +kerning first=68 second=198 amount=-1 +kerning first=217 second=350 amount=-1 +kerning first=365 second=235 amount=-1 +kerning first=250 second=277 amount=-1 +kerning first=1033 second=1056 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=1069 second=1056 amount=-1 +kerning first=205 second=213 amount=-1 +kerning first=1075 second=1090 amount=-1 +kerning first=70 second=268 amount=-1 +kerning first=8218 second=275 amount=-1 +kerning first=1056 second=1077 amount=-1 +kerning first=80 second=283 amount=-1 +kerning first=327 second=351 amount=-1 +kerning first=116 second=283 amount=-1 +kerning first=291 second=351 amount=-1 +kerning first=199 second=231 amount=-1 +kerning first=255 second=351 amount=-1 +kerning first=200 second=363 amount=-1 +kerning first=235 second=231 amount=-1 +kerning first=219 second=351 amount=-1 +kerning first=271 second=231 amount=-1 +kerning first=8249 second=219 amount=-1 +kerning first=325 second=350 amount=-1 +kerning first=1091 second=1087 amount=-1 +kerning first=214 second=88 amount=-1 +kerning first=77 second=244 amount=-1 +kerning first=221 second=257 amount=-1 +kerning first=338 second=67 amount=-1 +kerning first=1054 second=1049 amount=-1 +kerning first=1078 second=1081 amount=-1 +kerning first=121 second=8249 amount=-1 +kerning first=1033 second=1064 amount=-1 +kerning first=365 second=283 amount=-1 +kerning first=217 second=79 amount=-1 +kerning first=218 second=244 amount=-1 +kerning first=257 second=283 amount=-1 +kerning first=201 second=82 amount=-1 +kerning first=226 second=8249 amount=-1 +kerning first=307 second=231 amount=-1 +kerning first=73 second=344 amount=-1 +kerning first=65 second=307 amount=-1 +kerning first=86 second=338 amount=-1 +kerning first=78 second=351 amount=-1 +kerning first=326 second=244 amount=-1 +kerning first=221 second=283 amount=-1 +kerning first=362 second=244 amount=-1 +kerning first=82 second=332 amount=-1 +kerning first=87 second=345 amount=-1 +kerning first=200 second=202 amount=-1 +kerning first=195 second=79 amount=-1 +kerning first=72 second=209 amount=-1 +kerning first=105 second=248 amount=-1 +kerning first=192 second=345 amount=-1 +kerning first=1062 second=1089 amount=-1 +kerning first=228 second=345 amount=-1 +kerning first=271 second=283 amount=-1 +kerning first=1048 second=1076 amount=-1 +kerning first=281 second=243 amount=-1 +kerning first=264 second=345 amount=-1 +kerning first=307 second=283 amount=-1 +kerning first=268 second=235 amount=-1 +kerning first=339 second=369 amount=-1 +kerning first=199 second=283 amount=-1 +kerning first=187 second=332 amount=-1 +kerning first=220 second=371 amount=-1 +kerning first=304 second=235 amount=-1 +kerning first=235 second=283 amount=-1 +kerning first=274 second=274 amount=-1 +kerning first=203 second=367 amount=-1 +kerning first=207 second=257 amount=-1 +kerning first=112 second=380 amount=-1 +kerning first=1051 second=1067 amount=-1 +kerning first=202 second=274 amount=-1 +kerning first=275 second=367 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=362 second=192 amount=-1 +kerning first=217 second=380 amount=-1 +kerning first=89 second=213 amount=-1 +kerning first=85 second=323 amount=-1 +kerning first=325 second=66 amount=-1 +kerning first=106 second=281 amount=-1 +kerning first=253 second=380 amount=-1 +kerning first=218 second=192 amount=-1 +kerning first=213 second=209 amount=-1 +kerning first=199 second=226 amount=-1 +kerning first=1065 second=1080 amount=-1 +kerning first=195 second=336 amount=-1 +kerning first=1036 second=1054 amount=-1 +kerning first=350 second=44 amount=-1 +kerning first=262 second=323 amount=-1 +kerning first=86 second=252 amount=-1 +kerning first=71 second=330 amount=-1 +kerning first=263 second=252 amount=-1 +kerning first=45 second=119 amount=-1 +kerning first=370 second=323 amount=-1 +kerning first=198 second=70 amount=-1 +kerning first=346 second=274 amount=-1 +kerning first=334 second=323 amount=-1 +kerning first=229 second=244 amount=-1 +kerning first=89 second=171 amount=-2 +kerning first=298 second=323 amount=-1 +kerning first=8250 second=68 amount=-1 +kerning first=296 second=231 amount=-1 +kerning first=354 second=248 amount=-1 +kerning first=258 second=119 amount=-1 +kerning first=328 second=8217 amount=-2 +kerning first=296 second=261 amount=-1 +kerning first=290 second=366 amount=-1 +kerning first=65 second=44 amount=-1 +kerning first=282 second=218 amount=-1 +kerning first=323 second=201 amount=-1 +kerning first=368 second=231 amount=-1 +kerning first=368 second=261 amount=-1 +kerning first=1069 second=1055 amount=-1 +kerning first=210 second=218 amount=-1 +kerning first=198 second=327 amount=-1 +kerning first=1068 second=1071 amount=-1 +kerning first=74 second=229 amount=-1 +kerning first=229 second=314 amount=-1 +kerning first=242 second=44 amount=-1 +kerning first=193 second=314 amount=-1 +kerning first=270 second=327 amount=-1 +kerning first=224 second=231 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=69 second=218 amount=-1 +kerning first=74 second=201 amount=-1 +kerning first=262 second=353 amount=-1 +kerning first=266 second=243 amount=-1 +kerning first=97 second=8249 amount=-1 +kerning first=362 second=249 amount=-1 +kerning first=1028 second=1081 amount=-1 +kerning first=370 second=223 amount=-1 +kerning first=230 second=243 amount=-1 +kerning first=73 second=45 amount=-1 +kerning first=338 second=80 amount=-1 +kerning first=334 second=353 amount=-1 +kerning first=302 second=80 amount=-1 +kerning first=298 second=353 amount=-1 +kerning first=298 second=223 amount=-1 +kerning first=302 second=243 amount=-1 +kerning first=88 second=214 amount=-1 +kerning first=218 second=249 amount=-1 +kerning first=370 second=353 amount=-1 +kerning first=374 second=243 amount=-1 +kerning first=250 second=45 amount=-1 +kerning first=1064 second=1081 amount=-1 +kerning first=370 second=310 amount=-1 +kerning first=1118 second=1114 amount=-1 +kerning first=85 second=223 amount=-1 +kerning first=218 second=72 amount=-1 +kerning first=119 second=287 amount=-1 +kerning first=286 second=45 amount=-1 +kerning first=1064 second=1036 amount=-1 +kerning first=258 second=363 amount=-1 +kerning first=85 second=353 amount=-1 +kerning first=262 second=223 amount=-1 +kerning first=89 second=243 amount=-1 +kerning first=87 second=101 amount=-1 +kerning first=362 second=201 amount=-1 +kerning first=198 second=284 amount=-1 +kerning first=1046 second=1114 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=71 second=370 amount=-1 +kerning first=366 second=363 amount=-1 +kerning first=116 second=240 amount=-1 +kerning first=1051 second=1097 amount=-1 +kerning first=1065 second=1082 amount=-1 +kerning first=1059 second=1098 amount=-1 +kerning first=82 second=362 amount=-1 +kerning first=259 second=232 amount=-1 +kerning first=228 second=101 amount=-1 +kerning first=288 second=200 amount=-1 +kerning first=1067 second=1072 amount=-1 +kerning first=187 second=362 amount=-1 +kerning first=8222 second=99 amount=-1 +kerning first=1069 second=1027 amount=-1 +kerning first=204 second=266 amount=-1 +kerning first=199 second=296 amount=-1 +kerning first=78 second=347 amount=-1 +kerning first=74 second=258 amount=-1 +kerning first=367 second=232 amount=-1 +kerning first=259 second=8250 amount=-1 +kerning first=223 second=8250 amount=-1 +kerning first=118 second=8250 amount=-1 +kerning first=364 second=371 amount=-1 +kerning first=197 second=71 amount=-1 +kerning first=202 second=217 amount=-1 +kerning first=269 second=234 amount=-1 +kerning first=233 second=234 amount=-1 +kerning first=274 second=217 amount=-1 +kerning first=1031 second=1072 amount=-1 +kerning first=310 second=217 amount=-1 +kerning first=253 second=351 amount=-1 +kerning first=305 second=234 amount=-1 +kerning first=346 second=217 amount=-1 +kerning first=1036 second=1096 amount=-1 +kerning first=228 second=8220 amount=-2 +kerning first=80 second=313 amount=-1 +kerning first=97 second=111 amount=-1 +kerning first=192 second=8220 amount=-2 +kerning first=221 second=229 amount=-1 +kerning first=97 second=287 amount=-1 +kerning first=252 second=235 amount=-1 +kerning first=264 second=8220 amount=-1 +kerning first=234 second=254 amount=-1 +kerning first=205 second=72 amount=-1 +kerning first=66 second=8218 amount=-1 +kerning first=336 second=8220 amount=-2 +kerning first=1051 second=1024 amount=-1 +kerning first=77 second=352 amount=-1 +kerning first=193 second=374 amount=-1 +kerning first=267 second=263 amount=-1 +kerning first=296 second=69 amount=-1 +kerning first=1030 second=1117 amount=-1 +kerning first=366 second=212 amount=-1 +kerning first=218 second=352 amount=-1 +kerning first=339 second=263 amount=-1 +kerning first=377 second=8220 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=205 second=278 amount=-1 +kerning first=266 second=259 amount=-1 +kerning first=278 second=315 amount=-1 +kerning first=362 second=352 amount=-1 +kerning first=1038 second=1083 amount=-1 +kerning first=258 second=212 amount=-1 +kerning first=87 second=8220 amount=-1 +kerning first=101 second=104 amount=-1 +kerning first=206 second=315 amount=-1 +kerning first=197 second=114 amount=-1 +kerning first=83 second=68 amount=-1 +kerning first=67 second=199 amount=-1 +kerning first=219 second=115 amount=-1 +kerning first=269 second=114 amount=-1 +kerning first=255 second=115 amount=-1 +kerning first=233 second=114 amount=-1 +kerning first=284 second=370 amount=-1 +kerning first=87 second=194 amount=-1 +kerning first=316 second=250 amount=-1 +kerning first=323 second=331 amount=-1 +kerning first=280 second=199 amount=-1 +kerning first=78 second=115 amount=-1 +kerning first=231 second=263 amount=-1 +kerning first=202 second=81 amount=-1 +kerning first=334 second=310 amount=-1 +kerning first=232 second=365 amount=-1 +kerning first=298 second=310 amount=-1 +kerning first=368 second=68 amount=-1 +kerning first=45 second=106 amount=-1 +kerning first=67 second=269 amount=-1 +kerning first=310 second=81 amount=-1 +kerning first=103 second=269 amount=-1 +kerning first=196 second=365 amount=-1 +kerning first=316 second=269 amount=-1 +kerning first=327 second=115 amount=-1 +kerning first=252 second=243 amount=-1 +kerning first=8222 second=235 amount=-1 +kerning first=85 second=310 amount=-1 +kerning first=195 second=253 amount=-1 +kerning first=296 second=68 amount=-1 +kerning first=74 second=331 amount=-1 +kerning first=73 second=346 amount=-1 +kerning first=266 second=245 amount=-1 +kerning first=206 second=78 amount=-1 +kerning first=209 second=78 amount=-1 +kerning first=330 second=246 amount=-1 +kerning first=8218 second=229 amount=-1 +kerning first=1048 second=1062 amount=-1 +kerning first=213 second=282 amount=-1 +kerning first=1069 second=1043 amount=-1 +kerning first=368 second=334 amount=-1 +kerning first=207 second=219 amount=-1 +kerning first=8222 second=305 amount=-1 +kerning first=323 second=288 amount=-1 +kerning first=1033 second=1043 amount=-1 +kerning first=283 second=355 amount=-1 +kerning first=70 second=260 amount=-1 +kerning first=207 second=227 amount=-1 +kerning first=211 second=84 amount=-1 +kerning first=8218 second=101 amount=-1 +kerning first=1069 second=1041 amount=-1 +kerning first=72 second=282 amount=-1 +kerning first=1066 second=1052 amount=-1 +kerning first=272 second=8217 amount=-2 +kerning first=211 second=260 amount=-1 +kerning first=1030 second=1052 amount=-1 +kerning first=1078 second=1094 amount=-1 +kerning first=74 second=288 amount=-1 +kerning first=1042 second=1094 amount=-1 +kerning first=346 second=187 amount=-1 +kerning first=217 second=337 amount=-1 +kerning first=362 second=279 amount=-1 +kerning first=274 second=187 amount=-1 +kerning first=193 second=108 amount=-1 +kerning first=65 second=87 amount=-1 +kerning first=310 second=187 amount=-1 +kerning first=229 second=108 amount=-1 +kerning first=255 second=8217 amount=-2 +kerning first=105 second=291 amount=-1 +kerning first=291 second=8217 amount=-2 +kerning first=269 second=111 amount=-1 +kerning first=327 second=8217 amount=-1 +kerning first=337 second=108 amount=-1 +kerning first=363 second=8217 amount=-1 +kerning first=286 second=75 amount=-1 +kerning first=77 second=279 amount=-1 +kerning first=1056 second=1064 amount=-1 +kerning first=214 second=75 amount=-1 +kerning first=370 second=216 amount=-1 +kerning first=202 second=187 amount=-1 +kerning first=362 second=70 amount=-1 +kerning first=268 second=99 amount=-1 +kerning first=218 second=279 amount=-1 +kerning first=1062 second=1119 amount=-1 +kerning first=304 second=99 amount=-1 +kerning first=196 second=361 amount=-1 +kerning first=368 second=355 amount=-1 +kerning first=97 second=187 amount=-1 +kerning first=289 second=337 amount=-1 +kerning first=105 second=235 amount=-1 +kerning first=73 second=75 amount=-1 +kerning first=232 second=99 amount=-1 +kerning first=200 second=268 amount=-1 +kerning first=289 second=242 amount=-1 +kerning first=258 second=255 amount=-1 +kerning first=325 second=242 amount=-1 +kerning first=221 second=99 amount=-1 +kerning first=1050 second=1082 amount=-1 +kerning first=217 second=242 amount=-1 +kerning first=250 second=281 amount=-1 +kerning first=257 second=99 amount=-1 +kerning first=1065 second=1104 amount=-1 +kerning first=315 second=86 amount=-1 +kerning first=344 second=268 amount=-1 +kerning first=213 second=347 amount=-1 +kerning first=8249 second=370 amount=-1 +kerning first=45 second=255 amount=-1 +kerning first=365 second=99 amount=-1 +kerning first=213 second=89 amount=-1 +kerning first=171 second=86 amount=-1 +kerning first=72 second=347 amount=-1 +kerning first=305 second=277 amount=-1 +kerning first=69 second=77 amount=-1 +kerning first=269 second=277 amount=-1 +kerning first=196 second=355 amount=-1 +kerning first=274 second=325 amount=-1 +kerning first=233 second=277 amount=-1 +kerning first=364 second=198 amount=-1 +kerning first=219 second=264 amount=-1 +kerning first=346 second=325 amount=-1 +kerning first=1053 second=1073 amount=-1 +kerning first=73 second=281 amount=-1 +kerning first=220 second=233 amount=-1 +kerning first=203 second=296 amount=-1 +kerning first=109 second=281 amount=-1 +kerning first=78 second=264 amount=-1 +kerning first=284 second=69 amount=-1 +kerning first=113 second=108 amount=-1 +kerning first=280 second=8217 amount=-1 +kerning first=8222 second=335 amount=-1 +kerning first=209 second=241 amount=-1 +kerning first=316 second=8217 amount=-1 +kerning first=352 second=364 amount=-1 +kerning first=70 second=290 amount=-1 +kerning first=202 second=250 amount=-1 +kerning first=328 second=233 amount=-1 +kerning first=288 second=282 amount=-1 +kerning first=298 second=82 amount=-1 +kerning first=1055 second=1065 amount=-1 +kerning first=262 second=82 amount=-1 +kerning first=280 second=364 amount=-1 +kerning first=374 second=286 amount=-1 +kerning first=103 second=8217 amount=-2 +kerning first=370 second=82 amount=-1 +kerning first=1041 second=1117 amount=-1 +kerning first=71 second=69 amount=-1 +kerning first=334 second=82 amount=-1 +kerning first=1077 second=1117 amount=-1 +kerning first=212 second=69 amount=-1 +kerning first=208 second=8217 amount=-2 +kerning first=254 second=108 amount=-1 +kerning first=244 second=8217 amount=-2 +kerning first=1047 second=1091 amount=-1 +kerning first=105 second=243 amount=-1 +kerning first=266 second=286 amount=-1 +kerning first=89 second=351 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=302 second=286 amount=-1 +kerning first=1038 second=1061 amount=-1 +kerning first=338 second=286 amount=-1 +kerning first=302 second=351 amount=-1 +kerning first=70 second=355 amount=-1 +kerning first=89 second=286 amount=-1 +kerning first=266 second=351 amount=-1 +kerning first=75 second=338 amount=-1 +kerning first=230 second=351 amount=-1 +kerning first=1105 second=1078 amount=-1 +kerning first=199 second=334 amount=-1 +kerning first=1064 second=1030 amount=-1 +kerning first=194 second=286 amount=-1 +kerning first=80 second=99 amount=-1 +kerning first=85 second=82 amount=-1 +kerning first=258 second=216 amount=-1 +kerning first=66 second=365 amount=-1 +kerning first=272 second=203 amount=-1 +kerning first=1039 second=1095 amount=-1 +kerning first=1056 second=1043 amount=-1 +kerning first=327 second=103 amount=-1 +kerning first=1041 second=1037 amount=-1 +kerning first=118 second=254 amount=-1 +kerning first=1064 second=1072 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=200 second=203 amount=-1 +kerning first=1052 second=1074 amount=-1 +kerning first=1055 second=1039 amount=-1 +kerning first=220 second=122 amount=-1 +kerning first=1042 second=1083 amount=-1 +kerning first=287 second=117 amount=-1 +kerning first=220 second=100 amount=-1 +kerning first=288 second=296 amount=-1 +kerning first=220 second=263 amount=-1 +kerning first=88 second=171 amount=-1 +kerning first=70 second=298 amount=-1 +kerning first=67 second=8217 amount=-1 +kerning first=211 second=298 amount=-1 +kerning first=193 second=171 amount=-1 +kerning first=364 second=100 amount=-1 +kerning first=328 second=263 amount=-1 +kerning first=264 second=229 amount=-1 +kerning first=229 second=171 amount=-1 +kerning first=1036 second=1104 amount=-1 +kerning first=364 second=263 amount=-1 +kerning first=369 second=246 amount=-1 +kerning first=1038 second=1118 amount=-1 +kerning first=210 second=356 amount=-1 +kerning first=66 second=75 amount=-1 +kerning first=368 second=369 amount=-1 +kerning first=296 second=304 amount=-1 +kerning first=8217 second=230 amount=-1 +kerning first=261 second=246 amount=-1 +kerning first=368 second=304 amount=-1 +kerning first=73 second=66 amount=-1 +kerning first=225 second=246 amount=-1 +kerning first=83 second=304 amount=-1 +kerning first=1065 second=1118 amount=-1 +kerning first=1039 second=1060 amount=-1 +kerning first=1049 second=1080 amount=-1 +kerning first=199 second=120 amount=-1 +kerning first=1070 second=1031 amount=-1 +kerning first=277 second=316 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=235 second=120 amount=-1 +kerning first=195 second=220 amount=-1 +kerning first=1078 second=1086 amount=-1 +kerning first=344 second=368 amount=-1 +kerning first=200 second=8221 amount=-1 +kerning first=240 second=103 amount=-1 +kerning first=194 second=221 amount=-1 +kerning first=204 second=103 amount=-1 +kerning first=264 second=217 amount=-1 +kerning first=275 second=382 amount=-1 +kerning first=272 second=8221 amount=-2 +kerning first=272 second=218 amount=-1 +kerning first=198 second=211 amount=-1 +kerning first=99 second=103 amount=-1 +kerning first=200 second=368 amount=-1 +kerning first=289 second=109 amount=-1 +kerning first=344 second=8221 amount=-1 +kerning first=1078 second=1108 amount=-1 +kerning first=288 second=330 amount=-1 +kerning first=8250 second=369 amount=-1 +kerning first=325 second=109 amount=-1 +kerning first=72 second=68 amount=-1 +kerning first=272 second=368 amount=-1 +kerning first=103 second=307 amount=-1 +kerning first=217 second=109 amount=-1 +kerning first=213 second=68 amount=-1 +kerning first=1046 second=1092 amount=-1 +kerning first=279 second=8218 amount=-1 +kerning first=97 second=382 amount=-1 +kerning first=119 second=98 amount=-1 +kerning first=210 second=85 amount=-1 +kerning first=287 second=223 amount=-1 +kerning first=72 second=339 amount=-1 +kerning first=69 second=85 amount=-1 +kerning first=219 second=256 amount=-1 +kerning first=67 second=234 amount=-1 +kerning first=321 second=8220 amount=-1 +kerning first=1053 second=1081 amount=-1 +kerning first=201 second=210 amount=-1 +kerning first=89 second=199 amount=-1 +kerning first=1070 second=1059 amount=-1 +kerning first=264 second=302 amount=-1 +kerning first=323 second=223 amount=-1 +kerning first=103 second=234 amount=-1 +kerning first=100 second=243 amount=-1 +kerning first=325 second=280 amount=-1 +kerning first=268 second=335 amount=-1 +kerning first=1050 second=1090 amount=-1 +kerning first=232 second=335 amount=-1 +kerning first=205 second=243 amount=-1 +kerning first=70 second=363 amount=-1 +kerning first=304 second=335 amount=-1 +kerning first=277 second=243 amount=-1 +kerning first=241 second=243 amount=-1 +kerning first=74 second=223 amount=-1 +kerning first=108 second=339 amount=-1 +kerning first=249 second=339 amount=-1 +kerning first=270 second=219 amount=-1 +kerning first=283 second=363 amount=-1 +kerning first=70 second=225 amount=-1 +kerning first=198 second=219 amount=-1 +kerning first=287 second=8249 amount=-1 +kerning first=323 second=8249 amount=-1 +kerning first=368 second=71 amount=-1 +kerning first=207 second=357 amount=-1 +kerning first=206 second=350 amount=-1 +kerning first=213 second=76 amount=-1 +kerning first=282 second=365 amount=-1 +kerning first=72 second=76 amount=-1 +kerning first=279 second=357 amount=-1 +kerning first=1048 second=1034 amount=-1 +kerning first=214 second=196 amount=-1 +kerning first=109 second=289 amount=-1 +kerning first=250 second=289 amount=-1 +kerning first=267 second=228 amount=-1 +kerning first=316 second=234 amount=-1 +kerning first=214 second=354 amount=-1 +kerning first=1048 second=1068 amount=-1 +kerning first=8250 second=357 amount=-1 +kerning first=1049 second=1075 amount=-1 +kerning first=1078 second=1080 amount=-1 +kerning first=231 second=228 amount=-1 +kerning first=110 second=8249 amount=-1 +kerning first=1049 second=1074 amount=-1 +kerning first=66 second=83 amount=-1 +kerning first=282 second=85 amount=-1 +kerning first=278 second=79 amount=-1 +kerning first=1044 second=1108 amount=-1 +kerning first=72 second=274 amount=-1 +kerning first=73 second=80 amount=-1 +kerning first=204 second=366 amount=-1 +kerning first=350 second=250 amount=-1 +kerning first=346 second=46 amount=-1 +kerning first=310 second=46 amount=-1 +kerning first=45 second=112 amount=-1 +kerning first=354 second=283 amount=-1 +kerning first=1070 second=1045 amount=-1 +kerning first=80 second=378 amount=-1 +kerning first=368 second=8222 amount=-2 +kerning first=1071 second=1062 amount=-1 +kerning first=1054 second=1050 amount=-1 +kerning first=278 second=8218 amount=-1 +kerning first=8216 second=353 amount=-1 +kerning first=101 second=250 amount=-1 +kerning first=209 second=70 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=66 second=357 amount=-1 +kerning first=75 second=67 amount=-1 +kerning first=364 second=229 amount=-1 +kerning first=73 second=216 amount=-1 +kerning first=314 second=250 amount=-1 +kerning first=278 second=250 amount=-1 +kerning first=8220 second=115 amount=-1 +kerning first=1049 second=1060 amount=-1 +kerning first=272 second=195 amount=-1 +kerning first=66 second=192 amount=-1 +kerning first=72 second=382 amount=-1 +kerning first=68 second=70 amount=-1 +kerning first=213 second=274 amount=-1 +kerning first=266 second=213 amount=-1 +kerning first=202 second=317 amount=-1 +kerning first=74 second=323 amount=-1 +kerning first=375 second=122 amount=-1 +kerning first=119 second=369 amount=-1 +kerning first=325 second=207 amount=-1 +kerning first=83 second=369 amount=-1 +kerning first=274 second=317 amount=-1 +kerning first=362 second=116 amount=-1 +kerning first=220 second=271 amount=-1 +kerning first=346 second=317 amount=-1 +kerning first=231 second=122 amount=-1 +kerning first=374 second=213 amount=-1 +kerning first=267 second=122 amount=-1 +kerning first=338 second=213 amount=-1 +kerning first=302 second=213 amount=-1 +kerning first=79 second=198 amount=-1 +kerning first=364 second=271 amount=-1 +kerning first=332 second=8222 amount=-1 +kerning first=234 second=113 amount=-1 +kerning first=70 second=119 amount=-1 +kerning first=204 second=201 amount=-1 +kerning first=77 second=116 amount=-1 +kerning first=257 second=378 amount=-1 +kerning first=323 second=323 amount=-1 +kerning first=1027 second=1096 amount=-1 +kerning first=221 second=378 amount=-1 +kerning first=1070 second=1051 amount=-1 +kerning first=8249 second=362 amount=-1 +kerning first=217 second=207 amount=-1 +kerning first=119 second=8222 amount=-1 +kerning first=82 second=262 amount=-1 +kerning first=83 second=8222 amount=-1 +kerning first=218 second=116 amount=-1 +kerning first=187 second=262 amount=-1 +kerning first=210 second=315 amount=-1 +kerning first=79 second=366 amount=-1 +kerning first=87 second=113 amount=-1 +kerning first=254 second=314 amount=-1 +kerning first=220 second=259 amount=-1 +kerning first=213 second=204 amount=-1 +kerning first=1048 second=1081 amount=-1 +kerning first=291 second=355 amount=-1 +kerning first=232 second=339 amount=-1 +kerning first=80 second=195 amount=-1 +kerning first=113 second=314 amount=-1 +kerning first=65 second=363 amount=-1 +kerning first=101 second=363 amount=-1 +kerning first=364 second=259 amount=-1 +kerning first=205 second=110 amount=-1 +kerning first=212 second=198 amount=-1 +kerning first=323 second=116 amount=-1 +kerning first=344 second=67 amount=-1 +kerning first=279 second=369 amount=-1 +kerning first=287 second=116 amount=-1 +kerning first=1031 second=1030 amount=-1 +kerning first=278 second=363 amount=-1 +kerning first=67 second=73 amount=-1 +kerning first=200 second=207 amount=-1 +kerning first=200 second=67 amount=-1 +kerning first=350 second=363 amount=-1 +kerning first=214 second=356 amount=-1 +kerning first=205 second=317 amount=-1 +kerning first=230 second=103 amount=-1 +kerning first=272 second=207 amount=-1 +kerning first=66 second=369 amount=-1 +kerning first=264 second=113 amount=-1 +kerning first=187 second=210 amount=-1 +kerning first=8222 second=284 amount=-1 +kerning first=220 second=366 amount=-1 +kerning first=82 second=210 amount=-1 +kerning first=228 second=113 amount=-1 +kerning first=347 second=44 amount=-1 +kerning first=356 second=8250 amount=-1 +kerning first=1104 second=1093 amount=-1 +kerning first=270 second=302 amount=-1 +kerning first=78 second=213 amount=-1 +kerning first=67 second=268 amount=-1 +kerning first=267 second=271 amount=-1 +kerning first=1070 second=1038 amount=-1 +kerning first=253 second=8218 amount=-1 +kerning first=198 second=302 amount=-1 +kerning first=248 second=8250 amount=-1 +kerning first=339 second=271 amount=-1 +kerning first=280 second=268 amount=-1 +kerning first=212 second=8250 amount=-1 +kerning first=72 second=351 amount=-1 +kerning first=217 second=101 amount=-1 +kerning first=272 second=354 amount=-1 +kerning first=219 second=213 amount=-1 +kerning first=269 second=8220 amount=-2 +kerning first=234 second=8220 amount=-2 +kerning first=289 second=101 amount=-1 +kerning first=71 second=8250 amount=-1 +kerning first=198 second=8220 amount=-1 +kerning first=219 second=257 amount=-1 +kerning first=66 second=262 amount=-1 +kerning first=193 second=219 amount=-1 +kerning first=207 second=262 amount=-1 +kerning first=1044 second=1105 amount=-1 +kerning first=327 second=213 amount=-1 +kerning first=83 second=296 amount=-1 +kerning first=234 second=122 amount=-1 +kerning first=254 second=291 amount=-1 +kerning first=1058 second=1098 amount=-1 +kerning first=72 second=204 amount=-1 +kerning first=71 second=345 amount=-1 +kerning first=262 second=72 amount=-1 +kerning first=296 second=296 amount=-1 +kerning first=201 second=73 amount=-1 +kerning first=1078 second=1072 amount=-1 +kerning first=205 second=290 amount=-1 +kerning first=323 second=283 amount=-1 +kerning first=330 second=338 amount=-1 +kerning first=279 second=235 amount=-1 +kerning first=207 second=82 amount=-1 +kerning first=251 second=283 amount=-1 +kerning first=258 second=338 amount=-1 +kerning first=310 second=286 amount=-1 +kerning first=206 second=355 amount=-1 +kerning first=110 second=283 amount=-1 +kerning first=1067 second=1060 amount=-1 +kerning first=73 second=277 amount=-1 +kerning first=83 second=82 amount=-1 +kerning first=45 second=338 amount=-1 +kerning first=74 second=283 amount=-1 +kerning first=202 second=286 amount=-1 +kerning first=78 second=226 amount=-1 +kerning first=270 second=8220 amount=-2 +kerning first=213 second=351 amount=-1 +kerning first=114 second=226 amount=-1 +kerning first=232 second=367 amount=-1 +kerning first=274 second=286 amount=-1 +kerning first=272 second=260 amount=-1 +kerning first=210 second=86 amount=-1 +kerning first=82 second=8250 amount=-1 +kerning first=219 second=226 amount=-1 +kerning first=354 second=347 amount=-1 +kerning first=220 second=79 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=77 second=275 amount=-1 +kerning first=327 second=226 amount=-1 +kerning first=72 second=244 amount=-1 +kerning first=345 second=240 amount=-1 +kerning first=356 second=171 amount=-1 +kerning first=108 second=244 amount=-1 +kerning first=219 second=333 amount=-1 +kerning first=214 second=70 amount=-1 +kerning first=78 second=333 amount=-1 +kerning first=286 second=70 amount=-1 +kerning first=249 second=244 amount=-1 +kerning first=327 second=333 amount=-1 +kerning first=1064 second=1056 amount=-1 +kerning first=363 second=333 amount=-1 +kerning first=338 second=278 amount=-1 +kerning first=288 second=220 amount=-1 +kerning first=302 second=278 amount=-1 +kerning first=73 second=70 amount=-1 +kerning first=1055 second=1069 amount=-1 +kerning first=291 second=333 amount=-1 +kerning first=266 second=278 amount=-1 +kerning first=1039 second=1094 amount=-1 +kerning first=217 second=74 amount=-1 +kerning first=1052 second=1065 amount=-1 +kerning first=71 second=171 amount=-1 +kerning first=249 second=231 amount=-1 +kerning first=107 second=171 amount=-1 +kerning first=325 second=74 amount=-1 +kerning first=1031 second=1060 amount=-1 +kerning first=8250 second=76 amount=-1 +kerning first=224 second=269 amount=-1 +kerning first=72 second=231 amount=-1 +kerning first=284 second=171 amount=-1 +kerning first=199 second=201 amount=-1 +kerning first=108 second=231 amount=-1 +kerning first=338 second=252 amount=-1 +kerning first=370 second=214 amount=-1 +kerning first=368 second=269 amount=-1 +kerning first=279 second=249 amount=-1 +kerning first=107 second=318 amount=-1 +kerning first=296 second=269 amount=-1 +kerning first=374 second=252 amount=-1 +kerning first=262 second=214 amount=-1 +kerning first=171 second=370 amount=-1 +kerning first=323 second=310 amount=-1 +kerning first=66 second=249 amount=-1 +kerning first=8250 second=90 amount=-1 +kerning first=248 second=318 amount=-1 +kerning first=282 second=200 amount=-1 +kerning first=69 second=266 amount=-1 +kerning first=268 second=8222 amount=-1 +kerning first=212 second=209 amount=-1 +kerning first=117 second=287 amount=-1 +kerning first=232 second=8222 amount=-1 +kerning first=266 second=45 amount=-1 +kerning first=196 second=370 amount=-1 +kerning first=89 second=252 amount=-1 +kerning first=73 second=97 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=194 second=45 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=203 second=71 amount=-1 +kerning first=1062 second=1097 amount=-1 +kerning first=374 second=45 amount=-2 +kerning first=304 second=370 amount=-1 +kerning first=78 second=199 amount=-1 +kerning first=234 second=275 amount=-1 +kerning first=230 second=252 amount=-1 +kerning first=338 second=45 amount=-1 +kerning first=85 second=214 amount=-1 +kerning first=268 second=370 amount=-1 +kerning first=288 second=209 amount=-1 +kerning first=1105 second=1081 amount=-1 +kerning first=270 second=73 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=72 second=217 amount=-1 +kerning first=8250 second=296 amount=-1 +kerning first=304 second=223 amount=-1 +kerning first=77 second=338 amount=-1 +kerning first=268 second=223 amount=-1 +kerning first=364 second=232 amount=-1 +kerning first=213 second=217 amount=-1 +kerning first=1030 second=1027 amount=-1 +kerning first=219 second=201 amount=-1 +kerning first=328 second=232 amount=-1 +kerning first=67 second=108 amount=-1 +kerning first=230 second=251 amount=-1 +kerning first=224 second=243 amount=-1 +kerning first=321 second=217 amount=-1 +kerning first=1066 second=1027 amount=-1 +kerning first=296 second=243 amount=-1 +kerning first=282 second=266 amount=-1 +kerning first=374 second=251 amount=-1 +kerning first=368 second=243 amount=-1 +kerning first=83 second=274 amount=-1 +kerning first=259 second=171 amount=-1 +kerning first=101 second=242 amount=-1 +kerning first=214 second=8221 amount=-2 +kerning first=89 second=225 amount=-1 +kerning first=250 second=8221 amount=-1 +kerning first=284 second=345 amount=-1 +kerning first=235 second=335 amount=-1 +kerning first=286 second=8221 amount=-1 +kerning first=199 second=335 amount=-1 +kerning first=302 second=225 amount=-1 +kerning first=220 second=232 amount=-1 +kerning first=266 second=72 amount=-1 +kerning first=307 second=335 amount=-1 +kerning first=1048 second=1054 amount=-1 +kerning first=266 second=225 amount=-1 +kerning first=302 second=72 amount=-1 +kerning first=271 second=335 amount=-1 +kerning first=197 second=89 amount=-1 +kerning first=374 second=225 amount=-1 +kerning first=8249 second=83 amount=-1 +kerning first=206 second=242 amount=-1 +kerning first=1043 second=1105 amount=-1 +kerning first=1039 second=1052 amount=-1 +kerning first=1065 second=1089 amount=-1 +kerning first=1054 second=1063 amount=-1 +kerning first=65 second=336 amount=-1 +kerning first=204 second=243 amount=-1 +kerning first=262 second=114 amount=-1 +kerning first=1028 second=1117 amount=-1 +kerning first=338 second=72 amount=-1 +kerning first=272 second=344 amount=-1 +kerning first=85 second=241 amount=-1 +kerning first=1055 second=1096 amount=-1 +kerning first=206 second=336 amount=-1 +kerning first=217 second=269 amount=-1 +kerning first=370 second=241 amount=-1 +kerning first=8250 second=270 amount=-1 +kerning first=278 second=336 amount=-1 +kerning first=298 second=241 amount=-1 +kerning first=262 second=241 amount=-1 +kerning first=325 second=114 amount=-1 +kerning first=1060 second=1045 amount=-1 +kerning first=72 second=378 amount=-1 +kerning first=289 second=114 amount=-1 +kerning first=219 second=199 amount=-1 +kerning first=67 second=115 amount=-1 +kerning first=1071 second=1056 amount=-1 +kerning first=103 second=115 amount=-1 +kerning first=114 second=46 amount=-1 +kerning first=255 second=46 amount=-1 +kerning first=327 second=199 amount=-1 +kerning first=187 second=344 amount=-1 +kerning first=77 second=81 amount=-1 +kerning first=112 second=114 amount=-1 +kerning first=77 second=327 amount=-1 +kerning first=1049 second=1113 amount=-1 +kerning first=85 second=361 amount=-1 +kerning first=217 second=114 amount=-1 +kerning first=108 second=378 amount=-1 +kerning first=206 second=79 amount=-1 +kerning first=204 second=284 amount=-1 +kerning first=218 second=327 amount=-1 +kerning first=1053 second=1045 amount=-1 +kerning first=65 second=216 amount=-1 +kerning first=290 second=327 amount=-1 +kerning first=74 second=310 amount=-1 +kerning first=218 second=81 amount=-1 +kerning first=262 second=44 amount=-1 +kerning first=73 second=8221 amount=-1 +kerning first=370 second=361 amount=-1 +kerning first=109 second=8221 amount=-2 +kerning first=206 second=216 amount=-1 +kerning first=362 second=81 amount=-1 +kerning first=88 second=218 amount=-1 +kerning first=333 second=8221 amount=-2 +kerning first=369 second=8221 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=80 second=8249 amount=-1 +kerning first=356 second=224 amount=-1 +kerning first=1042 second=1098 amount=-1 +kerning first=116 second=8249 amount=-1 +kerning first=78 second=72 amount=-1 +kerning first=221 second=369 amount=-1 +kerning first=221 second=8249 amount=-2 +kerning first=368 second=282 amount=-1 +kerning first=257 second=8249 amount=-1 +kerning first=1069 second=1068 amount=-1 +kerning first=221 second=331 amount=-1 +kerning first=296 second=282 amount=-1 +kerning first=209 second=352 amount=-1 +kerning first=199 second=102 amount=-1 +kerning first=85 second=267 amount=-1 +kerning first=1055 second=1070 amount=-1 +kerning first=326 second=45 amount=-1 +kerning first=219 second=72 amount=-1 +kerning first=1039 second=1055 amount=-1 +kerning first=1055 second=1089 amount=-1 +kerning first=83 second=282 amount=-1 +kerning first=86 second=248 amount=-1 +kerning first=193 second=218 amount=-1 +kerning first=227 second=248 amount=-1 +kerning first=8250 second=217 amount=-1 +kerning first=73 second=44 amount=-1 +kerning first=302 second=199 amount=-1 +kerning first=269 second=230 amount=-1 +kerning first=77 second=206 amount=-1 +kerning first=1067 second=1086 amount=-1 +kerning first=76 second=87 amount=-1 +kerning first=1033 second=1031 amount=-1 +kerning first=1031 second=1086 amount=-1 +kerning first=374 second=199 amount=-1 +kerning first=362 second=288 amount=-1 +kerning first=290 second=206 amount=-1 +kerning first=230 second=291 amount=-1 +kerning first=201 second=361 amount=-1 +kerning first=218 second=206 amount=-1 +kerning first=77 second=288 amount=-1 +kerning first=1048 second=1080 amount=-1 +kerning first=199 second=227 amount=-1 +kerning first=305 second=337 amount=-1 +kerning first=84 second=8221 amount=-1 +kerning first=313 second=84 amount=-1 +kerning first=66 second=81 amount=-1 +kerning first=269 second=337 amount=-1 +kerning first=362 second=206 amount=-1 +kerning first=120 second=8221 amount=-1 +kerning first=1091 second=1095 amount=-1 +kerning first=233 second=337 amount=-1 +kerning first=1055 second=1095 amount=-1 +kerning first=225 second=8221 amount=-2 +kerning first=207 second=81 amount=-1 +kerning first=187 second=197 amount=-1 +kerning first=261 second=8221 amount=-2 +kerning first=1043 second=1079 amount=-1 +kerning first=257 second=267 amount=-1 +kerning first=218 second=288 amount=-1 +kerning first=72 second=352 amount=-1 +kerning first=8249 second=221 amount=-1 +kerning first=206 second=362 amount=-1 +kerning first=212 second=197 amount=-1 +kerning first=103 second=187 amount=-1 +kerning first=83 second=270 amount=-1 +kerning first=217 second=75 amount=-1 +kerning first=195 second=219 amount=-1 +kerning first=278 second=362 amount=-1 +kerning first=1055 second=1117 amount=-1 +kerning first=72 second=325 amount=-1 +kerning first=67 second=187 amount=-1 +kerning first=350 second=362 amount=-1 +kerning first=218 second=8218 amount=-2 +kerning first=213 second=325 amount=-1 +kerning first=280 second=187 amount=-1 +kerning first=199 second=200 amount=-1 +kerning first=296 second=270 amount=-1 +kerning first=1075 second=1082 amount=-1 +kerning first=77 second=8218 amount=-1 +kerning first=221 second=266 amount=-1 +kerning first=244 second=187 amount=-1 +kerning first=70 second=66 amount=-1 +kerning first=65 second=255 amount=-1 +kerning first=335 second=382 amount=-1 +kerning first=80 second=8222 amount=-2 +kerning first=85 second=202 amount=-1 +kerning first=80 second=266 amount=-1 +kerning first=1036 second=1116 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=374 second=264 amount=-1 +kerning first=233 second=107 amount=-1 +kerning first=1055 second=1043 amount=-1 +kerning first=338 second=264 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=217 second=77 amount=-1 +kerning first=281 second=275 amount=-1 +kerning first=325 second=75 amount=-1 +kerning first=302 second=264 amount=-1 +kerning first=65 second=362 amount=-1 +kerning first=266 second=264 amount=-1 +kerning first=356 second=279 amount=-1 +kerning first=218 second=261 amount=-1 +kerning first=205 second=209 amount=-1 +kerning first=194 second=264 amount=-1 +kerning first=281 second=367 amount=-1 +kerning first=81 second=218 amount=-1 +kerning first=197 second=364 amount=-1 +kerning first=375 second=117 amount=-1 +kerning first=89 second=264 amount=-1 +kerning first=362 second=261 amount=-1 +kerning first=78 second=334 amount=-1 +kerning first=298 second=202 amount=-1 +kerning first=211 second=66 amount=-1 +kerning first=262 second=202 amount=-1 +kerning first=370 second=202 amount=-1 +kerning first=323 second=257 amount=-1 +kerning first=334 second=202 amount=-1 +kerning first=1027 second=1091 amount=-1 +kerning first=351 second=108 amount=-1 +kerning first=74 second=257 amount=-1 +kerning first=202 second=205 amount=-1 +kerning first=364 second=193 amount=-1 +kerning first=243 second=108 amount=-1 +kerning first=279 second=108 amount=-1 +kerning first=219 second=334 amount=-1 +kerning first=368 second=270 amount=-1 +kerning first=79 second=193 amount=-1 +kerning first=346 second=205 amount=-1 +kerning first=220 second=193 amount=-1 +kerning first=286 second=171 amount=-1 +kerning first=327 second=334 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=274 second=205 amount=-1 +kerning first=201 second=323 amount=-1 +kerning first=291 second=307 amount=-1 +kerning first=8218 second=113 amount=-1 +kerning first=68 second=194 amount=-1 +kerning first=8217 second=231 amount=-1 +kerning first=228 second=267 amount=-1 +kerning first=268 second=82 amount=-1 +kerning first=259 second=263 amount=-1 +kerning first=82 second=171 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=195 second=117 amount=-1 +kerning first=280 second=8218 amount=-1 +kerning first=368 second=351 amount=-1 +kerning first=220 second=46 amount=-2 +kerning first=86 second=286 amount=-1 +kerning first=296 second=351 amount=-1 +kerning first=99 second=365 amount=-1 +kerning first=339 second=117 amount=-1 +kerning first=1058 second=1074 amount=-1 +kerning first=288 second=68 amount=-1 +kerning first=8222 second=111 amount=-1 +kerning first=1055 second=1108 amount=-1 +kerning first=1108 second=1078 amount=-1 +kerning first=267 second=117 amount=-1 +kerning first=231 second=117 amount=-1 +kerning first=8250 second=282 amount=-1 +kerning first=192 second=8249 amount=-1 +kerning first=1031 second=1119 amount=-1 +kerning first=302 second=333 amount=-1 +kerning first=210 second=347 amount=-1 +kerning first=298 second=100 amount=-1 +kerning first=120 second=316 amount=-1 +kerning first=1118 second=1083 amount=-1 +kerning first=86 second=382 amount=-1 +kerning first=230 second=333 amount=-1 +kerning first=261 second=316 amount=-1 +kerning first=220 second=220 amount=-1 +kerning first=266 second=333 amount=-1 +kerning first=333 second=316 amount=-1 +kerning first=227 second=382 amount=-1 +kerning first=79 second=220 amount=-1 +kerning first=263 second=382 amount=-1 +kerning first=374 second=333 amount=-1 +kerning first=1067 second=1034 amount=-1 +kerning first=368 second=103 amount=-1 +kerning first=99 second=234 amount=-1 +kerning first=304 second=330 amount=-1 +kerning first=1031 second=1034 amount=-1 +kerning first=1031 second=1099 amount=-1 +kerning first=73 second=211 amount=-1 +kerning first=85 second=100 amount=-1 +kerning first=1065 second=1076 amount=-1 +kerning first=224 second=103 amount=-1 +kerning first=217 second=281 amount=-1 +kerning first=367 second=171 amount=-1 +kerning first=1067 second=1099 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=262 second=100 amount=-1 +kerning first=8250 second=378 amount=-1 +kerning first=364 second=220 amount=-1 +kerning first=204 second=77 amount=-1 +kerning first=89 second=333 amount=-1 +kerning first=338 second=85 amount=-1 +kerning first=339 second=113 amount=-1 +kerning first=235 second=252 amount=-1 +kerning first=1044 second=1057 amount=-1 +kerning first=302 second=85 amount=-1 +kerning first=80 second=304 amount=-1 +kerning first=266 second=85 amount=-1 +kerning first=1052 second=1092 amount=-1 +kerning first=201 second=280 amount=-1 +kerning first=279 second=314 amount=-1 +kerning first=194 second=85 amount=-1 +kerning first=337 second=120 amount=-1 +kerning first=243 second=314 amount=-1 +kerning first=200 second=315 amount=-1 +kerning first=355 second=8217 amount=-1 +kerning first=88 second=44 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=351 second=314 amount=-1 +kerning first=328 second=118 amount=-1 +kerning first=253 second=254 amount=-1 +kerning first=302 second=110 amount=-1 +kerning first=66 second=8220 amount=-2 +kerning first=345 second=8250 amount=-1 +kerning first=266 second=110 amount=-1 +kerning first=97 second=339 amount=-1 +kerning first=374 second=110 amount=-1 +kerning first=362 second=219 amount=-1 +kerning first=232 second=357 amount=-1 +kerning first=290 second=219 amount=-1 +kerning first=1048 second=1042 amount=-1 +kerning first=201 second=8250 amount=-1 +kerning first=196 second=357 amount=-1 +kerning first=310 second=85 amount=-1 +kerning first=8217 second=248 amount=-1 +kerning first=304 second=357 amount=-1 +kerning first=368 second=76 amount=-1 +kerning first=218 second=219 amount=-1 +kerning first=268 second=357 amount=-1 +kerning first=289 second=254 amount=-1 +kerning first=205 second=332 amount=-1 +kerning first=210 second=374 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=296 second=76 amount=-1 +kerning first=334 second=46 amount=-1 +kerning first=120 second=289 amount=-1 +kerning first=206 second=101 amount=-1 +kerning first=261 second=289 amount=-1 +kerning first=225 second=289 amount=-1 +kerning first=77 second=219 amount=-1 +kerning first=72 second=296 amount=-1 +kerning first=333 second=289 amount=-1 +kerning first=203 second=212 amount=-1 +kerning first=211 second=8217 amount=-2 +kerning first=100 second=111 amount=-1 +kerning first=272 second=315 amount=-1 +kerning first=83 second=76 amount=-1 +kerning first=369 second=289 amount=-1 +kerning first=213 second=296 amount=-1 +kerning first=205 second=111 amount=-1 +kerning first=241 second=111 amount=-1 +kerning first=70 second=8217 amount=-1 +kerning first=277 second=111 amount=-1 +kerning first=106 second=8217 amount=-1 +kerning first=284 second=280 amount=-1 +kerning first=323 second=241 amount=-1 +kerning first=354 second=335 amount=-1 +kerning first=287 second=241 amount=-1 +kerning first=81 second=89 amount=-1 +kerning first=313 second=85 amount=-1 +kerning first=1053 second=1099 amount=-1 +kerning first=205 second=85 amount=-1 +kerning first=74 second=241 amount=-1 +kerning first=243 second=287 amount=-1 +kerning first=219 second=8249 amount=-2 +kerning first=244 second=46 amount=-1 +kerning first=118 second=8220 amount=-2 +kerning first=206 second=271 amount=-1 +kerning first=352 second=46 amount=-1 +kerning first=259 second=8220 amount=-2 +kerning first=86 second=339 amount=-1 +kerning first=223 second=8220 amount=-2 +kerning first=262 second=259 amount=-1 +kerning first=114 second=171 amount=-1 +kerning first=351 second=287 amount=-1 +kerning first=187 second=302 amount=-1 +kerning first=8217 second=286 amount=-1 +kerning first=205 second=225 amount=-1 +kerning first=194 second=118 amount=-1 +kerning first=279 second=287 amount=-1 +kerning first=219 second=269 amount=-1 +kerning first=367 second=8220 amount=-1 +kerning first=275 second=250 amount=-1 +kerning first=366 second=229 amount=-1 +kerning first=355 second=225 amount=-1 +kerning first=224 second=378 amount=-1 +kerning first=330 second=229 amount=-1 +kerning first=214 second=195 amount=-1 +kerning first=203 second=250 amount=-1 +kerning first=1047 second=1090 amount=-1 +kerning first=72 second=8221 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=119 second=378 amount=-1 +kerning first=80 second=357 amount=-1 +kerning first=219 second=278 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=218 second=8217 amount=-1 +kerning first=193 second=284 amount=-1 +kerning first=368 second=378 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=270 second=344 amount=-1 +kerning first=1039 second=1043 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=211 second=207 amount=-1 +kerning first=78 second=278 amount=-1 +kerning first=296 second=378 amount=-1 +kerning first=1027 second=1075 amount=-1 +kerning first=258 second=89 amount=-1 +kerning first=67 second=288 amount=-1 +kerning first=198 second=220 amount=-1 +kerning first=327 second=278 amount=-1 +kerning first=199 second=76 amount=-1 +kerning first=270 second=220 amount=-1 +kerning first=88 second=284 amount=-1 +kerning first=366 second=246 amount=-1 +kerning first=1039 second=1064 amount=-1 +kerning first=206 second=74 amount=-1 +kerning first=71 second=280 amount=-1 +kerning first=1041 second=1118 amount=-1 +kerning first=212 second=280 amount=-1 +kerning first=204 second=114 amount=-1 +kerning first=325 second=216 amount=-1 +kerning first=282 second=201 amount=-1 +kerning first=275 second=113 amount=-1 +kerning first=362 second=369 amount=-1 +kerning first=118 second=104 amount=-1 +kerning first=234 second=339 amount=-1 +kerning first=1051 second=1084 amount=-1 +kerning first=72 second=269 amount=-1 +kerning first=210 second=201 amount=-1 +kerning first=72 second=213 amount=-1 +kerning first=108 second=269 amount=-1 +kerning first=69 second=201 amount=-1 +kerning first=274 second=204 amount=-1 +kerning first=1028 second=1094 amount=-1 +kerning first=8222 second=249 amount=-1 +kerning first=1064 second=1094 amount=-1 +kerning first=209 second=259 amount=-1 +kerning first=204 second=116 amount=-1 +kerning first=202 second=204 amount=-1 +kerning first=249 second=269 amount=-1 +kerning first=267 second=233 amount=-1 +kerning first=1031 second=1042 amount=-1 +kerning first=218 second=65 amount=-1 +kerning first=74 second=104 amount=-1 +kerning first=235 second=271 amount=-1 +kerning first=317 second=366 amount=-1 +kerning first=99 second=229 amount=-1 +kerning first=74 second=250 amount=-1 +kerning first=346 second=204 amount=-1 +kerning first=197 second=268 amount=-1 +kerning first=288 second=317 amount=-1 +kerning first=1030 second=1069 amount=-1 +kerning first=362 second=65 amount=-1 +kerning first=218 second=369 amount=-1 +kerning first=198 second=210 amount=-1 +kerning first=45 second=256 amount=-1 +kerning first=68 second=366 amount=-1 +kerning first=81 second=256 amount=-1 +kerning first=87 second=283 amount=-1 +kerning first=281 second=113 amount=-1 +kerning first=370 second=382 amount=-1 +kerning first=8218 second=255 amount=-1 +kerning first=262 second=73 amount=-1 +kerning first=77 second=262 amount=-1 +kerning first=334 second=73 amount=-1 +kerning first=298 second=73 amount=-1 +kerning first=8218 second=362 amount=-1 +kerning first=67 second=213 amount=-1 +kerning first=366 second=256 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=1031 second=1070 amount=-1 +kerning first=283 second=311 amount=-1 +kerning first=99 second=326 amount=-1 +kerning first=280 second=213 amount=-1 +kerning first=218 second=262 amount=-1 +kerning first=219 second=251 amount=-1 +kerning first=204 second=219 amount=-1 +kerning first=1052 second=1053 amount=-1 +kerning first=1046 second=1105 amount=-1 +kerning first=281 second=122 amount=-1 +kerning first=275 second=277 amount=-1 +kerning first=278 second=282 amount=-1 +kerning first=209 second=122 amount=-1 +kerning first=85 second=73 amount=-1 +kerning first=195 second=81 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=70 second=311 amount=-1 +kerning first=291 second=251 amount=-1 +kerning first=1059 second=1054 amount=-1 +kerning first=362 second=235 amount=-1 +kerning first=98 second=8221 amount=-2 +kerning first=367 second=345 amount=-1 +kerning first=204 second=283 amount=-1 +kerning first=203 second=8221 amount=-1 +kerning first=264 second=75 amount=-1 +kerning first=199 second=270 amount=-1 +kerning first=99 second=283 amount=-1 +kerning first=330 second=380 amount=-1 +kerning first=275 second=8221 amount=-2 +kerning first=100 second=248 amount=-1 +kerning first=197 second=187 amount=-1 +kerning first=311 second=8221 amount=-1 +kerning first=241 second=248 amount=-1 +kerning first=1048 second=1119 amount=-1 +kerning first=89 second=226 amount=-1 +kerning first=347 second=8221 amount=-2 +kerning first=205 second=248 amount=-1 +kerning first=366 second=380 amount=-1 +kerning first=74 second=218 amount=-1 +kerning first=367 second=279 amount=-1 +kerning first=221 second=196 amount=-1 +kerning first=206 second=243 amount=-1 +kerning first=217 second=336 amount=-1 +kerning first=339 second=242 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=241 second=232 amount=-1 +kerning first=231 second=242 amount=-1 +kerning first=81 second=66 amount=-1 +kerning first=78 second=223 amount=-1 +kerning first=302 second=226 amount=-1 +kerning first=45 second=66 amount=-1 +kerning first=325 second=336 amount=-1 +kerning first=374 second=226 amount=-1 +kerning first=327 second=277 amount=-1 +kerning first=240 second=283 amount=-1 +kerning first=258 second=370 amount=-1 +kerning first=8218 second=228 amount=-1 +kerning first=45 second=380 amount=-1 +kerning first=217 second=194 amount=-1 +kerning first=224 second=244 amount=-1 +kerning first=288 second=274 amount=-1 +kerning first=296 second=244 amount=-1 +kerning first=70 second=230 amount=-1 +kerning first=327 second=45 amount=-1 +kerning first=84 second=233 amount=-1 +kerning first=80 second=227 amount=-1 +kerning first=234 second=367 amount=-1 +kerning first=366 second=66 amount=-1 +kerning first=368 second=244 amount=-1 +kerning first=330 second=66 amount=-1 +kerning first=221 second=8222 amount=-2 +kerning first=225 second=233 amount=-1 +kerning first=219 second=8221 amount=-1 +kerning first=261 second=233 amount=-1 +kerning first=116 second=8222 amount=-1 +kerning first=266 second=71 amount=-1 +kerning first=77 second=235 amount=-1 +kerning first=283 second=279 amount=-1 +kerning first=336 second=44 amount=-1 +kerning first=369 second=233 amount=-1 +kerning first=97 second=231 amount=-1 +kerning first=264 second=44 amount=-1 +kerning first=218 second=235 amount=-1 +kerning first=203 second=70 amount=-1 +kerning first=288 second=82 amount=-1 +kerning first=1071 second=1045 amount=-1 +kerning first=326 second=235 amount=-1 +kerning first=118 second=318 amount=-1 +kerning first=1058 second=1116 amount=-1 +kerning first=192 second=71 amount=-1 +kerning first=74 second=214 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=196 second=249 amount=-1 +kerning first=367 second=275 amount=-1 +kerning first=219 second=206 amount=-1 +kerning first=364 second=258 amount=-1 +kerning first=217 second=363 amount=-1 +kerning first=323 second=214 amount=-1 +kerning first=204 second=310 amount=-1 +kerning first=99 second=353 amount=-1 +kerning first=253 second=363 amount=-1 +kerning first=1050 second=1104 amount=-1 +kerning first=235 second=243 amount=-1 +kerning first=289 second=363 amount=-1 +kerning first=264 second=71 amount=-1 +kerning first=66 second=370 amount=-1 +kerning first=204 second=353 amount=-1 +kerning first=78 second=45 amount=-1 +kerning first=80 second=298 amount=-1 +kerning first=70 second=77 amount=-1 +kerning first=315 second=370 amount=-1 +kerning first=114 second=45 amount=-1 +kerning first=207 second=370 amount=-1 +kerning first=103 second=369 amount=-1 +kerning first=259 second=275 amount=-1 +kerning first=192 second=362 amount=-1 +kerning first=288 second=80 amount=-1 +kerning first=232 second=249 amount=-1 +kerning first=255 second=45 amount=-1 +kerning first=263 second=106 amount=-1 +kerning first=88 second=336 amount=-1 +kerning first=277 second=252 amount=-1 +kerning first=291 second=45 amount=-1 +kerning first=198 second=8250 amount=-1 +kerning first=227 second=242 amount=-1 +kerning first=335 second=106 amount=-1 +kerning first=219 second=45 amount=-2 +kerning first=106 second=234 amount=-1 +kerning first=370 second=267 amount=-1 +kerning first=45 second=250 amount=-1 +kerning first=70 second=234 amount=-1 +kerning first=83 second=217 amount=-1 +kerning first=1046 second=1028 amount=-1 +kerning first=221 second=223 amount=-1 +kerning first=283 second=234 amount=-1 +kerning first=226 second=267 amount=-1 +kerning first=262 second=267 amount=-1 +kerning first=355 second=234 amount=-1 +kerning first=67 second=281 amount=-1 +kerning first=82 second=8220 amount=-1 +kerning first=296 second=217 amount=-1 +kerning first=80 second=223 amount=-1 +kerning first=66 second=206 amount=-1 +kerning first=1064 second=1098 amount=-1 +kerning first=73 second=368 amount=-1 +kerning first=220 second=258 amount=-1 +kerning first=368 second=217 amount=-1 +kerning first=209 second=232 amount=-1 +kerning first=271 second=243 amount=-1 +kerning first=1044 second=1095 amount=-1 +kerning first=82 second=345 amount=-1 +kerning first=207 second=206 amount=-1 +kerning first=104 second=232 amount=-1 +kerning first=45 second=325 amount=-1 +kerning first=118 second=345 amount=-1 +kerning first=214 second=368 amount=-1 +kerning first=1116 second=1095 amount=-1 +kerning first=198 second=371 amount=-1 +kerning first=187 second=345 amount=-1 +kerning first=199 second=266 amount=-1 +kerning first=223 second=345 amount=-1 +kerning first=79 second=258 amount=-1 +kerning first=206 second=259 amount=-1 +kerning first=1060 second=1042 amount=-1 +kerning first=1031 second=1091 amount=-1 +kerning first=80 second=200 amount=-1 +kerning first=354 second=277 amount=-1 +kerning first=8218 second=281 amount=-1 +kerning first=70 second=315 amount=-1 +kerning first=77 second=370 amount=-1 +kerning first=88 second=8218 amount=-1 +kerning first=362 second=290 amount=-1 +kerning first=290 second=370 amount=-1 +kerning first=366 second=337 amount=-1 +kerning first=240 second=245 amount=-1 +kerning first=337 second=8218 amount=-1 +kerning first=288 second=313 amount=-1 +kerning first=330 second=337 amount=-1 +kerning first=204 second=245 amount=-1 +kerning first=1047 second=1116 amount=-1 +kerning first=218 second=370 amount=-1 +kerning first=284 second=323 amount=-1 +kerning first=1070 second=1037 amount=-1 +kerning first=221 second=249 amount=-1 +kerning first=205 second=199 amount=-1 +kerning first=258 second=105 amount=-1 +kerning first=362 second=370 amount=-1 +kerning first=337 second=106 amount=-1 +kerning first=99 second=120 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=362 second=257 amount=-1 +kerning first=103 second=45 amount=-1 +kerning first=1056 second=1086 amount=-1 +kerning first=366 second=230 amount=-1 +kerning first=330 second=230 amount=-1 +kerning first=251 second=267 amount=-1 +kerning first=1038 second=1076 amount=-1 +kerning first=192 second=318 amount=-1 +kerning first=287 second=267 amount=-1 +kerning first=199 second=217 amount=-1 +kerning first=352 second=72 amount=-1 +kerning first=323 second=267 amount=-1 +kerning first=74 second=267 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=278 second=345 amount=-1 +kerning first=110 second=267 amount=-1 +kerning first=264 second=212 amount=-1 +kerning first=264 second=114 amount=-1 +kerning first=8222 second=108 amount=-1 +kerning first=68 second=258 amount=-1 +kerning first=99 second=245 amount=-1 +kerning first=233 second=115 amount=-1 +kerning first=364 second=350 amount=-1 +kerning first=269 second=115 amount=-1 +kerning first=87 second=114 amount=-1 +kerning first=282 second=8249 amount=-1 +kerning first=228 second=114 amount=-1 +kerning first=252 second=111 amount=-1 +kerning first=192 second=212 amount=-1 +kerning first=1053 second=1054 amount=-1 +kerning first=192 second=114 amount=-1 +kerning first=220 second=350 amount=-1 +kerning first=354 second=8249 amount=-1 +kerning first=192 second=254 amount=-1 +kerning first=324 second=111 amount=-1 +kerning first=246 second=8221 amount=-2 +kerning first=304 second=81 amount=-1 +kerning first=204 second=218 amount=-1 +kerning first=86 second=231 amount=-1 +kerning first=223 second=318 amount=-1 +kerning first=1059 second=1119 amount=-1 +kerning first=1070 second=1064 amount=-1 +kerning first=259 second=318 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=1034 second=1064 amount=-1 +kerning first=268 second=81 amount=-1 +kerning first=368 second=352 amount=-1 +kerning first=311 second=44 amount=-1 +kerning first=70 second=273 amount=-1 +kerning first=75 second=355 amount=-1 +kerning first=345 second=187 amount=-1 +kerning first=283 second=380 amount=-1 +kerning first=275 second=44 amount=-1 +kerning first=1041 second=1027 amount=-1 +kerning first=108 second=275 amount=-1 +kerning first=1056 second=1059 amount=-1 +kerning first=368 second=258 amount=-1 +kerning first=204 second=78 amount=-1 +kerning first=252 second=248 amount=-1 +kerning first=249 second=289 amount=-1 +kerning first=67 second=72 amount=-1 +kerning first=280 second=72 amount=-1 +kerning first=231 second=98 amount=-1 +kerning first=105 second=113 amount=-1 +kerning first=199 second=282 amount=-1 +kerning first=85 second=332 amount=-1 +kerning first=1064 second=1055 amount=-1 +kerning first=282 second=8222 amount=-1 +kerning first=298 second=332 amount=-1 +kerning first=246 second=8222 amount=-1 +kerning first=262 second=332 amount=-1 +kerning first=210 second=8222 amount=-1 +kerning first=81 second=330 amount=-1 +kerning first=105 second=8222 amount=-1 +kerning first=264 second=346 amount=-1 +kerning first=259 second=279 amount=-1 +kerning first=69 second=8222 amount=-1 +kerning first=1066 second=1070 amount=-1 +kerning first=192 second=87 amount=-1 +kerning first=1030 second=1070 amount=-1 +kerning first=1060 second=1063 amount=-1 +kerning first=370 second=332 amount=-1 +kerning first=277 second=291 amount=-1 +kerning first=368 second=8250 amount=-2 +kerning first=241 second=291 amount=-1 +kerning first=305 second=187 amount=-1 +kerning first=339 second=235 amount=-1 +kerning first=368 second=263 amount=-1 +kerning first=79 second=323 amount=-1 +kerning first=193 second=288 amount=-1 +kerning first=233 second=187 amount=-1 +kerning first=117 second=337 amount=-1 +kerning first=100 second=291 amount=-1 +kerning first=269 second=187 amount=-1 +kerning first=204 second=231 amount=-1 +kerning first=196 second=81 amount=-1 +kerning first=296 second=352 amount=-1 +kerning first=354 second=8222 amount=-1 +kerning first=220 second=323 amount=-1 +kerning first=1068 second=1050 amount=-1 +kerning first=203 second=211 amount=-1 +kerning first=264 second=336 amount=-1 +kerning first=80 second=86 amount=-1 +kerning first=80 second=270 amount=-1 +kerning first=307 second=46 amount=-1 +kerning first=270 second=198 amount=-1 +kerning first=330 second=268 amount=-1 +kerning first=1067 second=1083 amount=-1 +kerning first=291 second=287 amount=-1 +kerning first=1042 second=1034 amount=-1 +kerning first=296 second=325 amount=-1 +kerning first=87 second=281 amount=-1 +kerning first=368 second=325 amount=-1 +kerning first=85 second=99 amount=-1 +kerning first=1066 second=1043 amount=-1 +kerning first=1041 second=1069 amount=-1 +kerning first=323 second=73 amount=-1 +kerning first=298 second=99 amount=-1 +kerning first=75 second=290 amount=-1 +kerning first=268 second=314 amount=-1 +kerning first=1052 second=1057 amount=-1 +kerning first=193 second=369 amount=-1 +kerning first=74 second=202 amount=-1 +kerning first=1066 second=1036 amount=-1 +kerning first=232 second=314 amount=-1 +kerning first=45 second=268 amount=-1 +kerning first=235 second=347 amount=-1 +kerning first=78 second=110 amount=-1 +kerning first=226 second=99 amount=-1 +kerning first=196 second=314 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=211 second=221 amount=-1 +kerning first=258 second=268 amount=-1 +kerning first=199 second=347 amount=-1 +kerning first=226 second=8250 amount=-1 +kerning first=370 second=99 amount=-1 +kerning first=8217 second=339 amount=-1 +kerning first=219 second=110 amount=-1 +kerning first=323 second=202 amount=-1 +kerning first=199 second=351 amount=-1 +kerning first=85 second=8250 amount=-2 +kerning first=89 second=334 amount=-1 +kerning first=81 second=364 amount=-1 +kerning first=1107 second=1087 amount=-1 +kerning first=264 second=277 amount=-1 +kerning first=45 second=364 amount=-1 +kerning first=79 second=218 amount=-1 +kerning first=74 second=73 amount=-1 +kerning first=228 second=277 amount=-1 +kerning first=81 second=8217 amount=-2 +kerning first=85 second=171 amount=-2 +kerning first=266 second=334 amount=-1 +kerning first=205 second=264 amount=-1 +kerning first=287 second=104 amount=-1 +kerning first=194 second=334 amount=-1 +kerning first=235 second=351 amount=-1 +kerning first=374 second=334 amount=-1 +kerning first=1033 second=1030 amount=-1 +kerning first=270 second=69 amount=-1 +kerning first=193 second=121 amount=-1 +kerning first=1069 second=1030 amount=-1 +kerning first=196 second=108 amount=-1 +kerning first=366 second=8217 amount=-1 +kerning first=302 second=334 amount=-1 +kerning first=366 second=364 amount=-1 +kerning first=231 second=101 amount=-1 +kerning first=338 second=334 amount=-1 +kerning first=330 second=364 amount=-1 +kerning first=1041 second=1065 amount=-1 +kerning first=117 second=8217 amount=-1 +kerning first=1060 second=1070 amount=-1 +kerning first=1052 second=1050 amount=-1 +kerning first=258 second=364 amount=-1 +kerning first=267 second=101 amount=-1 +kerning first=1036 second=1117 amount=-1 +kerning first=87 second=277 amount=-1 +kerning first=222 second=8217 amount=-2 +kerning first=83 second=325 amount=-1 +kerning first=68 second=193 amount=-1 +kerning first=232 second=108 amount=-1 +kerning first=258 second=8217 amount=-2 +kerning first=339 second=101 amount=-1 +kerning first=283 second=273 amount=-1 +kerning first=268 second=108 amount=-1 +kerning first=1047 second=1051 amount=-1 +kerning first=199 second=103 amount=-1 +kerning first=234 second=263 amount=-1 +kerning first=220 second=282 amount=-1 +kerning first=1053 second=1089 amount=-1 +kerning first=198 second=171 amount=-1 +kerning first=193 second=365 amount=-1 +kerning first=1039 second=1039 amount=-1 +kerning first=366 second=203 amount=-1 +kerning first=75 second=286 amount=-1 +kerning first=69 second=8249 amount=-1 +kerning first=1052 second=1049 amount=-1 +kerning first=80 second=82 amount=-1 +kerning first=105 second=8249 amount=-1 +kerning first=346 second=296 amount=-1 +kerning first=206 second=298 amount=-1 +kerning first=1067 second=1068 amount=-1 +kerning first=278 second=298 amount=-1 +kerning first=304 second=241 amount=-1 +kerning first=269 second=229 amount=-1 +kerning first=314 second=363 amount=-1 +kerning first=350 second=298 amount=-1 +kerning first=330 second=203 amount=-1 +kerning first=220 second=117 amount=-1 +kerning first=45 second=203 amount=-1 +kerning first=232 second=287 amount=-1 +kerning first=81 second=203 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=364 second=369 amount=-1 +kerning first=266 second=99 amount=-1 +kerning first=68 second=220 amount=-1 +kerning first=1071 second=1083 amount=-1 +kerning first=67 second=278 amount=-1 +kerning first=227 second=339 amount=-1 +kerning first=313 second=356 amount=-1 +kerning first=74 second=77 amount=-1 +kerning first=323 second=100 amount=-1 +kerning first=197 second=218 amount=-1 +kerning first=111 second=382 amount=-1 +kerning first=263 second=339 amount=-1 +kerning first=8218 second=87 amount=-2 +kerning first=355 second=246 amount=-1 +kerning first=1052 second=1118 amount=-1 +kerning first=228 second=281 amount=-1 +kerning first=317 second=220 amount=-1 +kerning first=378 second=171 amount=-1 +kerning first=282 second=304 amount=-1 +kerning first=264 second=281 amount=-1 +kerning first=100 second=333 amount=-1 +kerning first=1067 second=1076 amount=-1 +kerning first=194 second=307 amount=-1 +kerning first=209 second=220 amount=-1 +kerning first=1053 second=1060 amount=-1 +kerning first=69 second=304 amount=-1 +kerning first=1039 second=1092 amount=-1 +kerning first=352 second=278 amount=-1 +kerning first=270 second=194 amount=-1 +kerning first=307 second=103 amount=-1 +kerning first=241 second=333 amount=-1 +kerning first=106 second=246 amount=-1 +kerning first=271 second=103 amount=-1 +kerning first=277 second=333 amount=-1 +kerning first=80 second=330 amount=-1 +kerning first=323 second=77 amount=-1 +kerning first=70 second=246 amount=-1 +kerning first=210 second=304 amount=-1 +kerning first=235 second=103 amount=-1 +kerning first=305 second=246 amount=-1 +kerning first=230 second=382 amount=-1 +kerning first=218 second=8222 amount=-2 +kerning first=269 second=246 amount=-1 +kerning first=266 second=382 amount=-1 +kerning first=202 second=223 amount=-1 +kerning first=233 second=246 amount=-1 +kerning first=217 second=298 amount=-1 +kerning first=362 second=77 amount=-1 +kerning first=77 second=8222 amount=-1 +kerning first=374 second=382 amount=-1 +kerning first=210 second=330 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=290 second=77 amount=-1 +kerning first=362 second=304 amount=-1 +kerning first=282 second=330 amount=-1 +kerning first=97 second=269 amount=-1 +kerning first=218 second=77 amount=-1 +kerning first=1038 second=1075 amount=-1 +kerning first=325 second=298 amount=-1 +kerning first=233 second=333 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=217 second=211 amount=-1 +kerning first=269 second=333 amount=-1 +kerning first=218 second=304 amount=-1 +kerning first=302 second=68 amount=-1 +kerning first=370 second=365 amount=-1 +kerning first=266 second=68 amount=-1 +kerning first=290 second=304 amount=-1 +kerning first=106 second=289 amount=-1 +kerning first=362 second=8222 amount=-2 +kerning first=228 second=283 amount=-1 +kerning first=305 second=333 amount=-1 +kerning first=87 second=103 amount=-1 +kerning first=290 second=8222 amount=-1 +kerning first=77 second=304 amount=-1 +kerning first=1052 second=1048 amount=-1 +kerning first=254 second=8222 amount=-1 +kerning first=203 second=315 amount=-1 +kerning first=214 second=260 amount=-1 +kerning first=368 second=313 amount=-1 +kerning first=70 second=109 amount=-1 +kerning first=1070 second=1044 amount=-1 +kerning first=252 second=339 amount=-1 +kerning first=231 second=281 amount=-1 +kerning first=266 second=107 amount=-1 +kerning first=268 second=347 amount=-1 +kerning first=267 second=281 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=325 second=211 amount=-1 +kerning first=304 second=347 amount=-1 +kerning first=1052 second=1108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=1039 second=1051 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=339 second=281 amount=-1 +kerning first=296 second=313 amount=-1 +kerning first=232 second=347 amount=-1 +kerning first=77 second=77 amount=-1 +kerning first=8216 second=198 amount=-2 +kerning first=327 second=290 amount=-1 +kerning first=1058 second=1117 amount=-1 +kerning first=83 second=313 amount=-1 +kerning first=1051 second=1042 amount=-1 +kerning first=69 second=330 amount=-1 +kerning first=364 second=69 amount=-1 +kerning first=1047 second=1025 amount=-1 +kerning first=232 second=120 amount=-1 +kerning first=324 second=339 amount=-1 +kerning first=268 second=120 amount=-1 +kerning first=86 second=264 amount=-1 +kerning first=354 second=103 amount=-1 +kerning first=103 second=251 amount=-1 +kerning first=316 second=251 amount=-1 +kerning first=69 second=76 amount=-1 +kerning first=352 second=251 amount=-1 +kerning first=8217 second=264 amount=-1 +kerning first=280 second=251 amount=-1 +kerning first=333 second=8217 amount=-2 +kerning first=226 second=378 amount=-1 +kerning first=84 second=8217 amount=-1 +kerning first=298 second=76 amount=-1 +kerning first=192 second=8221 amount=-2 +kerning first=218 second=225 amount=-1 +kerning first=120 second=8217 amount=-1 +kerning first=228 second=8221 amount=-2 +kerning first=288 second=85 amount=-1 +kerning first=264 second=8221 amount=-1 +kerning first=231 second=254 amount=-1 +kerning first=217 second=271 amount=-1 +kerning first=220 second=242 amount=-1 +kerning first=279 second=245 amount=-1 +kerning first=362 second=331 amount=-1 +kerning first=267 second=254 amount=-1 +kerning first=325 second=271 amount=-1 +kerning first=336 second=8221 amount=-2 +kerning first=87 second=212 amount=-1 +kerning first=207 second=245 amount=-1 +kerning first=339 second=254 amount=-1 +kerning first=213 second=221 amount=-1 +kerning first=328 second=242 amount=-1 +kerning first=375 second=254 amount=-1 +kerning first=75 second=85 amount=-1 +kerning first=364 second=242 amount=-1 +kerning first=218 second=331 amount=-1 +kerning first=321 second=221 amount=-1 +kerning first=283 second=289 amount=-1 +kerning first=327 second=203 amount=-1 +kerning first=121 second=365 amount=-1 +kerning first=258 second=67 amount=-1 +kerning first=1027 second=1113 amount=-1 +kerning first=8216 second=351 amount=-1 +kerning first=355 second=289 amount=-1 +kerning first=1052 second=1075 amount=-1 +kerning first=77 second=331 amount=-1 +kerning first=85 second=365 amount=-1 +kerning first=70 second=229 amount=-1 +kerning first=219 second=203 amount=-1 +kerning first=221 second=288 amount=-1 +kerning first=1046 second=1104 amount=-1 +kerning first=73 second=233 amount=-1 +kerning first=45 second=67 amount=-1 +kerning first=270 second=366 amount=-1 +kerning first=109 second=233 amount=-1 +kerning first=195 second=254 amount=-1 +kerning first=244 second=8220 amount=-2 +kerning first=8250 second=252 amount=-1 +kerning first=78 second=203 amount=-1 +kerning first=187 second=280 amount=-1 +kerning first=250 second=233 amount=-1 +kerning first=263 second=248 amount=-1 +kerning first=339 second=8222 amount=-1 +kerning first=282 second=357 amount=-1 +kerning first=196 second=374 amount=-1 +kerning first=69 second=357 amount=-1 +kerning first=355 second=229 amount=-1 +kerning first=282 second=76 amount=-1 +kerning first=1076 second=1084 amount=-1 +kerning first=1030 second=1118 amount=-1 +kerning first=210 second=76 amount=-1 +kerning first=192 second=363 amount=-1 +kerning first=356 second=122 amount=-1 +kerning first=248 second=122 amount=-1 +kerning first=219 second=317 amount=-1 +kerning first=85 second=224 amount=-1 +kerning first=287 second=114 amount=-1 +kerning first=1053 second=1117 amount=-1 +kerning first=214 second=207 amount=-1 +kerning first=298 second=224 amount=-1 +kerning first=327 second=317 amount=-1 +kerning first=1039 second=1104 amount=-1 +kerning first=200 second=250 amount=-1 +kerning first=1027 second=1087 amount=-1 +kerning first=286 second=207 amount=-1 +kerning first=262 second=224 amount=-1 +kerning first=8250 second=200 amount=-1 +kerning first=67 second=311 amount=-1 +kerning first=86 second=378 amount=-1 +kerning first=1118 second=1093 amount=-1 +kerning first=206 second=113 amount=-1 +kerning first=80 second=201 amount=-1 +kerning first=103 second=311 amount=-1 +kerning first=198 second=366 amount=-1 +kerning first=370 second=224 amount=-1 +kerning first=81 second=354 amount=-1 +kerning first=364 second=216 amount=-1 +kerning first=70 second=256 amount=-1 +kerning first=199 second=244 amount=-1 +kerning first=263 second=378 amount=-1 +kerning first=235 second=244 amount=-1 +kerning first=227 second=378 amount=-1 +kerning first=330 second=67 amount=-1 +kerning first=258 second=354 amount=-1 +kerning first=231 second=251 amount=-1 +kerning first=78 second=317 amount=-1 +kerning first=366 second=67 amount=-1 +kerning first=307 second=244 amount=-1 +kerning first=310 second=8249 amount=-1 +kerning first=374 second=268 amount=-1 +kerning first=88 second=262 amount=-1 +kerning first=199 second=275 amount=-1 +kerning first=1065 second=1095 amount=-1 +kerning first=338 second=268 amount=-1 +kerning first=370 second=198 amount=-1 +kerning first=1105 second=1096 amount=-1 +kerning first=232 second=115 amount=-1 +kerning first=193 second=262 amount=-1 +kerning first=334 second=198 amount=-1 +kerning first=266 second=268 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=209 second=210 amount=-1 +kerning first=1060 second=1049 amount=-1 +kerning first=364 second=302 amount=-1 +kerning first=1105 second=1095 amount=-1 +kerning first=8218 second=97 amount=-1 +kerning first=211 second=256 amount=-1 +kerning first=279 second=98 amount=-1 +kerning first=220 second=302 amount=-1 +kerning first=198 second=345 amount=-1 +kerning first=1051 second=1101 amount=-1 +kerning first=108 second=335 amount=-1 +kerning first=234 second=345 amount=-1 +kerning first=249 second=335 amount=-1 +kerning first=323 second=219 amount=-1 +kerning first=199 second=199 amount=-1 +kerning first=362 second=262 amount=-1 +kerning first=268 second=206 amount=-1 +kerning first=304 second=206 amount=-1 +kerning first=85 second=198 amount=-1 +kerning first=79 second=302 amount=-1 +kerning first=194 second=268 amount=-1 +kerning first=204 second=259 amount=-1 +kerning first=197 second=213 amount=-1 +kerning first=89 second=268 amount=-1 +kerning first=8250 second=313 amount=-1 +kerning first=1055 second=1053 amount=-1 +kerning first=263 second=351 amount=-1 +kerning first=227 second=231 amount=-1 +kerning first=316 second=335 amount=-1 +kerning first=263 second=231 amount=-1 +kerning first=8222 second=374 amount=-2 +kerning first=1064 second=1099 amount=-1 +kerning first=78 second=290 amount=-1 +kerning first=45 second=381 amount=-1 +kerning first=369 second=171 amount=-1 +kerning first=1118 second=1091 amount=-1 +kerning first=205 second=226 amount=-1 +kerning first=81 second=88 amount=-1 +kerning first=187 second=73 amount=-1 +kerning first=219 second=290 amount=-1 +kerning first=203 second=368 amount=-1 +kerning first=85 second=197 amount=-1 +kerning first=280 second=338 amount=-1 +kerning first=113 second=8249 amount=-1 +kerning first=1056 second=1038 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=221 second=214 amount=-1 +kerning first=218 second=8249 amount=-2 +kerning first=337 second=314 amount=-1 +kerning first=1030 second=1031 amount=-1 +kerning first=86 second=351 amount=-1 +kerning first=296 second=286 amount=-1 +kerning first=290 second=8249 amount=-1 +kerning first=199 second=8218 amount=-1 +kerning first=370 second=197 amount=-1 +kerning first=229 second=283 amount=-1 +kerning first=326 second=8249 amount=-1 +kerning first=334 second=197 amount=-1 +kerning first=368 second=286 amount=-1 +kerning first=362 second=8249 amount=-2 +kerning first=1066 second=1031 amount=-1 +kerning first=67 second=338 amount=-1 +kerning first=1051 second=1068 amount=-1 +kerning first=121 second=171 amount=-1 +kerning first=205 second=274 amount=-1 +kerning first=226 second=171 amount=-1 +kerning first=198 second=79 amount=-1 +kerning first=314 second=113 amount=-1 +kerning first=316 second=45 amount=-1 +kerning first=352 second=45 amount=-1 +kerning first=77 second=8249 amount=-1 +kerning first=250 second=242 amount=-1 +kerning first=229 second=235 amount=-1 +kerning first=264 second=70 amount=-1 +kerning first=8222 second=81 amount=-1 +kerning first=1059 second=1074 amount=-1 +kerning first=255 second=378 amount=-1 +kerning first=366 second=8221 amount=-1 +kerning first=74 second=192 amount=-1 +kerning first=1039 second=1077 amount=-1 +kerning first=87 second=363 amount=-1 +kerning first=1058 second=1090 amount=-1 +kerning first=1069 second=1069 amount=-1 +kerning first=271 second=380 amount=-1 +kerning first=196 second=286 amount=-1 +kerning first=1052 second=1027 amount=-1 +kerning first=103 second=252 amount=-1 +kerning first=298 second=344 amount=-1 +kerning first=83 second=205 amount=-1 +kerning first=84 second=335 amount=-1 +kerning first=296 second=205 amount=-1 +kerning first=370 second=344 amount=-1 +kerning first=334 second=344 amount=-1 +kerning first=330 second=115 amount=-1 +kerning first=83 second=80 amount=-1 +kerning first=280 second=252 amount=-1 +kerning first=201 second=284 amount=-1 +kerning first=366 second=115 amount=-1 +kerning first=194 second=89 amount=-1 +kerning first=1031 second=1076 amount=-1 +kerning first=323 second=368 amount=-1 +kerning first=304 second=261 amount=-1 +kerning first=268 second=261 amount=-1 +kerning first=298 second=205 amount=-1 +kerning first=8218 second=111 amount=-1 +kerning first=1104 second=1097 amount=-1 +kerning first=111 second=106 amount=-1 +kerning first=210 second=217 amount=-1 +kerning first=290 second=204 amount=-1 +kerning first=324 second=231 amount=-1 +kerning first=282 second=217 amount=-1 +kerning first=85 second=344 amount=-1 +kerning first=1038 second=1044 amount=-1 +kerning first=87 second=97 amount=-1 +kerning first=74 second=332 amount=-1 +kerning first=261 second=103 amount=-1 +kerning first=362 second=223 amount=-1 +kerning first=99 second=235 amount=-1 +kerning first=269 second=45 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=232 second=353 amount=-1 +kerning first=280 second=210 amount=-1 +kerning first=267 second=275 amount=-1 +kerning first=204 second=235 amount=-1 +kerning first=197 second=45 amount=-1 +kerning first=304 second=353 amount=-1 +kerning first=240 second=235 amount=-1 +kerning first=200 second=71 amount=-1 +kerning first=1071 second=1028 amount=-1 +kerning first=339 second=275 amount=-1 +kerning first=268 second=353 amount=-1 +kerning first=1067 second=1028 amount=-1 +kerning first=370 second=263 amount=-1 +kerning first=220 second=362 amount=-1 +kerning first=352 second=252 amount=-1 +kerning first=296 second=80 amount=-1 +kerning first=207 second=111 amount=-1 +kerning first=77 second=223 amount=-1 +kerning first=364 second=362 amount=-1 +kerning first=8218 second=271 amount=-1 +kerning first=264 second=97 amount=-1 +kerning first=290 second=223 amount=-1 +kerning first=99 second=240 amount=-1 +kerning first=68 second=323 amount=-1 +kerning first=97 second=243 amount=-1 +kerning first=218 second=223 amount=-1 +kerning first=8222 second=288 amount=-1 +kerning first=270 second=258 amount=-1 +kerning first=119 second=107 amount=-1 +kerning first=314 second=232 amount=-1 +kerning first=1105 second=1093 amount=-1 +kerning first=87 second=336 amount=-1 +kerning first=1062 second=1080 amount=-1 +kerning first=209 second=323 amount=-1 +kerning first=75 second=199 amount=-1 +kerning first=67 second=317 amount=-1 +kerning first=192 second=336 amount=-1 +kerning first=283 second=337 amount=-1 +kerning first=109 second=119 amount=-1 +kerning first=1065 second=1079 amount=-1 +kerning first=291 second=311 amount=-1 +kerning first=8218 second=211 amount=-1 +kerning first=323 second=8250 amount=-1 +kerning first=67 second=225 amount=-1 +kerning first=69 second=249 amount=-1 +kerning first=287 second=8250 amount=-1 +kerning first=213 second=205 amount=-1 +kerning first=337 second=382 amount=-1 +kerning first=187 second=328 amount=-1 +kerning first=109 second=234 amount=-1 +kerning first=220 second=226 amount=-1 +kerning first=73 second=234 amount=-1 +kerning first=1051 second=1041 amount=-1 +kerning first=269 second=105 amount=-1 +kerning first=206 second=232 amount=-1 +kerning first=257 second=314 amount=-1 +kerning first=67 second=110 amount=-1 +kerning first=1091 second=1091 amount=-1 +kerning first=210 second=72 amount=-1 +kerning first=187 second=361 amount=-1 +kerning first=101 second=232 amount=-1 +kerning first=250 second=234 amount=-1 +kerning first=1038 second=1071 amount=-1 +kerning first=1107 second=1088 amount=-1 +kerning first=99 second=267 amount=-1 +kerning first=103 second=110 amount=-1 +kerning first=204 second=327 amount=-1 +kerning first=8250 second=288 amount=-1 +kerning first=220 second=198 amount=-1 +kerning first=197 second=105 amount=-1 +kerning first=1049 second=1049 amount=-1 +kerning first=8222 second=261 amount=-1 +kerning first=8250 second=286 amount=-1 +kerning first=209 second=368 amount=-1 +kerning first=283 second=8222 amount=-1 +kerning first=81 second=115 amount=-1 +kerning first=287 second=305 amount=-1 +kerning first=275 second=114 amount=-1 +kerning first=1044 second=1096 amount=-1 +kerning first=1059 second=1097 amount=-1 +kerning first=1027 second=1114 amount=-1 +kerning first=97 second=335 amount=-1 +kerning first=88 second=370 amount=-1 +kerning first=258 second=187 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=274 second=81 amount=-1 +kerning first=234 second=318 amount=-1 +kerning first=203 second=114 amount=-1 +kerning first=1057 second=1046 amount=-1 +kerning first=277 second=46 amount=-1 +kerning first=221 second=242 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=328 second=101 amount=-1 +kerning first=275 second=117 amount=-1 +kerning first=356 second=269 amount=-1 +kerning first=8250 second=80 amount=-1 +kerning first=330 second=273 amount=-1 +kerning first=116 second=228 amount=-1 +kerning first=68 second=84 amount=-1 +kerning first=80 second=81 amount=-1 +kerning first=364 second=101 amount=-1 +kerning first=72 second=227 amount=-1 +kerning first=221 second=81 amount=-1 +kerning first=202 second=363 amount=-1 +kerning first=71 second=73 amount=-1 +kerning first=363 second=111 amount=-1 +kerning first=207 second=331 amount=-1 +kerning first=272 second=44 amount=-1 +kerning first=323 second=78 amount=-1 +kerning first=8250 second=205 amount=-1 +kerning first=74 second=78 amount=-1 +kerning first=116 second=287 amount=-1 +kerning first=277 second=355 amount=-1 +kerning first=325 second=296 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=205 second=355 amount=-1 +kerning first=282 second=282 amount=-1 +kerning first=344 second=44 amount=-1 +kerning first=210 second=282 amount=-1 +kerning first=257 second=287 amount=-1 +kerning first=196 second=288 amount=-1 +kerning first=217 second=346 amount=-1 +kerning first=69 second=282 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=304 second=288 amount=-1 +kerning first=365 second=287 amount=-1 +kerning first=268 second=288 amount=-1 +kerning first=262 second=83 amount=-1 +kerning first=106 second=337 amount=-1 +kerning first=298 second=83 amount=-1 +kerning first=219 second=230 amount=-1 +kerning first=324 second=291 amount=-1 +kerning first=327 second=230 amount=-1 +kerning first=199 second=352 amount=-1 +kerning first=370 second=83 amount=-1 +kerning first=252 second=291 amount=-1 +kerning first=78 second=230 amount=-1 +kerning first=370 second=243 amount=-1 +kerning first=282 second=274 amount=-1 +kerning first=325 second=346 amount=-1 +kerning first=111 second=291 amount=-1 +kerning first=114 second=230 amount=-1 +kerning first=192 second=303 amount=-1 +kerning first=1053 second=1034 amount=-1 +kerning first=298 second=279 amount=-1 +kerning first=370 second=371 amount=-1 +kerning first=72 second=200 amount=-1 +kerning first=338 second=187 amount=-1 +kerning first=87 second=211 amount=-1 +kerning first=257 second=108 amount=-1 +kerning first=226 second=279 amount=-1 +kerning first=374 second=187 amount=-1 +kerning first=220 second=74 amount=-1 +kerning first=364 second=290 amount=-1 +kerning first=240 second=8218 amount=-1 +kerning first=262 second=279 amount=-1 +kerning first=86 second=269 amount=-1 +kerning first=70 second=316 amount=-1 +kerning first=370 second=279 amount=-1 +kerning first=364 second=74 amount=-1 +kerning first=290 second=323 amount=-1 +kerning first=327 second=209 amount=-1 +kerning first=89 second=187 amount=-1 +kerning first=85 second=371 amount=-1 +kerning first=227 second=269 amount=-1 +kerning first=263 second=269 amount=-1 +kerning first=100 second=382 amount=-1 +kerning first=74 second=99 amount=-1 +kerning first=344 second=71 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=192 second=255 amount=-1 +kerning first=205 second=382 amount=-1 +kerning first=192 second=211 amount=-1 +kerning first=323 second=99 amount=-1 +kerning first=283 second=316 amount=-1 +kerning first=221 second=250 amount=-1 +kerning first=194 second=187 amount=-1 +kerning first=277 second=382 amount=-1 +kerning first=264 second=211 amount=-1 +kerning first=213 second=200 amount=-1 +kerning first=99 second=8218 amount=-1 +kerning first=207 second=266 amount=-1 +kerning first=230 second=187 amount=-1 +kerning first=287 second=99 amount=-1 +kerning first=85 second=279 amount=-1 +kerning first=205 second=334 amount=-1 +kerning first=218 second=281 amount=-1 +kerning first=204 second=202 amount=-1 +kerning first=73 second=8217 amount=-1 +kerning first=375 second=8220 amount=-2 +kerning first=346 second=270 amount=-1 +kerning first=1050 second=1116 amount=-1 +kerning first=218 second=196 amount=-1 +kerning first=72 second=248 amount=-1 +kerning first=66 second=352 amount=-1 +kerning first=375 second=367 amount=-1 +kerning first=1041 second=1043 amount=-1 +kerning first=45 second=214 amount=-1 +kerning first=231 second=8250 amount=-1 +kerning first=108 second=248 amount=-1 +kerning first=281 second=117 amount=-1 +kerning first=362 second=196 amount=-1 +kerning first=73 second=345 amount=-1 +kerning first=267 second=367 amount=-1 +kerning first=90 second=8220 amount=-1 +kerning first=231 second=367 amount=-1 +kerning first=1047 second=1052 amount=-1 +kerning first=368 second=205 amount=-1 +kerning first=339 second=367 amount=-1 +kerning first=219 second=209 amount=-1 +kerning first=211 second=364 amount=-1 +kerning first=75 second=264 amount=-1 +kerning first=274 second=270 amount=-1 +kerning first=73 second=380 amount=-1 +kerning first=267 second=8220 amount=-2 +kerning first=231 second=8220 amount=-2 +kerning first=195 second=367 amount=-1 +kerning first=202 second=270 amount=-1 +kerning first=1048 second=1097 amount=-1 +kerning first=199 second=325 amount=-1 +kerning first=84 second=277 amount=-1 +kerning first=344 second=8217 amount=-1 +kerning first=290 second=82 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=323 second=284 amount=-1 +kerning first=246 second=108 amount=-1 +kerning first=380 second=8217 amount=-1 +kerning first=1069 second=1047 amount=-1 +kerning first=194 second=262 amount=-1 +kerning first=362 second=82 amount=-1 +kerning first=1064 second=1034 amount=-1 +kerning first=194 second=290 amount=-1 +kerning first=187 second=217 amount=-1 +kerning first=261 second=277 amount=-1 +kerning first=105 second=242 amount=-1 +kerning first=362 second=202 amount=-1 +kerning first=225 second=277 amount=-1 +kerning first=266 second=290 amount=-1 +kerning first=197 second=338 amount=-1 +kerning first=302 second=290 amount=-1 +kerning first=269 second=251 amount=-1 +kerning first=338 second=290 amount=-1 +kerning first=76 second=8221 amount=-1 +kerning first=258 second=316 amount=-1 +kerning first=84 second=8250 amount=-1 +kerning first=78 second=355 amount=-1 +kerning first=217 second=8221 amount=-1 +kerning first=212 second=193 amount=-1 +kerning first=230 second=311 amount=-1 +kerning first=209 second=242 amount=-1 +kerning first=253 second=8221 amount=-2 +kerning first=240 second=99 amount=-1 +kerning first=289 second=8221 amount=-2 +kerning first=77 second=82 amount=-1 +kerning first=99 second=99 amount=-1 +kerning first=325 second=8221 amount=-1 +kerning first=218 second=82 amount=-1 +kerning first=1052 second=1043 amount=-1 +kerning first=1039 second=1056 amount=-1 +kerning first=67 second=333 amount=-1 +kerning first=201 second=78 amount=-1 +kerning first=281 second=242 amount=-1 +kerning first=72 second=286 amount=-1 +kerning first=345 second=171 amount=-1 +kerning first=1047 second=1030 amount=-1 +kerning first=327 second=355 amount=-1 +kerning first=69 second=325 amount=-1 +kerning first=103 second=333 amount=-1 +kerning first=198 second=117 amount=-1 +kerning first=219 second=355 amount=-1 +kerning first=314 second=114 amount=-1 +kerning first=210 second=325 amount=-1 +kerning first=356 second=100 amount=-1 +kerning first=8217 second=199 amount=-1 +kerning first=282 second=325 amount=-1 +kerning first=193 second=104 amount=-1 +kerning first=275 second=233 amount=-1 +kerning first=281 second=250 amount=-1 +kerning first=201 second=171 amount=-1 +kerning first=1053 second=1039 amount=-1 +kerning first=1064 second=1043 amount=-1 +kerning first=78 second=382 amount=-1 +kerning first=212 second=220 amount=-1 +kerning first=1064 second=1104 amount=-1 +kerning first=199 second=330 amount=-1 +kerning first=364 second=194 amount=-1 +kerning first=365 second=103 amount=-1 +kerning first=284 second=220 amount=-1 +kerning first=219 second=382 amount=-1 +kerning first=71 second=220 amount=-1 +kerning first=255 second=382 amount=-1 +kerning first=316 second=246 amount=-1 +kerning first=66 second=120 amount=-1 +kerning first=257 second=103 amount=-1 +kerning first=207 second=304 amount=-1 +kerning first=291 second=382 amount=-1 +kerning first=220 second=194 amount=-1 +kerning first=221 second=103 amount=-1 +kerning first=327 second=382 amount=-1 +kerning first=74 second=224 amount=-1 +kerning first=65 second=211 amount=-1 +kerning first=116 second=103 amount=-1 +kerning first=323 second=224 amount=-1 +kerning first=1050 second=1057 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=8217 second=99 amount=-1 +kerning first=66 second=304 amount=-1 +kerning first=67 second=246 amount=-1 +kerning first=79 second=194 amount=-1 +kerning first=287 second=365 amount=-1 +kerning first=316 second=333 amount=-1 +kerning first=8249 second=366 amount=-1 +kerning first=8222 second=369 amount=-1 +kerning first=205 second=68 amount=-1 +kerning first=230 second=283 amount=-1 +kerning first=1052 second=1113 amount=-1 +kerning first=99 second=333 amount=-1 +kerning first=74 second=365 amount=-1 +kerning first=67 second=120 amount=-1 +kerning first=334 second=8218 amount=-1 +kerning first=75 second=307 amount=-1 +kerning first=213 second=313 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=221 second=347 amount=-1 +kerning first=245 second=8220 amount=-2 +kerning first=314 second=281 amount=-1 +kerning first=231 second=243 amount=-1 +kerning first=286 second=315 amount=-1 +kerning first=100 second=339 amount=-1 +kerning first=116 second=347 amount=-1 +kerning first=121 second=8218 amount=-1 +kerning first=317 second=8220 amount=-1 +kerning first=219 second=111 amount=-1 +kerning first=206 second=211 amount=-1 +kerning first=85 second=8218 amount=-2 +kerning first=281 second=8220 amount=-2 +kerning first=72 second=313 amount=-1 +kerning first=291 second=111 amount=-1 +kerning first=278 second=211 amount=-1 +kerning first=80 second=347 amount=-1 +kerning first=353 second=8220 amount=-2 +kerning first=327 second=111 amount=-1 +kerning first=217 second=257 amount=-1 +kerning first=218 second=202 amount=-1 +kerning first=243 second=120 amount=-1 +kerning first=279 second=120 amount=-1 +kerning first=74 second=113 amount=-1 +kerning first=290 second=202 amount=-1 +kerning first=8250 second=72 amount=-1 +kerning first=310 second=264 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=241 second=339 amount=-1 +kerning first=193 second=254 amount=-1 +kerning first=274 second=264 amount=-1 +kerning first=101 second=281 amount=-1 +kerning first=214 second=315 amount=-1 +kerning first=205 second=339 amount=-1 +kerning first=68 second=8220 amount=-2 +kerning first=73 second=315 amount=-1 +kerning first=202 second=264 amount=-1 +kerning first=206 second=281 amount=-1 +kerning first=77 second=202 amount=-1 +kerning first=277 second=339 amount=-1 +kerning first=231 second=232 amount=-1 +kerning first=87 second=271 amount=-1 +kerning first=262 second=219 amount=-1 +kerning first=351 second=8249 amount=-1 +kerning first=192 second=368 amount=-1 +kerning first=1055 second=1118 amount=-1 +kerning first=74 second=284 amount=-1 +kerning first=282 second=338 amount=-1 +kerning first=78 second=225 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=264 second=271 amount=-1 +kerning first=1091 second=1118 amount=-1 +kerning first=235 second=357 amount=-1 +kerning first=85 second=219 amount=-1 +kerning first=114 second=225 amount=-1 +kerning first=1043 second=1040 amount=-1 +kerning first=267 second=232 amount=-1 +kerning first=219 second=225 amount=-1 +kerning first=1055 second=1031 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=1060 second=1044 amount=-1 +kerning first=261 second=234 amount=-1 +kerning first=66 second=8249 amount=-1 +kerning first=225 second=234 amount=-1 +kerning first=268 second=98 amount=-1 +kerning first=212 second=344 amount=-1 +kerning first=339 second=314 amount=-1 +kerning first=102 second=8249 amount=-1 +kerning first=264 second=368 amount=-1 +kerning first=284 second=344 amount=-1 +kerning first=323 second=332 amount=-1 +kerning first=369 second=234 amount=-1 +kerning first=1039 second=1099 amount=-1 +kerning first=346 second=80 amount=-1 +kerning first=266 second=46 amount=-1 +kerning first=104 second=275 amount=-1 +kerning first=356 second=229 amount=-1 +kerning first=274 second=80 amount=-1 +kerning first=362 second=353 amount=-1 +kerning first=195 second=216 amount=-1 +kerning first=270 second=197 amount=-1 +kerning first=1034 second=1055 amount=-1 +kerning first=209 second=275 amount=-1 +kerning first=1077 second=1097 amount=-1 +kerning first=97 second=378 amount=-1 +kerning first=187 second=366 amount=-1 +kerning first=87 second=195 amount=-1 +kerning first=374 second=46 amount=-1 +kerning first=71 second=344 amount=-1 +kerning first=198 second=280 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=82 second=366 amount=-1 +kerning first=1058 second=1114 amount=-1 +kerning first=197 second=67 amount=-1 +kerning first=270 second=280 amount=-1 +kerning first=327 second=225 amount=-1 +kerning first=1064 second=1077 amount=-1 +kerning first=77 second=353 amount=-1 +kerning first=199 second=357 amount=-1 +kerning first=202 second=80 amount=-1 +kerning first=203 second=363 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=275 second=363 amount=-1 +kerning first=194 second=46 amount=-1 +kerning first=218 second=353 amount=-1 +kerning first=330 second=213 amount=-1 +kerning first=66 second=8222 amount=-1 +kerning first=266 second=317 amount=-1 +kerning first=193 second=375 amount=-1 +kerning first=370 second=116 amount=-1 +kerning first=69 second=217 amount=-1 +kerning first=302 second=317 amount=-1 +kerning first=85 second=192 amount=-1 +kerning first=327 second=201 amount=-1 +kerning first=338 second=317 amount=-1 +kerning first=197 second=311 amount=-1 +kerning first=298 second=116 amount=-1 +kerning first=267 second=259 amount=-1 +kerning first=233 second=311 amount=-1 +kerning first=1051 second=1117 amount=-1 +kerning first=1028 second=1046 amount=-1 +kerning first=217 second=70 amount=-1 +kerning first=1105 second=1117 amount=-1 +kerning first=232 second=369 amount=-1 +kerning first=368 second=362 amount=-1 +kerning first=196 second=369 amount=-1 +kerning first=1034 second=1059 amount=-2 +kerning first=304 second=201 amount=-1 +kerning first=223 second=122 amount=-1 +kerning first=366 second=213 amount=-1 +kerning first=325 second=70 amount=-1 +kerning first=259 second=122 amount=-1 +kerning first=282 second=66 amount=-1 +kerning first=231 second=271 amount=-1 +kerning first=325 second=113 amount=-1 +kerning first=351 second=8222 amount=-1 +kerning first=268 second=201 amount=-1 +kerning first=217 second=113 amount=-1 +kerning first=235 second=99 amount=-1 +kerning first=279 second=8222 amount=-1 +kerning first=262 second=116 amount=-1 +kerning first=243 second=8222 amount=-1 +kerning first=231 second=259 amount=-1 +kerning first=288 second=204 amount=-1 +kerning first=192 second=89 amount=-1 +kerning first=354 second=244 amount=-1 +kerning first=1086 second=1078 amount=-1 +kerning first=102 second=8222 amount=-1 +kerning first=364 second=210 amount=-1 +kerning first=219 second=268 amount=-1 +kerning first=204 second=262 amount=-1 +kerning first=1054 second=1062 amount=-1 +kerning first=1069 second=1048 amount=-1 +kerning first=1027 second=1108 amount=-1 +kerning first=272 second=256 amount=-1 +kerning first=1059 second=1102 amount=-1 +kerning first=232 second=98 amount=-1 +kerning first=204 second=332 amount=-1 +kerning first=220 second=210 amount=-1 +kerning first=196 second=98 amount=-1 +kerning first=8217 second=85 amount=-1 +kerning first=327 second=268 amount=-1 +kerning first=1049 second=1025 amount=-1 +kerning first=209 second=302 amount=-1 +kerning first=68 second=302 amount=-1 +kerning first=104 second=8217 amount=-2 +kerning first=118 second=122 amount=-1 +kerning first=369 second=277 amount=-1 +kerning first=187 second=122 amount=-1 +kerning first=296 second=335 amount=-1 +kerning first=1038 second=1087 amount=-1 +kerning first=212 second=73 amount=-1 +kerning first=287 second=231 amount=-1 +kerning first=368 second=335 amount=-1 +kerning first=1030 second=1053 amount=-1 +kerning first=78 second=268 amount=-1 +kerning first=370 second=219 amount=-1 +kerning first=284 second=73 amount=-1 +kerning first=1066 second=1053 amount=-1 +kerning first=255 second=122 amount=-1 +kerning first=298 second=219 amount=-1 +kerning first=45 second=213 amount=-1 +kerning first=334 second=219 amount=-1 +kerning first=291 second=187 amount=-1 +kerning first=198 second=323 amount=-1 +kerning first=327 second=187 amount=-1 +kerning first=203 second=336 amount=-1 +kerning first=80 second=244 amount=-1 +kerning first=219 second=187 amount=-2 +kerning first=70 second=213 amount=-1 +kerning first=116 second=244 amount=-1 +kerning first=255 second=187 amount=-1 +kerning first=311 second=46 amount=-1 +kerning first=8218 second=368 amount=-1 +kerning first=304 second=266 amount=-1 +kerning first=370 second=114 amount=-1 +kerning first=268 second=266 amount=-1 +kerning first=195 second=362 amount=-1 +kerning first=257 second=244 amount=-1 +kerning first=270 second=323 amount=-1 +kerning first=218 second=283 amount=-1 +kerning first=1049 second=1071 amount=-1 +kerning first=201 second=371 amount=-1 +kerning first=365 second=244 amount=-1 +kerning first=8216 second=219 amount=-1 +kerning first=72 second=77 amount=-1 +kerning first=101 second=369 amount=-1 +kerning first=74 second=327 amount=-1 +kerning first=196 second=266 amount=-1 +kerning first=278 second=75 amount=-1 +kerning first=114 second=187 amount=-1 +kerning first=206 second=75 amount=-1 +kerning first=368 second=200 amount=-1 +kerning first=220 second=101 amount=-1 +kerning first=78 second=187 amount=-1 +kerning first=74 second=235 amount=-1 +kerning first=296 second=200 amount=-1 +kerning first=97 second=248 amount=-1 +kerning first=323 second=327 amount=-1 +kerning first=323 second=262 amount=-1 +kerning first=200 second=66 amount=-1 +kerning first=333 second=380 amount=-1 +kerning first=1051 second=1036 amount=-1 +kerning first=246 second=314 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=362 second=283 amount=-1 +kerning first=207 second=261 amount=-1 +kerning first=362 second=218 amount=-1 +kerning first=82 second=79 amount=-1 +kerning first=269 second=110 amount=-1 +kerning first=364 second=367 amount=-1 +kerning first=326 second=283 amount=-1 +kerning first=374 second=371 amount=-1 +kerning first=290 second=218 amount=-1 +kerning first=187 second=79 amount=-1 +kerning first=1064 second=1091 amount=-1 +kerning first=338 second=274 amount=-1 +kerning first=370 second=192 amount=-1 +kerning first=298 second=257 amount=-1 +kerning first=99 second=305 amount=-1 +kerning first=262 second=257 amount=-1 +kerning first=266 second=274 amount=-1 +kerning first=220 second=367 amount=-1 +kerning first=370 second=257 amount=-1 +kerning first=338 second=209 amount=-1 +kerning first=302 second=274 amount=-1 +kerning first=213 second=270 amount=-1 +kerning first=245 second=318 amount=-1 +kerning first=334 second=192 amount=-1 +kerning first=302 second=209 amount=-1 +kerning first=1056 second=1050 amount=-1 +kerning first=281 second=318 amount=-1 +kerning first=249 second=8217 amount=-1 +kerning first=225 second=380 amount=-1 +kerning first=85 second=257 amount=-1 +kerning first=353 second=318 amount=-1 +kerning first=272 second=66 amount=-1 +kerning first=261 second=380 amount=-1 +kerning first=268 second=44 amount=-1 +kerning first=219 second=252 amount=-1 +kerning first=77 second=310 amount=-1 +kerning first=109 second=114 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=196 second=8249 amount=-1 +kerning first=73 second=114 amount=-1 +kerning first=85 second=284 amount=-1 +kerning first=283 second=115 amount=-1 +kerning first=291 second=252 amount=-1 +kerning first=201 second=211 amount=-1 +kerning first=209 second=101 amount=-1 +kerning first=268 second=8249 amount=-1 +kerning first=1039 second=1072 amount=-1 +kerning first=355 second=115 amount=-1 +kerning first=73 second=109 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=281 second=101 amount=-1 +kerning first=8216 second=192 amount=-2 +kerning first=72 second=335 amount=-1 +kerning first=1067 second=1098 amount=-1 +kerning first=1031 second=1098 amount=-1 +kerning first=80 second=217 amount=-1 +kerning first=211 second=115 amount=-1 +kerning first=241 second=231 amount=-1 +kerning first=197 second=354 amount=-1 +kerning first=201 second=214 amount=-1 +kerning first=362 second=310 amount=-1 +kerning first=277 second=231 amount=-1 +kerning first=45 second=89 amount=-2 +kerning first=201 second=344 amount=-1 +kerning first=100 second=337 amount=-1 +kerning first=218 second=310 amount=-1 +kerning first=100 second=231 amount=-1 +kerning first=205 second=231 amount=-1 +kerning first=262 second=99 amount=-1 +kerning first=110 second=235 amount=-1 +kerning first=71 second=317 amount=-1 +kerning first=279 second=353 amount=-1 +kerning first=364 second=275 amount=-1 +kerning first=328 second=275 amount=-1 +kerning first=104 second=345 amount=-1 +kerning first=287 second=235 amount=-1 +kerning first=246 second=287 amount=-1 +kerning first=277 second=106 amount=-1 +kerning first=209 second=345 amount=-1 +kerning first=84 second=234 amount=-1 +kerning first=220 second=275 amount=-1 +kerning first=245 second=345 amount=-1 +kerning first=74 second=83 amount=-1 +kerning first=235 second=249 amount=-1 +kerning first=281 second=345 amount=-1 +kerning first=8222 second=380 amount=-1 +kerning first=352 second=296 amount=-1 +kerning first=325 second=97 amount=-1 +kerning first=72 second=80 amount=-1 +kerning first=86 second=226 amount=-1 +kerning first=72 second=243 amount=-1 +kerning first=258 second=45 amount=-1 +kerning first=207 second=223 amount=-1 +kerning first=298 second=284 amount=-1 +kerning first=323 second=83 amount=-1 +kerning first=81 second=278 amount=-1 +kerning first=366 second=45 amount=-2 +kerning first=370 second=284 amount=-1 +kerning first=289 second=335 amount=-1 +kerning first=66 second=353 amount=-1 +kerning first=263 second=226 amount=-1 +kerning first=217 second=97 amount=-1 +kerning first=66 second=223 amount=-1 +kerning first=227 second=291 amount=-1 +kerning first=86 second=199 amount=-1 +kerning first=1049 second=1081 amount=-1 +kerning first=187 second=253 amount=-1 +kerning first=73 second=212 amount=-1 +kerning first=77 second=245 amount=-1 +kerning first=268 second=304 amount=-1 +kerning first=325 second=380 amount=-1 +kerning first=1054 second=1046 amount=-1 +kerning first=304 second=304 amount=-1 +kerning first=267 second=324 amount=-1 +kerning first=218 second=120 amount=-1 +kerning first=254 second=120 amount=-1 +kerning first=8218 second=212 amount=-1 +kerning first=366 second=278 amount=-1 +kerning first=330 second=278 amount=-1 +kerning first=346 second=313 amount=-1 +kerning first=212 second=72 amount=-1 +kerning first=1042 second=1056 amount=-1 +kerning first=362 second=245 amount=-1 +kerning first=234 second=103 amount=-1 +kerning first=198 second=361 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=326 second=245 amount=-1 +kerning first=323 second=8218 amount=-1 +kerning first=202 second=313 amount=-1 +kerning first=1118 second=1088 amount=-1 +kerning first=338 second=338 amount=-1 +kerning first=287 second=8218 amount=-1 +kerning first=8222 second=266 amount=-1 +kerning first=274 second=313 amount=-1 +kerning first=218 second=245 amount=-1 +kerning first=1048 second=1037 amount=-1 +kerning first=1027 second=1092 amount=-1 +kerning first=82 second=187 amount=-1 +kerning first=89 second=192 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=65 second=254 amount=-1 +kerning first=230 second=111 amount=-1 +kerning first=324 second=269 amount=-1 +kerning first=1046 second=1088 amount=-1 +kerning first=280 second=203 amount=-1 +kerning first=81 second=72 amount=-1 +kerning first=101 second=254 amount=-1 +kerning first=266 second=111 amount=-1 +kerning first=195 second=118 amount=-1 +kerning first=221 second=65 amount=-1 +kerning first=103 second=105 amount=-1 +kerning first=330 second=72 amount=-1 +kerning first=352 second=304 amount=-1 +kerning first=1042 second=1055 amount=-1 +kerning first=366 second=72 amount=-1 +kerning first=87 second=260 amount=-1 +kerning first=374 second=111 amount=-1 +kerning first=362 second=120 amount=-1 +kerning first=286 second=219 amount=-1 +kerning first=80 second=374 amount=-1 +kerning first=115 second=8220 amount=-2 +kerning first=286 second=114 amount=-1 +kerning first=356 second=263 amount=-1 +kerning first=79 second=8220 amount=-2 +kerning first=1050 second=1094 amount=-1 +kerning first=250 second=114 amount=-1 +kerning first=1049 second=1073 amount=-1 +kerning first=220 second=8220 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=368 second=70 amount=-1 +kerning first=204 second=370 amount=-1 +kerning first=45 second=251 amount=-1 +kerning first=220 second=69 amount=-1 +kerning first=368 second=102 amount=-1 +kerning first=368 second=227 amount=-1 +kerning first=333 second=44 amount=-1 +kerning first=344 second=364 amount=-1 +kerning first=296 second=227 amount=-1 +kerning first=268 second=331 amount=-1 +kerning first=258 second=251 amount=-1 +kerning first=305 second=101 amount=-1 +kerning first=272 second=364 amount=-1 +kerning first=304 second=331 amount=-1 +kerning first=269 second=273 amount=-1 +kerning first=69 second=81 amount=-1 +kerning first=233 second=273 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=200 second=364 amount=-1 +kerning first=370 second=78 amount=-1 +kerning first=366 second=251 amount=-1 +kerning first=302 second=355 amount=-1 +kerning first=1048 second=1064 amount=-1 +kerning first=334 second=78 amount=-1 +kerning first=218 second=218 amount=-1 +kerning first=75 second=334 amount=-1 +kerning first=230 second=355 amount=-1 +kerning first=194 second=355 amount=-1 +kerning first=282 second=81 amount=-1 +kerning first=77 second=218 amount=-1 +kerning first=45 second=72 amount=-1 +kerning first=298 second=78 amount=-1 +kerning first=1062 second=1085 amount=-1 +kerning first=262 second=78 amount=-1 +kerning first=277 second=113 amount=-1 +kerning first=66 second=88 amount=-1 +kerning first=111 second=8250 amount=-1 +kerning first=234 second=242 amount=-1 +kerning first=207 second=288 amount=-1 +kerning first=1056 second=1076 amount=-1 +kerning first=85 second=78 amount=-1 +kerning first=279 second=234 amount=-1 +kerning first=335 second=8221 amount=-2 +kerning first=217 second=313 amount=-1 +kerning first=80 second=282 amount=-1 +kerning first=338 second=355 amount=-1 +kerning first=67 second=230 amount=-1 +kerning first=280 second=274 amount=-1 +kerning first=262 second=79 amount=-1 +kerning first=214 second=87 amount=-1 +kerning first=1036 second=1073 amount=-1 +kerning first=335 second=291 amount=-1 +kerning first=228 second=233 amount=-1 +kerning first=87 second=233 amount=-1 +kerning first=8249 second=220 amount=-1 +kerning first=263 second=291 amount=-1 +kerning first=206 second=346 amount=-1 +kerning first=8222 second=217 amount=-1 +kerning first=1042 second=1052 amount=-1 +kerning first=363 second=233 amount=-1 +kerning first=268 second=230 amount=-1 +kerning first=272 second=87 amount=-1 +kerning first=291 second=233 amount=-1 +kerning first=327 second=233 amount=-1 +kerning first=325 second=288 amount=-1 +kerning first=232 second=235 amount=-1 +kerning first=240 second=291 amount=-1 +kerning first=200 second=334 amount=-1 +kerning first=73 second=202 amount=-1 +kerning first=1068 second=1046 amount=-1 +kerning first=1086 second=1113 amount=-1 +kerning first=99 second=291 amount=-1 +kerning first=354 second=257 amount=-1 +kerning first=209 second=227 amount=-1 +kerning first=213 second=84 amount=-1 +kerning first=330 second=224 amount=-1 +kerning first=217 second=288 amount=-1 +kerning first=344 second=334 amount=-1 +kerning first=1055 second=1049 amount=-1 +kerning first=366 second=224 amount=-1 +kerning first=370 second=81 amount=-1 +kerning first=262 second=81 amount=-1 +kerning first=298 second=81 amount=-1 +kerning first=200 second=187 amount=-1 +kerning first=278 second=8221 amount=-1 +kerning first=314 second=8221 amount=-1 +kerning first=97 second=99 amount=-1 +kerning first=105 second=171 amount=-1 +kerning first=1038 second=1095 amount=-1 +kerning first=221 second=245 amount=-1 +kerning first=344 second=187 amount=-1 +kerning first=205 second=270 amount=-1 +kerning first=116 second=245 amount=-1 +kerning first=272 second=187 amount=-1 +kerning first=80 second=245 amount=-1 +kerning first=103 second=363 amount=-1 +kerning first=201 second=8218 amount=-1 +kerning first=367 second=337 amount=-1 +kerning first=1054 second=1070 amount=-1 +kerning first=73 second=223 amount=-1 +kerning first=76 second=221 amount=-1 +kerning first=97 second=279 amount=-1 +kerning first=281 second=269 amount=-1 +kerning first=1053 second=1104 amount=-1 +kerning first=204 second=277 amount=-1 +kerning first=304 second=230 amount=-1 +kerning first=288 second=75 amount=-1 +kerning first=302 second=331 amount=-1 +kerning first=283 second=44 amount=-1 +kerning first=256 second=8249 amount=-1 +kerning first=214 second=364 amount=-1 +kerning first=85 second=261 amount=-1 +kerning first=210 second=206 amount=-1 +kerning first=69 second=206 amount=-1 +kerning first=114 second=228 amount=-1 +kerning first=73 second=364 amount=-1 +kerning first=201 second=66 amount=-1 +kerning first=298 second=261 amount=-1 +kerning first=262 second=261 amount=-1 +kerning first=258 second=371 amount=-1 +kerning first=201 second=367 amount=-1 +kerning first=205 second=257 amount=-1 +kerning first=370 second=261 amount=-1 +kerning first=81 second=217 amount=-1 +kerning first=72 second=264 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=368 second=69 amount=-1 +kerning first=282 second=206 amount=-1 +kerning first=302 second=366 amount=-1 +kerning first=291 second=380 amount=-1 +kerning first=1030 second=1034 amount=-1 +kerning first=284 second=205 amount=-1 +kerning first=255 second=380 amount=-1 +kerning first=77 second=200 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=289 second=108 amount=-1 +kerning first=212 second=205 amount=-1 +kerning first=327 second=380 amount=-1 +kerning first=65 second=303 amount=-1 +kerning first=364 second=266 amount=-1 +kerning first=264 second=273 amount=-1 +kerning first=199 second=368 amount=-1 +kerning first=286 second=364 amount=-1 +kerning first=193 second=370 amount=-1 +kerning first=1066 second=1034 amount=-1 +kerning first=8217 second=114 amount=-1 +kerning first=203 second=8218 amount=-1 +kerning first=253 second=318 amount=-1 +kerning first=72 second=8249 amount=-1 +kerning first=1036 second=1063 amount=-1 +kerning first=108 second=8249 amount=-1 +kerning first=284 second=8221 amount=-1 +kerning first=99 second=44 amount=-1 +kerning first=1041 second=1116 amount=-1 +kerning first=235 second=355 amount=-1 +kerning first=71 second=205 amount=-1 +kerning first=203 second=78 amount=-1 +kerning first=249 second=8249 amount=-1 +kerning first=199 second=355 amount=-1 +kerning first=78 second=380 amount=-1 +kerning first=80 second=325 amount=-1 +kerning first=219 second=380 amount=-1 +kerning first=8250 second=370 amount=-1 +kerning first=1077 second=1103 amount=-1 +kerning first=1062 second=1077 amount=-1 +kerning first=316 second=248 amount=-1 +kerning first=1060 second=1039 amount=-1 +kerning first=338 second=218 amount=-1 +kerning first=344 second=87 amount=-1 +kerning first=302 second=218 amount=-1 +kerning first=67 second=248 amount=-1 +kerning first=266 second=218 amount=-1 +kerning first=202 second=76 amount=-1 +kerning first=209 second=214 amount=-1 +kerning first=194 second=218 amount=-1 +kerning first=103 second=248 amount=-1 +kerning first=1069 second=1039 amount=-1 +kerning first=77 second=347 amount=-1 +kerning first=74 second=330 amount=-1 +kerning first=205 second=77 amount=-1 +kerning first=201 second=220 amount=-1 +kerning first=1041 second=1081 amount=-1 +kerning first=1050 second=1059 amount=-1 +kerning first=255 second=107 amount=-1 +kerning first=85 second=382 amount=-1 +kerning first=1091 second=1103 amount=-1 +kerning first=374 second=339 amount=-1 +kerning first=121 second=382 amount=-1 +kerning first=367 second=103 amount=-1 +kerning first=226 second=382 amount=-1 +kerning first=108 second=171 amount=-1 +kerning first=269 second=289 amount=-1 +kerning first=1076 second=1094 amount=-1 +kerning first=233 second=289 amount=-1 +kerning first=259 second=103 amount=-1 +kerning first=8222 second=230 amount=-1 +kerning first=288 second=8218 amount=-1 +kerning first=223 second=103 amount=-1 +kerning first=249 second=171 amount=-1 +kerning first=305 second=289 amount=-1 +kerning first=86 second=242 amount=-1 +kerning first=281 second=281 amount=-1 +kerning first=70 second=261 amount=-1 +kerning first=1053 second=1091 amount=-1 +kerning first=330 second=304 amount=-1 +kerning first=97 second=333 amount=-1 +kerning first=366 second=304 amount=-1 +kerning first=258 second=211 amount=-1 +kerning first=1053 second=1051 amount=-1 +kerning first=221 second=338 amount=-1 +kerning first=240 second=187 amount=-1 +kerning first=1053 second=1050 amount=-1 +kerning first=330 second=211 amount=-1 +kerning first=1060 second=1052 amount=-1 +kerning first=269 second=109 amount=-1 +kerning first=204 second=242 amount=-1 +kerning first=282 second=332 amount=-1 +kerning first=80 second=114 amount=-1 +kerning first=80 second=338 amount=-1 +kerning first=70 second=85 amount=-1 +kerning first=370 second=203 amount=-1 +kerning first=81 second=304 amount=-1 +kerning first=266 second=339 amount=-1 +kerning first=262 second=382 amount=-1 +kerning first=71 second=298 amount=-1 +kerning first=230 second=339 amount=-1 +kerning first=298 second=382 amount=-1 +kerning first=339 second=339 amount=-1 +kerning first=302 second=339 amount=-1 +kerning first=362 second=347 amount=-1 +kerning first=1051 second=1025 amount=-1 +kerning first=70 second=332 amount=-1 +kerning first=65 second=290 amount=-1 +kerning first=89 second=339 amount=-1 +kerning first=366 second=211 amount=-1 +kerning first=212 second=298 amount=-1 +kerning first=201 second=313 amount=-1 +kerning first=206 second=290 amount=-1 +kerning first=302 second=275 amount=-1 +kerning first=218 second=347 amount=-1 +kerning first=83 second=364 amount=-1 +kerning first=234 second=382 amount=-1 +kerning first=1043 second=1085 amount=-1 +kerning first=221 second=271 amount=-1 +kerning first=240 second=111 amount=-1 +kerning first=278 second=357 amount=-1 +kerning first=317 second=374 amount=-1 +kerning first=283 second=8250 amount=-1 +kerning first=8222 second=243 amount=-1 +kerning first=304 second=76 amount=-1 +kerning first=1118 second=1094 amount=-1 +kerning first=211 second=8250 amount=-1 +kerning first=101 second=357 amount=-1 +kerning first=264 second=219 amount=-1 +kerning first=268 second=76 amount=-1 +kerning first=106 second=8250 amount=-1 +kerning first=65 second=357 amount=-1 +kerning first=364 second=212 amount=-1 +kerning first=206 second=357 amount=-1 +kerning first=68 second=374 amount=-1 +kerning first=1044 second=1118 amount=-1 +kerning first=192 second=219 amount=-1 +kerning first=208 second=8222 amount=-1 +kerning first=364 second=82 amount=-1 +kerning first=330 second=317 amount=-1 +kerning first=262 second=315 amount=-1 +kerning first=304 second=323 amount=-1 +kerning first=105 second=119 amount=-1 +kerning first=220 second=212 amount=-1 +kerning first=268 second=323 amount=-1 +kerning first=1048 second=1075 amount=-1 +kerning first=86 second=263 amount=-1 +kerning first=365 second=8217 amount=-1 +kerning first=370 second=315 amount=-1 +kerning first=80 second=8217 amount=-1 +kerning first=8250 second=69 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=116 second=8217 amount=-1 +kerning first=296 second=262 amount=-1 +kerning first=298 second=315 amount=-1 +kerning first=302 second=261 amount=-1 +kerning first=334 second=315 amount=-1 +kerning first=221 second=8217 amount=-1 +kerning first=199 second=314 amount=-1 +kerning first=203 second=366 amount=-1 +kerning first=286 second=204 amount=-1 +kerning first=338 second=365 amount=-1 +kerning first=374 second=365 amount=-1 +kerning first=214 second=204 amount=-1 +kerning first=233 second=263 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=269 second=263 amount=-1 +kerning first=200 second=280 amount=-1 +kerning first=1051 second=1092 amount=-1 +kerning first=8218 second=273 amount=-1 +kerning first=305 second=263 amount=-1 +kerning first=194 second=365 amount=-1 +kerning first=70 second=254 amount=-1 +kerning first=272 second=280 amount=-1 +kerning first=235 second=314 amount=-1 +kerning first=230 second=365 amount=-1 +kerning first=1031 second=1067 amount=-1 +kerning first=89 second=365 amount=-1 +kerning first=231 second=110 amount=-1 +kerning first=8249 second=350 amount=-1 +kerning first=1048 second=1101 amount=-1 +kerning first=72 second=331 amount=-1 +kerning first=8222 second=104 amount=-1 +kerning first=199 second=67 amount=-1 +kerning first=1071 second=1024 amount=-1 +kerning first=267 second=110 amount=-1 +kerning first=352 second=68 amount=-1 +kerning first=205 second=203 amount=-1 +kerning first=80 second=271 amount=-1 +kerning first=217 second=195 amount=-1 +kerning first=100 second=378 amount=-1 +kerning first=258 second=250 amount=-1 +kerning first=195 second=357 amount=-1 +kerning first=264 second=274 amount=-1 +kerning first=277 second=378 amount=-1 +kerning first=272 second=46 amount=-1 +kerning first=234 second=101 amount=-1 +kerning first=205 second=378 amount=-1 +kerning first=234 second=347 amount=-1 +kerning first=69 second=8217 amount=-1 +kerning first=199 second=262 amount=-1 +kerning first=1068 second=1067 amount=-1 +kerning first=207 second=76 amount=-1 +kerning first=105 second=8217 amount=-1 +kerning first=255 second=8221 amount=-2 +kerning first=334 second=354 amount=-1 +kerning first=217 second=261 amount=-1 +kerning first=334 second=209 amount=-1 +kerning first=75 second=216 amount=-1 +kerning first=89 second=267 amount=-1 +kerning first=8222 second=257 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=339 second=357 amount=-1 +kerning first=88 second=345 amount=-1 +kerning first=211 second=280 amount=-1 +kerning first=203 second=204 amount=-1 +kerning first=77 second=113 amount=-1 +kerning first=366 second=317 amount=-1 +kerning first=193 second=345 amount=-1 +kerning first=229 second=345 amount=-1 +kerning first=1070 second=1084 amount=-1 +kerning first=345 second=259 amount=-1 +kerning first=354 second=187 amount=-1 +kerning first=203 second=270 amount=-1 +kerning first=103 second=287 amount=-1 +kerning first=1033 second=1038 amount=-2 +kerning first=337 second=345 amount=-1 +kerning first=1086 second=1083 amount=-1 +kerning first=370 second=369 amount=-1 +kerning first=8217 second=240 amount=-1 +kerning first=362 second=113 amount=-1 +kerning first=201 second=207 amount=-1 +kerning first=316 second=287 amount=-1 +kerning first=370 second=100 amount=-1 +kerning first=45 second=317 amount=-1 +kerning first=1047 second=1096 amount=-1 +kerning first=264 second=366 amount=-1 +kerning first=81 second=317 amount=-1 +kerning first=244 second=287 amount=-1 +kerning first=73 second=336 amount=-1 +kerning first=326 second=113 amount=-1 +kerning first=192 second=366 amount=-1 +kerning first=199 second=72 amount=-1 +kerning first=232 second=271 amount=-1 +kerning first=121 second=369 amount=-1 +kerning first=72 second=210 amount=-1 +kerning first=75 second=116 amount=-1 +kerning first=85 second=369 amount=-1 +kerning first=304 second=271 amount=-1 +kerning first=355 second=8250 amount=-1 +kerning first=268 second=271 amount=-1 +kerning first=67 second=8220 amount=-1 +kerning first=202 second=371 amount=-1 +kerning first=70 second=278 amount=-1 +kerning first=209 second=73 amount=-1 +kerning first=330 second=83 amount=-1 +kerning first=366 second=83 amount=-1 +kerning first=103 second=8220 amount=-2 +kerning first=8218 second=221 amount=-2 +kerning first=259 second=244 amount=-1 +kerning first=218 second=213 amount=-1 +kerning first=317 second=86 amount=-1 +kerning first=198 second=268 amount=-1 +kerning first=97 second=289 amount=-1 +kerning first=296 second=97 amount=-1 +kerning first=73 second=351 amount=-1 +kerning first=211 second=278 amount=-1 +kerning first=316 second=8220 amount=-1 +kerning first=367 second=244 amount=-1 +kerning first=368 second=97 amount=-1 +kerning first=77 second=213 amount=-1 +kerning first=368 second=114 amount=-1 +kerning first=1044 second=1090 amount=-1 +kerning first=302 second=77 amount=-1 +kerning first=1059 second=1099 amount=-1 +kerning first=338 second=77 amount=-1 +kerning first=368 second=82 amount=-1 +kerning first=108 second=277 amount=-1 +kerning first=1059 second=1060 amount=-1 +kerning first=207 second=74 amount=-1 +kerning first=266 second=77 amount=-1 +kerning first=72 second=277 amount=-1 +kerning first=67 second=235 amount=-1 +kerning first=68 second=88 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=103 second=235 amount=-1 +kerning first=8218 second=219 amount=-1 +kerning first=74 second=251 amount=-1 +kerning first=249 second=277 amount=-1 +kerning first=8218 second=234 amount=-1 +kerning first=1047 second=1081 amount=-1 +kerning first=268 second=269 amount=-1 +kerning first=195 second=290 amount=-1 +kerning first=304 second=269 amount=-1 +kerning first=218 second=113 amount=-1 +kerning first=304 second=338 amount=-1 +kerning first=232 second=269 amount=-1 +kerning first=234 second=283 amount=-1 +kerning first=266 second=231 amount=-1 +kerning first=282 second=286 amount=-1 +kerning first=1048 second=1117 amount=-1 +kerning first=268 second=338 amount=-1 +kerning first=302 second=231 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=72 second=171 amount=-1 +kerning first=296 second=82 amount=-1 +kerning first=196 second=338 amount=-1 +kerning first=374 second=231 amount=-1 +kerning first=69 second=286 amount=-1 +kerning first=201 second=274 amount=-1 +kerning first=352 second=8220 amount=-1 +kerning first=214 second=351 amount=-1 +kerning first=198 second=203 amount=-1 +kerning first=68 second=86 amount=-1 +kerning first=1050 second=1074 amount=-1 +kerning first=277 second=363 amount=-1 +kerning first=212 second=194 amount=-1 +kerning first=263 second=240 amount=-1 +kerning first=264 second=108 amount=-1 +kerning first=252 second=114 amount=-1 +kerning first=354 second=353 amount=-1 +kerning first=264 second=80 amount=-1 +kerning first=1027 second=1097 amount=-1 +kerning first=296 second=278 amount=-1 +kerning first=382 second=45 amount=-1 +kerning first=324 second=114 amount=-1 +kerning first=1068 second=1025 amount=-1 +kerning first=366 second=8222 amount=-2 +kerning first=288 second=114 amount=-1 +kerning first=87 second=347 amount=-1 +kerning first=284 second=66 amount=-1 +kerning first=45 second=196 amount=-1 +kerning first=85 second=367 amount=-1 +kerning first=266 second=344 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=196 second=217 amount=-1 +kerning first=212 second=66 amount=-1 +kerning first=272 second=317 amount=-1 +kerning first=222 second=8222 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=268 second=217 amount=-1 +kerning first=268 second=284 amount=-1 +kerning first=89 second=231 amount=-1 +kerning first=220 second=251 amount=-1 +kerning first=304 second=217 amount=-1 +kerning first=1047 second=1027 amount=-1 +kerning first=304 second=284 amount=-1 +kerning first=230 second=231 amount=-1 +kerning first=202 second=357 amount=-1 +kerning first=272 second=115 amount=-1 +kerning first=210 second=353 amount=-1 +kerning first=1034 second=1101 amount=-1 +kerning first=196 second=284 amount=-1 +kerning first=1064 second=1028 amount=-1 +kerning first=201 second=205 amount=-1 +kerning first=101 second=249 amount=-1 +kerning first=220 second=266 amount=-1 +kerning first=316 second=235 amount=-1 +kerning first=362 second=200 amount=-1 +kerning first=1064 second=1037 amount=-1 +kerning first=315 second=362 amount=-1 +kerning first=198 second=214 amount=-1 +kerning first=84 second=243 amount=-1 +kerning first=290 second=200 amount=-1 +kerning first=204 second=111 amount=-1 +kerning first=1058 second=1076 amount=-1 +kerning first=218 second=200 amount=-1 +kerning first=8218 second=288 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=70 second=226 amount=-1 +kerning first=8222 second=271 amount=-1 +kerning first=220 second=370 amount=-1 +kerning first=367 second=242 amount=-1 +kerning first=202 second=45 amount=-1 +kerning first=204 second=97 amount=-1 +kerning first=81 second=8222 amount=-1 +kerning first=97 second=45 amount=-1 +kerning first=99 second=252 amount=-1 +kerning first=278 second=249 amount=-1 +kerning first=310 second=45 amount=-1 +kerning first=314 second=249 amount=-1 +kerning first=67 second=233 amount=-1 +kerning first=8222 second=98 amount=-1 +kerning first=346 second=45 amount=-1 +kerning first=217 second=275 amount=-1 +kerning first=350 second=249 amount=-1 +kerning first=355 second=226 amount=-1 +kerning first=207 second=362 amount=-1 +kerning first=195 second=71 amount=-1 +kerning first=325 second=275 amount=-1 +kerning first=171 second=362 amount=-1 +kerning first=274 second=45 amount=-1 +kerning first=289 second=275 amount=-1 +kerning first=337 second=291 amount=-1 +kerning first=72 second=223 amount=-1 +kerning first=352 second=302 amount=-1 +kerning first=291 second=326 amount=-1 +kerning first=103 second=233 amount=-1 +kerning first=280 second=302 amount=-1 +kerning first=364 second=199 amount=-1 +kerning first=229 second=291 amount=-1 +kerning first=87 second=234 amount=-1 +kerning first=1030 second=1083 amount=-1 +kerning first=228 second=234 amount=-1 +kerning first=8250 second=84 amount=-1 +kerning first=99 second=98 amount=-1 +kerning first=270 second=46 amount=-1 +kerning first=326 second=267 amount=-1 +kerning first=67 second=302 amount=-1 +kerning first=362 second=267 amount=-1 +kerning first=316 second=233 amount=-1 +kerning first=1039 second=1113 amount=-1 +kerning first=281 second=248 amount=-1 +kerning first=8222 second=269 amount=-1 +kerning first=233 second=122 amount=-1 +kerning first=225 second=243 amount=-1 +kerning first=70 second=224 amount=-1 +kerning first=217 second=327 amount=-1 +kerning first=77 second=220 amount=-1 +kerning first=65 second=8221 amount=-2 +kerning first=1062 second=1094 amount=-1 +kerning first=262 second=333 amount=-1 +kerning first=101 second=8221 amount=-2 +kerning first=291 second=107 amount=-1 +kerning first=369 second=243 amount=-1 +kerning first=325 second=327 amount=-1 +kerning first=234 second=337 amount=-1 +kerning first=225 second=269 amount=-1 +kerning first=1038 second=1119 amount=-1 +kerning first=277 second=311 amount=-1 +kerning first=354 second=232 amount=-1 +kerning first=171 second=89 amount=-1 +kerning first=355 second=224 amount=-1 +kerning first=66 second=89 amount=-1 +kerning first=234 second=335 amount=-1 +kerning first=97 second=318 amount=-1 +kerning first=8220 second=218 amount=-1 +kerning first=83 second=370 amount=-1 +kerning first=1052 second=1071 amount=-1 +kerning first=344 second=46 amount=-1 +kerning first=1078 second=1104 amount=-1 +kerning first=218 second=267 amount=-1 +kerning first=368 second=370 amount=-1 +kerning first=8222 second=338 amount=-1 +kerning first=330 second=212 amount=-1 +kerning first=296 second=370 amount=-1 +kerning first=8250 second=82 amount=-1 +kerning first=72 second=225 amount=-1 +kerning first=220 second=199 amount=-1 +kerning first=77 second=267 amount=-1 +kerning first=220 second=361 amount=-1 +kerning first=291 second=277 amount=-1 +kerning first=1068 second=1031 amount=-1 +kerning first=302 second=71 amount=-1 +kerning first=1030 second=1086 amount=-1 +kerning first=364 second=361 amount=-1 +kerning first=199 second=206 amount=-1 +kerning first=207 second=267 amount=-1 +kerning first=209 second=212 amount=-1 +kerning first=346 second=114 amount=-1 +kerning first=68 second=296 amount=-1 +kerning first=279 second=267 amount=-1 +kerning first=1104 second=1117 amount=-1 +kerning first=1062 second=1079 amount=-1 +kerning first=274 second=8249 amount=-1 +kerning first=214 second=115 amount=-1 +kerning first=202 second=114 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=310 second=114 amount=-1 +kerning first=346 second=8249 amount=-1 +kerning first=274 second=114 amount=-1 +kerning first=382 second=8249 amount=-1 +kerning first=1027 second=1095 amount=-1 +kerning first=251 second=111 amount=-1 +kerning first=350 second=45 amount=-1 +kerning first=287 second=111 amount=-1 +kerning first=73 second=115 amount=-1 +kerning first=323 second=111 amount=-1 +kerning first=83 second=368 amount=-1 +kerning first=97 second=114 amount=-1 +kerning first=87 second=258 amount=-1 +kerning first=291 second=365 amount=-1 +kerning first=79 second=197 amount=-1 +kerning first=327 second=68 amount=-1 +kerning first=219 second=365 amount=-1 +kerning first=220 second=197 amount=-1 +kerning first=316 second=263 amount=-1 +kerning first=255 second=365 amount=-1 +kerning first=203 second=310 amount=-1 +kerning first=199 second=370 amount=-1 +kerning first=302 second=203 amount=-1 +kerning first=77 second=72 amount=-1 +kerning first=338 second=203 amount=-1 +kerning first=368 second=368 amount=-1 +kerning first=234 second=249 amount=-1 +kerning first=364 second=197 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=202 second=8249 amount=-1 +kerning first=1042 second=1037 amount=-1 +kerning first=8217 second=346 amount=-1 +kerning first=199 second=364 amount=-1 +kerning first=1041 second=1088 amount=-1 +kerning first=195 second=199 amount=-1 +kerning first=246 second=8220 amount=-2 +kerning first=266 second=203 amount=-1 +kerning first=368 second=290 amount=-1 +kerning first=362 second=72 amount=-1 +kerning first=67 second=263 amount=-1 +kerning first=270 second=374 amount=-1 +kerning first=103 second=263 amount=-1 +kerning first=235 second=106 amount=-1 +kerning first=290 second=72 amount=-1 +kerning first=1054 second=1055 amount=-1 +kerning first=355 second=8222 amount=-1 +kerning first=8216 second=220 amount=-1 +kerning first=116 second=230 amount=-1 +kerning first=203 second=327 amount=-1 +kerning first=80 second=230 amount=-1 +kerning first=1053 second=1052 amount=-1 +kerning first=211 second=8222 amount=-1 +kerning first=211 second=87 amount=-1 +kerning first=1055 second=1104 amount=-1 +kerning first=88 second=288 amount=-1 +kerning first=1030 second=1036 amount=-1 +kerning first=72 second=279 amount=-1 +kerning first=70 second=8222 amount=-2 +kerning first=235 second=333 amount=-1 +kerning first=108 second=279 amount=-1 +kerning first=192 second=288 amount=-1 +kerning first=74 second=81 amount=-1 +kerning first=287 second=291 amount=-1 +kerning first=251 second=291 amount=-1 +kerning first=87 second=288 amount=-1 +kerning first=364 second=227 amount=-1 +kerning first=8217 second=363 amount=-1 +kerning first=337 second=44 amount=-1 +kerning first=206 second=274 amount=-1 +kerning first=333 second=187 amount=-1 +kerning first=255 second=252 amount=-1 +kerning first=196 second=89 amount=-1 +kerning first=110 second=291 amount=-1 +kerning first=71 second=209 amount=-1 +kerning first=263 second=281 amount=-1 +kerning first=119 second=318 amount=-1 +kerning first=264 second=288 amount=-1 +kerning first=220 second=227 amount=-1 +kerning first=224 second=318 amount=-1 +kerning first=1059 second=1090 amount=-1 +kerning first=86 second=99 amount=-1 +kerning first=84 second=187 amount=-1 +kerning first=1042 second=1050 amount=-1 +kerning first=1067 second=1095 amount=-1 +kerning first=356 second=337 amount=-1 +kerning first=227 second=99 amount=-1 +kerning first=225 second=187 amount=-1 +kerning first=290 second=8218 amount=-1 +kerning first=1033 second=1027 amount=-1 +kerning first=263 second=99 amount=-1 +kerning first=261 second=187 amount=-1 +kerning first=268 second=245 amount=-1 +kerning first=65 second=221 amount=-1 +kerning first=232 second=245 amount=-1 +kerning first=1047 second=1113 amount=-1 +kerning first=288 second=270 amount=-1 +kerning first=287 second=328 amount=-1 +kerning first=1031 second=1073 amount=-1 +kerning first=71 second=66 amount=-1 +kerning first=264 second=330 amount=-1 +kerning first=249 second=279 amount=-1 +kerning first=221 second=230 amount=-1 +kerning first=366 second=196 amount=-1 +kerning first=200 second=332 amount=-1 +kerning first=370 second=367 amount=-1 +kerning first=344 second=332 amount=-1 +kerning first=214 second=202 amount=-1 +kerning first=84 second=351 amount=-1 +kerning first=198 second=73 amount=-1 +kerning first=368 second=264 amount=-1 +kerning first=196 second=8217 amount=-2 +kerning first=286 second=202 amount=-1 +kerning first=65 second=108 amount=-1 +kerning first=296 second=264 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=1030 second=1073 amount=-1 +kerning first=279 second=104 amount=-1 +kerning first=339 second=248 amount=-1 +kerning first=242 second=108 amount=-1 +kerning first=105 second=121 amount=-1 +kerning first=213 second=82 amount=-1 +kerning first=1034 second=1030 amount=-1 +kerning first=8249 second=352 amount=-1 +kerning first=80 second=323 amount=-1 +kerning first=1041 second=1034 amount=-1 +kerning first=8250 second=368 amount=-1 +kerning first=232 second=8217 amount=-2 +kerning first=1089 second=1076 amount=-1 +kerning first=203 second=364 amount=-1 +kerning first=1040 second=1038 amount=-2 +kerning first=268 second=8217 amount=-1 +kerning first=314 second=108 amount=-1 +kerning first=199 second=69 amount=-1 +kerning first=97 second=277 amount=-1 +kerning first=375 second=8218 amount=-1 +kerning first=1078 second=1091 amount=-1 +kerning first=275 second=273 amount=-1 +kerning first=8218 second=366 amount=-1 +kerning first=240 second=113 amount=-1 +kerning first=1056 second=1067 amount=-1 +kerning first=1039 second=1067 amount=-1 +kerning first=230 second=116 amount=-1 +kerning first=224 second=314 amount=-1 +kerning first=72 second=82 amount=-1 +kerning first=268 second=325 amount=-1 +kerning first=83 second=171 amount=-1 +kerning first=286 second=78 amount=-1 +kerning first=204 second=113 amount=-1 +kerning first=82 second=44 amount=-1 +kerning first=199 second=286 amount=-1 +kerning first=119 second=314 amount=-1 +kerning first=1118 second=1078 amount=-1 +kerning first=304 second=325 amount=-1 +kerning first=99 second=113 amount=-1 +kerning first=280 second=317 amount=-1 +kerning first=1031 second=1069 amount=-1 +kerning first=267 second=112 amount=-1 +kerning first=1067 second=1069 amount=-1 +kerning first=327 second=264 amount=-1 +kerning first=231 second=112 amount=-1 +kerning first=352 second=317 amount=-1 +kerning first=214 second=78 amount=-1 +kerning first=109 second=339 amount=-1 +kerning first=220 second=110 amount=-1 +kerning first=1038 second=1077 amount=-1 +kerning first=272 second=282 amount=-1 +kerning first=73 second=78 amount=-1 +kerning first=199 second=316 amount=-1 +kerning first=99 second=109 amount=-1 +kerning first=291 second=242 amount=-1 +kerning first=8217 second=256 amount=-2 +kerning first=200 second=282 amount=-1 +kerning first=364 second=110 amount=-1 +kerning first=288 second=77 amount=-1 +kerning first=217 second=8220 amount=-1 +kerning first=103 second=289 amount=-1 +kerning first=1031 second=1094 amount=-1 +kerning first=291 second=339 amount=-1 +kerning first=258 second=356 amount=-1 +kerning first=244 second=289 amount=-1 +kerning first=363 second=339 amount=-1 +kerning first=255 second=311 amount=-1 +kerning first=316 second=289 amount=-1 +kerning first=327 second=339 amount=-1 +kerning first=74 second=382 amount=-1 +kerning first=72 second=333 amount=-1 +kerning first=81 second=356 amount=-1 +kerning first=260 second=171 amount=-1 +kerning first=262 second=220 amount=-1 +kerning first=108 second=333 amount=-1 +kerning first=328 second=281 amount=-1 +kerning first=356 second=246 amount=-1 +kerning first=334 second=220 amount=-1 +kerning first=364 second=281 amount=-1 +kerning first=259 second=101 amount=-1 +kerning first=368 second=171 amount=-2 +kerning first=298 second=220 amount=-1 +kerning first=249 second=333 amount=-1 +kerning first=274 second=212 amount=-1 +kerning first=367 second=101 amount=-1 +kerning first=85 second=220 amount=-1 +kerning first=84 second=100 amount=-1 +kerning first=1049 second=1065 amount=-1 +kerning first=204 second=330 amount=-1 +kerning first=71 second=296 amount=-1 +kerning first=211 second=304 amount=-1 +kerning first=70 second=280 amount=-1 +kerning first=1030 second=1045 amount=-1 +kerning first=284 second=8218 amount=-1 +kerning first=69 second=338 amount=-1 +kerning first=284 second=296 amount=-1 +kerning first=366 second=85 amount=-1 +kerning first=248 second=8218 amount=-1 +kerning first=195 second=86 amount=-1 +kerning first=1064 second=1074 amount=-1 +kerning first=330 second=85 amount=-1 +kerning first=212 second=8218 amount=-1 +kerning first=212 second=296 amount=-1 +kerning first=70 second=304 amount=-1 +kerning first=89 second=382 amount=-1 +kerning first=298 second=313 amount=-1 +kerning first=258 second=85 amount=-1 +kerning first=334 second=313 amount=-1 +kerning first=366 second=109 amount=-1 +kerning first=370 second=220 amount=-1 +kerning first=370 second=313 amount=-1 +kerning first=187 second=298 amount=-1 +kerning first=356 second=8218 amount=-1 +kerning first=220 second=281 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=78 second=339 amount=-1 +kerning first=45 second=85 amount=-1 +kerning first=279 second=347 amount=-1 +kerning first=219 second=339 amount=-1 +kerning first=262 second=313 amount=-1 +kerning first=344 second=8250 amount=-1 +kerning first=217 second=290 amount=-1 +kerning first=207 second=347 amount=-1 +kerning first=66 second=347 amount=-1 +kerning first=107 second=8218 amount=-1 +kerning first=1051 second=1037 amount=-1 +kerning first=272 second=8250 amount=-1 +kerning first=45 second=109 amount=-1 +kerning first=323 second=382 amount=-1 +kerning first=305 second=287 amount=-1 +kerning first=70 second=83 amount=-1 +kerning first=325 second=290 amount=-1 +kerning first=269 second=287 amount=-1 +kerning first=85 second=313 amount=-1 +kerning first=200 second=8250 amount=-1 +kerning first=233 second=287 amount=-1 +kerning first=200 second=371 amount=-1 +kerning first=67 second=122 amount=-1 +kerning first=67 second=282 amount=-1 +kerning first=1091 second=1090 amount=-1 +kerning first=291 second=289 amount=-1 +kerning first=275 second=234 amount=-1 +kerning first=255 second=289 amount=-1 +kerning first=316 second=339 amount=-1 +kerning first=76 second=374 amount=-1 +kerning first=363 second=289 amount=-1 +kerning first=209 second=66 amount=-1 +kerning first=197 second=8220 amount=-2 +kerning first=206 second=330 amount=-1 +kerning first=1055 second=1105 amount=-1 +kerning first=45 second=280 amount=-1 +kerning first=199 second=232 amount=-1 +kerning first=203 second=219 amount=-1 +kerning first=272 second=278 amount=-1 +kerning first=1039 second=1070 amount=-1 +kerning first=266 second=311 amount=-1 +kerning first=316 second=122 amount=-1 +kerning first=200 second=278 amount=-1 +kerning first=81 second=280 amount=-1 +kerning first=338 second=199 amount=-1 +kerning first=1046 second=1082 amount=-1 +kerning first=8250 second=264 amount=-1 +kerning first=244 second=122 amount=-1 +kerning first=307 second=232 amount=-1 +kerning first=103 second=107 amount=-1 +kerning first=103 second=122 amount=-1 +kerning first=271 second=232 amount=-1 +kerning first=67 second=107 amount=-1 +kerning first=281 second=103 amount=-1 +kerning first=235 second=232 amount=-1 +kerning first=209 second=335 amount=-1 +kerning first=368 second=225 amount=-1 +kerning first=80 second=269 amount=-1 +kerning first=116 second=269 amount=-1 +kerning first=281 second=335 amount=-1 +kerning first=1031 second=1062 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=89 second=45 amount=-2 +kerning first=199 second=311 amount=-1 +kerning first=281 second=8217 amount=-2 +kerning first=257 second=269 amount=-1 +kerning first=198 second=298 amount=-1 +kerning first=86 second=216 amount=-1 +kerning first=270 second=298 amount=-1 +kerning first=221 second=269 amount=-1 +kerning first=193 second=98 amount=-1 +kerning first=197 second=85 amount=-1 +kerning first=233 second=8220 amount=-2 +kerning first=323 second=101 amount=-1 +kerning first=171 second=346 amount=-1 +kerning first=365 second=269 amount=-1 +kerning first=1058 second=1081 amount=-1 +kerning first=333 second=46 amount=-1 +kerning first=104 second=335 amount=-1 +kerning first=73 second=241 amount=-1 +kerning first=296 second=225 amount=-1 +kerning first=370 second=274 amount=-1 +kerning first=81 second=70 amount=-1 +kerning first=1043 second=1087 amount=-1 +kerning first=221 second=67 amount=-1 +kerning first=298 second=274 amount=-1 +kerning first=71 second=207 amount=-1 +kerning first=268 second=104 amount=-1 +kerning first=80 second=67 amount=-1 +kerning first=334 second=274 amount=-1 +kerning first=70 second=250 amount=-1 +kerning first=196 second=104 amount=-1 +kerning first=262 second=274 amount=-1 +kerning first=232 second=104 amount=-1 +kerning first=283 second=250 amount=-1 +kerning first=120 second=46 amount=-1 +kerning first=212 second=207 amount=-1 +kerning first=325 second=366 amount=-1 +kerning first=368 second=260 amount=-1 +kerning first=45 second=70 amount=-1 +kerning first=370 second=259 amount=-1 +kerning first=282 second=262 amount=-1 +kerning first=204 second=200 amount=-1 +kerning first=267 second=187 amount=-1 +kerning first=362 second=76 amount=-1 +kerning first=298 second=259 amount=-1 +kerning first=375 second=8250 amount=-1 +kerning first=109 second=269 amount=-1 +kerning first=364 second=357 amount=-1 +kerning first=1051 second=1053 amount=-1 +kerning first=1038 second=1074 amount=-1 +kerning first=290 second=76 amount=-1 +kerning first=200 second=357 amount=-1 +kerning first=1118 second=1117 amount=-1 +kerning first=111 second=378 amount=-1 +kerning first=218 second=76 amount=-1 +kerning first=77 second=76 amount=-1 +kerning first=220 second=357 amount=-1 +kerning first=366 second=70 amount=-1 +kerning first=366 second=280 amount=-1 +kerning first=1059 second=1084 amount=-1 +kerning first=229 second=113 amount=-1 +kerning first=330 second=280 amount=-1 +kerning first=352 second=187 amount=-1 +kerning first=277 second=116 amount=-1 +kerning first=1088 second=1083 amount=-1 +kerning first=85 second=259 amount=-1 +kerning first=280 second=75 amount=-1 +kerning first=196 second=375 amount=-1 +kerning first=217 second=366 amount=-1 +kerning first=207 second=271 amount=-1 +kerning first=1067 second=1108 amount=-1 +kerning first=284 second=207 amount=-1 +kerning first=187 second=268 amount=-1 +kerning first=368 second=210 amount=-1 +kerning first=279 second=271 amount=-1 +kerning first=264 second=204 amount=-1 +kerning first=82 second=268 amount=-1 +kerning first=296 second=210 amount=-1 +kerning first=1031 second=1108 amount=-1 +kerning first=214 second=256 amount=-1 +kerning first=1058 second=1096 amount=-1 +kerning first=1048 second=1047 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=356 second=242 amount=-1 +kerning first=201 second=369 amount=-1 +kerning first=266 second=257 amount=-1 +kerning first=117 second=333 amount=-1 +kerning first=352 second=209 amount=-1 +kerning first=8217 second=324 amount=-1 +kerning first=302 second=257 amount=-1 +kerning first=1064 second=1113 amount=-1 +kerning first=233 second=233 amount=-1 +kerning first=280 second=209 amount=-1 +kerning first=296 second=279 amount=-1 +kerning first=89 second=257 amount=-1 +kerning first=269 second=233 amount=-1 +kerning first=263 second=316 amount=-1 +kerning first=224 second=279 amount=-1 +kerning first=1107 second=1102 amount=-1 +kerning first=264 second=327 amount=-1 +kerning first=78 second=235 amount=-1 +kerning first=207 second=213 amount=-1 +kerning first=286 second=187 amount=-1 +kerning first=374 second=380 amount=-1 +kerning first=305 second=233 amount=-1 +kerning first=219 second=235 amount=-1 +kerning first=66 second=213 amount=-1 +kerning first=291 second=235 amount=-1 +kerning first=197 second=371 amount=-1 +kerning first=8222 second=245 amount=-1 +kerning first=327 second=235 amount=-1 +kerning first=1034 second=1045 amount=-1 +kerning first=90 second=8221 amount=-1 +kerning first=363 second=235 amount=-1 +kerning first=313 second=218 amount=-1 +kerning first=89 second=380 amount=-1 +kerning first=200 second=336 amount=-1 +kerning first=291 second=231 amount=-1 +kerning first=108 second=318 amount=-1 +kerning first=116 second=281 amount=-1 +kerning first=259 second=283 amount=-1 +kerning first=8222 second=89 amount=-2 +kerning first=327 second=231 amount=-1 +kerning first=1027 second=1071 amount=-1 +kerning first=363 second=231 amount=-1 +kerning first=205 second=218 amount=-1 +kerning first=73 second=187 amount=-1 +kerning first=1067 second=1104 amount=-1 +kerning first=233 second=248 amount=-1 +kerning first=266 second=380 amount=-1 +kerning first=270 second=88 amount=-1 +kerning first=230 second=380 amount=-1 +kerning first=282 second=8221 amount=-1 +kerning first=305 second=248 amount=-1 +kerning first=202 second=75 amount=-1 +kerning first=1031 second=1104 amount=-1 +kerning first=269 second=248 amount=-1 +kerning first=302 second=380 amount=-1 +kerning first=282 second=220 amount=-1 +kerning first=70 second=196 amount=-1 +kerning first=85 second=274 amount=-1 +kerning first=67 second=209 amount=-1 +kerning first=8250 second=260 amount=-1 +kerning first=114 second=8218 amount=-1 +kerning first=83 second=69 amount=-1 +kerning first=368 second=279 amount=-1 +kerning first=367 second=283 amount=-1 +kerning first=374 second=257 amount=-1 +kerning first=287 second=367 amount=-1 +kerning first=201 second=79 amount=-1 +kerning first=211 second=196 amount=-1 +kerning first=234 second=244 amount=-1 +kerning first=74 second=367 amount=-1 +kerning first=66 second=217 amount=-1 +kerning first=252 second=103 amount=-1 +kerning first=356 second=261 amount=-1 +kerning first=335 second=114 amount=-1 +kerning first=263 second=45 amount=-1 +kerning first=1051 second=1107 amount=-1 +kerning first=207 second=217 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=74 second=252 amount=-1 +kerning first=227 second=114 amount=-1 +kerning first=206 second=344 amount=-1 +kerning first=315 second=217 amount=-1 +kerning first=69 second=67 amount=-1 +kerning first=334 second=205 amount=-1 +kerning first=225 second=8217 amount=-2 +kerning first=1046 second=1063 amount=-1 +kerning first=370 second=205 amount=-1 +kerning first=263 second=114 amount=-1 +kerning first=278 second=344 amount=-1 +kerning first=1043 second=1072 amount=-1 +kerning first=80 second=284 amount=-1 +kerning first=73 second=310 amount=-1 +kerning first=221 second=353 amount=-1 +kerning first=264 second=351 amount=-1 +kerning first=83 second=206 amount=-1 +kerning first=72 second=368 amount=-1 +kerning first=86 second=114 amount=-1 +kerning first=78 second=231 amount=-1 +kerning first=1052 second=1095 amount=-1 +kerning first=99 second=345 amount=-1 +kerning first=85 second=205 amount=-1 +kerning first=197 second=220 amount=-1 +kerning first=368 second=206 amount=-1 +kerning first=367 second=8221 amount=-1 +kerning first=204 second=345 amount=-1 +kerning first=261 second=8250 amount=-1 +kerning first=296 second=206 amount=-1 +kerning first=240 second=345 amount=-1 +kerning first=1036 second=1098 amount=-1 +kerning first=321 second=368 amount=-1 +kerning first=362 second=362 amount=-1 +kerning first=77 second=110 amount=-1 +kerning first=316 second=111 amount=-1 +kerning first=209 second=266 amount=-1 +kerning first=267 second=8221 amount=-2 +kerning first=246 second=106 amount=-1 +kerning first=234 second=281 amount=-1 +kerning first=1053 second=1037 amount=-1 +kerning first=339 second=8221 amount=-2 +kerning first=213 second=368 amount=-1 +kerning first=364 second=71 amount=-1 +kerning first=187 second=214 amount=-1 +kerning first=116 second=353 amount=-1 +kerning first=77 second=362 amount=-1 +kerning first=310 second=223 amount=-1 +kerning first=274 second=223 amount=-1 +kerning first=1031 second=1052 amount=-1 +kerning first=339 second=249 amount=-1 +kerning first=45 second=286 amount=-1 +kerning first=375 second=249 amount=-1 +kerning first=330 second=226 amount=-1 +kerning first=287 second=252 amount=-1 +kerning first=314 second=275 amount=-1 +kerning first=72 second=97 amount=-1 +kerning first=325 second=80 amount=-1 +kerning first=1039 second=1089 amount=-1 +kerning first=366 second=226 amount=-1 +kerning first=101 second=275 amount=-1 +kerning first=218 second=362 amount=-1 +kerning first=310 second=8217 amount=-1 +kerning first=206 second=275 amount=-1 +kerning first=231 second=249 amount=-1 +kerning first=86 second=45 amount=-2 +kerning first=290 second=362 amount=-1 +kerning first=346 second=223 amount=-1 +kerning first=1055 second=1086 amount=-1 +kerning first=267 second=249 amount=-1 +kerning first=122 second=45 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=87 second=243 amount=-1 +kerning first=290 second=217 amount=-1 +kerning first=345 second=224 amount=-1 +kerning first=286 second=327 amount=-1 +kerning first=228 second=243 amount=-1 +kerning first=75 second=45 amount=-1 +kerning first=362 second=217 amount=-1 +kerning first=86 second=97 amount=-1 +kerning first=324 second=45 amount=-1 +kerning first=296 second=353 amount=-1 +kerning first=264 second=243 amount=-1 +kerning first=364 second=249 amount=-1 +kerning first=217 second=71 amount=-1 +kerning first=252 second=45 amount=-1 +kerning first=262 second=344 amount=-1 +kerning first=368 second=353 amount=-1 +kerning first=288 second=45 amount=-1 +kerning first=275 second=275 amount=-1 +kerning first=219 second=68 amount=-1 +kerning first=279 second=252 amount=-1 +kerning first=214 second=80 amount=-1 +kerning first=1056 second=1045 amount=-1 +kerning first=1062 second=1114 amount=-1 +kerning first=1051 second=1062 amount=-1 +kerning first=240 second=267 amount=-1 +kerning first=1049 second=1097 amount=-1 +kerning first=199 second=318 amount=-1 +kerning first=8222 second=67 amount=-1 +kerning first=235 second=318 amount=-1 +kerning first=86 second=336 amount=-1 +kerning first=69 second=370 amount=-1 +kerning first=45 second=310 amount=-1 +kerning first=286 second=80 amount=-1 +kerning first=282 second=223 amount=-1 +kerning first=263 second=97 amount=-1 +kerning first=72 second=116 amount=-1 +kerning first=267 second=234 amount=-1 +kerning first=231 second=234 amount=-1 +kerning first=212 second=88 amount=-1 +kerning first=86 second=257 amount=-1 +kerning first=339 second=234 amount=-1 +kerning first=1065 second=1085 amount=-1 +kerning first=69 second=223 amount=-1 +kerning first=217 second=258 amount=-1 +kerning first=269 second=226 amount=-1 +kerning first=80 second=362 amount=-1 +kerning first=1054 second=1053 amount=-1 +kerning first=262 second=330 amount=-1 +kerning first=1050 second=1076 amount=-1 +kerning first=206 second=266 amount=-1 +kerning first=220 second=249 amount=-1 +kerning first=207 second=235 amount=-1 +kerning first=1118 second=1084 amount=-1 +kerning first=278 second=266 amount=-1 +kerning first=325 second=71 amount=-1 +kerning first=77 second=217 amount=-1 +kerning first=279 second=232 amount=-1 +kerning first=304 second=200 amount=-1 +kerning first=207 second=232 amount=-1 +kerning first=268 second=200 amount=-1 +kerning first=218 second=217 amount=-1 +kerning first=65 second=266 amount=-1 +kerning first=262 second=98 amount=-1 +kerning first=232 second=267 amount=-1 +kerning first=268 second=267 amount=-1 +kerning first=1052 second=1041 amount=-1 +kerning first=1050 second=1096 amount=-1 +kerning first=304 second=267 amount=-1 +kerning first=121 second=98 amount=-1 +kerning first=192 second=213 amount=-1 +kerning first=85 second=345 amount=-1 +kerning first=121 second=345 amount=-1 +kerning first=330 second=241 amount=-1 +kerning first=8250 second=206 amount=-1 +kerning first=1078 second=1089 amount=-1 +kerning first=226 second=345 amount=-1 +kerning first=69 second=323 amount=-1 +kerning first=262 second=345 amount=-1 +kerning first=302 second=302 amount=-1 +kerning first=298 second=345 amount=-1 +kerning first=338 second=302 amount=-1 +kerning first=233 second=46 amount=-1 +kerning first=8250 second=193 amount=-1 +kerning first=370 second=345 amount=-1 +kerning first=266 second=302 amount=-1 +kerning first=310 second=363 amount=-1 +kerning first=1027 second=1080 amount=-1 +kerning first=45 second=241 amount=-1 +kerning first=269 second=46 amount=-1 +kerning first=1067 second=1050 amount=-1 +kerning first=1053 second=1069 amount=-1 +kerning first=356 second=335 amount=-1 +kerning first=249 second=114 amount=-1 +kerning first=1031 second=1050 amount=-1 +kerning first=8218 second=364 amount=-1 +kerning first=210 second=370 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=70 second=336 amount=-1 +kerning first=370 second=200 amount=-1 +kerning first=108 second=114 amount=-1 +kerning first=316 second=378 amount=-1 +kerning first=72 second=114 amount=-1 +kerning first=204 second=81 amount=-1 +kerning first=282 second=323 amount=-1 +kerning first=291 second=250 amount=-1 +kerning first=65 second=199 amount=-1 +kerning first=204 second=207 amount=-1 +kerning first=219 second=250 amount=-1 +kerning first=282 second=370 amount=-1 +kerning first=77 second=284 amount=-1 +kerning first=275 second=115 amount=-1 +kerning first=206 second=199 amount=-1 +kerning first=67 second=378 amount=-1 +kerning first=66 second=72 amount=-1 +kerning first=219 second=216 amount=-1 +kerning first=278 second=199 amount=-1 +kerning first=258 second=44 amount=-1 +kerning first=108 second=314 amount=-1 +kerning first=207 second=72 amount=-1 +kerning first=1031 second=1037 amount=-1 +kerning first=68 second=344 amount=-1 +kerning first=325 second=281 amount=-1 +kerning first=1067 second=1037 amount=-1 +kerning first=209 second=344 amount=-1 +kerning first=1066 second=1071 amount=-1 +kerning first=264 second=310 amount=-1 +kerning first=103 second=378 amount=-1 +kerning first=214 second=327 amount=-1 +kerning first=209 second=110 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=45 second=334 amount=-1 +kerning first=86 second=8222 amount=-2 +kerning first=211 second=282 amount=-1 +kerning first=330 second=334 amount=-1 +kerning first=70 second=282 amount=-1 +kerning first=374 second=232 amount=-1 +kerning first=258 second=334 amount=-1 +kerning first=362 second=230 amount=-1 +kerning first=267 second=45 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=366 second=334 amount=-1 +kerning first=258 second=87 amount=-1 +kerning first=218 second=230 amount=-1 +kerning first=72 second=205 amount=-1 +kerning first=323 second=313 amount=-1 +kerning first=86 second=197 amount=-1 +kerning first=121 second=115 amount=-1 +kerning first=229 second=242 amount=-1 +kerning first=77 second=230 amount=-1 +kerning first=1064 second=1052 amount=-1 +kerning first=81 second=87 amount=-1 +kerning first=226 second=291 amount=-1 +kerning first=45 second=87 amount=-2 +kerning first=201 second=296 amount=-1 +kerning first=121 second=291 amount=-1 +kerning first=252 second=279 amount=-1 +kerning first=356 second=101 amount=-1 +kerning first=206 second=212 amount=-1 +kerning first=339 second=108 amount=-1 +kerning first=375 second=108 amount=-1 +kerning first=194 second=8220 amount=-2 +kerning first=1039 second=1098 amount=-1 +kerning first=1046 second=1117 amount=-1 +kerning first=8217 second=257 amount=-1 +kerning first=65 second=212 amount=-1 +kerning first=324 second=279 amount=-1 +kerning first=82 second=8218 amount=-1 +kerning first=268 second=254 amount=-1 +kerning first=252 second=99 amount=-1 +kerning first=66 second=323 amount=-1 +kerning first=222 second=187 amount=-1 +kerning first=1046 second=1119 amount=-1 +kerning first=81 second=187 amount=-1 +kerning first=307 second=245 amount=-1 +kerning first=99 second=328 amount=-1 +kerning first=225 second=8250 amount=-1 +kerning first=1118 second=1119 amount=-1 +kerning first=271 second=245 amount=-1 +kerning first=225 second=245 amount=-1 +kerning first=235 second=245 amount=-1 +kerning first=366 second=187 amount=-2 +kerning first=199 second=245 amount=-1 +kerning first=230 second=107 amount=-1 +kerning first=242 second=345 amount=-1 +kerning first=81 second=206 amount=-1 +kerning first=324 second=99 amount=-1 +kerning first=224 second=335 amount=-1 +kerning first=118 second=8218 amount=-1 +kerning first=8222 second=254 amount=-1 +kerning first=338 second=8220 amount=-1 +kerning first=269 second=380 amount=-1 +kerning first=203 second=202 amount=-1 +kerning first=266 second=248 amount=-1 +kerning first=230 second=248 amount=-1 +kerning first=260 second=8249 amount=-1 +kerning first=192 second=117 amount=-1 +kerning first=327 second=270 amount=-1 +kerning first=352 second=218 amount=-1 +kerning first=338 second=75 amount=-1 +kerning first=302 second=75 amount=-1 +kerning first=280 second=218 amount=-1 +kerning first=89 second=248 amount=-1 +kerning first=266 second=75 amount=-1 +kerning first=8218 second=305 amount=-1 +kerning first=367 second=231 amount=-1 +kerning first=283 second=357 amount=-1 +kerning first=350 second=201 amount=-1 +kerning first=314 second=242 amount=-1 +kerning first=231 second=307 amount=-1 +kerning first=323 second=66 amount=-1 +kerning first=78 second=270 amount=-1 +kerning first=195 second=307 amount=-1 +kerning first=199 second=264 amount=-1 +kerning first=89 second=8220 amount=-1 +kerning first=1055 second=1073 amount=-1 +kerning first=362 second=171 amount=-2 +kerning first=267 second=307 amount=-1 +kerning first=267 second=108 amount=-1 +kerning first=211 second=209 amount=-1 +kerning first=219 second=270 amount=-1 +kerning first=118 second=367 amount=-1 +kerning first=187 second=202 amount=-1 +kerning first=274 second=362 amount=-1 +kerning first=219 second=196 amount=-1 +kerning first=282 second=69 amount=-1 +kerning first=195 second=108 amount=-1 +kerning first=80 second=74 amount=-1 +kerning first=304 second=205 amount=-1 +kerning first=266 second=8220 amount=-1 +kerning first=233 second=380 amount=-1 +kerning first=231 second=108 amount=-1 +kerning first=74 second=66 amount=-1 +kerning first=70 second=209 amount=-1 +kerning first=230 second=8220 amount=-2 +kerning first=245 second=103 amount=-1 +kerning first=198 second=205 amount=-1 +kerning first=209 second=103 amount=-1 +kerning first=221 second=74 amount=-1 +kerning first=207 second=325 amount=-1 +kerning first=66 second=252 amount=-1 +kerning first=1067 second=1091 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=70 second=334 amount=-1 +kerning first=279 second=8220 amount=-2 +kerning first=1049 second=1030 amount=-1 +kerning first=105 second=269 amount=-1 +kerning first=106 second=279 amount=-1 +kerning first=1052 second=1034 amount=-1 +kerning first=118 second=187 amount=-1 +kerning first=69 second=69 amount=-1 +kerning first=264 second=364 amount=-1 +kerning first=73 second=273 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=200 second=304 amount=-1 +kerning first=67 second=218 amount=-1 +kerning first=121 second=44 amount=-1 +kerning first=204 second=261 amount=-1 +kerning first=334 second=44 amount=-1 +kerning first=246 second=316 amount=-1 +kerning first=325 second=337 amount=-1 +kerning first=368 second=193 amount=-1 +kerning first=302 second=248 amount=-1 +kerning first=87 second=117 amount=-1 +kerning first=74 second=275 amount=-1 +kerning first=354 second=269 amount=-1 +kerning first=374 second=248 amount=-1 +kerning first=1071 second=1048 amount=-1 +kerning first=122 second=171 amount=-1 +kerning first=263 second=365 amount=-1 +kerning first=217 second=216 amount=-1 +kerning first=8222 second=101 amount=-1 +kerning first=368 second=65 amount=-1 +kerning first=1030 second=1101 amount=-1 +kerning first=1048 second=1030 amount=-1 +kerning first=1036 second=1074 amount=-1 +kerning first=263 second=171 amount=-1 +kerning first=1038 second=1088 amount=-1 +kerning first=112 second=8221 amount=-2 +kerning first=86 second=365 amount=-1 +kerning first=289 second=117 amount=-1 +kerning first=274 second=203 amount=-1 +kerning first=1027 second=1079 amount=-1 +kerning first=213 second=260 amount=-1 +kerning first=253 second=117 amount=-1 +kerning first=217 second=117 amount=-1 +kerning first=346 second=203 amount=-1 +kerning first=366 second=100 amount=-1 +kerning first=1057 second=1117 amount=-1 +kerning first=74 second=220 amount=-1 +kerning first=330 second=100 amount=-1 +kerning first=202 second=203 amount=-1 +kerning first=367 second=246 amount=-1 +kerning first=115 second=108 amount=-1 +kerning first=196 second=121 amount=-1 +kerning first=1048 second=1025 amount=-1 +kerning first=366 second=65 amount=-1 +kerning first=86 second=171 amount=-2 +kerning first=68 second=298 amount=-1 +kerning first=290 second=330 amount=-1 +kerning first=352 second=77 amount=-1 +kerning first=103 second=8222 amount=-1 +kerning first=362 second=325 amount=-1 +kerning first=364 second=103 amount=-1 +kerning first=67 second=8222 amount=-1 +kerning first=198 second=251 amount=-1 +kerning first=328 second=103 amount=-1 +kerning first=280 second=77 amount=-1 +kerning first=8216 second=364 amount=-1 +kerning first=234 second=251 amount=-1 +kerning first=364 second=325 amount=-1 +kerning first=280 second=304 amount=-1 +kerning first=220 second=103 amount=-1 +kerning first=291 second=324 amount=-1 +kerning first=212 second=317 amount=-1 +kerning first=218 second=330 amount=-1 +kerning first=282 second=75 amount=-1 +kerning first=235 second=277 amount=-1 +kerning first=115 second=103 amount=-1 +kerning first=323 second=220 amount=-1 +kerning first=67 second=304 amount=-1 +kerning first=267 second=369 amount=-1 +kerning first=291 second=109 amount=-1 +kerning first=221 second=227 amount=-1 +kerning first=356 second=281 amount=-1 +kerning first=324 second=333 amount=-1 +kerning first=1041 second=1091 amount=-1 +kerning first=327 second=109 amount=-1 +kerning first=70 second=68 amount=-1 +kerning first=1048 second=1092 amount=-1 +kerning first=344 second=211 amount=-1 +kerning first=219 second=109 amount=-1 +kerning first=211 second=68 amount=-1 +kerning first=352 second=8222 amount=-1 +kerning first=252 second=333 amount=-1 +kerning first=257 second=316 amount=-1 +kerning first=362 second=205 amount=-1 +kerning first=1060 second=1048 amount=-1 +kerning first=280 second=8222 amount=-1 +kerning first=8222 second=113 amount=-1 +kerning first=204 second=382 amount=-1 +kerning first=244 second=8222 amount=-1 +kerning first=1047 second=1064 amount=-1 +kerning first=200 second=211 amount=-1 +kerning first=240 second=382 amount=-1 +kerning first=289 second=112 amount=-1 +kerning first=325 second=323 amount=-1 +kerning first=199 second=210 amount=-1 +kerning first=1049 second=1024 amount=-1 +kerning first=204 second=315 amount=-1 +kerning first=281 second=251 amount=-1 +kerning first=233 second=339 amount=-1 +kerning first=214 second=221 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=266 second=229 amount=-1 +kerning first=368 second=245 amount=-1 +kerning first=117 second=233 amount=-1 +kerning first=218 second=111 amount=-1 +kerning first=296 second=245 amount=-1 +kerning first=78 second=109 amount=-1 +kerning first=1039 second=1057 amount=-1 +kerning first=84 second=44 amount=-1 +kerning first=8222 second=213 amount=-1 +kerning first=287 second=120 amount=-1 +kerning first=305 second=339 amount=-1 +kerning first=82 second=290 amount=-1 +kerning first=214 second=219 amount=-1 +kerning first=269 second=339 amount=-1 +kerning first=73 second=219 amount=-1 +kerning first=330 second=233 amount=-1 +kerning first=8218 second=71 amount=-1 +kerning first=1058 second=1118 amount=-1 +kerning first=366 second=233 amount=-1 +kerning first=65 second=374 amount=-1 +kerning first=201 second=332 amount=-1 +kerning first=209 second=298 amount=-1 +kerning first=84 second=224 amount=-1 +kerning first=325 second=212 amount=-1 +kerning first=117 second=277 amount=-1 +kerning first=224 second=8217 amount=-2 +kerning first=364 second=283 amount=-1 +kerning first=1056 second=1104 amount=-1 +kerning first=260 second=8217 amount=-2 +kerning first=8222 second=121 amount=-1 +kerning first=355 second=228 amount=-1 +kerning first=352 second=369 amount=-1 +kerning first=281 second=357 amount=-1 +kerning first=283 second=8217 amount=-2 +kerning first=217 second=212 amount=-1 +kerning first=83 second=8217 amount=-1 +kerning first=352 second=85 amount=-1 +kerning first=325 second=101 amount=-1 +kerning first=8250 second=65 amount=-1 +kerning first=224 second=245 amount=-1 +kerning first=326 second=111 amount=-1 +kerning first=280 second=85 amount=-1 +kerning first=362 second=111 amount=-1 +kerning first=1051 second=1054 amount=-1 +kerning first=332 second=8217 amount=-2 +kerning first=368 second=8217 amount=-1 +kerning first=199 second=331 amount=-1 +kerning first=67 second=85 amount=-1 +kerning first=230 second=289 amount=-1 +kerning first=89 second=216 amount=-1 +kerning first=304 second=67 amount=-1 +kerning first=70 second=241 amount=-1 +kerning first=1051 second=1075 amount=-1 +kerning first=194 second=216 amount=-1 +kerning first=77 second=209 amount=-1 +kerning first=350 second=366 amount=-1 +kerning first=221 second=262 amount=-1 +kerning first=268 second=67 amount=-1 +kerning first=220 second=195 amount=-1 +kerning first=74 second=274 amount=-1 +kerning first=266 second=216 amount=-1 +kerning first=232 second=113 amount=-1 +kerning first=298 second=79 amount=-1 +kerning first=1041 second=1049 amount=-1 +kerning first=8222 second=286 amount=-1 +kerning first=278 second=366 amount=-1 +kerning first=268 second=113 amount=-1 +kerning first=196 second=67 amount=-1 +kerning first=70 second=216 amount=-1 +kerning first=370 second=79 amount=-1 +kerning first=79 second=195 amount=-1 +kerning first=302 second=216 amount=-1 +kerning first=364 second=195 amount=-1 +kerning first=1041 second=1113 amount=-1 +kerning first=235 second=104 amount=-1 +kerning first=263 second=225 amount=-1 +kerning first=8217 second=365 amount=-1 +kerning first=72 second=206 amount=-1 +kerning first=280 second=250 amount=-1 +kerning first=1069 second=1071 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=221 second=261 amount=-1 +kerning first=199 second=104 amount=-1 +kerning first=209 second=357 amount=-1 +kerning first=70 second=70 amount=-1 +kerning first=8218 second=257 amount=-1 +kerning first=251 second=345 amount=-1 +kerning first=1048 second=1084 amount=-1 +kerning first=287 second=345 amount=-1 +kerning first=365 second=335 amount=-1 +kerning first=323 second=274 amount=-1 +kerning first=323 second=345 amount=-1 +kerning first=258 second=46 amount=-1 +kerning first=352 second=250 amount=-1 +kerning first=222 second=46 amount=-1 +kerning first=202 second=368 amount=-1 +kerning first=346 second=201 amount=-1 +kerning first=283 second=122 amount=-1 +kerning first=77 second=271 amount=-1 +kerning first=79 second=8221 amount=-2 +kerning first=274 second=368 amount=-1 +kerning first=304 second=213 amount=-1 +kerning first=323 second=207 amount=-1 +kerning first=245 second=46 amount=-1 +kerning first=274 second=201 amount=-1 +kerning first=310 second=368 amount=-1 +kerning first=268 second=213 amount=-1 +kerning first=277 second=107 amount=-1 +kerning first=8222 second=281 amount=-1 +kerning first=70 second=122 amount=-1 +kerning first=202 second=201 amount=-1 +kerning first=103 second=250 amount=-1 +kerning first=99 second=369 amount=-1 +kerning first=256 second=8221 amount=-2 +kerning first=103 second=275 amount=-1 +kerning first=263 second=311 amount=-1 +kerning first=209 second=187 amount=-1 +kerning first=328 second=8221 amount=-2 +kerning first=269 second=326 amount=-1 +kerning first=217 second=204 amount=-1 +kerning first=203 second=252 amount=-1 +kerning first=364 second=8221 amount=-1 +kerning first=374 second=216 amount=-1 +kerning first=198 second=8217 amount=-1 +kerning first=323 second=45 amount=-1 +kerning first=344 second=336 amount=-1 +kerning first=202 second=116 amount=-1 +kerning first=362 second=271 amount=-1 +kerning first=346 second=368 amount=-1 +kerning first=74 second=207 amount=-1 +kerning first=327 second=378 amount=-1 +kerning first=1054 second=1041 amount=-1 +kerning first=325 second=204 amount=-1 +kerning first=291 second=378 amount=-1 +kerning first=80 second=262 amount=-1 +kerning first=362 second=198 amount=-1 +kerning first=87 second=8218 amount=-2 +kerning first=220 second=268 amount=-1 +kerning first=1068 second=1068 amount=-1 +kerning first=187 second=86 amount=-2 +kerning first=89 second=235 amount=-1 +kerning first=339 second=103 amount=-1 +kerning first=323 second=347 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=364 second=268 amount=-1 +kerning first=230 second=235 amount=-1 +kerning first=287 second=347 amount=-1 +kerning first=266 second=235 amount=-1 +kerning first=302 second=235 amount=-1 +kerning first=209 second=290 amount=-1 +kerning first=67 second=77 amount=-1 +kerning first=74 second=347 amount=-1 +kerning first=262 second=350 amount=-1 +kerning first=374 second=235 amount=-1 +kerning first=218 second=198 amount=-1 +kerning first=1060 second=1056 amount=-1 +kerning first=196 second=213 amount=-1 +kerning first=281 second=245 amount=-1 +kerning first=85 second=350 amount=-1 +kerning first=1065 second=1077 amount=-1 +kerning first=86 second=363 amount=-1 +kerning first=199 second=277 amount=-1 +kerning first=1058 second=1073 amount=-1 +kerning first=8217 second=225 amount=-1 +kerning first=8217 second=378 amount=-1 +kerning first=263 second=363 amount=-1 +kerning first=362 second=213 amount=-1 +kerning first=1033 second=1062 amount=-1 +kerning first=298 second=350 amount=-1 +kerning first=307 second=277 amount=-1 +kerning first=271 second=277 amount=-1 +kerning first=362 second=366 amount=-1 +kerning first=1118 second=1087 amount=-1 +kerning first=67 second=231 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=104 second=244 amount=-1 +kerning first=362 second=338 amount=-1 +kerning first=209 second=244 amount=-1 +kerning first=8222 second=267 amount=-1 +kerning first=356 second=283 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=281 second=244 amount=-1 +kerning first=210 second=82 amount=-1 +kerning first=316 second=231 amount=-1 +kerning first=268 second=286 amount=-1 +kerning first=218 second=338 amount=-1 +kerning first=212 second=354 amount=-1 +kerning first=304 second=286 amount=-1 +kerning first=87 second=351 amount=-1 +kerning first=282 second=82 amount=-1 +kerning first=307 second=8249 amount=-1 +kerning first=8222 second=289 amount=-1 +kerning first=258 second=8249 amount=-1 +kerning first=100 second=235 amount=-1 +kerning first=204 second=79 amount=-1 +kerning first=85 second=66 amount=-1 +kerning first=370 second=283 amount=-1 +kerning first=81 second=209 amount=-1 +kerning first=205 second=235 amount=-1 +kerning first=45 second=209 amount=-1 +kerning first=78 second=248 amount=-1 +kerning first=304 second=366 amount=-1 +kerning first=298 second=283 amount=-1 +kerning first=277 second=235 amount=-1 +kerning first=70 second=371 amount=-1 +kerning first=325 second=331 amount=-1 +kerning first=74 second=261 amount=-1 +kerning first=226 second=283 amount=-1 +kerning first=262 second=283 amount=-1 +kerning first=1039 second=1076 amount=-1 +kerning first=1042 second=1067 amount=-1 +kerning first=1038 second=1080 amount=-1 +kerning first=103 second=380 amount=-1 +kerning first=244 second=380 amount=-1 +kerning first=45 second=374 amount=-2 +kerning first=1062 second=1076 amount=-1 +kerning first=370 second=66 amount=-1 +kerning first=366 second=209 amount=-1 +kerning first=334 second=66 amount=-1 +kerning first=73 second=46 amount=-1 +kerning first=80 second=213 amount=-1 +kerning first=330 second=209 amount=-1 +kerning first=298 second=66 amount=-1 +kerning first=262 second=66 amount=-1 +kerning first=266 second=270 amount=-1 +kerning first=302 second=270 amount=-1 +kerning first=258 second=336 amount=-1 +kerning first=199 second=323 amount=-1 +kerning first=287 second=242 amount=-1 +kerning first=287 second=44 amount=-1 +kerning first=218 second=252 amount=-1 +kerning first=330 second=336 amount=-1 +kerning first=68 second=192 amount=-1 +kerning first=366 second=336 amount=-1 +kerning first=1067 second=1045 amount=-1 +kerning first=1031 second=1045 amount=-1 +kerning first=67 second=380 amount=-1 +kerning first=362 second=252 amount=-1 +kerning first=286 second=220 amount=-1 +kerning first=116 second=187 amount=-1 +kerning first=187 second=205 amount=-1 +kerning first=220 second=244 amount=-1 +kerning first=305 second=231 amount=-1 +kerning first=296 second=201 amount=-1 +kerning first=327 second=218 amount=-1 +kerning first=363 second=248 amount=-1 +kerning first=220 second=214 amount=-1 +kerning first=366 second=371 amount=-1 +kerning first=212 second=115 amount=-1 +kerning first=258 second=290 amount=-1 +kerning first=375 second=104 amount=-1 +kerning first=328 second=244 amount=-1 +kerning first=1041 second=1071 amount=-1 +kerning first=1042 second=1039 amount=-1 +kerning first=364 second=244 amount=-1 +kerning first=1055 second=1045 amount=-1 +kerning first=219 second=218 amount=-1 +kerning first=219 second=248 amount=-1 +kerning first=364 second=214 amount=-1 +kerning first=233 second=231 amount=-1 +kerning first=1055 second=1083 amount=-1 +kerning first=291 second=248 amount=-1 +kerning first=269 second=231 amount=-1 +kerning first=83 second=201 amount=-1 +kerning first=1041 second=1041 amount=-1 +kerning first=97 second=314 amount=-1 +kerning first=255 second=353 amount=-1 +kerning first=228 second=275 amount=-1 +kerning first=275 second=243 amount=-1 +kerning first=235 second=353 amount=-1 +kerning first=1066 second=1049 amount=-1 +kerning first=221 second=8220 amount=-1 +kerning first=307 second=279 amount=-1 +kerning first=264 second=275 amount=-1 +kerning first=74 second=68 amount=-1 +kerning first=241 second=45 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=1055 second=1081 amount=-1 +kerning first=100 second=45 amount=-1 +kerning first=1091 second=1081 amount=-1 +kerning first=281 second=249 amount=-1 +kerning first=87 second=275 amount=-1 +kerning first=85 second=302 amount=-1 +kerning first=108 second=363 amount=-1 +kerning first=207 second=284 amount=-1 +kerning first=1042 second=1119 amount=-1 +kerning first=199 second=353 amount=-1 +kerning first=80 second=370 amount=-1 +kerning first=199 second=223 amount=-1 +kerning first=203 second=80 amount=-1 +kerning first=267 second=347 amount=-1 +kerning first=74 second=116 amount=-1 +kerning first=268 second=232 amount=-1 +kerning first=345 second=44 amount=-1 +kerning first=1050 second=1098 amount=-1 +kerning first=232 second=232 amount=-1 +kerning first=196 second=362 amount=-1 +kerning first=207 second=200 amount=-1 +kerning first=268 second=362 amount=-1 +kerning first=86 second=225 amount=-1 +kerning first=67 second=226 amount=-1 +kerning first=195 second=266 amount=-1 +kerning first=66 second=200 amount=-1 +kerning first=286 second=8250 amount=-1 +kerning first=304 second=232 amount=-1 +kerning first=304 second=362 amount=-1 +kerning first=85 second=296 amount=-1 +kerning first=101 second=234 amount=-1 +kerning first=278 second=71 amount=-1 +kerning first=278 second=209 amount=-1 +kerning first=8222 second=262 amount=-1 +kerning first=334 second=296 amount=-1 +kerning first=327 second=71 amount=-1 +kerning first=8217 second=279 amount=-1 +kerning first=1054 second=1031 amount=-1 +kerning first=75 second=223 amount=-1 +kerning first=230 second=318 amount=-1 +kerning first=206 second=71 amount=-1 +kerning first=298 second=296 amount=-1 +kerning first=85 second=283 amount=-1 +kerning first=262 second=296 amount=-1 +kerning first=314 second=234 amount=-1 +kerning first=74 second=219 amount=-1 +kerning first=201 second=206 amount=-1 +kerning first=1056 second=1037 amount=-1 +kerning first=219 second=8220 amount=-1 +kerning first=268 second=72 amount=-1 +kerning first=1043 second=1089 amount=-1 +kerning first=323 second=315 amount=-1 +kerning first=106 second=287 amount=-1 +kerning first=212 second=313 amount=-1 +kerning first=291 second=8220 amount=-2 +kerning first=229 second=111 amount=-1 +kerning first=116 second=267 amount=-1 +kerning first=355 second=287 amount=-1 +kerning first=279 second=254 amount=-1 +kerning first=194 second=213 amount=-1 +kerning first=327 second=8220 amount=-1 +kerning first=304 second=72 amount=-1 +kerning first=283 second=287 amount=-1 +kerning first=334 second=88 amount=-1 +kerning first=1060 second=1024 amount=-1 +kerning first=202 second=298 amount=-1 +kerning first=71 second=313 amount=-1 +kerning first=74 second=315 amount=-1 +kerning first=262 second=120 amount=-1 +kerning first=213 second=85 amount=-1 +kerning first=365 second=267 amount=-1 +kerning first=330 second=263 amount=-1 +kerning first=366 second=263 amount=-1 +kerning first=370 second=120 amount=-1 +kerning first=1059 second=1028 amount=-1 +kerning first=214 second=278 amount=-1 +kerning first=187 second=118 amount=-1 +kerning first=221 second=267 amount=-1 +kerning first=296 second=114 amount=-1 +kerning first=1047 second=1083 amount=-1 +kerning first=217 second=278 amount=-1 +kerning first=195 second=212 amount=-1 +kerning first=114 second=8220 amount=-1 +kerning first=73 second=278 amount=-1 +kerning first=72 second=334 amount=-1 +kerning first=88 second=81 amount=-1 +kerning first=119 second=114 amount=-1 +kerning first=354 second=45 amount=-1 +kerning first=264 second=115 amount=-1 +kerning first=286 second=278 amount=-1 +kerning first=1062 second=1092 amount=-1 +kerning first=224 second=114 amount=-1 +kerning first=296 second=331 amount=-1 +kerning first=255 second=367 amount=-1 +kerning first=217 second=199 amount=-1 +kerning first=117 second=263 amount=-1 +kerning first=368 second=331 amount=-1 +kerning first=87 second=115 amount=-1 +kerning first=83 second=114 amount=-1 +kerning first=193 second=81 amount=-1 +kerning first=219 second=194 amount=-1 +kerning first=325 second=199 amount=-1 +kerning first=1062 second=1116 amount=-1 +kerning first=368 second=363 amount=-1 +kerning first=277 second=365 amount=-1 +kerning first=354 second=74 amount=-1 +kerning first=325 second=310 amount=-1 +kerning first=65 second=361 amount=-1 +kerning first=1042 second=1095 amount=-1 +kerning first=108 second=106 amount=-1 +kerning first=288 second=203 amount=-1 +kerning first=217 second=310 amount=-1 +kerning first=350 second=361 amount=-1 +kerning first=364 second=251 amount=-1 +kerning first=235 second=269 amount=-1 +kerning first=271 second=269 amount=-1 +kerning first=83 second=8221 amount=-1 +kerning first=206 second=288 amount=-1 +kerning first=1052 second=1036 amount=-1 +kerning first=213 second=65 amount=-1 +kerning first=197 second=334 amount=-1 +kerning first=366 second=282 amount=-1 +kerning first=330 second=282 amount=-1 +kerning first=200 second=78 amount=-1 +kerning first=207 second=230 amount=-1 +kerning first=259 second=246 amount=-1 +kerning first=278 second=288 amount=-1 +kerning first=310 second=355 amount=-1 +kerning first=1059 second=1101 amount=-1 +kerning first=1060 second=1043 amount=-1 +kerning first=203 second=284 amount=-1 +kerning first=77 second=325 amount=-1 +kerning first=1068 second=1055 amount=-1 +kerning first=81 second=282 amount=-1 +kerning first=246 second=318 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=263 second=187 amount=-1 +kerning first=199 second=75 amount=-1 +kerning first=8217 second=333 amount=-1 +kerning first=205 second=346 amount=-1 +kerning first=65 second=288 amount=-1 +kerning first=197 second=87 amount=-1 +kerning first=290 second=325 amount=-1 +kerning first=267 second=291 amount=-1 +kerning first=315 second=220 amount=-1 +kerning first=226 second=337 amount=-1 +kerning first=355 second=187 amount=-1 +kerning first=118 second=251 amount=-1 +kerning first=1055 second=1051 amount=-1 +kerning first=187 second=251 amount=-1 +kerning first=251 second=287 amount=-1 +kerning first=263 second=279 amount=-1 +kerning first=283 second=187 amount=-1 +kerning first=105 second=245 amount=-1 +kerning first=85 second=337 amount=-1 +kerning first=246 second=8217 amount=-2 +kerning first=282 second=8217 amount=-1 +kerning first=354 second=8217 amount=-1 +kerning first=250 second=171 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=8222 second=232 amount=-1 +kerning first=67 second=99 amount=-1 +kerning first=192 second=221 amount=-1 +kerning first=205 second=75 amount=-1 +kerning first=277 second=99 amount=-1 +kerning first=211 second=187 amount=-1 +kerning first=354 second=245 amount=-1 +kerning first=1071 second=1119 amount=-1 +kerning first=227 second=279 amount=-1 +kerning first=45 second=68 amount=-1 +kerning first=298 second=337 amount=-1 +kerning first=205 second=99 amount=-1 +kerning first=106 second=187 amount=-1 +kerning first=262 second=337 amount=-1 +kerning first=241 second=99 amount=-1 +kerning first=364 second=261 amount=-1 +kerning first=262 second=242 amount=-1 +kerning first=364 second=73 amount=-1 +kerning first=1071 second=1043 amount=-1 +kerning first=1070 second=1043 amount=-1 +kerning first=298 second=242 amount=-1 +kerning first=302 second=99 amount=-1 +kerning first=1059 second=1082 amount=-1 +kerning first=209 second=281 amount=-1 +kerning first=270 second=86 amount=-1 +kerning first=259 second=281 amount=-1 +kerning first=226 second=242 amount=-1 +kerning first=204 second=347 amount=-1 +kerning first=367 second=281 amount=-1 +kerning first=261 second=382 amount=-1 +kerning first=99 second=347 amount=-1 +kerning first=370 second=242 amount=-1 +kerning first=209 second=268 amount=-1 +kerning first=374 second=99 amount=-1 +kerning first=106 second=233 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=220 second=120 amount=-1 +kerning first=264 second=202 amount=-1 +kerning first=219 second=77 amount=-1 +kerning first=296 second=277 amount=-1 +kerning first=78 second=77 amount=-1 +kerning first=8218 second=199 amount=-1 +kerning first=282 second=264 amount=-1 +kerning first=70 second=233 amount=-1 +kerning first=224 second=277 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=283 second=233 amount=-1 +kerning first=220 second=73 amount=-1 +kerning first=1049 second=1056 amount=-1 +kerning first=368 second=277 amount=-1 +kerning first=69 second=264 amount=-1 +kerning first=271 second=8217 amount=-1 +kerning first=199 second=82 amount=-1 +kerning first=307 second=8217 amount=-1 +kerning first=355 second=233 amount=-1 +kerning first=325 second=364 amount=-1 +kerning first=213 second=193 amount=-1 +kerning first=379 second=8217 amount=-1 +kerning first=73 second=224 amount=-1 +kerning first=281 second=108 amount=-1 +kerning first=220 second=290 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=217 second=364 amount=-1 +kerning first=8250 second=114 amount=-1 +kerning first=199 second=8217 amount=-1 +kerning first=252 second=283 amount=-1 +kerning first=235 second=8217 amount=-2 +kerning first=1056 second=1091 amount=-1 +kerning first=245 second=108 amount=-1 +kerning first=207 second=338 amount=-1 +kerning first=202 second=355 amount=-1 +kerning first=195 second=255 amount=-1 +kerning first=1042 second=1113 amount=-1 +kerning first=353 second=108 amount=-1 +kerning first=1047 second=1061 amount=-1 +kerning first=67 second=334 amount=-1 +kerning first=84 second=273 amount=-1 +kerning first=80 second=286 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=211 second=347 amount=-1 +kerning first=275 second=351 amount=-1 +kerning first=272 second=78 amount=-1 +kerning first=364 second=8220 amount=-1 +kerning first=1064 second=1070 amount=-1 +kerning first=221 second=286 amount=-1 +kerning first=213 second=87 amount=-1 +kerning first=310 second=171 amount=-1 +kerning first=86 second=333 amount=-1 +kerning first=263 second=112 amount=-1 +kerning first=346 second=171 amount=-1 +kerning first=1030 second=1095 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=382 second=171 amount=-1 +kerning first=289 second=307 amount=-1 +kerning first=263 second=333 amount=-1 +kerning first=196 second=254 amount=-1 +kerning first=66 second=71 amount=-1 +kerning first=232 second=254 amount=-1 +kerning first=252 second=269 amount=-1 +kerning first=227 second=333 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=106 second=263 amount=-1 +kerning first=350 second=117 amount=-1 +kerning first=314 second=117 amount=-1 +kerning first=195 second=374 amount=-1 +kerning first=1071 second=1100 amount=-1 +kerning first=79 second=298 amount=-1 +kerning first=278 second=117 amount=-1 +kerning first=1070 second=1067 amount=-1 +kerning first=97 second=171 amount=-1 +kerning first=1058 second=1083 amount=-1 +kerning first=283 second=100 amount=-1 +kerning first=278 second=212 amount=-1 +kerning first=283 second=263 amount=-1 +kerning first=202 second=171 amount=-1 +kerning first=1052 second=1039 amount=-1 +kerning first=355 second=263 amount=-1 +kerning first=1071 second=1117 amount=-1 +kerning first=274 second=171 amount=-1 +kerning first=345 second=229 amount=-1 +kerning first=1047 second=1118 amount=-1 +kerning first=274 second=206 amount=-1 +kerning first=45 second=82 amount=-1 +kerning first=229 second=382 amount=-1 +kerning first=202 second=206 amount=-1 +kerning first=207 second=330 amount=-1 +kerning first=79 second=353 amount=-1 +kerning first=232 second=316 amount=-1 +kerning first=234 second=246 amount=-1 +kerning first=327 second=77 amount=-1 +kerning first=70 second=100 amount=-1 +kerning first=375 second=103 amount=-1 +kerning first=1048 second=1060 amount=-1 +kerning first=196 second=316 amount=-1 +kerning first=121 second=120 amount=-1 +kerning first=1071 second=1077 amount=-1 +kerning first=68 second=8221 amount=-2 +kerning first=66 second=330 amount=-1 +kerning first=268 second=316 amount=-1 +kerning first=70 second=263 amount=-1 +kerning first=346 second=206 amount=-1 +kerning first=104 second=8221 amount=-2 +kerning first=267 second=103 amount=-1 +kerning first=103 second=109 amount=-1 +kerning first=1049 second=1048 amount=-1 +kerning first=234 second=8218 amount=-1 +kerning first=89 second=194 amount=-1 +kerning first=231 second=103 amount=-1 +kerning first=198 second=8218 amount=-1 +kerning first=209 second=8221 amount=-1 +kerning first=304 second=74 amount=-1 +kerning first=366 second=68 amount=-1 +kerning first=245 second=8221 amount=-2 +kerning first=67 second=109 amount=-1 +kerning first=241 second=113 amount=-1 +kerning first=193 second=217 amount=-1 +kerning first=281 second=8221 amount=-2 +kerning first=284 second=313 amount=-1 +kerning first=81 second=68 amount=-1 +kerning first=353 second=8221 amount=-2 +kerning first=270 second=8218 amount=-1 +kerning first=364 second=205 amount=-1 +kerning first=219 second=85 amount=-1 +kerning first=296 second=223 amount=-1 +kerning first=74 second=98 amount=-1 +kerning first=67 second=280 amount=-1 +kerning first=282 second=210 amount=-1 +kerning first=103 second=326 amount=-1 +kerning first=78 second=85 amount=-1 +kerning first=350 second=8250 amount=-1 +kerning first=1064 second=1057 amount=-1 +kerning first=205 second=66 amount=-1 +kerning first=287 second=98 amount=-1 +kerning first=327 second=302 amount=-1 +kerning first=1044 second=1081 amount=-1 +kerning first=219 second=302 amount=-1 +kerning first=69 second=210 amount=-1 +kerning first=368 second=223 amount=-1 +kerning first=330 second=339 amount=-1 +kerning first=73 second=243 amount=-1 +kerning first=259 second=335 amount=-1 +kerning first=355 second=99 amount=-1 +kerning first=280 second=280 amount=-1 +kerning first=365 second=232 amount=-1 +kerning first=74 second=350 amount=-1 +kerning first=78 second=302 amount=-1 +kerning first=366 second=339 amount=-1 +kerning first=194 second=107 amount=-1 +kerning first=109 second=243 amount=-1 +kerning first=250 second=243 amount=-1 +kerning first=117 second=339 amount=-1 +kerning first=367 second=335 amount=-1 +kerning first=83 second=223 amount=-1 +kerning first=1056 second=1055 amount=-1 +kerning first=8222 second=316 amount=-1 +kerning first=274 second=363 amount=-1 +kerning first=323 second=350 amount=-1 +kerning first=66 second=284 amount=-1 +kerning first=80 second=232 amount=-1 +kerning first=364 second=344 amount=-1 +kerning first=346 second=363 amount=-1 +kerning first=364 second=298 amount=-1 +kerning first=296 second=355 amount=-1 +kerning first=368 second=8249 amount=-2 +kerning first=198 second=357 amount=-1 +kerning first=332 second=46 amount=-1 +kerning first=257 second=232 amount=-1 +kerning first=204 second=76 amount=-1 +kerning first=221 second=232 amount=-1 +kerning first=1065 second=1072 amount=-1 +kerning first=100 second=289 amount=-1 +kerning first=234 second=357 amount=-1 +kerning first=352 second=323 amount=-1 +kerning first=79 second=344 amount=-1 +kerning first=217 second=234 amount=-1 +kerning first=1050 second=1114 amount=-1 +kerning first=1055 second=1027 amount=-1 +kerning first=325 second=234 amount=-1 +kerning first=277 second=289 amount=-1 +kerning first=187 second=354 amount=-1 +kerning first=289 second=234 amount=-1 +kerning first=241 second=289 amount=-1 +kerning first=1049 second=1054 amount=-1 +kerning first=83 second=8249 amount=-1 +kerning first=327 second=85 amount=-1 +kerning first=119 second=8249 amount=-1 +kerning first=1053 second=1108 amount=-1 +kerning first=304 second=262 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=202 second=280 amount=-1 +kerning first=350 second=204 amount=-1 +kerning first=323 second=79 amount=-1 +kerning first=205 second=216 amount=-1 +kerning first=8250 second=377 amount=-1 +kerning first=195 second=366 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=278 second=204 amount=-1 +kerning first=355 second=113 amount=-1 +kerning first=283 second=46 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=279 second=113 amount=-1 +kerning first=89 second=378 amount=-1 +kerning first=207 second=67 amount=-1 +kerning first=1073 second=1084 amount=-1 +kerning first=296 second=345 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=200 second=70 amount=-1 +kerning first=220 second=102 amount=-1 +kerning first=270 second=192 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=269 second=250 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=233 second=250 amount=-1 +kerning first=1056 second=1065 amount=-1 +kerning first=204 second=274 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=211 second=317 amount=-1 +kerning first=366 second=122 amount=-1 +kerning first=370 second=207 amount=-1 +kerning first=83 second=323 amount=-1 +kerning first=221 second=213 amount=-1 +kerning first=334 second=207 amount=-1 +kerning first=74 second=369 amount=-1 +kerning first=8250 second=106 amount=-1 +kerning first=330 second=122 amount=-1 +kerning first=272 second=70 amount=-1 +kerning first=1088 second=1093 amount=-1 +kerning first=287 second=369 amount=-1 +kerning first=291 second=108 amount=-1 +kerning first=8217 second=368 amount=-1 +kerning first=213 second=201 amount=-1 +kerning first=356 second=259 amount=-1 +kerning first=200 second=8217 amount=-1 +kerning first=207 second=113 amount=-1 +kerning first=305 second=8222 amount=-1 +kerning first=87 second=256 amount=-1 +kerning first=302 second=378 amount=-1 +kerning first=368 second=323 amount=-1 +kerning first=1066 second=1041 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=233 second=8222 amount=-1 +kerning first=1030 second=1041 amount=-1 +kerning first=72 second=201 amount=-1 +kerning first=85 second=207 amount=-1 +kerning first=230 second=378 amount=-1 +kerning first=296 second=323 amount=-1 +kerning first=104 second=231 amount=-1 +kerning first=8220 second=194 amount=-2 +kerning first=8222 second=362 amount=-1 +kerning first=70 second=317 amount=-1 +kerning first=206 second=204 amount=-1 +kerning first=298 second=207 amount=-1 +kerning first=310 second=119 amount=-1 +kerning first=196 second=262 amount=-1 +kerning first=262 second=207 amount=-1 +kerning first=374 second=378 amount=-1 +kerning first=263 second=314 amount=-1 +kerning first=197 second=284 amount=-1 +kerning first=227 second=314 amount=-1 +kerning first=234 second=369 amount=-1 +kerning first=1039 second=1081 amount=-1 +kerning first=366 second=111 amount=-1 +kerning first=198 second=369 amount=-1 +kerning first=362 second=355 amount=-1 +kerning first=67 second=201 amount=-1 +kerning first=70 second=366 amount=-1 +kerning first=368 second=116 amount=-1 +kerning first=366 second=204 amount=-1 +kerning first=80 second=198 amount=-1 +kerning first=1058 second=1105 amount=-1 +kerning first=335 second=314 amount=-1 +kerning first=1053 second=1084 amount=-1 +kerning first=330 second=204 amount=-1 +kerning first=221 second=198 amount=-1 +kerning first=296 second=116 amount=-1 +kerning first=197 second=363 amount=-1 +kerning first=73 second=317 amount=-1 +kerning first=268 second=210 amount=-1 +kerning first=233 second=363 amount=-1 +kerning first=68 second=207 amount=-1 +kerning first=304 second=210 amount=-1 +kerning first=366 second=378 amount=-1 +kerning first=269 second=363 amount=-1 +kerning first=209 second=207 amount=-1 +kerning first=196 second=210 amount=-1 +kerning first=325 second=268 amount=-1 +kerning first=214 second=317 amount=-1 +kerning first=1088 second=1078 amount=-1 +kerning first=286 second=317 amount=-1 +kerning first=211 second=366 amount=-1 +kerning first=86 second=67 amount=-1 +kerning first=85 second=101 amount=-1 +kerning first=69 second=213 amount=-1 +kerning first=347 second=8250 amount=-1 +kerning first=264 second=73 amount=-1 +kerning first=364 second=219 amount=-1 +kerning first=84 second=8220 amount=-1 +kerning first=275 second=8250 amount=-1 +kerning first=282 second=213 amount=-1 +kerning first=262 second=101 amount=-1 +kerning first=74 second=296 amount=-1 +kerning first=226 second=101 amount=-1 +kerning first=120 second=8220 amount=-1 +kerning first=203 second=8250 amount=-1 +kerning first=1062 second=1081 amount=-1 +kerning first=217 second=268 amount=-1 +kerning first=8216 second=362 amount=-1 +kerning first=220 second=219 amount=-1 +kerning first=317 second=354 amount=-1 +kerning first=268 second=298 amount=-1 +kerning first=298 second=101 amount=-1 +kerning first=225 second=8220 amount=-2 +kerning first=277 second=277 amount=-1 +kerning first=370 second=101 amount=-1 +kerning first=241 second=277 amount=-1 +kerning first=225 second=122 amount=-1 +kerning first=205 second=277 amount=-1 +kerning first=232 second=318 amount=-1 +kerning first=79 second=219 amount=-1 +kerning first=261 second=122 amount=-1 +kerning first=8222 second=264 amount=-1 +kerning first=81 second=204 amount=-1 +kerning first=45 second=204 amount=-1 +kerning first=80 second=345 amount=-1 +kerning first=323 second=296 amount=-1 +kerning first=1051 second=1072 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=207 second=273 amount=-1 +kerning first=88 second=79 amount=-1 +kerning first=324 second=235 amount=-1 +kerning first=227 second=287 amount=-1 +kerning first=100 second=277 amount=-1 +kerning first=206 second=283 amount=-1 +kerning first=366 second=231 amount=-1 +kerning first=101 second=283 amount=-1 +kerning first=72 second=338 amount=-1 +kerning first=333 second=8220 amount=-2 +kerning first=193 second=286 amount=-1 +kerning first=335 second=287 amount=-1 +kerning first=87 second=226 amount=-1 +kerning first=73 second=83 amount=-1 +kerning first=1039 second=1108 amount=-1 +kerning first=77 second=274 amount=-1 +kerning first=81 second=351 amount=-1 +kerning first=263 second=287 amount=-1 +kerning first=369 second=8220 amount=-1 +kerning first=366 second=351 amount=-1 +kerning first=330 second=351 amount=-1 +kerning first=264 second=226 amount=-1 +kerning first=73 second=290 amount=-1 +kerning first=1060 second=1065 amount=-1 +kerning first=1067 second=1047 amount=-1 +kerning first=88 second=286 amount=-1 +kerning first=364 second=192 amount=-1 +kerning first=1031 second=1047 amount=-1 +kerning first=365 second=171 amount=-1 +kerning first=219 second=44 amount=-2 +kerning first=99 second=244 amount=-1 +kerning first=205 second=70 amount=-1 +kerning first=1027 second=1090 amount=-1 +kerning first=362 second=274 amount=-1 +kerning first=1108 second=1103 amount=-1 +kerning first=220 second=192 amount=-1 +kerning first=8217 second=67 amount=-1 +kerning first=204 second=244 amount=-1 +kerning first=105 second=333 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=240 second=244 amount=-1 +kerning first=1055 second=1056 amount=-1 +kerning first=354 second=333 amount=-1 +kerning first=218 second=274 amount=-1 +kerning first=8250 second=203 amount=-1 +kerning first=85 second=74 amount=-1 +kerning first=1064 second=1069 amount=-1 +kerning first=80 second=171 amount=-1 +kerning first=116 second=171 amount=-1 +kerning first=264 second=100 amount=-1 +kerning first=1051 second=1099 amount=-1 +kerning first=352 second=201 amount=-1 +kerning first=1040 second=1060 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=298 second=74 amount=-1 +kerning first=221 second=171 amount=-2 +kerning first=280 second=201 amount=-1 +kerning first=257 second=171 amount=-1 +kerning first=370 second=74 amount=-1 +kerning first=74 second=269 amount=-1 +kerning first=110 second=269 amount=-1 +kerning first=117 second=231 amount=-1 +kerning first=267 second=8218 amount=-1 +kerning first=264 second=245 amount=-1 +kerning first=218 second=70 amount=-1 +kerning first=323 second=269 amount=-1 +kerning first=1047 second=1088 amount=-1 +kerning first=1078 second=1118 amount=-1 +kerning first=339 second=333 amount=-1 +kerning first=8218 second=253 amount=-1 +kerning first=251 second=269 amount=-1 +kerning first=8222 second=85 amount=-1 +kerning first=209 second=69 amount=-1 +kerning first=287 second=269 amount=-1 +kerning first=350 second=310 amount=-1 +kerning first=1036 second=1090 amount=-1 +kerning first=248 second=114 amount=-1 +kerning first=278 second=310 amount=-1 +kerning first=257 second=318 amount=-1 +kerning first=213 second=66 amount=-1 +kerning first=255 second=120 amount=-1 +kerning first=221 second=45 amount=-2 +kerning first=205 second=370 amount=-1 +kerning first=257 second=45 amount=-1 +kerning first=116 second=45 amount=-1 +kerning first=86 second=260 amount=-1 +kerning first=313 second=370 amount=-1 +kerning first=365 second=45 amount=-1 +kerning first=217 second=214 amount=-1 +kerning first=1071 second=1097 amount=-1 +kerning first=1056 second=1062 amount=-1 +kerning first=66 second=382 amount=-1 +kerning first=262 second=362 amount=-1 +kerning first=87 second=199 amount=-1 +kerning first=261 second=275 amount=-1 +kerning first=221 second=252 amount=-1 +kerning first=225 second=275 amount=-1 +kerning first=205 second=223 amount=-1 +kerning first=1048 second=1028 amount=-1 +kerning first=8222 second=210 amount=-1 +kerning first=81 second=258 amount=-1 +kerning first=1062 second=1060 amount=-1 +kerning first=8222 second=84 amount=-1 +kerning first=205 second=97 amount=-1 +kerning first=354 second=267 amount=-1 +kerning first=104 second=234 amount=-1 +kerning first=203 second=251 amount=-1 +kerning first=209 second=234 amount=-1 +kerning first=45 second=79 amount=-1 +kerning first=8250 second=298 amount=-1 +kerning first=204 second=217 amount=-1 +kerning first=366 second=258 amount=-1 +kerning first=1039 second=1027 amount=-1 +kerning first=201 second=200 amount=-1 +kerning first=269 second=243 amount=-1 +kerning first=72 second=257 amount=-1 +kerning first=233 second=243 amount=-1 +kerning first=275 second=251 amount=-1 +kerning first=305 second=243 amount=-1 +kerning first=1068 second=1053 amount=-1 +kerning first=223 second=8221 amount=-2 +kerning first=116 second=225 amount=-1 +kerning first=203 second=206 amount=-1 +kerning first=80 second=72 amount=-1 +kerning first=110 second=242 amount=-1 +kerning first=259 second=8221 amount=-2 +kerning first=80 second=225 amount=-1 +kerning first=257 second=345 amount=-1 +kerning first=72 second=187 amount=-1 +kerning first=226 second=335 amount=-1 +kerning first=74 second=242 amount=-1 +kerning first=229 second=232 amount=-1 +kerning first=298 second=335 amount=-1 +kerning first=365 second=345 amount=-1 +kerning first=1039 second=1054 amount=-1 +kerning first=262 second=335 amount=-1 +kerning first=323 second=242 amount=-1 +kerning first=370 second=335 amount=-1 +kerning first=74 second=100 amount=-1 +kerning first=1052 second=1105 amount=-1 +kerning first=117 second=8249 amount=-1 +kerning first=251 second=242 amount=-1 +kerning first=281 second=234 amount=-1 +kerning first=217 second=241 amount=-1 +kerning first=286 second=344 amount=-1 +kerning first=1064 second=1096 amount=-1 +kerning first=282 second=249 amount=-1 +kerning first=113 second=8217 amount=-2 +kerning first=1028 second=1096 amount=-1 +kerning first=272 second=351 amount=-1 +kerning first=197 second=336 amount=-1 +kerning first=325 second=241 amount=-1 +kerning first=355 second=335 amount=-1 +kerning first=86 second=233 amount=-1 +kerning first=289 second=241 amount=-1 +kerning first=1051 second=1045 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=192 second=199 amount=-1 +kerning first=316 second=114 amount=-1 +kerning first=200 second=80 amount=-1 +kerning first=45 second=378 amount=-1 +kerning first=366 second=200 amount=-1 +kerning first=192 second=46 amount=-1 +kerning first=264 second=199 amount=-1 +kerning first=84 second=275 amount=-1 +kerning first=263 second=233 amount=-1 +kerning first=277 second=250 amount=-1 +kerning first=352 second=114 amount=-1 +kerning first=264 second=46 amount=-1 +kerning first=68 second=327 amount=-1 +kerning first=103 second=114 amount=-1 +kerning first=1058 second=1113 amount=-1 +kerning first=336 second=46 amount=-1 +kerning first=244 second=114 amount=-1 +kerning first=1060 second=1046 amount=-1 +kerning first=272 second=80 amount=-1 +kerning first=277 second=8222 amount=-1 +kerning first=214 second=344 amount=-1 +kerning first=206 second=310 amount=-1 +kerning first=209 second=327 amount=-1 +kerning first=220 second=327 amount=-1 +kerning first=364 second=336 amount=-1 +kerning first=1064 second=1062 amount=-1 +kerning first=217 second=361 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=120 second=8218 amount=-1 +kerning first=1104 second=1080 amount=-1 +kerning first=209 second=81 amount=-1 +kerning first=217 second=115 amount=-1 +kerning first=82 second=8221 amount=-1 +kerning first=253 second=115 amount=-1 +kerning first=118 second=8221 amount=-2 +kerning first=289 second=115 amount=-1 +kerning first=72 second=284 amount=-1 +kerning first=325 second=115 amount=-1 +kerning first=197 second=216 amount=-1 +kerning first=8250 second=284 amount=-1 +kerning first=266 second=331 amount=-1 +kerning first=378 second=8221 amount=-1 +kerning first=223 second=44 amount=-1 +kerning first=1033 second=1098 amount=-1 +kerning first=364 second=78 amount=-1 +kerning first=89 second=8249 amount=-2 +kerning first=204 second=352 amount=-1 +kerning first=187 second=204 amount=-1 +kerning first=194 second=8249 amount=-1 +kerning first=89 second=331 amount=-1 +kerning first=370 second=227 amount=-1 +kerning first=103 second=116 amount=-1 +kerning first=220 second=78 amount=-1 +kerning first=266 second=8249 amount=-1 +kerning first=86 second=380 amount=-1 +kerning first=69 second=72 amount=-1 +kerning first=298 second=227 amount=-1 +kerning first=8217 second=260 amount=-2 +kerning first=266 second=346 amount=-1 +kerning first=282 second=72 amount=-1 +kerning first=346 second=218 amount=-1 +kerning first=310 second=218 amount=-1 +kerning first=199 second=267 amount=-1 +kerning first=204 second=290 amount=-1 +kerning first=274 second=218 amount=-1 +kerning first=1048 second=1055 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=202 second=218 amount=-1 +kerning first=1043 second=1119 amount=-1 +kerning first=1069 second=1061 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=334 second=72 amount=-1 +kerning first=1060 second=1031 amount=-1 +kerning first=1058 second=1086 amount=-1 +kerning first=192 second=361 amount=-1 +kerning first=365 second=291 amount=-1 +kerning first=296 second=230 amount=-1 +kerning first=87 second=361 amount=-1 +kerning first=80 second=279 amount=-1 +kerning first=116 second=279 amount=-1 +kerning first=8217 second=235 amount=-1 +kerning first=302 second=346 amount=-1 +kerning first=1030 second=1056 amount=-1 +kerning first=116 second=291 amount=-1 +kerning first=262 second=227 amount=-1 +kerning first=353 second=8218 amount=-1 +kerning first=1057 second=1080 amount=-1 +kerning first=288 second=368 amount=-1 +kerning first=101 second=187 amount=-1 +kerning first=281 second=8218 amount=-1 +kerning first=1077 second=1095 amount=-1 +kerning first=85 second=227 amount=-1 +kerning first=198 second=8221 amount=-1 +kerning first=75 second=368 amount=-1 +kerning first=1046 second=1095 amount=-1 +kerning first=234 second=8221 amount=-2 +kerning first=196 second=84 amount=-1 +kerning first=289 second=269 amount=-1 +kerning first=87 second=8221 amount=-1 +kerning first=198 second=81 amount=-1 +kerning first=270 second=8221 amount=-2 +kerning first=101 second=337 amount=-1 +kerning first=1034 second=1079 amount=-1 +kerning first=1118 second=1095 amount=-1 +kerning first=68 second=8218 amount=-1 +kerning first=112 second=187 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=109 second=8220 amount=-2 +kerning first=262 second=200 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=362 second=44 amount=-2 +kerning first=245 second=8218 amount=-1 +kerning first=204 second=325 amount=-1 +kerning first=289 second=187 amount=-1 +kerning first=197 second=255 amount=-1 +kerning first=209 second=8218 amount=-1 +kerning first=325 second=187 amount=-1 +kerning first=217 second=187 amount=-2 +kerning first=85 second=200 amount=-1 +kerning first=205 second=211 amount=-1 +kerning first=187 second=71 amount=-1 +kerning first=89 second=8222 amount=-2 +kerning first=257 second=279 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=217 second=202 amount=-1 +kerning first=211 second=85 amount=-1 +kerning first=8217 second=233 amount=-1 +kerning first=221 second=279 amount=-1 +kerning first=259 second=337 amount=-1 +kerning first=352 second=75 amount=-1 +kerning first=327 second=211 amount=-1 +kerning first=111 second=316 amount=-1 +kerning first=45 second=90 amount=-1 +kerning first=74 second=362 amount=-1 +kerning first=8218 second=361 amount=-1 +kerning first=365 second=279 amount=-1 +kerning first=209 second=261 amount=-1 +kerning first=278 second=364 amount=-1 +kerning first=364 second=66 amount=-1 +kerning first=1070 second=1052 amount=-1 +kerning first=221 second=264 amount=-1 +kerning first=214 second=209 amount=-1 +kerning first=1034 second=1052 amount=-1 +kerning first=206 second=364 amount=-1 +kerning first=362 second=367 amount=-1 +kerning first=296 second=257 amount=-1 +kerning first=268 second=69 amount=-1 +kerning first=80 second=264 amount=-1 +kerning first=73 second=209 amount=-1 +kerning first=65 second=364 amount=-1 +kerning first=368 second=257 amount=-1 +kerning first=304 second=69 amount=-1 +kerning first=304 second=114 amount=-1 +kerning first=325 second=202 amount=-1 +kerning first=218 second=367 amount=-1 +kerning first=227 second=380 amount=-1 +kerning first=77 second=355 amount=-1 +kerning first=338 second=8249 amount=-1 +kerning first=264 second=334 amount=-1 +kerning first=374 second=8249 amount=-2 +kerning first=234 second=108 amount=-1 +kerning first=192 second=334 amount=-1 +kerning first=281 second=273 amount=-1 +kerning first=263 second=380 amount=-1 +kerning first=1064 second=1041 amount=-1 +kerning first=272 second=330 amount=-1 +kerning first=209 second=366 amount=-1 +kerning first=323 second=235 amount=-1 +kerning first=209 second=273 amount=-1 +kerning first=335 second=380 amount=-1 +kerning first=1053 second=1030 amount=-1 +kerning first=350 second=364 amount=-1 +kerning first=374 second=290 amount=-1 +kerning first=266 second=226 amount=-1 +kerning first=286 second=209 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=1034 second=1050 amount=-1 +kerning first=362 second=286 amount=-1 +kerning first=73 second=263 amount=-1 +kerning first=253 second=249 amount=-1 +kerning first=272 second=194 amount=-1 +kerning first=109 second=263 amount=-1 +kerning first=1027 second=1051 amount=-1 +kerning first=1070 second=1050 amount=-1 +kerning first=87 second=334 amount=-1 +kerning first=45 second=117 amount=-1 +kerning first=218 second=286 amount=-1 +kerning first=101 second=339 amount=-1 +kerning first=250 second=263 amount=-1 +kerning first=205 second=82 amount=-1 +kerning first=1041 second=1094 amount=-1 +kerning first=116 second=8221 amount=-1 +kerning first=1041 second=1039 amount=-1 +kerning first=368 second=203 amount=-1 +kerning first=325 second=229 amount=-1 +kerning first=87 second=332 amount=-1 +kerning first=8222 second=225 amount=-1 +kerning first=77 second=286 amount=-1 +kerning first=278 second=67 amount=-1 +kerning first=108 second=365 amount=-1 +kerning first=204 second=298 amount=-1 +kerning first=269 second=351 amount=-1 +kerning first=1067 second=1074 amount=-1 +kerning first=366 second=117 amount=-1 +kerning first=1064 second=1108 amount=-1 +kerning first=264 second=332 amount=-1 +kerning first=296 second=203 amount=-1 +kerning first=291 second=46 amount=-1 +kerning first=78 second=261 amount=-1 +kerning first=192 second=332 amount=-1 +kerning first=217 second=229 amount=-1 +kerning first=258 second=117 amount=-1 +kerning first=193 second=220 amount=-1 +kerning first=370 second=281 amount=-1 +kerning first=365 second=333 amount=-1 +kerning first=1091 second=1083 amount=-1 +kerning first=1036 second=1076 amount=-1 +kerning first=257 second=333 amount=-1 +kerning first=1070 second=1025 amount=-1 +kerning first=355 second=339 amount=-1 +kerning first=1036 second=1118 amount=-1 +kerning first=1034 second=1025 amount=-1 +kerning first=218 second=382 amount=-1 +kerning first=206 second=229 amount=-1 +kerning first=281 second=246 amount=-1 +kerning first=88 second=220 amount=-1 +kerning first=254 second=382 amount=-1 +kerning first=209 second=246 amount=-1 +kerning first=196 second=171 amount=-1 +kerning first=85 second=281 amount=-1 +kerning first=323 second=103 amount=-1 +kerning first=104 second=246 amount=-1 +kerning first=287 second=103 amount=-1 +kerning first=204 second=323 amount=-1 +kerning first=263 second=369 amount=-1 +kerning first=195 second=364 amount=-1 +kerning first=217 second=100 amount=-1 +kerning first=192 second=307 amount=-1 +kerning first=226 second=281 amount=-1 +kerning first=85 second=262 amount=-1 +kerning first=221 second=333 amount=-1 +kerning first=262 second=281 amount=-1 +kerning first=266 second=304 amount=-1 +kerning first=80 second=333 amount=-1 +kerning first=284 second=209 amount=-1 +kerning first=298 second=281 amount=-1 +kerning first=302 second=304 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=116 second=333 amount=-1 +kerning first=338 second=304 amount=-1 +kerning first=264 second=81 amount=-1 +kerning first=213 second=77 amount=-1 +kerning first=111 second=314 amount=-1 +kerning first=1108 second=1076 amount=-1 +kerning first=1053 second=1057 amount=-1 +kerning first=1043 second=1092 amount=-1 +kerning first=8217 second=229 amount=-1 +kerning first=217 second=256 amount=-1 +kerning first=362 second=313 amount=-1 +kerning first=97 second=245 amount=-1 +kerning first=203 second=85 amount=-1 +kerning first=264 second=280 amount=-1 +kerning first=346 second=8217 amount=-1 +kerning first=272 second=221 amount=-1 +kerning first=1048 second=1067 amount=-1 +kerning first=364 second=120 amount=-1 +kerning first=356 second=267 amount=-1 +kerning first=382 second=8217 amount=-1 +kerning first=221 second=210 amount=-1 +kerning first=344 second=221 amount=-1 +kerning first=68 second=315 amount=-1 +kerning first=218 second=313 amount=-1 +kerning first=1067 second=1101 amount=-1 +kerning first=290 second=313 amount=-1 +kerning first=283 second=339 amount=-1 +kerning first=192 second=44 amount=-1 +kerning first=80 second=210 amount=-1 +kerning first=99 second=248 amount=-1 +kerning first=368 second=230 amount=-1 +kerning first=77 second=313 amount=-1 +kerning first=336 second=8250 amount=-1 +kerning first=99 second=271 amount=-1 +kerning first=106 second=339 amount=-1 +kerning first=269 second=324 amount=-1 +kerning first=70 second=339 amount=-1 +kerning first=204 second=271 amount=-1 +kerning first=1039 second=1042 amount=-1 +kerning first=228 second=8250 amount=-1 +kerning first=304 second=111 amount=-1 +kerning first=8218 second=334 amount=-1 +kerning first=88 second=118 amount=-1 +kerning first=192 second=8250 amount=-1 +kerning first=187 second=357 amount=-1 +kerning first=1052 second=1117 amount=-1 +kerning first=262 second=254 amount=-1 +kerning first=87 second=8250 amount=-1 +kerning first=270 second=195 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=214 second=258 amount=-1 +kerning first=209 second=219 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=323 second=76 amount=-1 +kerning first=370 second=73 amount=-1 +kerning first=68 second=219 amount=-1 +kerning first=252 second=289 amount=-1 +kerning first=82 second=357 amount=-1 +kerning first=1031 second=1101 amount=-1 +kerning first=287 second=101 amount=-1 +kerning first=324 second=289 amount=-1 +kerning first=202 second=8217 amount=-1 +kerning first=1033 second=1065 amount=-1 +kerning first=251 second=101 amount=-1 +kerning first=339 second=111 amount=-1 +kerning first=274 second=8217 amount=-1 +kerning first=224 second=380 amount=-1 +kerning first=74 second=76 amount=-1 +kerning first=374 second=331 amount=-1 +kerning first=204 second=296 amount=-1 +kerning first=232 second=111 amount=-1 +kerning first=97 second=8217 amount=-2 +kerning first=268 second=111 amount=-1 +kerning first=121 second=254 amount=-1 +kerning first=269 second=228 amount=-1 +kerning first=268 second=225 amount=-1 +kerning first=70 second=187 amount=-2 +kerning first=106 second=99 amount=-1 +kerning first=77 second=232 amount=-1 +kerning first=8218 second=332 amount=-1 +kerning first=286 second=85 amount=-1 +kerning first=214 second=85 amount=-1 +kerning first=304 second=203 amount=-1 +kerning first=73 second=332 amount=-1 +kerning first=252 second=287 amount=-1 +kerning first=289 second=46 amount=-1 +kerning first=74 second=271 amount=-1 +kerning first=253 second=46 amount=-1 +kerning first=214 second=330 amount=-1 +kerning first=73 second=85 amount=-1 +kerning first=250 second=8220 amount=-1 +kerning first=111 second=287 amount=-1 +kerning first=325 second=46 amount=-1 +kerning first=109 second=277 amount=-1 +kerning first=286 second=302 amount=-1 +kerning first=206 second=241 amount=-1 +kerning first=286 second=8220 amount=-1 +kerning first=370 second=368 amount=-1 +kerning first=324 second=287 amount=-1 +kerning first=214 second=302 amount=-1 +kerning first=323 second=271 amount=-1 +kerning first=246 second=103 amount=-1 +kerning first=1039 second=1096 amount=-1 +kerning first=74 second=243 amount=-1 +kerning first=233 second=378 amount=-1 +kerning first=8250 second=223 amount=-1 +kerning first=230 second=250 amount=-1 +kerning first=227 second=289 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=231 second=229 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=202 second=284 amount=-1 +kerning first=274 second=75 amount=-1 +kerning first=263 second=289 amount=-1 +kerning first=87 second=273 amount=-1 +kerning first=374 second=250 amount=-1 +kerning first=45 second=336 amount=-1 +kerning first=217 second=46 amount=-2 +kerning first=274 second=284 amount=-1 +kerning first=334 second=76 amount=-1 +kerning first=335 second=289 amount=-1 +kerning first=267 second=229 amount=-1 +kerning first=269 second=378 amount=-1 +kerning first=370 second=76 amount=-1 +kerning first=207 second=220 amount=-1 +kerning first=262 second=76 amount=-1 +kerning first=351 second=46 amount=-1 +kerning first=171 second=220 amount=-1 +kerning first=74 second=74 amount=-1 +kerning first=8250 second=218 amount=-1 +kerning first=362 second=259 amount=-1 +kerning first=264 second=278 amount=-1 +kerning first=1027 second=1105 amount=-1 +kerning first=201 second=45 amount=-1 +kerning first=280 second=216 amount=-1 +kerning first=339 second=246 amount=-1 +kerning first=85 second=76 amount=-1 +kerning first=1050 second=1118 amount=-1 +kerning first=203 second=280 amount=-1 +kerning first=267 second=246 amount=-1 +kerning first=321 second=89 amount=-1 +kerning first=231 second=246 amount=-1 +kerning first=66 second=220 amount=-1 +kerning first=323 second=74 amount=-1 +kerning first=204 second=269 amount=-1 +kerning first=262 second=245 amount=-1 +kerning first=209 second=74 amount=-1 +kerning first=77 second=259 amount=-1 +kerning first=70 second=204 amount=-1 +kerning first=99 second=269 amount=-1 +kerning first=1042 second=1084 amount=-1 +kerning first=281 second=369 amount=-1 +kerning first=78 second=201 amount=-1 +kerning first=86 second=65 amount=-1 +kerning first=218 second=259 amount=-1 +kerning first=211 second=204 amount=-1 +kerning first=272 second=366 amount=-1 +kerning first=278 second=268 amount=-1 +kerning first=220 second=207 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=78 second=8220 amount=-1 +kerning first=200 second=366 amount=-1 +kerning first=206 second=268 amount=-1 +kerning first=1039 second=1069 amount=-1 +kerning first=280 second=67 amount=-1 +kerning first=274 second=67 amount=-1 +kerning first=218 second=110 amount=-1 +kerning first=8217 second=289 amount=-1 +kerning first=364 second=207 amount=-1 +kerning first=310 second=67 amount=-1 +kerning first=74 second=244 amount=-1 +kerning first=207 second=210 amount=-1 +kerning first=1067 second=1062 amount=-1 +kerning first=110 second=244 amount=-1 +kerning first=75 second=303 amount=-1 +kerning first=356 second=113 amount=-1 +kerning first=374 second=277 amount=-1 +kerning first=8216 second=347 amount=-1 +kerning first=217 second=73 amount=-1 +kerning first=1054 second=1068 amount=-1 +kerning first=73 second=302 amount=-1 +kerning first=325 second=73 amount=-1 +kerning first=86 second=262 amount=-1 +kerning first=233 second=351 amount=-1 +kerning first=65 second=268 amount=-1 +kerning first=287 second=108 amount=-1 +kerning first=1038 second=1117 amount=-1 +kerning first=89 second=277 amount=-1 +kerning first=192 second=251 amount=-1 +kerning first=199 second=213 amount=-1 +kerning first=87 second=251 amount=-1 +kerning first=302 second=277 amount=-1 +kerning first=266 second=277 amount=-1 +kerning first=230 second=277 amount=-1 +kerning first=368 second=218 amount=-1 +kerning first=187 second=370 amount=-1 +kerning first=71 second=8221 amount=-1 +kerning first=355 second=231 amount=-1 +kerning first=270 second=354 amount=-1 +kerning first=327 second=75 amount=-1 +kerning first=108 second=380 amount=-1 +kerning first=280 second=270 amount=-1 +kerning first=296 second=218 amount=-1 +kerning first=374 second=196 amount=-1 +kerning first=245 second=8222 amount=-1 +kerning first=212 second=8221 amount=-2 +kerning first=262 second=8249 amount=-1 +kerning first=248 second=8221 amount=-2 +kerning first=219 second=75 amount=-1 +kerning first=78 second=216 amount=-1 +kerning first=109 second=248 amount=-1 +kerning first=67 second=336 amount=-1 +kerning first=1031 second=1089 amount=-1 +kerning first=65 second=187 amount=-1 +kerning first=250 second=248 amount=-1 +kerning first=1057 second=1119 amount=-1 +kerning first=283 second=231 amount=-1 +kerning first=83 second=218 amount=-1 +kerning first=99 second=242 amount=-1 +kerning first=356 second=8221 amount=-1 +kerning first=78 second=75 amount=-1 +kerning first=352 second=270 amount=-1 +kerning first=200 second=209 amount=-1 +kerning first=218 second=79 amount=-1 +kerning first=73 second=248 amount=-1 +kerning first=304 second=279 amount=-1 +kerning first=280 second=336 amount=-1 +kerning first=204 second=234 amount=-1 +kerning first=258 second=84 amount=-1 +kerning first=67 second=270 amount=-1 +kerning first=279 second=367 amount=-1 +kerning first=339 second=283 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=231 second=283 amount=-1 +kerning first=109 second=333 amount=-1 +kerning first=89 second=369 amount=-1 +kerning first=1043 second=1080 amount=-1 +kerning first=374 second=8222 amount=-2 +kerning first=251 second=244 amount=-1 +kerning first=79 second=327 amount=-1 +kerning first=338 second=8222 amount=-1 +kerning first=8218 second=369 amount=-1 +kerning first=290 second=205 amount=-1 +kerning first=323 second=244 amount=-1 +kerning first=266 second=8222 amount=-1 +kerning first=362 second=79 amount=-1 +kerning first=207 second=274 amount=-1 +kerning first=230 second=8222 amount=-1 +kerning first=66 second=367 amount=-1 +kerning first=66 second=274 amount=-1 +kerning first=1031 second=1028 amount=-1 +kerning first=252 second=233 amount=-1 +kerning first=338 second=70 amount=-1 +kerning first=364 second=327 amount=-1 +kerning first=70 second=231 amount=-1 +kerning first=86 second=235 amount=-1 +kerning first=106 second=231 amount=-1 +kerning first=1066 second=1062 amount=-1 +kerning first=1055 second=1071 amount=-1 +kerning first=356 second=227 amount=-1 +kerning first=218 second=205 amount=-1 +kerning first=227 second=235 amount=-1 +kerning first=258 second=108 amount=-1 +kerning first=77 second=205 amount=-1 +kerning first=263 second=235 amount=-1 +kerning first=266 second=70 amount=-1 +kerning first=87 second=224 amount=-1 +kerning first=302 second=70 amount=-1 +kerning first=8217 second=65 amount=-2 +kerning first=206 second=214 amount=-1 +kerning first=201 second=71 amount=-1 +kerning first=72 second=353 amount=-1 +kerning first=118 second=249 amount=-1 +kerning first=210 second=202 amount=-1 +kerning first=264 second=224 amount=-1 +kerning first=187 second=249 amount=-1 +kerning first=330 second=70 amount=-1 +kerning first=1038 second=1090 amount=-1 +kerning first=103 second=243 amount=-1 +kerning first=1058 second=1088 amount=-1 +kerning first=1059 second=1104 amount=-1 +kerning first=280 second=363 amount=-1 +kerning first=213 second=353 amount=-1 +kerning first=316 second=363 amount=-1 +kerning first=278 second=214 amount=-1 +kerning first=75 second=370 amount=-1 +kerning first=374 second=223 amount=-1 +kerning first=69 second=45 amount=-1 +kerning first=288 second=370 amount=-1 +kerning first=338 second=223 amount=-1 +kerning first=105 second=45 amount=-1 +kerning first=302 second=223 amount=-1 +kerning first=232 second=252 amount=-1 +kerning first=250 second=275 amount=-1 +kerning first=266 second=223 amount=-1 +kerning first=196 second=252 amount=-1 +kerning first=325 second=8218 amount=-1 +kerning first=65 second=214 amount=-1 +kerning first=1043 second=1107 amount=-1 +kerning first=79 second=354 amount=-1 +kerning first=203 second=199 amount=-1 +kerning first=282 second=45 amount=-1 +kerning first=254 second=106 amount=-1 +kerning first=109 second=275 amount=-1 +kerning first=1050 second=1081 amount=-1 +kerning first=73 second=275 amount=-1 +kerning first=375 second=8221 amount=-2 +kerning first=8217 second=262 amount=-1 +kerning first=1046 second=1097 amount=-1 +kerning first=74 second=217 amount=-1 +kerning first=266 second=97 amount=-1 +kerning first=220 second=234 amount=-1 +kerning first=302 second=97 amount=-1 +kerning first=370 second=288 amount=-1 +kerning first=235 second=267 amount=-1 +kerning first=271 second=267 amount=-1 +kerning first=307 second=267 amount=-1 +kerning first=272 second=209 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=73 second=8220 amount=-1 +kerning first=364 second=234 amount=-1 +kerning first=89 second=223 amount=-1 +kerning first=8218 second=251 amount=-1 +kerning first=328 second=234 amount=-1 +kerning first=316 second=243 amount=-1 +kerning first=323 second=217 amount=-1 +kerning first=211 second=258 amount=-1 +kerning first=1091 second=1098 amount=-1 +kerning first=288 second=201 amount=-1 +kerning first=288 second=206 amount=-1 +kerning first=1071 second=1095 amount=-1 +kerning first=298 second=266 amount=-1 +kerning first=218 second=232 amount=-1 +kerning first=284 second=200 amount=-1 +kerning first=350 second=345 amount=-1 +kerning first=1062 second=1072 amount=-1 +kerning first=370 second=266 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=196 second=345 amount=-1 +kerning first=324 second=113 amount=-1 +kerning first=232 second=345 amount=-1 +kerning first=8222 second=279 amount=-1 +kerning first=374 second=97 amount=-1 +kerning first=362 second=232 amount=-1 +kerning first=268 second=345 amount=-1 +kerning first=262 second=266 amount=-1 +kerning first=326 second=232 amount=-1 +kerning first=364 second=79 amount=-1 +kerning first=219 second=283 amount=-1 +kerning first=71 second=200 amount=-1 +kerning first=211 second=198 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=1059 second=1077 amount=-1 +kerning first=220 second=8218 amount=-2 +kerning first=339 second=120 amount=-1 +kerning first=375 second=120 amount=-1 +kerning first=115 second=8218 amount=-1 +kerning first=87 second=197 amount=-1 +kerning first=79 second=8218 amount=-1 +kerning first=266 second=109 amount=-1 +kerning first=364 second=8218 amount=-2 +kerning first=249 second=245 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=302 second=109 amount=-1 +kerning first=272 second=258 amount=-1 +kerning first=220 second=315 amount=-1 +kerning first=339 second=337 amount=-1 +kerning first=73 second=199 amount=-1 +kerning first=187 second=367 amount=-1 +kerning first=325 second=214 amount=-1 +kerning first=108 second=245 amount=-1 +kerning first=66 second=313 amount=-1 +kerning first=267 second=105 amount=-1 +kerning first=207 second=313 amount=-1 +kerning first=231 second=120 amount=-1 +kerning first=195 second=105 amount=-1 +kerning first=374 second=229 amount=-1 +kerning first=296 second=267 amount=-1 +kerning first=262 second=217 amount=-1 +kerning first=263 second=318 amount=-1 +kerning first=368 second=267 amount=-1 +kerning first=298 second=217 amount=-1 +kerning first=1071 second=1068 amount=-1 +kerning first=334 second=217 amount=-1 +kerning first=291 second=114 amount=-1 +kerning first=1057 second=1097 amount=-1 +kerning first=370 second=217 amount=-1 +kerning first=255 second=114 amount=-1 +kerning first=326 second=279 amount=-1 +kerning first=219 second=102 amount=-1 +kerning first=1030 second=1037 amount=-1 +kerning first=224 second=267 amount=-1 +kerning first=327 second=114 amount=-1 +kerning first=8220 second=196 amount=-2 +kerning first=72 second=245 amount=-1 +kerning first=78 second=114 amount=-1 +kerning first=317 second=8221 amount=-1 +kerning first=364 second=315 amount=-1 +kerning first=219 second=114 amount=-1 +kerning first=291 second=8249 amount=-1 +kerning first=8222 second=318 amount=-1 +kerning first=201 second=212 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=279 second=111 amount=-1 +kerning first=274 second=8222 amount=-1 +kerning first=327 second=8249 amount=-1 +kerning first=363 second=8249 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=1044 second=1098 amount=-1 +kerning first=327 second=331 amount=-1 +kerning first=206 second=115 amount=-1 +kerning first=220 second=273 amount=-1 +kerning first=279 second=355 amount=-1 +kerning first=339 second=8220 amount=-2 +kerning first=196 second=318 amount=-1 +kerning first=213 second=218 amount=-1 +kerning first=201 second=77 amount=-1 +kerning first=323 second=352 amount=-1 +kerning first=231 second=105 amount=-1 +kerning first=1033 second=1061 amount=-1 +kerning first=97 second=380 amount=-1 +kerning first=8250 second=89 amount=-2 +kerning first=207 second=355 amount=-1 +kerning first=268 second=318 amount=-1 +kerning first=71 second=44 amount=-1 +kerning first=80 second=288 amount=-1 +kerning first=8220 second=85 amount=-1 +kerning first=284 second=44 amount=-1 +kerning first=261 second=248 amount=-1 +kerning first=66 second=355 amount=-1 +kerning first=369 second=248 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=8222 second=333 amount=-1 +kerning first=362 second=193 amount=-1 +kerning first=248 second=44 amount=-1 +kerning first=354 second=275 amount=-1 +kerning first=1047 second=1059 amount=-2 +kerning first=78 second=346 amount=-1 +kerning first=84 second=248 amount=-1 +kerning first=352 second=282 amount=-1 +kerning first=225 second=248 amount=-1 +kerning first=8216 second=217 amount=-1 +kerning first=280 second=282 amount=-1 +kerning first=321 second=218 amount=-1 +kerning first=325 second=332 amount=-1 +kerning first=291 second=8222 amount=-1 +kerning first=72 second=230 amount=-1 +kerning first=219 second=8222 amount=-2 +kerning first=327 second=346 amount=-1 +kerning first=203 second=361 amount=-1 +kerning first=203 second=117 amount=-1 +kerning first=217 second=332 amount=-1 +kerning first=1071 second=1041 amount=-1 +kerning first=204 second=229 amount=-1 +kerning first=114 second=8222 amount=-1 +kerning first=232 second=279 amount=-1 +kerning first=78 second=8222 amount=-1 +kerning first=268 second=279 amount=-1 +kerning first=219 second=346 amount=-1 +kerning first=8250 second=77 amount=-1 +kerning first=74 second=352 amount=-1 +kerning first=298 second=267 amount=-1 +kerning first=267 second=337 amount=-1 +kerning first=350 second=187 amount=-1 +kerning first=232 second=291 amount=-1 +kerning first=231 second=337 amount=-1 +kerning first=356 second=44 amount=-1 +kerning first=278 second=187 amount=-1 +kerning first=99 second=187 amount=-1 +kerning first=103 second=355 amount=-1 +kerning first=187 second=81 amount=-1 +kerning first=209 second=109 amount=-1 +kerning first=315 second=84 amount=-1 +kerning first=75 second=119 amount=-1 +kerning first=82 second=81 amount=-1 +kerning first=327 second=8222 amount=-1 +kerning first=364 second=288 amount=-1 +kerning first=194 second=211 amount=-1 +kerning first=71 second=204 amount=-1 +kerning first=202 second=338 amount=-1 +kerning first=266 second=211 amount=-1 +kerning first=264 second=362 amount=-1 +kerning first=324 second=119 amount=-1 +kerning first=323 second=325 amount=-1 +kerning first=199 second=99 amount=-1 +kerning first=1033 second=1034 amount=-1 +kerning first=89 second=211 amount=-1 +kerning first=220 second=369 amount=-1 +kerning first=334 second=347 amount=-1 +kerning first=207 second=382 amount=-1 +kerning first=262 second=269 amount=-1 +kerning first=370 second=347 amount=-1 +kerning first=243 second=382 amount=-1 +kerning first=370 second=333 amount=-1 +kerning first=325 second=8250 amount=-1 +kerning first=262 second=347 amount=-1 +kerning first=279 second=382 amount=-1 +kerning first=289 second=8250 amount=-1 +kerning first=298 second=347 amount=-1 +kerning first=271 second=99 amount=-1 +kerning first=253 second=8250 amount=-1 +kerning first=212 second=86 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=101 second=248 amount=-1 +kerning first=217 second=8250 amount=-2 +kerning first=72 second=224 amount=-1 +kerning first=314 second=365 amount=-1 +kerning first=85 second=347 amount=-1 +kerning first=67 second=330 amount=-1 +kerning first=374 second=211 amount=-1 +kerning first=195 second=268 amount=-1 +kerning first=227 second=316 amount=-1 +kerning first=1049 second=1100 amount=-1 +kerning first=1062 second=1087 amount=-1 +kerning first=264 second=110 amount=-1 +kerning first=278 second=202 amount=-1 +kerning first=283 second=117 amount=-1 +kerning first=103 second=351 amount=-1 +kerning first=304 second=264 amount=-1 +kerning first=72 second=8217 amount=-1 +kerning first=219 second=277 amount=-1 +kerning first=67 second=351 amount=-1 +kerning first=350 second=202 amount=-1 +kerning first=108 second=8217 amount=-1 +kerning first=206 second=73 amount=-1 +kerning first=350 second=369 amount=-1 +kerning first=289 second=305 amount=-1 +kerning first=196 second=264 amount=-1 +kerning first=278 second=73 amount=-1 +kerning first=1031 second=1065 amount=-1 +kerning first=363 second=277 amount=-1 +kerning first=203 second=334 amount=-1 +kerning first=206 second=202 amount=-1 +kerning first=240 second=8250 amount=-1 +kerning first=321 second=8217 amount=-1 +kerning first=207 second=69 amount=-1 +kerning first=223 second=108 amount=-1 +kerning first=233 second=245 amount=-1 +kerning first=368 second=232 amount=-1 +kerning first=240 second=101 amount=-1 +kerning first=118 second=108 amount=-1 +kerning first=218 second=193 amount=-1 +kerning first=204 second=101 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=364 second=273 amount=-1 +kerning first=1068 second=1065 amount=-1 +kerning first=8217 second=370 amount=-1 +kerning first=338 second=82 amount=-1 +kerning first=310 second=338 amount=-1 +kerning first=75 second=364 amount=-1 +kerning first=302 second=82 amount=-1 +kerning first=213 second=8217 amount=-2 +kerning first=78 second=277 amount=-1 +kerning first=259 second=108 amount=-1 +kerning first=74 second=325 amount=-1 +kerning first=274 second=338 amount=-1 +kerning first=269 second=254 amount=-1 +kerning first=346 second=365 amount=-1 +kerning first=1056 second=1074 amount=-1 +kerning first=1038 second=1051 amount=-1 +kerning first=121 second=103 amount=-1 +kerning first=272 second=68 amount=-1 +kerning first=225 second=263 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=274 second=365 amount=-1 +kerning first=74 second=298 amount=-1 +kerning first=66 second=171 amount=-1 +kerning first=1039 second=1097 amount=-1 +kerning first=261 second=263 amount=-1 +kerning first=1075 second=1114 amount=-1 +kerning first=310 second=365 amount=-1 +kerning first=102 second=171 amount=-1 +kerning first=202 second=365 amount=-1 +kerning first=1030 second=1039 amount=-1 +kerning first=66 second=286 amount=-1 +kerning first=78 second=8249 amount=-1 +kerning first=114 second=8249 amount=-1 +kerning first=200 second=68 amount=-1 +kerning first=323 second=298 amount=-1 +kerning first=374 second=194 amount=-1 +kerning first=213 second=203 amount=-1 +kerning first=100 second=287 amount=-1 +kerning first=8222 second=211 amount=-1 +kerning first=277 second=287 amount=-1 +kerning first=334 second=374 amount=-1 +kerning first=72 second=203 amount=-1 +kerning first=241 second=287 amount=-1 +kerning first=66 second=270 amount=-1 +kerning first=84 second=263 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=206 second=100 amount=-1 +kerning first=1054 second=1048 amount=-1 +kerning first=8250 second=202 amount=-1 +kerning first=264 second=83 amount=-1 +kerning first=103 second=324 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=212 second=330 amount=-1 +kerning first=219 second=304 amount=-1 +kerning first=364 second=246 amount=-1 +kerning first=351 second=171 amount=-1 +kerning first=328 second=246 amount=-1 +kerning first=290 second=220 amount=-1 +kerning first=284 second=330 amount=-1 +kerning first=103 second=339 amount=-1 +kerning first=370 second=103 amount=-1 +kerning first=327 second=304 amount=-1 +kerning first=268 second=218 amount=-1 +kerning first=362 second=220 amount=-1 +kerning first=8250 second=375 amount=-1 +kerning first=368 second=77 amount=-1 +kerning first=220 second=246 amount=-1 +kerning first=298 second=103 amount=-1 +kerning first=78 second=304 amount=-1 +kerning first=1049 second=1031 amount=-1 +kerning first=374 second=197 amount=-1 +kerning first=262 second=103 amount=-1 +kerning first=232 second=333 amount=-1 +kerning first=325 second=278 amount=-1 +kerning first=296 second=77 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=226 second=103 amount=-1 +kerning first=204 second=74 amount=-1 +kerning first=246 second=187 amount=-1 +kerning first=218 second=220 amount=-1 +kerning first=221 second=382 amount=-1 +kerning first=314 second=246 amount=-1 +kerning first=8217 second=97 amount=-1 +kerning first=85 second=298 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=211 second=356 amount=-1 +kerning first=339 second=232 amount=-1 +kerning first=1070 second=1030 amount=-1 +kerning first=206 second=246 amount=-1 +kerning first=298 second=298 amount=-1 +kerning first=333 second=103 amount=-1 +kerning first=262 second=298 amount=-1 +kerning first=201 second=330 amount=-1 +kerning first=196 second=220 amount=-1 +kerning first=1039 second=1091 amount=-1 +kerning first=229 second=269 amount=-1 +kerning first=370 second=298 amount=-1 +kerning first=304 second=220 amount=-1 +kerning first=334 second=298 amount=-1 +kerning first=268 second=220 amount=-1 +kerning first=224 second=333 amount=-1 +kerning first=271 second=339 amount=-1 +kerning first=203 second=68 amount=-1 +kerning first=1044 second=1074 amount=-1 +kerning first=1059 second=1040 amount=-1 +kerning first=280 second=211 amount=-1 +kerning first=368 second=333 amount=-1 +kerning first=80 second=382 amount=-1 +kerning first=335 second=8222 amount=-1 +kerning first=45 second=194 amount=-1 +kerning first=235 second=365 amount=-1 +kerning first=296 second=333 amount=-1 +kerning first=81 second=194 amount=-1 +kerning first=263 second=8222 amount=-1 +kerning first=67 second=211 amount=-1 +kerning first=212 second=315 amount=-1 +kerning first=194 second=255 amount=-1 +kerning first=225 second=339 amount=-1 +kerning first=99 second=281 amount=-1 +kerning first=83 second=361 amount=-1 +kerning first=204 second=281 amount=-1 +kerning first=79 second=202 amount=-1 +kerning first=1052 second=1047 amount=-1 +kerning first=261 second=339 amount=-1 +kerning first=240 second=281 amount=-1 +kerning first=8250 second=213 amount=-1 +kerning first=1053 second=1074 amount=-1 +kerning first=284 second=315 amount=-1 +kerning first=198 second=344 amount=-1 +kerning first=1030 second=1051 amount=-1 +kerning first=362 second=264 amount=-1 +kerning first=199 second=111 amount=-1 +kerning first=84 second=339 amount=-1 +kerning first=364 second=202 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=1031 second=1057 amount=-1 +kerning first=118 second=120 amount=-1 +kerning first=68 second=364 amount=-1 +kerning first=74 second=313 amount=-1 +kerning first=187 second=120 amount=-1 +kerning first=218 second=264 amount=-1 +kerning first=314 second=277 amount=-1 +kerning first=223 second=120 amount=-1 +kerning first=220 second=202 amount=-1 +kerning first=1056 second=1025 amount=-1 +kerning first=369 second=339 amount=-1 +kerning first=71 second=315 amount=-1 +kerning first=217 second=251 amount=-1 +kerning first=298 second=275 amount=-1 +kerning first=77 second=264 amount=-1 +kerning first=198 second=212 amount=-1 +kerning first=8218 second=290 amount=-1 +kerning first=216 second=8217 amount=-2 +kerning first=252 second=8217 amount=-1 +kerning first=330 second=223 amount=-1 +kerning first=288 second=8217 amount=-1 +kerning first=253 second=251 amount=-1 +kerning first=324 second=8217 amount=-2 +kerning first=289 second=251 amount=-1 +kerning first=353 second=8222 amount=-1 +kerning first=85 second=271 amount=-1 +kerning first=82 second=221 amount=-1 +kerning first=75 second=8217 amount=-1 +kerning first=370 second=269 amount=-1 +kerning first=111 second=8217 amount=-2 +kerning first=1043 second=1094 amount=-1 +kerning first=201 second=8221 amount=-1 +kerning first=324 second=245 amount=-1 +kerning first=262 second=271 amount=-1 +kerning first=235 second=111 amount=-1 +kerning first=271 second=111 amount=-1 +kerning first=252 second=245 amount=-1 +kerning first=307 second=111 amount=-1 +kerning first=298 second=271 amount=-1 +kerning first=345 second=8221 amount=-1 +kerning first=207 second=353 amount=-1 +kerning first=381 second=8221 amount=-1 +kerning first=370 second=271 amount=-1 +kerning first=1065 second=1092 amount=-1 +kerning first=209 second=334 amount=-1 +kerning first=258 second=221 amount=-1 +kerning first=1053 second=1101 amount=-1 +kerning first=220 second=229 amount=-1 +kerning first=86 second=331 amount=-1 +kerning first=1030 second=1024 amount=-1 +kerning first=1043 second=1075 amount=-1 +kerning first=72 second=67 amount=-1 +kerning first=205 second=233 amount=-1 +kerning first=210 second=203 amount=-1 +kerning first=99 second=254 amount=-1 +kerning first=1056 second=1044 amount=-1 +kerning first=229 second=277 amount=-1 +kerning first=100 second=233 amount=-1 +kerning first=282 second=203 amount=-1 +kerning first=323 second=8221 amount=-1 +kerning first=73 second=280 amount=-1 +kerning first=201 second=357 amount=-1 +kerning first=241 second=233 amount=-1 +kerning first=214 second=280 amount=-1 +kerning first=234 second=117 amount=-1 +kerning first=69 second=203 amount=-1 +kerning first=277 second=233 amount=-1 +kerning first=187 second=374 amount=-2 +kerning first=1066 second=1024 amount=-1 +kerning first=286 second=280 amount=-1 +kerning first=228 second=263 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=264 second=263 amount=-1 +kerning first=1104 second=1119 amount=-1 +kerning first=82 second=374 amount=-1 +kerning first=1031 second=1084 amount=-1 +kerning first=219 second=363 amount=-1 +kerning first=187 second=207 amount=-1 +kerning first=198 second=288 amount=-1 +kerning first=255 second=363 amount=-1 +kerning first=302 second=201 amount=-1 +kerning first=291 second=363 amount=-1 +kerning first=368 second=213 amount=-1 +kerning first=338 second=201 amount=-1 +kerning first=275 second=122 amount=-1 +kerning first=327 second=70 amount=-1 +kerning first=235 second=311 amount=-1 +kerning first=374 second=245 amount=-1 +kerning first=264 second=317 amount=-1 +kerning first=266 second=201 amount=-1 +kerning first=325 second=224 amount=-1 +kerning first=1048 second=1104 amount=-1 +kerning first=217 second=224 amount=-1 +kerning first=219 second=103 amount=-1 +kerning first=86 second=250 amount=-1 +kerning first=98 second=122 amount=-1 +kerning first=110 second=113 amount=-1 +kerning first=272 second=204 amount=-1 +kerning first=1091 second=1093 amount=-1 +kerning first=85 second=244 amount=-1 +kerning first=79 second=256 amount=-1 +kerning first=200 second=204 amount=-1 +kerning first=74 second=259 amount=-1 +kerning first=327 second=8218 amount=-1 +kerning first=195 second=354 amount=-1 +kerning first=323 second=259 amount=-1 +kerning first=226 second=244 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=262 second=244 amount=-1 +kerning first=282 second=116 amount=-1 +kerning first=362 second=210 amount=-1 +kerning first=298 second=244 amount=-1 +kerning first=1042 second=1096 amount=-1 +kerning first=364 second=256 amount=-1 +kerning first=218 second=210 amount=-1 +kerning first=1078 second=1096 amount=-1 +kerning first=77 second=210 amount=-1 +kerning first=99 second=363 amount=-1 +kerning first=327 second=283 amount=-1 +kerning first=1096 second=1095 amount=-1 +kerning first=202 second=262 amount=-1 +kerning first=310 second=262 amount=-1 +kerning first=66 second=345 amount=-1 +kerning first=274 second=262 amount=-1 +kerning first=217 second=355 amount=-1 +kerning first=1033 second=1049 amount=-1 +kerning first=234 second=98 amount=-1 +kerning first=264 second=298 amount=-1 +kerning first=1043 second=1102 amount=-1 +kerning first=211 second=302 amount=-1 +kerning first=286 second=73 amount=-1 +kerning first=277 second=248 amount=-1 +kerning first=204 second=335 amount=-1 +kerning first=207 second=345 amount=-1 +kerning first=243 second=345 amount=-1 +kerning first=1024 second=1095 amount=-1 +kerning first=258 second=107 amount=-1 +kerning first=279 second=345 amount=-1 +kerning first=350 second=219 amount=-1 +kerning first=240 second=335 amount=-1 +kerning first=296 second=213 amount=-1 +kerning first=70 second=302 amount=-1 +kerning first=203 second=268 amount=-1 +kerning first=278 second=219 amount=-1 +kerning first=205 second=206 amount=-1 +kerning first=1068 second=1070 amount=-1 +kerning first=206 second=219 amount=-1 +kerning first=263 second=277 amount=-1 +kerning first=266 second=368 amount=-1 +kerning first=352 second=8221 amount=-1 +kerning first=227 second=277 amount=-1 +kerning first=8249 second=374 amount=-1 +kerning first=302 second=368 amount=-1 +kerning first=338 second=368 amount=-1 +kerning first=73 second=226 amount=-1 +kerning first=86 second=81 amount=-1 +kerning first=325 second=82 amount=-1 +kerning first=87 second=290 amount=-1 +kerning first=85 second=217 amount=-1 +kerning first=73 second=73 amount=-1 +kerning first=1053 second=1047 amount=-1 +kerning first=192 second=290 amount=-1 +kerning first=214 second=73 amount=-1 +kerning first=194 second=368 amount=-1 +kerning first=328 second=283 amount=-1 +kerning first=122 second=8249 amount=-1 +kerning first=217 second=197 amount=-1 +kerning first=1056 second=1092 amount=-1 +kerning first=66 second=79 amount=-1 +kerning first=199 second=338 amount=-1 +kerning first=1054 second=1084 amount=-1 +kerning first=202 second=82 amount=-1 +kerning first=8222 second=246 amount=-1 +kerning first=289 second=245 amount=-1 +kerning first=263 second=8249 amount=-1 +kerning first=86 second=277 amount=-1 +kerning first=1062 second=1057 amount=-1 +kerning first=274 second=82 amount=-1 +kerning first=323 second=286 amount=-1 +kerning first=230 second=120 amount=-1 +kerning first=212 second=282 amount=-1 +kerning first=220 second=283 amount=-1 +kerning first=1036 second=1086 amount=-1 +kerning first=1118 second=1097 amount=-1 +kerning first=251 second=99 amount=-1 +kerning first=70 second=251 amount=-1 +kerning first=271 second=45 amount=-1 +kerning first=1060 second=1068 amount=-1 +kerning first=370 second=244 amount=-1 +kerning first=199 second=45 amount=-1 +kerning first=199 second=171 amount=-1 +kerning first=69 second=116 amount=-1 +kerning first=287 second=113 amount=-1 +kerning first=207 second=79 amount=-1 +kerning first=323 second=113 amount=-1 +kerning first=97 second=235 amount=-1 +kerning first=307 second=171 amount=-1 +kerning first=1053 second=1048 amount=-1 +kerning first=74 second=286 amount=-1 +kerning first=251 second=113 amount=-1 +kerning first=86 second=8249 amount=-2 +kerning first=218 second=350 amount=-1 +kerning first=219 second=70 amount=-1 +kerning first=246 second=8250 amount=-1 +kerning first=263 second=104 amount=-1 +kerning first=304 second=274 amount=-1 +kerning first=205 second=109 amount=-1 +kerning first=77 second=350 amount=-1 +kerning first=1041 second=1056 amount=-1 +kerning first=1048 second=1077 amount=-1 +kerning first=78 second=70 amount=-1 +kerning first=262 second=226 amount=-1 +kerning first=268 second=274 amount=-1 +kerning first=217 second=344 amount=-1 +kerning first=1118 second=1085 amount=-1 +kerning first=282 second=284 amount=-1 +kerning first=375 second=115 amount=-1 +kerning first=84 second=231 amount=-1 +kerning first=220 second=310 amount=-1 +kerning first=351 second=318 amount=-1 +kerning first=1046 second=1085 amount=-1 +kerning first=8217 second=250 amount=-1 +kerning first=74 second=205 amount=-1 +kerning first=8218 second=85 amount=-1 +kerning first=1071 second=1053 amount=-1 +kerning first=79 second=310 amount=-1 +kerning first=231 second=115 amount=-1 +kerning first=8250 second=274 amount=-1 +kerning first=323 second=205 amount=-1 +kerning first=213 second=219 amount=-1 +kerning first=69 second=284 amount=-1 +kerning first=267 second=115 amount=-1 +kerning first=339 second=115 amount=-1 +kerning first=243 second=106 amount=-1 +kerning first=369 second=231 amount=-1 +kerning first=279 second=106 amount=-1 +kerning first=1054 second=1036 amount=-1 +kerning first=1105 second=1091 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=203 second=214 amount=-1 +kerning first=225 second=231 amount=-1 +kerning first=261 second=231 amount=-1 +kerning first=201 second=217 amount=-1 +kerning first=1047 second=1044 amount=-1 +kerning first=83 second=45 amount=-1 +kerning first=119 second=45 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=72 second=235 amount=-1 +kerning first=287 second=333 amount=-1 +kerning first=310 second=116 amount=-1 +kerning first=283 second=243 amount=-1 +kerning first=65 second=332 amount=-1 +kerning first=108 second=235 amount=-1 +kerning first=260 second=45 amount=-1 +kerning first=355 second=243 amount=-1 +kerning first=205 second=353 amount=-1 +kerning first=278 second=332 amount=-1 +kerning first=366 second=275 amount=-1 +kerning first=1062 second=1028 amount=-1 +kerning first=270 second=70 amount=-1 +kerning first=277 second=353 amount=-1 +kerning first=209 second=71 amount=-1 +kerning first=117 second=275 amount=-1 +kerning first=1048 second=1050 amount=-1 +kerning first=8220 second=368 amount=-1 +kerning first=193 second=362 amount=-1 +kerning first=1034 second=1067 amount=-1 +kerning first=86 second=223 amount=-1 +kerning first=8250 second=67 amount=-1 +kerning first=368 second=45 amount=-2 +kerning first=1030 second=1096 amount=-1 +kerning first=219 second=97 amount=-1 +kerning first=85 second=225 amount=-1 +kerning first=77 second=323 amount=-1 +kerning first=263 second=223 amount=-1 +kerning first=106 second=243 amount=-1 +kerning first=84 second=226 amount=-1 +kerning first=70 second=243 amount=-1 +kerning first=274 second=370 amount=-1 +kerning first=197 second=107 amount=-1 +kerning first=45 second=302 amount=-1 +kerning first=228 second=122 amount=-1 +kerning first=1071 second=1080 amount=-1 +kerning first=310 second=370 amount=-1 +kerning first=323 second=232 amount=-1 +kerning first=81 second=302 amount=-1 +kerning first=87 second=122 amount=-1 +kerning first=202 second=370 amount=-1 +kerning first=364 second=337 amount=-1 +kerning first=287 second=232 amount=-1 +kerning first=78 second=336 amount=-1 +kerning first=218 second=323 amount=-1 +kerning first=328 second=337 amount=-1 +kerning first=251 second=232 amount=-1 +kerning first=117 second=234 amount=-1 +kerning first=219 second=336 amount=-1 +kerning first=346 second=370 amount=-1 +kerning first=220 second=337 amount=-1 +kerning first=217 second=317 amount=-1 +kerning first=218 second=75 amount=-1 +kerning first=362 second=323 amount=-1 +kerning first=241 second=119 amount=-1 +kerning first=8217 second=277 amount=-1 +kerning first=327 second=336 amount=-1 +kerning first=242 second=8250 amount=-1 +kerning first=201 second=249 amount=-1 +kerning first=8222 second=122 amount=-1 +kerning first=1030 second=1105 amount=-1 +kerning first=1060 second=1041 amount=-1 +kerning first=101 second=8250 amount=-1 +kerning first=65 second=8250 amount=-1 +kerning first=266 second=314 amount=-1 +kerning first=264 second=122 amount=-1 +kerning first=259 second=234 amount=-1 +kerning first=110 second=232 amount=-1 +kerning first=230 second=314 amount=-1 +kerning first=1047 second=1071 amount=-1 +kerning first=344 second=45 amount=-1 +kerning first=74 second=232 amount=-1 +kerning first=194 second=314 amount=-1 +kerning first=296 second=72 amount=-1 +kerning first=72 second=267 amount=-1 +kerning first=108 second=267 amount=-1 +kerning first=65 second=105 amount=-1 +kerning first=281 second=98 amount=-1 +kerning first=217 second=110 amount=-1 +kerning first=325 second=110 amount=-1 +kerning first=289 second=110 amount=-1 +kerning first=368 second=72 amount=-1 +kerning first=368 second=296 amount=-1 +kerning first=1049 second=1036 amount=-1 +kerning first=302 second=114 amount=-1 +kerning first=1048 second=1079 amount=-1 +kerning first=199 second=225 amount=-1 +kerning first=72 second=323 amount=-1 +kerning first=266 second=114 amount=-1 +kerning first=72 second=103 amount=-1 +kerning first=264 second=290 amount=-1 +kerning first=374 second=114 amount=-1 +kerning first=1068 second=1062 amount=-1 +kerning first=302 second=211 amount=-1 +kerning first=338 second=114 amount=-1 +kerning first=330 second=302 amount=-1 +kerning first=330 second=231 amount=-1 +kerning first=249 second=267 amount=-1 +kerning first=89 second=114 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=218 second=115 amount=-1 +kerning first=230 second=114 amount=-1 +kerning first=1038 second=1046 amount=-1 +kerning first=243 second=318 amount=-1 +kerning first=229 second=335 amount=-1 +kerning first=194 second=114 amount=-1 +kerning first=99 second=8250 amount=-1 +kerning first=279 second=318 amount=-1 +kerning first=77 second=69 amount=-1 +kerning first=327 second=219 amount=-1 +kerning first=339 second=273 amount=-1 +kerning first=77 second=296 amount=-1 +kerning first=204 second=227 amount=-1 +kerning first=267 second=273 amount=-1 +kerning first=231 second=273 amount=-1 +kerning first=290 second=296 amount=-1 +kerning first=350 second=78 amount=-1 +kerning first=1059 second=1096 amount=-1 +kerning first=225 second=108 amount=-1 +kerning first=346 second=117 amount=-1 +kerning first=218 second=296 amount=-1 +kerning first=364 second=364 amount=-1 +kerning first=245 second=44 amount=-1 +kerning first=354 second=111 amount=-1 +kerning first=75 second=218 amount=-1 +kerning first=281 second=44 amount=-1 +kerning first=362 second=296 amount=-1 +kerning first=278 second=78 amount=-1 +kerning first=209 second=44 amount=-1 +kerning first=1047 second=1098 amount=-1 +kerning first=304 second=355 amount=-1 +kerning first=366 second=248 amount=-1 +kerning first=73 second=334 amount=-1 +kerning first=327 second=282 amount=-1 +kerning first=232 second=355 amount=-1 +kerning first=83 second=72 amount=-1 +kerning first=353 second=44 amount=-1 +kerning first=1041 second=1024 amount=-1 +kerning first=219 second=282 amount=-1 +kerning first=230 second=287 amount=-1 +kerning first=187 second=288 amount=-1 +kerning first=45 second=221 amount=-2 +kerning first=1076 second=1091 amount=-1 +kerning first=82 second=288 amount=-1 +kerning first=78 second=282 amount=-1 +kerning first=85 second=352 amount=-1 +kerning first=354 second=230 amount=-1 +kerning first=67 second=346 amount=-1 +kerning first=8222 second=382 amount=-1 +kerning first=1059 second=1089 amount=-1 +kerning first=217 second=83 amount=-1 +kerning first=219 second=331 amount=-1 +kerning first=1038 second=1073 amount=-1 +kerning first=351 second=291 amount=-1 +kerning first=262 second=352 amount=-1 +kerning first=194 second=87 amount=-1 +kerning first=325 second=83 amount=-1 +kerning first=279 second=291 amount=-1 +kerning first=243 second=291 amount=-1 +kerning first=370 second=352 amount=-1 +kerning first=307 second=99 amount=-1 +kerning first=298 second=352 amount=-1 +kerning first=200 second=76 amount=-1 +kerning first=268 second=282 amount=-1 +kerning first=1050 second=1091 amount=-1 +kerning first=334 second=325 amount=-1 +kerning first=298 second=325 amount=-1 +kerning first=199 second=279 amount=-1 +kerning first=347 second=187 amount=-1 +kerning first=350 second=278 amount=-1 +kerning first=248 second=108 amount=-1 +kerning first=231 second=8218 amount=-1 +kerning first=370 second=325 amount=-1 +kerning first=78 second=211 amount=-1 +kerning first=1077 second=1119 amount=-1 +kerning first=70 second=211 amount=-1 +kerning first=78 second=68 amount=-1 +kerning first=77 second=269 amount=-1 +kerning first=210 second=84 amount=-1 +kerning first=219 second=323 amount=-1 +kerning first=8217 second=226 amount=-1 +kerning first=221 second=71 amount=-1 +kerning first=88 second=362 amount=-1 +kerning first=98 second=187 amount=-1 +kerning first=218 second=269 amount=-1 +kerning first=224 second=99 amount=-1 +kerning first=97 second=316 amount=-1 +kerning first=275 second=187 amount=-1 +kerning first=362 second=269 amount=-1 +kerning first=81 second=75 amount=-1 +kerning first=232 second=382 amount=-1 +kerning first=217 second=371 amount=-1 +kerning first=368 second=99 amount=-1 +kerning first=1044 second=1082 amount=-1 +kerning first=268 second=382 amount=-1 +kerning first=203 second=187 amount=-1 +kerning first=198 second=266 amount=-1 +kerning first=304 second=382 amount=-1 +kerning first=1062 second=1082 amount=-1 +kerning first=296 second=99 amount=-1 +kerning first=326 second=269 amount=-1 +kerning first=8250 second=86 amount=-2 +kerning first=89 second=260 amount=-1 +kerning first=200 second=117 amount=-1 +kerning first=1076 second=1083 amount=-1 +kerning first=366 second=8220 amount=-1 +kerning first=205 second=380 amount=-1 +kerning first=330 second=248 amount=-1 +kerning first=1059 second=1116 amount=-1 +kerning first=277 second=380 amount=-1 +kerning first=66 second=350 amount=-1 +kerning first=288 second=218 amount=-1 +kerning first=1067 second=1030 amount=-1 +kerning first=275 second=103 amount=-1 +kerning first=1068 second=1043 amount=-1 +kerning first=1038 second=1100 amount=-1 +kerning first=366 second=75 amount=-1 +kerning first=330 second=75 amount=-1 +kerning first=117 second=248 amount=-1 +kerning first=207 second=264 amount=-1 +kerning first=374 second=260 amount=-1 +kerning first=264 second=209 amount=-1 +kerning first=81 second=8220 amount=-2 +kerning first=362 second=69 amount=-1 +kerning first=85 second=325 amount=-1 +kerning first=66 second=193 amount=-1 +kerning first=220 second=364 amount=-1 +kerning first=66 second=264 amount=-1 +kerning first=70 second=270 amount=-1 +kerning first=270 second=66 amount=-1 +kerning first=99 second=367 amount=-1 +kerning first=86 second=196 amount=-1 +kerning first=258 second=8220 amount=-2 +kerning first=65 second=251 amount=-1 +kerning first=222 second=8220 amount=-2 +kerning first=218 second=69 amount=-1 +kerning first=79 second=364 amount=-1 +kerning first=198 second=66 amount=-1 +kerning first=262 second=325 amount=-1 +kerning first=211 second=270 amount=-1 +kerning first=100 second=380 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=1052 second=1073 amount=-1 +kerning first=335 second=8217 amount=-2 +kerning first=193 second=264 amount=-1 +kerning first=350 second=8221 amount=-1 +kerning first=355 second=351 amount=-1 +kerning first=101 second=251 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=270 second=364 amount=-1 +kerning first=88 second=264 amount=-1 +kerning first=269 second=122 amount=-1 +kerning first=1055 second=1034 amount=-1 +kerning first=283 second=351 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=350 second=251 amount=-1 +kerning first=204 second=69 amount=-1 +kerning first=198 second=364 amount=-1 +kerning first=252 second=277 amount=-1 +kerning first=108 second=316 amount=-1 +kerning first=278 second=251 amount=-1 +kerning first=263 second=8217 amount=-2 +kerning first=275 second=355 amount=-1 +kerning first=8218 second=254 amount=-1 +kerning first=314 second=251 amount=-1 +kerning first=1065 second=1060 amount=-1 +kerning first=252 second=232 amount=-1 +kerning first=325 second=273 amount=-1 +kerning first=70 second=351 amount=-1 +kerning first=85 second=8221 amount=-1 +kerning first=72 second=99 amount=-1 +kerning first=374 second=65 amount=-1 +kerning first=121 second=8221 amount=-2 +kerning first=69 second=355 amount=-1 +kerning first=1041 second=1051 amount=-1 +kerning first=226 second=8221 amount=-2 +kerning first=1064 second=1064 amount=-1 +kerning first=221 second=193 amount=-1 +kerning first=249 second=99 amount=-1 +kerning first=211 second=351 amount=-1 +kerning first=204 second=286 amount=-1 +kerning first=218 second=242 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=77 second=242 amount=-1 +kerning first=356 second=347 amount=-1 +kerning first=326 second=242 amount=-1 +kerning first=8250 second=365 amount=-1 +kerning first=1056 second=1030 amount=-1 +kerning first=282 second=171 amount=-1 +kerning first=362 second=242 amount=-1 +kerning first=1066 second=1056 amount=-1 +kerning first=354 second=171 amount=-1 +kerning first=264 second=78 amount=-1 +kerning first=199 second=333 amount=-1 +kerning first=370 second=113 amount=-1 +kerning first=70 second=8250 amount=-2 +kerning first=65 second=118 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=205 second=282 amount=-1 +kerning first=330 second=346 amount=-1 +kerning first=275 second=100 amount=-1 +kerning first=230 second=233 amount=-1 +kerning first=8218 second=117 amount=-1 +kerning first=86 second=8217 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=122 second=8217 amount=-1 +kerning first=1049 second=1091 amount=-1 +kerning first=69 second=171 amount=-1 +kerning first=211 second=310 amount=-1 +kerning first=374 second=233 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=266 second=233 amount=-1 +kerning first=302 second=233 amount=-1 +kerning first=74 second=71 amount=-1 +kerning first=1056 second=1108 amount=-1 +kerning first=298 second=330 amount=-1 +kerning first=1069 second=1034 amount=-1 +kerning first=325 second=246 amount=-1 +kerning first=73 second=68 amount=-1 +kerning first=356 second=103 amount=-1 +kerning first=289 second=246 amount=-1 +kerning first=80 second=220 amount=-1 +kerning first=246 second=382 amount=-1 +kerning first=206 second=224 amount=-1 +kerning first=211 second=194 amount=-1 +kerning first=217 second=246 amount=-1 +kerning first=248 second=103 amount=-1 +kerning first=368 second=365 amount=-1 +kerning first=346 second=77 amount=-1 +kerning first=375 second=45 amount=-1 +kerning first=354 second=382 amount=-1 +kerning first=85 second=330 amount=-1 +kerning first=108 second=289 amount=-1 +kerning first=253 second=316 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=263 second=109 amount=-1 +kerning first=1078 second=1074 amount=-1 +kerning first=271 second=333 amount=-1 +kerning first=70 second=194 amount=-1 +kerning first=1068 second=1048 amount=-1 +kerning first=307 second=333 amount=-1 +kerning first=214 second=68 amount=-1 +kerning first=370 second=330 amount=-1 +kerning first=119 second=365 amount=-1 +kerning first=8220 second=260 amount=-2 +kerning first=271 second=171 amount=-1 +kerning first=286 second=68 amount=-1 +kerning first=83 second=365 amount=-1 +kerning first=296 second=334 amount=-1 +kerning first=73 second=339 amount=-1 +kerning first=204 second=313 amount=-1 +kerning first=251 second=281 amount=-1 +kerning first=1085 second=1095 amount=-1 +kerning first=287 second=281 amount=-1 +kerning first=334 second=86 amount=-1 +kerning first=212 second=347 amount=-1 +kerning first=72 second=355 amount=-1 +kerning first=323 second=281 amount=-1 +kerning first=1033 second=1041 amount=-1 +kerning first=272 second=8220 amount=-2 +kerning first=112 second=8218 amount=-1 +kerning first=197 second=211 amount=-1 +kerning first=87 second=353 amount=-1 +kerning first=380 second=8220 amount=-1 +kerning first=323 second=270 amount=-1 +kerning first=344 second=8220 amount=-1 +kerning first=1031 second=1025 amount=-1 +kerning first=316 second=277 amount=-1 +kerning first=274 second=77 amount=-1 +kerning first=234 second=120 amount=-1 +kerning first=202 second=77 amount=-1 +kerning first=187 second=315 amount=-1 +kerning first=250 second=339 amount=-1 +kerning first=8218 second=105 amount=-1 +kerning first=8217 second=326 amount=-1 +kerning first=74 second=281 amount=-1 +kerning first=1052 second=1100 amount=-1 +kerning first=1070 second=1070 amount=-1 +kerning first=110 second=281 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=201 second=298 amount=-1 +kerning first=272 second=356 amount=-1 +kerning first=68 second=202 amount=-1 +kerning first=1053 second=1042 amount=-1 +kerning first=288 second=8249 amount=-1 +kerning first=78 second=368 amount=-1 +kerning first=204 second=232 amount=-1 +kerning first=302 second=206 amount=-1 +kerning first=105 second=232 amount=-1 +kerning first=324 second=8249 amount=-1 +kerning first=284 second=76 amount=-1 +kerning first=338 second=206 amount=-1 +kerning first=370 second=357 amount=-1 +kerning first=99 second=232 amount=-1 +kerning first=74 second=335 amount=-1 +kerning first=1028 second=1118 amount=-1 +kerning first=219 second=368 amount=-1 +kerning first=217 second=219 amount=-1 +kerning first=266 second=206 amount=-1 +kerning first=101 second=111 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=262 second=357 amount=-1 +kerning first=8250 second=121 amount=-1 +kerning first=110 second=335 amount=-1 +kerning first=1064 second=1118 amount=-1 +kerning first=251 second=335 amount=-1 +kerning first=240 second=232 amount=-1 +kerning first=298 second=357 amount=-1 +kerning first=203 second=344 amount=-1 +kerning first=1033 second=1044 amount=-1 +kerning first=344 second=85 amount=-1 +kerning first=45 second=71 amount=-1 +kerning first=234 second=234 amount=-1 +kerning first=264 second=241 amount=-1 +kerning first=272 second=85 amount=-1 +kerning first=8250 second=338 amount=-1 +kerning first=67 second=102 amount=-1 +kerning first=72 second=262 amount=-1 +kerning first=200 second=85 amount=-1 +kerning first=327 second=368 amount=-1 +kerning first=1069 second=1044 amount=-1 +kerning first=252 second=8249 amount=-1 +kerning first=368 second=67 amount=-1 +kerning first=1042 second=1042 amount=-1 +kerning first=296 second=67 amount=-1 +kerning first=275 second=46 amount=-1 +kerning first=286 second=366 amount=-1 +kerning first=330 second=216 amount=-1 +kerning first=70 second=378 amount=-1 +kerning first=347 second=46 amount=-1 +kerning first=258 second=213 amount=-1 +kerning first=214 second=366 amount=-1 +kerning first=73 second=366 amount=-1 +kerning first=1036 second=1081 amount=-1 +kerning first=366 second=216 amount=-1 +kerning first=87 second=241 amount=-1 +kerning first=85 second=357 amount=-1 +kerning first=296 second=284 amount=-1 +kerning first=86 second=353 amount=-1 +kerning first=89 second=363 amount=-1 +kerning first=202 second=325 amount=-1 +kerning first=212 second=370 amount=-1 +kerning first=74 second=103 amount=-1 +kerning first=195 second=252 amount=-1 +kerning first=354 second=225 amount=-1 +kerning first=207 second=350 amount=-1 +kerning first=194 second=363 amount=-1 +kerning first=211 second=80 amount=-1 +kerning first=230 second=363 amount=-1 +kerning first=209 second=229 amount=-1 +kerning first=263 second=353 amount=-1 +kerning first=1065 second=1114 amount=-1 +kerning first=45 second=216 amount=-1 +kerning first=70 second=80 amount=-1 +kerning first=75 second=8222 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=270 second=207 amount=-1 +kerning first=204 second=73 amount=-1 +kerning first=70 second=107 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=1033 second=1071 amount=-1 +kerning first=256 second=8220 amount=-2 +kerning first=119 second=311 amount=-1 +kerning first=8217 second=353 amount=-1 +kerning first=280 second=70 amount=-1 +kerning first=118 second=369 amount=-1 +kerning first=283 second=378 amount=-1 +kerning first=298 second=113 amount=-1 +kerning first=205 second=201 amount=-1 +kerning first=1041 second=1070 amount=-1 +kerning first=310 second=44 amount=-1 +kerning first=226 second=113 amount=-1 +kerning first=288 second=8222 amount=-1 +kerning first=262 second=113 amount=-1 +kerning first=235 second=116 amount=-1 +kerning first=216 second=8222 amount=-1 +kerning first=1049 second=1068 amount=-1 +kerning first=199 second=116 amount=-1 +kerning first=326 second=118 amount=-1 +kerning first=203 second=317 amount=-1 +kerning first=111 second=8222 amount=-1 +kerning first=85 second=113 amount=-1 +kerning first=198 second=207 amount=-1 +kerning first=99 second=259 amount=-1 +kerning first=264 second=268 amount=-1 +kerning first=8217 second=109 amount=-1 +kerning first=192 second=268 amount=-1 +kerning first=1036 second=1108 amount=-1 +kerning first=195 second=332 amount=-1 +kerning first=8217 second=194 amount=-2 +kerning first=338 second=284 amount=-1 +kerning first=1054 second=1038 amount=-1 +kerning first=68 second=256 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=200 second=302 amount=-1 +kerning first=1053 second=1096 amount=-1 +kerning first=193 second=210 amount=-1 +kerning first=323 second=335 amount=-1 +kerning first=287 second=335 amount=-1 +kerning first=88 second=210 amount=-1 +kerning first=210 second=198 amount=-1 +kerning first=203 second=73 amount=-1 +kerning first=324 second=277 amount=-1 +kerning first=73 second=122 amount=-1 +kerning first=264 second=234 amount=-1 +kerning first=1044 second=1114 amount=-1 +kerning first=87 second=268 amount=-1 +kerning first=325 second=219 amount=-1 +kerning first=283 second=107 amount=-1 +kerning first=202 second=213 amount=-1 +kerning first=264 second=187 amount=-1 +kerning first=194 second=336 amount=-1 +kerning first=66 second=66 amount=-1 +kerning first=79 second=88 amount=-1 +kerning first=192 second=187 amount=-1 +kerning first=1028 second=1080 amount=-1 +kerning first=354 second=279 amount=-1 +kerning first=266 second=336 amount=-1 +kerning first=228 second=187 amount=-1 +kerning first=263 second=117 amount=-1 +kerning first=302 second=336 amount=-1 +kerning first=74 second=200 amount=-1 +kerning first=81 second=270 amount=-1 +kerning first=204 second=362 amount=-1 +kerning first=241 second=118 amount=-1 +kerning first=338 second=336 amount=-1 +kerning first=310 second=213 amount=-1 +kerning first=8217 second=245 amount=-1 +kerning first=267 second=8250 amount=-1 +kerning first=374 second=336 amount=-1 +kerning first=274 second=213 amount=-1 +kerning first=336 second=187 amount=-1 +kerning first=45 second=270 amount=-1 +kerning first=207 second=323 amount=-1 +kerning first=209 second=283 amount=-1 +kerning first=194 second=119 amount=-1 +kerning first=105 second=279 amount=-1 +kerning first=356 second=244 amount=-1 +kerning first=192 second=371 amount=-1 +kerning first=82 second=266 amount=-1 +kerning first=121 second=314 amount=-1 +kerning first=187 second=266 amount=-1 +kerning first=87 second=187 amount=-1 +kerning first=206 second=327 amount=-1 +kerning first=323 second=200 amount=-1 +kerning first=73 second=204 amount=-1 +kerning first=278 second=327 amount=-1 +kerning first=368 second=262 amount=-1 +kerning first=106 second=248 amount=-1 +kerning first=291 second=314 amount=-1 +kerning first=268 second=79 amount=-1 +kerning first=350 second=327 amount=-1 +kerning first=70 second=248 amount=-1 +kerning first=255 second=314 amount=-1 +kerning first=304 second=79 amount=-1 +kerning first=1060 second=1036 amount=-1 +kerning first=327 second=171 amount=-1 +kerning first=1056 second=1052 amount=-1 +kerning first=206 second=110 amount=-1 +kerning first=274 second=327 amount=-1 +kerning first=68 second=66 amount=-1 +kerning first=1070 second=1062 amount=-1 +kerning first=281 second=283 amount=-1 +kerning first=120 second=318 amount=-1 +kerning first=196 second=79 amount=-1 +kerning first=87 second=371 amount=-1 +kerning first=113 second=318 amount=-1 +kerning first=229 second=245 amount=-1 +kerning first=67 second=70 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=111 second=380 amount=-1 +kerning first=254 second=318 amount=-1 +kerning first=193 second=367 amount=-1 +kerning first=217 second=192 amount=-1 +kerning first=267 second=305 amount=-1 +kerning first=328 second=231 amount=-1 +kerning first=339 second=44 amount=-1 +kerning first=231 second=305 amount=-1 +kerning first=330 second=270 amount=-1 +kerning first=203 second=209 amount=-1 +kerning first=1064 second=1089 amount=-1 +kerning first=378 second=8249 amount=-1 +kerning first=1047 second=1049 amount=-1 +kerning first=366 second=270 amount=-1 +kerning first=197 second=356 amount=-1 +kerning first=1048 second=1072 amount=-1 +kerning first=100 second=114 amount=-1 +kerning first=8217 second=218 amount=-1 +kerning first=374 second=363 amount=-1 +kerning first=68 second=310 amount=-1 +kerning first=205 second=114 amount=-1 +kerning first=282 second=252 amount=-1 +kerning first=241 second=8249 amount=-1 +kerning first=218 second=101 amount=-1 +kerning first=219 second=79 amount=-1 +kerning first=199 second=284 amount=-1 +kerning first=364 second=115 amount=-1 +kerning first=326 second=101 amount=-1 +kerning first=79 second=115 amount=-1 +kerning first=242 second=114 amount=-1 +kerning first=204 second=205 amount=-1 +kerning first=66 second=296 amount=-1 +kerning first=65 second=354 amount=-1 +kerning first=99 second=335 amount=-1 +kerning first=71 second=217 amount=-1 +kerning first=362 second=101 amount=-1 +kerning first=220 second=115 amount=-1 +kerning first=192 second=214 amount=-1 +kerning first=250 second=231 amount=-1 +kerning first=1056 second=1036 amount=-1 +kerning first=212 second=217 amount=-1 +kerning first=87 second=214 amount=-1 +kerning first=232 second=106 amount=-1 +kerning first=207 second=296 amount=-1 +kerning first=284 second=217 amount=-1 +kerning first=210 second=89 amount=-1 +kerning first=229 second=8220 amount=-2 +kerning first=73 second=231 amount=-1 +kerning first=109 second=231 amount=-1 +kerning first=264 second=214 amount=-1 +kerning first=264 second=344 amount=-1 +kerning first=209 second=310 amount=-1 +kerning first=69 second=252 amount=-1 +kerning first=100 second=8249 amount=-1 +kerning first=242 second=187 amount=-1 +kerning first=330 second=243 amount=-1 +kerning first=283 second=275 amount=-1 +kerning first=77 second=345 amount=-1 +kerning first=288 second=223 amount=-1 +kerning first=370 second=249 amount=-1 +kerning first=1041 second=1046 amount=-1 +kerning first=355 second=275 amount=-1 +kerning first=366 second=243 amount=-1 +kerning first=85 second=249 amount=-1 +kerning first=108 second=45 amount=-1 +kerning first=198 second=71 amount=-1 +kerning first=1049 second=1043 amount=-1 +kerning first=296 second=235 amount=-1 +kerning first=121 second=249 amount=-1 +kerning first=255 second=287 amount=-1 +kerning first=106 second=275 amount=-1 +kerning first=218 second=345 amount=-1 +kerning first=187 second=223 amount=-1 +kerning first=254 second=345 amount=-1 +kerning first=368 second=235 amount=-1 +kerning first=72 second=45 amount=-1 +kerning first=290 second=345 amount=-1 +kerning first=8218 second=268 amount=-1 +kerning first=326 second=345 amount=-1 +kerning first=362 second=345 amount=-1 +kerning first=200 second=213 amount=-1 +kerning first=81 second=80 amount=-1 +kerning first=363 second=287 amount=-1 +kerning first=70 second=275 amount=-1 +kerning first=206 second=83 amount=-1 +kerning first=45 second=80 amount=-1 +kerning first=249 second=45 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=330 second=80 amount=-1 +kerning first=1118 second=1080 amount=-1 +kerning first=117 second=243 amount=-1 +kerning first=1046 second=1080 amount=-1 +kerning first=89 second=336 amount=-1 +kerning first=1049 second=1083 amount=-1 +kerning first=107 second=44 amount=-1 +kerning first=281 second=337 amount=-1 +kerning first=68 second=195 amount=-1 +kerning first=205 second=304 amount=-1 +kerning first=82 second=213 amount=-1 +kerning first=86 second=245 amount=-1 +kerning first=1031 second=1079 amount=-1 +kerning first=209 second=337 amount=-1 +kerning first=200 second=199 amount=-1 +kerning first=82 second=212 amount=-1 +kerning first=350 second=8218 amount=-1 +kerning first=104 second=337 amount=-1 +kerning first=77 second=74 amount=-1 +kerning first=245 second=120 amount=-1 +kerning first=282 second=364 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=344 second=199 amount=-1 +kerning first=281 second=120 amount=-1 +kerning first=218 second=74 amount=-1 +kerning first=302 second=315 amount=-1 +kerning first=45 second=324 amount=-1 +kerning first=101 second=8218 amount=-1 +kerning first=75 second=220 amount=-1 +kerning first=362 second=74 amount=-1 +kerning first=1042 second=1082 amount=-1 +kerning first=279 second=269 amount=-1 +kerning first=242 second=8218 amount=-1 +kerning first=227 second=245 amount=-1 +kerning first=1039 second=1037 amount=-1 +kerning first=119 second=250 amount=-1 +kerning first=207 second=269 amount=-1 +kerning first=199 second=203 amount=-1 +kerning first=283 second=8220 amount=-2 +kerning first=221 second=111 amount=-1 +kerning first=213 second=72 amount=-1 +kerning first=1034 second=1037 amount=-1 +kerning first=257 second=111 amount=-1 +kerning first=72 second=72 amount=-1 +kerning first=355 second=8220 amount=-1 +kerning first=1042 second=1101 amount=-1 +kerning first=1091 second=1088 amount=-1 +kerning first=289 second=105 amount=-1 +kerning first=1078 second=1101 amount=-1 +kerning first=365 second=111 amount=-1 +kerning first=287 second=254 amount=-1 +kerning first=230 second=249 amount=-1 +kerning first=72 second=370 amount=-1 +kerning first=212 second=374 amount=-1 +kerning first=219 second=260 amount=-1 +kerning first=198 second=315 amount=-1 +kerning first=275 second=263 amount=-1 +kerning first=277 second=114 amount=-1 +kerning first=187 second=212 amount=-1 +kerning first=97 second=267 amount=-1 +kerning first=1059 second=1094 amount=-1 +kerning first=241 second=114 amount=-1 +kerning first=1043 second=1097 amount=-1 +kerning first=70 second=8220 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=211 second=8220 amount=-2 +kerning first=258 second=253 amount=-1 +kerning first=213 second=370 amount=-1 +kerning first=270 second=315 amount=-1 +kerning first=224 second=316 amount=-1 +kerning first=323 second=227 amount=-1 +kerning first=1067 second=1052 amount=-1 +kerning first=317 second=364 amount=-1 +kerning first=232 second=337 amount=-1 +kerning first=267 second=251 amount=-1 +kerning first=201 second=81 amount=-1 +kerning first=195 second=251 amount=-1 +kerning first=1064 second=1105 amount=-1 +kerning first=209 second=364 amount=-1 +kerning first=375 second=251 amount=-1 +kerning first=206 second=273 amount=-1 +kerning first=101 second=273 amount=-1 +kerning first=205 second=331 amount=-1 +kerning first=339 second=251 amount=-1 +kerning first=270 second=44 amount=-1 +kerning first=283 second=248 amount=-1 +kerning first=204 second=357 amount=-1 +kerning first=80 second=355 amount=-1 +kerning first=325 second=78 amount=-1 +kerning first=355 second=248 amount=-1 +kerning first=234 second=44 amount=-1 +kerning first=290 second=69 amount=-1 +kerning first=1107 second=1085 amount=-1 +kerning first=207 second=242 amount=-1 +kerning first=338 second=282 amount=-1 +kerning first=302 second=282 amount=-1 +kerning first=266 second=282 amount=-1 +kerning first=1049 second=1067 amount=-1 +kerning first=1052 second=1024 amount=-1 +kerning first=8218 second=214 amount=-1 +kerning first=279 second=242 amount=-1 +kerning first=200 second=8220 amount=-1 +kerning first=74 second=227 amount=-1 +kerning first=78 second=233 amount=-1 +kerning first=313 second=87 amount=-1 +kerning first=199 second=230 amount=-1 +kerning first=305 second=99 amount=-1 +kerning first=219 second=233 amount=-1 +kerning first=1027 second=1073 amount=-1 +kerning first=8222 second=220 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/FT-FreeSerif16I.png b/jme3-examples/src/main/resources/jme3test/font/FT-FreeSerif16I.png new file mode 100644 index 000000000..a9cf3d830 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FT-FreeSerif16I.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif.ttf b/jme3-examples/src/main/resources/jme3test/font/FreeSerif.ttf new file mode 100644 index 000000000..b8906f505 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif.ttf differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif16I.fnt b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16I.fnt new file mode 100644 index 000000000..4ff598269 --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16I.fnt @@ -0,0 +1,8029 @@ +info face="Free Serif" size=16 bold=0 italic=1 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,1 spacing=-2,-2 +common lineHeight=22 base=16 scaleW=512 scaleH=512 pages=1 packed=0 +page id=0 file="FreeSerif16I.png" +chars count=821 +char id=0 x=138 y=177 width=13 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=13 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=33 x=294 y=106 width=6 height=14 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=34 x=252 y=278 width=7 height=7 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=35 x=151 y=177 width=13 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=36 x=282 y=57 width=11 height=16 xoffset=-1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=37 x=300 y=106 width=14 height=14 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=38 x=314 y=106 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=39 x=505 y=256 width=4 height=7 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0 +char id=40 x=293 y=57 width=9 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=41 x=302 y=57 width=9 height=16 xoffset=-2 yoffset=4 xadvance=5 page=0 chnl=0 +char id=42 x=144 y=278 width=9 height=9 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=43 x=0 y=256 width=11 height=11 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=44 x=505 y=135 width=6 height=7 xoffset=-1 yoffset=13 xadvance=4 page=0 chnl=0 +char id=45 x=34 y=288 width=7 height=4 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 +char id=46 x=451 y=278 width=5 height=5 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 +char id=47 x=328 y=106 width=12 height=14 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=48 x=340 y=106 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=49 x=164 y=177 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=50 x=172 y=177 width=11 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=51 x=350 y=106 width=10 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=52 x=183 y=177 width=11 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=53 x=360 y=106 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=54 x=371 y=106 width=12 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=55 x=383 y=106 width=12 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=56 x=395 y=106 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=57 x=405 y=106 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=58 x=504 y=230 width=6 height=11 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 +char id=59 x=194 y=177 width=7 height=13 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=60 x=129 y=243 width=13 height=12 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=61 x=222 y=278 width=12 height=8 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=62 x=142 y=243 width=12 height=12 xoffset=-1 yoffset=6 xadvance=9 page=0 chnl=0 +char id=63 x=416 y=106 width=10 height=14 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=64 x=426 y=106 width=15 height=14 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=65 x=201 y=177 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=66 x=215 y=177 width=13 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=67 x=441 y=106 width=13 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=68 x=228 y=177 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=69 x=242 y=177 width=13 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=70 x=255 y=177 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=71 x=454 y=106 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=72 x=269 y=177 width=17 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=73 x=286 y=177 width=10 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=74 x=468 y=106 width=11 height=14 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=75 x=296 y=177 width=15 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=76 x=311 y=177 width=12 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=77 x=323 y=177 width=19 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=78 x=479 y=106 width=17 height=14 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=79 x=496 y=106 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=80 x=342 y=177 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=81 x=311 y=57 width=14 height=16 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=82 x=356 y=177 width=13 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=83 x=0 y=121 width=11 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=84 x=369 y=177 width=14 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=85 x=11 y=121 width=15 height=14 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=86 x=26 y=121 width=14 height=14 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=87 x=40 y=121 width=19 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 +char id=88 x=383 y=177 width=16 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=89 x=399 y=177 width=15 height=13 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=90 x=414 y=177 width=15 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=91 x=325 y=57 width=9 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=92 x=59 y=121 width=6 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=93 x=334 y=57 width=9 height=16 xoffset=-2 yoffset=4 xadvance=5 page=0 chnl=0 +char id=94 x=153 y=278 width=9 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=95 x=108 y=288 width=11 height=3 xoffset=-2 yoffset=16 xadvance=8 page=0 chnl=0 +char id=96 x=456 y=278 width=6 height=5 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=97 x=11 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=98 x=65 y=121 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=99 x=21 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=100 x=75 y=121 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=101 x=31 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=102 x=429 y=177 width=12 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=103 x=86 y=121 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=104 x=441 y=177 width=10 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=105 x=451 y=177 width=7 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=106 x=120 y=22 width=10 height=17 xoffset=-3 yoffset=4 xadvance=4 page=0 chnl=0 +char id=107 x=458 y=177 width=11 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=108 x=469 y=177 width=7 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=109 x=182 y=267 width=15 height=10 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=110 x=197 y=267 width=10 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=111 x=41 y=256 width=10 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=112 x=97 y=121 width=12 height=14 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=113 x=109 y=121 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=114 x=207 y=267 width=10 height=10 xoffset=-1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=115 x=51 y=256 width=9 height=11 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=116 x=476 y=177 width=8 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=117 x=60 y=256 width=9 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=118 x=69 y=256 width=10 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=119 x=79 y=256 width=14 height=11 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=120 x=217 y=267 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=121 x=120 y=121 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=122 x=228 y=267 width=10 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=123 x=503 y=40 width=8 height=16 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=124 x=131 y=121 width=6 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=125 x=343 y=57 width=8 height=16 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=126 x=381 y=278 width=10 height=6 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=161 x=137 y=121 width=7 height=14 xoffset=-1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=162 x=446 y=90 width=10 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=163 x=144 y=121 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=164 x=93 y=256 width=13 height=11 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=165 x=484 y=177 width=15 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=166 x=155 y=121 width=6 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=167 x=351 y=57 width=9 height=16 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=168 x=41 y=288 width=9 height=4 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=169 x=456 y=90 width=15 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=170 x=259 y=278 width=8 height=7 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=171 x=162 y=278 width=10 height=9 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=172 x=234 y=278 width=11 height=8 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=173 x=50 y=288 width=7 height=4 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 +char id=174 x=471 y=90 width=15 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=175 x=57 y=288 width=9 height=4 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=176 x=267 y=278 width=9 height=7 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=177 x=499 y=177 width=12 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=178 x=172 y=278 width=9 height=9 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=179 x=181 y=278 width=9 height=9 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=180 x=462 y=278 width=8 height=5 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=181 x=161 y=121 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=182 x=360 y=57 width=12 height=16 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=183 x=470 y=278 width=5 height=5 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 +char id=184 x=276 y=278 width=6 height=7 xoffset=-1 yoffset=14 xadvance=5 page=0 chnl=0 +char id=185 x=190 y=278 width=7 height=9 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=186 x=282 y=278 width=9 height=7 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=187 x=197 y=278 width=11 height=9 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=188 x=172 y=121 width=13 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=189 x=185 y=121 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=190 x=199 y=121 width=13 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=191 x=212 y=121 width=8 height=14 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=192 x=130 y=22 width=14 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=193 x=144 y=22 width=15 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=194 x=159 y=22 width=14 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=195 x=372 y=57 width=14 height=16 xoffset=-1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=196 x=386 y=57 width=14 height=16 xoffset=-1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=197 x=173 y=22 width=14 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=198 x=0 y=191 width=17 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=199 x=187 y=22 width=13 height=17 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=200 x=200 y=22 width=13 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=201 x=213 y=22 width=15 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=202 x=228 y=22 width=13 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=203 x=400 y=57 width=15 height=16 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=204 x=241 y=22 width=12 height=17 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=205 x=253 y=22 width=16 height=17 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=206 x=269 y=22 width=12 height=17 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=207 x=415 y=57 width=14 height=16 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=208 x=17 y=191 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=209 x=281 y=22 width=17 height=17 xoffset=-1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=210 x=121 y=0 width=14 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=211 x=135 y=0 width=14 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=212 x=149 y=0 width=14 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=213 x=298 y=22 width=14 height=17 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=214 x=312 y=22 width=14 height=17 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=215 x=238 y=267 width=12 height=10 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=216 x=429 y=57 width=15 height=16 xoffset=-1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=217 x=163 y=0 width=15 height=18 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=218 x=178 y=0 width=15 height=18 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=219 x=193 y=0 width=15 height=18 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=220 x=326 y=22 width=15 height=17 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=221 x=341 y=22 width=15 height=17 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=222 x=31 y=191 width=12 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=223 x=220 y=121 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=224 x=231 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=225 x=241 y=121 width=14 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=226 x=255 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=227 x=265 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=228 x=43 y=191 width=14 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=229 x=486 y=90 width=10 height=15 xoffset=-1 yoffset=3 xadvance=7 page=0 chnl=0 +char id=230 x=106 y=256 width=13 height=11 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=231 x=275 y=121 width=10 height=14 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=232 x=285 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=233 x=295 y=121 width=14 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=234 x=309 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=235 x=57 y=191 width=14 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=236 x=71 y=191 width=11 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=237 x=82 y=191 width=15 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=238 x=97 y=191 width=11 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=239 x=154 y=243 width=11 height=12 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=240 x=319 y=121 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=241 x=108 y=191 width=11 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=242 x=330 y=121 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=243 x=340 y=121 width=14 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=244 x=354 y=121 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=245 x=364 y=121 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=246 x=119 y=191 width=12 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=247 x=165 y=243 width=11 height=12 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=248 x=131 y=191 width=11 height=13 xoffset=-1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=249 x=374 y=121 width=9 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=250 x=383 y=121 width=14 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=251 x=397 y=121 width=9 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=252 x=142 y=191 width=12 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=253 x=356 y=22 width=15 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=254 x=371 y=22 width=12 height=17 xoffset=-2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=255 x=383 y=22 width=13 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=256 x=496 y=90 width=15 height=15 xoffset=-1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=257 x=154 y=191 width=14 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=258 x=396 y=22 width=14 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=259 x=406 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=260 x=444 y=57 width=15 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=261 x=168 y=191 width=10 height=13 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=262 x=208 y=0 width=16 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=263 x=416 y=121 width=15 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=264 x=224 y=0 width=13 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=265 x=431 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=266 x=410 y=22 width=13 height=17 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 +char id=267 x=178 y=191 width=10 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=268 x=237 y=0 width=13 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=269 x=441 y=121 width=12 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=270 x=423 y=22 width=14 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=271 x=453 y=121 width=19 height=14 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=272 x=188 y=191 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=273 x=472 y=121 width=13 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=274 x=0 y=106 width=13 height=15 xoffset=-1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=275 x=202 y=191 width=14 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=276 x=437 y=22 width=13 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=277 x=485 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=278 x=459 y=57 width=13 height=16 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=279 x=216 y=191 width=10 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=280 x=472 y=57 width=13 height=16 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=281 x=226 y=191 width=10 height=13 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=282 x=450 y=22 width=13 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=283 x=495 y=121 width=10 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=284 x=250 y=0 width=14 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=285 x=463 y=22 width=11 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=286 x=264 y=0 width=14 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=287 x=474 y=22 width=11 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=288 x=485 y=22 width=14 height=17 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=289 x=485 y=57 width=11 height=16 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=290 x=278 y=0 width=14 height=18 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=291 x=51 y=0 width=11 height=19 xoffset=-1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=292 x=0 y=40 width=17 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=293 x=499 y=22 width=11 height=17 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=294 x=236 y=191 width=17 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=295 x=253 y=191 width=10 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=296 x=496 y=57 width=12 height=16 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=297 x=176 y=243 width=11 height=12 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=298 x=13 y=106 width=16 height=15 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=299 x=187 y=243 width=14 height=12 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=300 x=17 y=40 width=12 height=17 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=301 x=263 y=191 width=11 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=302 x=0 y=74 width=10 height=16 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=303 x=10 y=74 width=7 height=16 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=304 x=17 y=74 width=10 height=16 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=305 x=250 y=267 width=7 height=10 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=306 x=0 y=135 width=16 height=14 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=307 x=29 y=40 width=11 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=308 x=292 y=0 width=13 height=18 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=309 x=40 y=40 width=14 height=17 xoffset=-3 yoffset=4 xadvance=4 page=0 chnl=0 +char id=310 x=305 y=0 width=15 height=18 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=311 x=320 y=0 width=11 height=18 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=312 x=257 y=267 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=313 x=54 y=40 width=12 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=314 x=66 y=40 width=16 height=17 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=315 x=331 y=0 width=12 height=18 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=316 x=343 y=0 width=7 height=18 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=317 x=274 y=191 width=15 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=318 x=289 y=191 width=15 height=13 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=319 x=304 y=191 width=12 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=320 x=316 y=191 width=9 height=13 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=321 x=325 y=191 width=12 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=322 x=337 y=191 width=9 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=323 x=350 y=0 width=17 height=18 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=324 x=346 y=191 width=15 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=325 x=367 y=0 width=17 height=18 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=326 x=29 y=106 width=10 height=15 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=327 x=384 y=0 width=17 height=18 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=328 x=361 y=191 width=11 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=329 x=372 y=191 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=330 x=16 y=135 width=14 height=14 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=331 x=30 y=135 width=10 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=332 x=27 y=74 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=333 x=382 y=191 width=12 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=334 x=401 y=0 width=14 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=335 x=40 y=135 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=336 x=415 y=0 width=21 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=337 x=50 y=135 width=19 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=338 x=69 y=135 width=18 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 +char id=339 x=119 y=256 width=13 height=11 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=340 x=82 y=40 width=13 height=17 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=341 x=394 y=191 width=14 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=342 x=436 y=0 width=13 height=18 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=343 x=39 y=106 width=10 height=15 xoffset=-1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=344 x=95 y=40 width=13 height=17 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=345 x=408 y=191 width=11 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=346 x=449 y=0 width=15 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=347 x=87 y=135 width=15 height=14 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=348 x=464 y=0 width=11 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=349 x=102 y=135 width=10 height=14 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=350 x=108 y=40 width=11 height=17 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=351 x=112 y=135 width=9 height=14 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=352 x=475 y=0 width=11 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=353 x=121 y=135 width=11 height=14 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=354 x=119 y=40 width=14 height=17 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=355 x=41 y=74 width=9 height=16 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=356 x=133 y=40 width=14 height=17 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=357 x=132 y=135 width=15 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=358 x=419 y=191 width=14 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=359 x=433 y=191 width=9 height=13 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=360 x=147 y=40 width=15 height=17 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=361 x=442 y=191 width=10 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=362 x=50 y=74 width=15 height=16 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=363 x=452 y=191 width=12 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=364 x=486 y=0 width=15 height=18 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=365 x=147 y=135 width=10 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=366 x=0 y=22 width=15 height=18 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=367 x=49 y=106 width=9 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=368 x=15 y=22 width=20 height=18 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=369 x=157 y=135 width=19 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=370 x=65 y=74 width=15 height=16 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=371 x=464 y=191 width=9 height=13 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=372 x=35 y=22 width=19 height=18 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=373 x=176 y=135 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=374 x=162 y=40 width=15 height=17 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=375 x=177 y=40 width=11 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=376 x=80 y=74 width=15 height=16 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=377 x=188 y=40 width=15 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=378 x=473 y=191 width=14 height=13 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=379 x=95 y=74 width=15 height=16 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=380 x=201 y=243 width=10 height=12 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=381 x=203 y=40 width=15 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=382 x=487 y=191 width=10 height=13 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=383 x=497 y=191 width=12 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=884 x=291 y=278 width=7 height=7 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 +char id=885 x=391 y=278 width=6 height=6 xoffset=-1 yoffset=15 xadvance=3 page=0 chnl=0 +char id=890 x=397 y=278 width=6 height=6 xoffset=0 yoffset=15 xadvance=5 page=0 chnl=0 +char id=894 x=0 y=204 width=9 height=13 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=900 x=298 y=278 width=7 height=7 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=0 +char id=901 x=403 y=278 width=9 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=902 x=190 y=135 width=14 height=14 xoffset=-1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=903 x=475 y=278 width=5 height=5 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=904 x=204 y=135 width=19 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=905 x=223 y=135 width=22 height=14 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 +char id=906 x=245 y=135 width=16 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=908 x=58 y=106 width=18 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=910 x=261 y=135 width=18 height=14 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 +char id=911 x=279 y=135 width=16 height=14 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 +char id=912 x=110 y=74 width=8 height=16 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=913 x=9 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=914 x=23 y=204 width=13 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=915 x=36 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=916 x=50 y=204 width=13 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=917 x=63 y=204 width=13 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=918 x=76 y=204 width=15 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=919 x=91 y=204 width=17 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=920 x=295 y=135 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=921 x=108 y=204 width=10 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=922 x=118 y=204 width=15 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=923 x=133 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=924 x=147 y=204 width=19 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=925 x=309 y=135 width=17 height=14 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=926 x=166 y=204 width=13 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=927 x=326 y=135 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=928 x=179 y=204 width=17 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=929 x=196 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=931 x=210 y=204 width=13 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=932 x=223 y=204 width=14 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=933 x=237 y=204 width=14 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=934 x=251 y=204 width=14 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=935 x=265 y=204 width=16 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=936 x=281 y=204 width=17 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=937 x=298 y=204 width=15 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=938 x=118 y=74 width=14 height=16 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=939 x=132 y=74 width=14 height=16 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=940 x=146 y=74 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=941 x=157 y=74 width=10 height=16 xoffset=-1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=942 x=62 y=0 width=10 height=19 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=943 x=167 y=74 width=7 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=944 x=76 y=106 width=10 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=945 x=132 y=256 width=11 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=946 x=218 y=40 width=11 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=947 x=340 y=135 width=10 height=14 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=948 x=350 y=135 width=10 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=949 x=143 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=950 x=501 y=0 width=10 height=18 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=951 x=360 y=135 width=10 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=952 x=370 y=135 width=10 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=953 x=505 y=121 width=6 height=11 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 +char id=954 x=268 y=267 width=11 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=955 x=380 y=135 width=10 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=956 x=390 y=135 width=11 height=14 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=957 x=279 y=267 width=10 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=958 x=229 y=40 width=11 height=17 xoffset=-1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=959 x=153 y=256 width=10 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=960 x=163 y=256 width=14 height=11 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=961 x=401 y=135 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=962 x=412 y=135 width=9 height=14 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=963 x=177 y=256 width=11 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=964 x=188 y=256 width=9 height=11 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=965 x=197 y=256 width=10 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=966 x=421 y=135 width=12 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=967 x=433 y=135 width=12 height=14 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=968 x=174 y=74 width=13 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=969 x=207 y=256 width=13 height=11 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=970 x=445 y=135 width=11 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=971 x=456 y=135 width=12 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=972 x=187 y=74 width=12 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=973 x=86 y=106 width=10 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=974 x=96 y=106 width=13 height=15 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 +char id=976 x=109 y=106 width=10 height=15 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=977 x=119 y=106 width=13 height=15 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=978 x=313 y=204 width=14 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=979 x=468 y=135 width=17 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=980 x=199 y=74 width=14 height=16 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=981 x=213 y=74 width=12 height=16 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=982 x=211 y=243 width=13 height=12 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=983 x=327 y=204 width=10 height=13 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=984 x=337 y=204 width=13 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=985 x=485 y=135 width=10 height=14 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=986 x=350 y=204 width=12 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=987 x=495 y=135 width=10 height=14 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=988 x=362 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=989 x=0 y=149 width=13 height=14 xoffset=-2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=990 x=13 y=149 width=12 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=991 x=240 y=40 width=8 height=17 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=992 x=376 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=993 x=248 y=40 width=12 height=17 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=994 x=260 y=40 width=19 height=17 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=995 x=25 y=149 width=14 height=14 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=996 x=225 y=74 width=13 height=16 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=997 x=39 y=149 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=998 x=238 y=74 width=12 height=16 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=999 x=224 y=243 width=10 height=12 xoffset=-1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=1000 x=132 y=106 width=12 height=15 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1001 x=234 y=243 width=10 height=12 xoffset=-1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=1002 x=50 y=149 width=15 height=14 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1003 x=220 y=256 width=12 height=11 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1004 x=250 y=74 width=15 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1005 x=244 y=243 width=12 height=12 xoffset=-1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=1006 x=54 y=22 width=12 height=18 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=1007 x=265 y=74 width=9 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1008 x=232 y=256 width=10 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1009 x=65 y=149 width=11 height=14 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1010 x=242 y=256 width=9 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1011 x=279 y=40 width=10 height=17 xoffset=-3 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1012 x=76 y=149 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1013 x=251 y=256 width=8 height=11 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1014 x=259 y=256 width=9 height=11 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1015 x=390 y=204 width=12 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1016 x=289 y=40 width=10 height=17 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1017 x=90 y=149 width=13 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1018 x=402 y=204 width=19 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1019 x=103 y=149 width=14 height=14 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1020 x=117 y=149 width=14 height=14 xoffset=-3 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1021 x=131 y=149 width=14 height=14 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1022 x=145 y=149 width=13 height=14 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1023 x=158 y=149 width=14 height=14 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1024 x=299 y=40 width=17 height=17 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1025 x=274 y=74 width=17 height=16 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=1026 x=172 y=149 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1027 x=316 y=40 width=16 height=17 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1028 x=186 y=149 width=13 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1029 x=199 y=149 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1030 x=421 y=204 width=10 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=1031 x=291 y=74 width=15 height=16 xoffset=-1 yoffset=1 xadvance=5 page=0 chnl=0 +char id=1032 x=210 y=149 width=11 height=14 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=1033 x=221 y=149 width=18 height=14 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1034 x=431 y=204 width=18 height=13 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1035 x=239 y=149 width=14 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1036 x=332 y=40 width=16 height=17 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1037 x=348 y=40 width=17 height=17 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1038 x=365 y=40 width=17 height=17 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1039 x=306 y=74 width=17 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1040 x=449 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1041 x=463 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1042 x=477 y=204 width=13 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1043 x=490 y=204 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1044 x=323 y=74 width=16 height=16 xoffset=-2 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1045 x=0 y=217 width=13 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1046 x=13 y=217 width=18 height=13 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1047 x=253 y=149 width=13 height=14 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1048 x=31 y=217 width=17 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1049 x=339 y=74 width=17 height=16 xoffset=-1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=1050 x=48 y=217 width=14 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1051 x=266 y=149 width=16 height=14 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1052 x=62 y=217 width=19 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1053 x=81 y=217 width=17 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1054 x=282 y=149 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1055 x=98 y=217 width=17 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1056 x=115 y=217 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1057 x=296 y=149 width=13 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1058 x=129 y=217 width=14 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1059 x=309 y=149 width=17 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1060 x=143 y=217 width=14 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1061 x=157 y=217 width=17 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1062 x=356 y=74 width=17 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1063 x=174 y=217 width=14 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1064 x=188 y=217 width=21 height=13 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1065 x=373 y=74 width=21 height=16 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1066 x=209 y=217 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1067 x=222 y=217 width=21 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1068 x=243 y=217 width=12 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1069 x=326 y=149 width=14 height=14 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1070 x=340 y=149 width=19 height=14 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1071 x=255 y=217 width=15 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1072 x=268 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1073 x=144 y=106 width=10 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=1074 x=289 y=267 width=10 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1075 x=299 y=267 width=11 height=10 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1076 x=256 y=243 width=12 height=12 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1077 x=278 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1078 x=310 y=267 width=14 height=10 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1079 x=288 y=256 width=9 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1080 x=324 y=267 width=13 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1081 x=270 y=217 width=13 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1082 x=337 y=267 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1083 x=297 y=256 width=11 height=11 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1084 x=308 y=256 width=15 height=11 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1085 x=348 y=267 width=13 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1086 x=323 y=256 width=10 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1087 x=361 y=267 width=13 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1088 x=359 y=149 width=12 height=14 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1089 x=333 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1090 x=374 y=267 width=9 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1091 x=371 y=149 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1092 x=382 y=40 width=14 height=17 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1093 x=383 y=267 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1094 x=268 y=243 width=13 height=12 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1095 x=394 y=267 width=12 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1096 x=406 y=267 width=17 height=10 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1097 x=281 y=243 width=17 height=12 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1098 x=423 y=267 width=10 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1099 x=433 y=267 width=15 height=10 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1100 x=448 y=267 width=9 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1101 x=343 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1102 x=353 y=256 width=13 height=11 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1103 x=457 y=267 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1104 x=382 y=149 width=11 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1105 x=393 y=149 width=13 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1106 x=396 y=40 width=10 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1107 x=283 y=217 width=15 height=13 xoffset=-1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=1108 x=366 y=256 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1109 x=376 y=256 width=8 height=11 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1110 x=504 y=204 width=7 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1111 x=298 y=217 width=14 height=13 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1112 x=406 y=40 width=10 height=17 xoffset=-3 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1113 x=384 y=256 width=13 height=11 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1114 x=468 y=267 width=14 height=10 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1115 x=312 y=217 width=11 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1116 x=323 y=217 width=13 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1117 x=336 y=217 width=13 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1118 x=416 y=40 width=16 height=17 xoffset=-2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1119 x=349 y=217 width=13 height=13 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1120 x=406 y=149 width=18 height=14 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1121 x=397 y=256 width=13 height=11 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1122 x=362 y=217 width=13 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1123 x=375 y=217 width=10 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1124 x=424 y=149 width=20 height=14 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1125 x=410 y=256 width=14 height=11 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1126 x=385 y=217 width=17 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1127 x=482 y=267 width=13 height=10 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1128 x=402 y=217 width=22 height=13 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=0 +char id=1129 x=0 y=278 width=17 height=10 xoffset=-1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=1130 x=424 y=217 width=17 height=13 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1131 x=495 y=267 width=13 height=10 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1132 x=441 y=217 width=23 height=13 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=0 +char id=1133 x=17 y=278 width=17 height=10 xoffset=-1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1134 x=38 y=0 width=13 height=20 xoffset=-1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=1135 x=154 y=106 width=11 height=15 xoffset=-1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1136 x=464 y=217 width=18 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1137 x=432 y=40 width=13 height=17 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1138 x=444 y=149 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1139 x=424 y=256 width=11 height=11 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1140 x=458 y=149 width=15 height=14 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1141 x=435 y=256 width=11 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1142 x=445 y=40 width=17 height=17 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=1143 x=473 y=149 width=15 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1144 x=462 y=40 width=23 height=17 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 +char id=1145 x=488 y=149 width=20 height=14 xoffset=-1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1146 x=394 y=74 width=16 height=16 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 +char id=1147 x=446 y=256 width=13 height=11 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1148 x=66 y=22 width=18 height=18 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1149 x=165 y=106 width=16 height=15 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=1150 x=485 y=40 width=18 height=17 xoffset=0 yoffset=1 xadvance=16 page=0 chnl=0 +char id=1151 x=482 y=217 width=13 height=13 xoffset=-1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=1152 x=495 y=217 width=12 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1153 x=0 y=230 width=10 height=13 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1154 x=245 y=278 width=7 height=8 xoffset=-2 yoffset=13 xadvance=4 page=0 chnl=0 +char id=1155 x=480 y=278 width=12 height=5 xoffset=-5 yoffset=4 xadvance=0 page=0 chnl=0 +char id=1156 x=492 y=278 width=16 height=5 xoffset=-7 yoffset=4 xadvance=0 page=0 chnl=0 +char id=1157 x=0 y=288 width=10 height=5 xoffset=-4 yoffset=4 xadvance=0 page=0 chnl=0 +char id=1158 x=10 y=288 width=10 height=5 xoffset=-4 yoffset=4 xadvance=0 page=0 chnl=0 +char id=1159 x=412 y=278 width=18 height=6 xoffset=-7 yoffset=1 xadvance=0 page=0 chnl=0 +char id=1160 x=72 y=0 width=33 height=19 xoffset=-12 yoffset=1 xadvance=0 page=0 chnl=0 +char id=1161 x=0 y=0 width=38 height=22 xoffset=-13 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1162 x=105 y=0 width=16 height=19 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1163 x=410 y=74 width=13 height=16 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1164 x=10 y=230 width=12 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1165 x=34 y=278 width=9 height=10 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1166 x=22 y=230 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1167 x=0 y=163 width=12 height=14 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1168 x=181 y=106 width=14 height=15 xoffset=-1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1169 x=459 y=256 width=11 height=11 xoffset=-1 yoffset=6 xadvance=6 page=0 chnl=0 +char id=1170 x=36 y=230 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1171 x=43 y=278 width=11 height=10 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1172 x=0 y=57 width=13 height=17 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1173 x=12 y=163 width=10 height=14 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1174 x=423 y=74 width=18 height=16 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1175 x=298 y=243 width=14 height=12 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1176 x=13 y=57 width=13 height=17 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1177 x=50 y=230 width=9 height=13 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1178 x=441 y=74 width=14 height=16 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1179 x=312 y=243 width=11 height=12 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1180 x=59 y=230 width=15 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1181 x=54 y=278 width=11 height=10 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1182 x=74 y=230 width=14 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1183 x=65 y=278 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1184 x=88 y=230 width=15 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1185 x=76 y=278 width=11 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1186 x=455 y=74 width=17 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1187 x=323 y=243 width=13 height=12 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1188 x=103 y=230 width=20 height=13 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1189 x=87 y=278 width=15 height=10 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1190 x=26 y=57 width=19 height=17 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1191 x=22 y=163 width=14 height=14 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1192 x=36 y=163 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1193 x=470 y=256 width=11 height=11 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1194 x=45 y=57 width=13 height=17 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1195 x=123 y=230 width=10 height=13 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1196 x=472 y=74 width=14 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1197 x=336 y=243 width=11 height=12 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1198 x=133 y=230 width=15 height=13 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1199 x=50 y=163 width=13 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1200 x=148 y=230 width=15 height=13 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1201 x=63 y=163 width=13 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1202 x=486 y=74 width=16 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1203 x=347 y=243 width=11 height=12 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1204 x=0 y=90 width=19 height=16 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1205 x=358 y=243 width=15 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1206 x=19 y=90 width=14 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1207 x=373 y=243 width=12 height=12 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1208 x=163 y=230 width=15 height=13 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1209 x=102 y=278 width=11 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1210 x=178 y=230 width=13 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1211 x=191 y=230 width=10 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1212 x=76 y=163 width=16 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1213 x=481 y=256 width=11 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1214 x=33 y=90 width=16 height=16 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1215 x=201 y=230 width=11 height=13 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1216 x=212 y=230 width=10 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=1217 x=49 y=90 width=18 height=16 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0 +char id=1218 x=222 y=230 width=14 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1219 x=58 y=57 width=15 height=17 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1220 x=92 y=163 width=12 height=14 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1221 x=67 y=90 width=16 height=16 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1222 x=236 y=230 width=11 height=13 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1223 x=83 y=90 width=17 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1224 x=104 y=163 width=12 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1225 x=100 y=90 width=17 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1226 x=247 y=230 width=12 height=13 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1227 x=117 y=90 width=14 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1228 x=385 y=243 width=12 height=12 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1229 x=131 y=90 width=19 height=16 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1230 x=259 y=230 width=15 height=13 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1231 x=274 y=230 width=14 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=1232 x=150 y=90 width=14 height=16 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1233 x=116 y=163 width=11 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1234 x=164 y=90 width=16 height=16 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1235 x=288 y=230 width=13 height=13 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1236 x=301 y=230 width=19 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1237 x=492 y=256 width=13 height=11 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1238 x=180 y=90 width=17 height=16 xoffset=-1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=1239 x=127 y=163 width=12 height=14 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=1240 x=139 y=163 width=14 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1241 x=0 y=267 width=9 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1242 x=73 y=57 width=14 height=17 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1243 x=320 y=230 width=14 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1244 x=197 y=90 width=18 height=16 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0 +char id=1245 x=397 y=243 width=14 height=12 xoffset=-1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=1246 x=87 y=57 width=15 height=17 xoffset=-1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=1247 x=334 y=230 width=14 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1248 x=153 y=163 width=13 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1249 x=9 y=267 width=9 height=11 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1250 x=195 y=106 width=17 height=15 xoffset=-1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=1251 x=411 y=243 width=15 height=12 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1252 x=212 y=106 width=17 height=15 xoffset=-1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=1253 x=426 y=243 width=15 height=12 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1254 x=102 y=57 width=16 height=17 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=1255 x=348 y=230 width=12 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1256 x=166 y=163 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1257 x=18 y=267 width=11 height=11 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1258 x=118 y=57 width=14 height=17 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=1259 x=360 y=230 width=13 height=13 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1260 x=132 y=57 width=14 height=17 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1261 x=373 y=230 width=14 height=13 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1262 x=215 y=90 width=17 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=1263 x=232 y=90 width=16 height=16 xoffset=-2 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1264 x=146 y=57 width=17 height=17 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1265 x=248 y=90 width=16 height=16 xoffset=-2 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1266 x=84 y=22 width=23 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1267 x=163 y=57 width=22 height=17 xoffset=-2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1268 x=229 y=106 width=14 height=15 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=1269 x=441 y=243 width=12 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1270 x=264 y=90 width=14 height=16 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1271 x=453 y=243 width=11 height=12 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1272 x=278 y=90 width=25 height=16 xoffset=-1 yoffset=1 xadvance=14 page=0 chnl=0 +char id=1273 x=464 y=243 width=15 height=12 xoffset=-1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=1274 x=185 y=57 width=14 height=17 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1275 x=180 y=163 width=11 height=14 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1276 x=303 y=90 width=16 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1277 x=191 y=163 width=12 height=14 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1278 x=387 y=230 width=16 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1279 x=113 y=278 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1280 x=403 y=230 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1281 x=203 y=163 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1282 x=417 y=230 width=19 height=13 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1283 x=214 y=163 width=13 height=14 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1284 x=227 y=163 width=15 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1285 x=29 y=267 width=10 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1286 x=319 y=90 width=10 height=16 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1287 x=436 y=230 width=9 height=13 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1288 x=242 y=163 width=20 height=14 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1289 x=39 y=267 width=13 height=11 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1290 x=262 y=163 width=20 height=14 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1291 x=52 y=267 width=14 height=11 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1292 x=282 y=163 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1293 x=66 y=267 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1294 x=296 y=163 width=15 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1295 x=76 y=267 width=10 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1296 x=311 y=163 width=11 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1297 x=86 y=267 width=10 height=11 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1298 x=329 y=90 width=16 height=16 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1299 x=322 y=163 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1300 x=333 y=163 width=20 height=14 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1301 x=96 y=267 width=13 height=11 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1302 x=445 y=230 width=18 height=13 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1303 x=353 y=163 width=15 height=14 xoffset=-2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1304 x=463 y=230 width=20 height=13 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1305 x=109 y=267 width=15 height=11 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1306 x=345 y=90 width=14 height=16 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1307 x=368 y=163 width=11 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1308 x=379 y=163 width=19 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1309 x=124 y=267 width=15 height=11 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1310 x=483 y=230 width=14 height=13 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1311 x=124 y=278 width=11 height=10 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1312 x=199 y=57 width=18 height=17 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1313 x=398 y=163 width=14 height=14 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1314 x=217 y=57 width=19 height=17 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1315 x=412 y=163 width=14 height=14 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=8192 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8193 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8194 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8195 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8196 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=8197 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8198 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=3 page=0 chnl=0 +char id=8199 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8200 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8201 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=3 page=0 chnl=0 +char id=8202 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=2 page=0 chnl=0 +char id=8203 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=8204 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=8210 x=66 y=288 width=11 height=4 xoffset=-1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=8211 x=66 y=288 width=11 height=4 xoffset=-1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=8212 x=77 y=288 width=19 height=4 xoffset=-1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=8213 x=77 y=288 width=19 height=4 xoffset=-1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=8214 x=497 y=230 width=7 height=13 xoffset=-1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=8215 x=430 y=278 width=8 height=6 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 +char id=8216 x=506 y=163 width=5 height=7 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=8217 x=438 y=278 width=5 height=6 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=8218 x=305 y=278 width=6 height=7 xoffset=-1 yoffset=13 xadvance=4 page=0 chnl=0 +char id=8219 x=311 y=278 width=5 height=7 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=8220 x=316 y=278 width=8 height=7 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=8221 x=443 y=278 width=8 height=6 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=8222 x=324 y=278 width=9 height=7 xoffset=-1 yoffset=13 xadvance=7 page=0 chnl=0 +char id=8223 x=333 y=278 width=8 height=7 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=8224 x=502 y=74 width=9 height=16 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=8225 x=359 y=90 width=10 height=16 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=8226 x=341 y=278 width=7 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 +char id=8230 x=20 y=288 width=14 height=5 xoffset=1 yoffset=13 xadvance=16 page=0 chnl=0 +char id=8239 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8240 x=243 y=106 width=18 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 +char id=8242 x=348 y=278 width=8 height=7 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=8243 x=356 y=278 width=11 height=7 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=8244 x=367 y=278 width=14 height=7 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 +char id=8249 x=208 y=278 width=7 height=9 xoffset=-1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=8250 x=215 y=278 width=7 height=9 xoffset=-1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=8252 x=426 y=163 width=11 height=14 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=8254 x=96 y=288 width=12 height=4 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=8260 x=437 y=163 width=19 height=14 xoffset=-4 yoffset=4 xadvance=3 page=0 chnl=0 +char id=8286 x=369 y=90 width=6 height=16 xoffset=-1 yoffset=2 xadvance=3 page=0 chnl=0 +char id=8352 x=456 y=163 width=11 height=14 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=8353 x=107 y=22 width=13 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=8354 x=467 y=163 width=13 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=8355 x=0 y=243 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=8356 x=480 y=163 width=11 height=14 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=8357 x=491 y=163 width=15 height=14 xoffset=-1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=8358 x=0 y=177 width=17 height=14 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=8359 x=17 y=177 width=18 height=14 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=8360 x=35 y=177 width=19 height=14 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=8361 x=54 y=177 width=17 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=8363 x=375 y=90 width=12 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=8364 x=71 y=177 width=14 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=8365 x=14 y=243 width=15 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=8366 x=29 y=243 width=14 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=8367 x=236 y=57 width=24 height=17 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=0 +char id=8368 x=260 y=57 width=10 height=17 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=8369 x=43 y=243 width=13 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=8370 x=261 y=106 width=12 height=15 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 +char id=8371 x=56 y=243 width=14 height=13 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=8372 x=85 y=177 width=11 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=8373 x=387 y=90 width=12 height=16 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 +char id=11360 x=70 y=243 width=12 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=11361 x=82 y=243 width=8 height=13 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=11362 x=90 y=243 width=13 height=13 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=11363 x=103 y=243 width=14 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=11364 x=270 y=57 width=12 height=17 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=11365 x=479 y=243 width=12 height=12 xoffset=-1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=11366 x=96 y=177 width=8 height=14 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=11367 x=399 y=90 width=17 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=11368 x=273 y=106 width=10 height=15 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=11369 x=416 y=90 width=15 height=16 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=11370 x=283 y=106 width=11 height=15 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=11371 x=431 y=90 width=15 height=16 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=11372 x=491 y=243 width=10 height=12 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=11373 x=104 y=177 width=13 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=11377 x=139 y=267 width=14 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=11378 x=117 y=177 width=21 height=14 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=11379 x=153 y=267 width=17 height=11 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=11380 x=501 y=243 width=10 height=12 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=11381 x=117 y=243 width=12 height=13 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=11382 x=135 y=278 width=9 height=10 xoffset=-1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=11383 x=170 y=267 width=12 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +kernings count=7203 +kerning first=221 second=171 amount=-1 +kerning first=279 second=311 amount=-1 +kerning first=256 second=87 amount=-2 +kerning first=264 second=201 amount=-1 +kerning first=88 second=253 amount=-1 +kerning first=234 second=44 amount=-1 +kerning first=272 second=46 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=102 second=311 amount=1 +kerning first=206 second=259 amount=-1 +kerning first=229 second=253 amount=-1 +kerning first=337 second=253 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=67 second=66 amount=-1 +kerning first=75 second=67 amount=-1 +kerning first=268 second=68 amount=-1 +kerning first=262 second=69 amount=-1 +kerning first=352 second=70 amount=-1 +kerning first=376 second=71 amount=-1 +kerning first=350 second=72 amount=-1 +kerning first=66 second=73 amount=-1 +kerning first=354 second=74 amount=-1 +kerning first=262 second=75 amount=-1 +kerning first=66 second=77 amount=-1 +kerning first=262 second=78 amount=-1 +kerning first=192 second=79 amount=-1 +kerning first=266 second=80 amount=-1 +kerning first=75 second=81 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=290 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=321 second=86 amount=-1 +kerning first=350 second=87 amount=-1 +kerning first=8250 second=89 amount=-1 +kerning first=313 second=90 amount=-1 +kerning first=1046 second=1086 amount=-1 +kerning first=84 second=100 amount=-1 +kerning first=255 second=101 amount=-1 +kerning first=350 second=102 amount=-1 +kerning first=89 second=103 amount=-1 +kerning first=352 second=105 amount=-1 +kerning first=371 second=106 amount=1 +kerning first=277 second=107 amount=-1 +kerning first=102 second=108 amount=1 +kerning first=84 second=109 amount=-1 +kerning first=354 second=110 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=268 second=112 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=89 second=115 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=112 second=120 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=253 second=122 amount=-1 +kerning first=195 second=219 amount=-1 +kerning first=199 second=171 amount=-1 +kerning first=121 second=235 amount=-1 +kerning first=84 second=187 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=374 second=192 amount=-2 +kerning first=83 second=193 amount=-1 +kerning first=366 second=194 amount=-1 +kerning first=45 second=195 amount=-1 +kerning first=87 second=196 amount=-2 +kerning first=8216 second=197 amount=-2 +kerning first=89 second=198 amount=-2 +kerning first=199 second=199 amount=-1 +kerning first=45 second=200 amount=-1 +kerning first=266 second=201 amount=-1 +kerning first=268 second=204 amount=-1 +kerning first=66 second=205 amount=-1 +kerning first=346 second=206 amount=-1 +kerning first=350 second=207 amount=-1 +kerning first=66 second=209 amount=-1 +kerning first=82 second=210 amount=-1 +kerning first=376 second=211 amount=-1 +kerning first=192 second=212 amount=-1 +kerning first=264 second=213 amount=-1 +kerning first=193 second=214 amount=-1 +kerning first=67 second=216 amount=-1 +kerning first=258 second=219 amount=-1 +kerning first=195 second=220 amount=-1 +kerning first=223 second=46 amount=-1 +kerning first=356 second=223 amount=-1 +kerning first=99 second=224 amount=-1 +kerning first=375 second=225 amount=-1 +kerning first=207 second=226 amount=-1 +kerning first=376 second=227 amount=-1 +kerning first=370 second=228 amount=-1 +kerning first=8216 second=229 amount=-1 +kerning first=205 second=230 amount=-1 +kerning first=371 second=231 amount=-1 +kerning first=356 second=232 amount=-1 +kerning first=350 second=120 amount=-1 +kerning first=354 second=234 amount=-1 +kerning first=371 second=235 amount=-1 +kerning first=263 second=237 amount=-1 +kerning first=118 second=240 amount=-1 +kerning first=221 second=241 amount=-1 +kerning first=87 second=242 amount=-1 +kerning first=356 second=243 amount=-1 +kerning first=303 second=244 amount=-1 +kerning first=86 second=245 amount=-1 +kerning first=374 second=246 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=82 second=248 amount=-1 +kerning first=8220 second=277 amount=-1 +kerning first=274 second=103 amount=-1 +kerning first=307 second=171 amount=-1 +kerning first=90 second=252 amount=-1 +kerning first=376 second=253 amount=-1 +kerning first=66 second=254 amount=-1 +kerning first=272 second=256 amount=-1 +kerning first=72 second=257 amount=-1 +kerning first=269 second=259 amount=-1 +kerning first=199 second=260 amount=-1 +kerning first=75 second=262 amount=-1 +kerning first=8220 second=263 amount=-1 +kerning first=67 second=264 amount=-1 +kerning first=356 second=266 amount=-1 +kerning first=107 second=267 amount=-1 +kerning first=65 second=268 amount=-1 +kerning first=346 second=270 amount=-1 +kerning first=311 second=271 amount=-1 +kerning first=119 second=273 amount=-1 +kerning first=66 second=274 amount=-1 +kerning first=356 second=275 amount=-1 +kerning first=262 second=278 amount=-1 +kerning first=221 second=279 amount=-1 +kerning first=66 second=280 amount=-1 +kerning first=84 second=281 amount=-1 +kerning first=66 second=282 amount=-1 +kerning first=354 second=284 amount=-1 +kerning first=194 second=286 amount=-1 +kerning first=365 second=287 amount=-1 +kerning first=258 second=288 amount=-1 +kerning first=187 second=289 amount=-1 +kerning first=8250 second=291 amount=-1 +kerning first=66 second=296 amount=-1 +kerning first=67 second=298 amount=-1 +kerning first=268 second=304 amount=-1 +kerning first=66 second=305 amount=-1 +kerning first=267 second=307 amount=-1 +kerning first=354 second=99 amount=-1 +kerning first=262 second=310 amount=-1 +kerning first=376 second=352 amount=-1 +kerning first=365 second=314 amount=-1 +kerning first=8250 second=315 amount=-1 +kerning first=333 second=316 amount=-1 +kerning first=283 second=318 amount=-1 +kerning first=268 second=330 amount=-1 +kerning first=266 second=323 amount=-1 +kerning first=264 second=325 amount=-1 +kerning first=66 second=327 amount=-1 +kerning first=84 second=328 amount=-1 +kerning first=346 second=330 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=87 second=332 amount=-1 +kerning first=303 second=333 amount=-1 +kerning first=221 second=334 amount=-1 +kerning first=82 second=335 amount=-1 +kerning first=195 second=336 amount=-1 +kerning first=194 second=338 amount=-1 +kerning first=66 second=345 amount=-1 +kerning first=220 second=346 amount=-1 +kerning first=354 second=347 amount=-1 +kerning first=87 second=350 amount=-1 +kerning first=255 second=351 amount=-1 +kerning first=65 second=352 amount=-1 +kerning first=192 second=353 amount=-1 +kerning first=344 second=355 amount=-1 +kerning first=8218 second=356 amount=-2 +kerning first=251 second=103 amount=-1 +kerning first=196 second=350 amount=-1 +kerning first=194 second=361 amount=-1 +kerning first=8222 second=362 amount=-1 +kerning first=66 second=364 amount=-1 +kerning first=310 second=365 amount=-1 +kerning first=65 second=366 amount=-1 +kerning first=204 second=367 amount=-1 +kerning first=268 second=350 amount=-1 +kerning first=204 second=369 amount=-1 +kerning first=315 second=370 amount=-1 +kerning first=120 second=371 amount=-1 +kerning first=101 second=318 amount=-1 +kerning first=65 second=374 amount=-2 +kerning first=256 second=375 amount=-1 +kerning first=317 second=377 amount=-1 +kerning first=313 second=378 amount=-1 +kerning first=376 second=379 amount=-1 +kerning first=219 second=380 amount=-1 +kerning first=66 second=381 amount=-1 +kerning first=220 second=382 amount=-1 +kerning first=242 second=318 amount=-1 +kerning first=256 second=199 amount=-1 +kerning first=307 second=118 amount=-1 +kerning first=315 second=368 amount=-1 +kerning first=1059 second=1078 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=230 second=121 amount=-1 +kerning first=221 second=231 amount=-1 +kerning first=8216 second=194 amount=-2 +kerning first=193 second=332 amount=-1 +kerning first=350 second=204 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=8220 second=225 amount=-1 +kerning first=88 second=332 amount=-1 +kerning first=217 second=378 amount=-1 +kerning first=234 second=316 amount=-1 +kerning first=196 second=252 amount=-1 +kerning first=86 second=267 amount=-1 +kerning first=76 second=378 amount=-1 +kerning first=1040 second=1095 amount=-1 +kerning first=337 second=46 amount=-1 +kerning first=194 second=364 amount=-1 +kerning first=8250 second=77 amount=-1 +kerning first=197 second=264 amount=-1 +kerning first=105 second=119 amount=-1 +kerning first=45 second=362 amount=-1 +kerning first=258 second=362 amount=-1 +kerning first=289 second=378 amount=-1 +kerning first=253 second=378 amount=-1 +kerning first=317 second=218 amount=-1 +kerning first=8220 second=226 amount=-1 +kerning first=101 second=375 amount=-1 +kerning first=354 second=119 amount=-1 +kerning first=350 second=200 amount=-1 +kerning first=82 second=217 amount=-1 +kerning first=121 second=314 amount=-1 +kerning first=196 second=364 amount=-1 +kerning first=187 second=217 amount=-1 +kerning first=371 second=267 amount=-1 +kerning first=224 second=8220 amount=-1 +kerning first=192 second=375 amount=-1 +kerning first=379 second=250 amount=-1 +kerning first=356 second=216 amount=-1 +kerning first=264 second=378 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=65 second=290 amount=-1 +kerning first=255 second=245 amount=-1 +kerning first=87 second=378 amount=-1 +kerning first=362 second=193 amount=-1 +kerning first=45 second=204 amount=-1 +kerning first=290 second=193 amount=-1 +kerning first=266 second=325 amount=-1 +kerning first=192 second=221 amount=-2 +kerning first=187 second=296 amount=-1 +kerning first=262 second=274 amount=-1 +kerning first=346 second=366 amount=-1 +kerning first=8250 second=327 amount=-1 +kerning first=376 second=291 amount=-1 +kerning first=8220 second=74 amount=-1 +kerning first=187 second=256 amount=-1 +kerning first=304 second=291 amount=-1 +kerning first=78 second=226 amount=-1 +kerning first=260 second=210 amount=-1 +kerning first=232 second=291 amount=-1 +kerning first=86 second=326 amount=-1 +kerning first=196 second=291 amount=-1 +kerning first=255 second=226 amount=-1 +kerning first=71 second=197 amount=-1 +kerning first=219 second=226 amount=-1 +kerning first=346 second=327 amount=-1 +kerning first=327 second=226 amount=-1 +kerning first=291 second=226 amount=-1 +kerning first=350 second=68 amount=-1 +kerning first=284 second=197 amount=-1 +kerning first=266 second=344 amount=-1 +kerning first=212 second=197 amount=-1 +kerning first=99 second=108 amount=-1 +kerning first=356 second=197 amount=-2 +kerning first=89 second=187 amount=-1 +kerning first=205 second=365 amount=-1 +kerning first=65 second=8249 amount=-1 +kerning first=197 second=284 amount=-1 +kerning first=206 second=8249 amount=-1 +kerning first=84 second=262 amount=-1 +kerning first=375 second=337 amount=-1 +kerning first=73 second=261 amount=-1 +kerning first=303 second=337 amount=-1 +kerning first=350 second=8249 amount=-1 +kerning first=314 second=8249 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=253 second=108 amount=-1 +kerning first=68 second=198 amount=-1 +kerning first=269 second=303 amount=-1 +kerning first=263 second=228 amount=-1 +kerning first=339 second=318 amount=-1 +kerning first=375 second=318 amount=-1 +kerning first=217 second=260 amount=-1 +kerning first=86 second=228 amount=-1 +kerning first=72 second=367 amount=-1 +kerning first=258 second=45 amount=-1 +kerning first=289 second=108 amount=-1 +kerning first=253 second=279 amount=-1 +kerning first=45 second=73 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=1036 second=1104 amount=-1 +kerning first=82 second=231 amount=-1 +kerning first=121 second=353 amount=-1 +kerning first=311 second=339 amount=-1 +kerning first=119 second=229 amount=-1 +kerning first=8222 second=119 amount=-1 +kerning first=252 second=8217 amount=-1 +kerning first=324 second=8217 amount=-1 +kerning first=71 second=45 amount=-1 +kerning first=352 second=304 amount=-1 +kerning first=87 second=240 amount=-1 +kerning first=72 second=97 amount=-1 +kerning first=193 second=352 amount=-1 +kerning first=284 second=45 amount=-1 +kerning first=368 second=229 amount=-1 +kerning first=356 second=45 amount=-1 +kerning first=296 second=229 amount=-1 +kerning first=107 second=45 amount=-1 +kerning first=268 second=310 amount=-1 +kerning first=67 second=304 amount=-1 +kerning first=346 second=77 amount=-1 +kerning first=263 second=307 amount=-1 +kerning first=344 second=111 amount=-1 +kerning first=226 second=255 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=221 second=211 amount=-1 +kerning first=1038 second=1033 amount=-1 +kerning first=1036 second=1038 amount=-1 +kerning first=1038 second=1040 amount=-2 +kerning first=118 second=46 amount=-1 +kerning first=8249 second=84 amount=-1 +kerning first=1038 second=1047 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=350 second=69 amount=-1 +kerning first=8250 second=346 amount=-1 +kerning first=218 second=193 amount=-1 +kerning first=119 second=289 amount=-1 +kerning first=1040 second=1057 amount=-1 +kerning first=1061 second=1058 amount=-1 +kerning first=1050 second=1059 amount=-1 +kerning first=1040 second=1060 amount=-1 +kerning first=1061 second=1063 amount=-1 +kerning first=83 second=289 amount=-1 +kerning first=354 second=79 amount=-1 +kerning first=296 second=289 amount=-1 +kerning first=1038 second=1072 amount=-1 +kerning first=1038 second=1073 amount=-1 +kerning first=1038 second=1074 amount=-1 +kerning first=1038 second=1076 amount=-1 +kerning first=1038 second=1077 amount=-1 +kerning first=1038 second=1078 amount=-1 +kerning first=1038 second=1079 amount=-1 +kerning first=1038 second=1080 amount=-1 +kerning first=1038 second=1081 amount=-1 +kerning first=1038 second=1082 amount=-1 +kerning first=260 second=289 amount=-1 +kerning first=1038 second=1084 amount=-1 +kerning first=1038 second=1085 amount=-1 +kerning first=1038 second=1086 amount=-1 +kerning first=1038 second=1087 amount=-1 +kerning first=1038 second=1088 amount=-1 +kerning first=1038 second=1089 amount=-1 +kerning first=103 second=225 amount=-1 +kerning first=1040 second=1091 amount=-1 +kerning first=1043 second=1092 amount=-1 +kerning first=1038 second=1093 amount=-1 +kerning first=1059 second=1094 amount=-1 +kerning first=1044 second=1095 amount=-1 +kerning first=1038 second=1096 amount=-1 +kerning first=1038 second=1097 amount=-1 +kerning first=1050 second=1098 amount=-1 +kerning first=1038 second=1099 amount=-1 +kerning first=1038 second=1100 amount=-1 +kerning first=45 second=375 amount=-1 +kerning first=67 second=206 amount=-1 +kerning first=1038 second=1103 amount=-1 +kerning first=258 second=264 amount=-1 +kerning first=1038 second=1105 amount=-1 +kerning first=1038 second=1107 amount=-1 +kerning first=1038 second=1108 amount=-1 +kerning first=291 second=225 amount=-1 +kerning first=1043 second=1113 amount=-1 +kerning first=1038 second=1114 amount=-1 +kerning first=327 second=225 amount=-1 +kerning first=1038 second=1116 amount=-1 +kerning first=83 second=368 amount=-1 +kerning first=1040 second=1118 amount=-1 +kerning first=1038 second=1119 amount=-1 +kerning first=313 second=364 amount=-1 +kerning first=286 second=287 amount=-1 +kerning first=221 second=46 amount=-1 +kerning first=260 second=368 amount=-1 +kerning first=288 second=287 amount=-1 +kerning first=75 second=268 amount=-1 +kerning first=252 second=287 amount=-1 +kerning first=352 second=206 amount=-1 +kerning first=352 second=69 amount=-1 +kerning first=260 second=347 amount=-1 +kerning first=344 second=71 amount=-1 +kerning first=194 second=8217 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=8220 second=244 amount=-1 +kerning first=78 second=225 amount=-1 +kerning first=87 second=241 amount=-1 +kerning first=85 second=45 amount=-1 +kerning first=317 second=87 amount=-1 +kerning first=248 second=46 amount=-1 +kerning first=75 second=266 amount=-1 +kerning first=219 second=225 amount=-1 +kerning first=255 second=225 amount=-1 +kerning first=356 second=46 amount=-1 +kerning first=376 second=332 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=231 second=259 amount=-1 +kerning first=1038 second=1090 amount=-1 +kerning first=201 second=287 amount=-1 +kerning first=354 second=230 amount=-1 +kerning first=304 second=369 amount=-1 +kerning first=367 second=375 amount=-1 +kerning first=196 second=81 amount=-1 +kerning first=1027 second=1105 amount=-1 +kerning first=375 second=259 amount=-1 +kerning first=69 second=289 amount=-1 +kerning first=187 second=375 amount=-1 +kerning first=105 second=289 amount=-1 +kerning first=223 second=375 amount=-1 +kerning first=221 second=350 amount=-1 +kerning first=259 second=375 amount=-1 +kerning first=267 second=259 amount=-1 +kerning first=376 second=81 amount=-1 +kerning first=121 second=382 amount=-1 +kerning first=256 second=219 amount=-1 +kerning first=8250 second=209 amount=-1 +kerning first=354 second=289 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=196 second=369 amount=-1 +kerning first=260 second=288 amount=-1 +kerning first=1065 second=1095 amount=-1 +kerning first=281 second=316 amount=-1 +kerning first=105 second=171 amount=-1 +kerning first=337 second=121 amount=-1 +kerning first=310 second=117 amount=-1 +kerning first=286 second=221 amount=-1 +kerning first=262 second=196 amount=-1 +kerning first=193 second=121 amount=-1 +kerning first=370 second=196 amount=-1 +kerning first=334 second=196 amount=-1 +kerning first=88 second=121 amount=-1 +kerning first=256 second=8221 amount=-1 +kerning first=354 second=231 amount=-1 +kerning first=307 second=119 amount=-1 +kerning first=45 second=302 amount=-1 +kerning first=82 second=375 amount=-1 +kerning first=193 second=351 amount=-1 +kerning first=235 second=119 amount=-1 +kerning first=1059 second=1098 amount=-1 +kerning first=336 second=196 amount=-1 +kerning first=89 second=214 amount=-1 +kerning first=350 second=298 amount=-1 +kerning first=1059 second=1097 amount=-1 +kerning first=101 second=107 amount=-1 +kerning first=287 second=314 amount=-1 +kerning first=109 second=45 amount=-1 +kerning first=1038 second=1098 amount=-1 +kerning first=251 second=314 amount=-1 +kerning first=66 second=213 amount=-1 +kerning first=243 second=120 amount=-1 +kerning first=99 second=253 amount=-1 +kerning first=256 second=8249 amount=-1 +kerning first=240 second=253 amount=-1 +kerning first=220 second=8249 amount=-1 +kerning first=187 second=315 amount=-1 +kerning first=328 second=8249 amount=-1 +kerning first=204 second=291 amount=-1 +kerning first=197 second=363 amount=-1 +kerning first=364 second=8249 amount=-1 +kerning first=255 second=246 amount=-1 +kerning first=88 second=214 amount=-1 +kerning first=344 second=263 amount=-1 +kerning first=370 second=103 amount=-1 +kerning first=1060 second=1033 amount=-1 +kerning first=192 second=220 amount=-1 +kerning first=298 second=103 amount=-1 +kerning first=377 second=363 amount=-1 +kerning first=356 second=334 amount=-1 +kerning first=352 second=344 amount=-1 +kerning first=376 second=101 amount=-1 +kerning first=8217 second=226 amount=-1 +kerning first=311 second=281 amount=-1 +kerning first=44 second=8221 amount=-1 +kerning first=224 second=118 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=83 second=118 amount=-1 +kerning first=67 second=382 amount=-1 +kerning first=245 second=316 amount=-1 +kerning first=103 second=382 amount=-1 +kerning first=66 second=120 amount=-1 +kerning first=258 second=86 amount=-2 +kerning first=193 second=83 amount=-1 +kerning first=370 second=44 amount=-1 +kerning first=334 second=44 amount=-1 +kerning first=194 second=374 amount=-2 +kerning first=121 second=44 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=251 second=255 amount=-1 +kerning first=296 second=97 amount=-1 +kerning first=365 second=8221 amount=-1 +kerning first=196 second=211 amount=-1 +kerning first=344 second=262 amount=-1 +kerning first=257 second=8221 amount=-1 +kerning first=368 second=97 amount=-1 +kerning first=250 second=118 amount=-1 +kerning first=90 second=8249 amount=-1 +kerning first=268 second=211 amount=-1 +kerning first=221 second=79 amount=-1 +kerning first=346 second=209 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=321 second=118 amount=-1 +kerning first=187 second=85 amount=-1 +kerning first=262 second=65 amount=-1 +kerning first=218 second=83 amount=-1 +kerning first=209 second=257 amount=-1 +kerning first=221 second=232 amount=-1 +kerning first=334 second=65 amount=-1 +kerning first=121 second=234 amount=-1 +kerning first=354 second=192 amount=-2 +kerning first=249 second=118 amount=-1 +kerning first=254 second=120 amount=-1 +kerning first=8220 second=246 amount=-1 +kerning first=370 second=65 amount=-1 +kerning first=350 second=260 amount=-1 +kerning first=296 second=250 amount=-1 +kerning first=210 second=192 amount=-1 +kerning first=260 second=250 amount=-1 +kerning first=339 second=107 amount=-1 +kerning first=376 second=331 amount=-1 +kerning first=195 second=199 amount=-1 +kerning first=79 second=198 amount=-1 +kerning first=8250 second=302 amount=-1 +kerning first=284 second=84 amount=-1 +kerning first=365 second=291 amount=-1 +kerning first=84 second=381 amount=-1 +kerning first=244 second=253 amount=-1 +kerning first=82 second=216 amount=-1 +kerning first=71 second=84 amount=-1 +kerning first=221 second=291 amount=-1 +kerning first=80 second=291 amount=-1 +kerning first=311 second=242 amount=-1 +kerning first=192 second=334 amount=-1 +kerning first=256 second=67 amount=-1 +kerning first=8250 second=78 amount=-1 +kerning first=107 second=335 amount=-1 +kerning first=356 second=335 amount=-1 +kerning first=381 second=45 amount=-1 +kerning first=258 second=112 amount=-1 +kerning first=253 second=339 amount=-1 +kerning first=8220 second=245 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=253 second=240 amount=-1 +kerning first=86 second=268 amount=-1 +kerning first=87 second=110 amount=-1 +kerning first=82 second=374 amount=-1 +kerning first=66 second=370 amount=-1 +kerning first=8217 second=227 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=220 second=198 amount=-1 +kerning first=307 second=289 amount=-1 +kerning first=87 second=279 amount=-1 +kerning first=199 second=289 amount=-1 +kerning first=235 second=289 amount=-1 +kerning first=89 second=286 amount=-1 +kerning first=65 second=218 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=266 second=286 amount=-1 +kerning first=1061 second=1104 amount=-1 +kerning first=242 second=108 amount=-1 +kerning first=352 second=305 amount=-1 +kerning first=333 second=108 amount=-1 +kerning first=89 second=324 amount=-1 +kerning first=66 second=310 amount=-1 +kerning first=374 second=324 amount=-1 +kerning first=277 second=287 amount=-1 +kerning first=205 second=287 amount=-1 +kerning first=86 second=352 amount=-1 +kerning first=86 second=115 amount=-1 +kerning first=287 second=353 amount=-1 +kerning first=256 second=356 amount=-2 +kerning first=8220 second=283 amount=-1 +kerning first=354 second=290 amount=-1 +kerning first=84 second=223 amount=-1 +kerning first=119 second=97 amount=-1 +kerning first=268 second=80 amount=-1 +kerning first=313 second=287 amount=-1 +kerning first=89 second=226 amount=-1 +kerning first=303 second=279 amount=-1 +kerning first=302 second=226 amount=-1 +kerning first=321 second=368 amount=-1 +kerning first=107 second=275 amount=-1 +kerning first=45 second=74 amount=-1 +kerning first=216 second=198 amount=-1 +kerning first=287 second=45 amount=-1 +kerning first=288 second=194 amount=-1 +kerning first=323 second=45 amount=-1 +kerning first=366 second=74 amount=-1 +kerning first=74 second=45 amount=-1 +kerning first=354 second=350 amount=-1 +kerning first=356 second=353 amount=-1 +kerning first=303 second=240 amount=-1 +kerning first=376 second=65 amount=-2 +kerning first=80 second=289 amount=-1 +kerning first=381 second=255 amount=-1 +kerning first=82 second=356 amount=-1 +kerning first=1059 second=1116 amount=-1 +kerning first=187 second=356 amount=-1 +kerning first=352 second=112 amount=-1 +kerning first=1054 second=1033 amount=-1 +kerning first=354 second=214 amount=-1 +kerning first=367 second=255 amount=-1 +kerning first=221 second=289 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=259 second=255 amount=-1 +kerning first=376 second=261 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=253 second=227 amount=-1 +kerning first=187 second=255 amount=-1 +kerning first=67 second=112 amount=-1 +kerning first=82 second=255 amount=-1 +kerning first=375 second=240 amount=-1 +kerning first=260 second=211 amount=-1 +kerning first=199 second=80 amount=-1 +kerning first=304 second=97 amount=-1 +kerning first=66 second=290 amount=-1 +kerning first=221 second=193 amount=-2 +kerning first=374 second=241 amount=-1 +kerning first=379 second=251 amount=-1 +kerning first=362 second=192 amount=-1 +kerning first=365 second=8220 amount=-1 +kerning first=8217 second=346 amount=-1 +kerning first=356 second=257 amount=-1 +kerning first=218 second=192 amount=-1 +kerning first=256 second=338 amount=-1 +kerning first=290 second=192 amount=-1 +kerning first=195 second=268 amount=-1 +kerning first=44 second=8220 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=249 second=103 amount=-1 +kerning first=224 second=119 amount=-1 +kerning first=260 second=119 amount=-1 +kerning first=376 second=233 amount=-1 +kerning first=1046 second=1073 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=240 second=314 amount=-1 +kerning first=374 second=225 amount=-1 +kerning first=199 second=209 amount=-1 +kerning first=8217 second=263 amount=-1 +kerning first=302 second=363 amount=-1 +kerning first=302 second=225 amount=-1 +kerning first=99 second=314 amount=-1 +kerning first=376 second=213 amount=-1 +kerning first=356 second=375 amount=-1 +kerning first=1043 second=1072 amount=-1 +kerning first=76 second=375 amount=-1 +kerning first=268 second=213 amount=-1 +kerning first=364 second=259 amount=-1 +kerning first=248 second=375 amount=-1 +kerning first=1040 second=1054 amount=-1 +kerning first=220 second=259 amount=-1 +kerning first=221 second=101 amount=-1 +kerning first=8217 second=287 amount=-1 +kerning first=311 second=246 amount=-1 +kerning first=66 second=369 amount=-1 +kerning first=199 second=288 amount=-1 +kerning first=107 second=235 amount=-1 +kerning first=350 second=317 amount=-1 +kerning first=1043 second=1033 amount=-1 +kerning first=65 second=87 amount=-2 +kerning first=8217 second=267 amount=-1 +kerning first=195 second=218 amount=-1 +kerning first=356 second=235 amount=-1 +kerning first=82 second=104 amount=-1 +kerning first=207 second=369 amount=-1 +kerning first=346 second=76 amount=-1 +kerning first=80 second=171 amount=-1 +kerning first=44 second=171 amount=-1 +kerning first=354 second=212 amount=-1 +kerning first=1091 second=1113 amount=-1 +kerning first=85 second=352 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=85 second=197 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=82 second=262 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=118 second=277 amount=-1 +kerning first=362 second=83 amount=-1 +kerning first=82 second=277 amount=-1 +kerning first=262 second=197 amount=-1 +kerning first=77 second=287 amount=-1 +kerning first=240 second=121 amount=-1 +kerning first=278 second=103 amount=-1 +kerning first=99 second=121 amount=-1 +kerning first=370 second=197 amount=-1 +kerning first=262 second=352 amount=-1 +kerning first=334 second=197 amount=-1 +kerning first=263 second=229 amount=-1 +kerning first=370 second=122 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=268 second=270 amount=-1 +kerning first=354 second=100 amount=-1 +kerning first=279 second=108 amount=-1 +kerning first=221 second=192 amount=-2 +kerning first=324 second=8220 amount=-1 +kerning first=196 second=213 amount=-1 +kerning first=82 second=334 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=119 second=99 amount=-1 +kerning first=251 second=253 amount=-1 +kerning first=291 second=115 amount=-1 +kerning first=363 second=8217 amount=-1 +kerning first=1101 second=1076 amount=-1 +kerning first=255 second=115 amount=-1 +kerning first=107 second=333 amount=-1 +kerning first=196 second=171 amount=-1 +kerning first=8250 second=76 amount=-1 +kerning first=304 second=171 amount=-1 +kerning first=268 second=171 amount=-1 +kerning first=65 second=199 amount=-1 +kerning first=195 second=86 amount=-2 +kerning first=268 second=82 amount=-1 +kerning first=381 second=103 amount=-1 +kerning first=66 second=214 amount=-1 +kerning first=196 second=8221 amount=-1 +kerning first=201 second=103 amount=-1 +kerning first=258 second=361 amount=-1 +kerning first=67 second=266 amount=-1 +kerning first=226 second=121 amount=-1 +kerning first=330 second=361 amount=-1 +kerning first=287 second=351 amount=-1 +kerning first=310 second=249 amount=-1 +kerning first=8220 second=243 amount=-1 +kerning first=264 second=71 amount=-1 +kerning first=192 second=71 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=1059 second=1096 amount=-1 +kerning first=260 second=86 amount=-2 +kerning first=195 second=67 amount=-1 +kerning first=354 second=232 amount=-1 +kerning first=310 second=118 amount=-1 +kerning first=280 second=287 amount=-1 +kerning first=45 second=380 amount=-1 +kerning first=264 second=202 amount=-1 +kerning first=107 second=171 amount=-1 +kerning first=366 second=380 amount=-1 +kerning first=8250 second=207 amount=-1 +kerning first=120 second=224 amount=-1 +kerning first=84 second=379 amount=-1 +kerning first=8217 second=225 amount=-1 +kerning first=317 second=217 amount=-1 +kerning first=346 second=69 amount=-1 +kerning first=1070 second=1040 amount=-1 +kerning first=84 second=224 amount=-1 +kerning first=350 second=218 amount=-1 +kerning first=82 second=354 amount=-1 +kerning first=352 second=364 amount=-1 +kerning first=1050 second=1104 amount=-1 +kerning first=187 second=354 amount=-1 +kerning first=337 second=120 amount=-1 +kerning first=234 second=104 amount=-1 +kerning first=254 second=46 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=8218 second=218 amount=-1 +kerning first=376 second=193 amount=-2 +kerning first=193 second=71 amount=-1 +kerning first=72 second=250 amount=-1 +kerning first=221 second=331 amount=-1 +kerning first=65 second=221 amount=-2 +kerning first=375 second=108 amount=-1 +kerning first=339 second=108 amount=-1 +kerning first=83 second=206 amount=-1 +kerning first=89 second=287 amount=-1 +kerning first=199 second=78 amount=-1 +kerning first=260 second=79 amount=-1 +kerning first=234 second=107 amount=-1 +kerning first=66 second=192 amount=-1 +kerning first=45 second=206 amount=-1 +kerning first=346 second=368 amount=-1 +kerning first=302 second=287 amount=-1 +kerning first=1061 second=1089 amount=-1 +kerning first=205 second=226 amount=-1 +kerning first=230 second=287 amount=-1 +kerning first=337 second=44 amount=-1 +kerning first=374 second=113 amount=-1 +kerning first=266 second=287 amount=-1 +kerning first=87 second=90 amount=-1 +kerning first=187 second=84 amount=-1 +kerning first=194 second=287 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=362 second=291 amount=-1 +kerning first=290 second=291 amount=-1 +kerning first=70 second=74 amount=-1 +kerning first=370 second=45 amount=-1 +kerning first=86 second=269 amount=-1 +kerning first=354 second=210 amount=-1 +kerning first=77 second=291 amount=-1 +kerning first=78 second=365 amount=-1 +kerning first=199 second=350 amount=-1 +kerning first=262 second=45 amount=-1 +kerning first=195 second=89 amount=-2 +kerning first=264 second=68 amount=-1 +kerning first=83 second=327 amount=-1 +kerning first=371 second=269 amount=-1 +kerning first=66 second=204 amount=-1 +kerning first=197 second=112 amount=-1 +kerning first=87 second=8249 amount=-1 +kerning first=311 second=279 amount=-1 +kerning first=344 second=286 amount=-1 +kerning first=192 second=8249 amount=-1 +kerning first=252 second=375 amount=-1 +kerning first=264 second=8249 amount=-1 +kerning first=350 second=221 amount=-1 +kerning first=267 second=108 amount=-1 +kerning first=72 second=228 amount=-1 +kerning first=195 second=338 amount=-1 +kerning first=268 second=332 amount=-1 +kerning first=296 second=251 amount=-1 +kerning first=245 second=108 amount=-1 +kerning first=260 second=251 amount=-1 +kerning first=196 second=332 amount=-1 +kerning first=65 second=219 amount=-1 +kerning first=281 second=108 amount=-1 +kerning first=45 second=381 amount=-1 +kerning first=310 second=375 amount=-1 +kerning first=86 second=226 amount=-1 +kerning first=221 second=212 amount=-1 +kerning first=263 second=226 amount=-1 +kerning first=1045 second=1098 amount=-1 +kerning first=1118 second=1113 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=321 second=119 amount=-1 +kerning first=356 second=109 amount=-1 +kerning first=194 second=115 amount=-1 +kerning first=368 second=230 amount=-1 +kerning first=249 second=119 amount=-1 +kerning first=374 second=115 amount=-1 +kerning first=78 second=363 amount=-1 +kerning first=221 second=233 amount=-1 +kerning first=263 second=97 amount=-1 +kerning first=327 second=363 amount=-1 +kerning first=337 second=314 amount=-1 +kerning first=199 second=211 amount=-1 +kerning first=8216 second=196 amount=-2 +kerning first=362 second=194 amount=-1 +kerning first=356 second=255 amount=-1 +kerning first=86 second=97 amount=-1 +kerning first=248 second=255 amount=-1 +kerning first=1046 second=1092 amount=-1 +kerning first=89 second=244 amount=-1 +kerning first=8220 second=227 amount=-1 +kerning first=121 second=275 amount=-1 +kerning first=354 second=101 amount=-1 +kerning first=290 second=194 amount=-1 +kerning first=8250 second=368 amount=-1 +kerning first=374 second=244 amount=-1 +kerning first=316 second=8221 amount=-1 +kerning first=197 second=121 amount=-1 +kerning first=262 second=296 amount=-1 +kerning first=346 second=325 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=334 second=46 amount=-1 +kerning first=370 second=46 amount=-1 +kerning first=66 second=83 amount=-1 +kerning first=264 second=69 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=194 second=266 amount=-1 +kerning first=89 second=266 amount=-1 +kerning first=374 second=266 amount=-1 +kerning first=256 second=336 amount=-1 +kerning first=375 second=339 amount=-1 +kerning first=205 second=225 amount=-1 +kerning first=264 second=70 amount=-1 +kerning first=266 second=266 amount=-1 +kerning first=226 second=253 amount=-1 +kerning first=230 second=318 amount=-1 +kerning first=39 second=1111 amount=1 +kerning first=194 second=334 amount=-1 +kerning first=317 second=86 amount=-1 +kerning first=8250 second=118 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=316 second=8217 amount=-1 +kerning first=119 second=230 amount=-1 +kerning first=371 second=8220 amount=-1 +kerning first=261 second=8221 amount=-1 +kerning first=381 second=375 amount=-1 +kerning first=316 second=45 amount=-1 +kerning first=374 second=333 amount=-1 +kerning first=232 second=311 amount=-1 +kerning first=193 second=370 amount=-1 +kerning first=221 second=213 amount=-1 +kerning first=262 second=8249 amount=-1 +kerning first=84 second=8250 amount=-1 +kerning first=232 second=289 amount=-1 +kerning first=268 second=289 amount=-1 +kerning first=364 second=260 amount=-1 +kerning first=310 second=210 amount=-1 +kerning first=112 second=318 amount=-1 +kerning first=209 second=259 amount=-1 +kerning first=196 second=289 amount=-1 +kerning first=376 second=289 amount=-1 +kerning first=66 second=270 amount=-1 +kerning first=269 second=255 amount=-1 +kerning first=287 second=122 amount=-1 +kerning first=253 second=318 amount=-1 +kerning first=220 second=260 amount=-1 +kerning first=304 second=289 amount=-1 +kerning first=8250 second=85 amount=-1 +kerning first=195 second=87 amount=-2 +kerning first=346 second=194 amount=-1 +kerning first=113 second=8221 amount=-1 +kerning first=346 second=207 amount=-1 +kerning first=354 second=288 amount=-1 +kerning first=256 second=218 amount=-1 +kerning first=107 second=277 amount=-1 +kerning first=77 second=369 amount=-1 +kerning first=350 second=219 amount=-1 +kerning first=315 second=122 amount=-1 +kerning first=371 second=248 amount=-1 +kerning first=354 second=81 amount=-1 +kerning first=356 second=277 amount=-1 +kerning first=119 second=231 amount=-1 +kerning first=66 second=291 amount=-1 +kerning first=199 second=210 amount=-1 +kerning first=217 second=346 amount=-1 +kerning first=253 second=242 amount=-1 +kerning first=194 second=365 amount=-1 +kerning first=350 second=89 amount=-1 +kerning first=302 second=365 amount=-1 +kerning first=350 second=80 amount=-1 +kerning first=121 second=351 amount=-1 +kerning first=258 second=284 amount=-1 +kerning first=284 second=256 amount=-1 +kerning first=256 second=217 amount=-1 +kerning first=251 second=121 amount=-1 +kerning first=356 second=256 amount=-2 +kerning first=375 second=101 amount=-1 +kerning first=119 second=259 amount=-1 +kerning first=264 second=298 amount=-1 +kerning first=73 second=224 amount=-1 +kerning first=254 second=375 amount=-1 +kerning first=193 second=369 amount=-1 +kerning first=199 second=206 amount=-1 +kerning first=193 second=112 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=8216 second=248 amount=-1 +kerning first=71 second=354 amount=-1 +kerning first=65 second=89 amount=-2 +kerning first=8218 second=219 amount=-1 +kerning first=256 second=86 amount=-2 +kerning first=284 second=354 amount=-1 +kerning first=45 second=382 amount=-1 +kerning first=82 second=333 amount=-1 +kerning first=344 second=281 amount=-1 +kerning first=376 second=214 amount=-1 +kerning first=118 second=333 amount=-1 +kerning first=352 second=362 amount=-1 +kerning first=256 second=354 amount=-2 +kerning first=366 second=382 amount=-1 +kerning first=8220 second=111 amount=-1 +kerning first=264 second=280 amount=-1 +kerning first=1059 second=1040 amount=-2 +kerning first=255 second=287 amount=-1 +kerning first=82 second=235 amount=-1 +kerning first=315 second=8221 amount=-1 +kerning first=356 second=103 amount=-1 +kerning first=84 second=333 amount=-1 +kerning first=118 second=235 amount=-1 +kerning first=1075 second=1083 amount=-1 +kerning first=231 second=316 amount=-1 +kerning first=284 second=103 amount=-1 +kerning first=375 second=316 amount=-1 +kerning first=268 second=214 amount=-1 +kerning first=350 second=220 amount=-1 +kerning first=339 second=316 amount=-1 +kerning first=196 second=214 amount=-1 +kerning first=267 second=316 amount=-1 +kerning first=71 second=103 amount=-1 +kerning first=8216 second=65 amount=-2 +kerning first=102 second=8221 amount=1 +kerning first=1036 second=1086 amount=-1 +kerning first=264 second=200 amount=-1 +kerning first=196 second=212 amount=-1 +kerning first=363 second=287 amount=-1 +kerning first=199 second=330 amount=-1 +kerning first=66 second=8221 amount=-1 +kerning first=87 second=8250 amount=-1 +kerning first=258 second=262 amount=-1 +kerning first=371 second=118 amount=-1 +kerning first=227 second=118 amount=-1 +kerning first=263 second=118 amount=-1 +kerning first=354 second=211 amount=-1 +kerning first=268 second=290 amount=-1 +kerning first=217 second=8249 amount=-1 +kerning first=313 second=366 amount=-1 +kerning first=325 second=8249 amount=-1 +kerning first=65 second=67 amount=-1 +kerning first=289 second=8249 amount=-1 +kerning first=66 second=313 amount=-1 +kerning first=84 second=230 amount=-1 +kerning first=376 second=290 amount=-1 +kerning first=240 second=44 amount=-1 +kerning first=338 second=287 amount=-1 +kerning first=374 second=267 amount=-1 +kerning first=107 second=234 amount=-1 +kerning first=66 second=193 amount=-1 +kerning first=199 second=79 amount=-1 +kerning first=240 second=120 amount=-1 +kerning first=86 second=118 amount=-1 +kerning first=317 second=85 amount=-1 +kerning first=260 second=350 amount=-1 +kerning first=255 second=244 amount=-1 +kerning first=83 second=209 amount=-1 +kerning first=368 second=350 amount=-1 +kerning first=118 second=257 amount=-1 +kerning first=356 second=234 amount=-1 +kerning first=89 second=267 amount=-1 +kerning first=376 second=192 amount=-2 +kerning first=8250 second=75 amount=-1 +kerning first=45 second=282 amount=-1 +kerning first=268 second=192 amount=-1 +kerning first=72 second=251 amount=-1 +kerning first=374 second=245 amount=-1 +kerning first=82 second=355 amount=-1 +kerning first=310 second=250 amount=-1 +kerning first=8249 second=374 amount=-1 +kerning first=83 second=78 amount=-1 +kerning first=350 second=198 amount=-1 +kerning first=221 second=332 amount=-1 +kerning first=89 second=245 amount=-1 +kerning first=76 second=221 amount=-1 +kerning first=197 second=361 amount=-1 +kerning first=84 second=378 amount=-1 +kerning first=75 second=338 amount=-1 +kerning first=212 second=256 amount=-1 +kerning first=1107 second=1113 amount=-1 +kerning first=381 second=102 amount=-1 +kerning first=76 second=90 amount=-1 +kerning first=377 second=361 amount=-1 +kerning first=86 second=227 amount=-1 +kerning first=255 second=113 amount=-1 +kerning first=71 second=256 amount=-1 +kerning first=351 second=291 amount=-1 +kerning first=315 second=291 amount=-1 +kerning first=1024 second=1090 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=279 second=291 amount=-1 +kerning first=310 second=119 amount=-1 +kerning first=346 second=119 amount=-1 +kerning first=207 second=291 amount=-1 +kerning first=254 second=314 amount=-1 +kerning first=8250 second=270 amount=-1 +kerning first=315 second=8217 amount=-1 +kerning first=85 second=198 amount=-1 +kerning first=354 second=233 amount=-1 +kerning first=84 second=113 amount=-1 +kerning first=334 second=198 amount=-1 +kerning first=344 second=79 amount=-1 +kerning first=370 second=198 amount=-1 +kerning first=264 second=67 amount=-1 +kerning first=262 second=198 amount=-1 +kerning first=251 second=291 amount=-1 +kerning first=77 second=250 amount=-1 +kerning first=8217 second=233 amount=-1 +kerning first=87 second=67 amount=-1 +kerning first=260 second=117 amount=-1 +kerning first=74 second=291 amount=-1 +kerning first=192 second=67 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=221 second=268 amount=-1 +kerning first=66 second=210 amount=-1 +kerning first=270 second=44 amount=-1 +kerning first=187 second=377 amount=-1 +kerning first=356 second=171 amount=-1 +kerning first=66 second=212 amount=-1 +kerning first=356 second=337 amount=-1 +kerning first=264 second=72 amount=-1 +kerning first=317 second=378 amount=-1 +kerning first=67 second=203 amount=-1 +kerning first=231 second=261 amount=-1 +kerning first=266 second=210 amount=-1 +kerning first=354 second=228 amount=-1 +kerning first=327 second=361 amount=-1 +kerning first=375 second=261 amount=-1 +kerning first=78 second=361 amount=-1 +kerning first=75 second=284 amount=-1 +kerning first=267 second=261 amount=-1 +kerning first=344 second=89 amount=-1 +kerning first=196 second=83 amount=-1 +kerning first=196 second=367 amount=-1 +kerning first=268 second=83 amount=-1 +kerning first=234 second=108 amount=-1 +kerning first=304 second=367 amount=-1 +kerning first=376 second=83 amount=-1 +kerning first=1098 second=1118 amount=-1 +kerning first=344 second=245 amount=-1 +kerning first=67 second=262 amount=-1 +kerning first=275 second=107 amount=-1 +kerning first=260 second=286 amount=-1 +kerning first=354 second=67 amount=-1 +kerning first=109 second=8249 amount=-1 +kerning first=260 second=262 amount=-1 +kerning first=73 second=8249 amount=-1 +kerning first=286 second=8249 amount=-1 +kerning first=8216 second=111 amount=-1 +kerning first=192 second=356 amount=-2 +kerning first=66 second=289 amount=-1 +kerning first=356 second=194 amount=-2 +kerning first=207 second=289 amount=-1 +kerning first=351 second=289 amount=-1 +kerning first=279 second=289 amount=-1 +kerning first=315 second=289 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=71 second=194 amount=-1 +kerning first=212 second=194 amount=-1 +kerning first=193 second=45 amount=-1 +kerning first=374 second=97 amount=-1 +kerning first=310 second=211 amount=-1 +kerning first=66 second=353 amount=-1 +kerning first=317 second=255 amount=-1 +kerning first=266 second=112 amount=-1 +kerning first=353 second=255 amount=-1 +kerning first=245 second=255 amount=-1 +kerning first=194 second=112 amount=-1 +kerning first=281 second=255 amount=-1 +kerning first=8250 second=119 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=87 second=243 amount=-1 +kerning first=302 second=97 amount=-1 +kerning first=121 second=113 amount=-1 +kerning first=351 second=353 amount=-1 +kerning first=8218 second=217 amount=-1 +kerning first=310 second=290 amount=-1 +kerning first=242 second=46 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=350 second=46 amount=-1 +kerning first=266 second=209 amount=-1 +kerning first=83 second=76 amount=-1 +kerning first=84 second=338 amount=-1 +kerning first=217 second=257 amount=-1 +kerning first=89 second=288 amount=-1 +kerning first=45 second=207 amount=-1 +kerning first=194 second=288 amount=-1 +kerning first=325 second=257 amount=-1 +kerning first=253 second=257 amount=-1 +kerning first=289 second=257 amount=-1 +kerning first=120 second=225 amount=-1 +kerning first=253 second=111 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=8216 second=279 amount=-1 +kerning first=107 second=273 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=1050 second=1105 amount=-1 +kerning first=199 second=193 amount=-1 +kerning first=194 second=8221 amount=-1 +kerning first=268 second=78 amount=-1 +kerning first=226 second=375 amount=-1 +kerning first=231 second=46 amount=-1 +kerning first=339 second=46 amount=-1 +kerning first=352 second=282 amount=-1 +kerning first=72 second=369 amount=-1 +kerning first=354 second=213 amount=-1 +kerning first=67 second=282 amount=-1 +kerning first=192 second=87 amount=-2 +kerning first=101 second=316 amount=-1 +kerning first=207 second=230 amount=-1 +kerning first=73 second=259 amount=-1 +kerning first=242 second=316 amount=-1 +kerning first=330 second=369 amount=-1 +kerning first=1061 second=1086 amount=-1 +kerning first=376 second=122 amount=-1 +kerning first=352 second=287 amount=-1 +kerning first=1061 second=1059 amount=-1 +kerning first=268 second=122 amount=-1 +kerning first=219 second=346 amount=-1 +kerning first=316 second=287 amount=-1 +kerning first=199 second=81 amount=-1 +kerning first=65 second=220 amount=-1 +kerning first=356 second=352 amount=-1 +kerning first=76 second=356 amount=-1 +kerning first=224 second=8217 amount=-1 +kerning first=45 second=75 amount=-1 +kerning first=84 second=74 amount=-1 +kerning first=231 second=105 amount=-1 +kerning first=102 second=254 amount=1 +kerning first=354 second=351 amount=-1 +kerning first=221 second=223 amount=-1 +kerning first=8217 second=244 amount=-1 +kerning first=267 second=105 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=65 second=332 amount=-1 +kerning first=266 second=75 amount=-1 +kerning first=90 second=289 amount=-1 +kerning first=67 second=352 amount=-1 +kerning first=253 second=277 amount=-1 +kerning first=381 second=253 amount=-1 +kerning first=102 second=104 amount=1 +kerning first=267 second=225 amount=-1 +kerning first=192 second=199 amount=-1 +kerning first=256 second=85 amount=-1 +kerning first=221 second=347 amount=-1 +kerning first=356 second=214 amount=-1 +kerning first=250 second=318 amount=-1 +kerning first=264 second=199 amount=-1 +kerning first=45 second=119 amount=-1 +kerning first=8217 second=97 amount=-1 +kerning first=197 second=71 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=310 second=251 amount=-1 +kerning first=86 second=229 amount=-1 +kerning first=84 second=382 amount=-1 +kerning first=83 second=120 amount=-1 +kerning first=187 second=68 amount=-1 +kerning first=371 second=8221 amount=-1 +kerning first=112 second=316 amount=-1 +kerning first=354 second=332 amount=-1 +kerning first=367 second=103 amount=-1 +kerning first=317 second=220 amount=-1 +kerning first=354 second=90 amount=-1 +kerning first=260 second=365 amount=-1 +kerning first=75 second=249 amount=-1 +kerning first=122 second=171 amount=-1 +kerning first=352 second=203 amount=-1 +kerning first=187 second=103 amount=-1 +kerning first=67 second=291 amount=-1 +kerning first=296 second=365 amount=-1 +kerning first=82 second=103 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=227 second=119 amount=-1 +kerning first=83 second=330 amount=-1 +kerning first=197 second=262 amount=-1 +kerning first=279 second=314 amount=-1 +kerning first=243 second=314 amount=-1 +kerning first=371 second=119 amount=-1 +kerning first=279 second=118 amount=-1 +kerning first=187 second=313 amount=-1 +kerning first=263 second=119 amount=-1 +kerning first=315 second=118 amount=-1 +kerning first=76 second=380 amount=-1 +kerning first=102 second=314 amount=1 +kerning first=66 second=118 amount=-1 +kerning first=66 second=314 amount=-1 +kerning first=289 second=380 amount=-1 +kerning first=253 second=380 amount=-1 +kerning first=187 second=362 amount=-1 +kerning first=195 second=217 amount=-1 +kerning first=88 second=216 amount=-1 +kerning first=194 second=366 amount=-1 +kerning first=8222 second=380 amount=-1 +kerning first=351 second=118 amount=-1 +kerning first=193 second=216 amount=-1 +kerning first=354 second=248 amount=-1 +kerning first=315 second=8220 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=8220 second=287 amount=-1 +kerning first=255 second=267 amount=-1 +kerning first=258 second=364 amount=-1 +kerning first=220 second=226 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=66 second=8220 amount=-1 +kerning first=350 second=202 amount=-1 +kerning first=87 second=199 amount=-1 +kerning first=196 second=118 amount=-1 +kerning first=249 second=8221 amount=-1 +kerning first=350 second=85 amount=-1 +kerning first=310 second=79 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=302 second=361 amount=-1 +kerning first=376 second=118 amount=-1 +kerning first=65 second=336 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=344 second=338 amount=-1 +kerning first=232 second=118 amount=-1 +kerning first=356 second=377 amount=-1 +kerning first=65 second=85 amount=-1 +kerning first=221 second=83 amount=-1 +kerning first=45 second=78 amount=-1 +kerning first=1059 second=1060 amount=-1 +kerning first=311 second=8249 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=350 second=315 amount=-1 +kerning first=207 second=250 amount=-1 +kerning first=87 second=257 amount=-1 +kerning first=354 second=193 amount=-2 +kerning first=353 second=103 amount=-1 +kerning first=281 second=103 amount=-1 +kerning first=317 second=103 amount=-1 +kerning first=8218 second=374 amount=-2 +kerning first=8218 second=380 amount=-1 +kerning first=98 second=318 amount=-1 +kerning first=376 second=210 amount=-1 +kerning first=118 second=337 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=45 second=221 amount=-1 +kerning first=275 second=318 amount=-1 +kerning first=82 second=337 amount=-1 +kerning first=66 second=250 amount=-1 +kerning first=196 second=210 amount=-1 +kerning first=218 second=65 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=268 second=210 amount=-1 +kerning first=290 second=65 amount=-1 +kerning first=199 second=286 amount=-1 +kerning first=362 second=65 amount=-1 +kerning first=256 second=118 amount=-1 +kerning first=264 second=204 amount=-1 +kerning first=252 second=253 amount=-1 +kerning first=364 second=378 amount=-1 +kerning first=260 second=221 amount=-2 +kerning first=366 second=227 amount=-1 +kerning first=281 second=44 amount=-1 +kerning first=220 second=378 amount=-1 +kerning first=330 second=227 amount=-1 +kerning first=354 second=171 amount=-1 +kerning first=266 second=73 amount=-1 +kerning first=354 second=268 amount=-1 +kerning first=45 second=280 amount=-1 +kerning first=352 second=366 amount=-1 +kerning first=119 second=269 amount=-1 +kerning first=317 second=356 amount=-1 +kerning first=192 second=219 amount=-1 +kerning first=72 second=226 amount=-1 +kerning first=262 second=212 amount=-1 +kerning first=262 second=66 amount=-1 +kerning first=375 second=242 amount=-1 +kerning first=367 second=108 amount=-1 +kerning first=86 second=328 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=118 second=108 amount=-1 +kerning first=8216 second=291 amount=-1 +kerning first=82 second=108 amount=-1 +kerning first=280 second=103 amount=-1 +kerning first=223 second=108 amount=-1 +kerning first=262 second=317 amount=-1 +kerning first=303 second=242 amount=-1 +kerning first=83 second=310 amount=-1 +kerning first=258 second=252 amount=-1 +kerning first=291 second=45 amount=-1 +kerning first=8220 second=248 amount=-1 +kerning first=354 second=122 amount=-1 +kerning first=87 second=224 amount=-1 +kerning first=1061 second=1105 amount=-1 +kerning first=8250 second=375 amount=-1 +kerning first=206 second=261 amount=-1 +kerning first=267 second=237 amount=-1 +kerning first=103 second=115 amount=-1 +kerning first=209 second=225 amount=-1 +kerning first=8218 second=368 amount=-1 +kerning first=303 second=275 amount=-1 +kerning first=376 second=353 amount=-1 +kerning first=66 second=202 amount=-1 +kerning first=194 second=119 amount=-1 +kerning first=1058 second=1103 amount=-1 +kerning first=77 second=45 amount=-1 +kerning first=187 second=194 amount=-1 +kerning first=87 second=111 amount=-1 +kerning first=218 second=45 amount=-1 +kerning first=307 second=287 amount=-1 +kerning first=83 second=325 amount=-1 +kerning first=89 second=121 amount=-1 +kerning first=119 second=281 amount=-1 +kerning first=1050 second=1086 amount=-1 +kerning first=268 second=291 amount=-1 +kerning first=290 second=45 amount=-1 +kerning first=326 second=45 amount=-1 +kerning first=362 second=45 amount=-1 +kerning first=317 second=354 amount=-1 +kerning first=350 second=374 amount=-1 +kerning first=311 second=243 amount=-1 +kerning first=205 second=97 amount=-1 +kerning first=233 second=287 amount=-1 +kerning first=8216 second=100 amount=-1 +kerning first=269 second=287 amount=-1 +kerning first=217 second=193 amount=-1 +kerning first=197 second=287 amount=-1 +kerning first=196 second=353 amount=-1 +kerning first=88 second=45 amount=-1 +kerning first=108 second=8217 amount=-1 +kerning first=84 second=283 amount=-1 +kerning first=1061 second=1108 amount=-1 +kerning first=291 second=228 amount=-1 +kerning first=278 second=287 amount=-1 +kerning first=377 second=287 amount=-1 +kerning first=249 second=8217 amount=-1 +kerning first=321 second=8217 amount=-1 +kerning first=199 second=76 amount=-1 +kerning first=313 second=368 amount=-1 +kerning first=199 second=327 amount=-1 +kerning first=311 second=111 amount=-1 +kerning first=374 second=264 amount=-1 +kerning first=266 second=264 amount=-1 +kerning first=194 second=264 amount=-1 +kerning first=89 second=264 amount=-1 +kerning first=221 second=248 amount=-1 +kerning first=248 second=253 amount=-1 +kerning first=89 second=269 amount=-1 +kerning first=356 second=253 amount=-1 +kerning first=197 second=364 amount=-1 +kerning first=314 second=118 amount=-1 +kerning first=374 second=269 amount=-1 +kerning first=256 second=334 amount=-1 +kerning first=67 second=207 amount=-1 +kerning first=266 second=346 amount=-1 +kerning first=75 second=288 amount=-1 +kerning first=8216 second=232 amount=-1 +kerning first=218 second=289 amount=-1 +kerning first=77 second=289 amount=-1 +kerning first=89 second=346 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=362 second=289 amount=-1 +kerning first=86 second=99 amount=-1 +kerning first=290 second=289 amount=-1 +kerning first=220 second=46 amount=-1 +kerning first=296 second=369 amount=-1 +kerning first=352 second=207 amount=-1 +kerning first=260 second=369 amount=-1 +kerning first=364 second=46 amount=-1 +kerning first=366 second=192 amount=-1 +kerning first=102 second=98 amount=1 +kerning first=66 second=98 amount=-1 +kerning first=350 second=70 amount=-1 +kerning first=371 second=99 amount=-1 +kerning first=362 second=230 amount=-1 +kerning first=8220 second=267 amount=-1 +kerning first=76 second=87 amount=-1 +kerning first=199 second=332 amount=-1 +kerning first=82 second=352 amount=-1 +kerning first=77 second=230 amount=-1 +kerning first=260 second=81 amount=-1 +kerning first=218 second=230 amount=-1 +kerning first=251 second=375 amount=-1 +kerning first=374 second=346 amount=-1 +kerning first=221 second=122 amount=-1 +kerning first=119 second=233 amount=-1 +kerning first=65 second=217 amount=-1 +kerning first=86 second=284 amount=-1 +kerning first=221 second=351 amount=-1 +kerning first=83 second=102 amount=-1 +kerning first=334 second=256 amount=-1 +kerning first=221 second=210 amount=-1 +kerning first=66 second=171 amount=-1 +kerning first=324 second=119 amount=-1 +kerning first=350 second=217 amount=-1 +kerning first=302 second=117 amount=-1 +kerning first=262 second=256 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=45 second=379 amount=-1 +kerning first=85 second=256 amount=-1 +kerning first=232 second=314 amount=-1 +kerning first=1046 second=1095 amount=-1 +kerning first=87 second=263 amount=-1 +kerning first=381 second=121 amount=-1 +kerning first=84 second=245 amount=-1 +kerning first=326 second=8220 amount=-1 +kerning first=205 second=363 amount=-1 +kerning first=262 second=82 amount=-1 +kerning first=113 second=8220 amount=-1 +kerning first=266 second=302 amount=-1 +kerning first=258 second=221 amount=-2 +kerning first=296 second=228 amount=-1 +kerning first=368 second=228 amount=-1 +kerning first=376 second=347 amount=-1 +kerning first=119 second=228 amount=-1 +kerning first=375 second=281 amount=-1 +kerning first=196 second=347 amount=-1 +kerning first=1040 second=1059 amount=-1 +kerning first=97 second=8221 amount=-1 +kerning first=195 second=85 amount=-1 +kerning first=187 second=200 amount=-1 +kerning first=193 second=361 amount=-1 +kerning first=67 second=288 amount=-1 +kerning first=260 second=266 amount=-1 +kerning first=8216 second=335 amount=-1 +kerning first=289 second=316 amount=-1 +kerning first=229 second=8220 amount=-1 +kerning first=218 second=197 amount=-1 +kerning first=371 second=246 amount=-1 +kerning first=354 second=83 amount=-1 +kerning first=356 second=90 amount=-1 +kerning first=346 second=171 amount=-1 +kerning first=362 second=197 amount=-1 +kerning first=379 second=365 amount=-1 +kerning first=310 second=171 amount=-1 +kerning first=352 second=325 amount=-1 +kerning first=86 second=246 amount=-1 +kerning first=290 second=197 amount=-1 +kerning first=382 second=171 amount=-1 +kerning first=258 second=87 amount=-2 +kerning first=1027 second=1051 amount=-1 +kerning first=234 second=103 amount=-1 +kerning first=8250 second=350 amount=-1 +kerning first=1043 second=1077 amount=-1 +kerning first=67 second=71 amount=-1 +kerning first=303 second=281 amount=-1 +kerning first=198 second=103 amount=-1 +kerning first=364 second=103 amount=-1 +kerning first=220 second=103 amount=-1 +kerning first=256 second=103 amount=-1 +kerning first=86 second=266 amount=-1 +kerning first=84 second=263 amount=-1 +kerning first=256 second=364 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=119 second=333 amount=-1 +kerning first=187 second=370 amount=-1 +kerning first=284 second=196 amount=-1 +kerning first=246 second=120 amount=-1 +kerning first=260 second=334 amount=-1 +kerning first=262 second=214 amount=-1 +kerning first=266 second=284 amount=-1 +kerning first=232 second=255 amount=-1 +kerning first=84 second=199 amount=-1 +kerning first=83 second=207 amount=-1 +kerning first=286 second=89 amount=-1 +kerning first=374 second=284 amount=-1 +kerning first=87 second=382 amount=-1 +kerning first=45 second=203 amount=-1 +kerning first=367 second=121 amount=-1 +kerning first=205 second=361 amount=-1 +kerning first=121 second=45 amount=-1 +kerning first=344 second=362 amount=-1 +kerning first=259 second=121 amount=-1 +kerning first=264 second=382 amount=-1 +kerning first=223 second=121 amount=-1 +kerning first=310 second=264 amount=-1 +kerning first=187 second=121 amount=-1 +kerning first=89 second=284 amount=-1 +kerning first=303 second=339 amount=-1 +kerning first=224 second=8221 amount=-1 +kerning first=66 second=102 amount=-1 +kerning first=260 second=8221 amount=-1 +kerning first=98 second=316 amount=-1 +kerning first=257 second=118 amount=-1 +kerning first=303 second=235 amount=-1 +kerning first=216 second=44 amount=-1 +kerning first=375 second=235 amount=-1 +kerning first=365 second=118 amount=-1 +kerning first=119 second=248 amount=-1 +kerning first=90 second=378 amount=-1 +kerning first=253 second=283 amount=-1 +kerning first=82 second=218 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=87 second=281 amount=-1 +kerning first=221 second=118 amount=-1 +kerning first=45 second=69 amount=-1 +kerning first=284 second=86 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=8216 second=289 amount=-1 +kerning first=262 second=315 amount=-1 +kerning first=264 second=323 amount=-1 +kerning first=45 second=346 amount=-1 +kerning first=71 second=86 amount=-1 +kerning first=192 second=217 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=304 second=250 amount=-1 +kerning first=86 second=83 amount=-1 +kerning first=217 second=224 amount=-1 +kerning first=356 second=198 amount=-2 +kerning first=289 second=224 amount=-1 +kerning first=327 second=227 amount=-1 +kerning first=85 second=192 amount=-1 +kerning first=284 second=198 amount=-1 +kerning first=291 second=227 amount=-1 +kerning first=255 second=227 amount=-1 +kerning first=192 second=89 amount=-2 +kerning first=236 second=8249 amount=-1 +kerning first=78 second=227 amount=-1 +kerning first=72 second=363 amount=-1 +kerning first=86 second=244 amount=-1 +kerning first=381 second=291 amount=-1 +kerning first=199 second=325 amount=-1 +kerning first=325 second=97 amount=-1 +kerning first=371 second=244 amount=-1 +kerning first=317 second=90 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=201 second=291 amount=-1 +kerning first=86 second=187 amount=-1 +kerning first=193 second=210 amount=-1 +kerning first=375 second=378 amount=-1 +kerning first=117 second=287 amount=-1 +kerning first=248 second=44 amount=-1 +kerning first=290 second=256 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=199 second=268 amount=-1 +kerning first=88 second=210 amount=-1 +kerning first=362 second=256 amount=-1 +kerning first=121 second=337 amount=-1 +kerning first=284 second=44 amount=-1 +kerning first=71 second=44 amount=-1 +kerning first=197 second=366 amount=-1 +kerning first=212 second=198 amount=-1 +kerning first=71 second=198 amount=-1 +kerning first=218 second=256 amount=-1 +kerning first=310 second=286 amount=-1 +kerning first=89 second=326 amount=-1 +kerning first=315 second=379 amount=-1 +kerning first=366 second=287 amount=-1 +kerning first=330 second=287 amount=-1 +kerning first=266 second=205 amount=-1 +kerning first=258 second=287 amount=-1 +kerning first=376 second=228 amount=-1 +kerning first=260 second=8220 amount=-1 +kerning first=368 second=260 amount=-1 +kerning first=194 second=368 amount=-1 +kerning first=374 second=326 amount=-1 +kerning first=304 second=228 amount=-1 +kerning first=194 second=262 amount=-1 +kerning first=86 second=350 amount=-1 +kerning first=283 second=107 amount=-1 +kerning first=374 second=262 amount=-1 +kerning first=248 second=108 amount=-1 +kerning first=266 second=262 amount=-1 +kerning first=344 second=8249 amount=-1 +kerning first=217 second=261 amount=-1 +kerning first=380 second=8249 amount=-1 +kerning first=255 second=269 amount=-1 +kerning first=325 second=261 amount=-1 +kerning first=289 second=261 amount=-1 +kerning first=8220 second=97 amount=-1 +kerning first=253 second=261 amount=-1 +kerning first=327 second=229 amount=-1 +kerning first=187 second=310 amount=-1 +kerning first=291 second=229 amount=-1 +kerning first=87 second=338 amount=-1 +kerning first=1038 second=1113 amount=-1 +kerning first=220 second=257 amount=-1 +kerning first=1036 second=1059 amount=-1 +kerning first=78 second=229 amount=-1 +kerning first=194 second=346 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=66 second=45 amount=-1 +kerning first=255 second=229 amount=-1 +kerning first=219 second=229 amount=-1 +kerning first=84 second=243 amount=-1 +kerning first=103 second=97 amount=-1 +kerning first=260 second=332 amount=-1 +kerning first=1070 second=1038 amount=-1 +kerning first=199 second=290 amount=-1 +kerning first=121 second=271 amount=-1 +kerning first=8216 second=333 amount=-1 +kerning first=102 second=45 amount=-1 +kerning first=195 second=356 amount=-2 +kerning first=87 second=261 amount=-1 +kerning first=75 second=211 amount=-1 +kerning first=118 second=275 amount=-1 +kerning first=313 second=381 amount=-1 +kerning first=266 second=304 amount=-1 +kerning first=82 second=275 amount=-1 +kerning first=339 second=255 amount=-1 +kerning first=82 second=240 amount=-1 +kerning first=231 second=255 amount=-1 +kerning first=119 second=226 amount=-1 +kerning first=8218 second=378 amount=-1 +kerning first=267 second=255 amount=-1 +kerning first=195 second=255 amount=-1 +kerning first=374 second=227 amount=-1 +kerning first=241 second=119 amount=-1 +kerning first=296 second=226 amount=-1 +kerning first=277 second=119 amount=-1 +kerning first=90 second=255 amount=-1 +kerning first=302 second=227 amount=-1 +kerning first=345 second=44 amount=-1 +kerning first=368 second=226 amount=-1 +kerning first=374 second=259 amount=-1 +kerning first=313 second=119 amount=-1 +kerning first=89 second=227 amount=-1 +kerning first=330 second=225 amount=-1 +kerning first=366 second=225 amount=-1 +kerning first=310 second=363 amount=-1 +kerning first=233 second=289 amount=-1 +kerning first=1113 second=1091 amount=-1 +kerning first=103 second=230 amount=-1 +kerning first=84 second=241 amount=-1 +kerning first=364 second=257 amount=-1 +kerning first=334 second=192 amount=-1 +kerning first=370 second=192 amount=-1 +kerning first=193 second=289 amount=-1 +kerning first=213 second=193 amount=-1 +kerning first=192 second=338 amount=-1 +kerning first=193 second=8220 amount=-1 +kerning first=264 second=338 amount=-1 +kerning first=362 second=122 amount=-1 +kerning first=245 second=44 amount=-1 +kerning first=218 second=122 amount=-1 +kerning first=84 second=375 amount=-1 +kerning first=86 second=288 amount=-1 +kerning first=65 second=354 amount=-2 +kerning first=68 second=46 amount=-1 +kerning first=260 second=213 amount=-1 +kerning first=195 second=361 amount=-1 +kerning first=221 second=230 amount=-1 +kerning first=344 second=364 amount=-1 +kerning first=379 second=369 amount=-1 +kerning first=245 second=46 amount=-1 +kerning first=281 second=46 amount=-1 +kerning first=266 second=282 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=118 second=318 amount=-1 +kerning first=199 second=83 amount=-1 +kerning first=197 second=346 amount=-1 +kerning first=45 second=201 amount=-1 +kerning first=240 second=375 amount=-1 +kerning first=286 second=87 amount=-1 +kerning first=99 second=375 amount=-1 +kerning first=87 second=259 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=375 second=277 amount=-1 +kerning first=209 second=103 amount=-1 +kerning first=89 second=328 amount=-1 +kerning first=354 second=243 amount=-1 +kerning first=303 second=277 amount=-1 +kerning first=376 second=351 amount=-1 +kerning first=352 second=75 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=196 second=351 amount=-1 +kerning first=97 second=8217 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=199 second=103 amount=-1 +kerning first=69 second=287 amount=-1 +kerning first=204 second=289 amount=-1 +kerning first=82 second=253 amount=-1 +kerning first=1100 second=1118 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=187 second=253 amount=-1 +kerning first=72 second=171 amount=-1 +kerning first=268 second=65 amount=-1 +kerning first=223 second=253 amount=-1 +kerning first=327 second=117 amount=-1 +kerning first=212 second=260 amount=-1 +kerning first=367 second=253 amount=-1 +kerning first=356 second=121 amount=-1 +kerning first=71 second=260 amount=-1 +kerning first=195 second=334 amount=-1 +kerning first=374 second=328 amount=-1 +kerning first=86 second=231 amount=-1 +kerning first=216 second=197 amount=-1 +kerning first=284 second=260 amount=-1 +kerning first=344 second=318 amount=-1 +kerning first=83 second=270 amount=-1 +kerning first=356 second=260 amount=-2 +kerning first=234 second=121 amount=-1 +kerning first=356 second=196 amount=-2 +kerning first=71 second=196 amount=-1 +kerning first=250 second=316 amount=-1 +kerning first=212 second=196 amount=-1 +kerning first=351 second=351 amount=-1 +kerning first=281 second=118 amount=-1 +kerning first=221 second=228 amount=-1 +kerning first=218 second=44 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=83 second=171 amount=-1 +kerning first=374 second=99 amount=-1 +kerning first=310 second=213 amount=-1 +kerning first=344 second=221 amount=-1 +kerning first=67 second=302 amount=-1 +kerning first=82 second=220 amount=-1 +kerning first=187 second=82 amount=-1 +kerning first=66 second=351 amount=-1 +kerning first=1027 second=1093 amount=-1 +kerning first=199 second=270 amount=-1 +kerning first=258 second=71 amount=-1 +kerning first=374 second=8250 amount=-1 +kerning first=206 second=224 amount=-1 +kerning first=339 second=103 amount=-1 +kerning first=119 second=246 amount=-1 +kerning first=375 second=103 amount=-1 +kerning first=267 second=103 amount=-1 +kerning first=84 second=8249 amount=-1 +kerning first=195 second=103 amount=-1 +kerning first=325 second=224 amount=-1 +kerning first=231 second=103 amount=-1 +kerning first=90 second=103 amount=-1 +kerning first=281 second=253 amount=-1 +kerning first=245 second=253 amount=-1 +kerning first=187 second=220 amount=-1 +kerning first=353 second=253 amount=-1 +kerning first=195 second=354 amount=-2 +kerning first=317 second=253 amount=-1 +kerning first=45 second=344 amount=-1 +kerning first=260 second=171 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=368 second=171 amount=-1 +kerning first=234 second=255 amount=-1 +kerning first=253 second=281 amount=-1 +kerning first=87 second=283 amount=-1 +kerning first=354 second=118 amount=-1 +kerning first=72 second=365 amount=-1 +kerning first=377 second=117 amount=-1 +kerning first=45 second=253 amount=-1 +kerning first=266 second=45 amount=-1 +kerning first=262 second=313 amount=-1 +kerning first=86 second=264 amount=-1 +kerning first=283 second=287 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=70 second=287 amount=-1 +kerning first=262 second=216 amount=-1 +kerning first=106 second=287 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=206 second=257 amount=-1 +kerning first=192 second=85 amount=-1 +kerning first=87 second=74 amount=-1 +kerning first=268 second=274 amount=-1 +kerning first=118 second=273 amount=-1 +kerning first=120 second=8249 amount=-1 +kerning first=374 second=46 amount=-1 +kerning first=332 second=193 amount=-1 +kerning first=74 second=192 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=375 second=279 amount=-1 +kerning first=268 second=327 amount=-1 +kerning first=344 second=113 amount=-1 +kerning first=103 second=227 amount=-1 +kerning first=66 second=78 amount=-1 +kerning first=260 second=268 amount=-1 +kerning first=313 second=8217 amount=-1 +kerning first=1027 second=1113 amount=-1 +kerning first=121 second=333 amount=-1 +kerning first=370 second=291 amount=-1 +kerning first=298 second=291 amount=-1 +kerning first=262 second=291 amount=-1 +kerning first=121 second=291 amount=-1 +kerning first=85 second=291 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=8220 second=196 amount=-2 +kerning first=67 second=73 amount=-1 +kerning first=232 second=121 amount=-1 +kerning first=8249 second=86 amount=-1 +kerning first=344 second=199 amount=-1 +kerning first=84 second=67 amount=-1 +kerning first=187 second=198 amount=-1 +kerning first=374 second=210 amount=-1 +kerning first=258 second=366 amount=-1 +kerning first=379 second=367 amount=-1 +kerning first=89 second=277 amount=-1 +kerning first=223 second=44 amount=-1 +kerning first=352 second=73 amount=-1 +kerning first=45 second=366 amount=-1 +kerning first=192 second=253 amount=-1 +kerning first=85 second=194 amount=-1 +kerning first=122 second=112 amount=-1 +kerning first=89 second=119 amount=-1 +kerning first=262 second=194 amount=-1 +kerning first=350 second=105 amount=-1 +kerning first=230 second=119 amount=-1 +kerning first=356 second=240 amount=-1 +kerning first=121 second=335 amount=-1 +kerning first=374 second=119 amount=-1 +kerning first=8217 second=99 amount=-1 +kerning first=1045 second=1038 amount=-1 +kerning first=8250 second=282 amount=-1 +kerning first=317 second=374 amount=-1 +kerning first=281 second=107 amount=-1 +kerning first=193 second=353 amount=-1 +kerning first=187 second=66 amount=-1 +kerning first=295 second=45 amount=-1 +kerning first=246 second=314 amount=-1 +kerning first=296 second=367 amount=-1 +kerning first=88 second=212 amount=-1 +kerning first=260 second=367 amount=-1 +kerning first=99 second=289 amount=-1 +kerning first=193 second=212 amount=-1 +kerning first=86 second=101 amount=-1 +kerning first=67 second=205 amount=-1 +kerning first=8216 second=234 amount=-1 +kerning first=75 second=286 amount=-1 +kerning first=231 second=257 amount=-1 +kerning first=346 second=310 amount=-1 +kerning first=371 second=101 amount=-1 +kerning first=375 second=257 amount=-1 +kerning first=267 second=257 amount=-1 +kerning first=352 second=205 amount=-1 +kerning first=258 second=115 amount=-1 +kerning first=89 second=229 amount=-1 +kerning first=374 second=229 amount=-1 +kerning first=118 second=339 amount=-1 +kerning first=1036 second=1108 amount=-1 +kerning first=302 second=229 amount=-1 +kerning first=82 second=339 amount=-1 +kerning first=344 second=214 amount=-1 +kerning first=255 second=97 amount=-1 +kerning first=219 second=97 amount=-1 +kerning first=196 second=45 amount=-1 +kerning first=327 second=97 amount=-1 +kerning first=107 second=240 amount=-1 +kerning first=291 second=97 amount=-1 +kerning first=86 second=211 amount=-1 +kerning first=267 second=318 amount=-1 +kerning first=350 second=356 amount=-1 +kerning first=218 second=287 amount=-1 +kerning first=260 second=290 amount=-1 +kerning first=253 second=316 amount=-1 +kerning first=260 second=83 amount=-1 +kerning first=370 second=194 amount=-1 +kerning first=268 second=45 amount=-1 +kerning first=268 second=197 amount=-1 +kerning first=304 second=45 amount=-1 +kerning first=256 second=255 amount=-1 +kerning first=115 second=255 amount=-1 +kerning first=368 second=83 amount=-1 +kerning first=65 second=356 amount=-2 +kerning first=376 second=197 amount=-2 +kerning first=87 second=336 amount=-1 +kerning first=264 second=380 amount=-1 +kerning first=192 second=336 amount=-1 +kerning first=332 second=44 amount=-1 +kerning first=264 second=336 amount=-1 +kerning first=67 second=280 amount=-1 +kerning first=65 second=334 amount=-1 +kerning first=352 second=120 amount=-1 +kerning first=234 second=253 amount=-1 +kerning first=310 second=81 amount=-1 +kerning first=270 second=46 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=221 second=65 amount=-2 +kerning first=171 second=84 amount=-1 +kerning first=231 second=289 amount=-1 +kerning first=234 second=46 amount=-1 +kerning first=344 second=243 amount=-1 +kerning first=75 second=264 amount=-1 +kerning first=1054 second=1059 amount=-1 +kerning first=87 second=380 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=82 second=121 amount=-1 +kerning first=310 second=288 amount=-1 +kerning first=333 second=318 amount=-1 +kerning first=369 second=318 amount=-1 +kerning first=187 second=317 amount=-1 +kerning first=66 second=122 amount=-1 +kerning first=8216 second=256 amount=-2 +kerning first=325 second=259 amount=-1 +kerning first=345 second=46 amount=-1 +kerning first=289 second=259 amount=-1 +kerning first=253 second=259 amount=-1 +kerning first=376 second=230 amount=-1 +kerning first=199 second=69 amount=-1 +kerning first=304 second=230 amount=-1 +kerning first=371 second=8217 amount=-1 +kerning first=337 second=375 amount=-1 +kerning first=187 second=381 amount=-1 +kerning first=88 second=375 amount=-1 +kerning first=217 second=259 amount=-1 +kerning first=193 second=375 amount=-1 +kerning first=229 second=375 amount=-1 +kerning first=67 second=346 amount=-1 +kerning first=266 second=207 amount=-1 +kerning first=350 second=323 amount=-1 +kerning first=374 second=381 amount=-1 +kerning first=234 second=311 amount=-1 +kerning first=323 second=259 amount=-1 +kerning first=287 second=259 amount=-1 +kerning first=115 second=253 amount=-1 +kerning first=325 second=363 amount=-1 +kerning first=256 second=253 amount=-1 +kerning first=74 second=259 amount=-1 +kerning first=267 second=224 amount=-1 +kerning first=344 second=346 amount=-1 +kerning first=354 second=334 amount=-1 +kerning first=321 second=122 amount=-1 +kerning first=375 second=224 amount=-1 +kerning first=279 second=375 amount=-1 +kerning first=315 second=375 amount=-1 +kerning first=351 second=375 amount=-1 +kerning first=72 second=230 amount=-1 +kerning first=231 second=224 amount=-1 +kerning first=8217 second=261 amount=-1 +kerning first=8220 second=279 amount=-1 +kerning first=192 second=8220 amount=-1 +kerning first=102 second=316 amount=1 +kerning first=66 second=316 amount=-1 +kerning first=268 second=207 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=264 second=206 amount=-1 +kerning first=335 second=121 amount=-1 +kerning first=263 second=121 amount=-1 +kerning first=346 second=82 amount=-1 +kerning first=227 second=121 amount=-1 +kerning first=376 second=335 amount=-1 +kerning first=352 second=368 amount=-1 +kerning first=86 second=121 amount=-1 +kerning first=121 second=171 amount=-1 +kerning first=85 second=171 amount=-1 +kerning first=118 second=271 amount=-1 +kerning first=374 second=231 amount=-1 +kerning first=362 second=287 amount=-1 +kerning first=262 second=171 amount=-1 +kerning first=376 second=212 amount=-1 +kerning first=370 second=171 amount=-1 +kerning first=334 second=194 amount=-1 +kerning first=290 second=287 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=109 second=8217 amount=-1 +kerning first=86 second=213 amount=-1 +kerning first=243 second=375 amount=-1 +kerning first=8249 second=89 amount=-1 +kerning first=66 second=237 amount=-1 +kerning first=250 second=8217 amount=-1 +kerning first=66 second=375 amount=-1 +kerning first=266 second=310 amount=-1 +kerning first=377 second=171 amount=-1 +kerning first=204 second=229 amount=-1 +kerning first=350 second=237 amount=-1 +kerning first=353 second=351 amount=-1 +kerning first=8218 second=382 amount=-1 +kerning first=354 second=333 amount=-1 +kerning first=187 second=330 amount=-1 +kerning first=187 second=120 amount=-1 +kerning first=377 second=249 amount=-1 +kerning first=223 second=120 amount=-1 +kerning first=374 second=379 amount=-1 +kerning first=195 second=214 amount=-1 +kerning first=368 second=103 amount=-1 +kerning first=260 second=103 amount=-1 +kerning first=219 second=230 amount=-1 +kerning first=296 second=103 amount=-1 +kerning first=207 second=365 amount=-1 +kerning first=83 second=103 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=233 second=318 amount=-1 +kerning first=316 second=118 amount=-1 +kerning first=352 second=118 amount=-1 +kerning first=66 second=365 amount=-1 +kerning first=321 second=362 amount=-1 +kerning first=89 second=231 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=310 second=332 amount=-1 +kerning first=204 second=117 amount=-1 +kerning first=83 second=313 amount=-1 +kerning first=279 second=316 amount=-1 +kerning first=243 second=316 amount=-1 +kerning first=354 second=216 amount=-1 +kerning first=121 second=378 amount=-1 +kerning first=85 second=378 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=256 second=264 amount=-1 +kerning first=260 second=264 amount=-1 +kerning first=381 second=250 amount=-1 +kerning first=316 second=8220 amount=-1 +kerning first=82 second=281 amount=-1 +kerning first=187 second=202 amount=-1 +kerning first=118 second=281 amount=-1 +kerning first=347 second=375 amount=-1 +kerning first=1061 second=1098 amount=-1 +kerning first=1025 second=1098 amount=-1 +kerning first=370 second=378 amount=-1 +kerning first=363 second=8221 amount=-1 +kerning first=344 second=218 amount=-1 +kerning first=262 second=378 amount=-1 +kerning first=266 second=70 amount=-1 +kerning first=235 second=314 amount=-1 +kerning first=67 second=69 amount=-1 +kerning first=86 second=331 amount=-1 +kerning first=344 second=267 amount=-1 +kerning first=315 second=86 amount=-1 +kerning first=171 second=86 amount=-1 +kerning first=89 second=379 amount=-1 +kerning first=192 second=354 amount=-2 +kerning first=284 second=192 amount=-1 +kerning first=356 second=192 amount=-2 +kerning first=298 second=250 amount=-1 +kerning first=71 second=192 amount=-1 +kerning first=253 second=224 amount=-1 +kerning first=212 second=192 amount=-1 +kerning first=268 second=296 amount=-1 +kerning first=375 second=244 amount=-1 +kerning first=350 second=303 amount=-1 +kerning first=87 second=245 amount=-1 +kerning first=187 second=90 amount=-1 +kerning first=199 second=274 amount=-1 +kerning first=381 second=378 amount=-1 +kerning first=268 second=256 amount=-1 +kerning first=120 second=227 amount=-1 +kerning first=84 second=227 amount=-1 +kerning first=376 second=256 amount=-2 +kerning first=193 second=366 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=313 second=291 amount=-1 +kerning first=90 second=102 amount=-1 +kerning first=277 second=291 amount=-1 +kerning first=84 second=336 amount=-1 +kerning first=87 second=226 amount=-1 +kerning first=205 second=291 amount=-1 +kerning first=351 second=112 amount=-1 +kerning first=221 second=216 amount=-1 +kerning first=303 second=263 amount=-1 +kerning first=88 second=268 amount=-1 +kerning first=375 second=263 amount=-1 +kerning first=382 second=112 amount=-1 +kerning first=304 second=365 amount=-1 +kerning first=249 second=255 amount=-1 +kerning first=110 second=8249 amount=-1 +kerning first=196 second=365 amount=-1 +kerning first=74 second=8249 amount=-1 +kerning first=255 second=240 amount=-1 +kerning first=287 second=8249 amount=-1 +kerning first=192 second=84 amount=-2 +kerning first=323 second=8249 amount=-1 +kerning first=193 second=268 amount=-1 +kerning first=121 second=108 amount=-1 +kerning first=117 second=318 amount=-1 +kerning first=1025 second=1059 amount=-1 +kerning first=362 second=228 amount=-1 +kerning first=65 second=284 amount=-1 +kerning first=290 second=198 amount=-1 +kerning first=350 second=205 amount=-1 +kerning first=218 second=198 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=218 second=228 amount=-1 +kerning first=268 second=286 amount=-1 +kerning first=77 second=228 amount=-1 +kerning first=362 second=198 amount=-1 +kerning first=262 second=260 amount=-1 +kerning first=354 second=65 amount=-2 +kerning first=330 second=367 amount=-1 +kerning first=8250 second=194 amount=-1 +kerning first=1043 second=1078 amount=-1 +kerning first=258 second=367 amount=-1 +kerning first=85 second=260 amount=-1 +kerning first=74 second=229 amount=-1 +kerning first=107 second=339 amount=-1 +kerning first=8250 second=82 amount=-1 +kerning first=287 second=229 amount=-1 +kerning first=370 second=260 amount=-1 +kerning first=85 second=350 amount=-1 +kerning first=334 second=260 amount=-1 +kerning first=1040 second=1090 amount=-1 +kerning first=196 second=286 amount=-1 +kerning first=107 second=271 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=290 second=356 amount=-1 +kerning first=261 second=8217 amount=-1 +kerning first=118 second=242 amount=-1 +kerning first=1050 second=1058 amount=-1 +kerning first=205 second=261 amount=-1 +kerning first=369 second=8217 amount=-1 +kerning first=82 second=242 amount=-1 +kerning first=311 second=45 amount=-1 +kerning first=323 second=229 amount=-1 +kerning first=356 second=339 amount=-1 +kerning first=8217 second=231 amount=-1 +kerning first=199 second=304 amount=-1 +kerning first=119 second=339 amount=-1 +kerning first=356 second=211 amount=-1 +kerning first=242 second=44 amount=-1 +kerning first=8217 second=100 amount=-1 +kerning first=379 second=255 amount=-1 +kerning first=199 second=203 amount=-1 +kerning first=307 second=255 amount=-1 +kerning first=235 second=255 amount=-1 +kerning first=220 second=224 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=374 second=110 amount=-1 +kerning first=366 second=97 amount=-1 +kerning first=356 second=290 amount=-1 +kerning first=330 second=97 amount=-1 +kerning first=350 second=44 amount=-1 +kerning first=68 second=193 amount=-1 +kerning first=268 second=76 amount=-1 +kerning first=232 second=46 amount=-1 +kerning first=74 second=289 amount=-1 +kerning first=84 second=257 amount=-1 +kerning first=119 second=242 amount=-1 +kerning first=356 second=241 amount=-1 +kerning first=323 second=289 amount=-1 +kerning first=45 second=209 amount=-1 +kerning first=313 second=370 amount=-1 +kerning first=354 second=225 amount=-1 +kerning first=66 second=287 amount=-1 +kerning first=365 second=255 amount=-1 +kerning first=197 second=368 amount=-1 +kerning first=351 second=287 amount=-1 +kerning first=260 second=352 amount=-1 +kerning first=315 second=287 amount=-1 +kerning first=218 second=261 amount=-1 +kerning first=107 second=281 amount=-1 +kerning first=207 second=287 amount=-1 +kerning first=119 second=283 amount=-1 +kerning first=235 second=118 amount=-1 +kerning first=70 second=346 amount=-1 +kerning first=287 second=347 amount=-1 +kerning first=368 second=352 amount=-1 +kerning first=80 second=46 amount=-1 +kerning first=313 second=380 amount=-1 +kerning first=1050 second=1057 amount=-1 +kerning first=196 second=86 amount=-2 +kerning first=344 second=87 amount=-1 +kerning first=84 second=266 amount=-1 +kerning first=90 second=253 amount=-1 +kerning first=262 second=201 amount=-1 +kerning first=356 second=333 amount=-1 +kerning first=266 second=350 amount=-1 +kerning first=204 second=259 amount=-1 +kerning first=368 second=74 amount=-1 +kerning first=374 second=350 amount=-1 +kerning first=281 second=311 amount=-1 +kerning first=82 second=81 amount=-1 +kerning first=376 second=375 amount=-1 +kerning first=78 second=230 amount=-1 +kerning first=89 second=350 amount=-1 +kerning first=291 second=230 amount=-1 +kerning first=196 second=375 amount=-1 +kerning first=194 second=350 amount=-1 +kerning first=232 second=375 amount=-1 +kerning first=255 second=230 amount=-1 +kerning first=66 second=207 amount=-1 +kerning first=201 second=289 amount=-1 +kerning first=235 second=104 amount=-1 +kerning first=381 second=289 amount=-1 +kerning first=193 second=219 amount=-1 +kerning first=86 second=332 amount=-1 +kerning first=1038 second=1075 amount=-1 +kerning first=197 second=288 amount=-1 +kerning first=259 second=253 amount=-1 +kerning first=71 second=65 amount=-1 +kerning first=1024 second=1098 amount=-1 +kerning first=376 second=326 amount=-1 +kerning first=381 second=251 amount=-1 +kerning first=368 second=259 amount=-1 +kerning first=218 second=291 amount=-1 +kerning first=313 second=221 amount=-1 +kerning first=1059 second=1033 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=295 second=8217 amount=-1 +kerning first=255 second=231 amount=-1 +kerning first=381 second=171 amount=-1 +kerning first=217 second=196 amount=-1 +kerning first=207 second=228 amount=-1 +kerning first=266 second=270 amount=-1 +kerning first=374 second=100 amount=-1 +kerning first=316 second=119 amount=-1 +kerning first=256 second=351 amount=-1 +kerning first=119 second=314 amount=-1 +kerning first=1059 second=1082 amount=-1 +kerning first=317 second=381 amount=-1 +kerning first=269 second=318 amount=-1 +kerning first=256 second=214 amount=-1 +kerning first=8250 second=204 amount=-1 +kerning first=352 second=119 amount=-1 +kerning first=197 second=336 amount=-1 +kerning first=66 second=228 amount=-1 +kerning first=65 second=338 amount=-1 +kerning first=313 second=379 amount=-1 +kerning first=221 second=44 amount=-1 +kerning first=45 second=90 amount=-1 +kerning first=1059 second=1113 amount=-1 +kerning first=75 second=213 amount=-1 +kerning first=195 second=253 amount=-1 +kerning first=289 second=382 amount=-1 +kerning first=119 second=234 amount=-1 +kerning first=88 second=8249 amount=-1 +kerning first=267 second=253 amount=-1 +kerning first=231 second=253 amount=-1 +kerning first=258 second=249 amount=-1 +kerning first=193 second=8249 amount=-1 +kerning first=339 second=253 amount=-1 +kerning first=65 second=363 amount=-1 +kerning first=206 second=363 amount=-1 +kerning first=354 second=246 amount=-1 +kerning first=1027 second=1083 amount=-1 +kerning first=8220 second=240 amount=-1 +kerning first=379 second=103 amount=-1 +kerning first=199 second=344 amount=-1 +kerning first=307 second=103 amount=-1 +kerning first=235 second=103 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=82 second=232 amount=-1 +kerning first=192 second=284 amount=-1 +kerning first=118 second=232 amount=-1 +kerning first=197 second=118 amount=-1 +kerning first=346 second=203 amount=-1 +kerning first=233 second=118 amount=-1 +kerning first=87 second=284 amount=-1 +kerning first=269 second=118 amount=-1 +kerning first=45 second=377 amount=-1 +kerning first=71 second=89 amount=-1 +kerning first=77 second=365 amount=-1 +kerning first=264 second=284 amount=-1 +kerning first=346 second=362 amount=-1 +kerning first=87 second=235 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=8216 second=269 amount=-1 +kerning first=76 second=382 amount=-1 +kerning first=253 second=382 amount=-1 +kerning first=305 second=118 amount=-1 +kerning first=254 second=316 amount=-1 +kerning first=217 second=382 amount=-1 +kerning first=353 second=120 amount=-1 +kerning first=289 second=44 amount=-1 +kerning first=87 second=197 amount=-2 +kerning first=253 second=44 amount=-1 +kerning first=187 second=86 amount=-1 +kerning first=260 second=255 amount=-1 +kerning first=88 second=67 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=379 second=252 amount=-1 +kerning first=84 second=267 amount=-1 +kerning first=217 second=44 amount=-1 +kerning first=269 second=97 amount=-1 +kerning first=336 second=197 amount=-1 +kerning first=346 second=313 amount=-1 +kerning first=73 second=227 amount=-1 +kerning first=1059 second=1081 amount=-1 +kerning first=220 second=193 amount=-1 +kerning first=266 second=79 amount=-1 +kerning first=45 second=118 amount=-1 +kerning first=79 second=193 amount=-1 +kerning first=374 second=79 amount=-1 +kerning first=364 second=193 amount=-1 +kerning first=196 second=85 amount=-1 +kerning first=371 second=273 amount=-1 +kerning first=199 second=65 amount=-1 +kerning first=262 second=338 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=245 second=120 amount=-1 +kerning first=107 second=232 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=258 second=118 amount=-1 +kerning first=194 second=79 amount=-1 +kerning first=323 second=250 amount=-1 +kerning first=253 second=245 amount=-1 +kerning first=356 second=378 amount=-1 +kerning first=8220 second=275 amount=-1 +kerning first=267 second=303 amount=-1 +kerning first=263 second=46 amount=-1 +kerning first=279 second=44 amount=-1 +kerning first=231 second=303 amount=-1 +kerning first=194 second=221 amount=-2 +kerning first=258 second=199 amount=-1 +kerning first=1070 second=1059 amount=-1 +kerning first=374 second=83 amount=-1 +kerning first=374 second=291 amount=-1 +kerning first=310 second=361 amount=-1 +kerning first=338 second=291 amount=-1 +kerning first=107 second=242 amount=-1 +kerning first=119 second=113 amount=-1 +kerning first=266 second=291 amount=-1 +kerning first=230 second=291 amount=-1 +kerning first=194 second=291 amount=-1 +kerning first=89 second=291 amount=-1 +kerning first=356 second=242 amount=-1 +kerning first=268 second=216 amount=-1 +kerning first=66 second=326 amount=-1 +kerning first=196 second=216 amount=-1 +kerning first=193 second=67 amount=-1 +kerning first=346 second=204 amount=-1 +kerning first=376 second=216 amount=-1 +kerning first=87 second=187 amount=-1 +kerning first=264 second=196 amount=-1 +kerning first=8216 second=259 amount=-1 +kerning first=221 second=335 amount=-1 +kerning first=8217 second=101 amount=-1 +kerning first=346 second=323 amount=-1 +kerning first=67 second=287 amount=-1 +kerning first=362 second=378 amount=-1 +kerning first=346 second=73 amount=-1 +kerning first=1038 second=1095 amount=-1 +kerning first=196 second=374 amount=-2 +kerning first=364 second=44 amount=-1 +kerning first=366 second=346 amount=-1 +kerning first=85 second=289 amount=-1 +kerning first=121 second=289 amount=-1 +kerning first=255 second=279 amount=-1 +kerning first=75 second=212 amount=-1 +kerning first=262 second=289 amount=-1 +kerning first=298 second=289 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=209 second=224 amount=-1 +kerning first=370 second=289 amount=-1 +kerning first=187 second=195 amount=-1 +kerning first=8250 second=203 amount=-1 +kerning first=287 second=108 amount=-1 +kerning first=251 second=108 amount=-1 +kerning first=66 second=200 amount=-1 +kerning first=8250 second=83 amount=-1 +kerning first=8250 second=198 amount=-1 +kerning first=121 second=229 amount=-1 +kerning first=76 second=354 amount=-1 +kerning first=370 second=229 amount=-1 +kerning first=268 second=325 amount=-1 +kerning first=298 second=229 amount=-1 +kerning first=264 second=197 amount=-1 +kerning first=232 second=287 amount=-1 +kerning first=87 second=171 amount=-1 +kerning first=268 second=287 amount=-1 +kerning first=350 second=206 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=196 second=287 amount=-1 +kerning first=85 second=229 amount=-1 +kerning first=1036 second=1089 amount=-1 +kerning first=260 second=353 amount=-1 +kerning first=311 second=275 amount=-1 +kerning first=83 second=304 amount=-1 +kerning first=193 second=356 amount=-2 +kerning first=1059 second=1054 amount=-1 +kerning first=82 second=211 amount=-1 +kerning first=376 second=287 amount=-1 +kerning first=86 second=248 amount=-1 +kerning first=304 second=287 amount=-1 +kerning first=268 second=81 amount=-1 +kerning first=192 second=45 amount=-1 +kerning first=1059 second=1103 amount=-1 +kerning first=258 second=368 amount=-1 +kerning first=264 second=45 amount=-1 +kerning first=213 second=194 amount=-1 +kerning first=87 second=45 amount=-1 +kerning first=206 second=45 amount=-1 +kerning first=121 second=339 amount=-1 +kerning first=221 second=353 amount=-1 +kerning first=219 second=350 amount=-1 +kerning first=120 second=97 amount=-1 +kerning first=314 second=45 amount=-1 +kerning first=119 second=243 amount=-1 +kerning first=65 second=45 amount=-1 +kerning first=71 second=289 amount=-1 +kerning first=216 second=194 amount=-1 +kerning first=255 second=318 amount=-1 +kerning first=8220 second=231 amount=-1 +kerning first=291 second=318 amount=-1 +kerning first=196 second=356 amount=-2 +kerning first=350 second=45 amount=-1 +kerning first=363 second=318 amount=-1 +kerning first=284 second=289 amount=-1 +kerning first=376 second=255 amount=-1 +kerning first=354 second=46 amount=-1 +kerning first=346 second=370 amount=-1 +kerning first=196 second=255 amount=-1 +kerning first=199 second=112 amount=-1 +kerning first=75 second=332 amount=-1 +kerning first=262 second=80 amount=-1 +kerning first=303 second=101 amount=-1 +kerning first=8250 second=323 amount=-1 +kerning first=67 second=209 amount=-1 +kerning first=284 second=193 amount=-1 +kerning first=212 second=193 amount=-1 +kerning first=298 second=251 amount=-1 +kerning first=356 second=193 amount=-2 +kerning first=8216 second=198 amount=-2 +kerning first=220 second=44 amount=-1 +kerning first=71 second=193 amount=-1 +kerning first=194 second=8220 amount=-1 +kerning first=84 second=226 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=258 second=79 amount=-1 +kerning first=82 second=233 amount=-1 +kerning first=1046 second=1105 amount=-1 +kerning first=120 second=226 amount=-1 +kerning first=197 second=119 amount=-1 +kerning first=193 second=338 amount=-1 +kerning first=305 second=119 amount=-1 +kerning first=8250 second=313 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=233 second=119 amount=-1 +kerning first=269 second=119 amount=-1 +kerning first=303 second=111 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=221 second=225 amount=-1 +kerning first=118 second=314 amount=-1 +kerning first=249 second=314 amount=-1 +kerning first=375 second=111 amount=-1 +kerning first=352 second=209 amount=-1 +kerning first=346 second=274 amount=-1 +kerning first=246 second=46 amount=-1 +kerning first=374 second=8249 amount=-1 +kerning first=376 second=334 amount=-1 +kerning first=365 second=375 amount=-1 +kerning first=196 second=334 amount=-1 +kerning first=268 second=334 amount=-1 +kerning first=253 second=115 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=197 second=87 amount=-2 +kerning first=187 second=201 amount=-1 +kerning first=221 second=375 amount=-1 +kerning first=257 second=375 amount=-1 +kerning first=195 second=291 amount=-1 +kerning first=356 second=122 amount=-1 +kerning first=376 second=277 amount=-1 +kerning first=356 second=81 amount=-1 +kerning first=374 second=101 amount=-1 +kerning first=1070 second=1033 amount=-1 +kerning first=258 second=218 amount=-1 +kerning first=350 second=196 amount=-1 +kerning first=196 second=8220 amount=-1 +kerning first=311 second=235 amount=-1 +kerning first=45 second=205 amount=-1 +kerning first=286 second=193 amount=-1 +kerning first=337 second=316 amount=-1 +kerning first=84 second=248 amount=-1 +kerning first=232 second=104 amount=-1 +kerning first=71 second=171 amount=-1 +kerning first=281 second=119 amount=-1 +kerning first=8250 second=73 amount=-1 +kerning first=356 second=281 amount=-1 +kerning first=310 second=252 amount=-1 +kerning first=321 second=121 amount=-1 +kerning first=217 second=197 amount=-1 +kerning first=249 second=121 amount=-1 +kerning first=87 second=333 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=66 second=278 amount=-1 +kerning first=255 second=100 amount=-1 +kerning first=375 second=351 amount=-1 +kerning first=352 second=310 amount=-1 +kerning first=258 second=336 amount=-1 +kerning first=379 second=122 amount=-1 +kerning first=218 second=229 amount=-1 +kerning first=195 second=351 amount=-1 +kerning first=67 second=310 amount=-1 +kerning first=199 second=122 amount=-1 +kerning first=362 second=229 amount=-1 +kerning first=330 second=230 amount=-1 +kerning first=366 second=230 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=228 second=8217 amount=-1 +kerning first=195 second=366 amount=-1 +kerning first=266 second=72 amount=-1 +kerning first=84 second=198 amount=-2 +kerning first=87 second=115 amount=-1 +kerning first=101 second=253 amount=-1 +kerning first=242 second=253 amount=-1 +kerning first=1092 second=1076 amount=-1 +kerning first=332 second=65 amount=-1 +kerning first=295 second=171 amount=-1 +kerning first=368 second=65 amount=-1 +kerning first=266 second=200 amount=-1 +kerning first=351 second=347 amount=-1 +kerning first=368 second=289 amount=-1 +kerning first=331 second=171 amount=-1 +kerning first=72 second=45 amount=-1 +kerning first=197 second=199 amount=-1 +kerning first=72 second=361 amount=-1 +kerning first=187 second=280 amount=-1 +kerning first=364 second=382 amount=-1 +kerning first=354 second=103 amount=-1 +kerning first=66 second=347 amount=-1 +kerning first=311 second=333 amount=-1 +kerning first=218 second=194 amount=-1 +kerning first=282 second=103 amount=-1 +kerning first=224 second=255 amount=-1 +kerning first=1038 second=1101 amount=-1 +kerning first=356 second=8250 amount=-1 +kerning first=266 second=82 amount=-1 +kerning first=313 second=8221 amount=-1 +kerning first=220 second=256 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=241 second=8221 amount=-1 +kerning first=69 second=103 amount=-1 +kerning first=77 second=117 amount=-1 +kerning first=258 second=346 amount=-1 +kerning first=46 second=171 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=82 second=171 amount=-1 +kerning first=66 second=104 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=86 second=283 amount=-1 +kerning first=354 second=266 amount=-1 +kerning first=354 second=264 amount=-1 +kerning first=8250 second=370 amount=-1 +kerning first=269 second=121 amount=-1 +kerning first=321 second=380 amount=-1 +kerning first=315 second=366 amount=-1 +kerning first=83 second=305 amount=-1 +kerning first=88 second=211 amount=-1 +kerning first=344 second=217 amount=-1 +kerning first=67 second=70 amount=-1 +kerning first=266 second=69 amount=-1 +kerning first=115 second=120 amount=-1 +kerning first=262 second=298 amount=-1 +kerning first=1059 second=1104 amount=-1 +kerning first=374 second=331 amount=-1 +kerning first=315 second=85 amount=-1 +kerning first=283 second=118 amount=-1 +kerning first=286 second=354 amount=-1 +kerning first=279 second=104 amount=-1 +kerning first=197 second=218 amount=-1 +kerning first=244 second=318 amount=-1 +kerning first=371 second=283 amount=-1 +kerning first=106 second=118 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=89 second=331 amount=-1 +kerning first=204 second=250 amount=-1 +kerning first=8217 second=235 amount=-1 +kerning first=197 second=221 amount=-2 +kerning first=80 second=287 amount=-1 +kerning first=252 second=119 amount=-1 +kerning first=197 second=79 amount=-1 +kerning first=279 second=107 amount=-1 +kerning first=352 second=78 amount=-1 +kerning first=66 second=216 amount=-1 +kerning first=66 second=366 amount=-1 +kerning first=73 second=226 amount=-1 +kerning first=286 second=84 amount=-1 +kerning first=194 second=347 amount=-1 +kerning first=99 second=307 amount=-1 +kerning first=221 second=287 amount=-1 +kerning first=1091 second=1083 amount=-1 +kerning first=221 second=113 amount=-1 +kerning first=197 second=115 amount=-1 +kerning first=1027 second=1108 amount=-1 +kerning first=187 second=378 amount=-1 +kerning first=118 second=378 amount=-1 +kerning first=67 second=210 amount=-1 +kerning first=263 second=291 amount=-1 +kerning first=325 second=45 amount=-1 +kerning first=256 second=284 amount=-1 +kerning first=67 second=350 amount=-1 +kerning first=86 second=291 amount=-1 +kerning first=86 second=261 amount=-1 +kerning first=217 second=45 amount=-1 +kerning first=8216 second=260 amount=-2 +kerning first=344 second=337 amount=-1 +kerning first=289 second=45 amount=-1 +kerning first=256 second=262 amount=-1 +kerning first=263 second=261 amount=-1 +kerning first=66 second=268 amount=-1 +kerning first=210 second=256 amount=-1 +kerning first=260 second=112 amount=-1 +kerning first=266 second=203 amount=-1 +kerning first=374 second=279 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=354 second=286 amount=-1 +kerning first=66 second=344 amount=-1 +kerning first=253 second=263 amount=-1 +kerning first=240 second=108 amount=-1 +kerning first=187 second=302 amount=-1 +kerning first=253 second=244 amount=-1 +kerning first=99 second=228 amount=-1 +kerning first=8222 second=122 amount=-1 +kerning first=66 second=325 amount=-1 +kerning first=204 second=228 amount=-1 +kerning first=254 second=108 amount=-1 +kerning first=323 second=251 amount=-1 +kerning first=374 second=212 amount=-1 +kerning first=369 second=253 amount=-1 +kerning first=45 second=66 amount=-1 +kerning first=89 second=212 amount=-1 +kerning first=8250 second=379 amount=-1 +kerning first=194 second=212 amount=-1 +kerning first=266 second=212 amount=-1 +kerning first=171 second=356 amount=-1 +kerning first=1036 second=1098 amount=-1 +kerning first=350 second=364 amount=-1 +kerning first=119 second=122 amount=-1 +kerning first=241 second=8220 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=120 second=367 amount=-1 +kerning first=278 second=291 amount=-1 +kerning first=379 second=171 amount=-1 +kerning first=258 second=119 amount=-1 +kerning first=356 second=233 amount=-1 +kerning first=347 second=115 amount=-1 +kerning first=107 second=233 amount=-1 +kerning first=192 second=363 amount=-1 +kerning first=90 second=45 amount=-1 +kerning first=195 second=45 amount=-1 +kerning first=262 second=211 amount=-1 +kerning first=375 second=45 amount=-1 +kerning first=253 second=275 amount=-1 +kerning first=354 second=353 amount=-1 +kerning first=315 second=356 amount=-1 +kerning first=115 second=103 amount=-1 +kerning first=66 second=356 amount=-1 +kerning first=346 second=304 amount=-1 +kerning first=221 second=255 amount=-1 +kerning first=257 second=255 amount=-1 +kerning first=193 second=291 amount=-1 +kerning first=199 second=296 amount=-1 +kerning first=8220 second=100 amount=-1 +kerning first=86 second=194 amount=-2 +kerning first=1050 second=1092 amount=-1 +kerning first=311 second=244 amount=-1 +kerning first=84 second=324 amount=-1 +kerning first=84 second=377 amount=-1 +kerning first=67 second=200 amount=-1 +kerning first=8250 second=74 amount=-1 +kerning first=192 second=364 amount=-1 +kerning first=235 second=46 amount=-1 +kerning first=361 second=8217 amount=-1 +kerning first=83 second=362 amount=-1 +kerning first=374 second=228 amount=-1 +kerning first=260 second=362 amount=-1 +kerning first=268 second=212 amount=-1 +kerning first=199 second=264 amount=-1 +kerning first=8217 second=279 amount=-1 +kerning first=354 second=352 amount=-1 +kerning first=193 second=347 amount=-1 +kerning first=350 second=197 amount=-1 +kerning first=362 second=259 amount=-1 +kerning first=268 second=278 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=352 second=200 amount=-1 +kerning first=112 second=253 amount=-1 +kerning first=376 second=225 amount=-1 +kerning first=76 second=253 amount=-1 +kerning first=76 second=8217 amount=-1 +kerning first=304 second=225 amount=-1 +kerning first=290 second=86 amount=-1 +kerning first=66 second=334 amount=-1 +kerning first=346 second=282 amount=-1 +kerning first=82 second=311 amount=-1 +kerning first=213 second=65 amount=-1 +kerning first=374 second=213 amount=-1 +kerning first=354 second=375 amount=-1 +kerning first=266 second=213 amount=-1 +kerning first=82 second=289 amount=-1 +kerning first=194 second=213 amount=-1 +kerning first=246 second=375 amount=-1 +kerning first=269 second=230 amount=-1 +kerning first=262 second=103 amount=-1 +kerning first=1059 second=1117 amount=-1 +kerning first=103 second=318 amount=-1 +kerning first=65 second=351 amount=-1 +kerning first=118 second=289 amount=-1 +kerning first=260 second=118 amount=-1 +kerning first=105 second=375 amount=-1 +kerning first=84 second=346 amount=-1 +kerning first=367 second=289 amount=-1 +kerning first=86 second=380 amount=-1 +kerning first=77 second=259 amount=-1 +kerning first=75 second=336 amount=-1 +kerning first=368 second=122 amount=-1 +kerning first=1042 second=1063 amount=-1 +kerning first=221 second=277 amount=-1 +kerning first=321 second=370 amount=-1 +kerning first=234 second=314 amount=-1 +kerning first=121 second=242 amount=-1 +kerning first=1059 second=1072 amount=-1 +kerning first=344 second=248 amount=-1 +kerning first=8222 second=382 amount=-1 +kerning first=207 second=117 amount=-1 +kerning first=268 second=344 amount=-1 +kerning first=217 second=122 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=1059 second=1102 amount=-1 +kerning first=66 second=259 amount=-1 +kerning first=253 second=351 amount=-1 +kerning first=289 second=351 amount=-1 +kerning first=368 second=44 amount=-1 +kerning first=262 second=68 amount=-1 +kerning first=323 second=171 amount=-1 +kerning first=260 second=121 amount=-1 +kerning first=195 second=284 amount=-1 +kerning first=224 second=121 amount=-1 +kerning first=220 second=196 amount=-1 +kerning first=1045 second=1059 amount=-1 +kerning first=374 second=288 amount=-1 +kerning first=256 second=369 amount=-1 +kerning first=118 second=224 amount=-1 +kerning first=266 second=288 amount=-1 +kerning first=86 second=379 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=89 second=213 amount=-1 +kerning first=354 second=277 amount=-1 +kerning first=364 second=196 amount=-1 +kerning first=8217 second=229 amount=-1 +kerning first=210 second=197 amount=-1 +kerning first=204 second=103 amount=-1 +kerning first=45 second=327 amount=-1 +kerning first=378 second=171 amount=-1 +kerning first=260 second=252 amount=-1 +kerning first=8216 second=261 amount=-1 +kerning first=90 second=382 amount=-1 +kerning first=261 second=106 amount=1 +kerning first=193 second=86 amount=-2 +kerning first=375 second=382 amount=-1 +kerning first=8217 second=259 amount=-1 +kerning first=376 second=246 amount=-1 +kerning first=87 second=266 amount=-1 +kerning first=282 second=287 amount=-1 +kerning first=252 second=8221 amount=-1 +kerning first=365 second=103 amount=-1 +kerning first=240 second=316 amount=-1 +kerning first=264 second=266 amount=-1 +kerning first=344 second=368 amount=-1 +kerning first=105 second=287 amount=-1 +kerning first=192 second=266 amount=-1 +kerning first=99 second=316 amount=-1 +kerning first=221 second=103 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=344 second=336 amount=-1 +kerning first=82 second=214 amount=-1 +kerning first=262 second=330 amount=-1 +kerning first=356 second=71 amount=-1 +kerning first=187 second=352 amount=-1 +kerning first=344 second=118 amount=-1 +kerning first=195 second=262 amount=-1 +kerning first=121 second=232 amount=-1 +kerning first=82 second=290 amount=-1 +kerning first=86 second=74 amount=-1 +kerning first=236 second=118 amount=-1 +kerning first=339 second=44 amount=-1 +kerning first=354 second=255 amount=-1 +kerning first=246 second=255 amount=-1 +kerning first=375 second=44 amount=-1 +kerning first=370 second=8249 amount=-1 +kerning first=267 second=44 amount=-1 +kerning first=196 second=366 amount=-1 +kerning first=105 second=255 amount=-1 +kerning first=311 second=267 amount=-1 +kerning first=85 second=8249 amount=-1 +kerning first=187 second=72 amount=-1 +kerning first=87 second=244 amount=-1 +kerning first=121 second=8249 amount=-1 +kerning first=1046 second=1057 amount=-1 +kerning first=197 second=350 amount=-1 +kerning first=221 second=234 amount=-1 +kerning first=73 second=257 amount=-1 +kerning first=89 second=332 amount=-1 +kerning first=337 second=108 amount=-1 +kerning first=67 second=199 amount=-1 +kerning first=204 second=251 amount=-1 +kerning first=352 second=221 amount=-1 +kerning first=74 second=198 amount=-1 +kerning first=354 second=328 amount=-1 +kerning first=260 second=361 amount=-1 +kerning first=296 second=361 amount=-1 +kerning first=311 second=245 amount=-1 +kerning first=374 second=332 amount=-1 +kerning first=8250 second=380 amount=-1 +kerning first=267 second=46 amount=-1 +kerning first=187 second=192 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=266 second=332 amount=-1 +kerning first=83 second=274 amount=-1 +kerning first=194 second=332 amount=-1 +kerning first=376 second=268 amount=-1 +kerning first=264 second=82 amount=-1 +kerning first=1059 second=1073 amount=-1 +kerning first=221 second=256 amount=-2 +kerning first=352 second=76 amount=-1 +kerning first=268 second=268 amount=-1 +kerning first=196 second=268 amount=-1 +kerning first=80 second=256 amount=-1 +kerning first=288 second=291 amount=-1 +kerning first=106 second=119 amount=-1 +kerning first=252 second=291 amount=-1 +kerning first=1046 second=1038 amount=-1 +kerning first=262 second=210 amount=-1 +kerning first=283 second=119 amount=-1 +kerning first=213 second=256 amount=-1 +kerning first=335 second=314 amount=-1 +kerning first=266 second=204 amount=-1 +kerning first=84 second=279 amount=-1 +kerning first=199 second=198 amount=-1 +kerning first=263 second=314 amount=-1 +kerning first=368 second=291 amount=-1 +kerning first=209 second=250 amount=-1 +kerning first=260 second=291 amount=-1 +kerning first=8216 second=195 amount=-2 +kerning first=119 second=291 amount=-1 +kerning first=83 second=291 amount=-1 +kerning first=194 second=363 amount=-1 +kerning first=268 second=73 amount=-1 +kerning first=84 second=44 amount=-1 +kerning first=89 second=381 amount=-1 +kerning first=317 second=84 amount=-1 +kerning first=1059 second=1095 amount=-1 +kerning first=311 second=337 amount=-1 +kerning first=356 second=268 amount=-1 +kerning first=333 second=44 amount=-1 +kerning first=206 second=227 amount=-1 +kerning first=67 second=278 amount=-1 +kerning first=83 second=296 amount=-1 +kerning first=350 second=66 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=374 second=199 amount=-1 +kerning first=366 second=261 amount=-1 +kerning first=67 second=336 amount=-1 +kerning first=330 second=261 amount=-1 +kerning first=84 second=284 amount=-1 +kerning first=8249 second=356 amount=-1 +kerning first=317 second=89 amount=-1 +kerning first=205 second=367 amount=-1 +kerning first=243 second=108 amount=-1 +kerning first=252 second=121 amount=-1 +kerning first=331 second=8249 amount=-1 +kerning first=66 second=220 amount=-1 +kerning first=356 second=263 amount=-1 +kerning first=346 second=344 amount=-1 +kerning first=264 second=302 amount=-1 +kerning first=118 second=8249 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=295 second=8249 amount=-1 +kerning first=187 second=270 amount=-1 +kerning first=99 second=229 amount=-1 +kerning first=284 second=194 amount=-1 +kerning first=83 second=370 amount=-1 +kerning first=266 second=327 amount=-1 +kerning first=198 second=289 amount=-1 +kerning first=234 second=289 amount=-1 +kerning first=118 second=335 amount=-1 +kerning first=1040 second=1038 amount=-1 +kerning first=220 second=45 amount=-1 +kerning first=290 second=260 amount=-1 +kerning first=256 second=45 amount=-1 +kerning first=346 second=65 amount=-1 +kerning first=304 second=229 amount=-1 +kerning first=362 second=260 amount=-1 +kerning first=328 second=45 amount=-1 +kerning first=82 second=254 amount=-1 +kerning first=86 second=346 amount=-1 +kerning first=121 second=103 amount=-1 +kerning first=80 second=194 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=260 second=370 amount=-1 +kerning first=221 second=194 amount=-2 +kerning first=376 second=229 amount=-1 +kerning first=8217 second=234 amount=-1 +kerning first=364 second=45 amount=-1 +kerning first=254 second=255 amount=-1 +kerning first=87 second=223 amount=-1 +kerning first=260 second=212 amount=-1 +kerning first=253 second=225 amount=-1 +kerning first=193 second=211 amount=-1 +kerning first=8217 second=283 amount=-1 +kerning first=344 second=240 amount=-1 +kerning first=8216 second=246 amount=-1 +kerning first=85 second=193 amount=-1 +kerning first=287 second=46 amount=-1 +kerning first=283 second=44 amount=-1 +kerning first=103 second=257 amount=-1 +kerning first=8216 second=101 amount=-1 +kerning first=8220 second=101 amount=-1 +kerning first=1059 second=1090 amount=-1 +kerning first=1038 second=1057 amount=-1 +kerning first=334 second=193 amount=-1 +kerning first=88 second=290 amount=-1 +kerning first=262 second=193 amount=-1 +kerning first=193 second=290 amount=-1 +kerning first=85 second=122 amount=-1 +kerning first=370 second=193 amount=-1 +kerning first=87 second=346 amount=-1 +kerning first=235 second=375 amount=-1 +kerning first=307 second=375 amount=-1 +kerning first=367 second=314 amount=-1 +kerning first=356 second=224 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=240 second=46 amount=-1 +kerning first=99 second=46 amount=-1 +kerning first=194 second=289 amount=-1 +kerning first=82 second=98 amount=-1 +kerning first=45 second=70 amount=-1 +kerning first=103 second=259 amount=-1 +kerning first=84 second=235 amount=-1 +kerning first=199 second=282 amount=-1 +kerning first=1043 second=1051 amount=-1 +kerning first=263 second=225 amount=-1 +kerning first=118 second=259 amount=-1 +kerning first=287 second=316 amount=-1 +kerning first=251 second=316 amount=-1 +kerning first=101 second=311 amount=-1 +kerning first=8250 second=221 amount=-1 +kerning first=262 second=81 amount=-1 +kerning first=379 second=287 amount=-1 +kerning first=264 second=346 amount=-1 +kerning first=379 second=375 amount=-1 +kerning first=199 second=287 amount=-1 +kerning first=192 second=346 amount=-1 +kerning first=235 second=287 amount=-1 +kerning first=313 second=122 amount=-1 +kerning first=197 second=8217 amount=-1 +kerning first=8250 second=65 amount=-1 +kerning first=346 second=305 amount=-1 +kerning first=375 second=271 amount=-1 +kerning first=303 second=271 amount=-1 +kerning first=221 second=352 amount=-1 +kerning first=354 second=194 amount=-2 +kerning first=88 second=81 amount=-1 +kerning first=304 second=117 amount=-1 +kerning first=379 second=121 amount=-1 +kerning first=119 second=335 amount=-1 +kerning first=196 second=117 amount=-1 +kerning first=376 second=269 amount=-1 +kerning first=307 second=121 amount=-1 +kerning first=366 second=350 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=86 second=353 amount=-1 +kerning first=351 second=103 amount=-1 +kerning first=8217 second=83 amount=-1 +kerning first=87 second=253 amount=-1 +kerning first=193 second=374 amount=-2 +kerning first=45 second=350 amount=-1 +kerning first=228 second=253 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=121 second=277 amount=-1 +kerning first=258 second=350 amount=-1 +kerning first=272 second=196 amount=-1 +kerning first=258 second=266 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=193 second=85 amount=-1 +kerning first=364 second=289 amount=-1 +kerning first=298 second=228 amount=-1 +kerning first=85 second=228 amount=-1 +kerning first=121 second=228 amount=-1 +kerning first=379 second=361 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=107 second=263 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=344 second=8221 amount=-1 +kerning first=8220 second=257 amount=-1 +kerning first=376 second=103 amount=-1 +kerning first=77 second=171 amount=-1 +kerning first=65 second=262 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=218 second=171 amount=-1 +kerning first=304 second=103 amount=-1 +kerning first=196 second=103 amount=-1 +kerning first=290 second=171 amount=-1 +kerning first=87 second=381 amount=-1 +kerning first=232 second=103 amount=-1 +kerning first=120 second=249 amount=-1 +kerning first=362 second=171 amount=-1 +kerning first=236 second=119 amount=-1 +kerning first=313 second=362 amount=-1 +kerning first=326 second=171 amount=-1 +kerning first=344 second=119 amount=-1 +kerning first=266 second=256 amount=-1 +kerning first=252 second=118 amount=-1 +kerning first=103 second=380 amount=-1 +kerning first=324 second=118 amount=-1 +kerning first=268 second=313 amount=-1 +kerning first=121 second=233 amount=-1 +kerning first=192 second=218 amount=-1 +kerning first=111 second=314 amount=-1 +kerning first=75 second=118 amount=-1 +kerning first=255 second=248 amount=-1 +kerning first=258 second=217 amount=-1 +kerning first=72 second=229 amount=-1 +kerning first=262 second=67 amount=-1 +kerning first=296 second=230 amount=-1 +kerning first=87 second=267 amount=-1 +kerning first=376 second=264 amount=-1 +kerning first=199 second=352 amount=-1 +kerning first=268 second=264 amount=-1 +kerning first=196 second=264 amount=-1 +kerning first=120 second=363 amount=-1 +kerning first=252 second=8220 amount=-1 +kerning first=195 second=364 amount=-1 +kerning first=313 second=217 amount=-1 +kerning first=67 second=380 amount=-1 +kerning first=356 second=347 amount=-1 +kerning first=8216 second=339 amount=-1 +kerning first=1042 second=1059 amount=-1 +kerning first=260 second=249 amount=-1 +kerning first=264 second=209 amount=-1 +kerning first=258 second=8221 amount=-1 +kerning first=117 second=8221 amount=-1 +kerning first=291 second=257 amount=-1 +kerning first=375 second=232 amount=-1 +kerning first=327 second=257 amount=-1 +kerning first=219 second=257 amount=-1 +kerning first=303 second=232 amount=-1 +kerning first=255 second=257 amount=-1 +kerning first=241 second=118 amount=-1 +kerning first=89 second=83 amount=-1 +kerning first=277 second=118 amount=-1 +kerning first=364 second=192 amount=-1 +kerning first=313 second=118 amount=-1 +kerning first=194 second=83 amount=-1 +kerning first=1046 second=1108 amount=-1 +kerning first=220 second=197 amount=-1 +kerning first=1086 second=1076 amount=-1 +kerning first=266 second=83 amount=-1 +kerning first=266 second=78 amount=-1 +kerning first=87 second=262 amount=-1 +kerning first=220 second=192 amount=-1 +kerning first=284 second=8249 amount=-1 +kerning first=79 second=197 amount=-1 +kerning first=72 second=259 amount=-1 +kerning first=364 second=197 amount=-1 +kerning first=356 second=8249 amount=-1 +kerning first=264 second=262 amount=-1 +kerning first=196 second=370 amount=-1 +kerning first=327 second=230 amount=-1 +kerning first=83 second=194 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=192 second=262 amount=-1 +kerning first=78 second=257 amount=-1 +kerning first=71 second=8249 amount=-1 +kerning first=8217 second=248 amount=-1 +kerning first=362 second=103 amount=-1 +kerning first=290 second=103 amount=-1 +kerning first=107 second=8249 amount=-1 +kerning first=332 second=256 amount=-1 +kerning first=210 second=198 amount=-1 +kerning first=264 second=317 amount=-1 +kerning first=368 second=256 amount=-1 +kerning first=321 second=291 amount=-1 +kerning first=86 second=65 amount=-2 +kerning first=354 second=198 amount=-2 +kerning first=352 second=217 amount=-1 +kerning first=249 second=291 amount=-1 +kerning first=108 second=291 amount=-1 +kerning first=72 second=291 amount=-1 +kerning first=83 second=256 amount=-1 +kerning first=344 second=283 amount=-1 +kerning first=82 second=107 amount=-1 +kerning first=344 second=279 amount=-1 +kerning first=356 second=67 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=304 second=259 amount=-1 +kerning first=272 second=44 amount=-1 +kerning first=262 second=72 amount=-1 +kerning first=267 second=227 amount=-1 +kerning first=231 second=227 amount=-1 +kerning first=108 second=171 amount=-1 +kerning first=256 second=84 amount=-2 +kerning first=76 second=381 amount=-1 +kerning first=8217 second=113 amount=-1 +kerning first=199 second=212 amount=-1 +kerning first=269 second=261 amount=-1 +kerning first=311 second=171 amount=-1 +kerning first=232 second=108 amount=-1 +kerning first=366 second=226 amount=-1 +kerning first=330 second=226 amount=-1 +kerning first=199 second=317 amount=-1 +kerning first=302 second=367 amount=-1 +kerning first=194 second=367 amount=-1 +kerning first=207 second=229 amount=-1 +kerning first=66 second=229 amount=-1 +kerning first=291 second=122 amount=-1 +kerning first=1043 second=1083 amount=-1 +kerning first=255 second=122 amount=-1 +kerning first=327 second=365 amount=-1 +kerning first=219 second=122 amount=-1 +kerning first=8217 second=195 amount=-2 +kerning first=284 second=356 amount=-1 +kerning first=99 second=237 amount=-1 +kerning first=187 second=196 amount=-1 +kerning first=73 second=97 amount=-1 +kerning first=104 second=45 amount=-1 +kerning first=71 second=356 amount=-1 +kerning first=209 second=45 amount=-1 +kerning first=268 second=194 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=199 second=77 amount=-1 +kerning first=66 second=304 amount=-1 +kerning first=86 second=225 amount=-1 +kerning first=351 second=255 amount=-1 +kerning first=67 second=286 amount=-1 +kerning first=310 second=266 amount=-1 +kerning first=1059 second=1086 amount=-1 +kerning first=315 second=255 amount=-1 +kerning first=89 second=243 amount=-1 +kerning first=344 second=354 amount=-1 +kerning first=243 second=255 amount=-1 +kerning first=296 second=287 amount=-1 +kerning first=375 second=275 amount=-1 +kerning first=84 second=240 amount=-1 +kerning first=66 second=255 amount=-1 +kerning first=86 second=109 amount=-1 +kerning first=119 second=287 amount=-1 +kerning first=196 second=112 amount=-1 +kerning first=8218 second=364 amount=-1 +kerning first=374 second=243 amount=-1 +kerning first=83 second=287 amount=-1 +kerning first=284 second=171 amount=-1 +kerning first=117 second=8217 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=268 second=352 amount=-1 +kerning first=8250 second=274 amount=-1 +kerning first=368 second=287 amount=-1 +kerning first=67 second=327 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=377 second=380 amount=-1 +kerning first=374 second=248 amount=-1 +kerning first=354 second=260 amount=-2 +kerning first=262 second=76 amount=-1 +kerning first=356 second=111 amount=-1 +kerning first=352 second=327 amount=-1 +kerning first=317 second=382 amount=-1 +kerning first=221 second=264 amount=-1 +kerning first=221 second=269 amount=-1 +kerning first=88 second=334 amount=-1 +kerning first=89 second=248 amount=-1 +kerning first=193 second=334 amount=-1 +kerning first=275 second=253 amount=-1 +kerning first=347 second=253 amount=-1 +kerning first=354 second=245 amount=-1 +kerning first=262 second=202 amount=-1 +kerning first=65 second=364 amount=-1 +kerning first=70 second=350 amount=-1 +kerning first=1059 second=1080 amount=-1 +kerning first=209 second=289 amount=-1 +kerning first=84 second=288 amount=-1 +kerning first=67 second=213 amount=-1 +kerning first=353 second=289 amount=-1 +kerning first=281 second=289 amount=-1 +kerning first=199 second=207 amount=-1 +kerning first=317 second=289 amount=-1 +kerning first=352 second=87 amount=-1 +kerning first=323 second=369 amount=-1 +kerning first=67 second=332 amount=-1 +kerning first=8222 second=366 amount=-1 +kerning first=83 second=282 amount=-1 +kerning first=77 second=251 amount=-1 +kerning first=374 second=122 amount=-1 +kerning first=196 second=266 amount=-1 +kerning first=266 second=122 amount=-1 +kerning first=86 second=230 amount=-1 +kerning first=196 second=352 amount=-1 +kerning first=356 second=259 amount=-1 +kerning first=89 second=122 amount=-1 +kerning first=224 second=375 amount=-1 +kerning first=260 second=375 amount=-1 +kerning first=256 second=89 amount=-2 +kerning first=225 second=119 amount=-1 +kerning first=356 second=210 amount=-1 +kerning first=261 second=119 amount=-1 +kerning first=350 second=75 amount=-1 +kerning first=274 second=291 amount=-1 +kerning first=120 second=119 amount=-1 +kerning first=202 second=291 amount=-1 +kerning first=197 second=217 amount=-1 +kerning first=187 second=298 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=84 second=337 amount=-1 +kerning first=199 second=256 amount=-1 +kerning first=321 second=379 amount=-1 +kerning first=45 second=364 amount=-1 +kerning first=277 second=314 amount=-1 +kerning first=8217 second=243 amount=-1 +kerning first=277 second=289 amount=-1 +kerning first=356 second=351 amount=-1 +kerning first=256 second=362 amount=-1 +kerning first=354 second=121 amount=-1 +kerning first=8220 second=261 amount=-1 +kerning first=246 second=121 amount=-1 +kerning first=87 second=275 amount=-1 +kerning first=277 second=318 amount=-1 +kerning first=73 second=363 amount=-1 +kerning first=105 second=121 amount=-1 +kerning first=45 second=270 amount=-1 +kerning first=321 second=221 amount=-1 +kerning first=89 second=199 amount=-1 +kerning first=199 second=82 amount=-1 +kerning first=287 second=228 amount=-1 +kerning first=84 second=196 amount=-2 +kerning first=194 second=199 amount=-1 +kerning first=323 second=228 amount=-1 +kerning first=266 second=199 amount=-1 +kerning first=346 second=296 amount=-1 +kerning first=264 second=214 amount=-1 +kerning first=192 second=214 amount=-1 +kerning first=87 second=214 amount=-1 +kerning first=253 second=267 amount=-1 +kerning first=8217 second=74 amount=-1 +kerning first=66 second=230 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=321 second=8221 amount=-1 +kerning first=121 second=316 amount=-1 +kerning first=83 second=86 amount=-1 +kerning first=197 second=266 amount=-1 +kerning first=344 second=235 amount=-1 +kerning first=219 second=83 amount=-1 +kerning first=88 second=171 amount=-1 +kerning first=193 second=171 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=315 second=103 amount=-1 +kerning first=344 second=284 amount=-1 +kerning first=1107 second=1083 amount=-1 +kerning first=199 second=278 amount=-1 +kerning first=1054 second=1051 amount=-1 +kerning first=279 second=103 amount=-1 +kerning first=194 second=362 amount=-1 +kerning first=187 second=87 amount=-1 +kerning first=207 second=103 amount=-1 +kerning first=298 second=365 amount=-1 +kerning first=381 second=382 amount=-1 +kerning first=86 second=100 amount=-1 +kerning first=193 second=103 amount=-1 +kerning first=83 second=344 amount=-1 +kerning first=121 second=246 amount=-1 +kerning first=303 second=106 amount=1 +kerning first=45 second=121 amount=-1 +kerning first=371 second=100 amount=-1 +kerning first=1045 second=1090 amount=-1 +kerning first=346 second=78 amount=-1 +kerning first=216 second=65 amount=-1 +kerning first=86 second=234 amount=-1 +kerning first=376 second=260 amount=-2 +kerning first=75 second=199 amount=-1 +kerning first=374 second=118 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=193 second=365 amount=-1 +kerning first=196 second=361 amount=-1 +kerning first=376 second=121 amount=-1 +kerning first=1036 second=1058 amount=-1 +kerning first=304 second=361 amount=-1 +kerning first=84 second=231 amount=-1 +kerning first=196 second=121 amount=-1 +kerning first=379 second=117 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=303 second=267 amount=-1 +kerning first=193 second=264 amount=-1 +kerning first=375 second=267 amount=-1 +kerning first=197 second=8221 amount=-1 +kerning first=88 second=264 amount=-1 +kerning first=374 second=380 amount=-1 +kerning first=230 second=118 amount=-1 +kerning first=287 second=44 amount=-1 +kerning first=248 second=316 amount=-1 +kerning first=260 second=216 amount=-1 +kerning first=89 second=118 amount=-1 +kerning first=194 second=118 amount=-1 +kerning first=371 second=234 amount=-1 +kerning first=352 second=77 amount=-1 +kerning first=84 second=212 amount=-1 +kerning first=326 second=8217 amount=-1 +kerning first=195 second=346 amount=-1 +kerning first=1050 second=1089 amount=-1 +kerning first=350 second=201 amount=-1 +kerning first=192 second=249 amount=-1 +kerning first=268 second=282 amount=-1 +kerning first=8250 second=296 amount=-1 +kerning first=344 second=266 amount=-1 +kerning first=288 second=87 amount=-1 +kerning first=89 second=380 amount=-1 +kerning first=121 second=347 amount=-1 +kerning first=1069 second=1040 amount=-1 +kerning first=344 second=231 amount=-1 +kerning first=266 second=380 amount=-1 +kerning first=67 second=204 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=1038 second=1083 amount=-1 +kerning first=1056 second=1103 amount=-1 +kerning first=298 second=224 amount=-1 +kerning first=83 second=366 amount=-1 +kerning first=8222 second=374 amount=-2 +kerning first=195 second=84 amount=-2 +kerning first=85 second=224 amount=-1 +kerning first=121 second=224 amount=-1 +kerning first=288 second=171 amount=-1 +kerning first=209 second=8249 amount=-1 +kerning first=87 second=227 amount=-1 +kerning first=352 second=204 amount=-1 +kerning first=262 second=325 amount=-1 +kerning first=370 second=224 amount=-1 +kerning first=99 second=259 amount=-1 +kerning first=258 second=363 amount=-1 +kerning first=354 second=291 amount=-1 +kerning first=344 second=244 amount=-1 +kerning first=330 second=363 amount=-1 +kerning first=282 second=291 amount=-1 +kerning first=8217 second=230 amount=-1 +kerning first=105 second=291 amount=-1 +kerning first=69 second=291 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=256 second=210 amount=-1 +kerning first=253 second=337 amount=-1 +kerning first=275 second=44 amount=-1 +kerning first=262 second=268 amount=-1 +kerning first=72 second=287 amount=-1 +kerning first=108 second=287 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=356 second=338 amount=-1 +kerning first=86 second=256 amount=-2 +kerning first=221 second=198 amount=-2 +kerning first=80 second=198 amount=-1 +kerning first=260 second=366 amount=-1 +kerning first=187 second=206 amount=-1 +kerning first=66 second=112 amount=-1 +kerning first=103 second=378 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=90 second=361 amount=-1 +kerning first=321 second=287 amount=-1 +kerning first=327 second=367 amount=-1 +kerning first=249 second=287 amount=-1 +kerning first=221 second=326 amount=-1 +kerning first=264 second=66 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=331 second=8220 amount=-1 +kerning first=78 second=367 amount=-1 +kerning first=193 second=286 amount=-1 +kerning first=89 second=74 amount=-1 +kerning first=350 second=302 amount=-1 +kerning first=248 second=121 amount=-1 +kerning first=118 second=228 amount=-1 +kerning first=90 second=249 amount=-1 +kerning first=288 second=221 amount=-1 +kerning first=365 second=108 amount=-1 +kerning first=374 second=74 amount=-1 +kerning first=344 second=350 amount=-1 +kerning first=101 second=289 amount=-1 +kerning first=375 second=245 amount=-1 +kerning first=354 second=269 amount=-1 +kerning first=103 second=261 amount=-1 +kerning first=303 second=245 amount=-1 +kerning first=354 second=229 amount=-1 +kerning first=256 second=289 amount=-1 +kerning first=264 second=205 amount=-1 +kerning first=66 second=251 amount=-1 +kerning first=256 second=115 amount=-1 +kerning first=66 second=211 amount=-1 +kerning first=217 second=97 amount=-1 +kerning first=378 second=45 amount=-1 +kerning first=197 second=332 amount=-1 +kerning first=289 second=97 amount=-1 +kerning first=262 second=290 amount=-1 +kerning first=207 second=251 amount=-1 +kerning first=253 second=97 amount=-1 +kerning first=78 second=261 amount=-1 +kerning first=327 second=261 amount=-1 +kerning first=291 second=261 amount=-1 +kerning first=255 second=261 amount=-1 +kerning first=253 second=271 amount=-1 +kerning first=219 second=261 amount=-1 +kerning first=332 second=194 amount=-1 +kerning first=66 second=352 amount=-1 +kerning first=368 second=194 amount=-1 +kerning first=240 second=255 amount=-1 +kerning first=99 second=255 amount=-1 +kerning first=269 second=226 amount=-1 +kerning first=72 second=225 amount=-1 +kerning first=364 second=198 amount=-1 +kerning first=250 second=119 amount=-1 +kerning first=109 second=119 amount=-1 +kerning first=336 second=44 amount=-1 +kerning first=230 second=314 amount=-1 +kerning first=1036 second=1095 amount=-1 +kerning first=1062 second=1095 amount=-1 +kerning first=8250 second=362 amount=-1 +kerning first=266 second=274 amount=-1 +kerning first=78 second=8249 amount=-1 +kerning first=362 second=46 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=317 second=366 amount=-1 +kerning first=220 second=289 amount=-1 +kerning first=97 second=8220 amount=-1 +kerning first=217 second=192 amount=-1 +kerning first=231 second=44 amount=-1 +kerning first=115 second=289 amount=-1 +kerning first=8250 second=256 amount=-1 +kerning first=376 second=234 amount=-1 +kerning first=366 second=8249 amount=-1 +kerning first=258 second=347 amount=-1 +kerning first=302 second=230 amount=-1 +kerning first=197 second=354 amount=-2 +kerning first=86 second=122 amount=-1 +kerning first=197 second=213 amount=-1 +kerning first=8218 second=84 amount=-2 +kerning first=298 second=369 amount=-1 +kerning first=317 second=364 amount=-1 +kerning first=76 second=377 amount=-1 +kerning first=290 second=46 amount=-1 +kerning first=284 second=374 amount=-1 +kerning first=374 second=230 amount=-1 +kerning first=1059 second=1077 amount=-1 +kerning first=67 second=83 amount=-1 +kerning first=89 second=230 amount=-1 +kerning first=249 second=375 amount=-1 +kerning first=68 second=192 amount=-1 +kerning first=321 second=375 amount=-1 +kerning first=65 second=346 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=66 second=317 amount=-1 +kerning first=83 second=278 amount=-1 +kerning first=108 second=375 amount=-1 +kerning first=313 second=87 amount=-1 +kerning first=89 second=336 amount=-1 +kerning first=218 second=103 amount=-1 +kerning first=194 second=336 amount=-1 +kerning first=1058 second=1093 amount=-1 +kerning first=266 second=336 amount=-1 +kerning first=214 second=196 amount=-1 +kerning first=77 second=103 amount=-1 +kerning first=286 second=196 amount=-1 +kerning first=354 second=335 amount=-1 +kerning first=1059 second=1099 amount=-1 +kerning first=304 second=251 amount=-1 +kerning first=315 second=374 amount=-1 +kerning first=250 second=253 amount=-1 +kerning first=171 second=374 amount=-1 +kerning first=221 second=260 amount=-2 +kerning first=66 second=374 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=365 second=121 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=257 second=121 amount=-1 +kerning first=83 second=82 amount=-1 +kerning first=221 second=121 amount=-1 +kerning first=263 second=318 amount=-1 +kerning first=335 second=318 amount=-1 +kerning first=86 second=212 amount=-1 +kerning first=118 second=316 amount=-1 +kerning first=243 second=121 amount=-1 +kerning first=82 second=316 amount=-1 +kerning first=8216 second=233 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=83 second=203 amount=-1 +kerning first=356 second=228 amount=-1 +kerning first=223 second=316 amount=-1 +kerning first=67 second=323 amount=-1 +kerning first=367 second=316 amount=-1 +kerning first=264 second=75 amount=-1 +kerning first=110 second=171 amount=-1 +kerning first=74 second=171 amount=-1 +kerning first=354 second=326 amount=-1 +kerning first=263 second=375 amount=-1 +kerning first=350 second=77 amount=-1 +kerning first=335 second=375 amount=-1 +kerning first=67 second=270 amount=-1 +kerning first=86 second=375 amount=-1 +kerning first=78 second=228 amount=-1 +kerning first=221 second=99 amount=-1 +kerning first=227 second=375 amount=-1 +kerning first=187 second=278 amount=-1 +kerning first=1058 second=1040 amount=-1 +kerning first=194 second=217 amount=-1 +kerning first=323 second=365 amount=-1 +kerning first=352 second=270 amount=-1 +kerning first=120 second=230 amount=-1 +kerning first=258 second=250 amount=-1 +kerning first=65 second=214 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=195 second=71 amount=-1 +kerning first=45 second=354 amount=-1 +kerning first=248 second=120 amount=-1 +kerning first=314 second=106 amount=-1 +kerning first=82 second=263 amount=-1 +kerning first=262 second=334 amount=-1 +kerning first=264 second=315 amount=-1 +kerning first=196 second=220 amount=-1 +kerning first=236 second=253 amount=-1 +kerning first=344 second=253 amount=-1 +kerning first=287 second=224 amount=-1 +kerning first=323 second=224 amount=-1 +kerning first=258 second=354 amount=-2 +kerning first=287 second=171 amount=-1 +kerning first=121 second=281 amount=-1 +kerning first=255 second=283 amount=-1 +kerning first=363 second=118 amount=-1 +kerning first=66 second=68 amount=-1 +kerning first=376 second=339 amount=-1 +kerning first=204 second=365 amount=-1 +kerning first=86 second=119 amount=-1 +kerning first=356 second=382 amount=-1 +kerning first=296 second=117 amount=-1 +kerning first=199 second=313 amount=-1 +kerning first=315 second=121 amount=-1 +kerning first=279 second=121 amount=-1 +kerning first=375 second=333 amount=-1 +kerning first=88 second=255 amount=-1 +kerning first=346 second=287 amount=-1 +kerning first=199 second=216 amount=-1 +kerning first=274 second=287 amount=-1 +kerning first=202 second=287 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=267 second=230 amount=-1 +kerning first=8217 second=65 amount=-2 +kerning first=82 second=338 amount=-1 +kerning first=287 second=378 amount=-1 +kerning first=192 second=368 amount=-1 +kerning first=80 second=8249 amount=-1 +kerning first=219 second=74 amount=-1 +kerning first=84 second=350 amount=-1 +kerning first=350 second=192 amount=-1 +kerning first=344 second=275 amount=-1 +kerning first=289 second=347 amount=-1 +kerning first=378 second=8249 amount=-1 +kerning first=354 second=379 amount=-1 +kerning first=217 second=227 amount=-1 +kerning first=371 second=113 amount=-1 +kerning first=376 second=198 amount=-2 +kerning first=8250 second=69 amount=-1 +kerning first=86 second=113 amount=-1 +kerning first=199 second=71 amount=-1 +kerning first=86 second=347 amount=-1 +kerning first=65 second=84 amount=-2 +kerning first=379 second=291 amount=-1 +kerning first=315 second=90 amount=-1 +kerning first=307 second=291 amount=-1 +kerning first=66 second=90 amount=-1 +kerning first=235 second=291 amount=-1 +kerning first=199 second=291 amount=-1 +kerning first=86 second=199 amount=-1 +kerning first=66 second=361 amount=-1 +kerning first=321 second=366 amount=-1 +kerning first=8222 second=86 amount=-2 +kerning first=199 second=73 amount=-1 +kerning first=86 second=287 amount=-1 +kerning first=87 second=337 amount=-1 +kerning first=325 second=227 amount=-1 +kerning first=258 second=332 amount=-1 +kerning first=346 second=256 amount=-1 +kerning first=268 second=198 amount=-1 +kerning first=84 second=275 amount=-1 +kerning first=187 second=218 amount=-1 +kerning first=199 second=194 amount=-1 +kerning first=311 second=240 amount=-1 +kerning first=275 second=119 amount=-1 +kerning first=269 second=105 amount=-1 +kerning first=8250 second=310 amount=-1 +kerning first=8216 second=103 amount=-1 +kerning first=82 second=219 amount=-1 +kerning first=76 second=84 amount=-1 +kerning first=268 second=103 amount=-1 +kerning first=187 second=219 amount=-1 +kerning first=1054 second=1038 amount=-1 +kerning first=347 second=119 amount=-1 +kerning first=290 second=374 amount=-1 +kerning first=310 second=212 amount=-1 +kerning first=221 second=281 amount=-1 +kerning first=363 second=314 amount=-1 +kerning first=291 second=314 amount=-1 +kerning first=246 second=108 amount=-1 +kerning first=195 second=115 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=195 second=289 amount=-1 +kerning first=249 second=8220 amount=-1 +kerning first=339 second=289 amount=-1 +kerning first=321 second=8220 amount=-1 +kerning first=233 second=44 amount=-1 +kerning first=377 second=367 amount=-1 +kerning first=267 second=289 amount=-1 +kerning first=255 second=314 amount=-1 +kerning first=8250 second=205 amount=-1 +kerning first=66 second=286 amount=-1 +kerning first=366 second=257 amount=-1 +kerning first=197 second=367 amount=-1 +kerning first=8250 second=287 amount=-1 +kerning first=330 second=257 amount=-1 +kerning first=344 second=101 amount=-1 +kerning first=221 second=229 amount=-1 +kerning first=86 second=243 amount=-1 +kerning first=256 second=220 amount=-1 +kerning first=374 second=287 amount=-1 +kerning first=375 second=115 amount=-1 +kerning first=118 second=45 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=1038 second=1102 amount=-1 +kerning first=302 second=261 amount=-1 +kerning first=374 second=109 amount=-1 +kerning first=46 second=45 amount=-1 +kerning first=1024 second=1059 amount=-1 +kerning first=374 second=261 amount=-1 +kerning first=197 second=83 amount=-1 +kerning first=229 second=255 amount=-1 +kerning first=87 second=97 amount=-1 +kerning first=103 second=226 amount=-1 +kerning first=331 second=45 amount=-1 +kerning first=217 second=289 amount=-1 +kerning first=187 second=197 amount=-1 +kerning first=193 second=255 amount=-1 +kerning first=193 second=81 amount=-1 +kerning first=119 second=225 amount=-1 +kerning first=291 second=380 amount=-1 +kerning first=255 second=380 amount=-1 +kerning first=8220 second=269 amount=-1 +kerning first=1027 second=1092 amount=-1 +kerning first=296 second=225 amount=-1 +kerning first=120 second=253 amount=-1 +kerning first=368 second=225 amount=-1 +kerning first=66 second=252 amount=-1 +kerning first=84 second=253 amount=-1 +kerning first=315 second=220 amount=-1 +kerning first=289 second=227 amount=-1 +kerning first=225 second=253 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=243 second=46 amount=-1 +kerning first=374 second=283 amount=-1 +kerning first=279 second=46 amount=-1 +kerning first=333 second=253 amount=-1 +kerning first=371 second=243 amount=-1 +kerning first=118 second=382 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=266 second=65 amount=-1 +kerning first=374 second=65 amount=-2 +kerning first=241 second=8217 amount=-1 +kerning first=315 second=381 amount=-1 +kerning first=66 second=264 amount=-1 +kerning first=89 second=283 amount=-1 +kerning first=111 second=318 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=187 second=80 amount=-1 +kerning first=252 second=318 amount=-1 +kerning first=260 second=287 amount=-1 +kerning first=264 second=264 amount=-1 +kerning first=375 second=289 amount=-1 +kerning first=370 second=259 amount=-1 +kerning first=268 second=317 amount=-1 +kerning first=298 second=259 amount=-1 +kerning first=339 second=311 amount=-1 +kerning first=8220 second=194 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=381 second=369 amount=-1 +kerning first=8216 second=277 amount=-1 +kerning first=344 second=8217 amount=-1 +kerning first=376 second=99 amount=-1 +kerning first=258 second=213 amount=-1 +kerning first=8250 second=325 amount=-1 +kerning first=362 second=352 amount=-1 +kerning first=97 second=375 amount=-1 +kerning first=121 second=259 amount=-1 +kerning first=85 second=259 amount=-1 +kerning first=218 second=352 amount=-1 +kerning first=194 second=87 amount=-2 +kerning first=1050 second=1063 amount=-1 +kerning first=1047 second=1093 amount=-1 +kerning first=289 second=230 amount=-1 +kerning first=325 second=230 amount=-1 +kerning first=106 second=253 amount=-1 +kerning first=217 second=230 amount=-1 +kerning first=253 second=230 amount=-1 +kerning first=283 second=253 amount=-1 +kerning first=346 second=87 amount=-1 +kerning first=298 second=363 amount=-1 +kerning first=366 second=122 amount=-1 +kerning first=204 second=224 amount=-1 +kerning first=82 second=101 amount=-1 +kerning first=84 second=81 amount=-1 +kerning first=45 second=217 amount=-1 +kerning first=195 second=288 amount=-1 +kerning first=8217 second=197 amount=-2 +kerning first=321 second=219 amount=-1 +kerning first=187 second=207 amount=-1 +kerning first=111 second=316 amount=-1 +kerning first=346 second=317 amount=-1 +kerning first=1043 second=1103 amount=-1 +kerning first=86 second=277 amount=-1 +kerning first=209 second=287 amount=-1 +kerning first=316 second=121 amount=-1 +kerning first=344 second=121 amount=-1 +kerning first=219 second=196 amount=-1 +kerning first=236 second=121 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=99 second=103 amount=-1 +kerning first=371 second=277 amount=-1 +kerning first=311 second=231 amount=-1 +kerning first=217 second=171 amount=-1 +kerning first=353 second=287 amount=-1 +kerning first=289 second=171 amount=-1 +kerning first=253 second=171 amount=-1 +kerning first=281 second=287 amount=-1 +kerning first=120 second=252 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=317 second=287 amount=-1 +kerning first=325 second=171 amount=-1 +kerning first=111 second=375 amount=-1 +kerning first=366 second=352 amount=-1 +kerning first=46 second=8217 amount=-1 +kerning first=45 second=122 amount=-1 +kerning first=264 second=270 amount=-1 +kerning first=87 second=99 amount=-1 +kerning first=8222 second=89 amount=-2 +kerning first=259 second=8217 amount=-1 +kerning first=258 second=352 amount=-1 +kerning first=331 second=8217 amount=-1 +kerning first=85 second=74 amount=-1 +kerning first=75 second=375 amount=-1 +kerning first=86 second=286 amount=-1 +kerning first=267 second=229 amount=-1 +kerning first=367 second=8217 amount=-1 +kerning first=231 second=229 amount=-1 +kerning first=370 second=74 amount=-1 +kerning first=344 second=213 amount=-1 +kerning first=375 second=229 amount=-1 +kerning first=204 second=225 amount=-1 +kerning first=287 second=382 amount=-1 +kerning first=377 second=103 amount=-1 +kerning first=266 second=315 amount=-1 +kerning first=258 second=214 amount=-1 +kerning first=233 second=103 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=356 second=246 amount=-1 +kerning first=197 second=103 amount=-1 +kerning first=119 second=318 amount=-1 +kerning first=107 second=246 amount=-1 +kerning first=310 second=199 amount=-1 +kerning first=8250 second=356 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=374 second=337 amount=-1 +kerning first=77 second=361 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=195 second=117 amount=-1 +kerning first=8217 second=335 amount=-1 +kerning first=117 second=255 amount=-1 +kerning first=90 second=117 amount=-1 +kerning first=361 second=8220 amount=-1 +kerning first=252 second=316 amount=-1 +kerning first=199 second=378 amount=-1 +kerning first=8216 second=224 amount=-1 +kerning first=87 second=119 amount=-1 +kerning first=192 second=8221 amount=-1 +kerning first=76 second=8220 amount=-1 +kerning first=76 second=118 amount=-1 +kerning first=379 second=378 amount=-1 +kerning first=192 second=119 amount=-1 +kerning first=376 second=281 amount=-1 +kerning first=268 second=202 amount=-1 +kerning first=228 second=119 amount=-1 +kerning first=344 second=233 amount=-1 +kerning first=66 second=380 amount=-1 +kerning first=375 second=347 amount=-1 +kerning first=8216 second=242 amount=-1 +kerning first=244 second=314 amount=-1 +kerning first=315 second=380 amount=-1 +kerning first=194 second=85 amount=-1 +kerning first=103 second=314 amount=-1 +kerning first=195 second=347 amount=-1 +kerning first=288 second=86 amount=-1 +kerning first=8217 second=256 amount=-2 +kerning first=221 second=379 amount=-1 +kerning first=192 second=250 amount=-1 +kerning first=83 second=200 amount=-1 +kerning first=8249 second=221 amount=-1 +kerning first=82 second=266 amount=-1 +kerning first=354 second=378 amount=-1 +kerning first=84 second=101 amount=-1 +kerning first=374 second=216 amount=-1 +kerning first=325 second=250 amount=-1 +kerning first=314 second=8220 amount=-1 +kerning first=65 second=8220 amount=-1 +kerning first=326 second=119 amount=-1 +kerning first=84 second=331 amount=-1 +kerning first=272 second=193 amount=-1 +kerning first=352 second=274 amount=-1 +kerning first=310 second=216 amount=-1 +kerning first=219 second=197 amount=-1 +kerning first=8220 second=195 amount=-2 +kerning first=376 second=90 amount=-1 +kerning first=286 second=291 amount=-1 +kerning first=1061 second=1054 amount=-1 +kerning first=250 second=291 amount=-1 +kerning first=194 second=216 amount=-1 +kerning first=321 second=377 amount=-1 +kerning first=89 second=216 amount=-1 +kerning first=45 second=83 amount=-1 +kerning first=73 second=291 amount=-1 +kerning first=86 second=67 amount=-1 +kerning first=89 second=197 amount=-2 +kerning first=258 second=121 amount=-1 +kerning first=258 second=83 amount=-1 +kerning first=266 second=216 amount=-1 +kerning first=266 second=197 amount=-1 +kerning first=8217 second=257 amount=-1 +kerning first=376 second=110 amount=-1 +kerning first=65 second=210 amount=-1 +kerning first=366 second=83 amount=-1 +kerning first=374 second=197 amount=-2 +kerning first=119 second=8249 amount=-1 +kerning first=66 second=262 amount=-1 +kerning first=83 second=302 amount=-1 +kerning first=8250 second=87 amount=-1 +kerning first=356 second=187 amount=-1 +kerning first=260 second=8249 amount=-1 +kerning first=354 second=240 amount=-1 +kerning first=368 second=8249 amount=-1 +kerning first=256 second=268 amount=-1 +kerning first=83 second=68 amount=-1 +kerning first=346 second=278 amount=-1 +kerning first=8220 second=333 amount=-1 +kerning first=86 second=198 amount=-2 +kerning first=83 second=45 amount=-1 +kerning first=66 second=203 amount=-1 +kerning first=235 second=108 amount=-1 +kerning first=249 second=318 amount=-1 +kerning first=222 second=46 amount=-1 +kerning first=209 second=228 amount=-1 +kerning first=219 second=65 amount=-1 +kerning first=195 second=367 amount=-1 +kerning first=268 second=193 amount=-1 +kerning first=351 second=120 amount=-1 +kerning first=8220 second=235 amount=-1 +kerning first=90 second=367 amount=-1 +kerning first=298 second=361 amount=-1 +kerning first=82 second=286 amount=-1 +kerning first=206 second=229 amount=-1 +kerning first=221 second=339 amount=-1 +kerning first=103 second=353 amount=-1 +kerning first=1061 second=1073 amount=-1 +kerning first=8222 second=220 amount=-1 +kerning first=211 second=194 amount=-1 +kerning first=262 second=304 amount=-1 +kerning first=354 second=109 amount=-1 +kerning first=89 second=45 amount=-1 +kerning first=70 second=352 amount=-1 +kerning first=255 second=275 amount=-1 +kerning first=8250 second=195 amount=-1 +kerning first=374 second=45 amount=-1 +kerning first=8216 second=263 amount=-1 +kerning first=194 second=45 amount=-1 +kerning first=8216 second=244 amount=-1 +kerning first=70 second=194 amount=-1 +kerning first=376 second=242 amount=-1 +kerning first=316 second=255 amount=-1 +kerning first=370 second=225 amount=-1 +kerning first=244 second=255 amount=-1 +kerning first=298 second=225 amount=-1 +kerning first=75 second=334 amount=-1 +kerning first=376 second=286 amount=-1 +kerning first=221 second=110 amount=-1 +kerning first=344 second=81 amount=-1 +kerning first=231 second=97 amount=-1 +kerning first=267 second=97 amount=-1 +kerning first=269 second=44 amount=-1 +kerning first=375 second=97 amount=-1 +kerning first=87 second=79 amount=-1 +kerning first=288 second=65 amount=-1 +kerning first=350 second=84 amount=-1 +kerning first=67 second=274 amount=-1 +kerning first=197 second=252 amount=-1 +kerning first=264 second=79 amount=-1 +kerning first=187 second=76 amount=-1 +kerning first=277 second=46 amount=-1 +kerning first=65 second=289 amount=-1 +kerning first=8222 second=378 amount=-1 +kerning first=278 second=289 amount=-1 +kerning first=314 second=289 amount=-1 +kerning first=206 second=289 amount=-1 +kerning first=1059 second=1088 amount=-1 +kerning first=85 second=225 amount=-1 +kerning first=350 second=289 amount=-1 +kerning first=65 second=368 amount=-1 +kerning first=303 second=248 amount=-1 +kerning first=354 second=241 amount=-1 +kerning first=263 second=230 amount=-1 +kerning first=1059 second=1108 amount=-1 +kerning first=197 second=352 amount=-1 +kerning first=83 second=69 amount=-1 +kerning first=82 second=364 amount=-1 +kerning first=1059 second=1084 amount=-1 +kerning first=198 second=287 amount=-1 +kerning first=262 second=206 amount=-1 +kerning first=234 second=287 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=195 second=374 amount=-2 +kerning first=313 second=86 amount=-1 +kerning first=8218 second=118 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=88 second=286 amount=-1 +kerning first=350 second=368 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=268 second=380 amount=-1 +kerning first=230 second=46 amount=-1 +kerning first=370 second=256 amount=-1 +kerning first=103 second=45 amount=-1 +kerning first=199 second=201 amount=-1 +kerning first=8216 second=273 amount=-1 +kerning first=98 second=253 amount=-1 +kerning first=268 second=70 amount=-1 +kerning first=376 second=380 amount=-1 +kerning first=303 second=269 amount=-1 +kerning first=375 second=269 amount=-1 +kerning first=255 second=353 amount=-1 +kerning first=229 second=121 amount=-1 +kerning first=344 second=311 amount=-1 +kerning first=87 second=230 amount=-1 +kerning first=313 second=375 amount=-1 +kerning first=364 second=346 amount=-1 +kerning first=87 second=289 amount=-1 +kerning first=256 second=346 amount=-1 +kerning first=277 second=375 amount=-1 +kerning first=264 second=289 amount=-1 +kerning first=346 second=219 amount=-1 +kerning first=192 second=289 amount=-1 +kerning first=65 second=288 amount=-1 +kerning first=375 second=248 amount=-1 +kerning first=73 second=369 amount=-1 +kerning first=1059 second=1087 amount=-1 +kerning first=344 second=370 amount=-1 +kerning first=192 second=251 amount=-1 +kerning first=356 second=289 amount=-1 +kerning first=67 second=196 amount=-1 +kerning first=8216 second=243 amount=-1 +kerning first=344 second=220 amount=-1 +kerning first=344 second=332 amount=-1 +kerning first=192 second=171 amount=-1 +kerning first=256 second=117 amount=-1 +kerning first=264 second=171 amount=-1 +kerning first=87 second=231 amount=-1 +kerning first=228 second=8220 amount=-1 +kerning first=106 second=121 amount=-1 +kerning first=352 second=196 amount=-1 +kerning first=208 second=196 amount=-1 +kerning first=76 second=119 amount=-1 +kerning first=311 second=100 amount=-1 +kerning first=84 second=233 amount=-1 +kerning first=83 second=298 amount=-1 +kerning first=196 second=221 amount=-2 +kerning first=8250 second=219 amount=-1 +kerning first=253 second=99 amount=-1 +kerning first=269 second=314 amount=-1 +kerning first=233 second=314 amount=-1 +kerning first=84 second=213 amount=-1 +kerning first=262 second=382 amount=-1 +kerning first=195 second=249 amount=-1 +kerning first=258 second=253 amount=-1 +kerning first=333 second=120 amount=-1 +kerning first=266 second=334 amount=-1 +kerning first=310 second=8249 amount=-1 +kerning first=382 second=8249 amount=-1 +kerning first=346 second=291 amount=-1 +kerning first=89 second=334 amount=-1 +kerning first=346 second=8249 amount=-1 +kerning first=262 second=344 amount=-1 +kerning first=1090 second=1083 amount=-1 +kerning first=323 second=363 amount=-1 +kerning first=316 second=103 amount=-1 +kerning first=352 second=103 amount=-1 +kerning first=374 second=334 amount=-1 +kerning first=67 second=78 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=45 second=313 amount=-1 +kerning first=67 second=103 amount=-1 +kerning first=196 second=8217 amount=-1 +kerning first=209 second=365 amount=-1 +kerning first=266 second=296 amount=-1 +kerning first=65 second=118 amount=-1 +kerning first=346 second=68 amount=-1 +kerning first=8217 second=275 amount=-1 +kerning first=263 second=316 amount=-1 +kerning first=85 second=382 amount=-1 +kerning first=255 second=235 amount=-1 +kerning first=70 second=83 amount=-1 +kerning first=377 second=255 amount=-1 +kerning first=244 second=44 amount=-1 +kerning first=352 second=44 amount=-1 +kerning first=197 second=255 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=233 second=255 amount=-1 +kerning first=228 second=8221 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=8250 second=317 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=108 second=8249 amount=-1 +kerning first=87 second=290 amount=-1 +kerning first=118 second=227 amount=-1 +kerning first=192 second=290 amount=-1 +kerning first=120 second=115 amount=-1 +kerning first=86 second=110 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=70 second=193 amount=-1 +kerning first=8250 second=122 amount=-1 +kerning first=313 second=85 amount=-1 +kerning first=67 second=65 amount=-1 +kerning first=8250 second=121 amount=-1 +kerning first=303 second=118 amount=-1 +kerning first=339 second=118 amount=-1 +kerning first=311 second=232 amount=-1 +kerning first=199 second=338 amount=-1 +kerning first=263 second=257 amount=-1 +kerning first=1027 second=1078 amount=-1 +kerning first=208 second=65 amount=-1 +kerning first=83 second=260 amount=-1 +kerning first=264 second=192 amount=-1 +kerning first=195 second=118 amount=-1 +kerning first=102 second=171 amount=-1 +kerning first=231 second=118 amount=-1 +kerning first=336 second=192 amount=-1 +kerning first=352 second=65 amount=-1 +kerning first=87 second=192 amount=-2 +kerning first=332 second=260 amount=-1 +kerning first=206 second=250 amount=-1 +kerning first=1105 second=1076 amount=-1 +kerning first=121 second=245 amount=-1 +kerning first=221 second=378 amount=-1 +kerning first=1036 second=1073 amount=-1 +kerning first=194 second=84 amount=-2 +kerning first=347 second=291 amount=-1 +kerning first=275 second=291 amount=-1 +kerning first=288 second=256 amount=-1 +kerning first=119 second=337 amount=-1 +kerning first=203 second=291 amount=-1 +kerning first=221 second=90 amount=-1 +kerning first=195 second=210 amount=-1 +kerning first=8218 second=354 amount=-2 +kerning first=377 second=102 amount=-1 +kerning first=216 second=256 amount=-1 +kerning first=221 second=242 amount=-1 +kerning first=310 second=67 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=310 second=338 amount=-1 +kerning first=89 second=335 amount=-1 +kerning first=327 second=45 amount=-1 +kerning first=352 second=280 amount=-1 +kerning first=313 second=374 amount=-1 +kerning first=66 second=261 amount=-1 +kerning first=374 second=335 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=207 second=261 amount=-1 +kerning first=256 second=367 amount=-1 +kerning first=362 second=224 amount=-1 +kerning first=76 second=289 amount=-1 +kerning first=99 second=303 amount=-1 +kerning first=325 second=289 amount=-1 +kerning first=8220 second=103 amount=-1 +kerning first=1027 second=1040 amount=-1 +kerning first=218 second=224 amount=-1 +kerning first=253 second=289 amount=-1 +kerning first=8250 second=377 amount=-1 +kerning first=87 second=328 amount=-1 +kerning first=354 second=279 amount=-1 +kerning first=1043 second=1104 amount=-1 +kerning first=119 second=108 amount=-1 +kerning first=354 second=381 amount=-1 +kerning first=356 second=286 amount=-1 +kerning first=253 second=229 amount=-1 +kerning first=187 second=325 amount=-1 +kerning first=217 second=229 amount=-1 +kerning first=353 second=115 amount=-1 +kerning first=86 second=257 amount=-1 +kerning first=8218 second=221 amount=-2 +kerning first=325 second=229 amount=-1 +kerning first=289 second=229 amount=-1 +kerning first=197 second=353 amount=-1 +kerning first=352 second=354 amount=-1 +kerning first=356 second=324 amount=-1 +kerning first=118 second=287 amount=-1 +kerning first=187 second=287 amount=-1 +kerning first=82 second=287 amount=-1 +kerning first=346 second=356 amount=-1 +kerning first=102 second=107 amount=1 +kerning first=110 second=45 amount=-1 +kerning first=264 second=290 amount=-1 +kerning first=66 second=223 amount=-1 +kerning first=1050 second=1054 amount=-1 +kerning first=367 second=287 amount=-1 +kerning first=73 second=171 amount=-1 +kerning first=206 second=97 amount=-1 +kerning first=374 second=275 amount=-1 +kerning first=376 second=245 amount=-1 +kerning first=354 second=339 amount=-1 +kerning first=1027 second=1089 amount=-1 +kerning first=195 second=368 amount=-1 +kerning first=219 second=45 amount=-1 +kerning first=255 second=45 amount=-1 +kerning first=81 second=194 amount=-1 +kerning first=222 second=194 amount=-1 +kerning first=89 second=275 amount=-1 +kerning first=78 second=45 amount=-1 +kerning first=8220 second=234 amount=-1 +kerning first=197 second=45 amount=-1 +kerning first=192 second=350 amount=-1 +kerning first=194 second=353 amount=-1 +kerning first=305 second=45 amount=-1 +kerning first=264 second=350 amount=-1 +kerning first=65 second=211 amount=-1 +kerning first=313 second=356 amount=-1 +kerning first=374 second=353 amount=-1 +kerning first=246 second=318 amount=-1 +kerning first=8217 second=277 amount=-1 +kerning first=377 second=45 amount=-1 +kerning first=275 second=289 amount=-1 +kerning first=203 second=289 amount=-1 +kerning first=277 second=255 amount=-1 +kerning first=313 second=255 amount=-1 +kerning first=262 second=112 amount=-1 +kerning first=347 second=289 amount=-1 +kerning first=187 second=193 amount=-1 +kerning first=84 second=194 amount=-2 +kerning first=84 second=332 amount=-1 +kerning first=376 second=223 amount=-1 +kerning first=352 second=374 amount=-1 +kerning first=89 second=353 amount=-1 +kerning first=120 second=259 amount=-1 +kerning first=8249 second=354 amount=-1 +kerning first=84 second=290 amount=-1 +kerning first=325 second=251 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=374 second=257 amount=-1 +kerning first=195 second=79 amount=-1 +kerning first=1100 second=1091 amount=-1 +kerning first=272 second=192 amount=-1 +kerning first=70 second=44 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=74 second=103 amount=-1 +kerning first=89 second=257 amount=-1 +kerning first=65 second=119 amount=-1 +kerning first=302 second=257 amount=-1 +kerning first=264 second=78 amount=-1 +kerning first=314 second=119 amount=-1 +kerning first=315 second=221 amount=-1 +kerning first=114 second=46 amount=-1 +kerning first=350 second=119 amount=-1 +kerning first=356 second=225 amount=-1 +kerning first=291 second=46 amount=-1 +kerning first=219 second=46 amount=-1 +kerning first=255 second=46 amount=-1 +kerning first=8250 second=66 amount=-1 +kerning first=269 second=253 amount=-1 +kerning first=377 second=253 amount=-1 +kerning first=187 second=346 amount=-1 +kerning first=231 second=230 amount=-1 +kerning first=374 second=375 amount=-1 +kerning first=82 second=346 amount=-1 +kerning first=199 second=70 amount=-1 +kerning first=194 second=375 amount=-1 +kerning first=230 second=375 amount=-1 +kerning first=83 second=87 amount=-1 +kerning first=268 second=201 amount=-1 +kerning first=311 second=101 amount=-1 +kerning first=260 second=87 amount=-2 +kerning first=8220 second=273 amount=-1 +kerning first=89 second=375 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=8250 second=70 amount=-1 +kerning first=217 second=380 amount=-1 +kerning first=89 second=235 amount=-1 +kerning first=321 second=218 amount=-1 +kerning first=288 second=354 amount=-1 +kerning first=277 second=104 amount=-1 +kerning first=374 second=235 amount=-1 +kerning first=8216 second=74 amount=-1 +kerning first=106 second=171 amount=-1 +kerning first=86 second=377 amount=-1 +kerning first=120 second=369 amount=-1 +kerning first=263 second=105 amount=-1 +kerning first=264 second=212 amount=-1 +kerning first=67 second=197 amount=-1 +kerning first=1059 second=1083 amount=-1 +kerning first=344 second=83 amount=-1 +kerning first=255 second=333 amount=-1 +kerning first=208 second=197 amount=-1 +kerning first=83 second=317 amount=-1 +kerning first=253 second=231 amount=-1 +kerning first=352 second=197 amount=-1 +kerning first=323 second=291 amount=-1 +kerning first=258 second=351 amount=-1 +kerning first=209 second=229 amount=-1 +kerning first=86 second=335 amount=-1 +kerning first=346 second=237 amount=-1 +kerning first=103 second=122 amount=-1 +kerning first=275 second=311 amount=-1 +kerning first=375 second=230 amount=-1 +kerning first=67 second=122 amount=-1 +kerning first=233 second=253 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=371 second=335 amount=-1 +kerning first=89 second=333 amount=-1 +kerning first=213 second=260 amount=-1 +kerning first=286 second=171 amount=-1 +kerning first=256 second=249 amount=-1 +kerning first=262 second=266 amount=-1 +kerning first=283 second=121 amount=-1 +kerning first=346 second=200 amount=-1 +kerning first=260 second=199 amount=-1 +kerning first=204 second=361 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=45 second=196 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=363 second=103 amount=-1 +kerning first=197 second=171 amount=-1 +kerning first=268 second=280 amount=-1 +kerning first=84 second=214 amount=-1 +kerning first=109 second=8221 amount=-1 +kerning first=327 second=103 amount=-1 +kerning first=219 second=103 amount=-1 +kerning first=8218 second=119 amount=-1 +kerning first=255 second=103 amount=-1 +kerning first=253 second=100 amount=-1 +kerning first=221 second=267 amount=-1 +kerning first=78 second=103 amount=-1 +kerning first=250 second=8221 amount=-1 +kerning first=354 second=71 amount=-1 +kerning first=264 second=330 amount=-1 +kerning first=381 second=365 amount=-1 +kerning first=45 second=103 amount=-1 +kerning first=321 second=220 amount=-1 +kerning first=221 second=8250 amount=-1 +kerning first=109 second=171 amount=-1 +kerning first=8216 second=192 amount=-2 +kerning first=354 second=242 amount=-1 +kerning first=220 second=97 amount=-1 +kerning first=328 second=118 amount=-1 +kerning first=66 second=72 amount=-1 +kerning first=207 second=224 amount=-1 +kerning first=199 second=298 amount=-1 +kerning first=118 second=248 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=296 second=259 amount=-1 +kerning first=66 second=224 amount=-1 +kerning first=66 second=379 amount=-1 +kerning first=87 second=232 amount=-1 +kerning first=118 second=267 amount=-1 +kerning first=260 second=218 amount=-1 +kerning first=82 second=267 amount=-1 +kerning first=66 second=330 amount=-1 +kerning first=313 second=354 amount=-1 +kerning first=255 second=234 amount=-1 +kerning first=83 second=218 amount=-1 +kerning first=115 second=118 amount=-1 +kerning first=195 second=250 amount=-1 +kerning first=90 second=250 amount=-1 +kerning first=1050 second=1090 amount=-1 +kerning first=83 second=221 amount=-1 +kerning first=8220 second=197 amount=-2 +kerning first=376 second=378 amount=-1 +kerning first=45 second=274 amount=-1 +kerning first=71 second=287 amount=-1 +kerning first=363 second=108 amount=-1 +kerning first=84 second=192 amount=-2 +kerning first=214 second=193 amount=-1 +kerning first=1113 second=1118 amount=-1 +kerning first=213 second=198 amount=-1 +kerning first=75 second=216 amount=-1 +kerning first=118 second=226 amount=-1 +kerning first=313 second=84 amount=-1 +kerning first=364 second=227 amount=-1 +kerning first=356 second=287 amount=-1 +kerning first=356 second=113 amount=-1 +kerning first=352 second=102 amount=-1 +kerning first=284 second=287 amount=-1 +kerning first=1118 second=1083 amount=-1 +kerning first=220 second=227 amount=-1 +kerning first=231 second=307 amount=-1 +kerning first=268 second=378 amount=-1 +kerning first=344 second=291 amount=-1 +kerning first=107 second=113 amount=-1 +kerning first=256 second=368 amount=-1 +kerning first=254 second=121 amount=-1 +kerning first=264 second=210 amount=-1 +kerning first=236 second=291 amount=-1 +kerning first=352 second=45 amount=-1 +kerning first=193 second=262 amount=-1 +kerning first=321 second=89 amount=-1 +kerning first=310 second=268 amount=-1 +kerning first=193 second=284 amount=-1 +kerning first=88 second=262 amount=-1 +kerning first=87 second=210 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=217 second=350 amount=-1 +kerning first=192 second=210 amount=-1 +kerning first=371 second=337 amount=-1 +kerning first=354 second=8249 amount=-1 +kerning first=86 second=337 amount=-1 +kerning first=88 second=284 amount=-1 +kerning first=119 second=240 amount=-1 +kerning first=219 second=256 amount=-1 +kerning first=8218 second=87 amount=-2 +kerning first=209 second=367 amount=-1 +kerning first=118 second=245 amount=-1 +kerning first=350 second=327 amount=-1 +kerning first=82 second=245 amount=-1 +kerning first=105 second=8249 amount=-1 +kerning first=121 second=263 amount=-1 +kerning first=1038 second=1092 amount=-1 +kerning first=267 second=228 amount=-1 +kerning first=346 second=66 amount=-1 +kerning first=375 second=228 amount=-1 +kerning first=121 second=244 amount=-1 +kerning first=249 second=108 amount=-1 +kerning first=347 second=120 amount=-1 +kerning first=231 second=228 amount=-1 +kerning first=268 second=302 amount=-1 +kerning first=263 second=108 amount=-1 +kerning first=335 second=108 amount=-1 +kerning first=66 second=303 amount=-1 +kerning first=83 second=219 amount=-1 +kerning first=206 second=251 amount=-1 +kerning first=374 second=226 amount=-1 +kerning first=109 second=8220 amount=-1 +kerning first=364 second=229 amount=-1 +kerning first=250 second=8220 amount=-1 +kerning first=262 second=286 amount=-1 +kerning first=66 second=311 amount=-1 +kerning first=195 second=119 amount=-1 +kerning first=376 second=279 amount=-1 +kerning first=264 second=310 amount=-1 +kerning first=303 second=119 amount=-1 +kerning first=339 second=119 amount=-1 +kerning first=8217 second=333 amount=-1 +kerning first=231 second=119 amount=-1 +kerning first=267 second=119 amount=-1 +kerning first=356 second=115 amount=-1 +kerning first=220 second=229 amount=-1 +kerning first=209 second=97 amount=-1 +kerning first=381 second=363 amount=-1 +kerning first=291 second=353 amount=-1 +kerning first=8222 second=221 amount=-2 +kerning first=283 second=314 amount=-1 +kerning first=288 second=356 amount=-1 +kerning first=366 second=45 amount=-1 +kerning first=374 second=255 amount=-1 +kerning first=1046 second=1060 amount=-1 +kerning first=8217 second=246 amount=-1 +kerning first=230 second=255 amount=-1 +kerning first=330 second=45 amount=-1 +kerning first=87 second=101 amount=-1 +kerning first=194 second=255 amount=-1 +kerning first=107 second=244 amount=-1 +kerning first=67 second=296 amount=-1 +kerning first=89 second=255 amount=-1 +kerning first=272 second=194 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=356 second=244 amount=-1 +kerning first=350 second=280 amount=-1 +kerning first=264 second=80 amount=-1 +kerning first=352 second=296 amount=-1 +kerning first=1114 second=1091 amount=-1 +kerning first=121 second=243 amount=-1 +kerning first=8217 second=103 amount=-1 +kerning first=1061 second=1095 amount=-1 +kerning first=352 second=46 amount=-1 +kerning first=310 second=121 amount=-1 +kerning first=244 second=46 amount=-1 +kerning first=219 second=352 amount=-1 +kerning first=264 second=203 amount=-1 +kerning first=84 second=83 amount=-1 +kerning first=187 second=77 amount=-1 +kerning first=262 second=264 amount=-1 +kerning first=352 second=330 amount=-1 +kerning first=115 second=347 amount=-1 +kerning first=256 second=347 amount=-1 +kerning first=218 second=380 amount=-1 +kerning first=268 second=71 amount=-1 +kerning first=196 second=71 amount=-1 +kerning first=362 second=380 amount=-1 +kerning first=118 second=225 amount=-1 +kerning first=45 second=65 amount=-1 +kerning first=199 second=200 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=85 second=230 amount=-1 +kerning first=226 second=8217 amount=-1 +kerning first=81 second=65 amount=-1 +kerning first=316 second=253 amount=-1 +kerning first=222 second=65 amount=-1 +kerning first=363 second=375 amount=-1 +kerning first=206 second=230 amount=-1 +kerning first=321 second=87 amount=-1 +kerning first=366 second=65 amount=-1 +kerning first=303 second=99 amount=-1 +kerning first=73 second=289 amount=-1 +kerning first=375 second=99 amount=-1 +kerning first=89 second=65 amount=-2 +kerning first=263 second=259 amount=-1 +kerning first=197 second=351 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=250 second=289 amount=-1 +kerning first=258 second=370 amount=-1 +kerning first=86 second=259 amount=-1 +kerning first=235 second=318 amount=-1 +kerning first=346 second=260 amount=-1 +kerning first=286 second=289 amount=-1 +kerning first=377 second=122 amount=-1 +kerning first=264 second=288 amount=-1 +kerning first=346 second=218 amount=-1 +kerning first=87 second=81 amount=-1 +kerning first=366 second=196 amount=-1 +kerning first=192 second=81 amount=-1 +kerning first=87 second=288 amount=-1 +kerning first=192 second=288 amount=-1 +kerning first=222 second=196 amount=-1 +kerning first=230 second=104 amount=-1 +kerning first=264 second=81 amount=-1 +kerning first=374 second=277 amount=-1 +kerning first=260 second=219 amount=-1 +kerning first=66 second=323 amount=-1 +kerning first=260 second=89 amount=-2 +kerning first=374 second=286 amount=-1 +kerning first=268 second=203 amount=-1 +kerning first=1036 second=1054 amount=-1 +kerning first=377 second=121 amount=-1 +kerning first=374 second=256 amount=-2 +kerning first=346 second=217 amount=-1 +kerning first=103 second=351 amount=-1 +kerning first=211 second=196 amount=-1 +kerning first=311 second=283 amount=-1 +kerning first=45 second=370 amount=-1 +kerning first=364 second=228 amount=-1 +kerning first=70 second=196 amount=-1 +kerning first=346 second=75 amount=-1 +kerning first=376 second=224 amount=-1 +kerning first=376 second=194 amount=-2 +kerning first=83 second=89 amount=-1 +kerning first=220 second=228 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=255 second=277 amount=-1 +kerning first=194 second=354 amount=-2 +kerning first=304 second=224 amount=-1 +kerning first=346 second=86 amount=-1 +kerning first=377 second=252 amount=-1 +kerning first=83 second=220 amount=-1 +kerning first=353 second=347 amount=-1 +kerning first=221 second=71 amount=-1 +kerning first=225 second=8221 amount=-1 +kerning first=118 second=246 amount=-1 +kerning first=338 second=103 amount=-1 +kerning first=317 second=368 amount=-1 +kerning first=374 second=103 amount=-1 +kerning first=86 second=336 amount=-1 +kerning first=192 second=8217 amount=-1 +kerning first=266 second=103 amount=-1 +kerning first=82 second=246 amount=-1 +kerning first=302 second=103 amount=-1 +kerning first=369 second=8221 amount=-1 +kerning first=354 second=8250 amount=-1 +kerning first=194 second=103 amount=-1 +kerning first=230 second=103 amount=-1 +kerning first=350 second=291 amount=-1 +kerning first=120 second=171 amount=-1 +kerning first=260 second=220 amount=-1 +kerning first=249 second=316 amount=-1 +kerning first=84 second=171 amount=-1 +kerning first=381 second=287 amount=-1 +kerning first=264 second=211 amount=-1 +kerning first=353 second=118 amount=-1 +kerning first=8250 second=260 amount=-1 +kerning first=192 second=211 amount=-1 +kerning first=364 second=97 amount=-1 +kerning first=253 second=232 amount=-1 +kerning first=8250 second=86 amount=-1 +kerning first=346 second=315 amount=-1 +kerning first=65 second=350 amount=-1 +kerning first=218 second=74 amount=-1 +kerning first=260 second=67 amount=-1 +kerning first=317 second=118 amount=-1 +kerning first=363 second=255 amount=-1 +kerning first=362 second=74 amount=-1 +kerning first=366 second=44 amount=-1 +kerning first=87 second=211 amount=-1 +kerning first=82 second=366 amount=-1 +kerning first=379 second=8249 amount=-1 +kerning first=86 second=216 amount=-1 +kerning first=8216 second=283 amount=-1 +kerning first=187 second=366 amount=-1 +kerning first=222 second=44 amount=-1 +kerning first=205 second=257 amount=-1 +kerning first=45 second=120 amount=-1 +kerning first=72 second=8249 amount=-1 +kerning first=84 second=193 amount=-2 +kerning first=356 second=267 amount=-1 +kerning first=89 second=234 amount=-1 +kerning first=350 second=209 amount=-1 +kerning first=268 second=72 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=374 second=234 amount=-1 +kerning first=1043 second=1108 amount=-1 +kerning first=195 second=251 amount=-1 +kerning first=350 second=78 amount=-1 +kerning first=286 second=192 amount=-1 +kerning first=83 second=198 amount=-1 +kerning first=87 second=331 amount=-1 +kerning first=66 second=302 amount=-1 +kerning first=90 second=251 amount=-1 +kerning first=356 second=245 amount=-1 +kerning first=268 second=315 amount=-1 +kerning first=323 second=361 amount=-1 +kerning first=231 second=318 amount=-1 +kerning first=214 second=192 amount=-1 +kerning first=256 second=250 amount=-1 +kerning first=368 second=198 amount=-1 +kerning first=107 second=245 amount=-1 +kerning first=332 second=198 amount=-1 +kerning first=1059 second=1074 amount=-1 +kerning first=66 second=378 amount=-1 +kerning first=1090 second=1113 amount=-1 +kerning first=1050 second=1073 amount=-1 +kerning first=209 second=227 amount=-1 +kerning first=82 second=268 amount=-1 +kerning first=89 second=256 amount=-2 +kerning first=369 second=291 amount=-1 +kerning first=87 second=233 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=78 second=287 amount=-1 +kerning first=328 second=119 amount=-1 +kerning first=315 second=378 amount=-1 +kerning first=256 second=119 amount=-1 +kerning first=84 second=291 amount=-1 +kerning first=222 second=256 amount=-1 +kerning first=67 second=198 amount=-1 +kerning first=74 second=227 amount=-1 +kerning first=344 second=314 amount=-1 +kerning first=89 second=337 amount=-1 +kerning first=45 second=256 amount=-1 +kerning first=208 second=198 amount=-1 +kerning first=81 second=256 amount=-1 +kerning first=377 second=291 amount=-1 +kerning first=321 second=90 amount=-1 +kerning first=352 second=198 amount=-1 +kerning first=269 second=291 amount=-1 +kerning first=233 second=291 amount=-1 +kerning first=197 second=291 amount=-1 +kerning first=82 second=244 amount=-1 +kerning first=8250 second=278 amount=-1 +kerning first=118 second=244 amount=-1 +kerning first=288 second=44 amount=-1 +kerning first=84 second=210 amount=-1 +kerning first=346 second=354 amount=-1 +kerning first=86 second=378 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=253 second=101 amount=-1 +kerning first=344 second=84 amount=-1 +kerning first=289 second=318 amount=-1 +kerning first=1050 second=1095 amount=-1 +kerning first=323 second=227 amount=-1 +kerning first=366 second=256 amount=-1 +kerning first=287 second=227 amount=-1 +kerning first=86 second=8250 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=262 second=203 amount=-1 +kerning first=8222 second=356 amount=-2 +kerning first=199 second=336 amount=-1 +kerning first=87 second=228 amount=-1 +kerning first=187 second=73 amount=-1 +kerning first=290 second=89 amount=-1 +kerning first=252 second=108 amount=-1 +kerning first=381 second=361 amount=-1 +kerning first=81 second=197 amount=-1 +kerning first=45 second=197 amount=-1 +kerning first=221 second=263 amount=-1 +kerning first=266 second=278 amount=-1 +kerning first=65 second=286 amount=-1 +kerning first=222 second=197 amount=-1 +kerning first=1088 second=1076 amount=-1 +kerning first=73 second=367 amount=-1 +kerning first=316 second=106 amount=-1 +kerning first=8250 second=196 amount=-1 +kerning first=366 second=197 amount=-1 +kerning first=262 second=262 amount=-1 +kerning first=193 second=221 amount=-2 +kerning first=375 second=246 amount=-1 +kerning first=72 second=261 amount=-1 +kerning first=303 second=246 amount=-1 +kerning first=196 second=8249 amount=-1 +kerning first=304 second=8249 amount=-1 +kerning first=268 second=8249 amount=-1 +kerning first=8220 second=230 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=84 second=289 amount=-1 +kerning first=266 second=194 amount=-1 +kerning first=374 second=194 amount=-2 +kerning first=211 second=65 amount=-1 +kerning first=83 second=237 amount=-1 +kerning first=313 second=8220 amount=-1 +kerning first=369 second=289 amount=-1 +kerning first=86 second=260 amount=-2 +kerning first=70 second=45 amount=-1 +kerning first=88 second=338 amount=-1 +kerning first=89 second=194 amount=-2 +kerning first=89 second=8249 amount=-1 +kerning first=356 second=97 amount=-1 +kerning first=256 second=211 amount=-1 +kerning first=45 second=287 amount=-1 +kerning first=84 second=353 amount=-1 +kerning first=120 second=353 amount=-1 +kerning first=335 second=255 amount=-1 +kerning first=321 second=374 amount=-1 +kerning first=263 second=255 amount=-1 +kerning first=86 second=240 amount=-1 +kerning first=227 second=255 amount=-1 +kerning first=86 second=255 amount=-1 +kerning first=71 second=374 amount=-1 +kerning first=104 second=8221 amount=-1 +kerning first=371 second=240 amount=-1 +kerning first=8220 second=198 amount=-2 +kerning first=350 second=76 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=121 second=225 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=258 second=8217 amount=-1 +kerning first=332 second=46 amount=-1 +kerning first=368 second=46 amount=-1 +kerning first=8220 second=232 amount=-1 +kerning first=351 second=121 amount=-1 +kerning first=354 second=44 amount=-1 +kerning first=268 second=323 amount=-1 +kerning first=45 second=310 amount=-1 +kerning first=364 second=226 amount=-1 +kerning first=1046 second=1104 amount=-1 +kerning first=207 second=225 amount=-1 +kerning first=66 second=225 amount=-1 +kerning first=222 second=192 amount=-1 +kerning first=207 second=259 amount=-1 +kerning first=379 second=289 amount=-1 +kerning first=45 second=192 amount=-1 +kerning first=221 second=224 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=330 second=224 amount=-1 +kerning first=256 second=290 amount=-1 +kerning first=244 second=375 amount=-1 +kerning first=192 second=213 amount=-1 +kerning first=316 second=375 amount=-1 +kerning first=87 second=213 amount=-1 +kerning first=213 second=46 amount=-1 +kerning first=187 second=204 amount=-1 +kerning first=8217 second=337 amount=-1 +kerning first=266 second=317 amount=-1 +kerning first=195 second=369 amount=-1 +kerning first=90 second=369 amount=-1 +kerning first=262 second=282 amount=-1 +kerning first=82 second=288 amount=-1 +kerning first=346 second=221 amount=-1 +kerning first=354 second=111 amount=-1 +kerning first=85 second=287 amount=-1 +kerning first=1070 second=1051 amount=-1 +kerning first=121 second=287 amount=-1 +kerning first=233 second=311 amount=-1 +kerning first=119 second=316 amount=-1 +kerning first=218 second=225 amount=-1 +kerning first=362 second=225 amount=-1 +kerning first=1043 second=1086 amount=-1 +kerning first=370 second=287 amount=-1 +kerning first=262 second=287 amount=-1 +kerning first=298 second=287 amount=-1 +kerning first=376 second=259 amount=-1 +kerning first=266 second=352 amount=-1 +kerning first=192 second=351 amount=-1 +kerning first=219 second=194 amount=-1 +kerning first=374 second=352 amount=-1 +kerning first=87 second=351 amount=-1 +kerning first=89 second=352 amount=-1 +kerning first=314 second=8217 amount=-1 +kerning first=66 second=74 amount=-1 +kerning first=194 second=352 amount=-1 +kerning first=303 second=231 amount=-1 +kerning first=264 second=327 amount=-1 +kerning first=1050 second=1038 amount=-1 +kerning first=120 second=254 amount=-1 +kerning first=118 second=269 amount=-1 +kerning first=82 second=269 amount=-1 +kerning first=120 second=261 amount=-1 +kerning first=315 second=84 amount=-1 +kerning first=8250 second=255 amount=-1 +kerning first=244 second=121 amount=-1 +kerning first=346 second=374 amount=-1 +kerning first=86 second=196 amount=-2 +kerning first=118 second=229 amount=-1 +kerning first=1059 second=1085 amount=-1 +kerning first=287 second=115 amount=-1 +kerning first=375 second=231 amount=-1 +kerning first=363 second=253 amount=-1 +kerning first=258 second=212 amount=-1 +kerning first=195 second=350 amount=-1 +kerning first=86 second=334 amount=-1 +kerning first=65 second=347 amount=-1 +kerning first=65 second=8217 amount=-1 +kerning first=253 second=228 amount=-1 +kerning first=217 second=228 amount=-1 +kerning first=232 second=318 amount=-1 +kerning first=325 second=228 amount=-1 +kerning first=374 second=214 amount=-1 +kerning first=195 second=266 amount=-1 +kerning first=289 second=228 amount=-1 +kerning first=354 second=199 amount=-1 +kerning first=219 second=287 amount=-1 +kerning first=266 second=214 amount=-1 +kerning first=264 second=332 amount=-1 +kerning first=192 second=332 amount=-1 +kerning first=67 second=344 amount=-1 +kerning first=66 second=382 amount=-1 +kerning first=256 second=251 amount=-1 +kerning first=313 second=103 amount=-1 +kerning first=104 second=171 amount=-1 +kerning first=350 second=330 amount=-1 +kerning first=82 second=8217 amount=-1 +kerning first=196 second=362 amount=-1 +kerning first=209 second=171 amount=-1 +kerning first=277 second=103 amount=-1 +kerning first=194 second=214 amount=-1 +kerning first=205 second=103 amount=-1 +kerning first=317 second=8221 amount=-1 +kerning first=65 second=365 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=353 second=119 amount=-1 +kerning first=225 second=118 amount=-1 +kerning first=199 second=380 amount=-1 +kerning first=261 second=118 amount=-1 +kerning first=379 second=45 amount=-1 +kerning first=1040 second=1063 amount=-1 +kerning first=317 second=119 amount=-1 +kerning first=379 second=380 amount=-1 +kerning first=83 second=202 amount=-1 +kerning first=84 second=118 amount=-1 +kerning first=283 second=104 amount=-1 +kerning first=221 second=246 amount=-1 +kerning first=253 second=233 amount=-1 +kerning first=199 second=67 amount=-1 +kerning first=354 second=113 amount=-1 +kerning first=321 second=217 amount=-1 +kerning first=8250 second=354 amount=-1 +kerning first=369 second=118 amount=-1 +kerning first=369 second=314 amount=-1 +kerning first=333 second=314 amount=-1 +kerning first=45 second=315 amount=-1 +kerning first=369 second=8220 amount=-1 +kerning first=315 second=382 amount=-1 +kerning first=242 second=120 amount=-1 +kerning first=87 second=248 amount=-1 +kerning first=225 second=8220 amount=-1 +kerning first=82 second=264 amount=-1 +kerning first=376 second=283 amount=-1 +kerning first=261 second=8220 amount=-1 +kerning first=89 second=377 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=45 second=296 amount=-1 +kerning first=347 second=347 amount=-1 +kerning first=346 second=85 amount=-1 +kerning first=87 second=193 amount=-2 +kerning first=109 second=118 amount=-1 +kerning first=260 second=8217 amount=-1 +kerning first=66 second=332 amount=-1 +kerning first=264 second=193 amount=-1 +kerning first=1038 second=1117 amount=-1 +kerning first=260 second=85 amount=-1 +kerning first=195 second=8221 amount=-1 +kerning first=231 second=237 amount=-1 +kerning first=354 second=257 amount=-1 +kerning first=258 second=216 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=374 second=377 amount=-1 +kerning first=255 second=273 amount=-1 +kerning first=211 second=197 amount=-1 +kerning first=221 second=8249 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=70 second=197 amount=-1 +kerning first=279 second=287 amount=-1 +kerning first=120 second=250 amount=-1 +kerning first=70 second=192 amount=-1 +kerning first=321 second=289 amount=-1 +kerning first=1036 second=1077 amount=-1 +kerning first=336 second=193 amount=-1 +kerning first=44 second=8249 amount=-1 +kerning first=86 second=279 amount=-1 +kerning first=219 second=198 amount=-1 +kerning first=86 second=338 amount=-1 +kerning first=66 second=298 amount=-1 +kerning first=366 second=291 amount=-1 +kerning first=1024 second=1038 amount=-1 +kerning first=330 second=291 amount=-1 +kerning first=1060 second=1038 amount=-1 +kerning first=258 second=291 amount=-1 +kerning first=117 second=291 amount=-1 +kerning first=365 second=318 amount=-1 +kerning first=232 second=107 amount=-1 +kerning first=216 second=260 amount=-1 +kerning first=272 second=65 amount=-1 +kerning first=213 second=197 amount=-1 +kerning first=371 second=279 amount=-1 +kerning first=87 second=268 amount=-1 +kerning first=335 second=44 amount=-1 +kerning first=8220 second=271 amount=-1 +kerning first=221 second=67 amount=-1 +kerning first=288 second=260 amount=-1 +kerning first=263 second=44 amount=-1 +kerning first=199 second=72 amount=-1 +kerning first=196 second=199 amount=-1 +kerning first=376 second=113 amount=-1 +kerning first=204 second=227 amount=-1 +kerning first=268 second=199 amount=-1 +kerning first=264 second=268 amount=-1 +kerning first=8222 second=87 amount=-2 +kerning first=99 second=227 amount=-1 +kerning first=192 second=268 amount=-1 +kerning first=376 second=199 amount=-1 +kerning first=368 second=261 amount=-1 +kerning first=346 second=105 amount=-1 +kerning first=83 second=374 amount=-1 +kerning first=67 second=212 amount=-1 +kerning first=296 second=261 amount=-1 +kerning first=352 second=66 amount=-1 +kerning first=1043 second=1105 amount=-1 +kerning first=231 second=226 amount=-1 +kerning first=277 second=108 amount=-1 +kerning first=195 second=286 amount=-1 +kerning first=267 second=226 amount=-1 +kerning first=296 second=291 amount=-1 +kerning first=375 second=226 amount=-1 +kerning first=67 second=317 amount=-1 +kerning first=8216 second=271 amount=-1 +kerning first=344 second=98 amount=-1 +kerning first=356 second=44 amount=-1 +kerning first=205 second=229 amount=-1 +kerning first=264 second=122 amount=-1 +kerning first=8218 second=85 amount=-1 +kerning first=187 second=205 amount=-1 +kerning first=8250 second=220 amount=-1 +kerning first=87 second=122 amount=-1 +kerning first=119 second=261 amount=-1 +kerning first=121 second=115 amount=-1 +kerning first=8216 second=227 amount=-1 +kerning first=354 second=224 amount=-1 +kerning first=260 second=356 amount=-2 +kerning first=118 second=97 amount=-1 +kerning first=262 second=77 amount=-1 +kerning first=8250 second=378 amount=-1 +kerning first=350 second=310 amount=-1 +kerning first=371 second=339 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=380 second=45 amount=-1 +kerning first=66 second=206 amount=-1 +kerning first=236 second=45 amount=-1 +kerning first=252 second=255 amount=-1 +kerning first=221 second=243 amount=-1 +kerning first=82 second=368 amount=-1 +kerning first=350 second=325 amount=-1 +kerning first=187 second=89 amount=-1 +kerning first=344 second=45 amount=-1 +kerning first=187 second=368 amount=-1 +kerning first=75 second=255 amount=-1 +kerning first=195 second=211 amount=-1 +kerning first=323 second=287 amount=-1 +kerning first=111 second=255 amount=-1 +kerning first=8222 second=118 amount=-1 +kerning first=251 second=287 amount=-1 +kerning first=260 second=374 amount=-2 +kerning first=74 second=287 amount=-1 +kerning first=344 second=104 amount=-1 +kerning first=235 second=121 amount=-1 +kerning first=195 second=8217 amount=-1 +kerning first=199 second=202 amount=-1 +kerning first=284 second=46 amount=-1 +kerning first=66 second=109 amount=-1 +kerning first=119 second=380 amount=-1 +kerning first=368 second=380 amount=-1 +kerning first=221 second=111 amount=-1 +kerning first=311 second=248 amount=-1 +kerning first=356 second=264 amount=-1 +kerning first=311 second=233 amount=-1 +kerning first=89 second=253 amount=-1 +kerning first=220 second=350 amount=-1 +kerning first=362 second=382 amount=-1 +kerning first=256 second=350 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=268 second=69 amount=-1 +kerning first=376 second=74 amount=-1 +kerning first=364 second=350 amount=-1 +kerning first=230 second=253 amount=-1 +kerning first=86 second=339 amount=-1 +kerning first=187 second=374 amount=-1 +kerning first=107 second=269 amount=-1 +kerning first=1036 second=1057 amount=-1 +kerning first=374 second=253 amount=-1 +kerning first=376 second=243 amount=-1 +kerning first=352 second=218 amount=-1 +kerning first=356 second=269 amount=-1 +kerning first=310 second=334 amount=-1 +kerning first=260 second=338 amount=-1 +kerning first=200 second=289 amount=-1 +kerning first=236 second=289 amount=-1 +kerning first=197 second=375 amount=-1 +kerning first=344 second=289 amount=-1 +kerning first=262 second=207 amount=-1 +kerning first=197 second=212 amount=-1 +kerning first=209 second=251 amount=-1 +kerning first=83 second=70 amount=-1 +kerning first=8220 second=65 amount=-2 +kerning first=263 second=289 amount=-1 +kerning first=206 second=369 amount=-1 +kerning first=8220 second=256 amount=-2 +kerning first=65 second=369 amount=-1 +kerning first=120 second=98 amount=-1 +kerning first=352 second=370 amount=-1 +kerning first=346 second=46 amount=-1 +kerning first=66 second=201 amount=-1 +kerning first=377 second=375 amount=-1 +kerning first=311 second=263 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=257 second=8220 amount=-1 +kerning first=363 second=119 amount=-1 +kerning first=233 second=375 amount=-1 +kerning first=356 second=346 amount=-1 +kerning first=269 second=375 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=221 second=259 amount=-1 +kerning first=234 second=119 amount=-1 +kerning first=193 second=89 amount=-2 +kerning first=83 second=217 amount=-1 +kerning first=283 second=291 amount=-1 +kerning first=352 second=256 amount=-1 +kerning first=260 second=217 amount=-1 +kerning first=106 second=291 amount=-1 +kerning first=1042 second=1093 amount=-1 +kerning first=70 second=291 amount=-1 +kerning first=268 second=298 amount=-1 +kerning first=208 second=256 amount=-1 +kerning first=354 second=187 amount=-1 +kerning first=250 second=314 amount=-1 +kerning first=347 second=351 amount=-1 +kerning first=67 second=256 amount=-1 +kerning first=363 second=121 amount=-1 +kerning first=84 second=326 amount=-1 +kerning first=187 second=344 amount=-1 +kerning first=344 second=8220 amount=-1 +kerning first=354 second=263 amount=-1 +kerning first=216 second=196 amount=-1 +kerning first=119 second=277 amount=-1 +kerning first=288 second=196 amount=-1 +kerning first=221 second=199 amount=-1 +kerning first=8217 second=352 amount=-1 +kerning first=352 second=82 amount=-1 +kerning first=288 second=84 amount=-1 +kerning first=206 second=228 amount=-1 +kerning first=321 second=85 amount=-1 +kerning first=344 second=333 amount=-1 +kerning first=197 second=86 amount=-2 +kerning first=86 second=235 amount=-1 +kerning first=84 second=234 amount=-1 +kerning first=218 second=382 amount=-1 +kerning first=75 second=119 amount=-1 +kerning first=87 second=83 amount=-1 +kerning first=346 second=220 amount=-1 +kerning first=235 second=316 amount=-1 +kerning first=192 second=83 amount=-1 +kerning first=266 second=68 amount=-1 +kerning first=264 second=83 amount=-1 +kerning first=256 second=171 amount=-1 +kerning first=220 second=171 amount=-1 +kerning first=328 second=171 amount=-1 +kerning first=352 second=278 amount=-1 +kerning first=266 second=313 amount=-1 +kerning first=262 second=71 amount=-1 +kerning first=192 second=252 amount=-1 +kerning first=364 second=171 amount=-1 +kerning first=272 second=197 amount=-1 +kerning first=252 second=103 amount=-1 +kerning first=1038 second=1051 amount=-1 +kerning first=1061 second=1077 amount=-1 +kerning first=288 second=103 amount=-1 +kerning first=328 second=8221 amount=-1 +kerning first=325 second=365 amount=-1 +kerning first=88 second=71 amount=-1 +kerning first=346 second=103 amount=-1 +kerning first=67 second=214 amount=-1 +kerning first=253 second=246 amount=-1 +kerning first=344 second=100 amount=-1 +kerning first=202 second=103 amount=-1 +kerning first=8216 second=225 amount=-1 +kerning first=84 second=65 amount=-2 +kerning first=67 second=315 amount=-1 +kerning first=1036 second=1090 amount=-1 +kerning first=1102 second=1076 amount=-1 +kerning first=381 second=249 amount=-1 +kerning first=210 second=194 amount=-1 +kerning first=194 second=220 amount=-1 +kerning first=356 second=284 amount=-1 +kerning first=298 second=117 amount=-1 +kerning first=90 second=171 amount=-1 +kerning first=256 second=365 amount=-1 +kerning first=1036 second=1063 amount=-1 +kerning first=66 second=199 amount=-1 +kerning first=195 second=171 amount=-1 +kerning first=354 second=281 amount=-1 +kerning first=1059 second=1047 amount=-1 +kerning first=375 second=171 amount=-1 +kerning first=196 second=89 amount=-2 +kerning first=313 second=121 amount=-1 +kerning first=277 second=121 amount=-1 +kerning first=354 second=382 amount=-1 +kerning first=197 second=216 amount=-1 +kerning first=314 second=8221 amount=-1 +kerning first=313 second=218 amount=-1 +kerning first=275 second=118 amount=-1 +kerning first=315 second=364 amount=-1 +kerning first=79 second=260 amount=-1 +kerning first=347 second=118 amount=-1 +kerning first=269 second=228 amount=-1 +kerning first=65 second=8221 amount=-1 +kerning first=365 second=316 amount=-1 +kerning first=233 second=104 amount=-1 +kerning first=352 second=315 amount=-1 +kerning first=68 second=197 amount=-1 +kerning first=344 second=234 amount=-1 +kerning first=1059 second=1089 amount=-1 +kerning first=73 second=250 amount=-1 +kerning first=221 second=290 amount=-1 +kerning first=194 second=86 amount=-2 +kerning first=8220 second=335 amount=-1 +kerning first=315 second=87 amount=-1 +kerning first=253 second=347 amount=-1 +kerning first=8220 second=337 amount=-1 +kerning first=1060 second=1040 amount=-1 +kerning first=8217 second=240 amount=-1 +kerning first=284 second=65 amount=-1 +kerning first=221 second=380 amount=-1 +kerning first=86 second=90 amount=-1 +kerning first=258 second=84 amount=-2 +kerning first=266 second=198 amount=-1 +kerning first=67 second=192 amount=-1 +kerning first=374 second=44 amount=-1 +kerning first=8216 second=193 amount=-2 +kerning first=374 second=198 amount=-2 +kerning first=218 second=8249 amount=-1 +kerning first=90 second=363 amount=-1 +kerning first=195 second=363 amount=-1 +kerning first=199 second=204 amount=-1 +kerning first=376 second=67 amount=-1 +kerning first=363 second=291 amount=-1 +kerning first=327 second=291 amount=-1 +kerning first=268 second=67 amount=-1 +kerning first=302 second=250 amount=-1 +kerning first=255 second=291 amount=-1 +kerning first=219 second=291 amount=-1 +kerning first=8250 second=200 amount=-1 +kerning first=78 second=291 amount=-1 +kerning first=321 second=378 amount=-1 +kerning first=8222 second=364 amount=-1 +kerning first=196 second=67 amount=-1 +kerning first=89 second=113 amount=-1 +kerning first=8222 second=217 amount=-1 +kerning first=230 second=44 amount=-1 +kerning first=83 second=72 amount=-1 +kerning first=204 second=287 amount=-1 +kerning first=99 second=287 amount=-1 +kerning first=381 second=8249 amount=-1 +kerning first=192 second=367 amount=-1 +kerning first=8250 second=103 amount=-1 +kerning first=230 second=108 amount=-1 +kerning first=8217 second=260 amount=-2 +kerning first=356 second=326 amount=-1 +kerning first=256 second=286 amount=-1 +kerning first=80 second=74 amount=-1 +kerning first=221 second=74 amount=-1 +kerning first=66 second=221 amount=-1 +kerning first=171 second=221 amount=-1 +kerning first=73 second=228 amount=-1 +kerning first=356 second=262 amount=-1 +kerning first=89 second=262 amount=-1 +kerning first=326 second=8249 amount=-1 +kerning first=290 second=8249 amount=-1 +kerning first=205 second=289 amount=-1 +kerning first=362 second=8249 amount=-1 +kerning first=235 second=107 amount=-1 +kerning first=8250 second=68 amount=-1 +kerning first=108 second=8221 amount=-1 +kerning first=195 second=264 amount=-1 +kerning first=283 second=289 amount=-1 +kerning first=325 second=367 amount=-1 +kerning first=193 second=115 amount=-1 +kerning first=352 second=86 amount=-1 +kerning first=266 second=66 amount=-1 +kerning first=85 second=97 amount=-1 +kerning first=321 second=356 amount=-1 +kerning first=121 second=97 amount=-1 +kerning first=84 second=45 amount=-1 +kerning first=120 second=45 amount=-1 +kerning first=298 second=97 amount=-1 +kerning first=354 second=261 amount=-1 +kerning first=378 second=112 amount=-1 +kerning first=115 second=121 amount=-1 +kerning first=362 second=257 amount=-1 +kerning first=8250 second=202 amount=-1 +kerning first=8217 second=196 amount=-2 +kerning first=321 second=255 amount=-1 +kerning first=82 second=119 amount=-1 +kerning first=108 second=255 amount=-1 +kerning first=206 second=226 amount=-1 +kerning first=291 second=44 amount=-1 +kerning first=195 second=81 amount=-1 +kerning first=255 second=44 amount=-1 +kerning first=356 second=227 amount=-1 +kerning first=259 second=119 amount=-1 +kerning first=187 second=119 amount=-1 +kerning first=367 second=119 amount=-1 +kerning first=370 second=97 amount=-1 +kerning first=275 second=314 amount=-1 +kerning first=376 second=109 amount=-1 +kerning first=376 second=111 amount=-1 +kerning first=295 second=119 amount=-1 +kerning first=331 second=119 amount=-1 +kerning first=98 second=314 amount=-1 +kerning first=302 second=291 amount=-1 +kerning first=303 second=233 amount=-1 +kerning first=264 second=76 amount=-1 +kerning first=256 second=363 amount=-1 +kerning first=1025 second=1038 amount=-1 +kerning first=1061 second=1057 amount=-1 +kerning first=335 second=46 amount=-1 +kerning first=205 second=251 amount=-1 +kerning first=66 second=241 amount=-1 +kerning first=114 second=44 amount=-1 +kerning first=354 second=338 amount=-1 +kerning first=82 second=79 amount=-1 +kerning first=219 second=44 amount=-1 +kerning first=352 second=192 amount=-1 +kerning first=8216 second=287 amount=-1 +kerning first=70 second=289 amount=-1 +kerning first=208 second=192 amount=-1 +kerning first=106 second=289 amount=-1 +kerning first=8250 second=90 amount=-1 +kerning first=83 second=354 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=283 second=311 amount=-1 +kerning first=260 second=354 amount=-2 +kerning first=325 second=369 amount=-1 +kerning first=354 second=283 amount=-1 +kerning first=375 second=46 amount=-1 +kerning first=65 second=213 amount=-1 +kerning first=246 second=316 amount=-1 +kerning first=1050 second=1077 amount=-1 +kerning first=99 second=291 amount=-1 +kerning first=84 second=197 amount=-2 +kerning first=8217 second=198 amount=-2 +kerning first=217 second=83 amount=-1 +kerning first=354 second=259 amount=-1 +kerning first=259 second=8220 amount=-1 +kerning first=258 second=375 amount=-1 +kerning first=225 second=8217 amount=-1 +kerning first=117 second=375 amount=-1 +kerning first=196 second=87 amount=-2 +kerning first=206 second=225 amount=-1 +kerning first=263 second=103 amount=-1 +kerning first=221 second=336 amount=-1 +kerning first=8220 second=192 amount=-2 +kerning first=233 second=121 amount=-1 +kerning first=86 second=103 amount=-1 +kerning first=350 second=270 amount=-1 +kerning first=1061 second=1092 amount=-1 +kerning first=255 second=335 amount=-1 +kerning first=256 second=8217 amount=-1 +kerning first=288 second=374 amount=-1 +kerning first=328 second=8217 amount=-1 +kerning first=214 second=65 amount=-1 +kerning first=315 second=219 amount=-1 +kerning first=286 second=65 amount=-1 +kerning first=66 second=219 amount=-1 +kerning first=8216 second=113 amount=-1 +kerning first=313 second=253 amount=-1 +kerning first=258 second=353 amount=-1 +kerning first=277 second=253 amount=-1 +kerning first=67 second=284 amount=-1 +kerning first=344 second=212 amount=-1 +kerning first=374 second=121 amount=-1 +kerning first=89 second=260 amount=-2 +kerning first=1047 second=1059 amount=-1 +kerning first=194 second=121 amount=-1 +kerning first=356 second=328 amount=-1 +kerning first=254 second=318 amount=-1 +kerning first=374 second=260 amount=-2 +kerning first=266 second=196 amount=-1 +kerning first=119 second=235 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=89 second=196 amount=-2 +kerning first=232 second=316 amount=-1 +kerning first=315 second=89 amount=-1 +kerning first=86 second=242 amount=-1 +kerning first=65 second=171 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=89 second=382 amount=-1 +kerning first=205 second=117 amount=-1 +kerning first=171 second=89 amount=-1 +kerning first=374 second=196 amount=-2 +kerning first=66 second=89 amount=-1 +kerning first=206 second=171 amount=-1 +kerning first=262 second=302 amount=-1 +kerning first=356 second=99 amount=-1 +kerning first=376 second=263 amount=-1 +kerning first=256 second=213 amount=-1 +kerning first=344 second=375 amount=-1 +kerning first=290 second=221 amount=-1 +kerning first=199 second=323 amount=-1 +kerning first=371 second=242 amount=-1 +kerning first=8250 second=374 amount=-1 +kerning first=84 second=351 amount=-1 +kerning first=120 second=351 amount=-1 +kerning first=45 second=82 amount=-1 +kerning first=87 second=347 amount=-1 +kerning first=119 second=224 amount=-1 +kerning first=192 second=347 amount=-1 +kerning first=321 second=103 amount=-1 +kerning first=98 second=120 amount=-1 +kerning first=102 second=8249 amount=-1 +kerning first=256 second=266 amount=-1 +kerning first=86 second=253 amount=-1 +kerning first=66 second=8249 amount=-1 +kerning first=227 second=253 amount=-1 +kerning first=313 second=220 amount=-1 +kerning first=199 second=334 amount=-1 +kerning first=72 second=103 amount=-1 +kerning first=263 second=253 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=197 second=214 amount=-1 +kerning first=335 second=253 amount=-1 +kerning first=296 second=224 amount=-1 +kerning first=321 second=354 amount=-1 +kerning first=368 second=224 amount=-1 +kerning first=344 second=232 amount=-1 +kerning first=352 second=313 amount=-1 +kerning first=118 second=231 amount=-1 +kerning first=350 second=171 amount=-1 +kerning first=346 second=202 amount=-1 +kerning first=66 second=362 amount=-1 +kerning first=221 second=382 amount=-1 +kerning first=90 second=365 amount=-1 +kerning first=315 second=362 amount=-1 +kerning first=67 second=313 amount=-1 +kerning first=219 second=227 amount=-1 +kerning first=195 second=365 amount=-1 +kerning first=323 second=117 amount=-1 +kerning first=368 second=257 amount=-1 +kerning first=97 second=255 amount=-1 +kerning first=296 second=257 amount=-1 +kerning first=376 second=338 amount=-1 +kerning first=193 second=287 amount=-1 +kerning first=196 second=338 amount=-1 +kerning first=268 second=338 amount=-1 +kerning first=87 second=118 amount=-1 +kerning first=76 second=8221 amount=-1 +kerning first=368 second=378 amount=-1 +kerning first=192 second=118 amount=-1 +kerning first=187 second=209 amount=-1 +kerning first=228 second=118 amount=-1 +kerning first=8217 second=339 amount=-1 +kerning first=119 second=257 amount=-1 +kerning first=195 second=290 amount=-1 +kerning first=371 second=275 amount=-1 +kerning first=377 second=382 amount=-1 +kerning first=350 second=193 amount=-1 +kerning first=121 second=269 amount=-1 +kerning first=364 second=380 amount=-1 +kerning first=249 second=253 amount=-1 +kerning first=121 second=227 amount=-1 +kerning first=85 second=227 amount=-1 +kerning first=197 second=84 amount=-2 +kerning first=1061 second=1090 amount=-1 +kerning first=1025 second=1090 amount=-1 +kerning first=121 second=273 amount=-1 +kerning first=352 second=291 amount=-1 +kerning first=344 second=210 amount=-1 +kerning first=83 second=204 amount=-1 +kerning first=316 second=291 amount=-1 +kerning first=280 second=291 amount=-1 +kerning first=195 second=332 amount=-1 +kerning first=211 second=198 amount=-1 +kerning first=221 second=81 amount=-1 +kerning first=1069 second=1051 amount=-1 +kerning first=262 second=280 amount=-1 +kerning first=8250 second=352 amount=-1 +kerning first=99 second=44 amount=-1 +kerning first=262 second=73 amount=-1 +kerning first=255 second=337 amount=-1 +kerning first=211 second=256 amount=-1 +kerning first=370 second=227 amount=-1 +kerning first=119 second=378 amount=-1 +kerning first=298 second=227 amount=-1 +kerning first=277 second=44 amount=-1 +kerning first=253 second=226 amount=-1 +kerning first=217 second=226 amount=-1 +kerning first=8216 second=245 amount=-1 +kerning first=67 second=194 amount=-1 +kerning first=289 second=226 amount=-1 +kerning first=8217 second=350 amount=-1 +kerning first=352 second=84 amount=-1 +kerning first=208 second=194 amount=-1 +kerning first=374 second=240 amount=-1 +kerning first=344 second=254 amount=-1 +kerning first=356 second=119 amount=-1 +kerning first=196 second=219 amount=-1 +kerning first=291 second=108 amount=-1 +kerning first=209 second=363 amount=-1 +kerning first=8220 second=291 amount=-1 +kerning first=255 second=108 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=288 second=198 amount=-1 +kerning first=117 second=289 amount=-1 +kerning first=45 second=289 amount=-1 +kerning first=194 second=370 amount=-1 +kerning first=258 second=8220 amount=-1 +kerning first=330 second=289 amount=-1 +kerning first=119 second=279 amount=-1 +kerning first=258 second=289 amount=-1 +kerning first=275 second=104 amount=-1 +kerning first=117 second=8220 amount=-1 +kerning first=221 second=338 amount=-1 +kerning first=206 second=367 amount=-1 +kerning first=65 second=367 amount=-1 +kerning first=192 second=115 amount=-1 +kerning first=356 second=229 amount=-1 +kerning first=262 second=205 amount=-1 +kerning first=288 second=289 amount=-1 +kerning first=89 second=240 amount=-1 +kerning first=8222 second=85 amount=-1 +kerning first=65 second=83 amount=-1 +kerning first=221 second=261 amount=-1 +kerning first=73 second=45 amount=-1 +kerning first=1038 second=1060 amount=-1 +kerning first=310 second=255 amount=-1 +kerning first=352 second=194 amount=-1 +kerning first=45 second=278 amount=-1 +kerning first=286 second=45 amount=-1 +kerning first=214 second=197 amount=-1 +kerning first=353 second=112 amount=-1 +kerning first=83 second=356 amount=-1 +kerning first=74 second=225 amount=-1 +kerning first=354 second=380 amount=-1 +kerning first=256 second=81 amount=-1 +kerning first=1036 second=1092 amount=-1 +kerning first=287 second=225 amount=-1 +kerning first=194 second=218 amount=-1 +kerning first=84 second=244 amount=-1 +kerning first=221 second=109 amount=-1 +kerning first=354 second=336 amount=-1 +kerning first=323 second=225 amount=-1 +kerning first=111 second=253 amount=-1 +kerning first=104 second=8217 amount=-1 +kerning first=8216 second=267 amount=-1 +kerning first=75 second=253 amount=-1 +kerning first=253 second=248 amount=-1 +kerning first=317 second=8217 amount=-1 +kerning first=288 second=46 amount=-1 +kerning first=8217 second=245 amount=-1 +kerning first=216 second=46 amount=-1 +kerning first=193 second=364 amount=-1 +kerning first=221 second=283 amount=-1 +kerning first=268 second=382 amount=-1 +kerning first=376 second=382 amount=-1 +kerning first=66 second=71 amount=-1 +kerning first=376 second=241 amount=-1 +kerning first=66 second=318 amount=-1 +kerning first=102 second=318 amount=1 +kerning first=243 second=318 amount=-1 +kerning first=219 second=260 amount=-1 +kerning first=279 second=318 amount=-1 +kerning first=192 second=369 amount=-1 +kerning first=366 second=289 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=256 second=288 amount=-1 +kerning first=346 second=70 amount=-1 +kerning first=1038 second=1104 amount=-1 +kerning first=122 second=8249 amount=-1 +kerning first=1091 second=1076 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=82 second=99 amount=-1 +kerning first=73 second=230 amount=-1 +kerning first=83 second=323 amount=-1 +kerning first=283 second=375 amount=-1 +kerning first=370 second=346 amount=-1 +kerning first=255 second=271 amount=-1 +kerning first=106 second=375 amount=-1 +kerning first=262 second=346 amount=-1 +kerning first=8217 second=273 amount=-1 +kerning first=356 second=381 amount=-1 +kerning first=85 second=346 amount=-1 +kerning first=298 second=230 amount=-1 +kerning first=97 second=253 amount=-1 +kerning first=87 second=334 amount=-1 +kerning first=45 second=352 amount=-1 +kerning first=193 second=87 amount=-2 +kerning first=302 second=369 amount=-1 +kerning first=194 second=369 amount=-1 +kerning first=370 second=230 amount=-1 +kerning first=8250 second=72 amount=-1 +kerning first=362 second=346 amount=-1 +kerning first=310 second=253 amount=-1 +kerning first=379 second=363 amount=-1 +kerning first=375 second=122 amount=-1 +kerning first=72 second=224 amount=-1 +kerning first=218 second=346 amount=-1 +kerning first=333 second=375 amount=-1 +kerning first=369 second=375 amount=-1 +kerning first=264 second=334 amount=-1 +kerning first=8217 second=192 amount=-2 +kerning first=344 second=116 amount=-1 +kerning first=368 second=193 amount=-1 +kerning first=45 second=219 amount=-1 +kerning first=1069 second=1059 amount=-1 +kerning first=200 second=287 amount=-1 +kerning first=327 second=287 amount=-1 +kerning first=236 second=287 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=317 second=121 amount=-1 +kerning first=281 second=121 amount=-1 +kerning first=245 second=121 amount=-1 +kerning first=103 second=171 amount=-1 +kerning first=67 second=171 amount=-1 +kerning first=344 second=277 amount=-1 +kerning first=356 second=231 amount=-1 +kerning first=344 second=287 amount=-1 +kerning first=352 second=171 amount=-1 +kerning first=354 second=196 amount=-2 +kerning first=316 second=171 amount=-1 +kerning first=120 second=375 amount=-1 +kerning first=255 second=99 amount=-1 +kerning first=379 second=102 amount=-1 +kerning first=90 second=122 amount=-1 +kerning first=225 second=375 amount=-1 +kerning first=366 second=224 amount=-1 +kerning first=195 second=352 amount=-1 +kerning first=82 second=212 amount=-1 +kerning first=217 second=74 amount=-1 +kerning first=376 second=115 amount=-1 +kerning first=366 second=229 amount=-1 +kerning first=330 second=229 amount=-1 +kerning first=346 second=197 amount=-1 +kerning first=119 second=382 amount=-1 +kerning first=1047 second=1063 amount=-1 +kerning first=199 second=310 amount=-1 +kerning first=352 second=220 amount=-1 +kerning first=356 second=379 amount=-1 +kerning first=264 second=344 amount=-1 +kerning first=368 second=382 amount=-1 +kerning first=82 second=350 amount=-1 +kerning first=314 second=103 amount=-1 +kerning first=303 second=234 amount=-1 +kerning first=350 second=103 amount=-1 +kerning first=187 second=350 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=8217 second=271 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=75 second=71 amount=-1 +kerning first=45 second=68 amount=-1 +kerning first=88 second=199 amount=-1 +kerning first=196 second=290 amount=-1 +kerning first=120 second=365 amount=-1 +kerning first=206 second=103 amount=-1 +kerning first=193 second=199 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=113 second=106 amount=1 +kerning first=193 second=362 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=381 second=117 amount=-1 +kerning first=251 second=318 amount=-1 +kerning first=287 second=318 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=107 second=231 amount=-1 +kerning first=350 second=313 amount=-1 +kerning first=199 second=284 amount=-1 +kerning first=199 second=68 amount=-1 +kerning first=226 second=118 amount=-1 +kerning first=120 second=257 amount=-1 +kerning first=330 second=117 amount=-1 +kerning first=258 second=117 amount=-1 +kerning first=256 second=332 amount=-1 +kerning first=302 second=251 amount=-1 +kerning first=346 second=102 amount=-1 +kerning first=375 second=283 amount=-1 +kerning first=323 second=257 amount=-1 +kerning first=264 second=216 amount=-1 +kerning first=8218 second=89 amount=-2 +kerning first=369 second=316 amount=-1 +kerning first=45 second=291 amount=-1 +kerning first=303 second=283 amount=-1 +kerning first=327 second=250 amount=-1 +kerning first=65 second=264 amount=-1 +kerning first=86 second=233 amount=-1 +kerning first=1059 second=1076 amount=-1 +kerning first=346 second=72 amount=-1 +kerning first=45 second=194 amount=-1 +kerning first=195 second=362 amount=-1 +kerning first=371 second=233 amount=-1 +kerning first=376 second=266 amount=-1 +kerning first=289 second=314 amount=-1 +kerning first=253 second=314 amount=-1 +kerning first=8220 second=289 amount=-1 +kerning first=363 second=8220 amount=-1 +kerning first=268 second=266 amount=-1 +kerning first=112 second=314 amount=-1 +kerning first=45 second=298 amount=-1 +kerning first=196 second=217 amount=-1 +kerning first=8216 second=337 amount=-1 +kerning first=263 second=227 amount=-1 +kerning first=78 second=250 amount=-1 +kerning first=192 second=216 amount=-1 +kerning first=87 second=216 amount=-1 +kerning first=266 second=192 amount=-1 +kerning first=251 second=8220 amount=-1 +kerning first=291 second=378 amount=-1 +kerning first=255 second=378 amount=-1 +kerning first=78 second=224 amount=-1 +kerning first=89 second=192 amount=-2 +kerning first=219 second=378 amount=-1 +kerning first=110 second=8220 amount=-1 +kerning first=70 second=256 amount=-1 +kerning first=374 second=187 amount=-1 +kerning first=1046 second=1077 amount=-1 +kerning first=99 second=225 amount=-1 +kerning first=286 second=256 amount=-1 +kerning first=207 second=227 amount=-1 +kerning first=350 second=354 amount=-1 +kerning first=66 second=227 amount=-1 +kerning first=344 second=67 amount=-1 +kerning first=367 second=291 amount=-1 +kerning first=214 second=256 amount=-1 +kerning first=66 second=336 amount=-1 +kerning first=187 second=291 amount=-1 +kerning first=118 second=291 amount=-1 +kerning first=195 second=83 amount=-1 +kerning first=82 second=291 amount=-1 +kerning first=80 second=197 amount=-1 +kerning first=197 second=210 amount=-1 +kerning first=221 second=187 amount=-1 +kerning first=377 second=8249 amount=-1 +kerning first=221 second=197 amount=-2 +kerning first=1036 second=1060 amount=-1 +kerning first=221 second=100 amount=-1 +kerning first=8250 second=253 amount=-1 +kerning first=1038 second=1094 amount=-1 +kerning first=256 second=112 amount=-1 +kerning first=260 second=284 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=197 second=8249 amount=-1 +kerning first=118 second=261 amount=-1 +kerning first=218 second=378 amount=-1 +kerning first=73 second=365 amount=-1 +kerning first=305 second=8249 amount=-1 +kerning first=83 second=303 amount=-1 +kerning first=99 second=318 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=121 second=279 amount=-1 +kerning first=244 second=108 amount=-1 +kerning first=240 second=318 amount=-1 +kerning first=272 second=198 amount=-1 +kerning first=87 second=65 amount=-2 +kerning first=268 second=206 amount=-1 +kerning first=8218 second=122 amount=-1 +kerning first=8216 second=97 amount=-1 +kerning first=352 second=89 amount=-1 +kerning first=208 second=260 amount=-1 +kerning first=264 second=65 amount=-1 +kerning first=66 second=66 amount=-1 +kerning first=310 second=336 amount=-1 +kerning first=336 second=65 amount=-1 +kerning first=8250 second=218 amount=-1 +kerning first=67 second=260 amount=-1 +kerning first=1027 second=1104 amount=-1 +kerning first=89 second=339 amount=-1 +kerning first=269 second=229 amount=-1 +kerning first=352 second=260 amount=-1 +kerning first=351 second=115 amount=-1 +kerning first=8250 second=381 amount=-1 +kerning first=253 second=353 amount=-1 +kerning first=289 second=353 amount=-1 +kerning first=209 second=369 amount=-1 +kerning first=354 second=275 amount=-1 +kerning first=83 second=205 amount=-1 +kerning first=66 second=81 amount=-1 +kerning first=344 second=356 amount=-1 +kerning first=66 second=115 amount=-1 +kerning first=220 second=352 amount=-1 +kerning first=220 second=194 amount=-1 +kerning first=256 second=352 amount=-1 +kerning first=374 second=290 amount=-1 +kerning first=44 second=45 amount=-1 +kerning first=80 second=45 amount=-1 +kerning first=364 second=194 amount=-1 +kerning first=121 second=267 amount=-1 +kerning first=234 second=375 amount=-1 +kerning first=354 second=287 amount=-1 +kerning first=86 second=223 amount=-1 +kerning first=256 second=366 amount=-1 +kerning first=369 second=119 amount=-1 +kerning first=374 second=339 amount=-1 +kerning first=364 second=352 amount=-1 +kerning first=221 second=45 amount=-1 +kerning first=79 second=194 amount=-1 +kerning first=217 second=225 amount=-1 +kerning first=354 second=226 amount=-1 +kerning first=8250 second=366 amount=-1 +kerning first=374 second=211 amount=-1 +kerning first=371 second=111 amount=-1 +kerning first=86 second=81 amount=-1 +kerning first=8218 second=362 amount=-1 +kerning first=289 second=225 amount=-1 +kerning first=66 second=338 amount=-1 +kerning first=325 second=225 amount=-1 +kerning first=89 second=290 amount=-1 +kerning first=89 second=211 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=76 second=255 amount=-1 +kerning first=194 second=290 amount=-1 +kerning first=112 second=255 amount=-1 +kerning first=204 second=97 amount=-1 +kerning first=266 second=290 amount=-1 +kerning first=266 second=211 amount=-1 +kerning first=356 second=110 amount=-1 +kerning first=87 second=212 amount=-1 +kerning first=194 second=211 amount=-1 +kerning first=8222 second=84 amount=-2 +kerning first=375 second=273 amount=-1 +kerning first=286 second=46 amount=-1 +kerning first=197 second=338 amount=-1 +kerning first=354 second=324 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=86 second=193 amount=-2 +kerning first=87 second=324 amount=-1 +kerning first=66 second=257 amount=-1 +kerning first=102 second=8220 amount=1 +kerning first=269 second=289 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=82 second=370 amount=-1 +kerning first=377 second=289 amount=-1 +kerning first=89 second=241 amount=-1 +kerning first=223 second=255 amount=-1 +kerning first=84 second=287 amount=-1 +kerning first=369 second=287 amount=-1 +kerning first=1050 second=1108 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=315 second=218 amount=-1 +kerning first=376 second=232 amount=-1 +kerning first=1059 second=1092 amount=-1 +kerning first=206 second=365 amount=-1 +kerning first=193 second=346 amount=-1 +kerning first=364 second=224 amount=-1 +kerning first=44 second=8217 amount=-1 +kerning first=8217 second=232 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=286 second=86 amount=-1 +kerning first=118 second=380 amount=-1 +kerning first=352 second=201 amount=-1 +kerning first=275 second=46 amount=-1 +kerning first=87 second=225 amount=-1 +kerning first=257 second=8217 amount=-1 +kerning first=365 second=8217 amount=-1 +kerning first=66 second=266 amount=-1 +kerning first=104 second=8220 amount=-1 +kerning first=197 second=347 amount=-1 +kerning first=8220 second=260 amount=-2 +kerning first=187 second=70 amount=-1 +kerning first=67 second=201 amount=-1 +kerning first=356 second=350 amount=-1 +kerning first=364 second=122 amount=-1 +kerning first=290 second=87 amount=-1 +kerning first=356 second=226 amount=-1 +kerning first=220 second=122 amount=-1 +kerning first=78 second=289 amount=-1 +kerning first=366 second=259 amount=-1 +kerning first=330 second=259 amount=-1 +kerning first=250 second=375 amount=-1 +kerning first=255 second=289 amount=-1 +kerning first=187 second=75 amount=-1 +kerning first=66 second=218 amount=-1 +kerning first=268 second=75 amount=-1 +kerning first=317 second=370 amount=-1 +kerning first=219 second=289 amount=-1 +kerning first=8217 second=242 amount=-1 +kerning first=327 second=289 amount=-1 +kerning first=363 second=289 amount=-1 +kerning first=205 second=369 amount=-1 +kerning first=327 second=251 amount=-1 +kerning first=78 second=251 amount=-1 +kerning first=337 second=255 amount=-1 +kerning first=82 second=284 amount=-1 +kerning first=221 second=286 amount=-1 +kerning first=344 second=316 amount=-1 +kerning first=1027 second=1072 amount=-1 +kerning first=119 second=245 amount=-1 +kerning first=78 second=171 amount=-1 +kerning first=256 second=121 amount=-1 +kerning first=255 second=171 amount=-1 +kerning first=219 second=171 amount=-1 +kerning first=327 second=171 amount=-1 +kerning first=45 second=80 amount=-1 +kerning first=291 second=171 amount=-1 +kerning first=84 second=277 amount=-1 +kerning first=209 second=117 amount=-1 +kerning first=8220 second=229 amount=-1 +kerning first=352 second=323 amount=-1 +kerning first=8250 second=330 amount=-1 +kerning first=199 second=196 amount=-1 +kerning first=66 second=217 amount=-1 +kerning first=356 second=100 amount=-1 +kerning first=120 second=228 amount=-1 +kerning first=101 second=314 amount=-1 +kerning first=310 second=214 amount=-1 +kerning first=226 second=119 amount=-1 +kerning first=1059 second=1093 amount=-1 +kerning first=82 second=221 amount=-1 +kerning first=84 second=228 amount=-1 +kerning first=315 second=217 amount=-1 +kerning first=187 second=221 amount=-1 +kerning first=8220 second=259 amount=-1 +kerning first=187 second=379 amount=-1 +kerning first=8222 second=354 amount=-2 +kerning first=242 second=314 amount=-1 +kerning first=106 second=8249 amount=-1 +kerning first=108 second=253 amount=-1 +kerning first=86 second=263 amount=-1 +kerning first=379 second=382 amount=-1 +kerning first=266 second=330 amount=-1 +kerning first=321 second=253 amount=-1 +kerning first=260 second=363 amount=-1 +kerning first=371 second=263 amount=-1 +kerning first=296 second=363 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=87 second=246 amount=-1 +kerning first=325 second=103 amount=-1 +kerning first=70 second=8249 amount=-1 +kerning first=217 second=103 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=253 second=103 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=374 second=281 amount=-1 +kerning first=251 second=118 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=194 second=89 amount=-2 +kerning first=8250 second=193 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=199 second=382 amount=-1 +kerning first=354 second=235 amount=-1 +kerning first=220 second=83 amount=-1 +kerning first=335 second=120 amount=-1 +kerning first=258 second=8249 amount=-1 +kerning first=304 second=261 amount=-1 +kerning first=376 second=336 amount=-1 +kerning first=253 second=234 amount=-1 +kerning first=256 second=83 amount=-1 +kerning first=330 second=8249 amount=-1 +kerning first=314 second=255 amount=-1 +kerning first=364 second=83 amount=-1 +kerning first=8217 second=281 amount=-1 +kerning first=66 second=315 amount=-1 +kerning first=235 second=44 amount=-1 +kerning first=101 second=255 amount=-1 +kerning first=374 second=232 amount=-1 +kerning first=86 second=262 amount=-1 +kerning first=287 second=97 amount=-1 +kerning first=65 second=255 amount=-1 +kerning first=304 second=227 amount=-1 +kerning first=354 second=197 amount=-2 +kerning first=323 second=97 amount=-1 +kerning first=344 second=366 amount=-1 +kerning first=279 second=255 amount=-1 +kerning first=356 second=79 amount=-1 +kerning first=99 second=118 amount=-1 +kerning first=346 second=193 amount=-1 +kerning first=337 second=318 amount=-1 +kerning first=218 second=257 amount=-1 +kerning first=217 second=65 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=67 second=338 amount=-1 +kerning first=119 second=244 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=374 second=378 amount=-1 +kerning first=219 second=192 amount=-1 +kerning first=376 second=350 amount=-1 +kerning first=346 second=302 amount=-1 +kerning first=266 second=378 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=70 second=198 amount=-1 +kerning first=264 second=274 amount=-1 +kerning first=284 second=221 amount=-1 +kerning first=377 second=250 amount=-1 +kerning first=266 second=298 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=266 second=280 amount=-1 +kerning first=356 second=291 amount=-1 +kerning first=374 second=90 amount=-1 +kerning first=284 second=291 amount=-1 +kerning first=199 second=213 amount=-1 +kerning first=71 second=221 amount=-1 +kerning first=256 second=361 amount=-1 +kerning first=119 second=267 amount=-1 +kerning first=84 second=256 amount=-2 +kerning first=8217 second=194 amount=-2 +kerning first=71 second=291 amount=-1 +kerning first=89 second=378 amount=-1 +kerning first=258 second=210 amount=-1 +kerning first=374 second=242 amount=-1 +kerning first=375 second=233 amount=-1 +kerning first=335 second=316 amount=-1 +kerning first=311 second=335 amount=-1 +kerning first=207 second=257 amount=-1 +kerning first=171 second=87 amount=-1 +kerning first=354 second=45 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=286 second=374 amount=-1 +kerning first=344 second=268 amount=-1 +kerning first=195 second=112 amount=-1 +kerning first=86 second=224 amount=-1 +kerning first=121 second=240 amount=-1 +kerning first=344 second=219 amount=-1 +kerning first=67 second=289 amount=-1 +kerning first=280 second=289 amount=-1 +kerning first=316 second=289 amount=-1 +kerning first=263 second=224 amount=-1 +kerning first=1054 second=1040 amount=-1 +kerning first=352 second=289 amount=-1 +kerning first=193 second=367 amount=-1 +kerning first=269 second=108 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=233 second=108 amount=-1 +kerning first=83 second=8249 amount=-1 +kerning first=103 second=229 amount=-1 +kerning first=77 second=257 amount=-1 +kerning first=375 second=243 amount=-1 +kerning first=250 second=287 amount=-1 +kerning first=65 second=353 amount=-1 +kerning first=303 second=243 amount=-1 +kerning first=221 second=324 amount=-1 +kerning first=73 second=287 amount=-1 +kerning first=221 second=275 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=350 second=304 amount=-1 +kerning first=236 second=375 amount=-1 +kerning first=221 second=226 amount=-1 +kerning first=255 second=339 amount=-1 +kerning first=196 second=336 amount=-1 +kerning first=268 second=336 amount=-1 +kerning first=105 second=45 amount=-1 +kerning first=314 second=253 amount=-1 +kerning first=260 second=45 amount=-1 +kerning first=66 second=97 amount=-1 +kerning first=207 second=97 amount=-1 +kerning first=286 second=356 amount=-1 +kerning first=352 second=80 amount=-1 +kerning first=347 second=353 amount=-1 +kerning first=119 second=45 amount=-1 +kerning first=119 second=275 amount=-1 +kerning first=89 second=289 amount=-1 +kerning first=230 second=289 amount=-1 +kerning first=368 second=45 amount=-1 +kerning first=266 second=289 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=376 second=324 amount=-1 +kerning first=374 second=289 amount=-1 +kerning first=302 second=289 amount=-1 +kerning first=275 second=316 amount=-1 +kerning first=250 second=255 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=8250 second=120 amount=-1 +kerning first=256 second=370 amount=-1 +kerning first=197 second=211 amount=-1 +kerning first=67 second=80 amount=-1 +kerning first=1036 second=1105 amount=-1 +kerning first=266 second=193 amount=-1 +kerning first=75 second=290 amount=-1 +kerning first=8216 second=230 amount=-1 +kerning first=1027 second=1095 amount=-1 +kerning first=374 second=193 amount=-2 +kerning first=193 second=220 amount=-1 +kerning first=67 second=378 amount=-1 +kerning first=253 second=273 amount=-1 +kerning first=89 second=193 amount=-2 +kerning first=66 second=226 amount=-1 +kerning first=8217 second=291 amount=-1 +kerning first=86 second=192 amount=-2 +kerning first=269 second=307 amount=-1 +kerning first=221 second=257 amount=-1 +kerning first=251 second=119 amount=-1 +kerning first=375 second=314 amount=-1 +kerning first=339 second=314 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=267 second=314 amount=-1 +kerning first=262 second=284 amount=-1 +kerning first=262 second=209 amount=-1 +kerning first=231 second=314 amount=-1 +kerning first=336 second=46 amount=-1 +kerning first=376 second=346 amount=-1 +kerning first=260 second=253 amount=-1 +kerning first=268 second=346 amount=-1 +kerning first=204 second=230 amount=-1 +kerning first=196 second=346 amount=-1 +kerning first=99 second=230 amount=-1 +kerning first=107 second=101 amount=-1 +kerning first=262 second=70 amount=-1 +kerning first=275 second=375 amount=-1 +kerning first=220 second=380 amount=-1 +kerning first=98 second=375 amount=-1 +kerning first=266 second=81 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=356 second=101 amount=-1 +kerning first=264 second=296 amount=-1 +kerning first=332 second=196 amount=-1 +kerning first=89 second=81 amount=-1 +kerning first=66 second=354 amount=-1 +kerning first=194 second=81 amount=-1 +kerning first=221 second=235 amount=-1 +kerning first=368 second=196 amount=-1 +kerning first=171 second=354 amount=-1 +kerning first=66 second=75 amount=-1 +kerning first=315 second=354 amount=-1 +kerning first=262 second=288 amount=-1 +kerning first=352 second=219 amount=-1 +kerning first=374 second=81 amount=-1 +kerning first=283 second=316 amount=-1 +kerning first=89 second=171 amount=-1 +kerning first=194 second=171 amount=-1 +kerning first=266 second=171 amount=-1 +kerning first=76 second=374 amount=-1 +kerning first=1060 second=1051 amount=-1 +kerning first=339 second=121 amount=-1 +kerning first=371 second=271 amount=-1 +kerning first=374 second=171 amount=-1 +kerning first=267 second=121 amount=-1 +kerning first=256 second=252 amount=-1 +kerning first=196 second=115 amount=-1 +kerning first=231 second=121 amount=-1 +kerning first=199 second=197 amount=-1 +kerning first=195 second=121 amount=-1 +kerning first=121 second=231 amount=-1 +kerning first=217 second=352 amount=-1 +kerning first=83 second=196 amount=-1 +kerning first=90 second=121 amount=-1 +kerning first=362 second=261 amount=-1 +kerning first=354 second=115 amount=-1 +kerning first=289 second=122 amount=-1 +kerning first=86 second=214 amount=-1 +kerning first=76 second=122 amount=-1 +kerning first=82 second=213 amount=-1 +kerning first=344 second=335 amount=-1 +kerning first=224 second=253 amount=-1 +kerning first=230 second=311 amount=-1 +kerning first=195 second=252 amount=-1 +kerning first=350 second=65 amount=-1 +kerning first=241 second=171 amount=-1 +kerning first=192 second=362 amount=-1 +kerning first=222 second=260 amount=-1 +kerning first=221 second=333 amount=-1 +kerning first=88 second=249 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=45 second=220 amount=-1 +kerning first=45 second=260 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=45 second=86 amount=-1 +kerning first=199 second=266 amount=-1 +kerning first=366 second=260 amount=-1 +kerning first=197 second=362 amount=-1 +kerning first=120 second=347 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=75 second=214 amount=-1 +kerning first=46 second=8221 amount=-1 +kerning first=264 second=103 amount=-1 +kerning first=82 second=8221 amount=-1 +kerning first=295 second=8221 amount=-1 +kerning first=192 second=103 amount=-1 +kerning first=331 second=8221 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=260 second=351 amount=-1 +kerning first=361 second=8221 amount=-1 +kerning first=259 second=8221 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=259 second=118 amount=-1 +kerning first=255 second=242 amount=-1 +kerning first=89 second=8250 amount=-1 +kerning first=258 second=220 amount=-1 +kerning first=256 second=79 amount=-1 +kerning first=258 second=67 amount=-1 +kerning first=90 second=380 amount=-1 +kerning first=8220 second=339 amount=-1 +kerning first=8250 second=382 amount=-1 +kerning first=1046 second=1089 amount=-1 +kerning first=233 second=107 amount=-1 +kerning first=255 second=232 amount=-1 +kerning first=1038 second=1054 amount=-1 +kerning first=367 second=8221 amount=-1 +kerning first=1046 second=1058 amount=-1 +kerning first=8217 second=193 amount=-2 +kerning first=375 second=380 amount=-1 +kerning first=284 second=89 amount=-1 +kerning first=192 second=264 amount=-1 +kerning first=1027 second=1033 amount=-1 +kerning first=87 second=264 amount=-1 +kerning first=1043 second=1040 amount=-1 +kerning first=352 second=317 amount=-1 +kerning first=352 second=298 amount=-1 +kerning first=376 second=248 amount=-1 +kerning first=193 second=118 amount=-1 +kerning first=87 second=234 amount=-1 +kerning first=229 second=118 amount=-1 +kerning first=350 second=305 amount=-1 +kerning first=196 second=354 amount=-2 +kerning first=346 second=120 amount=-1 +kerning first=88 second=118 amount=-1 +kerning first=1040 second=1098 amount=-1 +kerning first=356 second=331 amount=-1 +kerning first=45 second=198 amount=-1 +kerning first=216 second=192 amount=-1 +kerning first=81 second=198 amount=-1 +kerning first=288 second=192 amount=-1 +kerning first=107 second=279 amount=-1 +kerning first=117 second=314 amount=-1 +kerning first=222 second=198 amount=-1 +kerning first=330 second=250 amount=-1 +kerning first=346 second=303 amount=-1 +kerning first=84 second=216 amount=-1 +kerning first=350 second=370 amount=-1 +kerning first=347 second=287 amount=-1 +kerning first=87 second=256 amount=-2 +kerning first=346 second=44 amount=-1 +kerning first=275 second=287 amount=-1 +kerning first=196 second=84 amount=-2 +kerning first=304 second=226 amount=-1 +kerning first=203 second=287 amount=-1 +kerning first=376 second=226 amount=-1 +kerning first=193 second=368 amount=-1 +kerning first=353 second=291 amount=-1 +kerning first=317 second=291 amount=-1 +kerning first=45 second=368 amount=-1 +kerning first=281 second=291 amount=-1 +kerning first=209 second=291 amount=-1 +kerning first=65 second=266 amount=-1 +kerning first=192 second=365 amount=-1 +kerning first=220 second=74 amount=-1 +kerning first=258 second=89 amount=-2 +kerning first=199 second=45 amount=-1 +kerning first=310 second=262 amount=-1 +kerning first=364 second=74 amount=-1 +kerning first=262 second=350 amount=-1 +kerning first=1047 second=1078 amount=-1 +kerning first=218 second=260 amount=-1 +kerning first=8216 second=99 amount=-1 +kerning first=344 second=269 amount=-1 +kerning first=336 second=256 amount=-1 +kerning first=209 second=261 amount=-1 +kerning first=84 second=268 amount=-1 +kerning first=350 second=112 amount=-1 +kerning first=264 second=256 amount=-1 +kerning first=366 second=198 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=264 second=286 amount=-1 +kerning first=356 second=279 amount=-1 +kerning first=346 second=205 amount=-1 +kerning first=255 second=8249 amount=-1 +kerning first=219 second=8249 amount=-1 +kerning first=269 second=257 amount=-1 +kerning first=8220 second=99 amount=-1 +kerning first=327 second=8249 amount=-1 +kerning first=291 second=8249 amount=-1 +kerning first=197 second=289 amount=-1 +kerning first=45 second=89 amount=-1 +kerning first=370 second=350 amount=-1 +kerning first=366 second=228 amount=-1 +kerning first=330 second=228 amount=-1 +kerning first=87 second=286 amount=-1 +kerning first=77 second=367 amount=-1 +kerning first=117 second=108 amount=-1 +kerning first=192 second=286 amount=-1 +kerning first=65 second=251 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=356 second=212 amount=-1 +kerning first=377 second=251 amount=-1 +kerning first=192 second=374 amount=-2 +kerning first=82 second=332 amount=-1 +kerning first=220 second=261 amount=-1 +kerning first=353 second=121 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=269 second=227 amount=-1 +kerning first=364 second=261 amount=-1 +kerning first=77 second=226 amount=-1 +kerning first=321 second=381 amount=-1 +kerning first=295 second=8220 amount=-1 +kerning first=344 second=108 amount=-1 +kerning first=367 second=8220 amount=-1 +kerning first=218 second=226 amount=-1 +kerning first=66 second=367 amount=-1 +kerning first=362 second=226 amount=-1 +kerning first=262 second=192 amount=-1 +kerning first=207 second=367 amount=-1 +kerning first=46 second=8220 amount=-1 +kerning first=99 second=119 amount=-1 +kerning first=82 second=8220 amount=-1 +kerning first=221 second=115 amount=-1 +kerning first=84 second=335 amount=-1 +kerning first=374 second=233 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=277 second=311 amount=-1 +kerning first=282 second=289 amount=-1 +kerning first=67 second=211 amount=-1 +kerning first=108 second=45 amount=-1 +kerning first=218 second=97 amount=-1 +kerning first=87 second=353 amount=-1 +kerning first=374 second=223 amount=-1 +kerning first=362 second=97 amount=-1 +kerning first=45 second=77 amount=-1 +kerning first=347 second=255 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=275 second=255 amount=-1 +kerning first=68 second=194 amount=-1 +kerning first=264 second=112 amount=-1 +kerning first=98 second=255 amount=-1 +kerning first=221 second=244 amount=-1 +kerning first=192 second=112 amount=-1 +kerning first=89 second=223 amount=-1 +kerning first=253 second=243 amount=-1 +kerning first=8222 second=219 amount=-1 +kerning first=66 second=377 amount=-1 +kerning first=346 second=198 amount=-1 +kerning first=192 second=352 amount=-1 +kerning first=226 second=8220 amount=-1 +kerning first=266 second=202 amount=-1 +kerning first=253 second=46 amount=-1 +kerning first=264 second=352 amount=-1 +kerning first=289 second=46 amount=-1 +kerning first=65 second=362 amount=-1 +kerning first=45 second=76 amount=-1 +kerning first=87 second=352 amount=-1 +kerning first=370 second=382 amount=-1 +kerning first=83 second=197 amount=-1 +kerning first=332 second=197 amount=-1 +kerning first=350 second=362 amount=-1 +kerning first=1046 second=1059 amount=-1 +kerning first=88 second=336 amount=-1 +kerning first=221 second=266 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=368 second=197 amount=-1 +kerning first=193 second=336 amount=-1 +kerning first=73 second=225 amount=-1 +kerning first=317 second=380 amount=-1 +kerning first=84 second=334 amount=-1 +kerning first=1027 second=1076 amount=-1 +kerning first=235 second=253 amount=-1 +kerning first=262 second=200 amount=-1 +kerning first=307 second=253 amount=-1 +kerning first=108 second=8220 amount=-1 +kerning first=217 second=46 amount=-1 +kerning first=379 second=253 amount=-1 +kerning first=344 second=86 amount=-1 +kerning first=269 second=225 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=70 second=260 amount=-1 +kerning first=356 second=213 amount=-1 +kerning first=74 second=230 amount=-1 +kerning first=323 second=230 amount=-1 +kerning first=87 second=103 amount=-1 +kerning first=228 second=375 amount=-1 +kerning first=287 second=230 amount=-1 +kerning first=195 second=370 amount=-1 +kerning first=266 second=76 amount=-1 +kerning first=193 second=84 amount=-2 +kerning first=344 second=288 amount=-1 +kerning first=121 second=318 amount=-1 +kerning first=87 second=375 amount=-1 +kerning first=66 second=346 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=338 second=289 amount=-1 +kerning first=211 second=260 amount=-1 +kerning first=313 second=289 amount=-1 +kerning first=311 second=277 amount=-1 +kerning first=45 second=317 amount=-1 +kerning first=213 second=196 amount=-1 +kerning first=193 second=218 amount=-1 +kerning first=197 second=219 amount=-1 +kerning first=1075 second=1113 amount=-1 +kerning first=85 second=196 amount=-1 +kerning first=120 second=117 amount=-1 +kerning first=352 second=68 amount=-1 +kerning first=8217 second=289 amount=-1 +kerning first=187 second=203 amount=-1 +kerning first=84 second=259 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=193 second=217 amount=-1 +kerning first=314 second=121 amount=-1 +kerning first=242 second=121 amount=-1 +kerning first=118 second=263 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=87 second=277 amount=-1 +kerning first=65 second=121 amount=-1 +kerning first=310 second=369 amount=-1 +kerning first=317 second=379 amount=-1 +kerning first=356 second=288 amount=-1 +kerning first=197 second=89 amount=-2 +kerning first=119 second=263 amount=-1 +kerning first=346 second=196 amount=-1 +kerning first=205 second=224 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=86 second=281 amount=-1 +kerning first=324 second=171 amount=-1 +kerning first=66 second=106 amount=-1 +kerning first=197 second=220 amount=-1 +kerning first=371 second=281 amount=-1 +kerning first=321 second=382 amount=-1 +kerning first=376 second=333 amount=-1 +kerning first=352 second=302 amount=-1 +kerning first=8216 second=240 amount=-1 +kerning first=194 second=71 amount=-1 +kerning first=264 second=287 amount=-1 +kerning first=1091 second=1103 amount=-1 +kerning first=347 second=103 amount=-1 +kerning first=89 second=71 amount=-1 +kerning first=192 second=287 amount=-1 +kerning first=275 second=103 amount=-1 +kerning first=87 second=287 amount=-1 +kerning first=203 second=103 amount=-1 +kerning first=117 second=316 amount=-1 +kerning first=376 second=235 amount=-1 +kerning first=258 second=365 amount=-1 +kerning first=67 second=330 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=75 second=171 amount=-1 +kerning first=1027 second=1086 amount=-1 +kerning first=374 second=71 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=266 second=71 amount=-1 +kerning first=1058 second=1078 amount=-1 +kerning first=326 second=118 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=197 second=67 amount=-1 +kerning first=1043 second=1093 amount=-1 +kerning first=352 second=8249 amount=-1 +kerning first=228 second=255 amount=-1 +kerning first=316 second=8249 amount=-1 +kerning first=192 second=255 amount=-1 +kerning first=84 second=269 amount=-1 +kerning first=362 second=227 amount=-1 +kerning first=87 second=255 amount=-1 +kerning first=213 second=44 amount=-1 +kerning first=258 second=338 amount=-1 +kerning first=304 second=257 amount=-1 +kerning first=103 second=8249 amount=-1 +kerning first=67 second=8249 amount=-1 +kerning first=376 second=257 amount=-1 +kerning first=77 second=229 amount=-1 +kerning first=8220 second=242 amount=-1 +kerning first=344 second=85 amount=-1 +kerning first=113 second=118 amount=-1 +kerning first=354 second=244 amount=-1 +kerning first=311 second=234 amount=-1 +kerning first=258 second=251 amount=-1 +kerning first=303 second=273 amount=-1 +kerning first=263 second=303 amount=-1 +kerning first=346 second=118 amount=-1 +kerning first=350 second=274 amount=-1 +kerning first=262 second=199 amount=-1 +kerning first=283 second=108 amount=-1 +kerning first=118 second=279 amount=-1 +kerning first=216 second=193 amount=-1 +kerning first=262 second=79 amount=-1 +kerning first=356 second=332 amount=-1 +kerning first=197 second=8220 amount=-1 +kerning first=221 second=245 amount=-1 +kerning first=65 second=361 amount=-1 +kerning first=330 second=251 amount=-1 +kerning first=344 second=107 amount=-1 +kerning first=288 second=193 amount=-1 +kerning first=82 second=279 amount=-1 +kerning first=206 second=361 amount=-1 +kerning first=376 second=267 amount=-1 +kerning first=375 second=8249 amount=-1 +kerning first=8217 second=224 amount=-1 +kerning first=218 second=227 amount=-1 +kerning first=77 second=227 amount=-1 +kerning first=118 second=233 amount=-1 +kerning first=344 second=216 amount=-1 +kerning first=193 second=119 amount=-1 +kerning first=229 second=119 amount=-1 +kerning first=88 second=119 amount=-1 +kerning first=255 second=233 amount=-1 +kerning first=87 second=113 amount=-1 +kerning first=234 second=291 amount=-1 +kerning first=66 second=84 amount=-1 +kerning first=198 second=291 amount=-1 +kerning first=119 second=227 amount=-1 +kerning first=307 second=8249 amount=-1 +kerning first=281 second=314 amount=-1 +kerning first=245 second=314 amount=-1 +kerning first=217 second=198 amount=-1 +kerning first=192 second=366 amount=-1 +kerning first=8222 second=218 amount=-1 +kerning first=314 second=291 amount=-1 +kerning first=86 second=351 amount=-1 +kerning first=8250 second=206 amount=-1 +kerning first=206 second=291 amount=-1 +kerning first=101 second=291 amount=-1 +kerning first=65 second=291 amount=-1 +kerning first=193 second=354 amount=-2 +kerning first=243 second=44 amount=-1 +kerning first=121 second=101 amount=-1 +kerning first=263 second=287 amount=-1 +kerning first=194 second=268 amount=-1 +kerning first=45 second=325 amount=-1 +kerning first=75 second=210 amount=-1 +kerning first=89 second=268 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=8250 second=201 amount=-1 +kerning first=376 second=244 amount=-1 +kerning first=350 second=296 amount=-1 +kerning first=368 second=227 amount=-1 +kerning first=296 second=227 amount=-1 +kerning first=374 second=268 amount=-1 +kerning first=221 second=337 amount=-1 +kerning first=85 second=257 amount=-1 +kerning first=266 second=268 amount=-1 +kerning first=204 second=261 amount=-1 +kerning first=356 second=199 amount=-1 +kerning first=99 second=261 amount=-1 +kerning first=255 second=228 amount=-1 +kerning first=219 second=228 amount=-1 +kerning first=66 second=324 amount=-1 +kerning first=327 second=228 amount=-1 +kerning first=83 second=66 amount=-1 +kerning first=66 second=284 amount=-1 +kerning first=192 second=361 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=369 second=108 amount=-1 +kerning first=187 second=83 amount=-1 +kerning first=376 second=377 amount=-1 +kerning first=262 second=336 amount=-1 +kerning first=1042 second=1078 amount=-1 +kerning first=371 second=245 amount=-1 +kerning first=67 second=77 amount=-1 +kerning first=374 second=263 amount=-1 +kerning first=197 second=286 amount=-1 +kerning first=230 second=107 amount=-1 +kerning first=199 second=262 amount=-1 +kerning first=256 second=221 amount=-2 +kerning first=107 second=337 amount=-1 +kerning first=82 second=318 amount=-1 +kerning first=241 second=8249 amount=-1 +kerning first=354 second=223 amount=-1 +kerning first=8216 second=231 amount=-1 +kerning first=269 second=237 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=65 second=370 amount=-1 +kerning first=220 second=65 amount=-1 +kerning first=252 second=289 amount=-1 +kerning first=364 second=65 amount=-1 +kerning first=272 second=260 amount=-1 +kerning first=310 second=45 amount=-1 +kerning first=346 second=45 amount=-1 +kerning first=264 second=77 amount=-1 +kerning first=307 second=45 amount=-1 +kerning first=365 second=289 amount=-1 +kerning first=347 second=112 amount=-1 +kerning first=382 second=45 amount=-1 +kerning first=344 second=255 amount=-1 +kerning first=236 second=255 amount=-1 +kerning first=258 second=374 amount=-2 +kerning first=374 second=351 amount=-1 +kerning first=86 second=324 amount=-1 +kerning first=45 second=374 amount=-1 +kerning first=1040 second=1058 amount=-1 +kerning first=221 second=97 amount=-1 +kerning first=187 second=323 amount=-1 +kerning first=233 second=46 amount=-1 +kerning first=75 second=8249 amount=-1 +kerning first=269 second=46 amount=-1 +kerning first=67 second=193 amount=-1 +kerning first=121 second=257 amount=-1 +kerning first=221 second=288 amount=-1 +kerning first=370 second=257 amount=-1 +kerning first=298 second=257 amount=-1 +kerning first=187 second=260 amount=-1 +kerning first=311 second=273 amount=-1 +kerning first=213 second=192 amount=-1 +kerning first=1059 second=1105 amount=-1 +kerning first=208 second=193 amount=-1 +kerning first=302 second=224 amount=-1 +kerning first=352 second=193 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=187 second=78 amount=-1 +kerning first=8250 second=280 amount=-1 +kerning first=260 second=71 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=187 second=122 amount=-1 +kerning first=118 second=122 amount=-1 +kerning first=8250 second=84 amount=-1 +kerning first=1046 second=1090 amount=-1 +kerning first=374 second=224 amount=-1 +kerning first=112 second=375 amount=-1 +kerning first=366 second=46 amount=-1 +kerning first=268 second=288 amount=-1 +kerning first=46 second=8249 amount=-1 +kerning first=374 second=336 amount=-1 +kerning first=323 second=103 amount=-1 +kerning first=196 second=288 amount=-1 +kerning first=1059 second=1075 amount=-1 +kerning first=66 second=368 amount=-1 +kerning first=67 second=81 amount=-1 +kerning first=76 second=287 amount=-1 +kerning first=205 second=259 amount=-1 +kerning first=269 second=316 amount=-1 +kerning first=233 second=316 amount=-1 +kerning first=251 second=289 amount=-1 +kerning first=354 second=346 amount=-1 +kerning first=370 second=352 amount=-1 +kerning first=325 second=287 amount=-1 +kerning first=217 second=287 amount=-1 +kerning first=253 second=287 amount=-1 +kerning first=73 second=117 amount=-1 +kerning first=87 second=194 amount=-2 +kerning first=110 second=8217 amount=-1 +kerning first=251 second=8217 amount=-1 +kerning first=197 second=370 amount=-1 +kerning first=264 second=194 amount=-1 +kerning first=336 second=194 amount=-1 +kerning first=344 second=242 amount=-1 +kerning first=66 second=328 amount=-1 +kerning first=194 second=219 amount=-1 +kerning first=86 second=290 amount=-1 +kerning first=99 second=105 amount=-1 +kerning first=291 second=351 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=346 second=80 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=376 second=288 amount=-1 +kerning first=105 second=253 amount=-1 +kerning first=260 second=115 amount=-1 +kerning first=242 second=255 amount=-1 +kerning first=112 second=121 amount=-1 +kerning first=258 second=369 amount=-1 +kerning first=76 second=121 amount=-1 +kerning first=73 second=229 amount=-1 +kerning first=362 second=196 amount=-1 +kerning first=246 second=253 amount=-1 +kerning first=314 second=171 amount=-1 +kerning first=354 second=253 amount=-1 +kerning first=344 second=334 amount=-1 +kerning first=353 second=353 amount=-1 +kerning first=195 second=212 amount=-1 +kerning first=218 second=196 amount=-1 +kerning first=290 second=196 amount=-1 +kerning first=1059 second=1100 amount=-1 +kerning first=223 second=318 amount=-1 +kerning first=375 second=100 amount=-1 +kerning first=103 second=228 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=367 second=318 amount=-1 +kerning first=221 second=214 amount=-1 +kerning first=354 second=267 amount=-1 +kerning first=8250 second=344 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=326 second=8221 amount=-1 +kerning first=260 second=336 amount=-1 +kerning first=377 second=365 amount=-1 +kerning first=311 second=113 amount=-1 +kerning first=250 second=103 amount=-1 +kerning first=66 second=249 amount=-1 +kerning first=286 second=103 amount=-1 +kerning first=236 second=171 amount=-1 +kerning first=82 second=362 amount=-1 +kerning first=344 second=171 amount=-1 +kerning first=303 second=100 amount=-1 +kerning first=73 second=103 amount=-1 +kerning first=197 second=365 amount=-1 +kerning first=380 second=171 amount=-1 +kerning first=113 second=119 amount=-1 +kerning first=8220 second=113 amount=-1 +kerning first=119 second=232 amount=-1 +kerning first=8218 second=370 amount=-1 +kerning first=234 second=118 amount=-1 +kerning first=121 second=380 amount=-1 +kerning first=85 second=380 amount=-1 +kerning first=370 second=380 amount=-1 +kerning first=262 second=380 amount=-1 +kerning first=121 second=230 amount=-1 +kerning first=315 second=377 amount=-1 +kerning first=45 second=323 amount=-1 +kerning first=256 second=216 amount=-1 +kerning first=67 second=67 amount=-1 +kerning first=82 second=234 amount=-1 +kerning first=76 second=86 amount=-1 +kerning first=66 second=363 amount=-1 +kerning first=321 second=364 amount=-1 +kerning first=207 second=363 amount=-1 +kerning first=118 second=234 amount=-1 +kerning first=118 second=283 amount=-1 +kerning first=1058 second=1033 amount=-1 +kerning first=374 second=347 amount=-1 +kerning first=82 second=283 amount=-1 +kerning first=8250 second=217 amount=-1 +kerning first=1060 second=1059 amount=-1 +kerning first=82 second=118 amount=-1 +kerning first=193 second=79 amount=-1 +kerning first=77 second=8249 amount=-1 +kerning first=187 second=118 amount=-1 +kerning first=352 second=72 amount=-1 +kerning first=344 second=290 amount=-1 +kerning first=219 second=193 amount=-1 +kerning first=367 second=118 amount=-1 +kerning first=197 second=85 amount=-1 +kerning first=195 second=216 amount=-1 +kerning first=221 second=377 amount=-1 +kerning first=207 second=361 amount=-1 +kerning first=313 second=377 amount=-1 +kerning first=346 second=192 amount=-1 +kerning first=8218 second=86 amount=-2 +kerning first=1098 second=1091 amount=-1 +kerning first=295 second=118 amount=-1 +kerning first=331 second=118 amount=-1 +kerning first=88 second=79 amount=-1 +kerning first=1104 second=1076 amount=-1 +kerning first=194 second=8249 amount=-1 +kerning first=356 second=83 amount=-1 +kerning first=1050 second=1060 amount=-1 +kerning first=266 second=8249 amount=-1 +kerning first=75 second=121 amount=-1 +kerning first=8217 second=269 amount=-1 +kerning first=83 second=315 amount=-1 +kerning first=354 second=262 amount=-1 +kerning first=1027 second=1077 amount=-1 +kerning first=264 second=278 amount=-1 +kerning first=344 second=103 amount=-1 +kerning first=45 second=218 amount=-1 +kerning first=350 second=256 amount=-1 +kerning first=82 second=113 amount=-1 +kerning first=87 second=198 amount=-2 +kerning first=375 second=291 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=336 second=198 amount=-1 +kerning first=339 second=291 amount=-1 +kerning first=1069 second=1038 amount=-1 +kerning first=248 second=318 amount=-1 +kerning first=264 second=198 amount=-1 +kerning first=267 second=291 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=231 second=291 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=84 second=260 amount=-2 +kerning first=1059 second=1119 amount=-1 +kerning first=90 second=291 amount=-1 +kerning first=266 second=67 amount=-1 +kerning first=374 second=67 amount=-1 +kerning first=317 second=219 amount=-1 +kerning first=362 second=44 amount=-1 +kerning first=89 second=67 amount=-1 +kerning first=84 second=71 amount=-1 +kerning first=8249 second=87 amount=-1 +kerning first=194 second=67 amount=-1 +kerning first=290 second=44 amount=-1 +kerning first=82 second=199 amount=-1 +kerning first=254 second=44 amount=-1 +kerning first=86 second=275 amount=-1 +kerning first=8220 second=233 amount=-1 +kerning first=346 second=84 amount=-1 +kerning first=118 second=113 amount=-1 +kerning first=72 second=227 amount=-1 +kerning first=67 second=72 amount=-1 +kerning first=376 second=337 amount=-1 +kerning first=323 second=261 amount=-1 +kerning first=287 second=261 amount=-1 +kerning first=346 second=112 amount=-1 +kerning first=99 second=226 amount=-1 +kerning first=204 second=226 amount=-1 +kerning first=199 second=66 amount=-1 +kerning first=250 second=108 amount=-1 +kerning first=258 second=286 amount=-1 +kerning first=252 second=314 amount=-1 +kerning first=120 second=229 amount=-1 +kerning first=84 second=229 amount=-1 +kerning first=381 second=122 amount=-1 +kerning first=220 second=230 amount=-1 +kerning first=262 second=122 amount=-1 +kerning first=268 second=205 amount=-1 +kerning first=364 second=230 amount=-1 +kerning first=74 second=261 amount=-1 +kerning first=219 second=224 amount=-1 +kerning first=255 second=224 amount=-1 +kerning first=291 second=224 amount=-1 +kerning first=327 second=224 amount=-1 +kerning first=194 second=356 amount=-2 +kerning first=86 second=45 amount=-1 +kerning first=122 second=45 amount=-1 +kerning first=214 second=194 amount=-1 +kerning first=286 second=194 amount=-1 +kerning first=255 second=111 amount=-1 +kerning first=195 second=8249 amount=-1 +kerning first=344 second=339 amount=-1 +kerning first=333 second=255 amount=-1 +kerning first=375 second=234 amount=-1 +kerning first=369 second=255 amount=-1 +kerning first=8250 second=197 amount=-1 +kerning first=107 second=243 amount=-1 +kerning first=225 second=255 amount=-1 +kerning first=196 second=368 amount=-1 +kerning first=84 second=255 amount=-1 +kerning first=346 second=280 amount=-1 +kerning first=120 second=255 amount=-1 +kerning first=314 second=287 amount=-1 +kerning first=206 second=287 amount=-1 +kerning first=83 second=80 amount=-1 +kerning first=101 second=287 amount=-1 +kerning first=376 second=97 amount=-1 +kerning first=258 second=211 amount=-1 +kerning first=65 second=287 amount=-1 +kerning first=197 second=374 amount=-2 +kerning first=67 second=202 amount=-1 +kerning first=253 second=113 amount=-1 +kerning first=281 second=104 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=350 second=287 amount=-1 +kerning first=287 second=380 amount=-1 +kerning first=356 second=248 amount=-1 +kerning first=262 second=327 amount=-1 +kerning first=187 second=74 amount=-1 +kerning first=67 second=76 amount=-1 +kerning first=374 second=111 amount=-1 +kerning first=220 second=225 amount=-1 +kerning first=118 second=243 amount=-1 +kerning first=107 second=248 amount=-1 +kerning first=82 second=243 amount=-1 +kerning first=311 second=269 amount=-1 +kerning first=257 second=253 amount=-1 +kerning first=221 second=253 amount=-1 +kerning first=260 second=364 amount=-1 +kerning first=365 second=253 amount=-1 +kerning first=352 second=202 amount=-1 +kerning first=83 second=364 amount=-1 +kerning first=187 second=69 amount=-1 +kerning first=193 second=350 amount=-1 +kerning first=65 second=375 amount=-1 +kerning first=221 second=346 amount=-1 +kerning first=66 second=288 amount=-1 +kerning first=65 second=212 amount=-1 +kerning first=86 second=289 amount=-1 +kerning first=70 second=46 amount=-1 +kerning first=76 second=370 amount=-1 +kerning first=350 second=282 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=86 second=241 amount=-1 +kerning first=344 second=99 amount=-1 +kerning first=262 second=213 amount=-1 +kerning first=197 second=369 amount=-1 +kerning first=283 second=46 amount=-1 +kerning first=364 second=225 amount=-1 +kerning first=89 second=259 amount=-1 +kerning first=375 second=335 amount=-1 +kerning first=8250 second=192 amount=-1 +kerning first=262 second=332 amount=-1 +kerning first=235 second=311 amount=-1 +kerning first=303 second=335 amount=-1 +kerning first=286 second=44 amount=-1 +kerning first=8218 second=220 amount=-1 +kerning first=197 second=81 amount=-1 +kerning first=119 second=271 amount=-1 +kerning first=209 second=230 amount=-1 +kerning first=242 second=375 amount=-1 +kerning first=302 second=259 amount=-1 +kerning first=66 second=119 amount=-1 +kerning first=314 second=375 amount=-1 +kerning first=364 second=291 amount=-1 +kerning first=194 second=351 amount=-1 +kerning first=256 second=291 amount=-1 +kerning first=89 second=351 amount=-1 +kerning first=220 second=291 amount=-1 +kerning first=351 second=119 amount=-1 +kerning first=1069 second=1033 amount=-1 +kerning first=115 second=291 amount=-1 +kerning first=279 second=119 amount=-1 +kerning first=315 second=119 amount=-1 +kerning first=83 second=75 amount=-1 +kerning first=8216 second=275 amount=-1 +kerning first=89 second=210 amount=-1 +kerning first=217 second=256 amount=-1 +kerning first=194 second=210 amount=-1 +kerning first=194 second=284 amount=-1 +kerning first=223 second=314 amount=-1 +kerning first=255 second=263 amount=-1 +kerning first=317 second=8220 amount=-1 +kerning first=377 second=369 amount=-1 +kerning first=228 second=121 amount=-1 +kerning first=192 second=121 amount=-1 +kerning first=196 second=363 amount=-1 +kerning first=1059 second=1114 amount=-1 +kerning first=195 second=221 amount=-2 +kerning first=104 second=8249 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=304 second=363 amount=-1 +kerning first=354 second=377 amount=-1 +kerning first=8216 second=226 amount=-1 +kerning first=371 second=333 amount=-1 +kerning first=350 second=86 amount=-1 +kerning first=258 second=85 amount=-1 +kerning first=268 second=200 amount=-1 +kerning first=45 second=85 amount=-1 +kerning first=86 second=382 amount=-1 +kerning first=65 second=86 amount=-2 +kerning first=103 second=316 amount=-1 +kerning first=244 second=120 amount=-1 +kerning first=115 second=351 amount=-1 +kerning first=70 second=171 amount=-1 +kerning first=45 second=330 amount=-1 +kerning first=244 second=316 amount=-1 +kerning first=253 second=235 amount=-1 +kerning first=344 second=246 amount=-1 +kerning first=86 second=197 amount=-2 +kerning first=369 second=103 amount=-1 +kerning first=193 second=8221 amount=-1 +kerning first=229 second=8221 amount=-1 +kerning first=381 second=252 amount=-1 +kerning first=196 second=249 amount=-1 +kerning first=86 second=333 amount=-1 +kerning first=199 second=214 amount=-1 +kerning first=8217 second=111 amount=-1 +kerning first=283 second=103 amount=-1 +kerning first=209 second=226 amount=-1 +kerning first=106 second=103 amount=-1 +kerning first=76 second=379 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=8216 second=257 amount=-1 +kerning first=310 second=71 amount=-1 +kerning first=286 second=260 amount=-1 +kerning first=325 second=117 amount=-1 +kerning first=258 second=171 amount=-1 +kerning first=255 second=281 amount=-1 +kerning first=121 second=283 amount=-1 +kerning first=313 second=89 amount=-1 +kerning first=330 second=171 amount=-1 +kerning first=83 second=280 amount=-1 +kerning first=354 second=256 amount=-2 +kerning first=214 second=260 amount=-1 +kerning first=366 second=171 amount=-1 +kerning first=264 second=313 amount=-1 +kerning first=219 second=382 amount=-1 +kerning first=250 second=121 amount=-1 +kerning first=221 second=284 amount=-1 +kerning first=255 second=382 amount=-1 +kerning first=291 second=382 amount=-1 +kerning first=1059 second=1079 amount=-1 +kerning first=73 second=361 amount=-1 +kerning first=65 second=216 amount=-1 +kerning first=251 second=8221 amount=-1 +kerning first=110 second=8221 amount=-1 +kerning first=350 second=118 amount=-1 +kerning first=66 second=70 amount=-1 +kerning first=317 second=362 amount=-1 +kerning first=352 second=85 amount=-1 +kerning first=230 second=316 amount=-1 +kerning first=196 second=218 amount=-1 +kerning first=356 second=118 amount=-1 +kerning first=45 second=378 amount=-1 +kerning first=205 second=250 amount=-1 +kerning first=268 second=260 amount=-1 +kerning first=199 second=315 amount=-1 +kerning first=103 second=347 amount=-1 +kerning first=356 second=380 amount=-1 +kerning first=83 second=201 amount=-1 +kerning first=8216 second=235 amount=-1 +kerning first=321 second=84 amount=-1 +kerning first=354 second=227 amount=-1 +kerning first=86 second=8249 amount=-1 +kerning first=103 second=224 amount=-1 +kerning first=67 second=325 amount=-1 +kerning first=86 second=381 amount=-1 +kerning first=204 second=363 amount=-1 +kerning first=262 second=204 amount=-1 +kerning first=286 second=197 amount=-1 +kerning first=264 second=291 amount=-1 +kerning first=192 second=291 amount=-1 +kerning first=366 second=378 amount=-1 +kerning first=87 second=291 amount=-1 +kerning first=1046 second=1063 amount=-1 +kerning first=195 second=287 amount=-1 +kerning first=350 second=366 amount=-1 +kerning first=90 second=287 amount=-1 +kerning first=264 second=73 amount=-1 +kerning first=68 second=256 amount=-1 +kerning first=80 second=44 amount=-1 +kerning first=67 second=268 amount=-1 +kerning first=374 second=338 amount=-1 +kerning first=120 second=112 amount=-1 +kerning first=375 second=287 amount=-1 +kerning first=310 second=367 amount=-1 +kerning first=339 second=287 amount=-1 +kerning first=231 second=287 amount=-1 +kerning first=267 second=287 amount=-1 +kerning first=381 second=367 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=1059 second=1101 amount=-1 +kerning first=205 second=228 amount=-1 +kerning first=87 second=269 amount=-1 +kerning first=221 second=262 amount=-1 +kerning first=1061 second=1060 amount=-1 +kerning first=350 second=344 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=218 second=350 amount=-1 +kerning first=356 second=74 amount=-1 +kerning first=275 second=108 amount=-1 +kerning first=108 second=106 amount=-1 +kerning first=121 second=261 amount=-1 +kerning first=85 second=261 amount=-1 +kerning first=370 second=261 amount=-1 +kerning first=298 second=261 amount=-1 +kerning first=346 second=289 amount=-1 +kerning first=82 second=314 amount=-1 +kerning first=274 second=289 amount=-1 +kerning first=298 second=367 amount=-1 +kerning first=192 second=370 amount=-1 +kerning first=362 second=350 amount=-1 +kerning first=187 second=282 amount=-1 +kerning first=84 second=339 amount=-1 +kerning first=120 second=251 amount=-1 +kerning first=195 second=353 amount=-1 +kerning first=87 second=229 amount=-1 +kerning first=288 second=45 amount=-1 +kerning first=376 second=275 amount=-1 +kerning first=324 second=45 amount=-1 +kerning first=1061 second=1038 amount=-1 +kerning first=75 second=45 amount=-1 +kerning first=376 second=240 amount=-1 +kerning first=84 second=211 amount=-1 +kerning first=258 second=356 amount=-2 +kerning first=45 second=356 amount=-1 +kerning first=82 second=336 amount=-1 +kerning first=86 second=171 amount=-1 +kerning first=376 second=381 amount=-1 +kerning first=8220 second=224 amount=-1 +kerning first=84 second=352 amount=-1 +kerning first=350 second=194 amount=-1 +kerning first=74 second=226 amount=-1 +kerning first=258 second=255 amount=-1 +kerning first=232 second=119 amount=-1 +kerning first=287 second=226 amount=-1 +kerning first=45 second=255 amount=-1 +kerning first=375 second=113 amount=-1 +kerning first=246 second=44 amount=-1 +kerning first=258 second=81 amount=-1 +kerning first=196 second=119 amount=-1 +kerning first=323 second=226 amount=-1 +kerning first=376 second=119 amount=-1 +kerning first=221 second=227 amount=-1 +kerning first=117 second=253 amount=-1 +kerning first=248 second=314 amount=-1 +kerning first=303 second=113 amount=-1 +kerning first=231 second=225 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=255 second=243 amount=-1 +kerning first=67 second=290 amount=-1 +kerning first=193 second=363 amount=-1 +kerning first=354 second=331 amount=-1 +kerning first=376 second=79 amount=-1 +kerning first=366 second=193 amount=-1 +kerning first=66 second=103 amount=-1 +kerning first=256 second=8220 amount=-1 +kerning first=45 second=193 amount=-1 +kerning first=328 second=8220 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=196 second=79 amount=-1 +kerning first=222 second=193 amount=-1 +kerning first=268 second=79 amount=-1 +kerning first=202 second=289 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=199 second=192 amount=-1 +kerning first=253 second=8249 amount=-1 +kerning first=290 second=354 amount=-1 +kerning first=218 second=259 amount=-1 +kerning first=264 second=207 amount=-1 +kerning first=84 second=99 amount=-1 +kerning first=66 second=256 amount=-1 +kerning first=317 second=122 amount=-1 +kerning first=1043 second=1089 amount=-1 +kerning first=87 second=377 amount=-1 +kerning first=291 second=316 amount=-1 +kerning first=255 second=316 amount=-1 +kerning first=356 second=230 amount=-1 +kerning first=192 second=117 amount=-1 +kerning first=368 second=346 amount=-1 +kerning first=363 second=316 amount=-1 +kerning first=101 second=104 amount=-1 +kerning first=260 second=346 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=231 second=375 amount=-1 +kerning first=327 second=259 amount=-1 +kerning first=267 second=375 amount=-1 +kerning first=291 second=259 amount=-1 +kerning first=262 second=83 amount=-1 +kerning first=255 second=259 amount=-1 +kerning first=370 second=83 amount=-1 +kerning first=339 second=375 amount=-1 +kerning first=219 second=259 amount=-1 +kerning first=1059 second=1107 amount=-1 +kerning first=90 second=375 amount=-1 +kerning first=78 second=259 amount=-1 +kerning first=8250 second=289 amount=-1 +kerning first=195 second=375 amount=-1 +kerning first=288 second=197 amount=-1 +kerning first=236 second=103 amount=-1 +kerning first=66 second=331 amount=-1 +kerning first=376 second=196 amount=-2 +kerning first=350 second=82 amount=-1 +kerning first=200 second=103 amount=-1 +kerning first=268 second=196 amount=-1 +kerning first=268 second=77 amount=-1 +kerning first=356 second=336 amount=-1 +kerning first=87 second=335 amount=-1 +kerning first=350 second=278 amount=-1 +kerning first=229 second=8217 amount=-1 +kerning first=193 second=8217 amount=-1 +kerning first=199 second=75 amount=-1 +kerning first=1118 second=1103 amount=-1 +kerning first=209 second=361 amount=-1 +kerning first=187 second=65 amount=-1 +kerning first=232 second=253 amount=-1 +kerning first=258 second=334 amount=-1 +kerning first=375 second=353 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=289 second=115 amount=-1 +kerning first=347 second=121 amount=-1 +kerning first=256 second=374 amount=-2 +kerning first=275 second=121 amount=-1 +kerning first=87 second=339 amount=-1 +kerning first=245 second=318 amount=-1 +kerning first=281 second=318 amount=-1 +kerning first=8216 second=281 amount=-1 +kerning first=221 second=328 amount=-1 +kerning first=225 second=121 amount=-1 +kerning first=8250 second=80 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=87 second=326 amount=-1 +kerning first=277 second=316 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=221 second=196 amount=-2 +kerning first=288 second=89 amount=-1 +kerning first=376 second=231 amount=-1 +kerning first=302 second=228 amount=-1 +kerning first=89 second=228 amount=-1 +kerning first=281 second=375 amount=-1 +kerning first=253 second=333 amount=-1 +kerning first=317 second=375 amount=-1 +kerning first=353 second=375 amount=-1 +kerning first=317 second=221 amount=-1 +kerning first=266 second=260 amount=-1 +kerning first=193 second=213 amount=-1 +kerning first=262 second=323 amount=-1 +kerning first=88 second=213 amount=-1 +kerning first=311 second=99 amount=-1 +kerning first=199 second=302 amount=-1 +kerning first=245 second=375 amount=-1 +kerning first=267 second=118 amount=-1 +kerning first=205 second=227 amount=-1 +kerning first=87 second=379 amount=-1 +kerning first=262 second=270 amount=-1 +kerning first=310 second=284 amount=-1 +kerning first=193 second=266 amount=-1 +kerning first=1027 second=1103 amount=-1 +kerning first=200 second=291 amount=-1 +kerning first=66 second=110 amount=-1 +kerning first=88 second=266 amount=-1 +kerning first=330 second=103 amount=-1 +kerning first=366 second=103 amount=-1 +kerning first=258 second=103 amount=-1 +kerning first=1042 second=1038 amount=-1 +kerning first=120 second=118 amount=-1 +kerning first=260 second=214 amount=-1 +kerning first=254 second=253 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=66 second=8217 amount=-1 +kerning first=269 second=224 amount=-1 +kerning first=67 second=334 amount=-1 +kerning first=232 second=44 amount=-1 +kerning first=379 second=249 amount=-1 +kerning first=102 second=8217 amount=1 +kerning first=371 second=232 amount=-1 +kerning first=305 second=171 amount=-1 +kerning first=71 second=46 amount=-1 +kerning first=206 second=117 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=376 second=284 amount=-1 +kerning first=8222 second=370 amount=-1 +kerning first=330 second=365 amount=-1 +kerning first=196 second=284 amount=-1 +kerning first=344 second=264 amount=-1 +kerning first=266 second=382 amount=-1 +kerning first=1046 second=1054 amount=-1 +kerning first=374 second=382 amount=-1 +kerning first=350 second=203 amount=-1 +kerning first=369 second=121 amount=-1 +kerning first=268 second=284 amount=-1 +kerning first=333 second=121 amount=-1 +kerning first=256 second=71 amount=-1 +kerning first=106 second=255 amount=-1 +kerning first=364 second=287 amount=-1 +kerning first=256 second=287 amount=-1 +kerning first=287 second=257 amount=-1 +kerning first=66 second=79 amount=-1 +kerning first=266 second=206 amount=-1 +kerning first=220 second=287 amount=-1 +kerning first=268 second=209 amount=-1 +kerning first=115 second=287 amount=-1 +kerning first=377 second=378 amount=-1 +kerning first=86 second=232 amount=-1 +kerning first=195 second=213 amount=-1 +kerning first=45 second=87 amount=-1 +kerning first=196 second=262 amount=-1 +kerning first=226 second=8221 amount=-1 +kerning first=74 second=257 amount=-1 +kerning first=8220 second=281 amount=-1 +kerning first=376 second=262 amount=-1 +kerning first=268 second=262 amount=-1 +kerning first=375 second=227 amount=-1 +kerning first=66 second=350 amount=-1 +kerning first=332 second=192 amount=-1 +kerning first=368 second=192 amount=-1 +kerning first=352 second=356 amount=-1 +kerning first=253 second=269 amount=-1 +kerning first=288 second=8249 amount=-1 +kerning first=258 second=290 amount=-1 +kerning first=187 second=274 amount=-1 +kerning first=324 second=8249 amount=-1 +kerning first=1114 second=1118 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=187 second=327 amount=-1 +kerning first=83 second=192 amount=-1 +kerning first=79 second=256 amount=-1 +kerning first=346 second=298 amount=-1 +kerning first=260 second=84 amount=-2 +kerning first=197 second=268 amount=-1 +kerning first=115 second=115 amount=-1 +kerning first=187 second=364 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=231 second=108 amount=-1 +kerning first=325 second=291 amount=-1 +kerning first=1047 second=1038 amount=-1 +kerning first=253 second=291 amount=-1 +kerning first=84 second=90 amount=-1 +kerning first=217 second=291 amount=-1 +kerning first=76 second=291 amount=-1 +kerning first=199 second=280 amount=-1 +kerning first=73 second=251 amount=-1 +kerning first=218 second=46 amount=-1 +kerning first=86 second=210 amount=-1 +kerning first=364 second=256 amount=-1 +kerning first=354 second=337 amount=-1 +kerning first=45 second=72 amount=-1 +kerning first=286 second=198 amount=-1 +kerning first=120 second=361 amount=-1 +kerning first=214 second=198 amount=-1 +kerning first=269 second=103 amount=-1 +kerning first=258 second=268 amount=-1 +kerning first=350 second=73 amount=-1 +kerning first=298 second=226 amount=-1 +kerning first=89 second=279 amount=-1 +kerning first=370 second=226 amount=-1 +kerning first=217 second=194 amount=-1 +kerning first=257 second=119 amount=-1 +kerning first=313 second=219 amount=-1 +kerning first=221 second=119 amount=-1 +kerning first=325 second=361 amount=-1 +kerning first=253 second=335 amount=-1 +kerning first=344 second=374 amount=-1 +kerning first=77 second=363 amount=-1 +kerning first=365 second=119 amount=-1 +kerning first=268 second=66 amount=-1 +kerning first=256 second=353 amount=-1 +kerning first=115 second=353 amount=-1 +kerning first=352 second=303 amount=-1 +kerning first=323 second=367 amount=-1 +kerning first=72 second=289 amount=-1 +kerning first=108 second=289 amount=-1 +kerning first=376 second=328 amount=-1 +kerning first=249 second=289 amount=-1 +kerning first=346 second=89 amount=-1 +kerning first=256 second=212 amount=-1 +kerning first=1046 second=1098 amount=-1 +kerning first=204 second=257 amount=-1 +kerning first=325 second=226 amount=-1 +kerning first=84 second=286 amount=-1 +kerning first=266 second=338 amount=-1 +kerning first=99 second=257 amount=-1 +kerning first=352 second=237 amount=-1 +kerning first=195 second=8220 amount=-1 +kerning first=89 second=338 amount=-1 +kerning first=8222 second=368 amount=-1 +kerning first=199 second=205 amount=-1 +kerning first=106 second=45 amount=-1 +kerning first=241 second=45 amount=-1 +kerning first=344 second=211 amount=-1 +kerning first=354 second=97 amount=-1 +kerning first=221 second=240 amount=-1 +kerning first=8250 second=364 amount=-1 +kerning first=197 second=290 amount=-1 +kerning first=197 second=356 amount=-2 +kerning first=8250 second=298 amount=-1 +kerning first=356 second=261 amount=-1 +kerning first=85 second=226 amount=-1 +kerning first=283 second=255 amount=-1 +kerning first=264 second=304 amount=-1 +kerning first=324 second=8221 amount=-1 +kerning first=121 second=226 amount=-1 +kerning first=380 second=112 amount=-1 +kerning first=266 second=77 amount=-1 +kerning first=339 second=104 amount=-1 +kerning first=8220 second=193 amount=-2 +kerning first=381 second=380 amount=-1 +kerning first=66 second=253 amount=-1 +kerning first=121 second=248 amount=-1 +kerning first=113 second=8217 amount=-1 +kerning first=243 second=253 amount=-1 +kerning first=315 second=253 amount=-1 +kerning first=279 second=253 amount=-1 +kerning first=1059 second=1057 amount=-1 +kerning first=356 second=283 amount=-1 +kerning first=351 second=253 amount=-1 +kerning first=192 second=86 amount=-2 +kerning first=212 second=65 amount=-1 +kerning first=87 second=260 amount=-2 +kerning first=197 second=334 amount=-1 +kerning first=356 second=65 amount=-2 +kerning first=333 second=46 amount=-1 +kerning first=313 second=382 amount=-1 +kerning first=336 second=260 amount=-1 +kerning first=45 second=202 amount=-1 +kerning first=107 second=283 amount=-1 +kerning first=84 second=264 amount=-1 +kerning first=255 second=347 amount=-1 +kerning first=234 second=318 amount=-1 +kerning first=264 second=260 amount=-1 +kerning first=291 second=347 amount=-1 +kerning first=8218 second=366 amount=-1 +kerning first=253 second=45 amount=-1 +kerning first=193 second=288 amount=-1 +kerning first=78 second=369 amount=-1 +kerning first=1118 second=1076 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=327 second=369 amount=-1 +kerning first=346 second=364 amount=-1 +kerning first=264 second=282 amount=-1 +kerning first=284 second=87 amount=-1 +kerning first=118 second=230 amount=-1 +kerning first=346 second=201 amount=-1 +kerning first=376 second=100 amount=-1 +kerning first=115 second=375 amount=-1 +kerning first=199 second=346 amount=-1 +kerning first=88 second=288 amount=-1 +kerning first=221 second=381 amount=-1 +kerning first=344 second=352 amount=-1 +kerning first=71 second=87 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif16I.png b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16I.png new file mode 100644 index 000000000..b6f222302 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16I.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad5555.fnt b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad5555.fnt new file mode 100644 index 000000000..4c7d888a2 --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad5555.fnt @@ -0,0 +1,8030 @@ +info face="Free Serif" size=16 bold=0 italic=1 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=5,5,5,5 spacing=-2,-2 +common lineHeight=30 base=16 scaleW=512 scaleH=512 pages=2 packed=0 +page id=0 file="FreeSerif16Ipad55551.png" +page id=1 file="FreeSerif16Ipad55552.png" +chars count=821 +char id=0 x=488 y=407 width=21 height=21 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=13 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=8 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=33 x=220 y=252 width=14 height=22 xoffset=-3 yoffset=0 xadvance=13 page=0 chnl=0 +char id=35 x=29 y=429 width=21 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=36 x=291 y=131 width=19 height=24 xoffset=-5 yoffset=-1 xadvance=16 page=0 chnl=0 +char id=37 x=234 y=252 width=22 height=22 xoffset=-3 yoffset=0 xadvance=21 page=0 chnl=0 +char id=38 x=256 y=252 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=39 x=498 y=429 width=12 height=15 xoffset=-3 yoffset=0 xadvance=11 page=0 chnl=0 +char id=40 x=310 y=131 width=17 height=24 xoffset=-4 yoffset=0 xadvance=13 page=0 chnl=0 +char id=41 x=327 y=131 width=17 height=24 xoffset=-6 yoffset=0 xadvance=13 page=0 chnl=0 +char id=47 x=278 y=252 width=20 height=22 xoffset=-6 yoffset=0 xadvance=12 page=0 chnl=0 +char id=48 x=298 y=252 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=49 x=50 y=429 width=16 height=21 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=50 x=66 y=429 width=19 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=51 x=316 y=252 width=18 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=52 x=85 y=429 width=19 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=53 x=334 y=252 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=54 x=353 y=252 width=20 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=55 x=373 y=252 width=20 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=56 x=393 y=252 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=57 x=411 y=252 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=59 x=496 y=319 width=15 height=21 xoffset=-5 yoffset=3 xadvance=12 page=0 chnl=0 +char id=63 x=430 y=252 width=18 height=22 xoffset=-3 yoffset=0 xadvance=15 page=0 chnl=0 +char id=64 x=448 y=252 width=23 height=22 xoffset=-3 yoffset=0 xadvance=23 page=0 chnl=0 +char id=65 x=104 y=429 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=66 x=126 y=429 width=21 height=21 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=67 x=471 y=252 width=21 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=68 x=147 y=429 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=69 x=169 y=429 width=21 height=21 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=70 x=190 y=429 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=71 x=0 y=275 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=72 x=212 y=429 width=25 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=73 x=237 y=429 width=18 height=21 xoffset=-5 yoffset=0 xadvance=13 page=0 chnl=0 +char id=74 x=492 y=252 width=19 height=22 xoffset=-5 yoffset=0 xadvance=14 page=0 chnl=0 +char id=75 x=255 y=429 width=23 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=76 x=278 y=429 width=20 height=21 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=77 x=298 y=429 width=27 height=21 xoffset=-5 yoffset=0 xadvance=22 page=0 chnl=0 +char id=78 x=22 y=275 width=25 height=22 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=79 x=47 y=275 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=80 x=325 y=429 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=81 x=344 y=131 width=22 height=24 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=82 x=347 y=429 width=21 height=21 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=83 x=69 y=275 width=19 height=22 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=84 x=368 y=429 width=22 height=21 xoffset=-4 yoffset=0 xadvance=18 page=0 chnl=0 +char id=85 x=88 y=275 width=23 height=22 xoffset=-3 yoffset=0 xadvance=20 page=0 chnl=0 +char id=86 x=111 y=275 width=22 height=22 xoffset=-3 yoffset=0 xadvance=20 page=0 chnl=0 +char id=87 x=133 y=275 width=27 height=22 xoffset=-4 yoffset=0 xadvance=23 page=0 chnl=0 +char id=88 x=390 y=429 width=24 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=89 x=414 y=429 width=23 height=21 xoffset=-3 yoffset=0 xadvance=20 page=0 chnl=0 +char id=90 x=437 y=429 width=23 height=21 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=91 x=366 y=131 width=17 height=24 xoffset=-4 yoffset=0 xadvance=13 page=0 chnl=0 +char id=92 x=160 y=275 width=14 height=22 xoffset=-4 yoffset=0 xadvance=13 page=0 chnl=0 +char id=93 x=383 y=131 width=17 height=24 xoffset=-6 yoffset=0 xadvance=13 page=0 chnl=0 +char id=98 x=174 y=275 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=100 x=192 y=275 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=102 x=460 y=429 width=20 height=21 xoffset=-5 yoffset=0 xadvance=13 page=0 chnl=0 +char id=103 x=211 y=275 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=104 x=480 y=429 width=18 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=105 x=0 y=451 width=15 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=106 x=460 y=30 width=18 height=25 xoffset=-7 yoffset=0 xadvance=12 page=0 chnl=0 +char id=107 x=15 y=451 width=19 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=108 x=34 y=451 width=15 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=109 x=0 y=493 width=23 height=18 xoffset=-5 yoffset=3 xadvance=20 page=0 chnl=0 +char id=110 x=23 y=493 width=18 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=112 x=230 y=275 width=20 height=22 xoffset=-6 yoffset=3 xadvance=16 page=0 chnl=0 +char id=113 x=250 y=275 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=114 x=41 y=493 width=18 height=18 xoffset=-5 yoffset=3 xadvance=13 page=0 chnl=0 +char id=116 x=49 y=451 width=16 height=21 xoffset=-4 yoffset=1 xadvance=12 page=0 chnl=0 +char id=120 x=59 y=493 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=121 x=269 y=275 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=122 x=78 y=493 width=18 height=18 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=123 x=400 y=131 width=16 height=24 xoffset=-3 yoffset=0 xadvance=16 page=0 chnl=0 +char id=124 x=288 y=275 width=14 height=22 xoffset=-4 yoffset=0 xadvance=11 page=0 chnl=0 +char id=125 x=416 y=131 width=16 height=24 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=161 x=302 y=275 width=15 height=22 xoffset=-5 yoffset=3 xadvance=13 page=0 chnl=0 +char id=162 x=143 y=228 width=18 height=23 xoffset=-4 yoffset=1 xadvance=16 page=0 chnl=0 +char id=163 x=317 y=275 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=165 x=65 y=451 width=23 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=166 x=336 y=275 width=14 height=22 xoffset=-4 yoffset=0 xadvance=11 page=0 chnl=0 +char id=167 x=432 y=131 width=17 height=24 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=169 x=161 y=228 width=23 height=23 xoffset=-4 yoffset=-1 xadvance=21 page=0 chnl=0 +char id=174 x=184 y=228 width=23 height=23 xoffset=-4 yoffset=-1 xadvance=21 page=0 chnl=0 +char id=177 x=88 y=451 width=20 height=21 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=181 x=350 y=275 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=182 x=449 y=131 width=20 height=24 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=188 x=369 y=275 width=21 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=189 x=390 y=275 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=190 x=412 y=275 width=21 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=191 x=433 y=275 width=16 height=22 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=192 x=478 y=30 width=22 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=193 x=0 y=56 width=23 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=194 x=23 y=56 width=22 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=195 x=469 y=131 width=22 height=24 xoffset=-5 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=196 x=0 y=156 width=22 height=24 xoffset=-5 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=197 x=45 y=56 width=22 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=198 x=108 y=451 width=25 height=21 xoffset=-5 yoffset=0 xadvance=22 page=0 chnl=0 +char id=199 x=67 y=56 width=21 height=25 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=200 x=88 y=56 width=21 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=201 x=109 y=56 width=23 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=202 x=132 y=56 width=21 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=203 x=22 y=156 width=23 height=24 xoffset=-5 yoffset=-3 xadvance=18 page=0 chnl=0 +char id=204 x=153 y=56 width=20 height=25 xoffset=-5 yoffset=-4 xadvance=13 page=0 chnl=0 +char id=205 x=173 y=56 width=24 height=25 xoffset=-5 yoffset=-4 xadvance=13 page=0 chnl=0 +char id=206 x=197 y=56 width=20 height=25 xoffset=-5 yoffset=-4 xadvance=13 page=0 chnl=0 +char id=207 x=45 y=156 width=22 height=24 xoffset=-5 yoffset=-3 xadvance=13 page=0 chnl=0 +char id=208 x=133 y=451 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=209 x=217 y=56 width=25 height=25 xoffset=-5 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=210 x=169 y=0 width=22 height=26 xoffset=-4 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=211 x=191 y=0 width=22 height=26 xoffset=-4 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=212 x=213 y=0 width=22 height=26 xoffset=-4 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=213 x=242 y=56 width=22 height=25 xoffset=-4 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=214 x=264 y=56 width=22 height=25 xoffset=-4 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=215 x=96 y=493 width=20 height=18 xoffset=-5 yoffset=3 xadvance=17 page=0 chnl=0 +char id=216 x=67 y=156 width=23 height=24 xoffset=-5 yoffset=-1 xadvance=20 page=0 chnl=0 +char id=217 x=235 y=0 width=23 height=26 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=218 x=258 y=0 width=23 height=26 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=219 x=281 y=0 width=23 height=26 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=220 x=286 y=56 width=23 height=25 xoffset=-3 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=221 x=309 y=56 width=23 height=25 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=222 x=155 y=451 width=20 height=21 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=223 x=449 y=275 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=224 x=468 y=275 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=225 x=486 y=275 width=22 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=226 x=0 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=227 x=18 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=228 x=175 y=451 width=22 height=21 xoffset=-5 yoffset=1 xadvance=15 page=0 chnl=0 +char id=229 x=207 y=228 width=18 height=23 xoffset=-5 yoffset=-1 xadvance=15 page=0 chnl=0 +char id=231 x=36 y=297 width=18 height=22 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=232 x=54 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=233 x=72 y=297 width=22 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=234 x=94 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=235 x=197 y=451 width=22 height=21 xoffset=-5 yoffset=1 xadvance=15 page=0 chnl=0 +char id=236 x=219 y=451 width=19 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=237 x=238 y=451 width=23 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=238 x=261 y=451 width=19 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=240 x=112 y=297 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=241 x=280 y=451 width=19 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=242 x=131 y=297 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=243 x=149 y=297 width=22 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=244 x=171 y=297 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=245 x=189 y=297 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=246 x=299 y=451 width=20 height=21 xoffset=-4 yoffset=1 xadvance=16 page=0 chnl=0 +char id=248 x=319 y=451 width=19 height=21 xoffset=-5 yoffset=2 xadvance=16 page=0 chnl=0 +char id=249 x=207 y=297 width=17 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=250 x=224 y=297 width=22 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=251 x=246 y=297 width=17 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=252 x=338 y=451 width=20 height=21 xoffset=-4 yoffset=1 xadvance=16 page=0 chnl=0 +char id=253 x=332 y=56 width=23 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=254 x=355 y=56 width=20 height=25 xoffset=-6 yoffset=0 xadvance=16 page=0 chnl=0 +char id=255 x=375 y=56 width=21 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=256 x=225 y=228 width=23 height=23 xoffset=-5 yoffset=-2 xadvance=20 page=0 chnl=0 +char id=257 x=358 y=451 width=22 height=21 xoffset=-5 yoffset=1 xadvance=15 page=0 chnl=0 +char id=258 x=396 y=56 width=22 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=259 x=263 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=260 x=90 y=156 width=23 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=261 x=380 y=451 width=18 height=21 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=262 x=304 y=0 width=24 height=26 xoffset=-4 yoffset=-4 xadvance=19 page=0 chnl=0 +char id=263 x=281 y=297 width=23 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=264 x=328 y=0 width=21 height=26 xoffset=-4 yoffset=-4 xadvance=19 page=0 chnl=0 +char id=265 x=304 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=266 x=418 y=56 width=21 height=25 xoffset=-4 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=267 x=398 y=451 width=18 height=21 xoffset=-5 yoffset=1 xadvance=15 page=0 chnl=0 +char id=268 x=349 y=0 width=21 height=26 xoffset=-4 yoffset=-4 xadvance=19 page=0 chnl=0 +char id=269 x=322 y=297 width=20 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=270 x=439 y=56 width=22 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=271 x=342 y=297 width=27 height=22 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=272 x=416 y=451 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=273 x=369 y=297 width=21 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=274 x=248 y=228 width=21 height=23 xoffset=-5 yoffset=-2 xadvance=18 page=0 chnl=0 +char id=275 x=438 y=451 width=22 height=21 xoffset=-5 yoffset=1 xadvance=15 page=0 chnl=0 +char id=276 x=461 y=56 width=21 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=277 x=390 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=278 x=113 y=156 width=21 height=24 xoffset=-5 yoffset=-3 xadvance=18 page=0 chnl=0 +char id=279 x=460 y=451 width=18 height=21 xoffset=-5 yoffset=1 xadvance=15 page=0 chnl=0 +char id=280 x=134 y=156 width=21 height=24 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=281 x=478 y=451 width=18 height=21 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=282 x=482 y=56 width=21 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=283 x=408 y=297 width=18 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=284 x=370 y=0 width=22 height=26 xoffset=-4 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=285 x=0 y=81 width=19 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=286 x=392 y=0 width=22 height=26 xoffset=-4 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=287 x=19 y=81 width=19 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=288 x=38 y=81 width=22 height=25 xoffset=-4 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=289 x=491 y=131 width=19 height=24 xoffset=-5 yoffset=1 xadvance=16 page=0 chnl=0 +char id=290 x=414 y=0 width=22 height=26 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=291 x=67 y=0 width=19 height=27 xoffset=-5 yoffset=-2 xadvance=16 page=0 chnl=0 +char id=292 x=60 y=81 width=25 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=293 x=85 y=81 width=19 height=25 xoffset=-5 yoffset=-4 xadvance=16 page=0 chnl=0 +char id=294 x=0 y=472 width=25 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=295 x=25 y=472 width=18 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=296 x=155 y=156 width=20 height=24 xoffset=-5 yoffset=-3 xadvance=13 page=0 chnl=0 +char id=298 x=269 y=228 width=24 height=23 xoffset=-5 yoffset=-2 xadvance=13 page=0 chnl=0 +char id=300 x=104 y=81 width=20 height=25 xoffset=-5 yoffset=-4 xadvance=13 page=0 chnl=0 +char id=301 x=43 y=472 width=19 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=302 x=175 y=156 width=18 height=24 xoffset=-5 yoffset=0 xadvance=13 page=0 chnl=0 +char id=303 x=193 y=156 width=15 height=24 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=304 x=208 y=156 width=18 height=24 xoffset=-5 yoffset=-3 xadvance=13 page=0 chnl=0 +char id=305 x=116 y=493 width=15 height=18 xoffset=-5 yoffset=3 xadvance=12 page=0 chnl=0 +char id=306 x=426 y=297 width=24 height=22 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=307 x=124 y=81 width=19 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=308 x=436 y=0 width=21 height=26 xoffset=-5 yoffset=-4 xadvance=14 page=0 chnl=0 +char id=309 x=143 y=81 width=22 height=25 xoffset=-7 yoffset=0 xadvance=12 page=0 chnl=0 +char id=310 x=457 y=0 width=23 height=26 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=311 x=480 y=0 width=19 height=26 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=312 x=131 y=493 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=313 x=165 y=81 width=20 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=314 x=185 y=81 width=24 height=25 xoffset=-5 yoffset=-4 xadvance=12 page=0 chnl=0 +char id=315 x=0 y=30 width=20 height=26 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=316 x=20 y=30 width=15 height=26 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=317 x=62 y=472 width=23 height=21 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=318 x=85 y=472 width=23 height=21 xoffset=-5 yoffset=0 xadvance=14 page=0 chnl=0 +char id=319 x=108 y=472 width=20 height=21 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=320 x=128 y=472 width=17 height=21 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=321 x=145 y=472 width=20 height=21 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=322 x=165 y=472 width=17 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=323 x=35 y=30 width=25 height=26 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=324 x=182 y=472 width=23 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=325 x=60 y=30 width=25 height=26 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=326 x=293 y=228 width=18 height=23 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=327 x=85 y=30 width=25 height=26 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=328 x=205 y=472 width=19 height=21 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=329 x=224 y=472 width=18 height=21 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=330 x=450 y=297 width=22 height=22 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=331 x=472 y=297 width=18 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=332 x=226 y=156 width=22 height=24 xoffset=-4 yoffset=-2 xadvance=20 page=0 chnl=0 +char id=333 x=242 y=472 width=20 height=21 xoffset=-4 yoffset=1 xadvance=16 page=0 chnl=0 +char id=334 x=110 y=30 width=22 height=26 xoffset=-4 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=335 x=490 y=297 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=336 x=132 y=30 width=29 height=26 xoffset=-4 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=337 x=0 y=319 width=27 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=338 x=27 y=319 width=26 height=22 xoffset=-4 yoffset=0 xadvance=22 page=0 chnl=0 +char id=340 x=209 y=81 width=21 height=25 xoffset=-5 yoffset=-4 xadvance=19 page=0 chnl=0 +char id=341 x=262 y=472 width=22 height=21 xoffset=-5 yoffset=0 xadvance=13 page=0 chnl=0 +char id=342 x=161 y=30 width=21 height=26 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=343 x=311 y=228 width=18 height=23 xoffset=-5 yoffset=3 xadvance=13 page=0 chnl=0 +char id=344 x=230 y=81 width=21 height=25 xoffset=-5 yoffset=-4 xadvance=19 page=0 chnl=0 +char id=345 x=284 y=472 width=19 height=21 xoffset=-5 yoffset=0 xadvance=13 page=0 chnl=0 +char id=346 x=182 y=30 width=23 height=26 xoffset=-4 yoffset=-4 xadvance=17 page=0 chnl=0 +char id=347 x=53 y=319 width=23 height=22 xoffset=-5 yoffset=0 xadvance=14 page=0 chnl=0 +char id=348 x=205 y=30 width=19 height=26 xoffset=-4 yoffset=-4 xadvance=17 page=0 chnl=0 +char id=349 x=76 y=319 width=18 height=22 xoffset=-5 yoffset=0 xadvance=14 page=0 chnl=0 +char id=350 x=251 y=81 width=19 height=25 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=351 x=94 y=319 width=17 height=22 xoffset=-5 yoffset=3 xadvance=14 page=0 chnl=0 +char id=352 x=224 y=30 width=19 height=26 xoffset=-4 yoffset=-4 xadvance=17 page=0 chnl=0 +char id=353 x=111 y=319 width=19 height=22 xoffset=-5 yoffset=0 xadvance=14 page=0 chnl=0 +char id=354 x=270 y=81 width=22 height=25 xoffset=-4 yoffset=0 xadvance=18 page=0 chnl=0 +char id=355 x=248 y=156 width=17 height=24 xoffset=-5 yoffset=1 xadvance=12 page=0 chnl=0 +char id=356 x=292 y=81 width=22 height=25 xoffset=-4 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=357 x=130 y=319 width=23 height=22 xoffset=-4 yoffset=0 xadvance=15 page=0 chnl=0 +char id=358 x=303 y=472 width=22 height=21 xoffset=-4 yoffset=0 xadvance=18 page=0 chnl=0 +char id=359 x=325 y=472 width=17 height=21 xoffset=-5 yoffset=1 xadvance=12 page=0 chnl=0 +char id=360 x=314 y=81 width=23 height=25 xoffset=-3 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=361 x=342 y=472 width=18 height=21 xoffset=-4 yoffset=1 xadvance=16 page=0 chnl=0 +char id=362 x=265 y=156 width=23 height=24 xoffset=-3 yoffset=-2 xadvance=20 page=0 chnl=0 +char id=363 x=360 y=472 width=20 height=21 xoffset=-4 yoffset=1 xadvance=16 page=0 chnl=0 +char id=364 x=243 y=30 width=23 height=26 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=365 x=153 y=319 width=18 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=366 x=266 y=30 width=23 height=26 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=367 x=329 y=228 width=17 height=23 xoffset=-4 yoffset=-1 xadvance=16 page=0 chnl=0 +char id=368 x=289 y=30 width=28 height=26 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=369 x=171 y=319 width=27 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=370 x=288 y=156 width=23 height=24 xoffset=-3 yoffset=0 xadvance=20 page=0 chnl=0 +char id=371 x=380 y=472 width=17 height=21 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=372 x=317 y=30 width=27 height=26 xoffset=-4 yoffset=-4 xadvance=23 page=0 chnl=0 +char id=373 x=198 y=319 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=374 x=337 y=81 width=23 height=25 xoffset=-3 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=375 x=360 y=81 width=19 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=376 x=311 y=156 width=23 height=24 xoffset=-3 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=377 x=379 y=81 width=23 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=378 x=397 y=472 width=22 height=21 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=379 x=334 y=156 width=23 height=24 xoffset=-5 yoffset=-3 xadvance=18 page=0 chnl=0 +char id=381 x=402 y=81 width=23 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=382 x=419 y=472 width=18 height=21 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=383 x=437 y=472 width=20 height=21 xoffset=-5 yoffset=0 xadvance=13 page=0 chnl=0 +char id=894 x=457 y=472 width=17 height=21 xoffset=-5 yoffset=3 xadvance=12 page=0 chnl=0 +char id=902 x=220 y=319 width=22 height=22 xoffset=-5 yoffset=-1 xadvance=20 page=0 chnl=0 +char id=904 x=242 y=319 width=27 height=22 xoffset=-4 yoffset=-1 xadvance=21 page=0 chnl=0 +char id=905 x=269 y=319 width=30 height=22 xoffset=-4 yoffset=-1 xadvance=22 page=0 chnl=0 +char id=906 x=299 y=319 width=24 height=22 xoffset=-4 yoffset=-1 xadvance=16 page=0 chnl=0 +char id=908 x=346 y=228 width=26 height=23 xoffset=-4 yoffset=-1 xadvance=21 page=0 chnl=0 +char id=910 x=323 y=319 width=26 height=22 xoffset=-4 yoffset=-1 xadvance=22 page=0 chnl=0 +char id=911 x=349 y=319 width=24 height=22 xoffset=-4 yoffset=-1 xadvance=22 page=0 chnl=0 +char id=912 x=357 y=156 width=16 height=24 xoffset=-5 yoffset=-2 xadvance=13 page=0 chnl=0 +char id=913 x=474 y=472 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=920 x=373 y=319 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=925 x=395 y=319 width=25 height=22 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=927 x=420 y=319 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=938 x=373 y=156 width=22 height=24 xoffset=-5 yoffset=-3 xadvance=13 page=0 chnl=0 +char id=939 x=395 y=156 width=22 height=24 xoffset=-3 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=940 x=417 y=156 width=19 height=24 xoffset=-4 yoffset=-2 xadvance=17 page=0 chnl=0 +char id=941 x=436 y=156 width=18 height=24 xoffset=-5 yoffset=-2 xadvance=15 page=0 chnl=0 +char id=942 x=86 y=0 width=18 height=27 xoffset=-4 yoffset=-2 xadvance=17 page=0 chnl=0 +char id=943 x=454 y=156 width=15 height=24 xoffset=-4 yoffset=-2 xadvance=13 page=0 chnl=0 +char id=944 x=372 y=228 width=18 height=23 xoffset=-4 yoffset=-1 xadvance=16 page=0 chnl=0 +char id=946 x=425 y=81 width=19 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=947 x=442 y=319 width=18 height=22 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=948 x=460 y=319 width=18 height=22 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=950 x=344 y=30 width=18 height=26 xoffset=-4 yoffset=-1 xadvance=15 page=0 chnl=0 +char id=951 x=478 y=319 width=18 height=22 xoffset=-4 yoffset=3 xadvance=17 page=0 chnl=0 +char id=952 x=0 y=341 width=18 height=22 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=954 x=150 y=493 width=19 height=18 xoffset=-4 yoffset=3 xadvance=17 page=0 chnl=0 +char id=955 x=18 y=341 width=18 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=956 x=36 y=341 width=19 height=22 xoffset=-5 yoffset=3 xadvance=17 page=0 chnl=0 +char id=957 x=169 y=493 width=18 height=18 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=958 x=444 y=81 width=19 height=25 xoffset=-5 yoffset=-1 xadvance=16 page=0 chnl=0 +char id=961 x=55 y=341 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=962 x=74 y=341 width=17 height=22 xoffset=-4 yoffset=3 xadvance=15 page=0 chnl=0 +char id=966 x=91 y=341 width=20 height=22 xoffset=-4 yoffset=3 xadvance=18 page=0 chnl=0 +char id=967 x=111 y=341 width=20 height=22 xoffset=-6 yoffset=3 xadvance=16 page=0 chnl=0 +char id=968 x=469 y=156 width=21 height=24 xoffset=-4 yoffset=1 xadvance=19 page=0 chnl=0 +char id=970 x=131 y=341 width=19 height=22 xoffset=-4 yoffset=0 xadvance=13 page=0 chnl=0 +char id=971 x=150 y=341 width=20 height=22 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=972 x=490 y=156 width=20 height=24 xoffset=-4 yoffset=-2 xadvance=16 page=0 chnl=0 +char id=973 x=390 y=228 width=18 height=23 xoffset=-4 yoffset=-1 xadvance=16 page=0 chnl=0 +char id=974 x=408 y=228 width=21 height=23 xoffset=-4 yoffset=-1 xadvance=19 page=0 chnl=0 +char id=976 x=429 y=228 width=18 height=23 xoffset=-4 yoffset=-1 xadvance=17 page=0 chnl=0 +char id=977 x=447 y=228 width=21 height=23 xoffset=-4 yoffset=-1 xadvance=17 page=0 chnl=0 +char id=979 x=170 y=341 width=25 height=22 xoffset=-4 yoffset=-1 xadvance=21 page=0 chnl=0 +char id=980 x=0 y=180 width=22 height=24 xoffset=-4 yoffset=-3 xadvance=18 page=0 chnl=0 +char id=981 x=22 y=180 width=20 height=24 xoffset=-4 yoffset=1 xadvance=18 page=0 chnl=0 +char id=985 x=195 y=341 width=18 height=22 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=987 x=213 y=341 width=18 height=22 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=989 x=231 y=341 width=21 height=22 xoffset=-6 yoffset=3 xadvance=15 page=0 chnl=0 +char id=990 x=252 y=341 width=20 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=991 x=463 y=81 width=16 height=25 xoffset=-4 yoffset=-1 xadvance=14 page=0 chnl=0 +char id=993 x=479 y=81 width=20 height=25 xoffset=-5 yoffset=-1 xadvance=17 page=0 chnl=0 +char id=994 x=0 y=106 width=27 height=25 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=995 x=272 y=341 width=22 height=22 xoffset=-5 yoffset=3 xadvance=19 page=0 chnl=0 +char id=996 x=42 y=180 width=21 height=24 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=997 x=294 y=341 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=998 x=63 y=180 width=20 height=24 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1000 x=468 y=228 width=20 height=23 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1002 x=313 y=341 width=23 height=22 xoffset=-5 yoffset=0 xadvance=21 page=0 chnl=0 +char id=1004 x=83 y=180 width=23 height=24 xoffset=-4 yoffset=-2 xadvance=17 page=0 chnl=0 +char id=1006 x=362 y=30 width=20 height=26 xoffset=-4 yoffset=-2 xadvance=18 page=0 chnl=0 +char id=1007 x=106 y=180 width=17 height=24 xoffset=-4 yoffset=1 xadvance=15 page=0 chnl=0 +char id=1009 x=336 y=341 width=19 height=22 xoffset=-5 yoffset=3 xadvance=17 page=0 chnl=0 +char id=1011 x=27 y=106 width=18 height=25 xoffset=-7 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1012 x=355 y=341 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1016 x=45 y=106 width=18 height=25 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1017 x=377 y=341 width=21 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1019 x=398 y=341 width=22 height=22 xoffset=-5 yoffset=3 xadvance=19 page=0 chnl=0 +char id=1020 x=420 y=341 width=22 height=22 xoffset=-7 yoffset=3 xadvance=17 page=0 chnl=0 +char id=1021 x=442 y=341 width=22 height=22 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1022 x=464 y=341 width=21 height=22 xoffset=-4 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1023 x=485 y=341 width=22 height=22 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1024 x=63 y=106 width=25 height=25 xoffset=-5 yoffset=-4 xadvance=18 page=0 chnl=0 +char id=1025 x=123 y=180 width=25 height=24 xoffset=-5 yoffset=-3 xadvance=18 page=0 chnl=0 +char id=1026 x=0 y=363 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1027 x=88 y=106 width=24 height=25 xoffset=-5 yoffset=-4 xadvance=17 page=0 chnl=0 +char id=1028 x=22 y=363 width=21 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1029 x=43 y=363 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1031 x=148 y=180 width=23 height=24 xoffset=-5 yoffset=-3 xadvance=13 page=0 chnl=0 +char id=1032 x=62 y=363 width=19 height=22 xoffset=-5 yoffset=0 xadvance=14 page=0 chnl=0 +char id=1033 x=81 y=363 width=26 height=22 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=1035 x=107 y=363 width=22 height=22 xoffset=-4 yoffset=0 xadvance=21 page=0 chnl=0 +char id=1036 x=112 y=106 width=24 height=25 xoffset=-5 yoffset=-4 xadvance=19 page=0 chnl=0 +char id=1037 x=136 y=106 width=25 height=25 xoffset=-5 yoffset=-4 xadvance=20 page=0 chnl=0 +char id=1038 x=161 y=106 width=25 height=25 xoffset=-4 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=1039 x=171 y=180 width=25 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1044 x=196 y=180 width=24 height=24 xoffset=-6 yoffset=0 xadvance=18 page=0 chnl=0 +char id=1047 x=129 y=363 width=21 height=22 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1049 x=220 y=180 width=25 height=24 xoffset=-5 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=1051 x=150 y=363 width=24 height=22 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1054 x=174 y=363 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1057 x=196 y=363 width=21 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1059 x=217 y=363 width=25 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1062 x=245 y=180 width=25 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1065 x=270 y=180 width=29 height=24 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1069 x=242 y=363 width=22 height=22 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1070 x=264 y=363 width=27 height=22 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=1073 x=488 y=228 width=18 height=23 xoffset=-4 yoffset=-1 xadvance=16 page=0 chnl=0 +char id=1074 x=187 y=493 width=18 height=18 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=1075 x=205 y=493 width=19 height=18 xoffset=-5 yoffset=3 xadvance=14 page=0 chnl=0 +char id=1078 x=224 y=493 width=22 height=18 xoffset=-5 yoffset=3 xadvance=19 page=0 chnl=0 +char id=1080 x=246 y=493 width=21 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1082 x=267 y=493 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1085 x=286 y=493 width=21 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1087 x=307 y=493 width=21 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1088 x=291 y=363 width=20 height=22 xoffset=-6 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1090 x=328 y=493 width=17 height=18 xoffset=-4 yoffset=3 xadvance=15 page=0 chnl=0 +char id=1091 x=311 y=363 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1092 x=186 y=106 width=22 height=25 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1093 x=345 y=493 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1095 x=364 y=493 width=20 height=18 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1096 x=384 y=493 width=25 height=18 xoffset=-5 yoffset=3 xadvance=20 page=0 chnl=0 +char id=1098 x=409 y=493 width=18 height=18 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1099 x=427 y=493 width=23 height=18 xoffset=-5 yoffset=3 xadvance=18 page=0 chnl=0 +char id=1100 x=450 y=493 width=17 height=18 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=1103 x=467 y=493 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1104 x=330 y=363 width=19 height=22 xoffset=-4 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1105 x=349 y=363 width=21 height=22 xoffset=-4 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1106 x=208 y=106 width=18 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1110 x=496 y=451 width=15 height=21 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1112 x=226 y=106 width=18 height=25 xoffset=-7 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1114 x=486 y=493 width=22 height=18 xoffset=-5 yoffset=3 xadvance=19 page=0 chnl=0 +char id=1118 x=244 y=106 width=24 height=25 xoffset=-6 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1120 x=370 y=363 width=26 height=22 xoffset=-4 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1124 x=396 y=363 width=28 height=22 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=1134 x=46 y=0 width=21 height=28 xoffset=-5 yoffset=-3 xadvance=16 page=0 chnl=0 +char id=1135 x=0 y=252 width=19 height=23 xoffset=-5 yoffset=1 xadvance=14 page=0 chnl=0 +char id=1137 x=268 y=106 width=21 height=25 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1138 x=424 y=363 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1140 x=446 y=363 width=23 height=22 xoffset=-3 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1142 x=289 y=106 width=25 height=25 xoffset=-3 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=1143 x=469 y=363 width=23 height=22 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1144 x=314 y=106 width=31 height=25 xoffset=-4 yoffset=0 xadvance=27 page=0 chnl=0 +char id=1145 x=0 y=385 width=28 height=22 xoffset=-5 yoffset=3 xadvance=23 page=0 chnl=0 +char id=1146 x=299 y=180 width=24 height=24 xoffset=-4 yoffset=-1 xadvance=22 page=0 chnl=0 +char id=1148 x=382 y=30 width=26 height=26 xoffset=-4 yoffset=-4 xadvance=24 page=0 chnl=0 +char id=1149 x=19 y=252 width=24 height=23 xoffset=-5 yoffset=-1 xadvance=19 page=0 chnl=0 +char id=1150 x=345 y=106 width=26 height=25 xoffset=-4 yoffset=-3 xadvance=24 page=0 chnl=0 +char id=1160 x=104 y=0 width=41 height=27 xoffset=-16 yoffset=-3 xadvance=8 page=0 chnl=0 +char id=1161 x=0 y=0 width=46 height=30 xoffset=-17 yoffset=-4 xadvance=8 page=0 chnl=0 +char id=1162 x=145 y=0 width=24 height=27 xoffset=-5 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=1163 x=323 y=180 width=21 height=24 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1167 x=28 y=385 width=20 height=22 xoffset=-6 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1168 x=43 y=252 width=22 height=23 xoffset=-5 yoffset=-2 xadvance=17 page=0 chnl=0 +char id=1172 x=371 y=106 width=21 height=25 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=1173 x=492 y=363 width=18 height=22 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=1174 x=344 y=180 width=26 height=24 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1176 x=392 y=106 width=21 height=25 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1178 x=370 y=180 width=22 height=24 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1186 x=392 y=180 width=25 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1190 x=413 y=106 width=27 height=25 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1191 x=48 y=385 width=22 height=22 xoffset=-5 yoffset=3 xadvance=20 page=0 chnl=0 +char id=1192 x=70 y=385 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1194 x=440 y=106 width=21 height=25 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1196 x=417 y=180 width=22 height=24 xoffset=-4 yoffset=0 xadvance=18 page=0 chnl=0 +char id=1199 x=92 y=385 width=21 height=22 xoffset=-4 yoffset=3 xadvance=17 page=0 chnl=0 +char id=1201 x=113 y=385 width=21 height=22 xoffset=-4 yoffset=3 xadvance=17 page=0 chnl=0 +char id=1202 x=439 y=180 width=24 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1204 x=463 y=180 width=27 height=24 xoffset=-4 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1206 x=0 y=204 width=22 height=24 xoffset=-3 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1212 x=134 y=385 width=24 height=22 xoffset=-4 yoffset=0 xadvance=22 page=0 chnl=0 +char id=1214 x=22 y=204 width=24 height=24 xoffset=-4 yoffset=0 xadvance=22 page=0 chnl=0 +char id=1217 x=46 y=204 width=26 height=24 xoffset=-5 yoffset=-3 xadvance=23 page=0 chnl=0 +char id=1219 x=461 y=106 width=23 height=25 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=1220 x=158 y=385 width=20 height=22 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=1221 x=72 y=204 width=24 height=24 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1223 x=96 y=204 width=25 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1224 x=178 y=385 width=20 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1225 x=121 y=204 width=25 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1227 x=146 y=204 width=22 height=24 xoffset=-3 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1229 x=168 y=204 width=27 height=24 xoffset=-5 yoffset=0 xadvance=22 page=0 chnl=0 +char id=1232 x=195 y=204 width=22 height=24 xoffset=-5 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=1233 x=198 y=385 width=19 height=22 xoffset=-4 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1234 x=217 y=204 width=24 height=24 xoffset=-5 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=1238 x=241 y=204 width=25 height=24 xoffset=-5 yoffset=-3 xadvance=18 page=0 chnl=0 +char id=1239 x=217 y=385 width=20 height=22 xoffset=-5 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1240 x=237 y=385 width=22 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1242 x=484 y=106 width=22 height=25 xoffset=-4 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=1244 x=266 y=204 width=26 height=24 xoffset=-5 yoffset=-3 xadvance=23 page=0 chnl=0 +char id=1246 x=0 y=131 width=23 height=25 xoffset=-5 yoffset=-3 xadvance=17 page=0 chnl=0 +char id=1248 x=259 y=385 width=21 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1250 x=65 y=252 width=25 height=23 xoffset=-5 yoffset=-2 xadvance=20 page=0 chnl=0 +char id=1252 x=90 y=252 width=25 height=23 xoffset=-5 yoffset=-2 xadvance=20 page=0 chnl=0 +char id=1254 x=23 y=131 width=24 height=25 xoffset=-4 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=1256 x=280 y=385 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1258 x=47 y=131 width=22 height=25 xoffset=-4 yoffset=-3 xadvance=20 page=0 chnl=0 +char id=1260 x=69 y=131 width=22 height=25 xoffset=-5 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=1262 x=292 y=204 width=25 height=24 xoffset=-4 yoffset=-2 xadvance=19 page=0 chnl=0 +char id=1263 x=317 y=204 width=24 height=24 xoffset=-6 yoffset=1 xadvance=16 page=0 chnl=0 +char id=1264 x=91 y=131 width=25 height=25 xoffset=-4 yoffset=-3 xadvance=19 page=0 chnl=0 +char id=1265 x=341 y=204 width=24 height=24 xoffset=-6 yoffset=1 xadvance=16 page=0 chnl=0 +char id=1266 x=408 y=30 width=31 height=26 xoffset=-4 yoffset=-4 xadvance=19 page=0 chnl=0 +char id=1267 x=116 y=131 width=30 height=25 xoffset=-6 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1268 x=115 y=252 width=22 height=23 xoffset=-3 yoffset=-2 xadvance=19 page=0 chnl=0 +char id=1270 x=365 y=204 width=22 height=24 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1272 x=387 y=204 width=33 height=24 xoffset=-5 yoffset=-3 xadvance=22 page=0 chnl=0 +char id=1274 x=146 y=131 width=22 height=25 xoffset=-5 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1275 x=302 y=385 width=19 height=22 xoffset=-5 yoffset=3 xadvance=14 page=0 chnl=0 +char id=1276 x=420 y=204 width=24 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1277 x=321 y=385 width=20 height=22 xoffset=-5 yoffset=3 xadvance=15 page=0 chnl=0 +char id=1281 x=341 y=385 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1283 x=360 y=385 width=21 height=22 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=1284 x=381 y=385 width=23 height=22 xoffset=-4 yoffset=0 xadvance=21 page=0 chnl=0 +char id=1286 x=490 y=180 width=18 height=24 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1288 x=404 y=385 width=28 height=22 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=1290 x=432 y=385 width=28 height=22 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=1292 x=460 y=385 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1294 x=482 y=385 width=23 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1296 x=0 y=407 width=19 height=22 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1298 x=444 y=204 width=24 height=24 xoffset=-5 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1299 x=19 y=407 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1300 x=38 y=407 width=28 height=22 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=1303 x=66 y=407 width=23 height=22 xoffset=-6 yoffset=3 xadvance=19 page=0 chnl=0 +char id=1306 x=468 y=204 width=22 height=24 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1307 x=89 y=407 width=19 height=22 xoffset=-5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=1308 x=108 y=407 width=27 height=22 xoffset=-4 yoffset=0 xadvance=23 page=0 chnl=0 +char id=1312 x=168 y=131 width=26 height=25 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1313 x=135 y=407 width=22 height=22 xoffset=-5 yoffset=3 xadvance=19 page=0 chnl=0 +char id=1314 x=194 y=131 width=27 height=25 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=1315 x=157 y=407 width=22 height=22 xoffset=-5 yoffset=3 xadvance=20 page=0 chnl=0 +char id=8192 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8193 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=8194 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8195 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=8196 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=13 page=0 chnl=0 +char id=8197 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=8198 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8199 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8200 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=8201 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8202 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=10 page=0 chnl=0 +char id=8203 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8204 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8214 x=496 y=472 width=15 height=21 xoffset=-5 yoffset=2 xadvance=13 page=0 chnl=0 +char id=8224 x=490 y=204 width=17 height=24 xoffset=-3 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8225 x=0 y=228 width=18 height=24 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8239 x=0 y=0 width=0 height=0 xoffset=-5 yoffset=0 xadvance=12 page=0 chnl=0 +char id=8240 x=137 y=252 width=26 height=23 xoffset=-4 yoffset=-1 xadvance=24 page=0 chnl=0 +char id=8252 x=179 y=407 width=19 height=22 xoffset=-3 yoffset=0 xadvance=19 page=0 chnl=0 +char id=8260 x=198 y=407 width=27 height=22 xoffset=-8 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8286 x=18 y=228 width=14 height=24 xoffset=-5 yoffset=-2 xadvance=11 page=0 chnl=0 +char id=8352 x=225 y=407 width=19 height=22 xoffset=-3 yoffset=-1 xadvance=19 page=0 chnl=0 +char id=8353 x=439 y=30 width=21 height=26 xoffset=-4 yoffset=-2 xadvance=19 page=0 chnl=0 +char id=8354 x=244 y=407 width=21 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=8356 x=265 y=407 width=19 height=22 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8357 x=284 y=407 width=23 height=22 xoffset=-5 yoffset=1 xadvance=20 page=0 chnl=0 +char id=8358 x=307 y=407 width=25 height=22 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=8359 x=332 y=407 width=26 height=22 xoffset=-5 yoffset=0 xadvance=23 page=0 chnl=0 +char id=8360 x=358 y=407 width=27 height=22 xoffset=-5 yoffset=0 xadvance=24 page=0 chnl=0 +char id=8361 x=385 y=407 width=25 height=22 xoffset=-4 yoffset=0 xadvance=21 page=0 chnl=0 +char id=8363 x=32 y=228 width=20 height=24 xoffset=-4 yoffset=-2 xadvance=16 page=0 chnl=0 +char id=8364 x=410 y=407 width=22 height=22 xoffset=-4 yoffset=0 xadvance=20 page=0 chnl=0 +char id=8367 x=221 y=131 width=32 height=25 xoffset=-5 yoffset=0 xadvance=29 page=0 chnl=0 +char id=8368 x=253 y=131 width=18 height=25 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8370 x=163 y=252 width=20 height=23 xoffset=-4 yoffset=-1 xadvance=18 page=0 chnl=0 +char id=8372 x=432 y=407 width=19 height=22 xoffset=-4 yoffset=0 xadvance=17 page=0 chnl=0 +char id=8373 x=52 y=228 width=20 height=24 xoffset=-4 yoffset=-1 xadvance=18 page=0 chnl=0 +char id=11364 x=271 y=131 width=20 height=25 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=11366 x=451 y=407 width=16 height=22 xoffset=-5 yoffset=1 xadvance=13 page=0 chnl=0 +char id=11367 x=72 y=228 width=25 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=11368 x=183 y=252 width=18 height=23 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=11369 x=97 y=228 width=23 height=24 xoffset=-5 yoffset=0 xadvance=20 page=0 chnl=0 +char id=11370 x=201 y=252 width=19 height=23 xoffset=-5 yoffset=0 xadvance=16 page=0 chnl=0 +char id=11371 x=120 y=228 width=23 height=24 xoffset=-5 yoffset=0 xadvance=18 page=0 chnl=0 +char id=11373 x=467 y=407 width=21 height=22 xoffset=-4 yoffset=0 xadvance=19 page=0 chnl=0 +char id=11378 x=0 y=429 width=29 height=22 xoffset=-4 yoffset=0 xadvance=25 page=0 chnl=0 +char id=34 x=261 y=183 width=15 height=15 xoffset=-3 yoffset=0 xadvance=15 page=1 chnl=0 +char id=42 x=57 y=183 width=17 height=17 xoffset=-3 yoffset=0 xadvance=16 page=1 chnl=0 +char id=43 x=98 y=125 width=19 height=19 xoffset=-4 yoffset=2 xadvance=17 page=1 chnl=0 +char id=44 x=276 y=183 width=14 height=15 xoffset=-5 yoffset=9 xadvance=12 page=1 chnl=0 +char id=45 x=346 y=201 width=15 height=12 xoffset=-4 yoffset=6 xadvance=13 page=1 chnl=0 +char id=46 x=175 y=201 width=13 height=13 xoffset=-4 yoffset=9 xadvance=12 page=1 chnl=0 +char id=58 x=117 y=125 width=14 height=19 xoffset=-4 yoffset=3 xadvance=12 page=1 chnl=0 +char id=60 x=487 y=84 width=21 height=20 xoffset=-4 yoffset=2 xadvance=17 page=1 chnl=0 +char id=61 x=207 y=183 width=20 height=16 xoffset=-5 yoffset=4 xadvance=17 page=1 chnl=0 +char id=62 x=0 y=105 width=20 height=20 xoffset=-5 yoffset=2 xadvance=17 page=1 chnl=0 +char id=94 x=74 y=183 width=17 height=17 xoffset=-4 yoffset=0 xadvance=16 page=1 chnl=0 +char id=95 x=476 y=201 width=19 height=11 xoffset=-6 yoffset=12 xadvance=16 page=1 chnl=0 +char id=96 x=188 y=201 width=14 height=13 xoffset=-3 yoffset=0 xadvance=13 page=1 chnl=0 +char id=97 x=131 y=125 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=99 x=149 y=125 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=101 x=167 y=125 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=111 x=185 y=125 width=18 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=115 x=203 y=125 width=17 height=19 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=117 x=220 y=125 width=17 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=118 x=237 y=125 width=18 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=119 x=255 y=125 width=22 height=19 xoffset=-4 yoffset=3 xadvance=20 page=1 chnl=0 +char id=126 x=41 y=201 width=18 height=14 xoffset=-4 yoffset=5 xadvance=17 page=1 chnl=0 +char id=164 x=277 y=125 width=21 height=19 xoffset=-5 yoffset=1 xadvance=16 page=1 chnl=0 +char id=168 x=361 y=201 width=17 height=12 xoffset=-4 yoffset=1 xadvance=13 page=1 chnl=0 +char id=170 x=290 y=183 width=16 height=15 xoffset=-4 yoffset=0 xadvance=12 page=1 chnl=0 +char id=171 x=91 y=183 width=18 height=17 xoffset=-5 yoffset=4 xadvance=15 page=1 chnl=0 +char id=172 x=227 y=183 width=19 height=16 xoffset=-4 yoffset=4 xadvance=17 page=1 chnl=0 +char id=173 x=378 y=201 width=15 height=12 xoffset=-4 yoffset=6 xadvance=13 page=1 chnl=0 +char id=175 x=393 y=201 width=17 height=12 xoffset=-4 yoffset=1 xadvance=13 page=1 chnl=0 +char id=176 x=306 y=183 width=17 height=15 xoffset=-3 yoffset=0 xadvance=14 page=1 chnl=0 +char id=178 x=109 y=183 width=17 height=17 xoffset=-4 yoffset=0 xadvance=13 page=1 chnl=0 +char id=179 x=126 y=183 width=17 height=17 xoffset=-4 yoffset=0 xadvance=13 page=1 chnl=0 +char id=180 x=202 y=201 width=16 height=13 xoffset=-3 yoffset=0 xadvance=13 page=1 chnl=0 +char id=183 x=218 y=201 width=13 height=13 xoffset=-4 yoffset=6 xadvance=12 page=1 chnl=0 +char id=184 x=323 y=183 width=14 height=15 xoffset=-5 yoffset=10 xadvance=13 page=1 chnl=0 +char id=185 x=143 y=183 width=15 height=17 xoffset=-4 yoffset=0 xadvance=13 page=1 chnl=0 +char id=186 x=337 y=183 width=17 height=15 xoffset=-4 yoffset=0 xadvance=13 page=1 chnl=0 +char id=187 x=158 y=183 width=19 height=17 xoffset=-5 yoffset=4 xadvance=15 page=1 chnl=0 +char id=230 x=298 y=125 width=21 height=19 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=239 x=20 y=105 width=19 height=20 xoffset=-5 yoffset=1 xadvance=12 page=1 chnl=0 +char id=247 x=39 y=105 width=19 height=20 xoffset=-4 yoffset=2 xadvance=17 page=1 chnl=0 +char id=297 x=58 y=105 width=19 height=20 xoffset=-5 yoffset=1 xadvance=12 page=1 chnl=0 +char id=299 x=77 y=105 width=22 height=20 xoffset=-5 yoffset=1 xadvance=12 page=1 chnl=0 +char id=339 x=319 y=125 width=21 height=19 xoffset=-4 yoffset=3 xadvance=19 page=1 chnl=0 +char id=380 x=99 y=105 width=18 height=20 xoffset=-5 yoffset=1 xadvance=15 page=1 chnl=0 +char id=884 x=354 y=183 width=15 height=15 xoffset=-4 yoffset=-2 xadvance=11 page=1 chnl=0 +char id=885 x=59 y=201 width=14 height=14 xoffset=-5 yoffset=11 xadvance=11 page=1 chnl=0 +char id=890 x=73 y=201 width=14 height=14 xoffset=-4 yoffset=11 xadvance=13 page=1 chnl=0 +char id=900 x=369 y=183 width=15 height=15 xoffset=-3 yoffset=-2 xadvance=12 page=1 chnl=0 +char id=901 x=87 y=201 width=17 height=14 xoffset=-4 yoffset=-1 xadvance=13 page=1 chnl=0 +char id=903 x=231 y=201 width=13 height=13 xoffset=-3 yoffset=3 xadvance=12 page=1 chnl=0 +char id=914 x=0 y=0 width=21 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=915 x=21 y=0 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=916 x=43 y=0 width=21 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=917 x=64 y=0 width=21 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=918 x=85 y=0 width=23 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=919 x=108 y=0 width=25 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=921 x=133 y=0 width=18 height=21 xoffset=-5 yoffset=0 xadvance=13 page=1 chnl=0 +char id=922 x=151 y=0 width=23 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=923 x=174 y=0 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=924 x=196 y=0 width=27 height=21 xoffset=-5 yoffset=0 xadvance=22 page=1 chnl=0 +char id=926 x=223 y=0 width=21 height=21 xoffset=-4 yoffset=0 xadvance=18 page=1 chnl=0 +char id=928 x=244 y=0 width=25 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=929 x=269 y=0 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=931 x=291 y=0 width=21 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=932 x=312 y=0 width=22 height=21 xoffset=-4 yoffset=0 xadvance=18 page=1 chnl=0 +char id=933 x=334 y=0 width=22 height=21 xoffset=-3 yoffset=0 xadvance=19 page=1 chnl=0 +char id=934 x=356 y=0 width=22 height=21 xoffset=-4 yoffset=0 xadvance=20 page=1 chnl=0 +char id=935 x=378 y=0 width=24 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=936 x=402 y=0 width=25 height=21 xoffset=-4 yoffset=0 xadvance=21 page=1 chnl=0 +char id=937 x=427 y=0 width=23 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=945 x=340 y=125 width=19 height=19 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=949 x=359 y=125 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=953 x=377 y=125 width=14 height=19 xoffset=-4 yoffset=3 xadvance=13 page=1 chnl=0 +char id=959 x=391 y=125 width=18 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=960 x=409 y=125 width=22 height=19 xoffset=-5 yoffset=3 xadvance=17 page=1 chnl=0 +char id=963 x=431 y=125 width=19 height=19 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=964 x=450 y=125 width=17 height=19 xoffset=-4 yoffset=3 xadvance=15 page=1 chnl=0 +char id=965 x=467 y=125 width=18 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=969 x=485 y=125 width=21 height=19 xoffset=-4 yoffset=3 xadvance=19 page=1 chnl=0 +char id=978 x=450 y=0 width=22 height=21 xoffset=-4 yoffset=0 xadvance=18 page=1 chnl=0 +char id=982 x=117 y=105 width=21 height=20 xoffset=-4 yoffset=2 xadvance=19 page=1 chnl=0 +char id=983 x=472 y=0 width=18 height=21 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=984 x=490 y=0 width=21 height=21 xoffset=-4 yoffset=0 xadvance=17 page=1 chnl=0 +char id=986 x=0 y=21 width=20 height=21 xoffset=-4 yoffset=0 xadvance=18 page=1 chnl=0 +char id=988 x=20 y=21 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=992 x=42 y=21 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=999 x=138 y=105 width=18 height=20 xoffset=-5 yoffset=2 xadvance=15 page=1 chnl=0 +char id=1001 x=156 y=105 width=18 height=20 xoffset=-5 yoffset=3 xadvance=13 page=1 chnl=0 +char id=1003 x=0 y=145 width=20 height=19 xoffset=-5 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1005 x=174 y=105 width=20 height=20 xoffset=-5 yoffset=2 xadvance=15 page=1 chnl=0 +char id=1008 x=20 y=145 width=18 height=19 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1010 x=38 y=145 width=17 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1013 x=55 y=145 width=16 height=19 xoffset=-4 yoffset=3 xadvance=14 page=1 chnl=0 +char id=1014 x=71 y=145 width=17 height=19 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=1015 x=64 y=21 width=20 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1018 x=84 y=21 width=27 height=21 xoffset=-5 yoffset=0 xadvance=22 page=1 chnl=0 +char id=1030 x=111 y=21 width=18 height=21 xoffset=-5 yoffset=0 xadvance=13 page=1 chnl=0 +char id=1034 x=129 y=21 width=26 height=21 xoffset=-5 yoffset=0 xadvance=24 page=1 chnl=0 +char id=1040 x=155 y=21 width=22 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1041 x=177 y=21 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1042 x=199 y=21 width=21 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=1043 x=220 y=21 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1045 x=242 y=21 width=21 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=1046 x=263 y=21 width=26 height=21 xoffset=-5 yoffset=0 xadvance=23 page=1 chnl=0 +char id=1048 x=289 y=21 width=25 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1050 x=314 y=21 width=22 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1052 x=336 y=21 width=27 height=21 xoffset=-5 yoffset=0 xadvance=22 page=1 chnl=0 +char id=1053 x=363 y=21 width=25 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1055 x=388 y=21 width=25 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1056 x=413 y=21 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1058 x=435 y=21 width=22 height=21 xoffset=-4 yoffset=0 xadvance=18 page=1 chnl=0 +char id=1060 x=457 y=21 width=22 height=21 xoffset=-4 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1061 x=479 y=21 width=25 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1063 x=0 y=42 width=22 height=21 xoffset=-3 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1064 x=22 y=42 width=29 height=21 xoffset=-5 yoffset=0 xadvance=24 page=1 chnl=0 +char id=1066 x=51 y=42 width=21 height=21 xoffset=-4 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1067 x=72 y=42 width=29 height=21 xoffset=-5 yoffset=0 xadvance=22 page=1 chnl=0 +char id=1068 x=101 y=42 width=20 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1071 x=121 y=42 width=23 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=1072 x=88 y=145 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1076 x=194 y=105 width=20 height=20 xoffset=-6 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1077 x=106 y=145 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1079 x=124 y=145 width=17 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1081 x=144 y=42 width=21 height=21 xoffset=-5 yoffset=0 xadvance=16 page=1 chnl=0 +char id=1083 x=141 y=145 width=19 height=19 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1084 x=160 y=145 width=23 height=19 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1086 x=183 y=145 width=18 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1089 x=201 y=145 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1094 x=214 y=105 width=21 height=20 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1097 x=235 y=105 width=25 height=20 xoffset=-5 yoffset=3 xadvance=20 page=1 chnl=0 +char id=1101 x=219 y=145 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1102 x=237 y=145 width=21 height=19 xoffset=-5 yoffset=3 xadvance=19 page=1 chnl=0 +char id=1107 x=165 y=42 width=23 height=21 xoffset=-5 yoffset=0 xadvance=14 page=1 chnl=0 +char id=1108 x=258 y=145 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1109 x=276 y=145 width=16 height=19 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=1111 x=188 y=42 width=22 height=21 xoffset=-5 yoffset=0 xadvance=12 page=1 chnl=0 +char id=1113 x=292 y=145 width=21 height=19 xoffset=-5 yoffset=3 xadvance=19 page=1 chnl=0 +char id=1115 x=210 y=42 width=19 height=21 xoffset=-5 yoffset=0 xadvance=16 page=1 chnl=0 +char id=1116 x=229 y=42 width=21 height=21 xoffset=-5 yoffset=0 xadvance=16 page=1 chnl=0 +char id=1117 x=250 y=42 width=21 height=21 xoffset=-5 yoffset=0 xadvance=16 page=1 chnl=0 +char id=1119 x=271 y=42 width=21 height=21 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1121 x=313 y=145 width=21 height=19 xoffset=-5 yoffset=3 xadvance=19 page=1 chnl=0 +char id=1122 x=292 y=42 width=21 height=21 xoffset=-4 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1123 x=313 y=42 width=18 height=21 xoffset=-4 yoffset=0 xadvance=16 page=1 chnl=0 +char id=1125 x=334 y=145 width=22 height=19 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1126 x=331 y=42 width=25 height=21 xoffset=-5 yoffset=0 xadvance=22 page=1 chnl=0 +char id=1127 x=285 y=164 width=21 height=18 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1128 x=356 y=42 width=30 height=21 xoffset=-5 yoffset=0 xadvance=28 page=1 chnl=0 +char id=1129 x=306 y=164 width=25 height=18 xoffset=-5 yoffset=3 xadvance=22 page=1 chnl=0 +char id=1130 x=386 y=42 width=25 height=21 xoffset=-5 yoffset=0 xadvance=23 page=1 chnl=0 +char id=1131 x=331 y=164 width=21 height=18 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1132 x=411 y=42 width=31 height=21 xoffset=-5 yoffset=0 xadvance=28 page=1 chnl=0 +char id=1133 x=352 y=164 width=25 height=18 xoffset=-5 yoffset=3 xadvance=23 page=1 chnl=0 +char id=1136 x=442 y=42 width=26 height=21 xoffset=-4 yoffset=0 xadvance=22 page=1 chnl=0 +char id=1139 x=356 y=145 width=19 height=19 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1141 x=375 y=145 width=19 height=19 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1147 x=394 y=145 width=21 height=19 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1151 x=468 y=42 width=21 height=21 xoffset=-5 yoffset=1 xadvance=19 page=1 chnl=0 +char id=1152 x=489 y=42 width=20 height=21 xoffset=-4 yoffset=0 xadvance=18 page=1 chnl=0 +char id=1153 x=0 y=63 width=18 height=21 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1154 x=246 y=183 width=15 height=16 xoffset=-6 yoffset=9 xadvance=12 page=1 chnl=0 +char id=1155 x=244 y=201 width=20 height=13 xoffset=-9 yoffset=0 xadvance=8 page=1 chnl=0 +char id=1156 x=264 y=201 width=24 height=13 xoffset=-11 yoffset=0 xadvance=8 page=1 chnl=0 +char id=1157 x=288 y=201 width=18 height=13 xoffset=-8 yoffset=0 xadvance=8 page=1 chnl=0 +char id=1158 x=306 y=201 width=18 height=13 xoffset=-8 yoffset=0 xadvance=8 page=1 chnl=0 +char id=1159 x=104 y=201 width=26 height=14 xoffset=-11 yoffset=-3 xadvance=8 page=1 chnl=0 +char id=1164 x=18 y=63 width=20 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1165 x=377 y=164 width=17 height=18 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1166 x=38 y=63 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1169 x=415 y=145 width=19 height=19 xoffset=-5 yoffset=2 xadvance=14 page=1 chnl=0 +char id=1170 x=60 y=63 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1171 x=394 y=164 width=19 height=18 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=1175 x=260 y=105 width=22 height=20 xoffset=-5 yoffset=3 xadvance=19 page=1 chnl=0 +char id=1177 x=82 y=63 width=17 height=21 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=1179 x=282 y=105 width=19 height=20 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1180 x=99 y=63 width=23 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1181 x=413 y=164 width=19 height=18 xoffset=-5 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1182 x=122 y=63 width=22 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1183 x=432 y=164 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1184 x=144 y=63 width=23 height=21 xoffset=-4 yoffset=0 xadvance=21 page=1 chnl=0 +char id=1185 x=451 y=164 width=19 height=18 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1187 x=301 y=105 width=21 height=20 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1188 x=167 y=63 width=28 height=21 xoffset=-5 yoffset=0 xadvance=23 page=1 chnl=0 +char id=1189 x=470 y=164 width=23 height=18 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1193 x=434 y=145 width=19 height=19 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1195 x=195 y=63 width=18 height=21 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1197 x=322 y=105 width=19 height=20 xoffset=-4 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1198 x=213 y=63 width=23 height=21 xoffset=-3 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1200 x=236 y=63 width=23 height=21 xoffset=-3 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1203 x=341 y=105 width=19 height=20 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1205 x=360 y=105 width=23 height=20 xoffset=-4 yoffset=3 xadvance=19 page=1 chnl=0 +char id=1207 x=383 y=105 width=20 height=20 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1208 x=259 y=63 width=23 height=21 xoffset=-3 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1209 x=0 y=183 width=19 height=18 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1210 x=282 y=63 width=21 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1211 x=303 y=63 width=18 height=21 xoffset=-5 yoffset=0 xadvance=16 page=1 chnl=0 +char id=1213 x=453 y=145 width=19 height=19 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1215 x=321 y=63 width=19 height=21 xoffset=-4 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1216 x=340 y=63 width=18 height=21 xoffset=-5 yoffset=0 xadvance=13 page=1 chnl=0 +char id=1218 x=358 y=63 width=22 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1222 x=380 y=63 width=19 height=21 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1226 x=399 y=63 width=20 height=21 xoffset=-5 yoffset=3 xadvance=17 page=1 chnl=0 +char id=1228 x=403 y=105 width=20 height=20 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1230 x=419 y=63 width=23 height=21 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1231 x=442 y=63 width=22 height=21 xoffset=-5 yoffset=0 xadvance=13 page=1 chnl=0 +char id=1235 x=464 y=63 width=21 height=21 xoffset=-4 yoffset=1 xadvance=15 page=1 chnl=0 +char id=1236 x=0 y=84 width=27 height=21 xoffset=-5 yoffset=0 xadvance=22 page=1 chnl=0 +char id=1237 x=472 y=145 width=21 height=19 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1241 x=493 y=145 width=17 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1243 x=485 y=63 width=22 height=21 xoffset=-5 yoffset=1 xadvance=15 page=1 chnl=0 +char id=1245 x=423 y=105 width=22 height=20 xoffset=-5 yoffset=1 xadvance=19 page=1 chnl=0 +char id=1247 x=27 y=84 width=22 height=21 xoffset=-5 yoffset=1 xadvance=15 page=1 chnl=0 +char id=1249 x=0 y=164 width=17 height=19 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=1251 x=445 y=105 width=23 height=20 xoffset=-5 yoffset=1 xadvance=16 page=1 chnl=0 +char id=1253 x=468 y=105 width=23 height=20 xoffset=-5 yoffset=1 xadvance=16 page=1 chnl=0 +char id=1255 x=49 y=84 width=20 height=21 xoffset=-4 yoffset=1 xadvance=16 page=1 chnl=0 +char id=1257 x=17 y=164 width=19 height=19 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1259 x=69 y=84 width=21 height=21 xoffset=-5 yoffset=1 xadvance=16 page=1 chnl=0 +char id=1261 x=90 y=84 width=22 height=21 xoffset=-5 yoffset=1 xadvance=15 page=1 chnl=0 +char id=1269 x=491 y=105 width=20 height=20 xoffset=-4 yoffset=1 xadvance=16 page=1 chnl=0 +char id=1271 x=0 y=125 width=19 height=20 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=1273 x=19 y=125 width=23 height=20 xoffset=-5 yoffset=1 xadvance=18 page=1 chnl=0 +char id=1278 x=112 y=84 width=24 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=1279 x=19 y=183 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1280 x=136 y=84 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=1282 x=158 y=84 width=27 height=21 xoffset=-5 yoffset=0 xadvance=22 page=1 chnl=0 +char id=1285 x=36 y=164 width=18 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1287 x=185 y=84 width=17 height=21 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1289 x=54 y=164 width=21 height=19 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1291 x=75 y=164 width=22 height=19 xoffset=-5 yoffset=3 xadvance=19 page=1 chnl=0 +char id=1293 x=97 y=164 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1295 x=115 y=164 width=18 height=19 xoffset=-4 yoffset=3 xadvance=16 page=1 chnl=0 +char id=1297 x=133 y=164 width=18 height=19 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=1301 x=151 y=164 width=21 height=19 xoffset=-5 yoffset=3 xadvance=18 page=1 chnl=0 +char id=1302 x=202 y=84 width=26 height=21 xoffset=-5 yoffset=0 xadvance=21 page=1 chnl=0 +char id=1304 x=228 y=84 width=28 height=21 xoffset=-5 yoffset=0 xadvance=23 page=1 chnl=0 +char id=1305 x=172 y=164 width=23 height=19 xoffset=-5 yoffset=3 xadvance=20 page=1 chnl=0 +char id=1309 x=195 y=164 width=23 height=19 xoffset=-4 yoffset=3 xadvance=19 page=1 chnl=0 +char id=1310 x=256 y=84 width=22 height=21 xoffset=-5 yoffset=0 xadvance=19 page=1 chnl=0 +char id=1311 x=38 y=183 width=19 height=18 xoffset=-5 yoffset=3 xadvance=16 page=1 chnl=0 +char id=8210 x=410 y=201 width=19 height=12 xoffset=-5 yoffset=6 xadvance=16 page=1 chnl=0 +char id=8211 x=410 y=201 width=19 height=12 xoffset=-5 yoffset=6 xadvance=16 page=1 chnl=0 +char id=8212 x=429 y=201 width=27 height=12 xoffset=-5 yoffset=6 xadvance=24 page=1 chnl=0 +char id=8213 x=429 y=201 width=27 height=12 xoffset=-5 yoffset=6 xadvance=24 page=1 chnl=0 +char id=8215 x=130 y=201 width=16 height=14 xoffset=-4 yoffset=11 xadvance=16 page=1 chnl=0 +char id=8216 x=384 y=183 width=13 height=15 xoffset=-3 yoffset=0 xadvance=12 page=1 chnl=0 +char id=8217 x=146 y=201 width=13 height=14 xoffset=-3 yoffset=0 xadvance=12 page=1 chnl=0 +char id=8218 x=397 y=183 width=14 height=15 xoffset=-5 yoffset=9 xadvance=12 page=1 chnl=0 +char id=8219 x=411 y=183 width=13 height=15 xoffset=-3 yoffset=0 xadvance=12 page=1 chnl=0 +char id=8220 x=424 y=183 width=16 height=15 xoffset=-3 yoffset=0 xadvance=15 page=1 chnl=0 +char id=8221 x=159 y=201 width=16 height=14 xoffset=-3 yoffset=0 xadvance=15 page=1 chnl=0 +char id=8222 x=440 y=183 width=17 height=15 xoffset=-5 yoffset=9 xadvance=15 page=1 chnl=0 +char id=8223 x=457 y=183 width=16 height=15 xoffset=-3 yoffset=0 xadvance=15 page=1 chnl=0 +char id=8226 x=473 y=183 width=15 height=15 xoffset=-4 yoffset=3 xadvance=14 page=1 chnl=0 +char id=8230 x=324 y=201 width=22 height=13 xoffset=-3 yoffset=9 xadvance=24 page=1 chnl=0 +char id=8242 x=488 y=183 width=16 height=15 xoffset=-4 yoffset=-1 xadvance=12 page=1 chnl=0 +char id=8243 x=0 y=201 width=19 height=15 xoffset=-4 yoffset=-1 xadvance=15 page=1 chnl=0 +char id=8244 x=19 y=201 width=22 height=15 xoffset=-4 yoffset=-1 xadvance=18 page=1 chnl=0 +char id=8249 x=177 y=183 width=15 height=17 xoffset=-5 yoffset=4 xadvance=12 page=1 chnl=0 +char id=8250 x=192 y=183 width=15 height=17 xoffset=-5 yoffset=4 xadvance=12 page=1 chnl=0 +char id=8254 x=456 y=201 width=20 height=12 xoffset=-4 yoffset=1 xadvance=16 page=1 chnl=0 +char id=8355 x=278 y=84 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=8365 x=300 y=84 width=23 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=8366 x=323 y=84 width=22 height=21 xoffset=-4 yoffset=0 xadvance=18 page=1 chnl=0 +char id=8369 x=345 y=84 width=21 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=8371 x=366 y=84 width=22 height=21 xoffset=-5 yoffset=0 xadvance=20 page=1 chnl=0 +char id=11360 x=388 y=84 width=20 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=11361 x=408 y=84 width=16 height=21 xoffset=-5 yoffset=0 xadvance=13 page=1 chnl=0 +char id=11362 x=424 y=84 width=21 height=21 xoffset=-5 yoffset=0 xadvance=18 page=1 chnl=0 +char id=11363 x=445 y=84 width=22 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=11365 x=42 y=125 width=20 height=20 xoffset=-5 yoffset=2 xadvance=15 page=1 chnl=0 +char id=11372 x=62 y=125 width=18 height=20 xoffset=-5 yoffset=3 xadvance=15 page=1 chnl=0 +char id=11377 x=218 y=164 width=22 height=19 xoffset=-4 yoffset=3 xadvance=18 page=1 chnl=0 +char id=11379 x=240 y=164 width=25 height=19 xoffset=-4 yoffset=3 xadvance=22 page=1 chnl=0 +char id=11380 x=80 y=125 width=18 height=20 xoffset=-4 yoffset=2 xadvance=16 page=1 chnl=0 +char id=11381 x=467 y=84 width=20 height=21 xoffset=-5 yoffset=0 xadvance=17 page=1 chnl=0 +char id=11382 x=493 y=164 width=17 height=18 xoffset=-5 yoffset=3 xadvance=14 page=1 chnl=0 +char id=11383 x=265 y=164 width=20 height=19 xoffset=-4 yoffset=3 xadvance=18 page=1 chnl=0 +kernings count=7203 +kerning first=1036 second=1098 amount=-1 +kerning first=279 second=311 amount=-1 +kerning first=256 second=87 amount=-2 +kerning first=264 second=201 amount=-1 +kerning first=88 second=253 amount=-1 +kerning first=234 second=44 amount=-1 +kerning first=77 second=45 amount=-1 +kerning first=277 second=46 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=206 second=259 amount=-1 +kerning first=229 second=253 amount=-1 +kerning first=337 second=253 amount=-1 +kerning first=83 second=66 amount=-1 +kerning first=256 second=67 amount=-1 +kerning first=268 second=68 amount=-1 +kerning first=262 second=69 amount=-1 +kerning first=352 second=70 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=266 second=72 amount=-1 +kerning first=264 second=73 amount=-1 +kerning first=368 second=74 amount=-1 +kerning first=262 second=75 amount=-1 +kerning first=264 second=76 amount=-1 +kerning first=66 second=77 amount=-1 +kerning first=262 second=78 amount=-1 +kerning first=66 second=81 amount=-1 +kerning first=268 second=80 amount=-1 +kerning first=75 second=81 amount=-1 +kerning first=350 second=82 amount=-1 +kerning first=193 second=84 amount=-2 +kerning first=196 second=85 amount=-1 +kerning first=350 second=86 amount=-1 +kerning first=66 second=90 amount=-1 +kerning first=72 second=97 amount=-1 +kerning first=375 second=99 amount=-1 +kerning first=84 second=100 amount=-1 +kerning first=356 second=101 amount=-1 +kerning first=379 second=102 amount=-1 +kerning first=249 second=103 amount=-1 +kerning first=275 second=104 amount=-1 +kerning first=269 second=105 amount=-1 +kerning first=277 second=107 amount=-1 +kerning first=119 second=108 amount=-1 +kerning first=66 second=110 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=268 second=112 amount=-1 +kerning first=356 second=113 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=196 second=115 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=377 second=117 amount=-1 +kerning first=120 second=118 amount=-1 +kerning first=260 second=119 amount=-1 +kerning first=350 second=120 amount=-1 +kerning first=226 second=121 amount=-1 +kerning first=315 second=122 amount=-1 +kerning first=195 second=219 amount=-1 +kerning first=307 second=171 amount=-1 +kerning first=121 second=235 amount=-1 +kerning first=84 second=187 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=374 second=192 amount=-2 +kerning first=67 second=193 amount=-1 +kerning first=45 second=195 amount=-1 +kerning first=86 second=196 amount=-2 +kerning first=8220 second=197 amount=-2 +kerning first=86 second=287 amount=-1 +kerning first=199 second=199 amount=-1 +kerning first=45 second=200 amount=-1 +kerning first=352 second=201 amount=-1 +kerning first=187 second=203 amount=-1 +kerning first=83 second=204 amount=-1 +kerning first=268 second=205 amount=-1 +kerning first=350 second=206 amount=-1 +kerning first=350 second=207 amount=-1 +kerning first=352 second=209 amount=-1 +kerning first=256 second=210 amount=-1 +kerning first=310 second=211 amount=-1 +kerning first=67 second=213 amount=-1 +kerning first=260 second=214 amount=-1 +kerning first=197 second=216 amount=-1 +kerning first=260 second=217 amount=-1 +kerning first=8218 second=218 amount=-1 +kerning first=352 second=219 amount=-1 +kerning first=344 second=220 amount=-1 +kerning first=223 second=46 amount=-1 +kerning first=374 second=223 amount=-1 +kerning first=99 second=224 amount=-1 +kerning first=209 second=225 amount=-1 +kerning first=8220 second=226 amount=-1 +kerning first=364 second=227 amount=-1 +kerning first=376 second=228 amount=-1 +kerning first=66 second=229 amount=-1 +kerning first=118 second=230 amount=-1 +kerning first=199 second=171 amount=-1 +kerning first=221 second=232 amount=-1 +kerning first=371 second=233 amount=-1 +kerning first=354 second=234 amount=-1 +kerning first=231 second=237 amount=-1 +kerning first=82 second=240 amount=-1 +kerning first=66 second=241 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=303 second=244 amount=-1 +kerning first=8216 second=245 amount=-1 +kerning first=374 second=246 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=344 second=248 amount=-1 +kerning first=195 second=249 amount=-1 +kerning first=298 second=250 amount=-1 +kerning first=72 second=251 amount=-1 +kerning first=258 second=252 amount=-1 +kerning first=254 second=253 amount=-1 +kerning first=66 second=254 amount=-1 +kerning first=8250 second=255 amount=-1 +kerning first=219 second=256 amount=-1 +kerning first=119 second=257 amount=-1 +kerning first=118 second=259 amount=-1 +kerning first=362 second=260 amount=-1 +kerning first=310 second=262 amount=-1 +kerning first=8220 second=263 amount=-1 +kerning first=86 second=266 amount=-1 +kerning first=255 second=267 amount=-1 +kerning first=66 second=268 amount=-1 +kerning first=346 second=270 amount=-1 +kerning first=375 second=271 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=268 second=274 amount=-1 +kerning first=303 second=275 amount=-1 +kerning first=8220 second=277 amount=-1 +kerning first=352 second=278 amount=-1 +kerning first=84 second=279 amount=-1 +kerning first=268 second=280 amount=-1 +kerning first=344 second=281 amount=-1 +kerning first=66 second=282 amount=-1 +kerning first=344 second=283 amount=-1 +kerning first=75 second=284 amount=-1 +kerning first=82 second=286 amount=-1 +kerning first=260 second=287 amount=-1 +kerning first=82 second=288 amount=-1 +kerning first=233 second=289 amount=-1 +kerning first=268 second=291 amount=-1 +kerning first=266 second=296 amount=-1 +kerning first=66 second=298 amount=-1 +kerning first=199 second=302 amount=-1 +kerning first=99 second=303 amount=-1 +kerning first=83 second=305 amount=-1 +kerning first=354 second=99 amount=-1 +kerning first=264 second=310 amount=-1 +kerning first=102 second=311 amount=1 +kerning first=376 second=352 amount=-1 +kerning first=346 second=313 amount=-1 +kerning first=121 second=314 amount=-1 +kerning first=8250 second=315 amount=-1 +kerning first=253 second=316 amount=-1 +kerning first=82 second=335 amount=-1 +kerning first=283 second=318 amount=-1 +kerning first=268 second=330 amount=-1 +kerning first=262 second=323 amount=-1 +kerning first=264 second=325 amount=-1 +kerning first=66 second=327 amount=-1 +kerning first=66 second=330 amount=-1 +kerning first=87 second=332 amount=-1 +kerning first=107 second=333 amount=-1 +kerning first=221 second=334 amount=-1 +kerning first=344 second=335 amount=-1 +kerning first=256 second=336 amount=-1 +kerning first=107 second=337 amount=-1 +kerning first=66 second=338 amount=-1 +kerning first=344 second=339 amount=-1 +kerning first=187 second=344 amount=-1 +kerning first=66 second=345 amount=-1 +kerning first=66 second=346 amount=-1 +kerning first=354 second=347 amount=-1 +kerning first=356 second=350 amount=-1 +kerning first=103 second=351 amount=-1 +kerning first=65 second=352 amount=-1 +kerning first=192 second=353 amount=-1 +kerning first=344 second=355 amount=-1 +kerning first=284 second=356 amount=-1 +kerning first=251 second=103 amount=-1 +kerning first=196 second=350 amount=-1 +kerning first=120 second=361 amount=-1 +kerning first=258 second=362 amount=-1 +kerning first=296 second=363 amount=-1 +kerning first=66 second=364 amount=-1 +kerning first=253 second=122 amount=-1 +kerning first=8250 second=366 amount=-1 +kerning first=120 second=367 amount=-1 +kerning first=346 second=368 amount=-1 +kerning first=204 second=369 amount=-1 +kerning first=120 second=371 amount=-1 +kerning first=101 second=318 amount=-1 +kerning first=256 second=374 amount=-2 +kerning first=256 second=375 amount=-1 +kerning first=313 second=378 amount=-1 +kerning first=376 second=379 amount=-1 +kerning first=219 second=380 amount=-1 +kerning first=321 second=382 amount=-1 +kerning first=242 second=318 amount=-1 +kerning first=256 second=199 amount=-1 +kerning first=307 second=118 amount=-1 +kerning first=315 second=368 amount=-1 +kerning first=1059 second=1078 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=230 second=121 amount=-1 +kerning first=221 second=231 amount=-1 +kerning first=8216 second=194 amount=-2 +kerning first=193 second=332 amount=-1 +kerning first=350 second=204 amount=-1 +kerning first=376 second=291 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=8220 second=225 amount=-1 +kerning first=88 second=332 amount=-1 +kerning first=217 second=378 amount=-1 +kerning first=234 second=316 amount=-1 +kerning first=196 second=252 amount=-1 +kerning first=86 second=267 amount=-1 +kerning first=76 second=378 amount=-1 +kerning first=1040 second=1095 amount=-1 +kerning first=337 second=46 amount=-1 +kerning first=194 second=364 amount=-1 +kerning first=8250 second=77 amount=-1 +kerning first=197 second=264 amount=-1 +kerning first=105 second=119 amount=-1 +kerning first=45 second=362 amount=-1 +kerning first=289 second=378 amount=-1 +kerning first=253 second=378 amount=-1 +kerning first=317 second=218 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=101 second=375 amount=-1 +kerning first=354 second=119 amount=-1 +kerning first=350 second=200 amount=-1 +kerning first=82 second=217 amount=-1 +kerning first=196 second=364 amount=-1 +kerning first=187 second=217 amount=-1 +kerning first=371 second=267 amount=-1 +kerning first=192 second=212 amount=-1 +kerning first=224 second=8220 amount=-1 +kerning first=192 second=375 amount=-1 +kerning first=379 second=250 amount=-1 +kerning first=356 second=216 amount=-1 +kerning first=264 second=378 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=65 second=290 amount=-1 +kerning first=87 second=378 amount=-1 +kerning first=66 second=331 amount=-1 +kerning first=45 second=204 amount=-1 +kerning first=290 second=193 amount=-1 +kerning first=266 second=325 amount=-1 +kerning first=192 second=221 amount=-2 +kerning first=187 second=296 amount=-1 +kerning first=262 second=274 amount=-1 +kerning first=346 second=366 amount=-1 +kerning first=1061 second=1058 amount=-1 +kerning first=8220 second=74 amount=-1 +kerning first=187 second=256 amount=-1 +kerning first=304 second=291 amount=-1 +kerning first=78 second=226 amount=-1 +kerning first=260 second=210 amount=-1 +kerning first=232 second=291 amount=-1 +kerning first=86 second=326 amount=-1 +kerning first=196 second=291 amount=-1 +kerning first=255 second=226 amount=-1 +kerning first=71 second=197 amount=-1 +kerning first=219 second=226 amount=-1 +kerning first=346 second=327 amount=-1 +kerning first=327 second=226 amount=-1 +kerning first=291 second=226 amount=-1 +kerning first=350 second=68 amount=-1 +kerning first=284 second=197 amount=-1 +kerning first=266 second=344 amount=-1 +kerning first=212 second=197 amount=-1 +kerning first=99 second=108 amount=-1 +kerning first=356 second=197 amount=-2 +kerning first=89 second=187 amount=-1 +kerning first=205 second=365 amount=-1 +kerning first=197 second=284 amount=-1 +kerning first=206 second=8249 amount=-1 +kerning first=84 second=262 amount=-1 +kerning first=375 second=337 amount=-1 +kerning first=310 second=268 amount=-1 +kerning first=73 second=261 amount=-1 +kerning first=303 second=337 amount=-1 +kerning first=350 second=8249 amount=-1 +kerning first=314 second=8249 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=253 second=108 amount=-1 +kerning first=68 second=198 amount=-1 +kerning first=269 second=303 amount=-1 +kerning first=263 second=228 amount=-1 +kerning first=339 second=318 amount=-1 +kerning first=375 second=318 amount=-1 +kerning first=217 second=260 amount=-1 +kerning first=86 second=228 amount=-1 +kerning first=72 second=367 amount=-1 +kerning first=258 second=45 amount=-1 +kerning first=289 second=108 amount=-1 +kerning first=253 second=279 amount=-1 +kerning first=268 second=290 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=1036 second=1104 amount=-1 +kerning first=82 second=231 amount=-1 +kerning first=193 second=8217 amount=-1 +kerning first=121 second=353 amount=-1 +kerning first=311 second=339 amount=-1 +kerning first=119 second=229 amount=-1 +kerning first=8222 second=119 amount=-1 +kerning first=252 second=8217 amount=-1 +kerning first=324 second=8217 amount=-1 +kerning first=71 second=45 amount=-1 +kerning first=352 second=304 amount=-1 +kerning first=87 second=240 amount=-1 +kerning first=193 second=352 amount=-1 +kerning first=284 second=45 amount=-1 +kerning first=368 second=229 amount=-1 +kerning first=356 second=45 amount=-1 +kerning first=296 second=229 amount=-1 +kerning first=107 second=45 amount=-1 +kerning first=268 second=310 amount=-1 +kerning first=67 second=304 amount=-1 +kerning first=346 second=77 amount=-1 +kerning first=263 second=307 amount=-1 +kerning first=344 second=111 amount=-1 +kerning first=226 second=255 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=221 second=211 amount=-1 +kerning first=1038 second=1033 amount=-1 +kerning first=1040 second=1038 amount=-1 +kerning first=1038 second=1040 amount=-2 +kerning first=118 second=46 amount=-1 +kerning first=8249 second=84 amount=-1 +kerning first=1038 second=1047 amount=-1 +kerning first=1038 second=1051 amount=-1 +kerning first=350 second=69 amount=-1 +kerning first=8250 second=346 amount=-1 +kerning first=218 second=193 amount=-1 +kerning first=119 second=289 amount=-1 +kerning first=1040 second=1057 amount=-1 +kerning first=1040 second=1058 amount=-1 +kerning first=1040 second=1059 amount=-1 +kerning first=1040 second=1060 amount=-1 +kerning first=1061 second=1063 amount=-1 +kerning first=83 second=289 amount=-1 +kerning first=354 second=79 amount=-1 +kerning first=296 second=289 amount=-1 +kerning first=1038 second=1072 amount=-1 +kerning first=1038 second=1073 amount=-1 +kerning first=1038 second=1074 amount=-1 +kerning first=1038 second=1076 amount=-1 +kerning first=1038 second=1077 amount=-1 +kerning first=1038 second=1078 amount=-1 +kerning first=1038 second=1079 amount=-1 +kerning first=1038 second=1080 amount=-1 +kerning first=1038 second=1081 amount=-1 +kerning first=1038 second=1082 amount=-1 +kerning first=1091 second=1083 amount=-1 +kerning first=1059 second=1084 amount=-1 +kerning first=1038 second=1085 amount=-1 +kerning first=1046 second=1086 amount=-1 +kerning first=1038 second=1087 amount=-1 +kerning first=1038 second=1088 amount=-1 +kerning first=1038 second=1089 amount=-1 +kerning first=103 second=225 amount=-1 +kerning first=1040 second=1091 amount=-1 +kerning first=1038 second=1092 amount=-1 +kerning first=1038 second=1093 amount=-1 +kerning first=1038 second=1094 amount=-1 +kerning first=1050 second=1095 amount=-1 +kerning first=1059 second=1096 amount=-1 +kerning first=1038 second=1097 amount=-1 +kerning first=1050 second=1098 amount=-1 +kerning first=1038 second=1099 amount=-1 +kerning first=1038 second=1100 amount=-1 +kerning first=45 second=375 amount=-1 +kerning first=67 second=206 amount=-1 +kerning first=1038 second=1103 amount=-1 +kerning first=258 second=264 amount=-1 +kerning first=1038 second=1105 amount=-1 +kerning first=1038 second=1107 amount=-1 +kerning first=1043 second=1108 amount=-1 +kerning first=291 second=225 amount=-1 +kerning first=1043 second=1113 amount=-1 +kerning first=1038 second=1114 amount=-1 +kerning first=327 second=225 amount=-1 +kerning first=1038 second=1116 amount=-1 +kerning first=83 second=368 amount=-1 +kerning first=1040 second=1118 amount=-1 +kerning first=1038 second=1119 amount=-1 +kerning first=313 second=364 amount=-1 +kerning first=286 second=287 amount=-1 +kerning first=221 second=46 amount=-1 +kerning first=260 second=368 amount=-1 +kerning first=288 second=287 amount=-1 +kerning first=75 second=268 amount=-1 +kerning first=252 second=287 amount=-1 +kerning first=352 second=206 amount=-1 +kerning first=352 second=69 amount=-1 +kerning first=260 second=347 amount=-1 +kerning first=344 second=71 amount=-1 +kerning first=71 second=46 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=8220 second=244 amount=-1 +kerning first=78 second=225 amount=-1 +kerning first=187 second=86 amount=-1 +kerning first=87 second=241 amount=-1 +kerning first=85 second=45 amount=-1 +kerning first=317 second=87 amount=-1 +kerning first=248 second=46 amount=-1 +kerning first=75 second=266 amount=-1 +kerning first=219 second=225 amount=-1 +kerning first=255 second=225 amount=-1 +kerning first=356 second=46 amount=-1 +kerning first=376 second=332 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=231 second=259 amount=-1 +kerning first=1038 second=1090 amount=-1 +kerning first=201 second=287 amount=-1 +kerning first=354 second=230 amount=-1 +kerning first=262 second=332 amount=-1 +kerning first=304 second=369 amount=-1 +kerning first=367 second=375 amount=-1 +kerning first=196 second=81 amount=-1 +kerning first=1027 second=1105 amount=-1 +kerning first=375 second=259 amount=-1 +kerning first=69 second=289 amount=-1 +kerning first=187 second=375 amount=-1 +kerning first=105 second=289 amount=-1 +kerning first=223 second=375 amount=-1 +kerning first=221 second=350 amount=-1 +kerning first=259 second=375 amount=-1 +kerning first=267 second=259 amount=-1 +kerning first=376 second=81 amount=-1 +kerning first=317 second=368 amount=-1 +kerning first=121 second=382 amount=-1 +kerning first=8216 second=196 amount=-2 +kerning first=268 second=81 amount=-1 +kerning first=8250 second=209 amount=-1 +kerning first=354 second=289 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=196 second=369 amount=-1 +kerning first=260 second=288 amount=-1 +kerning first=1065 second=1095 amount=-1 +kerning first=281 second=316 amount=-1 +kerning first=105 second=171 amount=-1 +kerning first=337 second=121 amount=-1 +kerning first=310 second=117 amount=-1 +kerning first=229 second=121 amount=-1 +kerning first=262 second=196 amount=-1 +kerning first=193 second=121 amount=-1 +kerning first=370 second=196 amount=-1 +kerning first=334 second=196 amount=-1 +kerning first=88 second=121 amount=-1 +kerning first=85 second=196 amount=-1 +kerning first=354 second=231 amount=-1 +kerning first=307 second=119 amount=-1 +kerning first=45 second=302 amount=-1 +kerning first=82 second=375 amount=-1 +kerning first=193 second=351 amount=-1 +kerning first=235 second=119 amount=-1 +kerning first=1059 second=1098 amount=-1 +kerning first=197 second=112 amount=-1 +kerning first=193 second=214 amount=-1 +kerning first=89 second=214 amount=-1 +kerning first=350 second=298 amount=-1 +kerning first=1059 second=1097 amount=-1 +kerning first=101 second=107 amount=-1 +kerning first=287 second=314 amount=-1 +kerning first=109 second=45 amount=-1 +kerning first=1038 second=1098 amount=-1 +kerning first=251 second=314 amount=-1 +kerning first=66 second=213 amount=-1 +kerning first=243 second=120 amount=-1 +kerning first=99 second=253 amount=-1 +kerning first=256 second=8249 amount=-1 +kerning first=240 second=253 amount=-1 +kerning first=220 second=8249 amount=-1 +kerning first=187 second=315 amount=-1 +kerning first=328 second=8249 amount=-1 +kerning first=204 second=291 amount=-1 +kerning first=197 second=363 amount=-1 +kerning first=364 second=8249 amount=-1 +kerning first=255 second=246 amount=-1 +kerning first=88 second=214 amount=-1 +kerning first=344 second=263 amount=-1 +kerning first=370 second=103 amount=-1 +kerning first=1060 second=1033 amount=-1 +kerning first=192 second=220 amount=-1 +kerning first=298 second=103 amount=-1 +kerning first=377 second=363 amount=-1 +kerning first=356 second=334 amount=-1 +kerning first=352 second=344 amount=-1 +kerning first=376 second=101 amount=-1 +kerning first=8217 second=226 amount=-1 +kerning first=311 second=281 amount=-1 +kerning first=44 second=8221 amount=-1 +kerning first=224 second=118 amount=-1 +kerning first=260 second=118 amount=-1 +kerning first=83 second=118 amount=-1 +kerning first=67 second=382 amount=-1 +kerning first=245 second=316 amount=-1 +kerning first=103 second=382 amount=-1 +kerning first=66 second=120 amount=-1 +kerning first=258 second=86 amount=-2 +kerning first=193 second=83 amount=-1 +kerning first=370 second=44 amount=-1 +kerning first=334 second=44 amount=-1 +kerning first=194 second=374 amount=-2 +kerning first=121 second=44 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=251 second=255 amount=-1 +kerning first=296 second=97 amount=-1 +kerning first=365 second=8221 amount=-1 +kerning first=196 second=211 amount=-1 +kerning first=344 second=262 amount=-1 +kerning first=257 second=8221 amount=-1 +kerning first=368 second=97 amount=-1 +kerning first=376 second=211 amount=-1 +kerning first=90 second=8249 amount=-1 +kerning first=268 second=211 amount=-1 +kerning first=221 second=79 amount=-1 +kerning first=346 second=209 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=321 second=118 amount=-1 +kerning first=187 second=85 amount=-1 +kerning first=262 second=65 amount=-1 +kerning first=218 second=83 amount=-1 +kerning first=209 second=257 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=334 second=65 amount=-1 +kerning first=121 second=234 amount=-1 +kerning first=354 second=192 amount=-2 +kerning first=249 second=118 amount=-1 +kerning first=254 second=120 amount=-1 +kerning first=8220 second=246 amount=-1 +kerning first=370 second=65 amount=-1 +kerning first=350 second=260 amount=-1 +kerning first=296 second=250 amount=-1 +kerning first=210 second=192 amount=-1 +kerning first=260 second=250 amount=-1 +kerning first=339 second=107 amount=-1 +kerning first=376 second=331 amount=-1 +kerning first=195 second=199 amount=-1 +kerning first=79 second=198 amount=-1 +kerning first=8250 second=302 amount=-1 +kerning first=284 second=84 amount=-1 +kerning first=365 second=291 amount=-1 +kerning first=84 second=381 amount=-1 +kerning first=244 second=253 amount=-1 +kerning first=82 second=216 amount=-1 +kerning first=71 second=84 amount=-1 +kerning first=221 second=291 amount=-1 +kerning first=80 second=291 amount=-1 +kerning first=311 second=242 amount=-1 +kerning first=192 second=334 amount=-1 +kerning first=8250 second=78 amount=-1 +kerning first=107 second=335 amount=-1 +kerning first=356 second=335 amount=-1 +kerning first=381 second=45 amount=-1 +kerning first=258 second=112 amount=-1 +kerning first=253 second=339 amount=-1 +kerning first=8220 second=245 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=253 second=240 amount=-1 +kerning first=86 second=268 amount=-1 +kerning first=87 second=110 amount=-1 +kerning first=82 second=374 amount=-1 +kerning first=66 second=370 amount=-1 +kerning first=8217 second=227 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=220 second=198 amount=-1 +kerning first=307 second=289 amount=-1 +kerning first=87 second=279 amount=-1 +kerning first=199 second=289 amount=-1 +kerning first=235 second=289 amount=-1 +kerning first=89 second=286 amount=-1 +kerning first=65 second=218 amount=-1 +kerning first=194 second=286 amount=-1 +kerning first=379 second=289 amount=-1 +kerning first=266 second=286 amount=-1 +kerning first=315 second=370 amount=-1 +kerning first=1061 second=1104 amount=-1 +kerning first=242 second=108 amount=-1 +kerning first=352 second=305 amount=-1 +kerning first=333 second=108 amount=-1 +kerning first=89 second=324 amount=-1 +kerning first=66 second=310 amount=-1 +kerning first=87 second=339 amount=-1 +kerning first=374 second=324 amount=-1 +kerning first=277 second=287 amount=-1 +kerning first=205 second=287 amount=-1 +kerning first=86 second=115 amount=-1 +kerning first=287 second=353 amount=-1 +kerning first=256 second=356 amount=-2 +kerning first=8220 second=283 amount=-1 +kerning first=354 second=290 amount=-1 +kerning first=84 second=223 amount=-1 +kerning first=119 second=97 amount=-1 +kerning first=356 second=275 amount=-1 +kerning first=313 second=287 amount=-1 +kerning first=89 second=226 amount=-1 +kerning first=303 second=279 amount=-1 +kerning first=302 second=226 amount=-1 +kerning first=321 second=368 amount=-1 +kerning first=107 second=275 amount=-1 +kerning first=45 second=74 amount=-1 +kerning first=216 second=198 amount=-1 +kerning first=287 second=45 amount=-1 +kerning first=288 second=194 amount=-1 +kerning first=323 second=45 amount=-1 +kerning first=366 second=74 amount=-1 +kerning first=74 second=45 amount=-1 +kerning first=354 second=350 amount=-1 +kerning first=356 second=353 amount=-1 +kerning first=303 second=240 amount=-1 +kerning first=80 second=289 amount=-1 +kerning first=82 second=356 amount=-1 +kerning first=1059 second=1116 amount=-1 +kerning first=187 second=356 amount=-1 +kerning first=352 second=112 amount=-1 +kerning first=1054 second=1033 amount=-1 +kerning first=354 second=214 amount=-1 +kerning first=367 second=255 amount=-1 +kerning first=221 second=289 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=259 second=255 amount=-1 +kerning first=376 second=261 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=253 second=227 amount=-1 +kerning first=187 second=255 amount=-1 +kerning first=67 second=112 amount=-1 +kerning first=82 second=255 amount=-1 +kerning first=375 second=240 amount=-1 +kerning first=260 second=211 amount=-1 +kerning first=199 second=80 amount=-1 +kerning first=304 second=97 amount=-1 +kerning first=66 second=290 amount=-1 +kerning first=221 second=193 amount=-2 +kerning first=374 second=241 amount=-1 +kerning first=379 second=251 amount=-1 +kerning first=362 second=192 amount=-1 +kerning first=365 second=8220 amount=-1 +kerning first=8217 second=346 amount=-1 +kerning first=356 second=257 amount=-1 +kerning first=218 second=192 amount=-1 +kerning first=256 second=338 amount=-1 +kerning first=290 second=192 amount=-1 +kerning first=66 second=326 amount=-1 +kerning first=195 second=268 amount=-1 +kerning first=44 second=8220 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=224 second=119 amount=-1 +kerning first=376 second=233 amount=-1 +kerning first=263 second=224 amount=-1 +kerning first=1046 second=1073 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=240 second=314 amount=-1 +kerning first=374 second=225 amount=-1 +kerning first=199 second=209 amount=-1 +kerning first=8217 second=263 amount=-1 +kerning first=302 second=363 amount=-1 +kerning first=302 second=225 amount=-1 +kerning first=99 second=314 amount=-1 +kerning first=376 second=213 amount=-1 +kerning first=356 second=375 amount=-1 +kerning first=1043 second=1072 amount=-1 +kerning first=76 second=375 amount=-1 +kerning first=268 second=213 amount=-1 +kerning first=364 second=259 amount=-1 +kerning first=248 second=375 amount=-1 +kerning first=350 second=87 amount=-1 +kerning first=1040 second=1054 amount=-1 +kerning first=220 second=259 amount=-1 +kerning first=221 second=101 amount=-1 +kerning first=8217 second=287 amount=-1 +kerning first=311 second=246 amount=-1 +kerning first=66 second=369 amount=-1 +kerning first=199 second=288 amount=-1 +kerning first=107 second=235 amount=-1 +kerning first=350 second=317 amount=-1 +kerning first=1043 second=1033 amount=-1 +kerning first=65 second=87 amount=-2 +kerning first=8217 second=267 amount=-1 +kerning first=195 second=218 amount=-1 +kerning first=356 second=235 amount=-1 +kerning first=82 second=104 amount=-1 +kerning first=207 second=369 amount=-1 +kerning first=346 second=76 amount=-1 +kerning first=80 second=171 amount=-1 +kerning first=44 second=171 amount=-1 +kerning first=354 second=212 amount=-1 +kerning first=1091 second=1113 amount=-1 +kerning first=85 second=352 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=221 second=171 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=82 second=262 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=118 second=277 amount=-1 +kerning first=362 second=83 amount=-1 +kerning first=82 second=277 amount=-1 +kerning first=262 second=197 amount=-1 +kerning first=77 second=287 amount=-1 +kerning first=240 second=121 amount=-1 +kerning first=278 second=103 amount=-1 +kerning first=99 second=121 amount=-1 +kerning first=370 second=197 amount=-1 +kerning first=195 second=336 amount=-1 +kerning first=262 second=352 amount=-1 +kerning first=334 second=197 amount=-1 +kerning first=263 second=229 amount=-1 +kerning first=370 second=122 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=268 second=270 amount=-1 +kerning first=85 second=122 amount=-1 +kerning first=354 second=100 amount=-1 +kerning first=279 second=108 amount=-1 +kerning first=221 second=192 amount=-2 +kerning first=324 second=8220 amount=-1 +kerning first=196 second=213 amount=-1 +kerning first=82 second=334 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=119 second=99 amount=-1 +kerning first=86 second=229 amount=-1 +kerning first=291 second=115 amount=-1 +kerning first=363 second=8217 amount=-1 +kerning first=1101 second=1076 amount=-1 +kerning first=255 second=115 amount=-1 +kerning first=196 second=171 amount=-1 +kerning first=8250 second=76 amount=-1 +kerning first=304 second=171 amount=-1 +kerning first=268 second=171 amount=-1 +kerning first=339 second=46 amount=-1 +kerning first=65 second=199 amount=-1 +kerning first=195 second=86 amount=-2 +kerning first=268 second=82 amount=-1 +kerning first=381 second=103 amount=-1 +kerning first=66 second=214 amount=-1 +kerning first=196 second=8221 amount=-1 +kerning first=201 second=103 amount=-1 +kerning first=258 second=361 amount=-1 +kerning first=67 second=266 amount=-1 +kerning first=330 second=361 amount=-1 +kerning first=287 second=351 amount=-1 +kerning first=310 second=249 amount=-1 +kerning first=195 second=220 amount=-1 +kerning first=365 second=287 amount=-1 +kerning first=192 second=71 amount=-1 +kerning first=87 second=242 amount=-1 +kerning first=260 second=86 amount=-2 +kerning first=195 second=67 amount=-1 +kerning first=354 second=232 amount=-1 +kerning first=71 second=8249 amount=-1 +kerning first=280 second=287 amount=-1 +kerning first=45 second=380 amount=-1 +kerning first=264 second=202 amount=-1 +kerning first=107 second=171 amount=-1 +kerning first=366 second=380 amount=-1 +kerning first=8250 second=207 amount=-1 +kerning first=120 second=224 amount=-1 +kerning first=84 second=379 amount=-1 +kerning first=8217 second=225 amount=-1 +kerning first=317 second=217 amount=-1 +kerning first=346 second=69 amount=-1 +kerning first=192 second=211 amount=-1 +kerning first=1070 second=1040 amount=-1 +kerning first=84 second=224 amount=-1 +kerning first=350 second=218 amount=-1 +kerning first=82 second=354 amount=-1 +kerning first=352 second=364 amount=-1 +kerning first=1050 second=1104 amount=-1 +kerning first=187 second=354 amount=-1 +kerning first=337 second=120 amount=-1 +kerning first=234 second=104 amount=-1 +kerning first=254 second=46 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=376 second=193 amount=-2 +kerning first=256 second=117 amount=-1 +kerning first=193 second=71 amount=-1 +kerning first=72 second=250 amount=-1 +kerning first=221 second=331 amount=-1 +kerning first=1027 second=1033 amount=-1 +kerning first=375 second=108 amount=-1 +kerning first=339 second=108 amount=-1 +kerning first=83 second=206 amount=-1 +kerning first=89 second=287 amount=-1 +kerning first=199 second=78 amount=-1 +kerning first=260 second=79 amount=-1 +kerning first=234 second=107 amount=-1 +kerning first=66 second=192 amount=-1 +kerning first=45 second=206 amount=-1 +kerning first=374 second=287 amount=-1 +kerning first=302 second=287 amount=-1 +kerning first=1061 second=1089 amount=-1 +kerning first=205 second=226 amount=-1 +kerning first=230 second=287 amount=-1 +kerning first=337 second=44 amount=-1 +kerning first=374 second=113 amount=-1 +kerning first=266 second=287 amount=-1 +kerning first=87 second=90 amount=-1 +kerning first=187 second=84 amount=-1 +kerning first=194 second=287 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=362 second=291 amount=-1 +kerning first=290 second=291 amount=-1 +kerning first=70 second=74 amount=-1 +kerning first=370 second=45 amount=-1 +kerning first=86 second=269 amount=-1 +kerning first=354 second=210 amount=-1 +kerning first=77 second=291 amount=-1 +kerning first=78 second=365 amount=-1 +kerning first=199 second=350 amount=-1 +kerning first=262 second=45 amount=-1 +kerning first=1038 second=1108 amount=-1 +kerning first=264 second=68 amount=-1 +kerning first=83 second=327 amount=-1 +kerning first=371 second=269 amount=-1 +kerning first=87 second=8249 amount=-1 +kerning first=311 second=279 amount=-1 +kerning first=344 second=286 amount=-1 +kerning first=192 second=8249 amount=-1 +kerning first=252 second=375 amount=-1 +kerning first=264 second=8249 amount=-1 +kerning first=350 second=221 amount=-1 +kerning first=267 second=108 amount=-1 +kerning first=220 second=196 amount=-1 +kerning first=72 second=228 amount=-1 +kerning first=195 second=338 amount=-1 +kerning first=268 second=332 amount=-1 +kerning first=296 second=251 amount=-1 +kerning first=8218 second=220 amount=-1 +kerning first=260 second=251 amount=-1 +kerning first=196 second=332 amount=-1 +kerning first=65 second=219 amount=-1 +kerning first=281 second=108 amount=-1 +kerning first=371 second=245 amount=-1 +kerning first=45 second=381 amount=-1 +kerning first=310 second=375 amount=-1 +kerning first=89 second=115 amount=-1 +kerning first=86 second=226 amount=-1 +kerning first=221 second=212 amount=-1 +kerning first=263 second=226 amount=-1 +kerning first=1045 second=1098 amount=-1 +kerning first=1118 second=1113 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=321 second=119 amount=-1 +kerning first=356 second=109 amount=-1 +kerning first=194 second=115 amount=-1 +kerning first=368 second=230 amount=-1 +kerning first=249 second=119 amount=-1 +kerning first=374 second=115 amount=-1 +kerning first=78 second=363 amount=-1 +kerning first=221 second=233 amount=-1 +kerning first=263 second=97 amount=-1 +kerning first=327 second=363 amount=-1 +kerning first=337 second=314 amount=-1 +kerning first=199 second=211 amount=-1 +kerning first=225 second=375 amount=-1 +kerning first=362 second=194 amount=-1 +kerning first=356 second=255 amount=-1 +kerning first=86 second=97 amount=-1 +kerning first=248 second=255 amount=-1 +kerning first=1046 second=1092 amount=-1 +kerning first=89 second=244 amount=-1 +kerning first=8220 second=227 amount=-1 +kerning first=121 second=275 amount=-1 +kerning first=354 second=101 amount=-1 +kerning first=290 second=194 amount=-1 +kerning first=8250 second=368 amount=-1 +kerning first=374 second=244 amount=-1 +kerning first=316 second=8221 amount=-1 +kerning first=197 second=121 amount=-1 +kerning first=262 second=296 amount=-1 +kerning first=346 second=325 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=334 second=46 amount=-1 +kerning first=370 second=46 amount=-1 +kerning first=84 second=281 amount=-1 +kerning first=66 second=83 amount=-1 +kerning first=264 second=69 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=67 second=264 amount=-1 +kerning first=194 second=266 amount=-1 +kerning first=89 second=266 amount=-1 +kerning first=374 second=266 amount=-1 +kerning first=375 second=339 amount=-1 +kerning first=205 second=225 amount=-1 +kerning first=264 second=70 amount=-1 +kerning first=266 second=266 amount=-1 +kerning first=226 second=253 amount=-1 +kerning first=230 second=318 amount=-1 +kerning first=39 second=1111 amount=1 +kerning first=194 second=334 amount=-1 +kerning first=317 second=86 amount=-1 +kerning first=8250 second=118 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=249 second=8217 amount=-1 +kerning first=119 second=230 amount=-1 +kerning first=260 second=8220 amount=-1 +kerning first=369 second=8221 amount=-1 +kerning first=381 second=375 amount=-1 +kerning first=316 second=45 amount=-1 +kerning first=374 second=333 amount=-1 +kerning first=232 second=311 amount=-1 +kerning first=193 second=370 amount=-1 +kerning first=221 second=213 amount=-1 +kerning first=241 second=8249 amount=-1 +kerning first=84 second=8250 amount=-1 +kerning first=232 second=289 amount=-1 +kerning first=268 second=289 amount=-1 +kerning first=364 second=260 amount=-1 +kerning first=310 second=210 amount=-1 +kerning first=112 second=318 amount=-1 +kerning first=209 second=259 amount=-1 +kerning first=196 second=289 amount=-1 +kerning first=376 second=289 amount=-1 +kerning first=66 second=270 amount=-1 +kerning first=287 second=122 amount=-1 +kerning first=253 second=318 amount=-1 +kerning first=220 second=260 amount=-1 +kerning first=304 second=289 amount=-1 +kerning first=8250 second=85 amount=-1 +kerning first=195 second=87 amount=-2 +kerning first=346 second=194 amount=-1 +kerning first=113 second=8221 amount=-1 +kerning first=346 second=207 amount=-1 +kerning first=354 second=288 amount=-1 +kerning first=256 second=218 amount=-1 +kerning first=107 second=277 amount=-1 +kerning first=77 second=369 amount=-1 +kerning first=350 second=219 amount=-1 +kerning first=264 second=65 amount=-1 +kerning first=371 second=248 amount=-1 +kerning first=356 second=277 amount=-1 +kerning first=119 second=231 amount=-1 +kerning first=66 second=291 amount=-1 +kerning first=199 second=210 amount=-1 +kerning first=217 second=346 amount=-1 +kerning first=253 second=242 amount=-1 +kerning first=194 second=365 amount=-1 +kerning first=350 second=89 amount=-1 +kerning first=302 second=365 amount=-1 +kerning first=350 second=80 amount=-1 +kerning first=121 second=351 amount=-1 +kerning first=258 second=284 amount=-1 +kerning first=284 second=256 amount=-1 +kerning first=256 second=217 amount=-1 +kerning first=251 second=121 amount=-1 +kerning first=356 second=256 amount=-2 +kerning first=375 second=101 amount=-1 +kerning first=119 second=259 amount=-1 +kerning first=264 second=298 amount=-1 +kerning first=73 second=224 amount=-1 +kerning first=254 second=375 amount=-1 +kerning first=193 second=369 amount=-1 +kerning first=199 second=206 amount=-1 +kerning first=193 second=112 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=8216 second=248 amount=-1 +kerning first=346 second=75 amount=-1 +kerning first=65 second=89 amount=-2 +kerning first=8218 second=219 amount=-1 +kerning first=256 second=86 amount=-2 +kerning first=284 second=354 amount=-1 +kerning first=45 second=382 amount=-1 +kerning first=82 second=333 amount=-1 +kerning first=376 second=214 amount=-1 +kerning first=118 second=333 amount=-1 +kerning first=352 second=362 amount=-1 +kerning first=256 second=354 amount=-2 +kerning first=366 second=382 amount=-1 +kerning first=8220 second=111 amount=-1 +kerning first=264 second=280 amount=-1 +kerning first=1059 second=1040 amount=-2 +kerning first=255 second=287 amount=-1 +kerning first=82 second=235 amount=-1 +kerning first=315 second=8221 amount=-1 +kerning first=86 second=347 amount=-1 +kerning first=84 second=333 amount=-1 +kerning first=118 second=235 amount=-1 +kerning first=1075 second=1083 amount=-1 +kerning first=231 second=316 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=375 second=316 amount=-1 +kerning first=268 second=214 amount=-1 +kerning first=350 second=220 amount=-1 +kerning first=339 second=316 amount=-1 +kerning first=196 second=214 amount=-1 +kerning first=267 second=316 amount=-1 +kerning first=71 second=103 amount=-1 +kerning first=8216 second=65 amount=-2 +kerning first=102 second=8221 amount=1 +kerning first=1036 second=1086 amount=-1 +kerning first=264 second=200 amount=-1 +kerning first=196 second=212 amount=-1 +kerning first=363 second=287 amount=-1 +kerning first=199 second=330 amount=-1 +kerning first=66 second=8221 amount=-1 +kerning first=87 second=8250 amount=-1 +kerning first=258 second=262 amount=-1 +kerning first=371 second=118 amount=-1 +kerning first=350 second=366 amount=-1 +kerning first=227 second=118 amount=-1 +kerning first=381 second=255 amount=-1 +kerning first=354 second=211 amount=-1 +kerning first=253 second=8249 amount=-1 +kerning first=217 second=8249 amount=-1 +kerning first=313 second=366 amount=-1 +kerning first=325 second=8249 amount=-1 +kerning first=65 second=67 amount=-1 +kerning first=289 second=8249 amount=-1 +kerning first=66 second=313 amount=-1 +kerning first=84 second=230 amount=-1 +kerning first=376 second=290 amount=-1 +kerning first=240 second=44 amount=-1 +kerning first=338 second=287 amount=-1 +kerning first=374 second=267 amount=-1 +kerning first=107 second=234 amount=-1 +kerning first=66 second=193 amount=-1 +kerning first=199 second=79 amount=-1 +kerning first=86 second=118 amount=-1 +kerning first=354 second=331 amount=-1 +kerning first=260 second=350 amount=-1 +kerning first=255 second=244 amount=-1 +kerning first=83 second=209 amount=-1 +kerning first=368 second=350 amount=-1 +kerning first=118 second=257 amount=-1 +kerning first=356 second=234 amount=-1 +kerning first=89 second=267 amount=-1 +kerning first=376 second=192 amount=-2 +kerning first=8250 second=75 amount=-1 +kerning first=45 second=282 amount=-1 +kerning first=268 second=192 amount=-1 +kerning first=374 second=245 amount=-1 +kerning first=82 second=355 amount=-1 +kerning first=310 second=250 amount=-1 +kerning first=8249 second=374 amount=-1 +kerning first=83 second=78 amount=-1 +kerning first=350 second=198 amount=-1 +kerning first=221 second=332 amount=-1 +kerning first=89 second=245 amount=-1 +kerning first=76 second=221 amount=-1 +kerning first=197 second=361 amount=-1 +kerning first=84 second=378 amount=-1 +kerning first=212 second=256 amount=-1 +kerning first=1107 second=1113 amount=-1 +kerning first=381 second=102 amount=-1 +kerning first=76 second=90 amount=-1 +kerning first=377 second=361 amount=-1 +kerning first=86 second=227 amount=-1 +kerning first=255 second=113 amount=-1 +kerning first=71 second=256 amount=-1 +kerning first=351 second=291 amount=-1 +kerning first=315 second=291 amount=-1 +kerning first=1024 second=1090 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=279 second=291 amount=-1 +kerning first=310 second=119 amount=-1 +kerning first=346 second=119 amount=-1 +kerning first=207 second=291 amount=-1 +kerning first=254 second=314 amount=-1 +kerning first=8250 second=270 amount=-1 +kerning first=85 second=198 amount=-1 +kerning first=354 second=233 amount=-1 +kerning first=84 second=113 amount=-1 +kerning first=334 second=198 amount=-1 +kerning first=344 second=79 amount=-1 +kerning first=370 second=198 amount=-1 +kerning first=264 second=67 amount=-1 +kerning first=262 second=198 amount=-1 +kerning first=251 second=291 amount=-1 +kerning first=77 second=250 amount=-1 +kerning first=8217 second=233 amount=-1 +kerning first=87 second=67 amount=-1 +kerning first=74 second=291 amount=-1 +kerning first=192 second=67 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=221 second=268 amount=-1 +kerning first=66 second=210 amount=-1 +kerning first=270 second=44 amount=-1 +kerning first=187 second=377 amount=-1 +kerning first=356 second=171 amount=-1 +kerning first=66 second=212 amount=-1 +kerning first=290 second=84 amount=-1 +kerning first=356 second=337 amount=-1 +kerning first=264 second=72 amount=-1 +kerning first=317 second=378 amount=-1 +kerning first=67 second=203 amount=-1 +kerning first=231 second=261 amount=-1 +kerning first=266 second=210 amount=-1 +kerning first=354 second=228 amount=-1 +kerning first=327 second=361 amount=-1 +kerning first=375 second=261 amount=-1 +kerning first=78 second=361 amount=-1 +kerning first=267 second=261 amount=-1 +kerning first=344 second=89 amount=-1 +kerning first=196 second=83 amount=-1 +kerning first=268 second=197 amount=-1 +kerning first=268 second=83 amount=-1 +kerning first=234 second=108 amount=-1 +kerning first=304 second=367 amount=-1 +kerning first=376 second=83 amount=-1 +kerning first=1098 second=1118 amount=-1 +kerning first=344 second=245 amount=-1 +kerning first=67 second=262 amount=-1 +kerning first=275 second=107 amount=-1 +kerning first=260 second=286 amount=-1 +kerning first=109 second=8249 amount=-1 +kerning first=260 second=262 amount=-1 +kerning first=73 second=8249 amount=-1 +kerning first=286 second=8249 amount=-1 +kerning first=8216 second=111 amount=-1 +kerning first=192 second=356 amount=-2 +kerning first=66 second=289 amount=-1 +kerning first=356 second=194 amount=-2 +kerning first=207 second=289 amount=-1 +kerning first=351 second=289 amount=-1 +kerning first=279 second=289 amount=-1 +kerning first=288 second=196 amount=-1 +kerning first=315 second=289 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=71 second=194 amount=-1 +kerning first=212 second=194 amount=-1 +kerning first=193 second=45 amount=-1 +kerning first=374 second=97 amount=-1 +kerning first=66 second=353 amount=-1 +kerning first=317 second=255 amount=-1 +kerning first=266 second=112 amount=-1 +kerning first=353 second=255 amount=-1 +kerning first=245 second=255 amount=-1 +kerning first=194 second=112 amount=-1 +kerning first=281 second=255 amount=-1 +kerning first=8250 second=119 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=87 second=243 amount=-1 +kerning first=302 second=97 amount=-1 +kerning first=351 second=353 amount=-1 +kerning first=8218 second=217 amount=-1 +kerning first=310 second=290 amount=-1 +kerning first=242 second=46 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=350 second=46 amount=-1 +kerning first=266 second=209 amount=-1 +kerning first=83 second=76 amount=-1 +kerning first=84 second=338 amount=-1 +kerning first=217 second=257 amount=-1 +kerning first=89 second=288 amount=-1 +kerning first=45 second=207 amount=-1 +kerning first=194 second=288 amount=-1 +kerning first=325 second=257 amount=-1 +kerning first=253 second=257 amount=-1 +kerning first=289 second=257 amount=-1 +kerning first=120 second=225 amount=-1 +kerning first=253 second=111 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=8216 second=279 amount=-1 +kerning first=107 second=273 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=1050 second=1105 amount=-1 +kerning first=199 second=193 amount=-1 +kerning first=66 second=274 amount=-1 +kerning first=226 second=375 amount=-1 +kerning first=231 second=46 amount=-1 +kerning first=8216 second=197 amount=-2 +kerning first=352 second=282 amount=-1 +kerning first=72 second=369 amount=-1 +kerning first=354 second=213 amount=-1 +kerning first=67 second=282 amount=-1 +kerning first=192 second=87 amount=-2 +kerning first=101 second=316 amount=-1 +kerning first=207 second=230 amount=-1 +kerning first=73 second=259 amount=-1 +kerning first=242 second=316 amount=-1 +kerning first=330 second=369 amount=-1 +kerning first=281 second=253 amount=-1 +kerning first=376 second=122 amount=-1 +kerning first=352 second=287 amount=-1 +kerning first=1061 second=1059 amount=-1 +kerning first=268 second=122 amount=-1 +kerning first=219 second=346 amount=-1 +kerning first=316 second=287 amount=-1 +kerning first=199 second=81 amount=-1 +kerning first=65 second=220 amount=-1 +kerning first=356 second=352 amount=-1 +kerning first=76 second=356 amount=-1 +kerning first=224 second=8217 amount=-1 +kerning first=45 second=75 amount=-1 +kerning first=84 second=74 amount=-1 +kerning first=231 second=105 amount=-1 +kerning first=102 second=254 amount=1 +kerning first=354 second=351 amount=-1 +kerning first=221 second=223 amount=-1 +kerning first=8217 second=244 amount=-1 +kerning first=205 second=117 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=65 second=332 amount=-1 +kerning first=266 second=75 amount=-1 +kerning first=90 second=289 amount=-1 +kerning first=67 second=352 amount=-1 +kerning first=253 second=277 amount=-1 +kerning first=381 second=253 amount=-1 +kerning first=102 second=104 amount=1 +kerning first=267 second=225 amount=-1 +kerning first=192 second=199 amount=-1 +kerning first=256 second=85 amount=-1 +kerning first=221 second=347 amount=-1 +kerning first=379 second=252 amount=-1 +kerning first=250 second=318 amount=-1 +kerning first=264 second=199 amount=-1 +kerning first=45 second=119 amount=-1 +kerning first=8217 second=97 amount=-1 +kerning first=197 second=71 amount=-1 +kerning first=258 second=84 amount=-2 +kerning first=310 second=251 amount=-1 +kerning first=84 second=382 amount=-1 +kerning first=83 second=120 amount=-1 +kerning first=187 second=68 amount=-1 +kerning first=371 second=8221 amount=-1 +kerning first=112 second=316 amount=-1 +kerning first=354 second=332 amount=-1 +kerning first=367 second=103 amount=-1 +kerning first=317 second=220 amount=-1 +kerning first=354 second=90 amount=-1 +kerning first=260 second=365 amount=-1 +kerning first=75 second=249 amount=-1 +kerning first=122 second=171 amount=-1 +kerning first=352 second=203 amount=-1 +kerning first=187 second=103 amount=-1 +kerning first=67 second=291 amount=-1 +kerning first=296 second=365 amount=-1 +kerning first=82 second=103 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=227 second=119 amount=-1 +kerning first=83 second=330 amount=-1 +kerning first=197 second=262 amount=-1 +kerning first=279 second=314 amount=-1 +kerning first=243 second=314 amount=-1 +kerning first=371 second=119 amount=-1 +kerning first=279 second=118 amount=-1 +kerning first=187 second=313 amount=-1 +kerning first=263 second=119 amount=-1 +kerning first=315 second=118 amount=-1 +kerning first=76 second=380 amount=-1 +kerning first=102 second=314 amount=1 +kerning first=66 second=118 amount=-1 +kerning first=66 second=314 amount=-1 +kerning first=289 second=380 amount=-1 +kerning first=253 second=380 amount=-1 +kerning first=187 second=362 amount=-1 +kerning first=195 second=217 amount=-1 +kerning first=88 second=216 amount=-1 +kerning first=194 second=366 amount=-1 +kerning first=8222 second=380 amount=-1 +kerning first=351 second=118 amount=-1 +kerning first=193 second=216 amount=-1 +kerning first=354 second=248 amount=-1 +kerning first=315 second=8220 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=8220 second=287 amount=-1 +kerning first=310 second=365 amount=-1 +kerning first=258 second=364 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=66 second=8220 amount=-1 +kerning first=350 second=202 amount=-1 +kerning first=87 second=199 amount=-1 +kerning first=196 second=118 amount=-1 +kerning first=249 second=8221 amount=-1 +kerning first=350 second=85 amount=-1 +kerning first=310 second=79 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=302 second=361 amount=-1 +kerning first=376 second=118 amount=-1 +kerning first=65 second=336 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=344 second=338 amount=-1 +kerning first=232 second=118 amount=-1 +kerning first=356 second=377 amount=-1 +kerning first=65 second=85 amount=-1 +kerning first=221 second=83 amount=-1 +kerning first=45 second=78 amount=-1 +kerning first=1059 second=1060 amount=-1 +kerning first=311 second=8249 amount=-1 +kerning first=67 second=77 amount=-1 +kerning first=207 second=250 amount=-1 +kerning first=87 second=257 amount=-1 +kerning first=354 second=193 amount=-2 +kerning first=353 second=103 amount=-1 +kerning first=281 second=103 amount=-1 +kerning first=317 second=103 amount=-1 +kerning first=8218 second=374 amount=-2 +kerning first=8218 second=380 amount=-1 +kerning first=98 second=318 amount=-1 +kerning first=376 second=210 amount=-1 +kerning first=118 second=337 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=275 second=318 amount=-1 +kerning first=82 second=337 amount=-1 +kerning first=66 second=250 amount=-1 +kerning first=196 second=210 amount=-1 +kerning first=218 second=65 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=1044 second=1095 amount=-1 +kerning first=268 second=210 amount=-1 +kerning first=290 second=65 amount=-1 +kerning first=199 second=286 amount=-1 +kerning first=362 second=65 amount=-1 +kerning first=264 second=204 amount=-1 +kerning first=364 second=378 amount=-1 +kerning first=366 second=227 amount=-1 +kerning first=281 second=44 amount=-1 +kerning first=220 second=378 amount=-1 +kerning first=330 second=227 amount=-1 +kerning first=354 second=171 amount=-1 +kerning first=266 second=73 amount=-1 +kerning first=354 second=268 amount=-1 +kerning first=45 second=280 amount=-1 +kerning first=352 second=366 amount=-1 +kerning first=119 second=269 amount=-1 +kerning first=317 second=356 amount=-1 +kerning first=192 second=219 amount=-1 +kerning first=72 second=226 amount=-1 +kerning first=262 second=212 amount=-1 +kerning first=262 second=66 amount=-1 +kerning first=375 second=242 amount=-1 +kerning first=367 second=108 amount=-1 +kerning first=86 second=328 amount=-1 +kerning first=118 second=108 amount=-1 +kerning first=8216 second=291 amount=-1 +kerning first=82 second=108 amount=-1 +kerning first=280 second=103 amount=-1 +kerning first=223 second=108 amount=-1 +kerning first=262 second=317 amount=-1 +kerning first=303 second=242 amount=-1 +kerning first=83 second=310 amount=-1 +kerning first=291 second=45 amount=-1 +kerning first=8220 second=248 amount=-1 +kerning first=354 second=122 amount=-1 +kerning first=87 second=224 amount=-1 +kerning first=1061 second=1105 amount=-1 +kerning first=8250 second=375 amount=-1 +kerning first=206 second=261 amount=-1 +kerning first=267 second=237 amount=-1 +kerning first=103 second=115 amount=-1 +kerning first=375 second=275 amount=-1 +kerning first=8218 second=368 amount=-1 +kerning first=376 second=353 amount=-1 +kerning first=66 second=202 amount=-1 +kerning first=194 second=119 amount=-1 +kerning first=1058 second=1103 amount=-1 +kerning first=187 second=194 amount=-1 +kerning first=352 second=77 amount=-1 +kerning first=218 second=45 amount=-1 +kerning first=307 second=287 amount=-1 +kerning first=83 second=325 amount=-1 +kerning first=89 second=121 amount=-1 +kerning first=119 second=281 amount=-1 +kerning first=1050 second=1086 amount=-1 +kerning first=290 second=45 amount=-1 +kerning first=326 second=45 amount=-1 +kerning first=362 second=45 amount=-1 +kerning first=317 second=354 amount=-1 +kerning first=350 second=374 amount=-1 +kerning first=311 second=243 amount=-1 +kerning first=205 second=97 amount=-1 +kerning first=233 second=287 amount=-1 +kerning first=8216 second=100 amount=-1 +kerning first=269 second=287 amount=-1 +kerning first=197 second=287 amount=-1 +kerning first=196 second=353 amount=-1 +kerning first=88 second=45 amount=-1 +kerning first=108 second=8217 amount=-1 +kerning first=84 second=283 amount=-1 +kerning first=1061 second=1108 amount=-1 +kerning first=291 second=228 amount=-1 +kerning first=377 second=287 amount=-1 +kerning first=84 second=109 amount=-1 +kerning first=321 second=8217 amount=-1 +kerning first=199 second=76 amount=-1 +kerning first=313 second=368 amount=-1 +kerning first=199 second=327 amount=-1 +kerning first=311 second=111 amount=-1 +kerning first=374 second=264 amount=-1 +kerning first=266 second=264 amount=-1 +kerning first=194 second=264 amount=-1 +kerning first=89 second=264 amount=-1 +kerning first=221 second=248 amount=-1 +kerning first=272 second=44 amount=-1 +kerning first=89 second=269 amount=-1 +kerning first=356 second=253 amount=-1 +kerning first=197 second=364 amount=-1 +kerning first=314 second=118 amount=-1 +kerning first=374 second=269 amount=-1 +kerning first=256 second=334 amount=-1 +kerning first=67 second=207 amount=-1 +kerning first=266 second=346 amount=-1 +kerning first=75 second=288 amount=-1 +kerning first=255 second=245 amount=-1 +kerning first=8216 second=232 amount=-1 +kerning first=218 second=289 amount=-1 +kerning first=77 second=289 amount=-1 +kerning first=89 second=346 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=362 second=289 amount=-1 +kerning first=86 second=99 amount=-1 +kerning first=290 second=289 amount=-1 +kerning first=220 second=46 amount=-1 +kerning first=296 second=369 amount=-1 +kerning first=352 second=207 amount=-1 +kerning first=260 second=369 amount=-1 +kerning first=364 second=46 amount=-1 +kerning first=366 second=192 amount=-1 +kerning first=102 second=98 amount=1 +kerning first=66 second=98 amount=-1 +kerning first=350 second=70 amount=-1 +kerning first=371 second=99 amount=-1 +kerning first=362 second=230 amount=-1 +kerning first=8220 second=267 amount=-1 +kerning first=76 second=87 amount=-1 +kerning first=199 second=332 amount=-1 +kerning first=82 second=352 amount=-1 +kerning first=77 second=230 amount=-1 +kerning first=260 second=81 amount=-1 +kerning first=218 second=230 amount=-1 +kerning first=75 second=119 amount=-1 +kerning first=374 second=346 amount=-1 +kerning first=221 second=122 amount=-1 +kerning first=119 second=233 amount=-1 +kerning first=65 second=217 amount=-1 +kerning first=86 second=284 amount=-1 +kerning first=221 second=351 amount=-1 +kerning first=83 second=102 amount=-1 +kerning first=334 second=256 amount=-1 +kerning first=370 second=256 amount=-1 +kerning first=66 second=171 amount=-1 +kerning first=324 second=119 amount=-1 +kerning first=350 second=217 amount=-1 +kerning first=302 second=117 amount=-1 +kerning first=262 second=256 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=45 second=379 amount=-1 +kerning first=85 second=256 amount=-1 +kerning first=232 second=314 amount=-1 +kerning first=1046 second=1095 amount=-1 +kerning first=87 second=263 amount=-1 +kerning first=381 second=121 amount=-1 +kerning first=84 second=245 amount=-1 +kerning first=326 second=8220 amount=-1 +kerning first=205 second=363 amount=-1 +kerning first=262 second=82 amount=-1 +kerning first=113 second=8220 amount=-1 +kerning first=266 second=302 amount=-1 +kerning first=258 second=221 amount=-2 +kerning first=296 second=228 amount=-1 +kerning first=368 second=228 amount=-1 +kerning first=376 second=347 amount=-1 +kerning first=119 second=228 amount=-1 +kerning first=375 second=281 amount=-1 +kerning first=291 second=259 amount=-1 +kerning first=196 second=347 amount=-1 +kerning first=97 second=8221 amount=-1 +kerning first=195 second=85 amount=-1 +kerning first=187 second=200 amount=-1 +kerning first=67 second=288 amount=-1 +kerning first=260 second=266 amount=-1 +kerning first=8216 second=335 amount=-1 +kerning first=289 second=316 amount=-1 +kerning first=229 second=8220 amount=-1 +kerning first=218 second=197 amount=-1 +kerning first=371 second=246 amount=-1 +kerning first=354 second=83 amount=-1 +kerning first=356 second=90 amount=-1 +kerning first=346 second=171 amount=-1 +kerning first=362 second=197 amount=-1 +kerning first=310 second=171 amount=-1 +kerning first=352 second=325 amount=-1 +kerning first=86 second=246 amount=-1 +kerning first=290 second=197 amount=-1 +kerning first=382 second=171 amount=-1 +kerning first=258 second=87 amount=-2 +kerning first=1027 second=1051 amount=-1 +kerning first=234 second=103 amount=-1 +kerning first=8250 second=350 amount=-1 +kerning first=1043 second=1077 amount=-1 +kerning first=262 second=278 amount=-1 +kerning first=303 second=281 amount=-1 +kerning first=198 second=103 amount=-1 +kerning first=364 second=103 amount=-1 +kerning first=346 second=274 amount=-1 +kerning first=220 second=103 amount=-1 +kerning first=256 second=103 amount=-1 +kerning first=84 second=263 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=119 second=333 amount=-1 +kerning first=187 second=370 amount=-1 +kerning first=284 second=196 amount=-1 +kerning first=246 second=120 amount=-1 +kerning first=260 second=334 amount=-1 +kerning first=262 second=214 amount=-1 +kerning first=266 second=284 amount=-1 +kerning first=232 second=255 amount=-1 +kerning first=84 second=199 amount=-1 +kerning first=83 second=207 amount=-1 +kerning first=286 second=89 amount=-1 +kerning first=374 second=284 amount=-1 +kerning first=87 second=382 amount=-1 +kerning first=45 second=203 amount=-1 +kerning first=367 second=121 amount=-1 +kerning first=205 second=361 amount=-1 +kerning first=121 second=45 amount=-1 +kerning first=344 second=362 amount=-1 +kerning first=259 second=121 amount=-1 +kerning first=8218 second=356 amount=-2 +kerning first=223 second=121 amount=-1 +kerning first=310 second=264 amount=-1 +kerning first=187 second=121 amount=-1 +kerning first=89 second=284 amount=-1 +kerning first=303 second=339 amount=-1 +kerning first=224 second=8221 amount=-1 +kerning first=66 second=102 amount=-1 +kerning first=260 second=8221 amount=-1 +kerning first=98 second=316 amount=-1 +kerning first=350 second=72 amount=-1 +kerning first=257 second=118 amount=-1 +kerning first=303 second=235 amount=-1 +kerning first=375 second=235 amount=-1 +kerning first=365 second=118 amount=-1 +kerning first=119 second=248 amount=-1 +kerning first=90 second=378 amount=-1 +kerning first=253 second=283 amount=-1 +kerning first=82 second=218 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=87 second=281 amount=-1 +kerning first=221 second=118 amount=-1 +kerning first=45 second=69 amount=-1 +kerning first=284 second=86 amount=-1 +kerning first=266 second=352 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=8216 second=289 amount=-1 +kerning first=262 second=315 amount=-1 +kerning first=240 second=120 amount=-1 +kerning first=264 second=323 amount=-1 +kerning first=45 second=346 amount=-1 +kerning first=71 second=86 amount=-1 +kerning first=192 second=217 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=304 second=250 amount=-1 +kerning first=86 second=83 amount=-1 +kerning first=217 second=224 amount=-1 +kerning first=356 second=198 amount=-2 +kerning first=289 second=224 amount=-1 +kerning first=327 second=227 amount=-1 +kerning first=85 second=192 amount=-1 +kerning first=284 second=198 amount=-1 +kerning first=291 second=227 amount=-1 +kerning first=255 second=227 amount=-1 +kerning first=66 second=284 amount=-1 +kerning first=192 second=89 amount=-2 +kerning first=236 second=8249 amount=-1 +kerning first=78 second=227 amount=-1 +kerning first=72 second=363 amount=-1 +kerning first=86 second=244 amount=-1 +kerning first=381 second=291 amount=-1 +kerning first=199 second=325 amount=-1 +kerning first=325 second=97 amount=-1 +kerning first=371 second=244 amount=-1 +kerning first=317 second=90 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=201 second=291 amount=-1 +kerning first=86 second=187 amount=-1 +kerning first=193 second=210 amount=-1 +kerning first=375 second=378 amount=-1 +kerning first=117 second=287 amount=-1 +kerning first=248 second=44 amount=-1 +kerning first=290 second=256 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=199 second=268 amount=-1 +kerning first=88 second=210 amount=-1 +kerning first=362 second=256 amount=-1 +kerning first=121 second=337 amount=-1 +kerning first=284 second=44 amount=-1 +kerning first=71 second=44 amount=-1 +kerning first=197 second=366 amount=-1 +kerning first=212 second=198 amount=-1 +kerning first=71 second=198 amount=-1 +kerning first=218 second=256 amount=-1 +kerning first=310 second=286 amount=-1 +kerning first=89 second=326 amount=-1 +kerning first=366 second=287 amount=-1 +kerning first=330 second=287 amount=-1 +kerning first=266 second=205 amount=-1 +kerning first=258 second=287 amount=-1 +kerning first=272 second=197 amount=-1 +kerning first=194 second=368 amount=-1 +kerning first=374 second=326 amount=-1 +kerning first=304 second=228 amount=-1 +kerning first=194 second=262 amount=-1 +kerning first=86 second=350 amount=-1 +kerning first=374 second=262 amount=-1 +kerning first=248 second=108 amount=-1 +kerning first=266 second=262 amount=-1 +kerning first=344 second=8249 amount=-1 +kerning first=217 second=261 amount=-1 +kerning first=380 second=8249 amount=-1 +kerning first=255 second=269 amount=-1 +kerning first=325 second=261 amount=-1 +kerning first=289 second=261 amount=-1 +kerning first=8220 second=97 amount=-1 +kerning first=253 second=261 amount=-1 +kerning first=327 second=229 amount=-1 +kerning first=187 second=310 amount=-1 +kerning first=291 second=229 amount=-1 +kerning first=87 second=338 amount=-1 +kerning first=1038 second=1113 amount=-1 +kerning first=220 second=257 amount=-1 +kerning first=1036 second=1059 amount=-1 +kerning first=78 second=229 amount=-1 +kerning first=194 second=346 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=66 second=45 amount=-1 +kerning first=255 second=229 amount=-1 +kerning first=219 second=229 amount=-1 +kerning first=86 second=286 amount=-1 +kerning first=84 second=243 amount=-1 +kerning first=103 second=97 amount=-1 +kerning first=118 second=240 amount=-1 +kerning first=260 second=332 amount=-1 +kerning first=1070 second=1038 amount=-1 +kerning first=199 second=290 amount=-1 +kerning first=121 second=271 amount=-1 +kerning first=8216 second=333 amount=-1 +kerning first=102 second=45 amount=-1 +kerning first=195 second=356 amount=-2 +kerning first=87 second=261 amount=-1 +kerning first=75 second=211 amount=-1 +kerning first=313 second=381 amount=-1 +kerning first=266 second=304 amount=-1 +kerning first=82 second=275 amount=-1 +kerning first=339 second=255 amount=-1 +kerning first=231 second=255 amount=-1 +kerning first=119 second=226 amount=-1 +kerning first=8218 second=378 amount=-1 +kerning first=267 second=255 amount=-1 +kerning first=195 second=255 amount=-1 +kerning first=374 second=227 amount=-1 +kerning first=241 second=119 amount=-1 +kerning first=296 second=226 amount=-1 +kerning first=277 second=119 amount=-1 +kerning first=90 second=255 amount=-1 +kerning first=302 second=227 amount=-1 +kerning first=345 second=44 amount=-1 +kerning first=368 second=226 amount=-1 +kerning first=67 second=71 amount=-1 +kerning first=374 second=259 amount=-1 +kerning first=313 second=119 amount=-1 +kerning first=89 second=227 amount=-1 +kerning first=330 second=225 amount=-1 +kerning first=366 second=225 amount=-1 +kerning first=310 second=363 amount=-1 +kerning first=1113 second=1091 amount=-1 +kerning first=365 second=314 amount=-1 +kerning first=103 second=230 amount=-1 +kerning first=84 second=241 amount=-1 +kerning first=364 second=257 amount=-1 +kerning first=334 second=192 amount=-1 +kerning first=370 second=192 amount=-1 +kerning first=193 second=289 amount=-1 +kerning first=213 second=193 amount=-1 +kerning first=192 second=338 amount=-1 +kerning first=193 second=8220 amount=-1 +kerning first=264 second=338 amount=-1 +kerning first=362 second=122 amount=-1 +kerning first=233 second=46 amount=-1 +kerning first=245 second=44 amount=-1 +kerning first=218 second=122 amount=-1 +kerning first=84 second=375 amount=-1 +kerning first=86 second=288 amount=-1 +kerning first=65 second=354 amount=-2 +kerning first=68 second=46 amount=-1 +kerning first=260 second=213 amount=-1 +kerning first=195 second=361 amount=-1 +kerning first=221 second=230 amount=-1 +kerning first=344 second=364 amount=-1 +kerning first=379 second=369 amount=-1 +kerning first=245 second=46 amount=-1 +kerning first=281 second=46 amount=-1 +kerning first=266 second=282 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=199 second=83 amount=-1 +kerning first=197 second=346 amount=-1 +kerning first=45 second=201 amount=-1 +kerning first=240 second=375 amount=-1 +kerning first=286 second=87 amount=-1 +kerning first=99 second=375 amount=-1 +kerning first=87 second=259 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=375 second=277 amount=-1 +kerning first=209 second=103 amount=-1 +kerning first=89 second=328 amount=-1 +kerning first=354 second=243 amount=-1 +kerning first=303 second=277 amount=-1 +kerning first=376 second=351 amount=-1 +kerning first=352 second=75 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=196 second=351 amount=-1 +kerning first=97 second=8217 amount=-1 +kerning first=346 second=330 amount=-1 +kerning first=199 second=103 amount=-1 +kerning first=69 second=287 amount=-1 +kerning first=195 second=286 amount=-1 +kerning first=82 second=253 amount=-1 +kerning first=1100 second=1118 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=187 second=253 amount=-1 +kerning first=72 second=171 amount=-1 +kerning first=259 second=253 amount=-1 +kerning first=371 second=231 amount=-1 +kerning first=223 second=253 amount=-1 +kerning first=327 second=117 amount=-1 +kerning first=284 second=103 amount=-1 +kerning first=212 second=260 amount=-1 +kerning first=376 second=65 amount=-2 +kerning first=356 second=121 amount=-1 +kerning first=71 second=260 amount=-1 +kerning first=195 second=334 amount=-1 +kerning first=374 second=328 amount=-1 +kerning first=86 second=231 amount=-1 +kerning first=216 second=197 amount=-1 +kerning first=284 second=260 amount=-1 +kerning first=344 second=318 amount=-1 +kerning first=83 second=270 amount=-1 +kerning first=356 second=260 amount=-2 +kerning first=234 second=121 amount=-1 +kerning first=356 second=196 amount=-2 +kerning first=71 second=196 amount=-1 +kerning first=250 second=316 amount=-1 +kerning first=212 second=196 amount=-1 +kerning first=351 second=351 amount=-1 +kerning first=281 second=118 amount=-1 +kerning first=221 second=228 amount=-1 +kerning first=218 second=44 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=83 second=171 amount=-1 +kerning first=264 second=382 amount=-1 +kerning first=374 second=99 amount=-1 +kerning first=310 second=213 amount=-1 +kerning first=344 second=221 amount=-1 +kerning first=67 second=302 amount=-1 +kerning first=82 second=220 amount=-1 +kerning first=187 second=82 amount=-1 +kerning first=66 second=351 amount=-1 +kerning first=1027 second=1093 amount=-1 +kerning first=199 second=270 amount=-1 +kerning first=258 second=71 amount=-1 +kerning first=374 second=8250 amount=-1 +kerning first=206 second=224 amount=-1 +kerning first=310 second=266 amount=-1 +kerning first=119 second=246 amount=-1 +kerning first=375 second=103 amount=-1 +kerning first=267 second=103 amount=-1 +kerning first=84 second=8249 amount=-1 +kerning first=195 second=103 amount=-1 +kerning first=325 second=224 amount=-1 +kerning first=231 second=103 amount=-1 +kerning first=90 second=103 amount=-1 +kerning first=1043 second=1092 amount=-1 +kerning first=245 second=253 amount=-1 +kerning first=187 second=220 amount=-1 +kerning first=353 second=253 amount=-1 +kerning first=195 second=354 amount=-2 +kerning first=317 second=253 amount=-1 +kerning first=45 second=344 amount=-1 +kerning first=260 second=171 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=368 second=171 amount=-1 +kerning first=234 second=255 amount=-1 +kerning first=253 second=281 amount=-1 +kerning first=87 second=283 amount=-1 +kerning first=354 second=118 amount=-1 +kerning first=72 second=365 amount=-1 +kerning first=45 second=253 amount=-1 +kerning first=266 second=45 amount=-1 +kerning first=262 second=313 amount=-1 +kerning first=86 second=264 amount=-1 +kerning first=283 second=287 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=70 second=287 amount=-1 +kerning first=262 second=216 amount=-1 +kerning first=106 second=287 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=206 second=257 amount=-1 +kerning first=192 second=85 amount=-1 +kerning first=87 second=74 amount=-1 +kerning first=118 second=273 amount=-1 +kerning first=120 second=8249 amount=-1 +kerning first=83 second=193 amount=-1 +kerning first=374 second=46 amount=-1 +kerning first=332 second=193 amount=-1 +kerning first=310 second=118 amount=-1 +kerning first=74 second=192 amount=-1 +kerning first=375 second=279 amount=-1 +kerning first=268 second=327 amount=-1 +kerning first=344 second=113 amount=-1 +kerning first=103 second=227 amount=-1 +kerning first=66 second=78 amount=-1 +kerning first=260 second=268 amount=-1 +kerning first=313 second=8217 amount=-1 +kerning first=1027 second=1113 amount=-1 +kerning first=121 second=333 amount=-1 +kerning first=370 second=291 amount=-1 +kerning first=298 second=291 amount=-1 +kerning first=262 second=291 amount=-1 +kerning first=121 second=291 amount=-1 +kerning first=85 second=291 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=8220 second=196 amount=-2 +kerning first=67 second=73 amount=-1 +kerning first=8249 second=86 amount=-1 +kerning first=344 second=199 amount=-1 +kerning first=84 second=67 amount=-1 +kerning first=187 second=198 amount=-1 +kerning first=260 second=289 amount=-1 +kerning first=374 second=210 amount=-1 +kerning first=258 second=366 amount=-1 +kerning first=379 second=367 amount=-1 +kerning first=89 second=277 amount=-1 +kerning first=223 second=44 amount=-1 +kerning first=352 second=73 amount=-1 +kerning first=45 second=366 amount=-1 +kerning first=192 second=253 amount=-1 +kerning first=85 second=194 amount=-1 +kerning first=122 second=112 amount=-1 +kerning first=262 second=194 amount=-1 +kerning first=350 second=105 amount=-1 +kerning first=230 second=119 amount=-1 +kerning first=356 second=240 amount=-1 +kerning first=121 second=335 amount=-1 +kerning first=374 second=119 amount=-1 +kerning first=8217 second=99 amount=-1 +kerning first=1045 second=1038 amount=-1 +kerning first=8250 second=282 amount=-1 +kerning first=317 second=374 amount=-1 +kerning first=281 second=107 amount=-1 +kerning first=193 second=353 amount=-1 +kerning first=187 second=66 amount=-1 +kerning first=295 second=45 amount=-1 +kerning first=246 second=314 amount=-1 +kerning first=296 second=367 amount=-1 +kerning first=204 second=289 amount=-1 +kerning first=88 second=212 amount=-1 +kerning first=260 second=367 amount=-1 +kerning first=99 second=289 amount=-1 +kerning first=193 second=212 amount=-1 +kerning first=1061 second=1086 amount=-1 +kerning first=86 second=101 amount=-1 +kerning first=67 second=205 amount=-1 +kerning first=8216 second=234 amount=-1 +kerning first=75 second=286 amount=-1 +kerning first=231 second=257 amount=-1 +kerning first=66 second=296 amount=-1 +kerning first=346 second=310 amount=-1 +kerning first=371 second=101 amount=-1 +kerning first=375 second=257 amount=-1 +kerning first=267 second=257 amount=-1 +kerning first=352 second=205 amount=-1 +kerning first=258 second=115 amount=-1 +kerning first=89 second=229 amount=-1 +kerning first=374 second=229 amount=-1 +kerning first=118 second=339 amount=-1 +kerning first=1036 second=1108 amount=-1 +kerning first=101 second=253 amount=-1 +kerning first=302 second=229 amount=-1 +kerning first=82 second=339 amount=-1 +kerning first=344 second=214 amount=-1 +kerning first=362 second=193 amount=-1 +kerning first=219 second=97 amount=-1 +kerning first=196 second=45 amount=-1 +kerning first=327 second=97 amount=-1 +kerning first=107 second=240 amount=-1 +kerning first=291 second=97 amount=-1 +kerning first=86 second=211 amount=-1 +kerning first=267 second=318 amount=-1 +kerning first=350 second=356 amount=-1 +kerning first=218 second=287 amount=-1 +kerning first=260 second=290 amount=-1 +kerning first=334 second=194 amount=-1 +kerning first=260 second=83 amount=-1 +kerning first=370 second=194 amount=-1 +kerning first=268 second=45 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=304 second=45 amount=-1 +kerning first=256 second=255 amount=-1 +kerning first=115 second=255 amount=-1 +kerning first=368 second=83 amount=-1 +kerning first=65 second=356 amount=-2 +kerning first=376 second=197 amount=-2 +kerning first=87 second=336 amount=-1 +kerning first=264 second=380 amount=-1 +kerning first=192 second=336 amount=-1 +kerning first=65 second=8249 amount=-1 +kerning first=264 second=336 amount=-1 +kerning first=67 second=280 amount=-1 +kerning first=65 second=334 amount=-1 +kerning first=352 second=120 amount=-1 +kerning first=333 second=253 amount=-1 +kerning first=310 second=81 amount=-1 +kerning first=270 second=46 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=221 second=65 amount=-2 +kerning first=171 second=84 amount=-1 +kerning first=234 second=46 amount=-1 +kerning first=344 second=243 amount=-1 +kerning first=75 second=264 amount=-1 +kerning first=1054 second=1059 amount=-1 +kerning first=87 second=380 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=82 second=121 amount=-1 +kerning first=310 second=288 amount=-1 +kerning first=333 second=318 amount=-1 +kerning first=369 second=318 amount=-1 +kerning first=187 second=317 amount=-1 +kerning first=66 second=122 amount=-1 +kerning first=8216 second=256 amount=-2 +kerning first=325 second=259 amount=-1 +kerning first=345 second=46 amount=-1 +kerning first=289 second=259 amount=-1 +kerning first=253 second=259 amount=-1 +kerning first=376 second=230 amount=-1 +kerning first=199 second=69 amount=-1 +kerning first=371 second=8217 amount=-1 +kerning first=248 second=253 amount=-1 +kerning first=337 second=375 amount=-1 +kerning first=187 second=381 amount=-1 +kerning first=88 second=375 amount=-1 +kerning first=217 second=259 amount=-1 +kerning first=193 second=375 amount=-1 +kerning first=229 second=375 amount=-1 +kerning first=67 second=346 amount=-1 +kerning first=266 second=207 amount=-1 +kerning first=350 second=323 amount=-1 +kerning first=374 second=381 amount=-1 +kerning first=234 second=311 amount=-1 +kerning first=323 second=259 amount=-1 +kerning first=287 second=259 amount=-1 +kerning first=115 second=253 amount=-1 +kerning first=325 second=363 amount=-1 +kerning first=256 second=253 amount=-1 +kerning first=74 second=259 amount=-1 +kerning first=267 second=224 amount=-1 +kerning first=344 second=346 amount=-1 +kerning first=354 second=334 amount=-1 +kerning first=321 second=122 amount=-1 +kerning first=375 second=224 amount=-1 +kerning first=279 second=375 amount=-1 +kerning first=315 second=375 amount=-1 +kerning first=351 second=375 amount=-1 +kerning first=72 second=230 amount=-1 +kerning first=231 second=224 amount=-1 +kerning first=8217 second=261 amount=-1 +kerning first=8220 second=279 amount=-1 +kerning first=218 second=225 amount=-1 +kerning first=192 second=8220 amount=-1 +kerning first=102 second=316 amount=1 +kerning first=66 second=316 amount=-1 +kerning first=268 second=207 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=87 second=196 amount=-2 +kerning first=335 second=121 amount=-1 +kerning first=263 second=121 amount=-1 +kerning first=346 second=82 amount=-1 +kerning first=227 second=121 amount=-1 +kerning first=376 second=335 amount=-1 +kerning first=283 second=104 amount=-1 +kerning first=86 second=121 amount=-1 +kerning first=121 second=171 amount=-1 +kerning first=85 second=171 amount=-1 +kerning first=118 second=271 amount=-1 +kerning first=374 second=231 amount=-1 +kerning first=362 second=287 amount=-1 +kerning first=262 second=171 amount=-1 +kerning first=376 second=212 amount=-1 +kerning first=370 second=171 amount=-1 +kerning first=336 second=196 amount=-1 +kerning first=290 second=287 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=109 second=8217 amount=-1 +kerning first=86 second=213 amount=-1 +kerning first=243 second=375 amount=-1 +kerning first=8249 second=89 amount=-1 +kerning first=66 second=237 amount=-1 +kerning first=250 second=8217 amount=-1 +kerning first=66 second=375 amount=-1 +kerning first=266 second=310 amount=-1 +kerning first=377 second=171 amount=-1 +kerning first=204 second=229 amount=-1 +kerning first=350 second=237 amount=-1 +kerning first=353 second=351 amount=-1 +kerning first=8218 second=382 amount=-1 +kerning first=354 second=333 amount=-1 +kerning first=272 second=256 amount=-1 +kerning first=187 second=330 amount=-1 +kerning first=187 second=120 amount=-1 +kerning first=377 second=249 amount=-1 +kerning first=223 second=120 amount=-1 +kerning first=374 second=379 amount=-1 +kerning first=195 second=214 amount=-1 +kerning first=368 second=103 amount=-1 +kerning first=260 second=103 amount=-1 +kerning first=219 second=230 amount=-1 +kerning first=296 second=103 amount=-1 +kerning first=207 second=365 amount=-1 +kerning first=83 second=103 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=233 second=318 amount=-1 +kerning first=316 second=118 amount=-1 +kerning first=352 second=118 amount=-1 +kerning first=66 second=365 amount=-1 +kerning first=321 second=362 amount=-1 +kerning first=89 second=231 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=310 second=332 amount=-1 +kerning first=204 second=117 amount=-1 +kerning first=83 second=313 amount=-1 +kerning first=279 second=316 amount=-1 +kerning first=243 second=316 amount=-1 +kerning first=354 second=216 amount=-1 +kerning first=121 second=378 amount=-1 +kerning first=85 second=378 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=256 second=264 amount=-1 +kerning first=260 second=264 amount=-1 +kerning first=381 second=250 amount=-1 +kerning first=316 second=8220 amount=-1 +kerning first=82 second=281 amount=-1 +kerning first=187 second=202 amount=-1 +kerning first=118 second=281 amount=-1 +kerning first=347 second=375 amount=-1 +kerning first=1061 second=1098 amount=-1 +kerning first=1025 second=1098 amount=-1 +kerning first=118 second=283 amount=-1 +kerning first=304 second=230 amount=-1 +kerning first=363 second=8221 amount=-1 +kerning first=344 second=218 amount=-1 +kerning first=262 second=378 amount=-1 +kerning first=8222 second=218 amount=-1 +kerning first=235 second=314 amount=-1 +kerning first=67 second=69 amount=-1 +kerning first=256 second=119 amount=-1 +kerning first=86 second=331 amount=-1 +kerning first=344 second=267 amount=-1 +kerning first=315 second=86 amount=-1 +kerning first=171 second=86 amount=-1 +kerning first=89 second=379 amount=-1 +kerning first=192 second=354 amount=-2 +kerning first=284 second=192 amount=-1 +kerning first=356 second=192 amount=-2 +kerning first=71 second=192 amount=-1 +kerning first=253 second=224 amount=-1 +kerning first=212 second=192 amount=-1 +kerning first=268 second=296 amount=-1 +kerning first=375 second=244 amount=-1 +kerning first=350 second=303 amount=-1 +kerning first=87 second=245 amount=-1 +kerning first=187 second=90 amount=-1 +kerning first=199 second=274 amount=-1 +kerning first=381 second=378 amount=-1 +kerning first=268 second=256 amount=-1 +kerning first=120 second=227 amount=-1 +kerning first=84 second=227 amount=-1 +kerning first=376 second=256 amount=-2 +kerning first=193 second=366 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=313 second=291 amount=-1 +kerning first=90 second=102 amount=-1 +kerning first=277 second=291 amount=-1 +kerning first=84 second=336 amount=-1 +kerning first=87 second=226 amount=-1 +kerning first=205 second=291 amount=-1 +kerning first=351 second=112 amount=-1 +kerning first=221 second=216 amount=-1 +kerning first=1038 second=1084 amount=-1 +kerning first=303 second=263 amount=-1 +kerning first=88 second=268 amount=-1 +kerning first=375 second=263 amount=-1 +kerning first=382 second=112 amount=-1 +kerning first=304 second=365 amount=-1 +kerning first=249 second=255 amount=-1 +kerning first=110 second=8249 amount=-1 +kerning first=196 second=365 amount=-1 +kerning first=74 second=8249 amount=-1 +kerning first=255 second=240 amount=-1 +kerning first=287 second=8249 amount=-1 +kerning first=192 second=84 amount=-2 +kerning first=323 second=8249 amount=-1 +kerning first=193 second=268 amount=-1 +kerning first=121 second=108 amount=-1 +kerning first=117 second=318 amount=-1 +kerning first=1025 second=1059 amount=-1 +kerning first=362 second=228 amount=-1 +kerning first=65 second=284 amount=-1 +kerning first=290 second=198 amount=-1 +kerning first=350 second=205 amount=-1 +kerning first=218 second=198 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=218 second=228 amount=-1 +kerning first=268 second=286 amount=-1 +kerning first=77 second=228 amount=-1 +kerning first=362 second=198 amount=-1 +kerning first=262 second=260 amount=-1 +kerning first=354 second=65 amount=-2 +kerning first=330 second=367 amount=-1 +kerning first=8250 second=194 amount=-1 +kerning first=1043 second=1078 amount=-1 +kerning first=258 second=367 amount=-1 +kerning first=85 second=260 amount=-1 +kerning first=120 second=115 amount=-1 +kerning first=107 second=339 amount=-1 +kerning first=8250 second=82 amount=-1 +kerning first=287 second=229 amount=-1 +kerning first=370 second=260 amount=-1 +kerning first=85 second=350 amount=-1 +kerning first=334 second=260 amount=-1 +kerning first=1040 second=1090 amount=-1 +kerning first=196 second=286 amount=-1 +kerning first=107 second=271 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=290 second=356 amount=-1 +kerning first=261 second=8217 amount=-1 +kerning first=118 second=242 amount=-1 +kerning first=1050 second=1058 amount=-1 +kerning first=205 second=261 amount=-1 +kerning first=369 second=8217 amount=-1 +kerning first=82 second=242 amount=-1 +kerning first=311 second=45 amount=-1 +kerning first=323 second=229 amount=-1 +kerning first=356 second=339 amount=-1 +kerning first=8217 second=74 amount=-1 +kerning first=8217 second=231 amount=-1 +kerning first=199 second=304 amount=-1 +kerning first=119 second=339 amount=-1 +kerning first=356 second=211 amount=-1 +kerning first=242 second=44 amount=-1 +kerning first=8217 second=100 amount=-1 +kerning first=379 second=255 amount=-1 +kerning first=199 second=203 amount=-1 +kerning first=307 second=255 amount=-1 +kerning first=235 second=255 amount=-1 +kerning first=220 second=224 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=374 second=110 amount=-1 +kerning first=366 second=97 amount=-1 +kerning first=356 second=290 amount=-1 +kerning first=330 second=97 amount=-1 +kerning first=350 second=44 amount=-1 +kerning first=68 second=193 amount=-1 +kerning first=364 second=224 amount=-1 +kerning first=232 second=46 amount=-1 +kerning first=74 second=289 amount=-1 +kerning first=84 second=257 amount=-1 +kerning first=356 second=241 amount=-1 +kerning first=323 second=289 amount=-1 +kerning first=45 second=209 amount=-1 +kerning first=313 second=370 amount=-1 +kerning first=354 second=225 amount=-1 +kerning first=66 second=287 amount=-1 +kerning first=365 second=255 amount=-1 +kerning first=197 second=368 amount=-1 +kerning first=351 second=287 amount=-1 +kerning first=260 second=352 amount=-1 +kerning first=315 second=287 amount=-1 +kerning first=207 second=287 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=119 second=283 amount=-1 +kerning first=235 second=118 amount=-1 +kerning first=70 second=346 amount=-1 +kerning first=287 second=347 amount=-1 +kerning first=368 second=352 amount=-1 +kerning first=80 second=46 amount=-1 +kerning first=313 second=380 amount=-1 +kerning first=1050 second=1057 amount=-1 +kerning first=71 second=291 amount=-1 +kerning first=344 second=87 amount=-1 +kerning first=84 second=266 amount=-1 +kerning first=90 second=253 amount=-1 +kerning first=262 second=201 amount=-1 +kerning first=356 second=333 amount=-1 +kerning first=266 second=350 amount=-1 +kerning first=204 second=259 amount=-1 +kerning first=99 second=259 amount=-1 +kerning first=281 second=311 amount=-1 +kerning first=260 second=370 amount=-1 +kerning first=82 second=81 amount=-1 +kerning first=376 second=375 amount=-1 +kerning first=78 second=230 amount=-1 +kerning first=89 second=350 amount=-1 +kerning first=291 second=230 amount=-1 +kerning first=196 second=375 amount=-1 +kerning first=194 second=350 amount=-1 +kerning first=232 second=375 amount=-1 +kerning first=255 second=230 amount=-1 +kerning first=66 second=207 amount=-1 +kerning first=201 second=289 amount=-1 +kerning first=235 second=104 amount=-1 +kerning first=381 second=289 amount=-1 +kerning first=193 second=219 amount=-1 +kerning first=86 second=332 amount=-1 +kerning first=1038 second=1075 amount=-1 +kerning first=219 second=378 amount=-1 +kerning first=197 second=288 amount=-1 +kerning first=71 second=65 amount=-1 +kerning first=1024 second=1098 amount=-1 +kerning first=376 second=326 amount=-1 +kerning first=310 second=121 amount=-1 +kerning first=218 second=291 amount=-1 +kerning first=313 second=221 amount=-1 +kerning first=1059 second=1033 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=295 second=8217 amount=-1 +kerning first=255 second=231 amount=-1 +kerning first=381 second=171 amount=-1 +kerning first=217 second=196 amount=-1 +kerning first=207 second=228 amount=-1 +kerning first=266 second=270 amount=-1 +kerning first=374 second=100 amount=-1 +kerning first=316 second=119 amount=-1 +kerning first=256 second=351 amount=-1 +kerning first=119 second=314 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=317 second=381 amount=-1 +kerning first=269 second=318 amount=-1 +kerning first=256 second=214 amount=-1 +kerning first=8250 second=204 amount=-1 +kerning first=352 second=119 amount=-1 +kerning first=197 second=336 amount=-1 +kerning first=66 second=228 amount=-1 +kerning first=65 second=338 amount=-1 +kerning first=313 second=379 amount=-1 +kerning first=1059 second=1113 amount=-1 +kerning first=75 second=213 amount=-1 +kerning first=195 second=253 amount=-1 +kerning first=289 second=382 amount=-1 +kerning first=119 second=234 amount=-1 +kerning first=88 second=8249 amount=-1 +kerning first=267 second=253 amount=-1 +kerning first=231 second=253 amount=-1 +kerning first=258 second=249 amount=-1 +kerning first=193 second=8249 amount=-1 +kerning first=339 second=253 amount=-1 +kerning first=194 second=89 amount=-2 +kerning first=65 second=363 amount=-1 +kerning first=206 second=363 amount=-1 +kerning first=354 second=246 amount=-1 +kerning first=1027 second=1083 amount=-1 +kerning first=8220 second=240 amount=-1 +kerning first=379 second=103 amount=-1 +kerning first=199 second=344 amount=-1 +kerning first=307 second=103 amount=-1 +kerning first=235 second=103 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=82 second=232 amount=-1 +kerning first=192 second=284 amount=-1 +kerning first=118 second=232 amount=-1 +kerning first=197 second=118 amount=-1 +kerning first=346 second=203 amount=-1 +kerning first=233 second=118 amount=-1 +kerning first=87 second=284 amount=-1 +kerning first=269 second=118 amount=-1 +kerning first=45 second=377 amount=-1 +kerning first=194 second=8221 amount=-1 +kerning first=71 second=89 amount=-1 +kerning first=77 second=365 amount=-1 +kerning first=264 second=284 amount=-1 +kerning first=346 second=362 amount=-1 +kerning first=87 second=235 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=8216 second=269 amount=-1 +kerning first=76 second=382 amount=-1 +kerning first=253 second=382 amount=-1 +kerning first=305 second=118 amount=-1 +kerning first=254 second=316 amount=-1 +kerning first=217 second=382 amount=-1 +kerning first=353 second=120 amount=-1 +kerning first=289 second=44 amount=-1 +kerning first=87 second=197 amount=-2 +kerning first=253 second=44 amount=-1 +kerning first=260 second=255 amount=-1 +kerning first=88 second=67 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=264 second=197 amount=-1 +kerning first=84 second=267 amount=-1 +kerning first=217 second=44 amount=-1 +kerning first=356 second=232 amount=-1 +kerning first=269 second=97 amount=-1 +kerning first=336 second=197 amount=-1 +kerning first=73 second=227 amount=-1 +kerning first=1059 second=1081 amount=-1 +kerning first=220 second=193 amount=-1 +kerning first=266 second=79 amount=-1 +kerning first=45 second=118 amount=-1 +kerning first=79 second=193 amount=-1 +kerning first=374 second=79 amount=-1 +kerning first=364 second=193 amount=-1 +kerning first=1050 second=1059 amount=-1 +kerning first=371 second=273 amount=-1 +kerning first=199 second=65 amount=-1 +kerning first=262 second=338 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=245 second=120 amount=-1 +kerning first=107 second=232 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=258 second=118 amount=-1 +kerning first=194 second=79 amount=-1 +kerning first=323 second=250 amount=-1 +kerning first=253 second=245 amount=-1 +kerning first=356 second=378 amount=-1 +kerning first=8220 second=275 amount=-1 +kerning first=267 second=303 amount=-1 +kerning first=263 second=46 amount=-1 +kerning first=279 second=44 amount=-1 +kerning first=231 second=303 amount=-1 +kerning first=194 second=221 amount=-2 +kerning first=258 second=199 amount=-1 +kerning first=1070 second=1059 amount=-1 +kerning first=374 second=83 amount=-1 +kerning first=374 second=291 amount=-1 +kerning first=310 second=361 amount=-1 +kerning first=338 second=291 amount=-1 +kerning first=107 second=242 amount=-1 +kerning first=302 second=291 amount=-1 +kerning first=119 second=113 amount=-1 +kerning first=266 second=291 amount=-1 +kerning first=230 second=291 amount=-1 +kerning first=194 second=291 amount=-1 +kerning first=89 second=291 amount=-1 +kerning first=356 second=242 amount=-1 +kerning first=268 second=216 amount=-1 +kerning first=350 second=102 amount=-1 +kerning first=196 second=216 amount=-1 +kerning first=193 second=67 amount=-1 +kerning first=346 second=204 amount=-1 +kerning first=376 second=216 amount=-1 +kerning first=87 second=187 amount=-1 +kerning first=264 second=196 amount=-1 +kerning first=8216 second=259 amount=-1 +kerning first=221 second=335 amount=-1 +kerning first=8217 second=101 amount=-1 +kerning first=346 second=323 amount=-1 +kerning first=67 second=287 amount=-1 +kerning first=362 second=378 amount=-1 +kerning first=346 second=73 amount=-1 +kerning first=1038 second=1095 amount=-1 +kerning first=196 second=374 amount=-2 +kerning first=364 second=44 amount=-1 +kerning first=366 second=346 amount=-1 +kerning first=85 second=289 amount=-1 +kerning first=121 second=289 amount=-1 +kerning first=255 second=279 amount=-1 +kerning first=75 second=212 amount=-1 +kerning first=262 second=289 amount=-1 +kerning first=298 second=289 amount=-1 +kerning first=230 second=253 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=209 second=224 amount=-1 +kerning first=370 second=289 amount=-1 +kerning first=187 second=195 amount=-1 +kerning first=8250 second=203 amount=-1 +kerning first=287 second=108 amount=-1 +kerning first=251 second=108 amount=-1 +kerning first=66 second=200 amount=-1 +kerning first=8250 second=83 amount=-1 +kerning first=121 second=229 amount=-1 +kerning first=76 second=354 amount=-1 +kerning first=370 second=229 amount=-1 +kerning first=268 second=325 amount=-1 +kerning first=298 second=229 amount=-1 +kerning first=232 second=287 amount=-1 +kerning first=87 second=171 amount=-1 +kerning first=268 second=287 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=196 second=287 amount=-1 +kerning first=85 second=229 amount=-1 +kerning first=1036 second=1089 amount=-1 +kerning first=260 second=353 amount=-1 +kerning first=311 second=275 amount=-1 +kerning first=83 second=304 amount=-1 +kerning first=193 second=356 amount=-2 +kerning first=1059 second=1054 amount=-1 +kerning first=82 second=211 amount=-1 +kerning first=376 second=287 amount=-1 +kerning first=86 second=248 amount=-1 +kerning first=304 second=287 amount=-1 +kerning first=187 second=80 amount=-1 +kerning first=192 second=45 amount=-1 +kerning first=1059 second=1103 amount=-1 +kerning first=258 second=368 amount=-1 +kerning first=264 second=45 amount=-1 +kerning first=213 second=194 amount=-1 +kerning first=87 second=45 amount=-1 +kerning first=206 second=45 amount=-1 +kerning first=121 second=339 amount=-1 +kerning first=221 second=353 amount=-1 +kerning first=219 second=350 amount=-1 +kerning first=120 second=97 amount=-1 +kerning first=314 second=45 amount=-1 +kerning first=119 second=243 amount=-1 +kerning first=65 second=45 amount=-1 +kerning first=71 second=289 amount=-1 +kerning first=74 second=229 amount=-1 +kerning first=255 second=318 amount=-1 +kerning first=8220 second=231 amount=-1 +kerning first=291 second=318 amount=-1 +kerning first=196 second=356 amount=-2 +kerning first=350 second=45 amount=-1 +kerning first=363 second=318 amount=-1 +kerning first=284 second=289 amount=-1 +kerning first=376 second=255 amount=-1 +kerning first=346 second=370 amount=-1 +kerning first=196 second=255 amount=-1 +kerning first=199 second=112 amount=-1 +kerning first=75 second=332 amount=-1 +kerning first=262 second=80 amount=-1 +kerning first=8250 second=323 amount=-1 +kerning first=67 second=209 amount=-1 +kerning first=284 second=193 amount=-1 +kerning first=212 second=193 amount=-1 +kerning first=298 second=251 amount=-1 +kerning first=118 second=267 amount=-1 +kerning first=356 second=193 amount=-2 +kerning first=8216 second=198 amount=-2 +kerning first=220 second=44 amount=-1 +kerning first=71 second=193 amount=-1 +kerning first=194 second=8220 amount=-1 +kerning first=84 second=226 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=258 second=79 amount=-1 +kerning first=82 second=233 amount=-1 +kerning first=1046 second=1105 amount=-1 +kerning first=118 second=233 amount=-1 +kerning first=197 second=119 amount=-1 +kerning first=193 second=338 amount=-1 +kerning first=305 second=119 amount=-1 +kerning first=8250 second=313 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=233 second=119 amount=-1 +kerning first=269 second=119 amount=-1 +kerning first=303 second=111 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=221 second=225 amount=-1 +kerning first=118 second=314 amount=-1 +kerning first=249 second=314 amount=-1 +kerning first=375 second=111 amount=-1 +kerning first=354 second=46 amount=-1 +kerning first=246 second=46 amount=-1 +kerning first=374 second=8249 amount=-1 +kerning first=376 second=334 amount=-1 +kerning first=365 second=375 amount=-1 +kerning first=196 second=334 amount=-1 +kerning first=268 second=334 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=197 second=87 amount=-2 +kerning first=187 second=201 amount=-1 +kerning first=221 second=375 amount=-1 +kerning first=257 second=375 amount=-1 +kerning first=195 second=291 amount=-1 +kerning first=376 second=277 amount=-1 +kerning first=356 second=81 amount=-1 +kerning first=374 second=101 amount=-1 +kerning first=1070 second=1033 amount=-1 +kerning first=258 second=218 amount=-1 +kerning first=350 second=196 amount=-1 +kerning first=196 second=8220 amount=-1 +kerning first=311 second=235 amount=-1 +kerning first=45 second=205 amount=-1 +kerning first=286 second=193 amount=-1 +kerning first=337 second=316 amount=-1 +kerning first=84 second=248 amount=-1 +kerning first=232 second=104 amount=-1 +kerning first=71 second=171 amount=-1 +kerning first=281 second=119 amount=-1 +kerning first=8250 second=73 amount=-1 +kerning first=356 second=281 amount=-1 +kerning first=310 second=252 amount=-1 +kerning first=321 second=121 amount=-1 +kerning first=217 second=197 amount=-1 +kerning first=249 second=121 amount=-1 +kerning first=87 second=333 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=66 second=278 amount=-1 +kerning first=255 second=100 amount=-1 +kerning first=375 second=351 amount=-1 +kerning first=352 second=310 amount=-1 +kerning first=258 second=336 amount=-1 +kerning first=379 second=122 amount=-1 +kerning first=218 second=229 amount=-1 +kerning first=195 second=351 amount=-1 +kerning first=67 second=310 amount=-1 +kerning first=199 second=122 amount=-1 +kerning first=362 second=229 amount=-1 +kerning first=330 second=230 amount=-1 +kerning first=366 second=230 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=228 second=8217 amount=-1 +kerning first=195 second=366 amount=-1 +kerning first=84 second=198 amount=-2 +kerning first=87 second=115 amount=-1 +kerning first=8250 second=89 amount=-1 +kerning first=242 second=253 amount=-1 +kerning first=1092 second=1076 amount=-1 +kerning first=332 second=65 amount=-1 +kerning first=295 second=171 amount=-1 +kerning first=368 second=65 amount=-1 +kerning first=266 second=200 amount=-1 +kerning first=351 second=347 amount=-1 +kerning first=368 second=289 amount=-1 +kerning first=331 second=171 amount=-1 +kerning first=72 second=45 amount=-1 +kerning first=197 second=199 amount=-1 +kerning first=72 second=361 amount=-1 +kerning first=187 second=280 amount=-1 +kerning first=220 second=382 amount=-1 +kerning first=364 second=382 amount=-1 +kerning first=256 second=219 amount=-1 +kerning first=66 second=347 amount=-1 +kerning first=311 second=333 amount=-1 +kerning first=218 second=194 amount=-1 +kerning first=282 second=103 amount=-1 +kerning first=224 second=255 amount=-1 +kerning first=1038 second=1101 amount=-1 +kerning first=356 second=8250 amount=-1 +kerning first=313 second=8221 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=241 second=8221 amount=-1 +kerning first=69 second=103 amount=-1 +kerning first=77 second=117 amount=-1 +kerning first=258 second=346 amount=-1 +kerning first=46 second=171 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=82 second=171 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=86 second=283 amount=-1 +kerning first=354 second=264 amount=-1 +kerning first=8250 second=370 amount=-1 +kerning first=269 second=121 amount=-1 +kerning first=321 second=380 amount=-1 +kerning first=315 second=366 amount=-1 +kerning first=1059 second=1072 amount=-1 +kerning first=344 second=217 amount=-1 +kerning first=67 second=70 amount=-1 +kerning first=266 second=69 amount=-1 +kerning first=115 second=120 amount=-1 +kerning first=262 second=298 amount=-1 +kerning first=1059 second=1104 amount=-1 +kerning first=374 second=331 amount=-1 +kerning first=194 second=220 amount=-1 +kerning first=283 second=118 amount=-1 +kerning first=286 second=354 amount=-1 +kerning first=279 second=104 amount=-1 +kerning first=197 second=218 amount=-1 +kerning first=244 second=318 amount=-1 +kerning first=371 second=283 amount=-1 +kerning first=106 second=118 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=102 second=107 amount=1 +kerning first=204 second=250 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=8217 second=235 amount=-1 +kerning first=197 second=221 amount=-2 +kerning first=80 second=287 amount=-1 +kerning first=119 second=273 amount=-1 +kerning first=252 second=119 amount=-1 +kerning first=197 second=79 amount=-1 +kerning first=279 second=107 amount=-1 +kerning first=352 second=78 amount=-1 +kerning first=66 second=216 amount=-1 +kerning first=66 second=366 amount=-1 +kerning first=73 second=226 amount=-1 +kerning first=240 second=46 amount=-1 +kerning first=194 second=347 amount=-1 +kerning first=99 second=307 amount=-1 +kerning first=221 second=287 amount=-1 +kerning first=67 second=78 amount=-1 +kerning first=221 second=113 amount=-1 +kerning first=197 second=115 amount=-1 +kerning first=1027 second=1108 amount=-1 +kerning first=187 second=378 amount=-1 +kerning first=118 second=378 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=67 second=210 amount=-1 +kerning first=263 second=291 amount=-1 +kerning first=325 second=45 amount=-1 +kerning first=256 second=284 amount=-1 +kerning first=67 second=350 amount=-1 +kerning first=86 second=291 amount=-1 +kerning first=86 second=261 amount=-1 +kerning first=217 second=45 amount=-1 +kerning first=8216 second=260 amount=-2 +kerning first=344 second=337 amount=-1 +kerning first=289 second=45 amount=-1 +kerning first=256 second=262 amount=-1 +kerning first=381 second=8249 amount=-1 +kerning first=210 second=256 amount=-1 +kerning first=260 second=112 amount=-1 +kerning first=266 second=203 amount=-1 +kerning first=374 second=279 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=354 second=286 amount=-1 +kerning first=66 second=344 amount=-1 +kerning first=253 second=263 amount=-1 +kerning first=240 second=108 amount=-1 +kerning first=187 second=302 amount=-1 +kerning first=253 second=244 amount=-1 +kerning first=99 second=228 amount=-1 +kerning first=8222 second=122 amount=-1 +kerning first=66 second=325 amount=-1 +kerning first=204 second=228 amount=-1 +kerning first=254 second=108 amount=-1 +kerning first=323 second=251 amount=-1 +kerning first=374 second=212 amount=-1 +kerning first=369 second=253 amount=-1 +kerning first=45 second=66 amount=-1 +kerning first=89 second=212 amount=-1 +kerning first=8250 second=379 amount=-1 +kerning first=194 second=212 amount=-1 +kerning first=266 second=212 amount=-1 +kerning first=171 second=356 amount=-1 +kerning first=87 second=192 amount=-2 +kerning first=350 second=364 amount=-1 +kerning first=119 second=122 amount=-1 +kerning first=241 second=8220 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=379 second=171 amount=-1 +kerning first=258 second=119 amount=-1 +kerning first=356 second=233 amount=-1 +kerning first=347 second=115 amount=-1 +kerning first=107 second=233 amount=-1 +kerning first=192 second=363 amount=-1 +kerning first=90 second=45 amount=-1 +kerning first=195 second=45 amount=-1 +kerning first=356 second=223 amount=-1 +kerning first=262 second=211 amount=-1 +kerning first=375 second=45 amount=-1 +kerning first=253 second=275 amount=-1 +kerning first=354 second=353 amount=-1 +kerning first=315 second=356 amount=-1 +kerning first=115 second=103 amount=-1 +kerning first=66 second=356 amount=-1 +kerning first=346 second=304 amount=-1 +kerning first=84 second=346 amount=-1 +kerning first=221 second=255 amount=-1 +kerning first=257 second=255 amount=-1 +kerning first=193 second=291 amount=-1 +kerning first=199 second=296 amount=-1 +kerning first=8220 second=100 amount=-1 +kerning first=86 second=194 amount=-2 +kerning first=255 second=101 amount=-1 +kerning first=1050 second=1092 amount=-1 +kerning first=311 second=244 amount=-1 +kerning first=84 second=324 amount=-1 +kerning first=8216 second=99 amount=-1 +kerning first=67 second=200 amount=-1 +kerning first=8250 second=74 amount=-1 +kerning first=192 second=364 amount=-1 +kerning first=235 second=46 amount=-1 +kerning first=361 second=8217 amount=-1 +kerning first=83 second=362 amount=-1 +kerning first=374 second=228 amount=-1 +kerning first=260 second=362 amount=-1 +kerning first=268 second=212 amount=-1 +kerning first=199 second=264 amount=-1 +kerning first=8217 second=279 amount=-1 +kerning first=354 second=352 amount=-1 +kerning first=193 second=347 amount=-1 +kerning first=350 second=197 amount=-1 +kerning first=362 second=259 amount=-1 +kerning first=268 second=278 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=352 second=200 amount=-1 +kerning first=112 second=253 amount=-1 +kerning first=376 second=225 amount=-1 +kerning first=76 second=253 amount=-1 +kerning first=76 second=8217 amount=-1 +kerning first=304 second=225 amount=-1 +kerning first=290 second=86 amount=-1 +kerning first=66 second=334 amount=-1 +kerning first=346 second=282 amount=-1 +kerning first=82 second=311 amount=-1 +kerning first=213 second=65 amount=-1 +kerning first=374 second=213 amount=-1 +kerning first=354 second=375 amount=-1 +kerning first=266 second=213 amount=-1 +kerning first=82 second=289 amount=-1 +kerning first=194 second=213 amount=-1 +kerning first=246 second=375 amount=-1 +kerning first=269 second=230 amount=-1 +kerning first=262 second=103 amount=-1 +kerning first=1059 second=1117 amount=-1 +kerning first=65 second=351 amount=-1 +kerning first=118 second=289 amount=-1 +kerning first=105 second=375 amount=-1 +kerning first=187 second=289 amount=-1 +kerning first=367 second=289 amount=-1 +kerning first=86 second=380 amount=-1 +kerning first=77 second=259 amount=-1 +kerning first=75 second=336 amount=-1 +kerning first=368 second=122 amount=-1 +kerning first=1042 second=1063 amount=-1 +kerning first=1042 second=1078 amount=-1 +kerning first=321 second=370 amount=-1 +kerning first=234 second=314 amount=-1 +kerning first=121 second=242 amount=-1 +kerning first=8222 second=382 amount=-1 +kerning first=207 second=117 amount=-1 +kerning first=268 second=344 amount=-1 +kerning first=217 second=122 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=8216 second=229 amount=-1 +kerning first=1059 second=1102 amount=-1 +kerning first=66 second=259 amount=-1 +kerning first=253 second=351 amount=-1 +kerning first=289 second=351 amount=-1 +kerning first=368 second=44 amount=-1 +kerning first=262 second=68 amount=-1 +kerning first=323 second=171 amount=-1 +kerning first=260 second=121 amount=-1 +kerning first=195 second=284 amount=-1 +kerning first=224 second=121 amount=-1 +kerning first=266 second=82 amount=-1 +kerning first=374 second=288 amount=-1 +kerning first=256 second=369 amount=-1 +kerning first=118 second=224 amount=-1 +kerning first=266 second=288 amount=-1 +kerning first=86 second=379 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=89 second=213 amount=-1 +kerning first=354 second=277 amount=-1 +kerning first=364 second=196 amount=-1 +kerning first=8217 second=229 amount=-1 +kerning first=210 second=197 amount=-1 +kerning first=204 second=103 amount=-1 +kerning first=45 second=327 amount=-1 +kerning first=378 second=171 amount=-1 +kerning first=260 second=252 amount=-1 +kerning first=8216 second=261 amount=-1 +kerning first=90 second=382 amount=-1 +kerning first=261 second=106 amount=1 +kerning first=193 second=86 amount=-2 +kerning first=375 second=382 amount=-1 +kerning first=376 second=246 amount=-1 +kerning first=87 second=266 amount=-1 +kerning first=282 second=287 amount=-1 +kerning first=252 second=8221 amount=-1 +kerning first=365 second=103 amount=-1 +kerning first=240 second=316 amount=-1 +kerning first=264 second=266 amount=-1 +kerning first=344 second=368 amount=-1 +kerning first=105 second=287 amount=-1 +kerning first=192 second=266 amount=-1 +kerning first=99 second=316 amount=-1 +kerning first=221 second=103 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=344 second=336 amount=-1 +kerning first=82 second=214 amount=-1 +kerning first=262 second=330 amount=-1 +kerning first=356 second=71 amount=-1 +kerning first=187 second=352 amount=-1 +kerning first=344 second=118 amount=-1 +kerning first=195 second=262 amount=-1 +kerning first=121 second=232 amount=-1 +kerning first=82 second=290 amount=-1 +kerning first=86 second=74 amount=-1 +kerning first=236 second=118 amount=-1 +kerning first=339 second=44 amount=-1 +kerning first=262 second=8249 amount=-1 +kerning first=354 second=255 amount=-1 +kerning first=246 second=255 amount=-1 +kerning first=375 second=44 amount=-1 +kerning first=370 second=8249 amount=-1 +kerning first=267 second=44 amount=-1 +kerning first=196 second=366 amount=-1 +kerning first=105 second=255 amount=-1 +kerning first=99 second=105 amount=-1 +kerning first=311 second=267 amount=-1 +kerning first=85 second=8249 amount=-1 +kerning first=187 second=72 amount=-1 +kerning first=87 second=244 amount=-1 +kerning first=121 second=8249 amount=-1 +kerning first=1046 second=1057 amount=-1 +kerning first=197 second=350 amount=-1 +kerning first=221 second=234 amount=-1 +kerning first=73 second=257 amount=-1 +kerning first=89 second=332 amount=-1 +kerning first=337 second=108 amount=-1 +kerning first=67 second=199 amount=-1 +kerning first=204 second=251 amount=-1 +kerning first=352 second=221 amount=-1 +kerning first=74 second=198 amount=-1 +kerning first=354 second=328 amount=-1 +kerning first=260 second=361 amount=-1 +kerning first=296 second=361 amount=-1 +kerning first=311 second=245 amount=-1 +kerning first=374 second=332 amount=-1 +kerning first=8250 second=380 amount=-1 +kerning first=267 second=46 amount=-1 +kerning first=187 second=192 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=266 second=332 amount=-1 +kerning first=83 second=274 amount=-1 +kerning first=194 second=332 amount=-1 +kerning first=376 second=268 amount=-1 +kerning first=264 second=82 amount=-1 +kerning first=1059 second=1073 amount=-1 +kerning first=221 second=256 amount=-2 +kerning first=352 second=76 amount=-1 +kerning first=268 second=268 amount=-1 +kerning first=196 second=268 amount=-1 +kerning first=80 second=256 amount=-1 +kerning first=288 second=291 amount=-1 +kerning first=106 second=119 amount=-1 +kerning first=252 second=291 amount=-1 +kerning first=1046 second=1038 amount=-1 +kerning first=262 second=210 amount=-1 +kerning first=283 second=119 amount=-1 +kerning first=213 second=256 amount=-1 +kerning first=335 second=314 amount=-1 +kerning first=266 second=204 amount=-1 +kerning first=199 second=198 amount=-1 +kerning first=263 second=314 amount=-1 +kerning first=368 second=291 amount=-1 +kerning first=209 second=250 amount=-1 +kerning first=296 second=291 amount=-1 +kerning first=260 second=291 amount=-1 +kerning first=8216 second=195 amount=-2 +kerning first=119 second=291 amount=-1 +kerning first=83 second=291 amount=-1 +kerning first=194 second=363 amount=-1 +kerning first=268 second=73 amount=-1 +kerning first=84 second=44 amount=-1 +kerning first=89 second=381 amount=-1 +kerning first=317 second=84 amount=-1 +kerning first=1059 second=1095 amount=-1 +kerning first=311 second=337 amount=-1 +kerning first=356 second=268 amount=-1 +kerning first=333 second=44 amount=-1 +kerning first=206 second=227 amount=-1 +kerning first=67 second=278 amount=-1 +kerning first=83 second=296 amount=-1 +kerning first=102 second=108 amount=1 +kerning first=350 second=66 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=374 second=199 amount=-1 +kerning first=366 second=261 amount=-1 +kerning first=67 second=336 amount=-1 +kerning first=330 second=261 amount=-1 +kerning first=84 second=284 amount=-1 +kerning first=8249 second=356 amount=-1 +kerning first=107 second=281 amount=-1 +kerning first=317 second=89 amount=-1 +kerning first=205 second=367 amount=-1 +kerning first=243 second=108 amount=-1 +kerning first=252 second=121 amount=-1 +kerning first=331 second=8249 amount=-1 +kerning first=66 second=220 amount=-1 +kerning first=356 second=263 amount=-1 +kerning first=346 second=344 amount=-1 +kerning first=264 second=302 amount=-1 +kerning first=118 second=8249 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=295 second=8249 amount=-1 +kerning first=99 second=229 amount=-1 +kerning first=284 second=194 amount=-1 +kerning first=83 second=370 amount=-1 +kerning first=266 second=327 amount=-1 +kerning first=198 second=289 amount=-1 +kerning first=234 second=289 amount=-1 +kerning first=118 second=335 amount=-1 +kerning first=220 second=45 amount=-1 +kerning first=290 second=260 amount=-1 +kerning first=256 second=45 amount=-1 +kerning first=346 second=65 amount=-1 +kerning first=328 second=45 amount=-1 +kerning first=82 second=254 amount=-1 +kerning first=86 second=346 amount=-1 +kerning first=121 second=103 amount=-1 +kerning first=80 second=194 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=218 second=260 amount=-1 +kerning first=221 second=194 amount=-2 +kerning first=376 second=229 amount=-1 +kerning first=8217 second=234 amount=-1 +kerning first=364 second=45 amount=-1 +kerning first=254 second=255 amount=-1 +kerning first=87 second=223 amount=-1 +kerning first=260 second=212 amount=-1 +kerning first=253 second=225 amount=-1 +kerning first=193 second=211 amount=-1 +kerning first=8217 second=283 amount=-1 +kerning first=88 second=211 amount=-1 +kerning first=255 second=243 amount=-1 +kerning first=8216 second=246 amount=-1 +kerning first=85 second=193 amount=-1 +kerning first=287 second=46 amount=-1 +kerning first=283 second=44 amount=-1 +kerning first=103 second=257 amount=-1 +kerning first=8216 second=101 amount=-1 +kerning first=8220 second=101 amount=-1 +kerning first=1059 second=1090 amount=-1 +kerning first=1038 second=1057 amount=-1 +kerning first=334 second=193 amount=-1 +kerning first=88 second=290 amount=-1 +kerning first=262 second=193 amount=-1 +kerning first=193 second=290 amount=-1 +kerning first=370 second=193 amount=-1 +kerning first=87 second=346 amount=-1 +kerning first=235 second=375 amount=-1 +kerning first=307 second=375 amount=-1 +kerning first=367 second=314 amount=-1 +kerning first=356 second=224 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=346 second=305 amount=-1 +kerning first=99 second=46 amount=-1 +kerning first=194 second=289 amount=-1 +kerning first=82 second=98 amount=-1 +kerning first=45 second=70 amount=-1 +kerning first=103 second=259 amount=-1 +kerning first=84 second=235 amount=-1 +kerning first=199 second=282 amount=-1 +kerning first=1043 second=1051 amount=-1 +kerning first=263 second=225 amount=-1 +kerning first=287 second=316 amount=-1 +kerning first=251 second=316 amount=-1 +kerning first=101 second=311 amount=-1 +kerning first=8250 second=221 amount=-1 +kerning first=262 second=81 amount=-1 +kerning first=379 second=287 amount=-1 +kerning first=264 second=346 amount=-1 +kerning first=379 second=375 amount=-1 +kerning first=199 second=287 amount=-1 +kerning first=192 second=346 amount=-1 +kerning first=235 second=287 amount=-1 +kerning first=313 second=122 amount=-1 +kerning first=197 second=8217 amount=-1 +kerning first=8250 second=65 amount=-1 +kerning first=303 second=271 amount=-1 +kerning first=221 second=352 amount=-1 +kerning first=354 second=194 amount=-2 +kerning first=88 second=81 amount=-1 +kerning first=84 second=328 amount=-1 +kerning first=304 second=117 amount=-1 +kerning first=379 second=121 amount=-1 +kerning first=119 second=335 amount=-1 +kerning first=196 second=117 amount=-1 +kerning first=376 second=269 amount=-1 +kerning first=307 second=121 amount=-1 +kerning first=366 second=350 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=86 second=353 amount=-1 +kerning first=351 second=103 amount=-1 +kerning first=8217 second=83 amount=-1 +kerning first=87 second=253 amount=-1 +kerning first=193 second=374 amount=-2 +kerning first=45 second=350 amount=-1 +kerning first=228 second=253 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=121 second=277 amount=-1 +kerning first=258 second=350 amount=-1 +kerning first=272 second=196 amount=-1 +kerning first=258 second=266 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=193 second=85 amount=-1 +kerning first=364 second=289 amount=-1 +kerning first=298 second=228 amount=-1 +kerning first=85 second=228 amount=-1 +kerning first=121 second=228 amount=-1 +kerning first=379 second=361 amount=-1 +kerning first=279 second=121 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=107 second=263 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=344 second=8221 amount=-1 +kerning first=8220 second=257 amount=-1 +kerning first=376 second=103 amount=-1 +kerning first=77 second=171 amount=-1 +kerning first=65 second=262 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=218 second=171 amount=-1 +kerning first=304 second=103 amount=-1 +kerning first=196 second=103 amount=-1 +kerning first=290 second=171 amount=-1 +kerning first=87 second=381 amount=-1 +kerning first=232 second=103 amount=-1 +kerning first=120 second=249 amount=-1 +kerning first=362 second=171 amount=-1 +kerning first=236 second=119 amount=-1 +kerning first=313 second=362 amount=-1 +kerning first=326 second=171 amount=-1 +kerning first=344 second=119 amount=-1 +kerning first=266 second=256 amount=-1 +kerning first=252 second=118 amount=-1 +kerning first=103 second=380 amount=-1 +kerning first=324 second=118 amount=-1 +kerning first=268 second=313 amount=-1 +kerning first=121 second=233 amount=-1 +kerning first=192 second=218 amount=-1 +kerning first=258 second=288 amount=-1 +kerning first=75 second=118 amount=-1 +kerning first=255 second=248 amount=-1 +kerning first=258 second=217 amount=-1 +kerning first=72 second=229 amount=-1 +kerning first=262 second=67 amount=-1 +kerning first=296 second=230 amount=-1 +kerning first=87 second=267 amount=-1 +kerning first=376 second=264 amount=-1 +kerning first=199 second=352 amount=-1 +kerning first=268 second=264 amount=-1 +kerning first=196 second=264 amount=-1 +kerning first=120 second=363 amount=-1 +kerning first=252 second=8220 amount=-1 +kerning first=195 second=364 amount=-1 +kerning first=313 second=217 amount=-1 +kerning first=67 second=380 amount=-1 +kerning first=356 second=347 amount=-1 +kerning first=8216 second=339 amount=-1 +kerning first=1042 second=1059 amount=-1 +kerning first=260 second=249 amount=-1 +kerning first=264 second=209 amount=-1 +kerning first=258 second=8221 amount=-1 +kerning first=250 second=289 amount=-1 +kerning first=117 second=8221 amount=-1 +kerning first=304 second=229 amount=-1 +kerning first=291 second=257 amount=-1 +kerning first=375 second=232 amount=-1 +kerning first=327 second=257 amount=-1 +kerning first=219 second=257 amount=-1 +kerning first=303 second=232 amount=-1 +kerning first=255 second=257 amount=-1 +kerning first=241 second=118 amount=-1 +kerning first=89 second=83 amount=-1 +kerning first=277 second=118 amount=-1 +kerning first=364 second=192 amount=-1 +kerning first=313 second=118 amount=-1 +kerning first=194 second=83 amount=-1 +kerning first=1046 second=1108 amount=-1 +kerning first=220 second=197 amount=-1 +kerning first=1086 second=1076 amount=-1 +kerning first=266 second=83 amount=-1 +kerning first=266 second=78 amount=-1 +kerning first=87 second=262 amount=-1 +kerning first=220 second=192 amount=-1 +kerning first=284 second=8249 amount=-1 +kerning first=79 second=197 amount=-1 +kerning first=72 second=259 amount=-1 +kerning first=364 second=197 amount=-1 +kerning first=356 second=8249 amount=-1 +kerning first=264 second=262 amount=-1 +kerning first=196 second=370 amount=-1 +kerning first=327 second=230 amount=-1 +kerning first=83 second=194 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=192 second=262 amount=-1 +kerning first=78 second=257 amount=-1 +kerning first=350 second=315 amount=-1 +kerning first=8217 second=248 amount=-1 +kerning first=362 second=103 amount=-1 +kerning first=290 second=103 amount=-1 +kerning first=107 second=8249 amount=-1 +kerning first=332 second=256 amount=-1 +kerning first=210 second=198 amount=-1 +kerning first=264 second=317 amount=-1 +kerning first=368 second=256 amount=-1 +kerning first=1038 second=1096 amount=-1 +kerning first=321 second=291 amount=-1 +kerning first=86 second=65 amount=-2 +kerning first=354 second=198 amount=-2 +kerning first=352 second=217 amount=-1 +kerning first=249 second=291 amount=-1 +kerning first=108 second=291 amount=-1 +kerning first=72 second=291 amount=-1 +kerning first=83 second=256 amount=-1 +kerning first=82 second=210 amount=-1 +kerning first=82 second=107 amount=-1 +kerning first=344 second=279 amount=-1 +kerning first=356 second=67 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=304 second=259 amount=-1 +kerning first=375 second=227 amount=-1 +kerning first=262 second=72 amount=-1 +kerning first=8250 second=90 amount=-1 +kerning first=267 second=227 amount=-1 +kerning first=268 second=65 amount=-1 +kerning first=231 second=227 amount=-1 +kerning first=108 second=171 amount=-1 +kerning first=370 second=228 amount=-1 +kerning first=256 second=84 amount=-2 +kerning first=76 second=381 amount=-1 +kerning first=8217 second=113 amount=-1 +kerning first=199 second=212 amount=-1 +kerning first=311 second=171 amount=-1 +kerning first=232 second=108 amount=-1 +kerning first=366 second=226 amount=-1 +kerning first=330 second=226 amount=-1 +kerning first=266 second=323 amount=-1 +kerning first=199 second=317 amount=-1 +kerning first=302 second=367 amount=-1 +kerning first=194 second=367 amount=-1 +kerning first=253 second=115 amount=-1 +kerning first=289 second=115 amount=-1 +kerning first=291 second=122 amount=-1 +kerning first=1043 second=1083 amount=-1 +kerning first=255 second=122 amount=-1 +kerning first=327 second=365 amount=-1 +kerning first=219 second=122 amount=-1 +kerning first=8217 second=195 amount=-2 +kerning first=376 second=194 amount=-2 +kerning first=99 second=237 amount=-1 +kerning first=187 second=196 amount=-1 +kerning first=73 second=97 amount=-1 +kerning first=104 second=45 amount=-1 +kerning first=356 second=214 amount=-1 +kerning first=209 second=45 amount=-1 +kerning first=268 second=194 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=199 second=77 amount=-1 +kerning first=66 second=304 amount=-1 +kerning first=86 second=225 amount=-1 +kerning first=351 second=255 amount=-1 +kerning first=67 second=286 amount=-1 +kerning first=279 second=255 amount=-1 +kerning first=1059 second=1086 amount=-1 +kerning first=315 second=255 amount=-1 +kerning first=89 second=243 amount=-1 +kerning first=344 second=354 amount=-1 +kerning first=243 second=255 amount=-1 +kerning first=296 second=287 amount=-1 +kerning first=84 second=240 amount=-1 +kerning first=66 second=255 amount=-1 +kerning first=86 second=109 amount=-1 +kerning first=119 second=287 amount=-1 +kerning first=196 second=112 amount=-1 +kerning first=8218 second=364 amount=-1 +kerning first=374 second=243 amount=-1 +kerning first=83 second=287 amount=-1 +kerning first=284 second=171 amount=-1 +kerning first=117 second=8217 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=268 second=352 amount=-1 +kerning first=8250 second=274 amount=-1 +kerning first=368 second=287 amount=-1 +kerning first=258 second=8217 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=377 second=380 amount=-1 +kerning first=374 second=248 amount=-1 +kerning first=354 second=260 amount=-2 +kerning first=262 second=76 amount=-1 +kerning first=356 second=111 amount=-1 +kerning first=352 second=327 amount=-1 +kerning first=317 second=382 amount=-1 +kerning first=221 second=264 amount=-1 +kerning first=221 second=269 amount=-1 +kerning first=88 second=334 amount=-1 +kerning first=89 second=248 amount=-1 +kerning first=193 second=334 amount=-1 +kerning first=275 second=253 amount=-1 +kerning first=347 second=253 amount=-1 +kerning first=354 second=245 amount=-1 +kerning first=262 second=202 amount=-1 +kerning first=65 second=364 amount=-1 +kerning first=70 second=350 amount=-1 +kerning first=1059 second=1080 amount=-1 +kerning first=209 second=289 amount=-1 +kerning first=84 second=288 amount=-1 +kerning first=353 second=289 amount=-1 +kerning first=281 second=289 amount=-1 +kerning first=199 second=207 amount=-1 +kerning first=317 second=289 amount=-1 +kerning first=352 second=87 amount=-1 +kerning first=323 second=369 amount=-1 +kerning first=67 second=332 amount=-1 +kerning first=8222 second=366 amount=-1 +kerning first=83 second=282 amount=-1 +kerning first=77 second=251 amount=-1 +kerning first=374 second=122 amount=-1 +kerning first=196 second=266 amount=-1 +kerning first=266 second=122 amount=-1 +kerning first=86 second=230 amount=-1 +kerning first=196 second=352 amount=-1 +kerning first=356 second=259 amount=-1 +kerning first=89 second=122 amount=-1 +kerning first=224 second=375 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=260 second=375 amount=-1 +kerning first=256 second=89 amount=-2 +kerning first=225 second=119 amount=-1 +kerning first=356 second=210 amount=-1 +kerning first=261 second=119 amount=-1 +kerning first=350 second=75 amount=-1 +kerning first=274 second=291 amount=-1 +kerning first=120 second=119 amount=-1 +kerning first=202 second=291 amount=-1 +kerning first=197 second=217 amount=-1 +kerning first=187 second=298 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=84 second=337 amount=-1 +kerning first=199 second=256 amount=-1 +kerning first=321 second=379 amount=-1 +kerning first=45 second=364 amount=-1 +kerning first=277 second=314 amount=-1 +kerning first=8217 second=243 amount=-1 +kerning first=356 second=351 amount=-1 +kerning first=256 second=362 amount=-1 +kerning first=354 second=121 amount=-1 +kerning first=8220 second=261 amount=-1 +kerning first=246 second=121 amount=-1 +kerning first=87 second=275 amount=-1 +kerning first=277 second=318 amount=-1 +kerning first=371 second=8220 amount=-1 +kerning first=105 second=121 amount=-1 +kerning first=45 second=270 amount=-1 +kerning first=321 second=221 amount=-1 +kerning first=89 second=199 amount=-1 +kerning first=199 second=82 amount=-1 +kerning first=287 second=228 amount=-1 +kerning first=84 second=196 amount=-2 +kerning first=194 second=199 amount=-1 +kerning first=323 second=228 amount=-1 +kerning first=266 second=199 amount=-1 +kerning first=346 second=296 amount=-1 +kerning first=264 second=214 amount=-1 +kerning first=192 second=214 amount=-1 +kerning first=87 second=214 amount=-1 +kerning first=253 second=267 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=66 second=230 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=321 second=8221 amount=-1 +kerning first=121 second=316 amount=-1 +kerning first=83 second=86 amount=-1 +kerning first=197 second=266 amount=-1 +kerning first=344 second=235 amount=-1 +kerning first=219 second=83 amount=-1 +kerning first=88 second=171 amount=-1 +kerning first=193 second=171 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=315 second=103 amount=-1 +kerning first=344 second=284 amount=-1 +kerning first=1107 second=1083 amount=-1 +kerning first=199 second=278 amount=-1 +kerning first=1054 second=1051 amount=-1 +kerning first=279 second=103 amount=-1 +kerning first=194 second=362 amount=-1 +kerning first=193 second=220 amount=-1 +kerning first=207 second=103 amount=-1 +kerning first=298 second=365 amount=-1 +kerning first=381 second=382 amount=-1 +kerning first=86 second=100 amount=-1 +kerning first=193 second=103 amount=-1 +kerning first=83 second=344 amount=-1 +kerning first=121 second=246 amount=-1 +kerning first=303 second=106 amount=1 +kerning first=45 second=121 amount=-1 +kerning first=371 second=100 amount=-1 +kerning first=1045 second=1090 amount=-1 +kerning first=346 second=78 amount=-1 +kerning first=216 second=65 amount=-1 +kerning first=86 second=234 amount=-1 +kerning first=376 second=260 amount=-2 +kerning first=75 second=199 amount=-1 +kerning first=374 second=118 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=193 second=365 amount=-1 +kerning first=196 second=361 amount=-1 +kerning first=376 second=121 amount=-1 +kerning first=1036 second=1058 amount=-1 +kerning first=304 second=361 amount=-1 +kerning first=84 second=231 amount=-1 +kerning first=232 second=121 amount=-1 +kerning first=196 second=121 amount=-1 +kerning first=379 second=117 amount=-1 +kerning first=303 second=267 amount=-1 +kerning first=193 second=264 amount=-1 +kerning first=375 second=267 amount=-1 +kerning first=197 second=8221 amount=-1 +kerning first=88 second=264 amount=-1 +kerning first=374 second=380 amount=-1 +kerning first=230 second=118 amount=-1 +kerning first=287 second=44 amount=-1 +kerning first=248 second=316 amount=-1 +kerning first=260 second=216 amount=-1 +kerning first=89 second=118 amount=-1 +kerning first=194 second=118 amount=-1 +kerning first=371 second=234 amount=-1 +kerning first=84 second=212 amount=-1 +kerning first=326 second=8217 amount=-1 +kerning first=195 second=346 amount=-1 +kerning first=1050 second=1089 amount=-1 +kerning first=350 second=201 amount=-1 +kerning first=192 second=249 amount=-1 +kerning first=268 second=282 amount=-1 +kerning first=8250 second=296 amount=-1 +kerning first=344 second=266 amount=-1 +kerning first=288 second=87 amount=-1 +kerning first=89 second=380 amount=-1 +kerning first=121 second=347 amount=-1 +kerning first=1069 second=1040 amount=-1 +kerning first=344 second=231 amount=-1 +kerning first=266 second=380 amount=-1 +kerning first=67 second=204 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=1038 second=1083 amount=-1 +kerning first=1056 second=1103 amount=-1 +kerning first=298 second=224 amount=-1 +kerning first=83 second=366 amount=-1 +kerning first=8222 second=374 amount=-2 +kerning first=195 second=84 amount=-2 +kerning first=85 second=224 amount=-1 +kerning first=121 second=224 amount=-1 +kerning first=288 second=171 amount=-1 +kerning first=209 second=8249 amount=-1 +kerning first=87 second=227 amount=-1 +kerning first=352 second=204 amount=-1 +kerning first=262 second=325 amount=-1 +kerning first=370 second=224 amount=-1 +kerning first=258 second=363 amount=-1 +kerning first=354 second=291 amount=-1 +kerning first=344 second=244 amount=-1 +kerning first=330 second=363 amount=-1 +kerning first=282 second=291 amount=-1 +kerning first=8217 second=230 amount=-1 +kerning first=105 second=291 amount=-1 +kerning first=69 second=291 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=253 second=337 amount=-1 +kerning first=275 second=44 amount=-1 +kerning first=72 second=287 amount=-1 +kerning first=108 second=287 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=356 second=338 amount=-1 +kerning first=86 second=256 amount=-2 +kerning first=221 second=198 amount=-2 +kerning first=80 second=198 amount=-1 +kerning first=260 second=366 amount=-1 +kerning first=187 second=206 amount=-1 +kerning first=66 second=112 amount=-1 +kerning first=103 second=378 amount=-1 +kerning first=103 second=318 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=90 second=361 amount=-1 +kerning first=321 second=287 amount=-1 +kerning first=327 second=367 amount=-1 +kerning first=249 second=287 amount=-1 +kerning first=221 second=326 amount=-1 +kerning first=264 second=66 amount=-1 +kerning first=88 second=286 amount=-1 +kerning first=331 second=8220 amount=-1 +kerning first=78 second=367 amount=-1 +kerning first=193 second=286 amount=-1 +kerning first=89 second=74 amount=-1 +kerning first=350 second=302 amount=-1 +kerning first=248 second=121 amount=-1 +kerning first=118 second=228 amount=-1 +kerning first=288 second=221 amount=-1 +kerning first=365 second=108 amount=-1 +kerning first=374 second=74 amount=-1 +kerning first=344 second=350 amount=-1 +kerning first=101 second=289 amount=-1 +kerning first=375 second=245 amount=-1 +kerning first=354 second=269 amount=-1 +kerning first=103 second=261 amount=-1 +kerning first=303 second=245 amount=-1 +kerning first=377 second=253 amount=-1 +kerning first=256 second=289 amount=-1 +kerning first=264 second=205 amount=-1 +kerning first=66 second=251 amount=-1 +kerning first=256 second=115 amount=-1 +kerning first=66 second=211 amount=-1 +kerning first=217 second=97 amount=-1 +kerning first=378 second=45 amount=-1 +kerning first=197 second=332 amount=-1 +kerning first=289 second=97 amount=-1 +kerning first=262 second=290 amount=-1 +kerning first=207 second=251 amount=-1 +kerning first=253 second=97 amount=-1 +kerning first=78 second=261 amount=-1 +kerning first=327 second=261 amount=-1 +kerning first=291 second=261 amount=-1 +kerning first=67 second=211 amount=-1 +kerning first=255 second=261 amount=-1 +kerning first=253 second=271 amount=-1 +kerning first=219 second=261 amount=-1 +kerning first=332 second=194 amount=-1 +kerning first=66 second=352 amount=-1 +kerning first=368 second=194 amount=-1 +kerning first=240 second=255 amount=-1 +kerning first=99 second=255 amount=-1 +kerning first=269 second=226 amount=-1 +kerning first=72 second=225 amount=-1 +kerning first=364 second=198 amount=-1 +kerning first=250 second=119 amount=-1 +kerning first=109 second=119 amount=-1 +kerning first=336 second=44 amount=-1 +kerning first=230 second=314 amount=-1 +kerning first=1036 second=1095 amount=-1 +kerning first=1062 second=1095 amount=-1 +kerning first=8250 second=362 amount=-1 +kerning first=266 second=274 amount=-1 +kerning first=362 second=46 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=317 second=366 amount=-1 +kerning first=220 second=289 amount=-1 +kerning first=97 second=8220 amount=-1 +kerning first=217 second=192 amount=-1 +kerning first=231 second=44 amount=-1 +kerning first=115 second=289 amount=-1 +kerning first=8250 second=256 amount=-1 +kerning first=376 second=234 amount=-1 +kerning first=366 second=8249 amount=-1 +kerning first=258 second=347 amount=-1 +kerning first=302 second=230 amount=-1 +kerning first=197 second=354 amount=-2 +kerning first=86 second=122 amount=-1 +kerning first=197 second=213 amount=-1 +kerning first=8218 second=84 amount=-2 +kerning first=344 second=288 amount=-1 +kerning first=317 second=364 amount=-1 +kerning first=76 second=377 amount=-1 +kerning first=290 second=46 amount=-1 +kerning first=284 second=374 amount=-1 +kerning first=374 second=230 amount=-1 +kerning first=1059 second=1077 amount=-1 +kerning first=67 second=83 amount=-1 +kerning first=203 second=291 amount=-1 +kerning first=89 second=230 amount=-1 +kerning first=249 second=375 amount=-1 +kerning first=68 second=192 amount=-1 +kerning first=321 second=375 amount=-1 +kerning first=65 second=346 amount=-1 +kerning first=8222 second=370 amount=-1 +kerning first=66 second=317 amount=-1 +kerning first=83 second=278 amount=-1 +kerning first=108 second=375 amount=-1 +kerning first=313 second=87 amount=-1 +kerning first=89 second=336 amount=-1 +kerning first=218 second=103 amount=-1 +kerning first=194 second=336 amount=-1 +kerning first=1058 second=1093 amount=-1 +kerning first=266 second=336 amount=-1 +kerning first=214 second=196 amount=-1 +kerning first=77 second=103 amount=-1 +kerning first=219 second=46 amount=-1 +kerning first=286 second=196 amount=-1 +kerning first=354 second=335 amount=-1 +kerning first=1059 second=1099 amount=-1 +kerning first=304 second=251 amount=-1 +kerning first=315 second=374 amount=-1 +kerning first=250 second=253 amount=-1 +kerning first=171 second=374 amount=-1 +kerning first=221 second=260 amount=-2 +kerning first=66 second=374 amount=-1 +kerning first=352 second=105 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=365 second=121 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=257 second=121 amount=-1 +kerning first=83 second=82 amount=-1 +kerning first=221 second=121 amount=-1 +kerning first=263 second=318 amount=-1 +kerning first=335 second=318 amount=-1 +kerning first=86 second=212 amount=-1 +kerning first=118 second=316 amount=-1 +kerning first=243 second=121 amount=-1 +kerning first=8216 second=233 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=83 second=203 amount=-1 +kerning first=356 second=228 amount=-1 +kerning first=223 second=316 amount=-1 +kerning first=67 second=323 amount=-1 +kerning first=367 second=316 amount=-1 +kerning first=264 second=75 amount=-1 +kerning first=110 second=171 amount=-1 +kerning first=74 second=171 amount=-1 +kerning first=354 second=326 amount=-1 +kerning first=263 second=375 amount=-1 +kerning first=350 second=77 amount=-1 +kerning first=335 second=375 amount=-1 +kerning first=67 second=270 amount=-1 +kerning first=86 second=375 amount=-1 +kerning first=78 second=228 amount=-1 +kerning first=234 second=253 amount=-1 +kerning first=221 second=99 amount=-1 +kerning first=227 second=375 amount=-1 +kerning first=187 second=278 amount=-1 +kerning first=1058 second=1040 amount=-1 +kerning first=194 second=217 amount=-1 +kerning first=323 second=365 amount=-1 +kerning first=352 second=270 amount=-1 +kerning first=120 second=230 amount=-1 +kerning first=258 second=250 amount=-1 +kerning first=65 second=214 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=195 second=71 amount=-1 +kerning first=45 second=354 amount=-1 +kerning first=248 second=120 amount=-1 +kerning first=314 second=106 amount=-1 +kerning first=82 second=263 amount=-1 +kerning first=262 second=334 amount=-1 +kerning first=264 second=315 amount=-1 +kerning first=196 second=220 amount=-1 +kerning first=236 second=253 amount=-1 +kerning first=344 second=253 amount=-1 +kerning first=287 second=224 amount=-1 +kerning first=323 second=224 amount=-1 +kerning first=258 second=354 amount=-2 +kerning first=287 second=171 amount=-1 +kerning first=121 second=281 amount=-1 +kerning first=255 second=283 amount=-1 +kerning first=363 second=118 amount=-1 +kerning first=66 second=68 amount=-1 +kerning first=376 second=339 amount=-1 +kerning first=204 second=365 amount=-1 +kerning first=86 second=119 amount=-1 +kerning first=356 second=382 amount=-1 +kerning first=296 second=117 amount=-1 +kerning first=351 second=121 amount=-1 +kerning first=303 second=333 amount=-1 +kerning first=315 second=121 amount=-1 +kerning first=260 second=117 amount=-1 +kerning first=375 second=333 amount=-1 +kerning first=88 second=255 amount=-1 +kerning first=346 second=287 amount=-1 +kerning first=199 second=216 amount=-1 +kerning first=118 second=275 amount=-1 +kerning first=274 second=287 amount=-1 +kerning first=202 second=287 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=267 second=230 amount=-1 +kerning first=8217 second=65 amount=-2 +kerning first=82 second=338 amount=-1 +kerning first=287 second=378 amount=-1 +kerning first=192 second=368 amount=-1 +kerning first=80 second=8249 amount=-1 +kerning first=219 second=74 amount=-1 +kerning first=84 second=350 amount=-1 +kerning first=350 second=192 amount=-1 +kerning first=344 second=275 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=289 second=347 amount=-1 +kerning first=378 second=8249 amount=-1 +kerning first=354 second=379 amount=-1 +kerning first=217 second=227 amount=-1 +kerning first=371 second=113 amount=-1 +kerning first=376 second=198 amount=-2 +kerning first=8250 second=69 amount=-1 +kerning first=86 second=113 amount=-1 +kerning first=199 second=71 amount=-1 +kerning first=65 second=84 amount=-2 +kerning first=379 second=291 amount=-1 +kerning first=315 second=90 amount=-1 +kerning first=307 second=291 amount=-1 +kerning first=235 second=291 amount=-1 +kerning first=199 second=291 amount=-1 +kerning first=86 second=199 amount=-1 +kerning first=66 second=361 amount=-1 +kerning first=321 second=366 amount=-1 +kerning first=8222 second=86 amount=-2 +kerning first=199 second=73 amount=-1 +kerning first=84 second=377 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=87 second=337 amount=-1 +kerning first=325 second=227 amount=-1 +kerning first=258 second=332 amount=-1 +kerning first=346 second=256 amount=-1 +kerning first=268 second=198 amount=-1 +kerning first=45 second=221 amount=-1 +kerning first=84 second=275 amount=-1 +kerning first=187 second=218 amount=-1 +kerning first=199 second=194 amount=-1 +kerning first=311 second=240 amount=-1 +kerning first=275 second=119 amount=-1 +kerning first=8250 second=310 amount=-1 +kerning first=379 second=365 amount=-1 +kerning first=8216 second=103 amount=-1 +kerning first=82 second=219 amount=-1 +kerning first=76 second=84 amount=-1 +kerning first=268 second=103 amount=-1 +kerning first=187 second=219 amount=-1 +kerning first=1054 second=1038 amount=-1 +kerning first=347 second=119 amount=-1 +kerning first=290 second=374 amount=-1 +kerning first=310 second=212 amount=-1 +kerning first=221 second=281 amount=-1 +kerning first=363 second=314 amount=-1 +kerning first=291 second=314 amount=-1 +kerning first=246 second=108 amount=-1 +kerning first=195 second=115 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=195 second=289 amount=-1 +kerning first=249 second=8220 amount=-1 +kerning first=339 second=289 amount=-1 +kerning first=321 second=8220 amount=-1 +kerning first=231 second=289 amount=-1 +kerning first=377 second=367 amount=-1 +kerning first=267 second=289 amount=-1 +kerning first=255 second=314 amount=-1 +kerning first=8250 second=205 amount=-1 +kerning first=66 second=286 amount=-1 +kerning first=366 second=257 amount=-1 +kerning first=197 second=367 amount=-1 +kerning first=8250 second=287 amount=-1 +kerning first=330 second=257 amount=-1 +kerning first=344 second=101 amount=-1 +kerning first=221 second=229 amount=-1 +kerning first=86 second=243 amount=-1 +kerning first=256 second=220 amount=-1 +kerning first=375 second=115 amount=-1 +kerning first=118 second=45 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=1038 second=1102 amount=-1 +kerning first=302 second=261 amount=-1 +kerning first=374 second=109 amount=-1 +kerning first=46 second=45 amount=-1 +kerning first=1024 second=1059 amount=-1 +kerning first=374 second=261 amount=-1 +kerning first=197 second=83 amount=-1 +kerning first=229 second=255 amount=-1 +kerning first=87 second=97 amount=-1 +kerning first=103 second=226 amount=-1 +kerning first=331 second=45 amount=-1 +kerning first=217 second=289 amount=-1 +kerning first=187 second=197 amount=-1 +kerning first=193 second=255 amount=-1 +kerning first=193 second=81 amount=-1 +kerning first=119 second=225 amount=-1 +kerning first=291 second=380 amount=-1 +kerning first=255 second=380 amount=-1 +kerning first=8220 second=269 amount=-1 +kerning first=1027 second=1092 amount=-1 +kerning first=296 second=225 amount=-1 +kerning first=120 second=253 amount=-1 +kerning first=368 second=225 amount=-1 +kerning first=66 second=252 amount=-1 +kerning first=84 second=253 amount=-1 +kerning first=315 second=220 amount=-1 +kerning first=289 second=227 amount=-1 +kerning first=225 second=253 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=243 second=46 amount=-1 +kerning first=374 second=283 amount=-1 +kerning first=279 second=46 amount=-1 +kerning first=256 second=364 amount=-1 +kerning first=371 second=243 amount=-1 +kerning first=118 second=382 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=266 second=65 amount=-1 +kerning first=374 second=65 amount=-2 +kerning first=241 second=8217 amount=-1 +kerning first=315 second=381 amount=-1 +kerning first=66 second=264 amount=-1 +kerning first=89 second=283 amount=-1 +kerning first=111 second=318 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=1045 second=1059 amount=-1 +kerning first=252 second=318 amount=-1 +kerning first=264 second=264 amount=-1 +kerning first=375 second=289 amount=-1 +kerning first=370 second=259 amount=-1 +kerning first=268 second=317 amount=-1 +kerning first=298 second=259 amount=-1 +kerning first=339 second=311 amount=-1 +kerning first=8220 second=194 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=381 second=369 amount=-1 +kerning first=8216 second=277 amount=-1 +kerning first=344 second=8217 amount=-1 +kerning first=376 second=99 amount=-1 +kerning first=258 second=213 amount=-1 +kerning first=8250 second=325 amount=-1 +kerning first=205 second=230 amount=-1 +kerning first=362 second=352 amount=-1 +kerning first=97 second=375 amount=-1 +kerning first=121 second=259 amount=-1 +kerning first=85 second=259 amount=-1 +kerning first=218 second=352 amount=-1 +kerning first=194 second=87 amount=-2 +kerning first=1050 second=1063 amount=-1 +kerning first=1047 second=1093 amount=-1 +kerning first=368 second=259 amount=-1 +kerning first=289 second=230 amount=-1 +kerning first=325 second=230 amount=-1 +kerning first=106 second=253 amount=-1 +kerning first=217 second=230 amount=-1 +kerning first=253 second=230 amount=-1 +kerning first=283 second=253 amount=-1 +kerning first=346 second=87 amount=-1 +kerning first=298 second=363 amount=-1 +kerning first=366 second=122 amount=-1 +kerning first=376 second=110 amount=-1 +kerning first=82 second=101 amount=-1 +kerning first=84 second=81 amount=-1 +kerning first=45 second=217 amount=-1 +kerning first=195 second=288 amount=-1 +kerning first=8217 second=197 amount=-2 +kerning first=321 second=219 amount=-1 +kerning first=187 second=207 amount=-1 +kerning first=111 second=316 amount=-1 +kerning first=193 second=87 amount=-2 +kerning first=346 second=317 amount=-1 +kerning first=1043 second=1103 amount=-1 +kerning first=86 second=277 amount=-1 +kerning first=209 second=287 amount=-1 +kerning first=344 second=121 amount=-1 +kerning first=219 second=196 amount=-1 +kerning first=236 second=121 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=99 second=103 amount=-1 +kerning first=371 second=277 amount=-1 +kerning first=311 second=231 amount=-1 +kerning first=217 second=171 amount=-1 +kerning first=353 second=287 amount=-1 +kerning first=289 second=171 amount=-1 +kerning first=253 second=171 amount=-1 +kerning first=281 second=287 amount=-1 +kerning first=120 second=252 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=317 second=287 amount=-1 +kerning first=325 second=171 amount=-1 +kerning first=111 second=375 amount=-1 +kerning first=366 second=352 amount=-1 +kerning first=46 second=8217 amount=-1 +kerning first=45 second=122 amount=-1 +kerning first=264 second=270 amount=-1 +kerning first=87 second=99 amount=-1 +kerning first=8222 second=89 amount=-2 +kerning first=259 second=8217 amount=-1 +kerning first=258 second=352 amount=-1 +kerning first=331 second=8217 amount=-1 +kerning first=85 second=74 amount=-1 +kerning first=75 second=375 amount=-1 +kerning first=267 second=229 amount=-1 +kerning first=367 second=8217 amount=-1 +kerning first=231 second=229 amount=-1 +kerning first=370 second=74 amount=-1 +kerning first=344 second=213 amount=-1 +kerning first=356 second=381 amount=-1 +kerning first=204 second=225 amount=-1 +kerning first=287 second=382 amount=-1 +kerning first=371 second=106 amount=1 +kerning first=377 second=103 amount=-1 +kerning first=266 second=315 amount=-1 +kerning first=258 second=214 amount=-1 +kerning first=233 second=103 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=356 second=246 amount=-1 +kerning first=197 second=103 amount=-1 +kerning first=119 second=318 amount=-1 +kerning first=107 second=246 amount=-1 +kerning first=310 second=199 amount=-1 +kerning first=194 second=8217 amount=-1 +kerning first=8250 second=356 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=77 second=361 amount=-1 +kerning first=195 second=117 amount=-1 +kerning first=8217 second=335 amount=-1 +kerning first=117 second=255 amount=-1 +kerning first=90 second=117 amount=-1 +kerning first=361 second=8220 amount=-1 +kerning first=252 second=316 amount=-1 +kerning first=199 second=378 amount=-1 +kerning first=8216 second=224 amount=-1 +kerning first=87 second=119 amount=-1 +kerning first=192 second=8221 amount=-1 +kerning first=76 second=8220 amount=-1 +kerning first=76 second=118 amount=-1 +kerning first=379 second=378 amount=-1 +kerning first=192 second=119 amount=-1 +kerning first=376 second=281 amount=-1 +kerning first=268 second=202 amount=-1 +kerning first=228 second=119 amount=-1 +kerning first=344 second=233 amount=-1 +kerning first=66 second=380 amount=-1 +kerning first=375 second=347 amount=-1 +kerning first=8216 second=242 amount=-1 +kerning first=244 second=314 amount=-1 +kerning first=315 second=380 amount=-1 +kerning first=194 second=85 amount=-1 +kerning first=103 second=314 amount=-1 +kerning first=195 second=347 amount=-1 +kerning first=288 second=86 amount=-1 +kerning first=8217 second=256 amount=-2 +kerning first=221 second=379 amount=-1 +kerning first=192 second=250 amount=-1 +kerning first=83 second=200 amount=-1 +kerning first=8249 second=221 amount=-1 +kerning first=82 second=266 amount=-1 +kerning first=354 second=378 amount=-1 +kerning first=84 second=101 amount=-1 +kerning first=374 second=216 amount=-1 +kerning first=325 second=250 amount=-1 +kerning first=314 second=8220 amount=-1 +kerning first=65 second=8220 amount=-1 +kerning first=326 second=119 amount=-1 +kerning first=84 second=331 amount=-1 +kerning first=272 second=193 amount=-1 +kerning first=352 second=274 amount=-1 +kerning first=310 second=216 amount=-1 +kerning first=219 second=197 amount=-1 +kerning first=8220 second=195 amount=-2 +kerning first=376 second=90 amount=-1 +kerning first=286 second=291 amount=-1 +kerning first=121 second=113 amount=-1 +kerning first=250 second=291 amount=-1 +kerning first=194 second=216 amount=-1 +kerning first=321 second=377 amount=-1 +kerning first=89 second=216 amount=-1 +kerning first=45 second=83 amount=-1 +kerning first=73 second=291 amount=-1 +kerning first=86 second=67 amount=-1 +kerning first=89 second=197 amount=-2 +kerning first=1059 second=1094 amount=-1 +kerning first=258 second=83 amount=-1 +kerning first=266 second=216 amount=-1 +kerning first=266 second=197 amount=-1 +kerning first=8217 second=257 amount=-1 +kerning first=65 second=210 amount=-1 +kerning first=366 second=83 amount=-1 +kerning first=374 second=197 amount=-2 +kerning first=317 second=85 amount=-1 +kerning first=119 second=8249 amount=-1 +kerning first=66 second=262 amount=-1 +kerning first=83 second=302 amount=-1 +kerning first=8250 second=87 amount=-1 +kerning first=356 second=187 amount=-1 +kerning first=260 second=8249 amount=-1 +kerning first=354 second=240 amount=-1 +kerning first=368 second=8249 amount=-1 +kerning first=256 second=268 amount=-1 +kerning first=83 second=68 amount=-1 +kerning first=346 second=278 amount=-1 +kerning first=8220 second=333 amount=-1 +kerning first=86 second=198 amount=-2 +kerning first=83 second=45 amount=-1 +kerning first=66 second=203 amount=-1 +kerning first=235 second=108 amount=-1 +kerning first=249 second=318 amount=-1 +kerning first=222 second=46 amount=-1 +kerning first=209 second=228 amount=-1 +kerning first=219 second=65 amount=-1 +kerning first=199 second=260 amount=-1 +kerning first=195 second=367 amount=-1 +kerning first=268 second=193 amount=-1 +kerning first=351 second=120 amount=-1 +kerning first=8220 second=235 amount=-1 +kerning first=90 second=367 amount=-1 +kerning first=298 second=361 amount=-1 +kerning first=206 second=229 amount=-1 +kerning first=221 second=339 amount=-1 +kerning first=103 second=353 amount=-1 +kerning first=1061 second=1073 amount=-1 +kerning first=8222 second=220 amount=-1 +kerning first=211 second=194 amount=-1 +kerning first=262 second=304 amount=-1 +kerning first=354 second=109 amount=-1 +kerning first=311 second=271 amount=-1 +kerning first=89 second=45 amount=-1 +kerning first=70 second=352 amount=-1 +kerning first=255 second=275 amount=-1 +kerning first=8250 second=195 amount=-1 +kerning first=374 second=45 amount=-1 +kerning first=8216 second=263 amount=-1 +kerning first=194 second=45 amount=-1 +kerning first=8216 second=244 amount=-1 +kerning first=70 second=194 amount=-1 +kerning first=376 second=242 amount=-1 +kerning first=233 second=44 amount=-1 +kerning first=316 second=255 amount=-1 +kerning first=370 second=225 amount=-1 +kerning first=244 second=255 amount=-1 +kerning first=298 second=225 amount=-1 +kerning first=75 second=334 amount=-1 +kerning first=376 second=286 amount=-1 +kerning first=221 second=110 amount=-1 +kerning first=344 second=81 amount=-1 +kerning first=231 second=97 amount=-1 +kerning first=267 second=97 amount=-1 +kerning first=269 second=44 amount=-1 +kerning first=375 second=97 amount=-1 +kerning first=87 second=79 amount=-1 +kerning first=288 second=65 amount=-1 +kerning first=350 second=84 amount=-1 +kerning first=67 second=274 amount=-1 +kerning first=192 second=79 amount=-1 +kerning first=197 second=252 amount=-1 +kerning first=264 second=79 amount=-1 +kerning first=187 second=76 amount=-1 +kerning first=66 second=104 amount=-1 +kerning first=65 second=289 amount=-1 +kerning first=8222 second=378 amount=-1 +kerning first=278 second=289 amount=-1 +kerning first=314 second=289 amount=-1 +kerning first=206 second=289 amount=-1 +kerning first=1059 second=1088 amount=-1 +kerning first=221 second=241 amount=-1 +kerning first=85 second=225 amount=-1 +kerning first=350 second=289 amount=-1 +kerning first=65 second=368 amount=-1 +kerning first=303 second=248 amount=-1 +kerning first=354 second=241 amount=-1 +kerning first=263 second=230 amount=-1 +kerning first=8250 second=278 amount=-1 +kerning first=1059 second=1108 amount=-1 +kerning first=197 second=352 amount=-1 +kerning first=83 second=69 amount=-1 +kerning first=82 second=364 amount=-1 +kerning first=8250 second=198 amount=-1 +kerning first=198 second=287 amount=-1 +kerning first=262 second=206 amount=-1 +kerning first=234 second=287 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=195 second=374 amount=-2 +kerning first=313 second=86 amount=-1 +kerning first=8218 second=118 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=350 second=368 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=268 second=380 amount=-1 +kerning first=230 second=46 amount=-1 +kerning first=103 second=45 amount=-1 +kerning first=199 second=201 amount=-1 +kerning first=8216 second=273 amount=-1 +kerning first=65 second=347 amount=-1 +kerning first=98 second=253 amount=-1 +kerning first=268 second=70 amount=-1 +kerning first=376 second=380 amount=-1 +kerning first=303 second=269 amount=-1 +kerning first=375 second=269 amount=-1 +kerning first=255 second=353 amount=-1 +kerning first=354 second=229 amount=-1 +kerning first=344 second=311 amount=-1 +kerning first=87 second=230 amount=-1 +kerning first=313 second=375 amount=-1 +kerning first=364 second=346 amount=-1 +kerning first=87 second=289 amount=-1 +kerning first=256 second=346 amount=-1 +kerning first=220 second=346 amount=-1 +kerning first=277 second=375 amount=-1 +kerning first=264 second=289 amount=-1 +kerning first=346 second=219 amount=-1 +kerning first=192 second=289 amount=-1 +kerning first=65 second=288 amount=-1 +kerning first=375 second=248 amount=-1 +kerning first=73 second=369 amount=-1 +kerning first=1059 second=1087 amount=-1 +kerning first=344 second=370 amount=-1 +kerning first=192 second=251 amount=-1 +kerning first=356 second=289 amount=-1 +kerning first=67 second=196 amount=-1 +kerning first=8216 second=243 amount=-1 +kerning first=70 second=83 amount=-1 +kerning first=344 second=332 amount=-1 +kerning first=192 second=171 amount=-1 +kerning first=283 second=121 amount=-1 +kerning first=264 second=171 amount=-1 +kerning first=87 second=231 amount=-1 +kerning first=228 second=8220 amount=-1 +kerning first=106 second=121 amount=-1 +kerning first=352 second=196 amount=-1 +kerning first=208 second=196 amount=-1 +kerning first=76 second=119 amount=-1 +kerning first=311 second=100 amount=-1 +kerning first=84 second=233 amount=-1 +kerning first=83 second=298 amount=-1 +kerning first=196 second=221 amount=-2 +kerning first=8250 second=219 amount=-1 +kerning first=253 second=99 amount=-1 +kerning first=269 second=314 amount=-1 +kerning first=233 second=314 amount=-1 +kerning first=84 second=213 amount=-1 +kerning first=262 second=382 amount=-1 +kerning first=117 second=253 amount=-1 +kerning first=258 second=253 amount=-1 +kerning first=333 second=120 amount=-1 +kerning first=266 second=334 amount=-1 +kerning first=310 second=8249 amount=-1 +kerning first=382 second=8249 amount=-1 +kerning first=346 second=291 amount=-1 +kerning first=89 second=334 amount=-1 +kerning first=346 second=8249 amount=-1 +kerning first=262 second=344 amount=-1 +kerning first=1090 second=1083 amount=-1 +kerning first=323 second=363 amount=-1 +kerning first=316 second=103 amount=-1 +kerning first=352 second=103 amount=-1 +kerning first=374 second=334 amount=-1 +kerning first=90 second=249 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=45 second=313 amount=-1 +kerning first=67 second=103 amount=-1 +kerning first=193 second=362 amount=-1 +kerning first=209 second=365 amount=-1 +kerning first=65 second=118 amount=-1 +kerning first=346 second=68 amount=-1 +kerning first=8217 second=275 amount=-1 +kerning first=263 second=316 amount=-1 +kerning first=85 second=382 amount=-1 +kerning first=255 second=235 amount=-1 +kerning first=269 second=259 amount=-1 +kerning first=377 second=255 amount=-1 +kerning first=244 second=44 amount=-1 +kerning first=269 second=255 amount=-1 +kerning first=352 second=44 amount=-1 +kerning first=197 second=255 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=233 second=255 amount=-1 +kerning first=228 second=8221 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=315 second=85 amount=-1 +kerning first=8250 second=317 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=108 second=8249 amount=-1 +kerning first=87 second=290 amount=-1 +kerning first=118 second=227 amount=-1 +kerning first=192 second=290 amount=-1 +kerning first=86 second=110 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=70 second=193 amount=-1 +kerning first=8250 second=122 amount=-1 +kerning first=313 second=85 amount=-1 +kerning first=67 second=65 amount=-1 +kerning first=8250 second=121 amount=-1 +kerning first=303 second=118 amount=-1 +kerning first=339 second=118 amount=-1 +kerning first=311 second=232 amount=-1 +kerning first=199 second=338 amount=-1 +kerning first=263 second=257 amount=-1 +kerning first=1027 second=1078 amount=-1 +kerning first=208 second=65 amount=-1 +kerning first=83 second=260 amount=-1 +kerning first=264 second=192 amount=-1 +kerning first=195 second=118 amount=-1 +kerning first=102 second=171 amount=-1 +kerning first=231 second=118 amount=-1 +kerning first=336 second=192 amount=-1 +kerning first=352 second=65 amount=-1 +kerning first=368 second=260 amount=-1 +kerning first=332 second=260 amount=-1 +kerning first=206 second=250 amount=-1 +kerning first=1105 second=1076 amount=-1 +kerning first=121 second=245 amount=-1 +kerning first=221 second=378 amount=-1 +kerning first=1036 second=1073 amount=-1 +kerning first=66 second=381 amount=-1 +kerning first=194 second=84 amount=-2 +kerning first=347 second=291 amount=-1 +kerning first=275 second=291 amount=-1 +kerning first=288 second=256 amount=-1 +kerning first=119 second=337 amount=-1 +kerning first=193 second=361 amount=-1 +kerning first=221 second=90 amount=-1 +kerning first=195 second=210 amount=-1 +kerning first=8218 second=354 amount=-2 +kerning first=377 second=102 amount=-1 +kerning first=216 second=256 amount=-1 +kerning first=221 second=242 amount=-1 +kerning first=310 second=67 amount=-1 +kerning first=310 second=338 amount=-1 +kerning first=89 second=335 amount=-1 +kerning first=327 second=45 amount=-1 +kerning first=352 second=280 amount=-1 +kerning first=313 second=374 amount=-1 +kerning first=66 second=261 amount=-1 +kerning first=374 second=335 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=207 second=261 amount=-1 +kerning first=354 second=110 amount=-1 +kerning first=256 second=367 amount=-1 +kerning first=362 second=224 amount=-1 +kerning first=76 second=289 amount=-1 +kerning first=325 second=289 amount=-1 +kerning first=8220 second=103 amount=-1 +kerning first=1027 second=1040 amount=-1 +kerning first=218 second=224 amount=-1 +kerning first=253 second=289 amount=-1 +kerning first=8250 second=377 amount=-1 +kerning first=87 second=328 amount=-1 +kerning first=354 second=279 amount=-1 +kerning first=1043 second=1104 amount=-1 +kerning first=354 second=381 amount=-1 +kerning first=356 second=286 amount=-1 +kerning first=253 second=229 amount=-1 +kerning first=187 second=325 amount=-1 +kerning first=217 second=229 amount=-1 +kerning first=353 second=115 amount=-1 +kerning first=86 second=257 amount=-1 +kerning first=8218 second=221 amount=-2 +kerning first=325 second=229 amount=-1 +kerning first=289 second=229 amount=-1 +kerning first=197 second=353 amount=-1 +kerning first=352 second=354 amount=-1 +kerning first=356 second=324 amount=-1 +kerning first=118 second=287 amount=-1 +kerning first=187 second=287 amount=-1 +kerning first=82 second=287 amount=-1 +kerning first=346 second=356 amount=-1 +kerning first=110 second=45 amount=-1 +kerning first=366 second=194 amount=-1 +kerning first=264 second=290 amount=-1 +kerning first=66 second=223 amount=-1 +kerning first=1050 second=1054 amount=-1 +kerning first=367 second=287 amount=-1 +kerning first=73 second=171 amount=-1 +kerning first=206 second=97 amount=-1 +kerning first=374 second=275 amount=-1 +kerning first=376 second=245 amount=-1 +kerning first=354 second=339 amount=-1 +kerning first=1027 second=1089 amount=-1 +kerning first=195 second=368 amount=-1 +kerning first=219 second=45 amount=-1 +kerning first=89 second=331 amount=-1 +kerning first=255 second=45 amount=-1 +kerning first=81 second=194 amount=-1 +kerning first=222 second=194 amount=-1 +kerning first=89 second=275 amount=-1 +kerning first=78 second=45 amount=-1 +kerning first=8220 second=234 amount=-1 +kerning first=197 second=45 amount=-1 +kerning first=268 second=78 amount=-1 +kerning first=192 second=350 amount=-1 +kerning first=194 second=353 amount=-1 +kerning first=305 second=45 amount=-1 +kerning first=264 second=350 amount=-1 +kerning first=65 second=211 amount=-1 +kerning first=313 second=356 amount=-1 +kerning first=374 second=353 amount=-1 +kerning first=246 second=318 amount=-1 +kerning first=8217 second=277 amount=-1 +kerning first=377 second=45 amount=-1 +kerning first=275 second=289 amount=-1 +kerning first=87 second=350 amount=-1 +kerning first=277 second=255 amount=-1 +kerning first=313 second=255 amount=-1 +kerning first=262 second=112 amount=-1 +kerning first=347 second=289 amount=-1 +kerning first=187 second=193 amount=-1 +kerning first=84 second=194 amount=-2 +kerning first=84 second=332 amount=-1 +kerning first=376 second=223 amount=-1 +kerning first=352 second=374 amount=-1 +kerning first=89 second=353 amount=-1 +kerning first=8249 second=354 amount=-1 +kerning first=84 second=290 amount=-1 +kerning first=325 second=251 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=374 second=257 amount=-1 +kerning first=195 second=79 amount=-1 +kerning first=1100 second=1091 amount=-1 +kerning first=272 second=192 amount=-1 +kerning first=70 second=44 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=74 second=103 amount=-1 +kerning first=89 second=257 amount=-1 +kerning first=65 second=119 amount=-1 +kerning first=302 second=257 amount=-1 +kerning first=264 second=78 amount=-1 +kerning first=314 second=119 amount=-1 +kerning first=315 second=221 amount=-1 +kerning first=114 second=46 amount=-1 +kerning first=350 second=119 amount=-1 +kerning first=356 second=225 amount=-1 +kerning first=291 second=46 amount=-1 +kerning first=117 second=314 amount=-1 +kerning first=255 second=46 amount=-1 +kerning first=8250 second=66 amount=-1 +kerning first=269 second=253 amount=-1 +kerning first=251 second=375 amount=-1 +kerning first=187 second=346 amount=-1 +kerning first=231 second=230 amount=-1 +kerning first=374 second=375 amount=-1 +kerning first=82 second=346 amount=-1 +kerning first=199 second=70 amount=-1 +kerning first=370 second=378 amount=-1 +kerning first=194 second=375 amount=-1 +kerning first=230 second=375 amount=-1 +kerning first=83 second=87 amount=-1 +kerning first=268 second=201 amount=-1 +kerning first=311 second=101 amount=-1 +kerning first=260 second=87 amount=-2 +kerning first=8220 second=273 amount=-1 +kerning first=89 second=375 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=8250 second=70 amount=-1 +kerning first=217 second=380 amount=-1 +kerning first=89 second=235 amount=-1 +kerning first=321 second=218 amount=-1 +kerning first=288 second=354 amount=-1 +kerning first=277 second=104 amount=-1 +kerning first=374 second=235 amount=-1 +kerning first=258 second=81 amount=-1 +kerning first=106 second=171 amount=-1 +kerning first=86 second=377 amount=-1 +kerning first=120 second=369 amount=-1 +kerning first=263 second=105 amount=-1 +kerning first=264 second=212 amount=-1 +kerning first=209 second=117 amount=-1 +kerning first=67 second=197 amount=-1 +kerning first=1059 second=1083 amount=-1 +kerning first=344 second=83 amount=-1 +kerning first=255 second=333 amount=-1 +kerning first=258 second=121 amount=-1 +kerning first=208 second=197 amount=-1 +kerning first=83 second=317 amount=-1 +kerning first=253 second=231 amount=-1 +kerning first=352 second=197 amount=-1 +kerning first=207 second=229 amount=-1 +kerning first=323 second=291 amount=-1 +kerning first=199 second=313 amount=-1 +kerning first=209 second=229 amount=-1 +kerning first=86 second=335 amount=-1 +kerning first=346 second=237 amount=-1 +kerning first=103 second=122 amount=-1 +kerning first=275 second=311 amount=-1 +kerning first=375 second=230 amount=-1 +kerning first=67 second=122 amount=-1 +kerning first=233 second=253 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=371 second=335 amount=-1 +kerning first=89 second=333 amount=-1 +kerning first=213 second=260 amount=-1 +kerning first=286 second=171 amount=-1 +kerning first=256 second=249 amount=-1 +kerning first=321 second=86 amount=-1 +kerning first=262 second=266 amount=-1 +kerning first=260 second=199 amount=-1 +kerning first=204 second=361 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=45 second=196 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=363 second=103 amount=-1 +kerning first=197 second=171 amount=-1 +kerning first=84 second=214 amount=-1 +kerning first=109 second=8221 amount=-1 +kerning first=327 second=103 amount=-1 +kerning first=219 second=103 amount=-1 +kerning first=8218 second=119 amount=-1 +kerning first=255 second=103 amount=-1 +kerning first=253 second=100 amount=-1 +kerning first=221 second=267 amount=-1 +kerning first=78 second=103 amount=-1 +kerning first=250 second=8221 amount=-1 +kerning first=354 second=71 amount=-1 +kerning first=264 second=330 amount=-1 +kerning first=381 second=365 amount=-1 +kerning first=45 second=103 amount=-1 +kerning first=321 second=220 amount=-1 +kerning first=221 second=8250 amount=-1 +kerning first=109 second=171 amount=-1 +kerning first=8216 second=192 amount=-2 +kerning first=263 second=261 amount=-1 +kerning first=220 second=97 amount=-1 +kerning first=328 second=118 amount=-1 +kerning first=66 second=72 amount=-1 +kerning first=207 second=224 amount=-1 +kerning first=199 second=298 amount=-1 +kerning first=118 second=248 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=296 second=259 amount=-1 +kerning first=66 second=224 amount=-1 +kerning first=66 second=379 amount=-1 +kerning first=87 second=232 amount=-1 +kerning first=256 second=118 amount=-1 +kerning first=260 second=218 amount=-1 +kerning first=82 second=267 amount=-1 +kerning first=315 second=379 amount=-1 +kerning first=255 second=234 amount=-1 +kerning first=83 second=218 amount=-1 +kerning first=115 second=118 amount=-1 +kerning first=195 second=250 amount=-1 +kerning first=90 second=250 amount=-1 +kerning first=1050 second=1090 amount=-1 +kerning first=83 second=221 amount=-1 +kerning first=260 second=221 amount=-2 +kerning first=376 second=378 amount=-1 +kerning first=45 second=274 amount=-1 +kerning first=71 second=287 amount=-1 +kerning first=84 second=192 amount=-2 +kerning first=214 second=193 amount=-1 +kerning first=1113 second=1118 amount=-1 +kerning first=213 second=198 amount=-1 +kerning first=75 second=216 amount=-1 +kerning first=118 second=226 amount=-1 +kerning first=313 second=84 amount=-1 +kerning first=356 second=287 amount=-1 +kerning first=352 second=102 amount=-1 +kerning first=284 second=287 amount=-1 +kerning first=1118 second=1083 amount=-1 +kerning first=220 second=227 amount=-1 +kerning first=267 second=307 amount=-1 +kerning first=231 second=307 amount=-1 +kerning first=268 second=378 amount=-1 +kerning first=344 second=291 amount=-1 +kerning first=286 second=221 amount=-1 +kerning first=107 second=113 amount=-1 +kerning first=256 second=368 amount=-1 +kerning first=254 second=121 amount=-1 +kerning first=264 second=210 amount=-1 +kerning first=236 second=291 amount=-1 +kerning first=352 second=45 amount=-1 +kerning first=193 second=262 amount=-1 +kerning first=321 second=89 amount=-1 +kerning first=193 second=284 amount=-1 +kerning first=88 second=262 amount=-1 +kerning first=87 second=210 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=217 second=350 amount=-1 +kerning first=192 second=210 amount=-1 +kerning first=371 second=337 amount=-1 +kerning first=354 second=8249 amount=-1 +kerning first=218 second=261 amount=-1 +kerning first=86 second=337 amount=-1 +kerning first=88 second=284 amount=-1 +kerning first=119 second=240 amount=-1 +kerning first=8218 second=87 amount=-2 +kerning first=209 second=367 amount=-1 +kerning first=118 second=245 amount=-1 +kerning first=350 second=327 amount=-1 +kerning first=82 second=245 amount=-1 +kerning first=105 second=8249 amount=-1 +kerning first=194 second=370 amount=-1 +kerning first=221 second=279 amount=-1 +kerning first=121 second=263 amount=-1 +kerning first=267 second=228 amount=-1 +kerning first=346 second=66 amount=-1 +kerning first=375 second=228 amount=-1 +kerning first=121 second=244 amount=-1 +kerning first=249 second=108 amount=-1 +kerning first=347 second=120 amount=-1 +kerning first=231 second=228 amount=-1 +kerning first=268 second=302 amount=-1 +kerning first=263 second=108 amount=-1 +kerning first=335 second=108 amount=-1 +kerning first=66 second=303 amount=-1 +kerning first=362 second=8249 amount=-1 +kerning first=86 second=224 amount=-1 +kerning first=206 second=251 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=66 second=73 amount=-1 +kerning first=374 second=226 amount=-1 +kerning first=109 second=8220 amount=-1 +kerning first=364 second=229 amount=-1 +kerning first=250 second=8220 amount=-1 +kerning first=262 second=286 amount=-1 +kerning first=66 second=311 amount=-1 +kerning first=195 second=119 amount=-1 +kerning first=376 second=279 amount=-1 +kerning first=263 second=237 amount=-1 +kerning first=303 second=119 amount=-1 +kerning first=339 second=119 amount=-1 +kerning first=8217 second=333 amount=-1 +kerning first=231 second=119 amount=-1 +kerning first=267 second=119 amount=-1 +kerning first=356 second=115 amount=-1 +kerning first=209 second=97 amount=-1 +kerning first=381 second=363 amount=-1 +kerning first=291 second=353 amount=-1 +kerning first=8222 second=221 amount=-2 +kerning first=283 second=314 amount=-1 +kerning first=288 second=356 amount=-1 +kerning first=366 second=45 amount=-1 +kerning first=1046 second=1060 amount=-1 +kerning first=8217 second=246 amount=-1 +kerning first=230 second=255 amount=-1 +kerning first=330 second=45 amount=-1 +kerning first=87 second=101 amount=-1 +kerning first=194 second=255 amount=-1 +kerning first=107 second=244 amount=-1 +kerning first=67 second=296 amount=-1 +kerning first=89 second=255 amount=-1 +kerning first=272 second=194 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=356 second=244 amount=-1 +kerning first=350 second=280 amount=-1 +kerning first=264 second=80 amount=-1 +kerning first=352 second=296 amount=-1 +kerning first=1114 second=1091 amount=-1 +kerning first=121 second=243 amount=-1 +kerning first=8217 second=103 amount=-1 +kerning first=1061 second=1095 amount=-1 +kerning first=352 second=46 amount=-1 +kerning first=244 second=46 amount=-1 +kerning first=219 second=352 amount=-1 +kerning first=264 second=203 amount=-1 +kerning first=84 second=83 amount=-1 +kerning first=187 second=77 amount=-1 +kerning first=262 second=264 amount=-1 +kerning first=352 second=330 amount=-1 +kerning first=115 second=347 amount=-1 +kerning first=256 second=347 amount=-1 +kerning first=218 second=380 amount=-1 +kerning first=268 second=71 amount=-1 +kerning first=356 second=266 amount=-1 +kerning first=196 second=71 amount=-1 +kerning first=362 second=380 amount=-1 +kerning first=118 second=225 amount=-1 +kerning first=45 second=65 amount=-1 +kerning first=199 second=200 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=85 second=230 amount=-1 +kerning first=376 second=71 amount=-1 +kerning first=226 second=8217 amount=-1 +kerning first=81 second=65 amount=-1 +kerning first=316 second=253 amount=-1 +kerning first=222 second=65 amount=-1 +kerning first=363 second=375 amount=-1 +kerning first=206 second=230 amount=-1 +kerning first=321 second=87 amount=-1 +kerning first=366 second=65 amount=-1 +kerning first=303 second=99 amount=-1 +kerning first=73 second=289 amount=-1 +kerning first=89 second=65 amount=-2 +kerning first=263 second=259 amount=-1 +kerning first=197 second=351 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=258 second=370 amount=-1 +kerning first=86 second=259 amount=-1 +kerning first=235 second=318 amount=-1 +kerning first=346 second=260 amount=-1 +kerning first=286 second=289 amount=-1 +kerning first=377 second=122 amount=-1 +kerning first=264 second=288 amount=-1 +kerning first=346 second=218 amount=-1 +kerning first=87 second=81 amount=-1 +kerning first=366 second=196 amount=-1 +kerning first=192 second=81 amount=-1 +kerning first=87 second=288 amount=-1 +kerning first=192 second=288 amount=-1 +kerning first=222 second=196 amount=-1 +kerning first=204 second=224 amount=-1 +kerning first=230 second=104 amount=-1 +kerning first=264 second=81 amount=-1 +kerning first=374 second=277 amount=-1 +kerning first=260 second=219 amount=-1 +kerning first=66 second=323 amount=-1 +kerning first=260 second=89 amount=-2 +kerning first=374 second=286 amount=-1 +kerning first=268 second=203 amount=-1 +kerning first=1036 second=1054 amount=-1 +kerning first=377 second=121 amount=-1 +kerning first=374 second=256 amount=-2 +kerning first=346 second=217 amount=-1 +kerning first=233 second=121 amount=-1 +kerning first=211 second=196 amount=-1 +kerning first=311 second=283 amount=-1 +kerning first=45 second=370 amount=-1 +kerning first=364 second=228 amount=-1 +kerning first=70 second=196 amount=-1 +kerning first=376 second=224 amount=-1 +kerning first=83 second=89 amount=-1 +kerning first=220 second=228 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=255 second=277 amount=-1 +kerning first=194 second=354 amount=-2 +kerning first=275 second=103 amount=-1 +kerning first=346 second=86 amount=-1 +kerning first=377 second=252 amount=-1 +kerning first=83 second=220 amount=-1 +kerning first=353 second=347 amount=-1 +kerning first=221 second=71 amount=-1 +kerning first=225 second=8221 amount=-1 +kerning first=118 second=246 amount=-1 +kerning first=338 second=103 amount=-1 +kerning first=261 second=8221 amount=-1 +kerning first=374 second=103 amount=-1 +kerning first=86 second=336 amount=-1 +kerning first=192 second=8217 amount=-1 +kerning first=266 second=103 amount=-1 +kerning first=82 second=246 amount=-1 +kerning first=302 second=103 amount=-1 +kerning first=313 second=354 amount=-1 +kerning first=354 second=8250 amount=-1 +kerning first=194 second=103 amount=-1 +kerning first=230 second=103 amount=-1 +kerning first=89 second=103 amount=-1 +kerning first=120 second=171 amount=-1 +kerning first=260 second=220 amount=-1 +kerning first=249 second=316 amount=-1 +kerning first=84 second=171 amount=-1 +kerning first=381 second=287 amount=-1 +kerning first=264 second=211 amount=-1 +kerning first=353 second=118 amount=-1 +kerning first=8250 second=260 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=364 second=97 amount=-1 +kerning first=253 second=232 amount=-1 +kerning first=8250 second=86 amount=-1 +kerning first=346 second=315 amount=-1 +kerning first=65 second=350 amount=-1 +kerning first=218 second=74 amount=-1 +kerning first=260 second=67 amount=-1 +kerning first=317 second=118 amount=-1 +kerning first=363 second=255 amount=-1 +kerning first=362 second=74 amount=-1 +kerning first=366 second=44 amount=-1 +kerning first=87 second=211 amount=-1 +kerning first=82 second=366 amount=-1 +kerning first=379 second=8249 amount=-1 +kerning first=86 second=216 amount=-1 +kerning first=8216 second=283 amount=-1 +kerning first=187 second=366 amount=-1 +kerning first=222 second=44 amount=-1 +kerning first=205 second=257 amount=-1 +kerning first=45 second=120 amount=-1 +kerning first=72 second=8249 amount=-1 +kerning first=84 second=193 amount=-2 +kerning first=356 second=267 amount=-1 +kerning first=89 second=234 amount=-1 +kerning first=350 second=209 amount=-1 +kerning first=268 second=72 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=374 second=234 amount=-1 +kerning first=107 second=267 amount=-1 +kerning first=350 second=78 amount=-1 +kerning first=286 second=192 amount=-1 +kerning first=83 second=198 amount=-1 +kerning first=87 second=331 amount=-1 +kerning first=66 second=302 amount=-1 +kerning first=90 second=251 amount=-1 +kerning first=66 second=280 amount=-1 +kerning first=356 second=245 amount=-1 +kerning first=268 second=315 amount=-1 +kerning first=323 second=361 amount=-1 +kerning first=231 second=318 amount=-1 +kerning first=214 second=192 amount=-1 +kerning first=256 second=250 amount=-1 +kerning first=368 second=198 amount=-1 +kerning first=107 second=245 amount=-1 +kerning first=332 second=198 amount=-1 +kerning first=1059 second=1074 amount=-1 +kerning first=66 second=378 amount=-1 +kerning first=1090 second=1113 amount=-1 +kerning first=1050 second=1073 amount=-1 +kerning first=209 second=227 amount=-1 +kerning first=82 second=268 amount=-1 +kerning first=369 second=291 amount=-1 +kerning first=87 second=233 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=78 second=287 amount=-1 +kerning first=328 second=119 amount=-1 +kerning first=315 second=378 amount=-1 +kerning first=66 second=204 amount=-1 +kerning first=84 second=291 amount=-1 +kerning first=222 second=256 amount=-1 +kerning first=67 second=198 amount=-1 +kerning first=74 second=227 amount=-1 +kerning first=344 second=314 amount=-1 +kerning first=89 second=337 amount=-1 +kerning first=45 second=256 amount=-1 +kerning first=208 second=198 amount=-1 +kerning first=81 second=256 amount=-1 +kerning first=377 second=291 amount=-1 +kerning first=321 second=90 amount=-1 +kerning first=352 second=198 amount=-1 +kerning first=269 second=291 amount=-1 +kerning first=233 second=291 amount=-1 +kerning first=354 second=67 amount=-1 +kerning first=197 second=291 amount=-1 +kerning first=82 second=244 amount=-1 +kerning first=216 second=44 amount=-1 +kerning first=118 second=244 amount=-1 +kerning first=288 second=44 amount=-1 +kerning first=84 second=210 amount=-1 +kerning first=346 second=354 amount=-1 +kerning first=86 second=378 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=253 second=101 amount=-1 +kerning first=344 second=84 amount=-1 +kerning first=289 second=318 amount=-1 +kerning first=374 second=337 amount=-1 +kerning first=323 second=227 amount=-1 +kerning first=366 second=256 amount=-1 +kerning first=287 second=227 amount=-1 +kerning first=86 second=8250 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=262 second=203 amount=-1 +kerning first=8222 second=356 amount=-2 +kerning first=199 second=336 amount=-1 +kerning first=87 second=198 amount=-2 +kerning first=187 second=73 amount=-1 +kerning first=290 second=89 amount=-1 +kerning first=252 second=108 amount=-1 +kerning first=381 second=361 amount=-1 +kerning first=81 second=197 amount=-1 +kerning first=45 second=197 amount=-1 +kerning first=221 second=263 amount=-1 +kerning first=266 second=278 amount=-1 +kerning first=65 second=286 amount=-1 +kerning first=222 second=197 amount=-1 +kerning first=1088 second=1076 amount=-1 +kerning first=73 second=367 amount=-1 +kerning first=316 second=106 amount=-1 +kerning first=8250 second=196 amount=-1 +kerning first=366 second=197 amount=-1 +kerning first=262 second=262 amount=-1 +kerning first=193 second=221 amount=-2 +kerning first=375 second=246 amount=-1 +kerning first=72 second=261 amount=-1 +kerning first=303 second=246 amount=-1 +kerning first=196 second=8249 amount=-1 +kerning first=304 second=8249 amount=-1 +kerning first=268 second=8249 amount=-1 +kerning first=8220 second=230 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=84 second=289 amount=-1 +kerning first=266 second=194 amount=-1 +kerning first=374 second=194 amount=-2 +kerning first=211 second=65 amount=-1 +kerning first=83 second=237 amount=-1 +kerning first=313 second=8220 amount=-1 +kerning first=369 second=289 amount=-1 +kerning first=86 second=260 amount=-2 +kerning first=70 second=45 amount=-1 +kerning first=88 second=338 amount=-1 +kerning first=89 second=194 amount=-2 +kerning first=89 second=8249 amount=-1 +kerning first=356 second=97 amount=-1 +kerning first=256 second=211 amount=-1 +kerning first=45 second=287 amount=-1 +kerning first=84 second=353 amount=-1 +kerning first=120 second=353 amount=-1 +kerning first=335 second=255 amount=-1 +kerning first=321 second=374 amount=-1 +kerning first=263 second=255 amount=-1 +kerning first=86 second=240 amount=-1 +kerning first=227 second=255 amount=-1 +kerning first=86 second=255 amount=-1 +kerning first=71 second=374 amount=-1 +kerning first=104 second=8221 amount=-1 +kerning first=371 second=240 amount=-1 +kerning first=8220 second=198 amount=-2 +kerning first=350 second=76 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=121 second=225 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=332 second=46 amount=-1 +kerning first=368 second=46 amount=-1 +kerning first=209 second=363 amount=-1 +kerning first=8220 second=232 amount=-1 +kerning first=119 second=242 amount=-1 +kerning first=220 second=226 amount=-1 +kerning first=268 second=323 amount=-1 +kerning first=45 second=310 amount=-1 +kerning first=364 second=226 amount=-1 +kerning first=1046 second=1104 amount=-1 +kerning first=207 second=225 amount=-1 +kerning first=66 second=225 amount=-1 +kerning first=222 second=192 amount=-1 +kerning first=207 second=259 amount=-1 +kerning first=45 second=192 amount=-1 +kerning first=221 second=224 amount=-1 +kerning first=217 second=193 amount=-1 +kerning first=330 second=224 amount=-1 +kerning first=256 second=290 amount=-1 +kerning first=264 second=213 amount=-1 +kerning first=244 second=375 amount=-1 +kerning first=192 second=213 amount=-1 +kerning first=316 second=375 amount=-1 +kerning first=87 second=213 amount=-1 +kerning first=213 second=46 amount=-1 +kerning first=187 second=204 amount=-1 +kerning first=8217 second=337 amount=-1 +kerning first=266 second=317 amount=-1 +kerning first=195 second=369 amount=-1 +kerning first=90 second=369 amount=-1 +kerning first=262 second=282 amount=-1 +kerning first=346 second=221 amount=-1 +kerning first=354 second=111 amount=-1 +kerning first=85 second=287 amount=-1 +kerning first=1070 second=1051 amount=-1 +kerning first=121 second=287 amount=-1 +kerning first=233 second=311 amount=-1 +kerning first=119 second=316 amount=-1 +kerning first=362 second=225 amount=-1 +kerning first=1043 second=1086 amount=-1 +kerning first=370 second=287 amount=-1 +kerning first=262 second=287 amount=-1 +kerning first=298 second=287 amount=-1 +kerning first=376 second=259 amount=-1 +kerning first=86 second=275 amount=-1 +kerning first=192 second=351 amount=-1 +kerning first=219 second=194 amount=-1 +kerning first=374 second=352 amount=-1 +kerning first=87 second=351 amount=-1 +kerning first=89 second=352 amount=-1 +kerning first=314 second=8217 amount=-1 +kerning first=66 second=74 amount=-1 +kerning first=194 second=352 amount=-1 +kerning first=286 second=46 amount=-1 +kerning first=303 second=231 amount=-1 +kerning first=264 second=327 amount=-1 +kerning first=1050 second=1038 amount=-1 +kerning first=120 second=254 amount=-1 +kerning first=118 second=269 amount=-1 +kerning first=82 second=269 amount=-1 +kerning first=120 second=261 amount=-1 +kerning first=316 second=121 amount=-1 +kerning first=244 second=121 amount=-1 +kerning first=346 second=374 amount=-1 +kerning first=118 second=229 amount=-1 +kerning first=1059 second=1085 amount=-1 +kerning first=287 second=115 amount=-1 +kerning first=375 second=231 amount=-1 +kerning first=363 second=253 amount=-1 +kerning first=258 second=212 amount=-1 +kerning first=195 second=350 amount=-1 +kerning first=86 second=334 amount=-1 +kerning first=65 second=8217 amount=-1 +kerning first=253 second=228 amount=-1 +kerning first=217 second=228 amount=-1 +kerning first=232 second=318 amount=-1 +kerning first=325 second=228 amount=-1 +kerning first=374 second=214 amount=-1 +kerning first=195 second=266 amount=-1 +kerning first=289 second=228 amount=-1 +kerning first=354 second=199 amount=-1 +kerning first=219 second=287 amount=-1 +kerning first=266 second=214 amount=-1 +kerning first=264 second=332 amount=-1 +kerning first=192 second=332 amount=-1 +kerning first=67 second=344 amount=-1 +kerning first=45 second=73 amount=-1 +kerning first=66 second=382 amount=-1 +kerning first=256 second=251 amount=-1 +kerning first=313 second=103 amount=-1 +kerning first=104 second=171 amount=-1 +kerning first=350 second=330 amount=-1 +kerning first=82 second=8217 amount=-1 +kerning first=196 second=362 amount=-1 +kerning first=209 second=171 amount=-1 +kerning first=277 second=103 amount=-1 +kerning first=194 second=214 amount=-1 +kerning first=317 second=8221 amount=-1 +kerning first=65 second=365 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=353 second=119 amount=-1 +kerning first=225 second=118 amount=-1 +kerning first=199 second=380 amount=-1 +kerning first=261 second=118 amount=-1 +kerning first=379 second=45 amount=-1 +kerning first=1040 second=1063 amount=-1 +kerning first=317 second=119 amount=-1 +kerning first=367 second=253 amount=-1 +kerning first=379 second=380 amount=-1 +kerning first=83 second=202 amount=-1 +kerning first=84 second=118 amount=-1 +kerning first=268 second=204 amount=-1 +kerning first=221 second=246 amount=-1 +kerning first=253 second=233 amount=-1 +kerning first=199 second=67 amount=-1 +kerning first=354 second=113 amount=-1 +kerning first=321 second=217 amount=-1 +kerning first=8250 second=354 amount=-1 +kerning first=369 second=118 amount=-1 +kerning first=369 second=314 amount=-1 +kerning first=333 second=314 amount=-1 +kerning first=45 second=315 amount=-1 +kerning first=369 second=8220 amount=-1 +kerning first=315 second=382 amount=-1 +kerning first=242 second=120 amount=-1 +kerning first=87 second=248 amount=-1 +kerning first=225 second=8220 amount=-1 +kerning first=82 second=264 amount=-1 +kerning first=376 second=283 amount=-1 +kerning first=261 second=8220 amount=-1 +kerning first=89 second=377 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=45 second=296 amount=-1 +kerning first=347 second=347 amount=-1 +kerning first=346 second=85 amount=-1 +kerning first=87 second=193 amount=-2 +kerning first=109 second=118 amount=-1 +kerning first=260 second=8217 amount=-1 +kerning first=66 second=332 amount=-1 +kerning first=264 second=193 amount=-1 +kerning first=1038 second=1117 amount=-1 +kerning first=260 second=85 amount=-1 +kerning first=1069 second=1059 amount=-1 +kerning first=195 second=8221 amount=-1 +kerning first=354 second=257 amount=-1 +kerning first=258 second=216 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=375 second=229 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=250 second=118 amount=-1 +kerning first=374 second=377 amount=-1 +kerning first=255 second=273 amount=-1 +kerning first=211 second=197 amount=-1 +kerning first=221 second=8249 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=70 second=197 amount=-1 +kerning first=279 second=287 amount=-1 +kerning first=120 second=250 amount=-1 +kerning first=70 second=192 amount=-1 +kerning first=321 second=289 amount=-1 +kerning first=1036 second=1077 amount=-1 +kerning first=336 second=193 amount=-1 +kerning first=44 second=8249 amount=-1 +kerning first=86 second=279 amount=-1 +kerning first=219 second=198 amount=-1 +kerning first=86 second=338 amount=-1 +kerning first=366 second=291 amount=-1 +kerning first=1024 second=1038 amount=-1 +kerning first=330 second=291 amount=-1 +kerning first=1060 second=1038 amount=-1 +kerning first=258 second=291 amount=-1 +kerning first=117 second=291 amount=-1 +kerning first=365 second=318 amount=-1 +kerning first=232 second=107 amount=-1 +kerning first=216 second=260 amount=-1 +kerning first=272 second=65 amount=-1 +kerning first=371 second=279 amount=-1 +kerning first=87 second=268 amount=-1 +kerning first=335 second=44 amount=-1 +kerning first=8220 second=271 amount=-1 +kerning first=221 second=67 amount=-1 +kerning first=288 second=260 amount=-1 +kerning first=263 second=44 amount=-1 +kerning first=199 second=72 amount=-1 +kerning first=196 second=199 amount=-1 +kerning first=376 second=113 amount=-1 +kerning first=204 second=227 amount=-1 +kerning first=268 second=199 amount=-1 +kerning first=264 second=268 amount=-1 +kerning first=8222 second=87 amount=-2 +kerning first=99 second=227 amount=-1 +kerning first=192 second=268 amount=-1 +kerning first=376 second=199 amount=-1 +kerning first=368 second=261 amount=-1 +kerning first=346 second=105 amount=-1 +kerning first=83 second=374 amount=-1 +kerning first=67 second=212 amount=-1 +kerning first=296 second=261 amount=-1 +kerning first=352 second=66 amount=-1 +kerning first=1043 second=1105 amount=-1 +kerning first=231 second=226 amount=-1 +kerning first=277 second=108 amount=-1 +kerning first=267 second=226 amount=-1 +kerning first=67 second=66 amount=-1 +kerning first=375 second=226 amount=-1 +kerning first=67 second=317 amount=-1 +kerning first=8216 second=271 amount=-1 +kerning first=344 second=98 amount=-1 +kerning first=356 second=44 amount=-1 +kerning first=205 second=229 amount=-1 +kerning first=264 second=122 amount=-1 +kerning first=8218 second=85 amount=-1 +kerning first=187 second=205 amount=-1 +kerning first=8250 second=220 amount=-1 +kerning first=87 second=122 amount=-1 +kerning first=119 second=261 amount=-1 +kerning first=121 second=115 amount=-1 +kerning first=8216 second=227 amount=-1 +kerning first=354 second=224 amount=-1 +kerning first=260 second=356 amount=-2 +kerning first=118 second=97 amount=-1 +kerning first=262 second=77 amount=-1 +kerning first=8250 second=378 amount=-1 +kerning first=350 second=310 amount=-1 +kerning first=371 second=339 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=380 second=45 amount=-1 +kerning first=66 second=206 amount=-1 +kerning first=236 second=45 amount=-1 +kerning first=252 second=255 amount=-1 +kerning first=221 second=243 amount=-1 +kerning first=82 second=368 amount=-1 +kerning first=350 second=325 amount=-1 +kerning first=187 second=89 amount=-1 +kerning first=344 second=45 amount=-1 +kerning first=187 second=368 amount=-1 +kerning first=75 second=255 amount=-1 +kerning first=195 second=211 amount=-1 +kerning first=323 second=287 amount=-1 +kerning first=111 second=255 amount=-1 +kerning first=8222 second=118 amount=-1 +kerning first=251 second=287 amount=-1 +kerning first=260 second=374 amount=-2 +kerning first=74 second=287 amount=-1 +kerning first=251 second=253 amount=-1 +kerning first=344 second=104 amount=-1 +kerning first=235 second=121 amount=-1 +kerning first=195 second=8217 amount=-1 +kerning first=199 second=202 amount=-1 +kerning first=284 second=46 amount=-1 +kerning first=66 second=109 amount=-1 +kerning first=119 second=380 amount=-1 +kerning first=368 second=380 amount=-1 +kerning first=381 second=251 amount=-1 +kerning first=221 second=111 amount=-1 +kerning first=311 second=248 amount=-1 +kerning first=356 second=264 amount=-1 +kerning first=311 second=233 amount=-1 +kerning first=89 second=253 amount=-1 +kerning first=220 second=350 amount=-1 +kerning first=362 second=382 amount=-1 +kerning first=256 second=350 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=268 second=69 amount=-1 +kerning first=376 second=74 amount=-1 +kerning first=364 second=350 amount=-1 +kerning first=316 second=8217 amount=-1 +kerning first=86 second=339 amount=-1 +kerning first=187 second=374 amount=-1 +kerning first=107 second=269 amount=-1 +kerning first=1036 second=1057 amount=-1 +kerning first=374 second=253 amount=-1 +kerning first=376 second=243 amount=-1 +kerning first=352 second=218 amount=-1 +kerning first=356 second=269 amount=-1 +kerning first=310 second=334 amount=-1 +kerning first=260 second=338 amount=-1 +kerning first=200 second=289 amount=-1 +kerning first=236 second=289 amount=-1 +kerning first=197 second=375 amount=-1 +kerning first=344 second=289 amount=-1 +kerning first=262 second=207 amount=-1 +kerning first=197 second=212 amount=-1 +kerning first=209 second=251 amount=-1 +kerning first=83 second=70 amount=-1 +kerning first=8220 second=65 amount=-2 +kerning first=263 second=289 amount=-1 +kerning first=206 second=369 amount=-1 +kerning first=8220 second=256 amount=-2 +kerning first=65 second=369 amount=-1 +kerning first=120 second=98 amount=-1 +kerning first=352 second=370 amount=-1 +kerning first=346 second=46 amount=-1 +kerning first=216 second=194 amount=-1 +kerning first=66 second=201 amount=-1 +kerning first=377 second=375 amount=-1 +kerning first=311 second=263 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=257 second=8220 amount=-1 +kerning first=363 second=119 amount=-1 +kerning first=233 second=375 amount=-1 +kerning first=356 second=346 amount=-1 +kerning first=269 second=375 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=221 second=259 amount=-1 +kerning first=234 second=119 amount=-1 +kerning first=193 second=89 amount=-2 +kerning first=83 second=217 amount=-1 +kerning first=283 second=291 amount=-1 +kerning first=352 second=256 amount=-1 +kerning first=269 second=261 amount=-1 +kerning first=106 second=291 amount=-1 +kerning first=1042 second=1093 amount=-1 +kerning first=70 second=291 amount=-1 +kerning first=268 second=298 amount=-1 +kerning first=208 second=256 amount=-1 +kerning first=354 second=187 amount=-1 +kerning first=250 second=314 amount=-1 +kerning first=347 second=351 amount=-1 +kerning first=67 second=256 amount=-1 +kerning first=363 second=121 amount=-1 +kerning first=1059 second=1082 amount=-1 +kerning first=344 second=8220 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=354 second=263 amount=-1 +kerning first=216 second=196 amount=-1 +kerning first=119 second=277 amount=-1 +kerning first=221 second=199 amount=-1 +kerning first=8217 second=352 amount=-1 +kerning first=303 second=101 amount=-1 +kerning first=288 second=84 amount=-1 +kerning first=206 second=228 amount=-1 +kerning first=321 second=85 amount=-1 +kerning first=344 second=333 amount=-1 +kerning first=197 second=86 amount=-2 +kerning first=86 second=235 amount=-1 +kerning first=112 second=120 amount=-1 +kerning first=84 second=234 amount=-1 +kerning first=218 second=382 amount=-1 +kerning first=371 second=235 amount=-1 +kerning first=87 second=83 amount=-1 +kerning first=346 second=220 amount=-1 +kerning first=235 second=316 amount=-1 +kerning first=192 second=83 amount=-1 +kerning first=71 second=354 amount=-1 +kerning first=266 second=68 amount=-1 +kerning first=264 second=83 amount=-1 +kerning first=256 second=171 amount=-1 +kerning first=220 second=171 amount=-1 +kerning first=328 second=171 amount=-1 +kerning first=256 second=8221 amount=-1 +kerning first=266 second=313 amount=-1 +kerning first=262 second=71 amount=-1 +kerning first=192 second=252 amount=-1 +kerning first=364 second=171 amount=-1 +kerning first=82 second=316 amount=-1 +kerning first=252 second=103 amount=-1 +kerning first=1061 second=1077 amount=-1 +kerning first=288 second=103 amount=-1 +kerning first=328 second=8221 amount=-1 +kerning first=325 second=365 amount=-1 +kerning first=88 second=71 amount=-1 +kerning first=346 second=103 amount=-1 +kerning first=67 second=214 amount=-1 +kerning first=274 second=103 amount=-1 +kerning first=253 second=246 amount=-1 +kerning first=344 second=100 amount=-1 +kerning first=202 second=103 amount=-1 +kerning first=8216 second=225 amount=-1 +kerning first=84 second=65 amount=-2 +kerning first=67 second=315 amount=-1 +kerning first=1036 second=1090 amount=-1 +kerning first=1102 second=1076 amount=-1 +kerning first=381 second=249 amount=-1 +kerning first=210 second=194 amount=-1 +kerning first=346 second=200 amount=-1 +kerning first=356 second=284 amount=-1 +kerning first=344 second=240 amount=-1 +kerning first=298 second=117 amount=-1 +kerning first=90 second=171 amount=-1 +kerning first=256 second=365 amount=-1 +kerning first=1036 second=1063 amount=-1 +kerning first=66 second=199 amount=-1 +kerning first=195 second=171 amount=-1 +kerning first=354 second=281 amount=-1 +kerning first=1059 second=1047 amount=-1 +kerning first=375 second=171 amount=-1 +kerning first=374 second=255 amount=-1 +kerning first=196 second=89 amount=-2 +kerning first=313 second=121 amount=-1 +kerning first=277 second=121 amount=-1 +kerning first=354 second=382 amount=-1 +kerning first=314 second=8221 amount=-1 +kerning first=313 second=218 amount=-1 +kerning first=275 second=118 amount=-1 +kerning first=315 second=364 amount=-1 +kerning first=79 second=260 amount=-1 +kerning first=347 second=118 amount=-1 +kerning first=269 second=228 amount=-1 +kerning first=65 second=8221 amount=-1 +kerning first=365 second=316 amount=-1 +kerning first=233 second=104 amount=-1 +kerning first=352 second=315 amount=-1 +kerning first=68 second=197 amount=-1 +kerning first=344 second=234 amount=-1 +kerning first=1059 second=1089 amount=-1 +kerning first=73 second=250 amount=-1 +kerning first=221 second=290 amount=-1 +kerning first=194 second=86 amount=-2 +kerning first=8220 second=335 amount=-1 +kerning first=315 second=87 amount=-1 +kerning first=82 second=248 amount=-1 +kerning first=253 second=347 amount=-1 +kerning first=8220 second=337 amount=-1 +kerning first=1060 second=1040 amount=-1 +kerning first=8217 second=240 amount=-1 +kerning first=284 second=65 amount=-1 +kerning first=221 second=380 amount=-1 +kerning first=86 second=90 amount=-1 +kerning first=77 second=8249 amount=-1 +kerning first=66 second=305 amount=-1 +kerning first=266 second=198 amount=-1 +kerning first=67 second=192 amount=-1 +kerning first=374 second=44 amount=-1 +kerning first=8216 second=193 amount=-2 +kerning first=374 second=198 amount=-2 +kerning first=218 second=8249 amount=-1 +kerning first=90 second=363 amount=-1 +kerning first=195 second=363 amount=-1 +kerning first=199 second=204 amount=-1 +kerning first=376 second=67 amount=-1 +kerning first=363 second=291 amount=-1 +kerning first=327 second=291 amount=-1 +kerning first=268 second=67 amount=-1 +kerning first=302 second=250 amount=-1 +kerning first=255 second=291 amount=-1 +kerning first=219 second=291 amount=-1 +kerning first=8250 second=200 amount=-1 +kerning first=78 second=291 amount=-1 +kerning first=321 second=378 amount=-1 +kerning first=196 second=67 amount=-1 +kerning first=89 second=113 amount=-1 +kerning first=8222 second=217 amount=-1 +kerning first=230 second=44 amount=-1 +kerning first=83 second=72 amount=-1 +kerning first=204 second=287 amount=-1 +kerning first=194 second=361 amount=-1 +kerning first=99 second=287 amount=-1 +kerning first=89 second=198 amount=-2 +kerning first=192 second=367 amount=-1 +kerning first=8250 second=327 amount=-1 +kerning first=8250 second=103 amount=-1 +kerning first=230 second=108 amount=-1 +kerning first=8217 second=260 amount=-2 +kerning first=356 second=326 amount=-1 +kerning first=256 second=286 amount=-1 +kerning first=80 second=74 amount=-1 +kerning first=221 second=74 amount=-1 +kerning first=66 second=221 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=171 second=221 amount=-1 +kerning first=73 second=228 amount=-1 +kerning first=356 second=262 amount=-1 +kerning first=89 second=262 amount=-1 +kerning first=264 second=206 amount=-1 +kerning first=326 second=8249 amount=-1 +kerning first=290 second=8249 amount=-1 +kerning first=235 second=107 amount=-1 +kerning first=8250 second=68 amount=-1 +kerning first=108 second=8221 amount=-1 +kerning first=195 second=264 amount=-1 +kerning first=283 second=289 amount=-1 +kerning first=325 second=367 amount=-1 +kerning first=193 second=115 amount=-1 +kerning first=352 second=86 amount=-1 +kerning first=266 second=66 amount=-1 +kerning first=85 second=97 amount=-1 +kerning first=321 second=356 amount=-1 +kerning first=121 second=97 amount=-1 +kerning first=84 second=45 amount=-1 +kerning first=120 second=45 amount=-1 +kerning first=298 second=97 amount=-1 +kerning first=354 second=261 amount=-1 +kerning first=378 second=112 amount=-1 +kerning first=115 second=121 amount=-1 +kerning first=362 second=257 amount=-1 +kerning first=8250 second=202 amount=-1 +kerning first=8217 second=196 amount=-2 +kerning first=321 second=255 amount=-1 +kerning first=82 second=119 amount=-1 +kerning first=108 second=255 amount=-1 +kerning first=206 second=226 amount=-1 +kerning first=291 second=44 amount=-1 +kerning first=195 second=81 amount=-1 +kerning first=255 second=44 amount=-1 +kerning first=356 second=227 amount=-1 +kerning first=259 second=119 amount=-1 +kerning first=187 second=119 amount=-1 +kerning first=367 second=119 amount=-1 +kerning first=370 second=97 amount=-1 +kerning first=275 second=314 amount=-1 +kerning first=376 second=109 amount=-1 +kerning first=376 second=111 amount=-1 +kerning first=295 second=119 amount=-1 +kerning first=331 second=119 amount=-1 +kerning first=98 second=314 amount=-1 +kerning first=303 second=233 amount=-1 +kerning first=256 second=363 amount=-1 +kerning first=1025 second=1038 amount=-1 +kerning first=1061 second=1057 amount=-1 +kerning first=335 second=46 amount=-1 +kerning first=205 second=251 amount=-1 +kerning first=114 second=44 amount=-1 +kerning first=354 second=338 amount=-1 +kerning first=347 second=121 amount=-1 +kerning first=82 second=79 amount=-1 +kerning first=219 second=44 amount=-1 +kerning first=352 second=192 amount=-1 +kerning first=8216 second=287 amount=-1 +kerning first=70 second=289 amount=-1 +kerning first=208 second=192 amount=-1 +kerning first=106 second=289 amount=-1 +kerning first=83 second=354 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=283 second=311 amount=-1 +kerning first=260 second=354 amount=-2 +kerning first=325 second=369 amount=-1 +kerning first=354 second=283 amount=-1 +kerning first=375 second=46 amount=-1 +kerning first=65 second=213 amount=-1 +kerning first=246 second=316 amount=-1 +kerning first=1050 second=1077 amount=-1 +kerning first=99 second=291 amount=-1 +kerning first=84 second=197 amount=-2 +kerning first=8217 second=198 amount=-2 +kerning first=217 second=83 amount=-1 +kerning first=354 second=259 amount=-1 +kerning first=259 second=8220 amount=-1 +kerning first=258 second=375 amount=-1 +kerning first=225 second=8217 amount=-1 +kerning first=117 second=375 amount=-1 +kerning first=196 second=87 amount=-2 +kerning first=206 second=225 amount=-1 +kerning first=263 second=103 amount=-1 +kerning first=221 second=336 amount=-1 +kerning first=8220 second=192 amount=-2 +kerning first=86 second=103 amount=-1 +kerning first=350 second=270 amount=-1 +kerning first=1061 second=1092 amount=-1 +kerning first=255 second=335 amount=-1 +kerning first=256 second=8217 amount=-1 +kerning first=288 second=374 amount=-1 +kerning first=328 second=8217 amount=-1 +kerning first=214 second=65 amount=-1 +kerning first=315 second=219 amount=-1 +kerning first=286 second=65 amount=-1 +kerning first=66 second=219 amount=-1 +kerning first=266 second=260 amount=-1 +kerning first=313 second=253 amount=-1 +kerning first=258 second=353 amount=-1 +kerning first=277 second=253 amount=-1 +kerning first=67 second=284 amount=-1 +kerning first=344 second=212 amount=-1 +kerning first=374 second=121 amount=-1 +kerning first=89 second=260 amount=-2 +kerning first=1047 second=1059 amount=-1 +kerning first=194 second=121 amount=-1 +kerning first=356 second=328 amount=-1 +kerning first=254 second=318 amount=-1 +kerning first=374 second=260 amount=-2 +kerning first=266 second=196 amount=-1 +kerning first=119 second=235 amount=-1 +kerning first=286 second=84 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=89 second=196 amount=-2 +kerning first=232 second=316 amount=-1 +kerning first=315 second=89 amount=-1 +kerning first=86 second=242 amount=-1 +kerning first=65 second=171 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=89 second=382 amount=-1 +kerning first=171 second=89 amount=-1 +kerning first=374 second=196 amount=-2 +kerning first=66 second=89 amount=-1 +kerning first=206 second=171 amount=-1 +kerning first=262 second=302 amount=-1 +kerning first=356 second=99 amount=-1 +kerning first=376 second=263 amount=-1 +kerning first=256 second=213 amount=-1 +kerning first=344 second=375 amount=-1 +kerning first=317 second=375 amount=-1 +kerning first=290 second=221 amount=-1 +kerning first=199 second=323 amount=-1 +kerning first=371 second=242 amount=-1 +kerning first=8250 second=374 amount=-1 +kerning first=84 second=351 amount=-1 +kerning first=120 second=351 amount=-1 +kerning first=45 second=82 amount=-1 +kerning first=87 second=347 amount=-1 +kerning first=119 second=224 amount=-1 +kerning first=192 second=347 amount=-1 +kerning first=321 second=103 amount=-1 +kerning first=98 second=120 amount=-1 +kerning first=102 second=8249 amount=-1 +kerning first=256 second=266 amount=-1 +kerning first=86 second=253 amount=-1 +kerning first=66 second=8249 amount=-1 +kerning first=227 second=253 amount=-1 +kerning first=313 second=220 amount=-1 +kerning first=199 second=334 amount=-1 +kerning first=72 second=103 amount=-1 +kerning first=263 second=253 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=197 second=214 amount=-1 +kerning first=335 second=253 amount=-1 +kerning first=296 second=224 amount=-1 +kerning first=321 second=354 amount=-1 +kerning first=368 second=224 amount=-1 +kerning first=344 second=232 amount=-1 +kerning first=352 second=313 amount=-1 +kerning first=118 second=231 amount=-1 +kerning first=350 second=171 amount=-1 +kerning first=346 second=202 amount=-1 +kerning first=66 second=362 amount=-1 +kerning first=221 second=382 amount=-1 +kerning first=90 second=365 amount=-1 +kerning first=315 second=362 amount=-1 +kerning first=67 second=313 amount=-1 +kerning first=219 second=227 amount=-1 +kerning first=82 second=284 amount=-1 +kerning first=195 second=365 amount=-1 +kerning first=323 second=117 amount=-1 +kerning first=368 second=257 amount=-1 +kerning first=97 second=255 amount=-1 +kerning first=67 second=216 amount=-1 +kerning first=296 second=257 amount=-1 +kerning first=376 second=338 amount=-1 +kerning first=193 second=287 amount=-1 +kerning first=196 second=338 amount=-1 +kerning first=268 second=338 amount=-1 +kerning first=87 second=118 amount=-1 +kerning first=76 second=8221 amount=-1 +kerning first=368 second=378 amount=-1 +kerning first=192 second=118 amount=-1 +kerning first=187 second=209 amount=-1 +kerning first=228 second=118 amount=-1 +kerning first=8217 second=339 amount=-1 +kerning first=245 second=108 amount=-1 +kerning first=354 second=74 amount=-1 +kerning first=195 second=290 amount=-1 +kerning first=371 second=275 amount=-1 +kerning first=377 second=382 amount=-1 +kerning first=350 second=193 amount=-1 +kerning first=121 second=269 amount=-1 +kerning first=364 second=380 amount=-1 +kerning first=249 second=253 amount=-1 +kerning first=121 second=227 amount=-1 +kerning first=85 second=227 amount=-1 +kerning first=197 second=84 amount=-2 +kerning first=1061 second=1090 amount=-1 +kerning first=1025 second=1090 amount=-1 +kerning first=121 second=273 amount=-1 +kerning first=352 second=291 amount=-1 +kerning first=344 second=210 amount=-1 +kerning first=316 second=291 amount=-1 +kerning first=280 second=291 amount=-1 +kerning first=195 second=332 amount=-1 +kerning first=211 second=198 amount=-1 +kerning first=221 second=81 amount=-1 +kerning first=1069 second=1051 amount=-1 +kerning first=262 second=280 amount=-1 +kerning first=8250 second=352 amount=-1 +kerning first=99 second=44 amount=-1 +kerning first=262 second=73 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=65 second=268 amount=-1 +kerning first=255 second=337 amount=-1 +kerning first=211 second=256 amount=-1 +kerning first=370 second=227 amount=-1 +kerning first=119 second=378 amount=-1 +kerning first=298 second=227 amount=-1 +kerning first=277 second=44 amount=-1 +kerning first=253 second=226 amount=-1 +kerning first=217 second=226 amount=-1 +kerning first=325 second=226 amount=-1 +kerning first=67 second=194 amount=-1 +kerning first=289 second=226 amount=-1 +kerning first=8217 second=350 amount=-1 +kerning first=352 second=84 amount=-1 +kerning first=208 second=194 amount=-1 +kerning first=374 second=240 amount=-1 +kerning first=344 second=254 amount=-1 +kerning first=356 second=119 amount=-1 +kerning first=339 second=103 amount=-1 +kerning first=196 second=219 amount=-1 +kerning first=291 second=108 amount=-1 +kerning first=363 second=108 amount=-1 +kerning first=8220 second=291 amount=-1 +kerning first=255 second=108 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=288 second=198 amount=-1 +kerning first=117 second=289 amount=-1 +kerning first=45 second=289 amount=-1 +kerning first=203 second=289 amount=-1 +kerning first=258 second=8220 amount=-1 +kerning first=330 second=289 amount=-1 +kerning first=119 second=279 amount=-1 +kerning first=258 second=289 amount=-1 +kerning first=117 second=8220 amount=-1 +kerning first=221 second=338 amount=-1 +kerning first=206 second=367 amount=-1 +kerning first=65 second=367 amount=-1 +kerning first=192 second=115 amount=-1 +kerning first=356 second=229 amount=-1 +kerning first=72 second=257 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=262 second=205 amount=-1 +kerning first=288 second=289 amount=-1 +kerning first=89 second=240 amount=-1 +kerning first=8222 second=85 amount=-1 +kerning first=65 second=83 amount=-1 +kerning first=221 second=261 amount=-1 +kerning first=73 second=45 amount=-1 +kerning first=1038 second=1060 amount=-1 +kerning first=310 second=255 amount=-1 +kerning first=352 second=194 amount=-1 +kerning first=45 second=278 amount=-1 +kerning first=286 second=45 amount=-1 +kerning first=214 second=197 amount=-1 +kerning first=353 second=112 amount=-1 +kerning first=83 second=356 amount=-1 +kerning first=74 second=225 amount=-1 +kerning first=354 second=380 amount=-1 +kerning first=256 second=81 amount=-1 +kerning first=1036 second=1092 amount=-1 +kerning first=287 second=225 amount=-1 +kerning first=231 second=121 amount=-1 +kerning first=194 second=218 amount=-1 +kerning first=267 second=105 amount=-1 +kerning first=84 second=244 amount=-1 +kerning first=221 second=109 amount=-1 +kerning first=354 second=336 amount=-1 +kerning first=323 second=225 amount=-1 +kerning first=111 second=253 amount=-1 +kerning first=104 second=8217 amount=-1 +kerning first=8216 second=267 amount=-1 +kerning first=75 second=253 amount=-1 +kerning first=253 second=248 amount=-1 +kerning first=317 second=8217 amount=-1 +kerning first=252 second=253 amount=-1 +kerning first=288 second=46 amount=-1 +kerning first=8217 second=245 amount=-1 +kerning first=216 second=46 amount=-1 +kerning first=193 second=364 amount=-1 +kerning first=221 second=283 amount=-1 +kerning first=268 second=382 amount=-1 +kerning first=376 second=382 amount=-1 +kerning first=66 second=71 amount=-1 +kerning first=376 second=241 amount=-1 +kerning first=66 second=318 amount=-1 +kerning first=102 second=318 amount=1 +kerning first=243 second=318 amount=-1 +kerning first=219 second=260 amount=-1 +kerning first=279 second=318 amount=-1 +kerning first=192 second=369 amount=-1 +kerning first=366 second=289 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=256 second=288 amount=-1 +kerning first=346 second=70 amount=-1 +kerning first=1038 second=1104 amount=-1 +kerning first=122 second=8249 amount=-1 +kerning first=1091 second=1076 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=82 second=99 amount=-1 +kerning first=73 second=230 amount=-1 +kerning first=86 second=352 amount=-1 +kerning first=83 second=323 amount=-1 +kerning first=283 second=375 amount=-1 +kerning first=370 second=346 amount=-1 +kerning first=255 second=271 amount=-1 +kerning first=106 second=375 amount=-1 +kerning first=262 second=346 amount=-1 +kerning first=8217 second=273 amount=-1 +kerning first=65 second=374 amount=-2 +kerning first=85 second=346 amount=-1 +kerning first=298 second=230 amount=-1 +kerning first=97 second=253 amount=-1 +kerning first=87 second=334 amount=-1 +kerning first=45 second=352 amount=-1 +kerning first=120 second=112 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=302 second=369 amount=-1 +kerning first=194 second=369 amount=-1 +kerning first=370 second=230 amount=-1 +kerning first=8250 second=72 amount=-1 +kerning first=362 second=346 amount=-1 +kerning first=310 second=253 amount=-1 +kerning first=379 second=363 amount=-1 +kerning first=375 second=122 amount=-1 +kerning first=121 second=230 amount=-1 +kerning first=218 second=346 amount=-1 +kerning first=333 second=375 amount=-1 +kerning first=369 second=375 amount=-1 +kerning first=264 second=334 amount=-1 +kerning first=8217 second=192 amount=-2 +kerning first=344 second=116 amount=-1 +kerning first=65 second=216 amount=-1 +kerning first=368 second=193 amount=-1 +kerning first=258 second=219 amount=-1 +kerning first=45 second=219 amount=-1 +kerning first=200 second=287 amount=-1 +kerning first=327 second=287 amount=-1 +kerning first=236 second=287 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=317 second=121 amount=-1 +kerning first=281 second=121 amount=-1 +kerning first=245 second=121 amount=-1 +kerning first=103 second=171 amount=-1 +kerning first=67 second=171 amount=-1 +kerning first=344 second=277 amount=-1 +kerning first=356 second=231 amount=-1 +kerning first=344 second=287 amount=-1 +kerning first=352 second=171 amount=-1 +kerning first=354 second=196 amount=-2 +kerning first=316 second=171 amount=-1 +kerning first=120 second=375 amount=-1 +kerning first=255 second=99 amount=-1 +kerning first=86 second=351 amount=-1 +kerning first=90 second=122 amount=-1 +kerning first=196 second=8217 amount=-1 +kerning first=366 second=224 amount=-1 +kerning first=195 second=352 amount=-1 +kerning first=82 second=212 amount=-1 +kerning first=217 second=74 amount=-1 +kerning first=376 second=115 amount=-1 +kerning first=366 second=229 amount=-1 +kerning first=330 second=229 amount=-1 +kerning first=346 second=197 amount=-1 +kerning first=119 second=382 amount=-1 +kerning first=1047 second=1063 amount=-1 +kerning first=199 second=310 amount=-1 +kerning first=352 second=220 amount=-1 +kerning first=356 second=379 amount=-1 +kerning first=264 second=344 amount=-1 +kerning first=368 second=382 amount=-1 +kerning first=82 second=350 amount=-1 +kerning first=314 second=103 amount=-1 +kerning first=303 second=234 amount=-1 +kerning first=350 second=103 amount=-1 +kerning first=187 second=350 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=8217 second=271 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=75 second=71 amount=-1 +kerning first=45 second=68 amount=-1 +kerning first=88 second=199 amount=-1 +kerning first=196 second=290 amount=-1 +kerning first=120 second=365 amount=-1 +kerning first=206 second=103 amount=-1 +kerning first=193 second=199 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=113 second=106 amount=1 +kerning first=268 second=76 amount=-1 +kerning first=381 second=117 amount=-1 +kerning first=287 second=318 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=107 second=231 amount=-1 +kerning first=350 second=313 amount=-1 +kerning first=199 second=284 amount=-1 +kerning first=199 second=68 amount=-1 +kerning first=226 second=118 amount=-1 +kerning first=120 second=257 amount=-1 +kerning first=330 second=117 amount=-1 +kerning first=258 second=117 amount=-1 +kerning first=256 second=332 amount=-1 +kerning first=302 second=251 amount=-1 +kerning first=346 second=102 amount=-1 +kerning first=375 second=283 amount=-1 +kerning first=323 second=257 amount=-1 +kerning first=354 second=81 amount=-1 +kerning first=264 second=216 amount=-1 +kerning first=67 second=378 amount=-1 +kerning first=8218 second=89 amount=-2 +kerning first=369 second=316 amount=-1 +kerning first=45 second=291 amount=-1 +kerning first=333 second=316 amount=-1 +kerning first=303 second=283 amount=-1 +kerning first=327 second=250 amount=-1 +kerning first=65 second=264 amount=-1 +kerning first=86 second=233 amount=-1 +kerning first=1059 second=1076 amount=-1 +kerning first=346 second=72 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=45 second=194 amount=-1 +kerning first=195 second=362 amount=-1 +kerning first=376 second=266 amount=-1 +kerning first=289 second=314 amount=-1 +kerning first=253 second=314 amount=-1 +kerning first=8220 second=289 amount=-1 +kerning first=363 second=8220 amount=-1 +kerning first=268 second=266 amount=-1 +kerning first=112 second=314 amount=-1 +kerning first=45 second=298 amount=-1 +kerning first=196 second=217 amount=-1 +kerning first=8216 second=337 amount=-1 +kerning first=263 second=227 amount=-1 +kerning first=78 second=250 amount=-1 +kerning first=192 second=216 amount=-1 +kerning first=87 second=216 amount=-1 +kerning first=266 second=192 amount=-1 +kerning first=251 second=8220 amount=-1 +kerning first=291 second=378 amount=-1 +kerning first=283 second=107 amount=-1 +kerning first=255 second=378 amount=-1 +kerning first=78 second=224 amount=-1 +kerning first=89 second=192 amount=-2 +kerning first=374 second=350 amount=-1 +kerning first=110 second=8220 amount=-1 +kerning first=70 second=256 amount=-1 +kerning first=374 second=187 amount=-1 +kerning first=1046 second=1077 amount=-1 +kerning first=99 second=225 amount=-1 +kerning first=286 second=256 amount=-1 +kerning first=207 second=227 amount=-1 +kerning first=350 second=354 amount=-1 +kerning first=66 second=227 amount=-1 +kerning first=313 second=90 amount=-1 +kerning first=344 second=67 amount=-1 +kerning first=367 second=291 amount=-1 +kerning first=214 second=256 amount=-1 +kerning first=66 second=336 amount=-1 +kerning first=187 second=291 amount=-1 +kerning first=118 second=291 amount=-1 +kerning first=195 second=83 amount=-1 +kerning first=82 second=291 amount=-1 +kerning first=80 second=197 amount=-1 +kerning first=197 second=210 amount=-1 +kerning first=221 second=187 amount=-1 +kerning first=377 second=8249 amount=-1 +kerning first=221 second=197 amount=-2 +kerning first=1036 second=1060 amount=-1 +kerning first=221 second=100 amount=-1 +kerning first=8250 second=253 amount=-1 +kerning first=256 second=112 amount=-1 +kerning first=260 second=284 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=75 second=262 amount=-1 +kerning first=197 second=8249 amount=-1 +kerning first=118 second=261 amount=-1 +kerning first=218 second=378 amount=-1 +kerning first=73 second=365 amount=-1 +kerning first=305 second=8249 amount=-1 +kerning first=83 second=303 amount=-1 +kerning first=99 second=318 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=121 second=279 amount=-1 +kerning first=244 second=108 amount=-1 +kerning first=240 second=318 amount=-1 +kerning first=272 second=198 amount=-1 +kerning first=87 second=65 amount=-2 +kerning first=268 second=206 amount=-1 +kerning first=8218 second=122 amount=-1 +kerning first=8216 second=97 amount=-1 +kerning first=352 second=89 amount=-1 +kerning first=208 second=260 amount=-1 +kerning first=204 second=367 amount=-1 +kerning first=66 second=66 amount=-1 +kerning first=310 second=336 amount=-1 +kerning first=336 second=65 amount=-1 +kerning first=8250 second=218 amount=-1 +kerning first=67 second=260 amount=-1 +kerning first=1027 second=1104 amount=-1 +kerning first=89 second=339 amount=-1 +kerning first=269 second=229 amount=-1 +kerning first=352 second=260 amount=-1 +kerning first=351 second=115 amount=-1 +kerning first=8250 second=381 amount=-1 +kerning first=253 second=353 amount=-1 +kerning first=289 second=353 amount=-1 +kerning first=209 second=369 amount=-1 +kerning first=354 second=275 amount=-1 +kerning first=83 second=205 amount=-1 +kerning first=65 second=221 amount=-2 +kerning first=344 second=356 amount=-1 +kerning first=66 second=115 amount=-1 +kerning first=220 second=352 amount=-1 +kerning first=220 second=194 amount=-1 +kerning first=256 second=352 amount=-1 +kerning first=374 second=290 amount=-1 +kerning first=266 second=80 amount=-1 +kerning first=44 second=45 amount=-1 +kerning first=315 second=8217 amount=-1 +kerning first=80 second=45 amount=-1 +kerning first=364 second=194 amount=-1 +kerning first=121 second=267 amount=-1 +kerning first=234 second=375 amount=-1 +kerning first=354 second=287 amount=-1 +kerning first=86 second=223 amount=-1 +kerning first=256 second=366 amount=-1 +kerning first=369 second=119 amount=-1 +kerning first=263 second=118 amount=-1 +kerning first=374 second=339 amount=-1 +kerning first=364 second=352 amount=-1 +kerning first=221 second=45 amount=-1 +kerning first=79 second=194 amount=-1 +kerning first=217 second=225 amount=-1 +kerning first=354 second=226 amount=-1 +kerning first=374 second=211 amount=-1 +kerning first=371 second=111 amount=-1 +kerning first=86 second=81 amount=-1 +kerning first=8218 second=362 amount=-1 +kerning first=289 second=225 amount=-1 +kerning first=325 second=225 amount=-1 +kerning first=89 second=290 amount=-1 +kerning first=89 second=211 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=76 second=255 amount=-1 +kerning first=194 second=290 amount=-1 +kerning first=112 second=255 amount=-1 +kerning first=204 second=97 amount=-1 +kerning first=266 second=290 amount=-1 +kerning first=266 second=211 amount=-1 +kerning first=356 second=110 amount=-1 +kerning first=87 second=212 amount=-1 +kerning first=194 second=211 amount=-1 +kerning first=332 second=44 amount=-1 +kerning first=8222 second=84 amount=-2 +kerning first=375 second=273 amount=-1 +kerning first=195 second=89 amount=-2 +kerning first=197 second=338 amount=-1 +kerning first=354 second=324 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=86 second=193 amount=-2 +kerning first=87 second=324 amount=-1 +kerning first=66 second=257 amount=-1 +kerning first=102 second=8220 amount=1 +kerning first=269 second=289 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=82 second=370 amount=-1 +kerning first=377 second=289 amount=-1 +kerning first=89 second=241 amount=-1 +kerning first=223 second=255 amount=-1 +kerning first=84 second=287 amount=-1 +kerning first=369 second=287 amount=-1 +kerning first=1050 second=1108 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=315 second=218 amount=-1 +kerning first=376 second=232 amount=-1 +kerning first=1059 second=1092 amount=-1 +kerning first=206 second=365 amount=-1 +kerning first=193 second=346 amount=-1 +kerning first=44 second=8217 amount=-1 +kerning first=8217 second=232 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=286 second=86 amount=-1 +kerning first=118 second=380 amount=-1 +kerning first=275 second=46 amount=-1 +kerning first=87 second=225 amount=-1 +kerning first=257 second=8217 amount=-1 +kerning first=365 second=8217 amount=-1 +kerning first=66 second=266 amount=-1 +kerning first=104 second=8220 amount=-1 +kerning first=197 second=347 amount=-1 +kerning first=8220 second=260 amount=-2 +kerning first=187 second=70 amount=-1 +kerning first=67 second=201 amount=-1 +kerning first=364 second=122 amount=-1 +kerning first=290 second=87 amount=-1 +kerning first=356 second=226 amount=-1 +kerning first=220 second=122 amount=-1 +kerning first=78 second=289 amount=-1 +kerning first=366 second=259 amount=-1 +kerning first=330 second=259 amount=-1 +kerning first=250 second=375 amount=-1 +kerning first=255 second=289 amount=-1 +kerning first=187 second=75 amount=-1 +kerning first=66 second=218 amount=-1 +kerning first=268 second=75 amount=-1 +kerning first=317 second=370 amount=-1 +kerning first=219 second=289 amount=-1 +kerning first=8217 second=242 amount=-1 +kerning first=327 second=289 amount=-1 +kerning first=363 second=289 amount=-1 +kerning first=205 second=369 amount=-1 +kerning first=327 second=251 amount=-1 +kerning first=78 second=251 amount=-1 +kerning first=337 second=255 amount=-1 +kerning first=221 second=286 amount=-1 +kerning first=344 second=316 amount=-1 +kerning first=1027 second=1072 amount=-1 +kerning first=119 second=245 amount=-1 +kerning first=78 second=171 amount=-1 +kerning first=256 second=121 amount=-1 +kerning first=255 second=171 amount=-1 +kerning first=219 second=171 amount=-1 +kerning first=327 second=171 amount=-1 +kerning first=45 second=80 amount=-1 +kerning first=291 second=171 amount=-1 +kerning first=84 second=277 amount=-1 +kerning first=86 second=381 amount=-1 +kerning first=8220 second=229 amount=-1 +kerning first=352 second=323 amount=-1 +kerning first=8250 second=330 amount=-1 +kerning first=199 second=196 amount=-1 +kerning first=66 second=217 amount=-1 +kerning first=356 second=100 amount=-1 +kerning first=120 second=228 amount=-1 +kerning first=101 second=314 amount=-1 +kerning first=310 second=214 amount=-1 +kerning first=226 second=119 amount=-1 +kerning first=1059 second=1093 amount=-1 +kerning first=82 second=221 amount=-1 +kerning first=84 second=228 amount=-1 +kerning first=315 second=217 amount=-1 +kerning first=187 second=221 amount=-1 +kerning first=8220 second=259 amount=-1 +kerning first=187 second=379 amount=-1 +kerning first=8222 second=354 amount=-2 +kerning first=242 second=314 amount=-1 +kerning first=106 second=8249 amount=-1 +kerning first=108 second=253 amount=-1 +kerning first=86 second=263 amount=-1 +kerning first=379 second=382 amount=-1 +kerning first=266 second=330 amount=-1 +kerning first=321 second=253 amount=-1 +kerning first=260 second=363 amount=-1 +kerning first=371 second=263 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=87 second=246 amount=-1 +kerning first=325 second=103 amount=-1 +kerning first=70 second=8249 amount=-1 +kerning first=217 second=103 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=253 second=103 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=374 second=281 amount=-1 +kerning first=251 second=118 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=354 second=284 amount=-1 +kerning first=8250 second=193 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=199 second=382 amount=-1 +kerning first=354 second=235 amount=-1 +kerning first=220 second=83 amount=-1 +kerning first=335 second=120 amount=-1 +kerning first=258 second=8249 amount=-1 +kerning first=304 second=261 amount=-1 +kerning first=376 second=336 amount=-1 +kerning first=253 second=234 amount=-1 +kerning first=256 second=83 amount=-1 +kerning first=330 second=8249 amount=-1 +kerning first=314 second=255 amount=-1 +kerning first=364 second=83 amount=-1 +kerning first=8217 second=281 amount=-1 +kerning first=66 second=315 amount=-1 +kerning first=235 second=44 amount=-1 +kerning first=101 second=255 amount=-1 +kerning first=374 second=232 amount=-1 +kerning first=86 second=262 amount=-1 +kerning first=287 second=97 amount=-1 +kerning first=376 second=227 amount=-1 +kerning first=65 second=255 amount=-1 +kerning first=304 second=227 amount=-1 +kerning first=354 second=197 amount=-2 +kerning first=323 second=97 amount=-1 +kerning first=344 second=366 amount=-1 +kerning first=356 second=79 amount=-1 +kerning first=99 second=118 amount=-1 +kerning first=346 second=193 amount=-1 +kerning first=337 second=318 amount=-1 +kerning first=218 second=257 amount=-1 +kerning first=217 second=65 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=67 second=338 amount=-1 +kerning first=119 second=244 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=374 second=378 amount=-1 +kerning first=219 second=192 amount=-1 +kerning first=376 second=350 amount=-1 +kerning first=346 second=302 amount=-1 +kerning first=266 second=378 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=8216 second=74 amount=-1 +kerning first=70 second=198 amount=-1 +kerning first=264 second=274 amount=-1 +kerning first=284 second=221 amount=-1 +kerning first=377 second=250 amount=-1 +kerning first=266 second=298 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=266 second=280 amount=-1 +kerning first=356 second=291 amount=-1 +kerning first=374 second=90 amount=-1 +kerning first=284 second=291 amount=-1 +kerning first=199 second=213 amount=-1 +kerning first=71 second=221 amount=-1 +kerning first=256 second=361 amount=-1 +kerning first=119 second=267 amount=-1 +kerning first=84 second=256 amount=-2 +kerning first=8217 second=194 amount=-2 +kerning first=84 second=326 amount=-1 +kerning first=89 second=378 amount=-1 +kerning first=258 second=210 amount=-1 +kerning first=374 second=242 amount=-1 +kerning first=375 second=233 amount=-1 +kerning first=335 second=316 amount=-1 +kerning first=311 second=335 amount=-1 +kerning first=207 second=257 amount=-1 +kerning first=171 second=87 amount=-1 +kerning first=354 second=45 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=286 second=374 amount=-1 +kerning first=344 second=268 amount=-1 +kerning first=195 second=112 amount=-1 +kerning first=121 second=240 amount=-1 +kerning first=286 second=103 amount=-1 +kerning first=344 second=219 amount=-1 +kerning first=67 second=289 amount=-1 +kerning first=280 second=289 amount=-1 +kerning first=316 second=289 amount=-1 +kerning first=1054 second=1040 amount=-1 +kerning first=352 second=289 amount=-1 +kerning first=193 second=367 amount=-1 +kerning first=269 second=108 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=233 second=108 amount=-1 +kerning first=83 second=8249 amount=-1 +kerning first=103 second=229 amount=-1 +kerning first=77 second=257 amount=-1 +kerning first=375 second=243 amount=-1 +kerning first=250 second=287 amount=-1 +kerning first=65 second=353 amount=-1 +kerning first=303 second=243 amount=-1 +kerning first=221 second=324 amount=-1 +kerning first=73 second=287 amount=-1 +kerning first=221 second=275 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=350 second=304 amount=-1 +kerning first=236 second=375 amount=-1 +kerning first=221 second=226 amount=-1 +kerning first=255 second=339 amount=-1 +kerning first=196 second=336 amount=-1 +kerning first=268 second=336 amount=-1 +kerning first=105 second=45 amount=-1 +kerning first=314 second=253 amount=-1 +kerning first=260 second=45 amount=-1 +kerning first=66 second=97 amount=-1 +kerning first=207 second=97 amount=-1 +kerning first=286 second=356 amount=-1 +kerning first=354 second=242 amount=-1 +kerning first=352 second=80 amount=-1 +kerning first=347 second=353 amount=-1 +kerning first=119 second=45 amount=-1 +kerning first=119 second=275 amount=-1 +kerning first=89 second=289 amount=-1 +kerning first=230 second=289 amount=-1 +kerning first=368 second=45 amount=-1 +kerning first=266 second=289 amount=-1 +kerning first=376 second=324 amount=-1 +kerning first=374 second=289 amount=-1 +kerning first=302 second=289 amount=-1 +kerning first=275 second=316 amount=-1 +kerning first=250 second=255 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=8250 second=120 amount=-1 +kerning first=256 second=370 amount=-1 +kerning first=197 second=211 amount=-1 +kerning first=352 second=82 amount=-1 +kerning first=67 second=80 amount=-1 +kerning first=1036 second=1105 amount=-1 +kerning first=266 second=193 amount=-1 +kerning first=75 second=290 amount=-1 +kerning first=8216 second=230 amount=-1 +kerning first=225 second=255 amount=-1 +kerning first=1027 second=1095 amount=-1 +kerning first=87 second=228 amount=-1 +kerning first=374 second=193 amount=-2 +kerning first=253 second=273 amount=-1 +kerning first=89 second=193 amount=-2 +kerning first=66 second=226 amount=-1 +kerning first=207 second=226 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=8217 second=291 amount=-1 +kerning first=86 second=192 amount=-2 +kerning first=269 second=307 amount=-1 +kerning first=266 second=268 amount=-1 +kerning first=221 second=257 amount=-1 +kerning first=251 second=119 amount=-1 +kerning first=375 second=314 amount=-1 +kerning first=339 second=314 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=267 second=314 amount=-1 +kerning first=262 second=284 amount=-1 +kerning first=262 second=209 amount=-1 +kerning first=231 second=314 amount=-1 +kerning first=336 second=46 amount=-1 +kerning first=376 second=346 amount=-1 +kerning first=260 second=253 amount=-1 +kerning first=268 second=346 amount=-1 +kerning first=204 second=230 amount=-1 +kerning first=196 second=346 amount=-1 +kerning first=99 second=230 amount=-1 +kerning first=107 second=101 amount=-1 +kerning first=262 second=70 amount=-1 +kerning first=187 second=270 amount=-1 +kerning first=275 second=375 amount=-1 +kerning first=220 second=380 amount=-1 +kerning first=98 second=375 amount=-1 +kerning first=266 second=81 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=264 second=296 amount=-1 +kerning first=332 second=196 amount=-1 +kerning first=89 second=81 amount=-1 +kerning first=66 second=354 amount=-1 +kerning first=194 second=81 amount=-1 +kerning first=221 second=235 amount=-1 +kerning first=368 second=196 amount=-1 +kerning first=171 second=354 amount=-1 +kerning first=66 second=75 amount=-1 +kerning first=315 second=354 amount=-1 +kerning first=262 second=288 amount=-1 +kerning first=374 second=81 amount=-1 +kerning first=283 second=316 amount=-1 +kerning first=89 second=171 amount=-1 +kerning first=194 second=171 amount=-1 +kerning first=266 second=171 amount=-1 +kerning first=76 second=374 amount=-1 +kerning first=1060 second=1051 amount=-1 +kerning first=73 second=363 amount=-1 +kerning first=339 second=121 amount=-1 +kerning first=371 second=271 amount=-1 +kerning first=374 second=171 amount=-1 +kerning first=267 second=121 amount=-1 +kerning first=256 second=252 amount=-1 +kerning first=108 second=289 amount=-1 +kerning first=199 second=197 amount=-1 +kerning first=121 second=231 amount=-1 +kerning first=217 second=352 amount=-1 +kerning first=83 second=196 amount=-1 +kerning first=90 second=121 amount=-1 +kerning first=362 second=261 amount=-1 +kerning first=354 second=115 amount=-1 +kerning first=289 second=122 amount=-1 +kerning first=262 second=310 amount=-1 +kerning first=86 second=214 amount=-1 +kerning first=76 second=122 amount=-1 +kerning first=82 second=213 amount=-1 +kerning first=224 second=253 amount=-1 +kerning first=230 second=311 amount=-1 +kerning first=195 second=252 amount=-1 +kerning first=350 second=65 amount=-1 +kerning first=241 second=171 amount=-1 +kerning first=192 second=362 amount=-1 +kerning first=222 second=260 amount=-1 +kerning first=221 second=333 amount=-1 +kerning first=90 second=252 amount=-1 +kerning first=88 second=249 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=45 second=220 amount=-1 +kerning first=45 second=260 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=45 second=86 amount=-1 +kerning first=199 second=266 amount=-1 +kerning first=366 second=260 amount=-1 +kerning first=197 second=362 amount=-1 +kerning first=120 second=347 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=75 second=214 amount=-1 +kerning first=46 second=8221 amount=-1 +kerning first=264 second=103 amount=-1 +kerning first=82 second=8221 amount=-1 +kerning first=295 second=8221 amount=-1 +kerning first=192 second=103 amount=-1 +kerning first=331 second=8221 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=260 second=351 amount=-1 +kerning first=361 second=8221 amount=-1 +kerning first=259 second=8221 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=259 second=118 amount=-1 +kerning first=255 second=242 amount=-1 +kerning first=89 second=8250 amount=-1 +kerning first=258 second=220 amount=-1 +kerning first=298 second=369 amount=-1 +kerning first=1038 second=1086 amount=-1 +kerning first=256 second=79 amount=-1 +kerning first=258 second=67 amount=-1 +kerning first=90 second=380 amount=-1 +kerning first=8220 second=339 amount=-1 +kerning first=8250 second=382 amount=-1 +kerning first=1046 second=1089 amount=-1 +kerning first=233 second=107 amount=-1 +kerning first=255 second=232 amount=-1 +kerning first=1038 second=1054 amount=-1 +kerning first=367 second=8221 amount=-1 +kerning first=1046 second=1058 amount=-1 +kerning first=8217 second=193 amount=-2 +kerning first=375 second=380 amount=-1 +kerning first=284 second=89 amount=-1 +kerning first=192 second=264 amount=-1 +kerning first=376 second=267 amount=-1 +kerning first=87 second=264 amount=-1 +kerning first=286 second=198 amount=-1 +kerning first=1043 second=1040 amount=-1 +kerning first=67 second=298 amount=-1 +kerning first=352 second=317 amount=-1 +kerning first=352 second=298 amount=-1 +kerning first=376 second=248 amount=-1 +kerning first=193 second=118 amount=-1 +kerning first=87 second=234 amount=-1 +kerning first=229 second=118 amount=-1 +kerning first=350 second=305 amount=-1 +kerning first=196 second=354 amount=-2 +kerning first=346 second=120 amount=-1 +kerning first=88 second=118 amount=-1 +kerning first=1040 second=1098 amount=-1 +kerning first=264 second=71 amount=-1 +kerning first=356 second=331 amount=-1 +kerning first=45 second=198 amount=-1 +kerning first=216 second=192 amount=-1 +kerning first=81 second=198 amount=-1 +kerning first=288 second=192 amount=-1 +kerning first=107 second=279 amount=-1 +kerning first=222 second=198 amount=-1 +kerning first=330 second=250 amount=-1 +kerning first=346 second=303 amount=-1 +kerning first=84 second=216 amount=-1 +kerning first=350 second=370 amount=-1 +kerning first=347 second=287 amount=-1 +kerning first=87 second=256 amount=-2 +kerning first=346 second=44 amount=-1 +kerning first=275 second=287 amount=-1 +kerning first=196 second=84 amount=-2 +kerning first=304 second=226 amount=-1 +kerning first=203 second=287 amount=-1 +kerning first=376 second=226 amount=-1 +kerning first=193 second=368 amount=-1 +kerning first=353 second=291 amount=-1 +kerning first=317 second=291 amount=-1 +kerning first=45 second=368 amount=-1 +kerning first=281 second=291 amount=-1 +kerning first=209 second=291 amount=-1 +kerning first=65 second=266 amount=-1 +kerning first=192 second=365 amount=-1 +kerning first=220 second=74 amount=-1 +kerning first=258 second=89 amount=-2 +kerning first=199 second=45 amount=-1 +kerning first=364 second=74 amount=-1 +kerning first=262 second=350 amount=-1 +kerning first=1047 second=1078 amount=-1 +kerning first=310 second=284 amount=-1 +kerning first=307 second=45 amount=-1 +kerning first=344 second=269 amount=-1 +kerning first=336 second=256 amount=-1 +kerning first=209 second=261 amount=-1 +kerning first=84 second=268 amount=-1 +kerning first=350 second=112 amount=-1 +kerning first=264 second=256 amount=-1 +kerning first=366 second=198 amount=-1 +kerning first=78 second=8249 amount=-1 +kerning first=264 second=286 amount=-1 +kerning first=356 second=279 amount=-1 +kerning first=346 second=205 amount=-1 +kerning first=255 second=8249 amount=-1 +kerning first=219 second=8249 amount=-1 +kerning first=269 second=257 amount=-1 +kerning first=8220 second=99 amount=-1 +kerning first=327 second=8249 amount=-1 +kerning first=291 second=8249 amount=-1 +kerning first=197 second=289 amount=-1 +kerning first=45 second=89 amount=-1 +kerning first=370 second=350 amount=-1 +kerning first=366 second=228 amount=-1 +kerning first=330 second=228 amount=-1 +kerning first=87 second=286 amount=-1 +kerning first=77 second=367 amount=-1 +kerning first=117 second=108 amount=-1 +kerning first=192 second=286 amount=-1 +kerning first=65 second=251 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=356 second=212 amount=-1 +kerning first=377 second=251 amount=-1 +kerning first=192 second=374 amount=-2 +kerning first=82 second=332 amount=-1 +kerning first=220 second=261 amount=-1 +kerning first=353 second=121 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=269 second=227 amount=-1 +kerning first=364 second=261 amount=-1 +kerning first=77 second=226 amount=-1 +kerning first=321 second=381 amount=-1 +kerning first=295 second=8220 amount=-1 +kerning first=344 second=108 amount=-1 +kerning first=205 second=103 amount=-1 +kerning first=218 second=226 amount=-1 +kerning first=66 second=367 amount=-1 +kerning first=362 second=226 amount=-1 +kerning first=262 second=192 amount=-1 +kerning first=207 second=367 amount=-1 +kerning first=46 second=8220 amount=-1 +kerning first=99 second=119 amount=-1 +kerning first=82 second=8220 amount=-1 +kerning first=221 second=115 amount=-1 +kerning first=84 second=335 amount=-1 +kerning first=374 second=233 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=277 second=311 amount=-1 +kerning first=282 second=289 amount=-1 +kerning first=72 second=224 amount=-1 +kerning first=108 second=45 amount=-1 +kerning first=218 second=97 amount=-1 +kerning first=87 second=353 amount=-1 +kerning first=8222 second=364 amount=-1 +kerning first=362 second=97 amount=-1 +kerning first=45 second=77 amount=-1 +kerning first=347 second=255 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=275 second=255 amount=-1 +kerning first=68 second=194 amount=-1 +kerning first=264 second=112 amount=-1 +kerning first=98 second=255 amount=-1 +kerning first=221 second=244 amount=-1 +kerning first=192 second=112 amount=-1 +kerning first=89 second=223 amount=-1 +kerning first=66 second=324 amount=-1 +kerning first=253 second=243 amount=-1 +kerning first=8222 second=219 amount=-1 +kerning first=66 second=377 amount=-1 +kerning first=346 second=198 amount=-1 +kerning first=192 second=352 amount=-1 +kerning first=226 second=8220 amount=-1 +kerning first=266 second=202 amount=-1 +kerning first=253 second=46 amount=-1 +kerning first=264 second=352 amount=-1 +kerning first=289 second=46 amount=-1 +kerning first=65 second=362 amount=-1 +kerning first=45 second=76 amount=-1 +kerning first=87 second=352 amount=-1 +kerning first=370 second=382 amount=-1 +kerning first=83 second=197 amount=-1 +kerning first=332 second=197 amount=-1 +kerning first=350 second=362 amount=-1 +kerning first=1046 second=1059 amount=-1 +kerning first=88 second=336 amount=-1 +kerning first=221 second=266 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=368 second=197 amount=-1 +kerning first=193 second=336 amount=-1 +kerning first=73 second=225 amount=-1 +kerning first=317 second=380 amount=-1 +kerning first=84 second=334 amount=-1 +kerning first=1027 second=1076 amount=-1 +kerning first=235 second=253 amount=-1 +kerning first=262 second=200 amount=-1 +kerning first=307 second=253 amount=-1 +kerning first=108 second=8220 amount=-1 +kerning first=217 second=46 amount=-1 +kerning first=379 second=253 amount=-1 +kerning first=344 second=86 amount=-1 +kerning first=269 second=225 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=70 second=260 amount=-1 +kerning first=356 second=213 amount=-1 +kerning first=74 second=230 amount=-1 +kerning first=323 second=230 amount=-1 +kerning first=87 second=103 amount=-1 +kerning first=228 second=375 amount=-1 +kerning first=266 second=201 amount=-1 +kerning first=287 second=230 amount=-1 +kerning first=195 second=370 amount=-1 +kerning first=266 second=76 amount=-1 +kerning first=277 second=289 amount=-1 +kerning first=121 second=318 amount=-1 +kerning first=87 second=375 amount=-1 +kerning first=205 second=289 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=338 second=289 amount=-1 +kerning first=211 second=260 amount=-1 +kerning first=313 second=289 amount=-1 +kerning first=311 second=277 amount=-1 +kerning first=45 second=317 amount=-1 +kerning first=213 second=196 amount=-1 +kerning first=193 second=218 amount=-1 +kerning first=197 second=219 amount=-1 +kerning first=1075 second=1113 amount=-1 +kerning first=120 second=117 amount=-1 +kerning first=352 second=68 amount=-1 +kerning first=8217 second=289 amount=-1 +kerning first=120 second=259 amount=-1 +kerning first=84 second=259 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=193 second=217 amount=-1 +kerning first=314 second=121 amount=-1 +kerning first=242 second=121 amount=-1 +kerning first=118 second=263 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=87 second=277 amount=-1 +kerning first=65 second=121 amount=-1 +kerning first=310 second=369 amount=-1 +kerning first=317 second=379 amount=-1 +kerning first=356 second=288 amount=-1 +kerning first=197 second=89 amount=-2 +kerning first=119 second=263 amount=-1 +kerning first=346 second=196 amount=-1 +kerning first=205 second=224 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=86 second=281 amount=-1 +kerning first=324 second=171 amount=-1 +kerning first=66 second=106 amount=-1 +kerning first=197 second=220 amount=-1 +kerning first=371 second=281 amount=-1 +kerning first=354 second=266 amount=-1 +kerning first=376 second=333 amount=-1 +kerning first=352 second=302 amount=-1 +kerning first=8216 second=240 amount=-1 +kerning first=194 second=71 amount=-1 +kerning first=264 second=287 amount=-1 +kerning first=346 second=206 amount=-1 +kerning first=1091 second=1103 amount=-1 +kerning first=347 second=103 amount=-1 +kerning first=89 second=71 amount=-1 +kerning first=192 second=287 amount=-1 +kerning first=367 second=8220 amount=-1 +kerning first=87 second=287 amount=-1 +kerning first=203 second=103 amount=-1 +kerning first=117 second=316 amount=-1 +kerning first=376 second=235 amount=-1 +kerning first=67 second=330 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=75 second=171 amount=-1 +kerning first=1027 second=1086 amount=-1 +kerning first=374 second=71 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=266 second=71 amount=-1 +kerning first=1058 second=1078 amount=-1 +kerning first=326 second=118 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=304 second=224 amount=-1 +kerning first=197 second=67 amount=-1 +kerning first=1043 second=1093 amount=-1 +kerning first=352 second=8249 amount=-1 +kerning first=228 second=255 amount=-1 +kerning first=316 second=8249 amount=-1 +kerning first=192 second=255 amount=-1 +kerning first=84 second=269 amount=-1 +kerning first=362 second=227 amount=-1 +kerning first=87 second=255 amount=-1 +kerning first=213 second=44 amount=-1 +kerning first=258 second=338 amount=-1 +kerning first=304 second=257 amount=-1 +kerning first=103 second=8249 amount=-1 +kerning first=67 second=8249 amount=-1 +kerning first=376 second=257 amount=-1 +kerning first=77 second=229 amount=-1 +kerning first=8220 second=242 amount=-1 +kerning first=344 second=85 amount=-1 +kerning first=113 second=118 amount=-1 +kerning first=354 second=244 amount=-1 +kerning first=311 second=234 amount=-1 +kerning first=258 second=251 amount=-1 +kerning first=303 second=273 amount=-1 +kerning first=263 second=303 amount=-1 +kerning first=346 second=118 amount=-1 +kerning first=350 second=274 amount=-1 +kerning first=262 second=199 amount=-1 +kerning first=283 second=108 amount=-1 +kerning first=118 second=279 amount=-1 +kerning first=216 second=193 amount=-1 +kerning first=262 second=79 amount=-1 +kerning first=356 second=332 amount=-1 +kerning first=197 second=8220 amount=-1 +kerning first=221 second=245 amount=-1 +kerning first=65 second=361 amount=-1 +kerning first=330 second=251 amount=-1 +kerning first=344 second=107 amount=-1 +kerning first=288 second=193 amount=-1 +kerning first=82 second=279 amount=-1 +kerning first=206 second=361 amount=-1 +kerning first=375 second=8249 amount=-1 +kerning first=8217 second=224 amount=-1 +kerning first=218 second=227 amount=-1 +kerning first=77 second=227 amount=-1 +kerning first=315 second=84 amount=-1 +kerning first=344 second=216 amount=-1 +kerning first=193 second=119 amount=-1 +kerning first=229 second=119 amount=-1 +kerning first=88 second=119 amount=-1 +kerning first=255 second=233 amount=-1 +kerning first=87 second=113 amount=-1 +kerning first=234 second=291 amount=-1 +kerning first=66 second=84 amount=-1 +kerning first=198 second=291 amount=-1 +kerning first=119 second=227 amount=-1 +kerning first=307 second=8249 amount=-1 +kerning first=281 second=314 amount=-1 +kerning first=245 second=314 amount=-1 +kerning first=217 second=198 amount=-1 +kerning first=192 second=366 amount=-1 +kerning first=350 second=291 amount=-1 +kerning first=314 second=291 amount=-1 +kerning first=278 second=291 amount=-1 +kerning first=8250 second=206 amount=-1 +kerning first=206 second=291 amount=-1 +kerning first=101 second=291 amount=-1 +kerning first=65 second=291 amount=-1 +kerning first=193 second=354 amount=-2 +kerning first=243 second=44 amount=-1 +kerning first=121 second=101 amount=-1 +kerning first=263 second=287 amount=-1 +kerning first=194 second=268 amount=-1 +kerning first=45 second=325 amount=-1 +kerning first=75 second=210 amount=-1 +kerning first=89 second=268 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=8250 second=201 amount=-1 +kerning first=376 second=244 amount=-1 +kerning first=350 second=296 amount=-1 +kerning first=368 second=227 amount=-1 +kerning first=296 second=227 amount=-1 +kerning first=374 second=268 amount=-1 +kerning first=195 second=121 amount=-1 +kerning first=221 second=337 amount=-1 +kerning first=85 second=257 amount=-1 +kerning first=8222 second=362 amount=-1 +kerning first=204 second=261 amount=-1 +kerning first=356 second=199 amount=-1 +kerning first=99 second=261 amount=-1 +kerning first=255 second=228 amount=-1 +kerning first=219 second=228 amount=-1 +kerning first=327 second=228 amount=-1 +kerning first=346 second=280 amount=-1 +kerning first=1061 second=1054 amount=-1 +kerning first=192 second=361 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=369 second=108 amount=-1 +kerning first=187 second=83 amount=-1 +kerning first=376 second=377 amount=-1 +kerning first=262 second=336 amount=-1 +kerning first=213 second=197 amount=-1 +kerning first=66 second=205 amount=-1 +kerning first=374 second=263 amount=-1 +kerning first=197 second=286 amount=-1 +kerning first=230 second=107 amount=-1 +kerning first=86 second=245 amount=-1 +kerning first=45 second=90 amount=-1 +kerning first=199 second=262 amount=-1 +kerning first=256 second=221 amount=-2 +kerning first=82 second=318 amount=-1 +kerning first=118 second=318 amount=-1 +kerning first=354 second=223 amount=-1 +kerning first=8216 second=231 amount=-1 +kerning first=269 second=237 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=65 second=370 amount=-1 +kerning first=220 second=65 amount=-1 +kerning first=252 second=289 amount=-1 +kerning first=364 second=65 amount=-1 +kerning first=272 second=260 amount=-1 +kerning first=310 second=45 amount=-1 +kerning first=346 second=45 amount=-1 +kerning first=264 second=77 amount=-1 +kerning first=365 second=289 amount=-1 +kerning first=347 second=112 amount=-1 +kerning first=382 second=45 amount=-1 +kerning first=344 second=255 amount=-1 +kerning first=236 second=255 amount=-1 +kerning first=258 second=374 amount=-2 +kerning first=86 second=324 amount=-1 +kerning first=45 second=374 amount=-1 +kerning first=221 second=97 amount=-1 +kerning first=187 second=323 amount=-1 +kerning first=83 second=219 amount=-1 +kerning first=75 second=8249 amount=-1 +kerning first=269 second=46 amount=-1 +kerning first=121 second=257 amount=-1 +kerning first=221 second=288 amount=-1 +kerning first=370 second=257 amount=-1 +kerning first=75 second=338 amount=-1 +kerning first=298 second=257 amount=-1 +kerning first=187 second=260 amount=-1 +kerning first=311 second=273 amount=-1 +kerning first=213 second=192 amount=-1 +kerning first=1059 second=1105 amount=-1 +kerning first=208 second=193 amount=-1 +kerning first=302 second=224 amount=-1 +kerning first=352 second=193 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=187 second=78 amount=-1 +kerning first=8250 second=280 amount=-1 +kerning first=260 second=71 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=187 second=122 amount=-1 +kerning first=118 second=122 amount=-1 +kerning first=8250 second=84 amount=-1 +kerning first=1046 second=1090 amount=-1 +kerning first=1036 second=1038 amount=-1 +kerning first=374 second=224 amount=-1 +kerning first=112 second=375 amount=-1 +kerning first=366 second=46 amount=-1 +kerning first=268 second=288 amount=-1 +kerning first=46 second=8249 amount=-1 +kerning first=374 second=336 amount=-1 +kerning first=323 second=103 amount=-1 +kerning first=196 second=288 amount=-1 +kerning first=1059 second=1075 amount=-1 +kerning first=66 second=368 amount=-1 +kerning first=67 second=81 amount=-1 +kerning first=76 second=287 amount=-1 +kerning first=205 second=259 amount=-1 +kerning first=269 second=316 amount=-1 +kerning first=233 second=316 amount=-1 +kerning first=251 second=289 amount=-1 +kerning first=354 second=346 amount=-1 +kerning first=370 second=352 amount=-1 +kerning first=325 second=287 amount=-1 +kerning first=217 second=287 amount=-1 +kerning first=253 second=287 amount=-1 +kerning first=73 second=117 amount=-1 +kerning first=87 second=194 amount=-2 +kerning first=110 second=8217 amount=-1 +kerning first=251 second=8217 amount=-1 +kerning first=197 second=370 amount=-1 +kerning first=264 second=194 amount=-1 +kerning first=336 second=194 amount=-1 +kerning first=344 second=242 amount=-1 +kerning first=66 second=328 amount=-1 +kerning first=194 second=219 amount=-1 +kerning first=86 second=290 amount=-1 +kerning first=291 second=351 amount=-1 +kerning first=346 second=80 amount=-1 +kerning first=255 second=351 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=376 second=288 amount=-1 +kerning first=105 second=253 amount=-1 +kerning first=260 second=115 amount=-1 +kerning first=242 second=255 amount=-1 +kerning first=112 second=121 amount=-1 +kerning first=258 second=369 amount=-1 +kerning first=76 second=121 amount=-1 +kerning first=73 second=229 amount=-1 +kerning first=362 second=196 amount=-1 +kerning first=246 second=253 amount=-1 +kerning first=314 second=171 amount=-1 +kerning first=354 second=253 amount=-1 +kerning first=344 second=334 amount=-1 +kerning first=353 second=353 amount=-1 +kerning first=195 second=212 amount=-1 +kerning first=218 second=196 amount=-1 +kerning first=290 second=196 amount=-1 +kerning first=1059 second=1100 amount=-1 +kerning first=223 second=318 amount=-1 +kerning first=375 second=100 amount=-1 +kerning first=103 second=228 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=367 second=318 amount=-1 +kerning first=221 second=214 amount=-1 +kerning first=354 second=267 amount=-1 +kerning first=8250 second=344 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=326 second=8221 amount=-1 +kerning first=260 second=336 amount=-1 +kerning first=377 second=365 amount=-1 +kerning first=311 second=113 amount=-1 +kerning first=250 second=103 amount=-1 +kerning first=66 second=249 amount=-1 +kerning first=8250 second=291 amount=-1 +kerning first=236 second=171 amount=-1 +kerning first=272 second=46 amount=-1 +kerning first=82 second=362 amount=-1 +kerning first=344 second=171 amount=-1 +kerning first=303 second=100 amount=-1 +kerning first=73 second=103 amount=-1 +kerning first=197 second=365 amount=-1 +kerning first=380 second=171 amount=-1 +kerning first=113 second=119 amount=-1 +kerning first=8220 second=113 amount=-1 +kerning first=119 second=232 amount=-1 +kerning first=8218 second=370 amount=-1 +kerning first=234 second=118 amount=-1 +kerning first=121 second=380 amount=-1 +kerning first=85 second=380 amount=-1 +kerning first=370 second=380 amount=-1 +kerning first=262 second=380 amount=-1 +kerning first=315 second=377 amount=-1 +kerning first=45 second=323 amount=-1 +kerning first=256 second=216 amount=-1 +kerning first=67 second=67 amount=-1 +kerning first=82 second=234 amount=-1 +kerning first=76 second=86 amount=-1 +kerning first=66 second=363 amount=-1 +kerning first=321 second=364 amount=-1 +kerning first=207 second=363 amount=-1 +kerning first=118 second=234 amount=-1 +kerning first=268 second=304 amount=-1 +kerning first=1058 second=1033 amount=-1 +kerning first=374 second=347 amount=-1 +kerning first=82 second=283 amount=-1 +kerning first=8250 second=217 amount=-1 +kerning first=1060 second=1059 amount=-1 +kerning first=82 second=118 amount=-1 +kerning first=193 second=79 amount=-1 +kerning first=187 second=118 amount=-1 +kerning first=352 second=72 amount=-1 +kerning first=344 second=290 amount=-1 +kerning first=219 second=193 amount=-1 +kerning first=367 second=118 amount=-1 +kerning first=197 second=85 amount=-1 +kerning first=195 second=216 amount=-1 +kerning first=221 second=377 amount=-1 +kerning first=207 second=361 amount=-1 +kerning first=313 second=377 amount=-1 +kerning first=346 second=192 amount=-1 +kerning first=8218 second=86 amount=-2 +kerning first=1098 second=1091 amount=-1 +kerning first=295 second=118 amount=-1 +kerning first=331 second=118 amount=-1 +kerning first=88 second=79 amount=-1 +kerning first=1104 second=1076 amount=-1 +kerning first=194 second=8249 amount=-1 +kerning first=356 second=83 amount=-1 +kerning first=1050 second=1060 amount=-1 +kerning first=266 second=8249 amount=-1 +kerning first=75 second=121 amount=-1 +kerning first=8217 second=269 amount=-1 +kerning first=83 second=315 amount=-1 +kerning first=354 second=262 amount=-1 +kerning first=1027 second=1077 amount=-1 +kerning first=264 second=278 amount=-1 +kerning first=344 second=103 amount=-1 +kerning first=45 second=218 amount=-1 +kerning first=350 second=256 amount=-1 +kerning first=82 second=113 amount=-1 +kerning first=375 second=291 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=336 second=198 amount=-1 +kerning first=339 second=291 amount=-1 +kerning first=1069 second=1038 amount=-1 +kerning first=248 second=318 amount=-1 +kerning first=264 second=198 amount=-1 +kerning first=267 second=291 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=231 second=291 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=84 second=260 amount=-2 +kerning first=1059 second=1119 amount=-1 +kerning first=90 second=291 amount=-1 +kerning first=266 second=67 amount=-1 +kerning first=374 second=67 amount=-1 +kerning first=317 second=219 amount=-1 +kerning first=362 second=44 amount=-1 +kerning first=89 second=67 amount=-1 +kerning first=84 second=71 amount=-1 +kerning first=8249 second=87 amount=-1 +kerning first=194 second=67 amount=-1 +kerning first=290 second=44 amount=-1 +kerning first=82 second=199 amount=-1 +kerning first=254 second=44 amount=-1 +kerning first=8217 second=259 amount=-1 +kerning first=8220 second=233 amount=-1 +kerning first=346 second=84 amount=-1 +kerning first=118 second=113 amount=-1 +kerning first=72 second=227 amount=-1 +kerning first=67 second=72 amount=-1 +kerning first=376 second=337 amount=-1 +kerning first=323 second=261 amount=-1 +kerning first=287 second=261 amount=-1 +kerning first=346 second=112 amount=-1 +kerning first=99 second=226 amount=-1 +kerning first=204 second=226 amount=-1 +kerning first=199 second=66 amount=-1 +kerning first=250 second=108 amount=-1 +kerning first=71 second=356 amount=-1 +kerning first=258 second=286 amount=-1 +kerning first=252 second=314 amount=-1 +kerning first=120 second=229 amount=-1 +kerning first=84 second=229 amount=-1 +kerning first=381 second=122 amount=-1 +kerning first=195 second=251 amount=-1 +kerning first=220 second=230 amount=-1 +kerning first=262 second=122 amount=-1 +kerning first=268 second=350 amount=-1 +kerning first=364 second=230 amount=-1 +kerning first=74 second=261 amount=-1 +kerning first=219 second=224 amount=-1 +kerning first=255 second=224 amount=-1 +kerning first=291 second=224 amount=-1 +kerning first=327 second=224 amount=-1 +kerning first=194 second=356 amount=-2 +kerning first=86 second=45 amount=-1 +kerning first=122 second=45 amount=-1 +kerning first=214 second=194 amount=-1 +kerning first=286 second=194 amount=-1 +kerning first=255 second=111 amount=-1 +kerning first=195 second=8249 amount=-1 +kerning first=333 second=255 amount=-1 +kerning first=375 second=234 amount=-1 +kerning first=369 second=255 amount=-1 +kerning first=8250 second=197 amount=-1 +kerning first=107 second=243 amount=-1 +kerning first=290 second=354 amount=-1 +kerning first=196 second=368 amount=-1 +kerning first=84 second=255 amount=-1 +kerning first=278 second=287 amount=-1 +kerning first=356 second=243 amount=-1 +kerning first=120 second=255 amount=-1 +kerning first=314 second=287 amount=-1 +kerning first=206 second=287 amount=-1 +kerning first=83 second=80 amount=-1 +kerning first=352 second=368 amount=-1 +kerning first=101 second=287 amount=-1 +kerning first=376 second=97 amount=-1 +kerning first=258 second=211 amount=-1 +kerning first=65 second=287 amount=-1 +kerning first=197 second=374 amount=-2 +kerning first=67 second=202 amount=-1 +kerning first=253 second=113 amount=-1 +kerning first=281 second=104 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=350 second=287 amount=-1 +kerning first=89 second=119 amount=-1 +kerning first=287 second=380 amount=-1 +kerning first=356 second=248 amount=-1 +kerning first=262 second=327 amount=-1 +kerning first=187 second=74 amount=-1 +kerning first=67 second=76 amount=-1 +kerning first=374 second=111 amount=-1 +kerning first=220 second=225 amount=-1 +kerning first=118 second=243 amount=-1 +kerning first=107 second=248 amount=-1 +kerning first=82 second=243 amount=-1 +kerning first=311 second=269 amount=-1 +kerning first=257 second=253 amount=-1 +kerning first=221 second=253 amount=-1 +kerning first=260 second=364 amount=-1 +kerning first=365 second=253 amount=-1 +kerning first=352 second=202 amount=-1 +kerning first=83 second=364 amount=-1 +kerning first=187 second=69 amount=-1 +kerning first=193 second=350 amount=-1 +kerning first=65 second=375 amount=-1 +kerning first=221 second=346 amount=-1 +kerning first=66 second=288 amount=-1 +kerning first=65 second=212 amount=-1 +kerning first=86 second=289 amount=-1 +kerning first=220 second=229 amount=-1 +kerning first=70 second=46 amount=-1 +kerning first=76 second=370 amount=-1 +kerning first=350 second=282 amount=-1 +kerning first=223 second=314 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=86 second=241 amount=-1 +kerning first=344 second=99 amount=-1 +kerning first=262 second=213 amount=-1 +kerning first=197 second=369 amount=-1 +kerning first=283 second=46 amount=-1 +kerning first=364 second=225 amount=-1 +kerning first=89 second=259 amount=-1 +kerning first=375 second=335 amount=-1 +kerning first=8250 second=192 amount=-1 +kerning first=235 second=311 amount=-1 +kerning first=303 second=335 amount=-1 +kerning first=286 second=44 amount=-1 +kerning first=356 second=122 amount=-1 +kerning first=197 second=81 amount=-1 +kerning first=119 second=271 amount=-1 +kerning first=209 second=230 amount=-1 +kerning first=242 second=375 amount=-1 +kerning first=302 second=259 amount=-1 +kerning first=66 second=119 amount=-1 +kerning first=314 second=375 amount=-1 +kerning first=364 second=291 amount=-1 +kerning first=82 second=314 amount=-1 +kerning first=194 second=351 amount=-1 +kerning first=266 second=70 amount=-1 +kerning first=256 second=291 amount=-1 +kerning first=89 second=351 amount=-1 +kerning first=220 second=291 amount=-1 +kerning first=351 second=119 amount=-1 +kerning first=1069 second=1033 amount=-1 +kerning first=115 second=291 amount=-1 +kerning first=279 second=119 amount=-1 +kerning first=315 second=119 amount=-1 +kerning first=83 second=75 amount=-1 +kerning first=8216 second=275 amount=-1 +kerning first=89 second=210 amount=-1 +kerning first=217 second=256 amount=-1 +kerning first=194 second=210 amount=-1 +kerning first=194 second=284 amount=-1 +kerning first=346 second=89 amount=-1 +kerning first=374 second=351 amount=-1 +kerning first=255 second=263 amount=-1 +kerning first=317 second=8220 amount=-1 +kerning first=377 second=369 amount=-1 +kerning first=228 second=121 amount=-1 +kerning first=192 second=121 amount=-1 +kerning first=196 second=363 amount=-1 +kerning first=1059 second=1114 amount=-1 +kerning first=195 second=221 amount=-2 +kerning first=104 second=8249 amount=-1 +kerning first=89 second=256 amount=-2 +kerning first=304 second=363 amount=-1 +kerning first=354 second=377 amount=-1 +kerning first=8216 second=226 amount=-1 +kerning first=371 second=333 amount=-1 +kerning first=258 second=85 amount=-1 +kerning first=268 second=200 amount=-1 +kerning first=45 second=85 amount=-1 +kerning first=86 second=382 amount=-1 +kerning first=65 second=86 amount=-2 +kerning first=103 second=316 amount=-1 +kerning first=244 second=120 amount=-1 +kerning first=115 second=351 amount=-1 +kerning first=70 second=171 amount=-1 +kerning first=45 second=330 amount=-1 +kerning first=244 second=316 amount=-1 +kerning first=253 second=235 amount=-1 +kerning first=344 second=246 amount=-1 +kerning first=86 second=197 amount=-2 +kerning first=369 second=103 amount=-1 +kerning first=193 second=8221 amount=-1 +kerning first=229 second=8221 amount=-1 +kerning first=381 second=252 amount=-1 +kerning first=196 second=249 amount=-1 +kerning first=86 second=333 amount=-1 +kerning first=199 second=214 amount=-1 +kerning first=8217 second=111 amount=-1 +kerning first=283 second=103 amount=-1 +kerning first=209 second=226 amount=-1 +kerning first=106 second=103 amount=-1 +kerning first=76 second=379 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=8216 second=257 amount=-1 +kerning first=310 second=71 amount=-1 +kerning first=286 second=260 amount=-1 +kerning first=325 second=117 amount=-1 +kerning first=258 second=171 amount=-1 +kerning first=255 second=281 amount=-1 +kerning first=121 second=283 amount=-1 +kerning first=313 second=89 amount=-1 +kerning first=330 second=171 amount=-1 +kerning first=83 second=280 amount=-1 +kerning first=354 second=256 amount=-2 +kerning first=214 second=260 amount=-1 +kerning first=366 second=171 amount=-1 +kerning first=264 second=313 amount=-1 +kerning first=219 second=382 amount=-1 +kerning first=250 second=121 amount=-1 +kerning first=221 second=284 amount=-1 +kerning first=255 second=382 amount=-1 +kerning first=291 second=382 amount=-1 +kerning first=1059 second=1079 amount=-1 +kerning first=73 second=361 amount=-1 +kerning first=8216 second=113 amount=-1 +kerning first=251 second=8221 amount=-1 +kerning first=110 second=8221 amount=-1 +kerning first=350 second=118 amount=-1 +kerning first=66 second=70 amount=-1 +kerning first=317 second=362 amount=-1 +kerning first=352 second=85 amount=-1 +kerning first=230 second=316 amount=-1 +kerning first=196 second=218 amount=-1 +kerning first=356 second=118 amount=-1 +kerning first=111 second=314 amount=-1 +kerning first=45 second=378 amount=-1 +kerning first=205 second=250 amount=-1 +kerning first=268 second=260 amount=-1 +kerning first=199 second=315 amount=-1 +kerning first=103 second=347 amount=-1 +kerning first=356 second=380 amount=-1 +kerning first=83 second=201 amount=-1 +kerning first=8216 second=235 amount=-1 +kerning first=321 second=84 amount=-1 +kerning first=354 second=227 amount=-1 +kerning first=86 second=8249 amount=-1 +kerning first=65 second=366 amount=-1 +kerning first=103 second=224 amount=-1 +kerning first=67 second=325 amount=-1 +kerning first=204 second=363 amount=-1 +kerning first=262 second=204 amount=-1 +kerning first=87 second=111 amount=-1 +kerning first=286 second=197 amount=-1 +kerning first=66 second=209 amount=-1 +kerning first=264 second=291 amount=-1 +kerning first=192 second=291 amount=-1 +kerning first=366 second=378 amount=-1 +kerning first=87 second=291 amount=-1 +kerning first=1046 second=1063 amount=-1 +kerning first=195 second=287 amount=-1 +kerning first=221 second=44 amount=-1 +kerning first=90 second=287 amount=-1 +kerning first=68 second=256 amount=-1 +kerning first=80 second=44 amount=-1 +kerning first=67 second=268 amount=-1 +kerning first=374 second=338 amount=-1 +kerning first=67 second=327 amount=-1 +kerning first=356 second=103 amount=-1 +kerning first=375 second=287 amount=-1 +kerning first=310 second=367 amount=-1 +kerning first=339 second=287 amount=-1 +kerning first=231 second=287 amount=-1 +kerning first=267 second=287 amount=-1 +kerning first=381 second=367 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=1059 second=1101 amount=-1 +kerning first=205 second=228 amount=-1 +kerning first=87 second=269 amount=-1 +kerning first=221 second=262 amount=-1 +kerning first=1061 second=1060 amount=-1 +kerning first=350 second=344 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=218 second=350 amount=-1 +kerning first=356 second=74 amount=-1 +kerning first=275 second=108 amount=-1 +kerning first=108 second=106 amount=-1 +kerning first=121 second=261 amount=-1 +kerning first=85 second=261 amount=-1 +kerning first=370 second=261 amount=-1 +kerning first=298 second=261 amount=-1 +kerning first=346 second=289 amount=-1 +kerning first=274 second=289 amount=-1 +kerning first=298 second=367 amount=-1 +kerning first=192 second=370 amount=-1 +kerning first=362 second=350 amount=-1 +kerning first=187 second=282 amount=-1 +kerning first=84 second=339 amount=-1 +kerning first=120 second=251 amount=-1 +kerning first=195 second=353 amount=-1 +kerning first=221 second=210 amount=-1 +kerning first=87 second=229 amount=-1 +kerning first=288 second=45 amount=-1 +kerning first=376 second=275 amount=-1 +kerning first=324 second=45 amount=-1 +kerning first=1061 second=1038 amount=-1 +kerning first=75 second=45 amount=-1 +kerning first=376 second=240 amount=-1 +kerning first=84 second=211 amount=-1 +kerning first=258 second=356 amount=-2 +kerning first=45 second=356 amount=-1 +kerning first=82 second=336 amount=-1 +kerning first=86 second=171 amount=-1 +kerning first=376 second=381 amount=-1 +kerning first=8220 second=224 amount=-1 +kerning first=84 second=352 amount=-1 +kerning first=350 second=194 amount=-1 +kerning first=74 second=226 amount=-1 +kerning first=258 second=255 amount=-1 +kerning first=232 second=119 amount=-1 +kerning first=287 second=226 amount=-1 +kerning first=45 second=255 amount=-1 +kerning first=375 second=113 amount=-1 +kerning first=246 second=44 amount=-1 +kerning first=354 second=44 amount=-1 +kerning first=196 second=119 amount=-1 +kerning first=323 second=226 amount=-1 +kerning first=196 second=367 amount=-1 +kerning first=376 second=119 amount=-1 +kerning first=221 second=227 amount=-1 +kerning first=248 second=314 amount=-1 +kerning first=303 second=113 amount=-1 +kerning first=231 second=225 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=67 second=290 amount=-1 +kerning first=193 second=363 amount=-1 +kerning first=375 second=225 amount=-1 +kerning first=251 second=318 amount=-1 +kerning first=376 second=79 amount=-1 +kerning first=196 second=86 amount=-2 +kerning first=366 second=193 amount=-1 +kerning first=66 second=103 amount=-1 +kerning first=120 second=226 amount=-1 +kerning first=256 second=8220 amount=-1 +kerning first=45 second=193 amount=-1 +kerning first=328 second=8220 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=196 second=79 amount=-1 +kerning first=222 second=193 amount=-1 +kerning first=268 second=79 amount=-1 +kerning first=202 second=289 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=199 second=192 amount=-1 +kerning first=218 second=259 amount=-1 +kerning first=264 second=207 amount=-1 +kerning first=84 second=99 amount=-1 +kerning first=66 second=256 amount=-1 +kerning first=317 second=122 amount=-1 +kerning first=1043 second=1089 amount=-1 +kerning first=87 second=377 amount=-1 +kerning first=291 second=316 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=255 second=316 amount=-1 +kerning first=356 second=230 amount=-1 +kerning first=368 second=346 amount=-1 +kerning first=363 second=316 amount=-1 +kerning first=101 second=104 amount=-1 +kerning first=260 second=346 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=231 second=375 amount=-1 +kerning first=327 second=259 amount=-1 +kerning first=267 second=375 amount=-1 +kerning first=187 second=87 amount=-1 +kerning first=262 second=83 amount=-1 +kerning first=255 second=259 amount=-1 +kerning first=370 second=83 amount=-1 +kerning first=339 second=375 amount=-1 +kerning first=219 second=259 amount=-1 +kerning first=1059 second=1107 amount=-1 +kerning first=90 second=375 amount=-1 +kerning first=78 second=259 amount=-1 +kerning first=8250 second=289 amount=-1 +kerning first=195 second=375 amount=-1 +kerning first=288 second=197 amount=-1 +kerning first=236 second=103 amount=-1 +kerning first=376 second=196 amount=-2 +kerning first=200 second=103 amount=-1 +kerning first=268 second=196 amount=-1 +kerning first=268 second=77 amount=-1 +kerning first=356 second=336 amount=-1 +kerning first=87 second=335 amount=-1 +kerning first=350 second=278 amount=-1 +kerning first=229 second=8217 amount=-1 +kerning first=8220 second=243 amount=-1 +kerning first=199 second=75 amount=-1 +kerning first=1118 second=1103 amount=-1 +kerning first=209 second=361 amount=-1 +kerning first=187 second=65 amount=-1 +kerning first=232 second=253 amount=-1 +kerning first=258 second=334 amount=-1 +kerning first=375 second=353 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=192 second=117 amount=-1 +kerning first=275 second=121 amount=-1 +kerning first=245 second=318 amount=-1 +kerning first=281 second=318 amount=-1 +kerning first=8216 second=281 amount=-1 +kerning first=255 second=97 amount=-1 +kerning first=221 second=328 amount=-1 +kerning first=225 second=121 amount=-1 +kerning first=8250 second=80 amount=-1 +kerning first=354 second=103 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=87 second=326 amount=-1 +kerning first=277 second=316 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=221 second=196 amount=-2 +kerning first=221 second=277 amount=-1 +kerning first=288 second=89 amount=-1 +kerning first=376 second=231 amount=-1 +kerning first=302 second=228 amount=-1 +kerning first=89 second=228 amount=-1 +kerning first=281 second=375 amount=-1 +kerning first=253 second=333 amount=-1 +kerning first=376 second=253 amount=-1 +kerning first=353 second=375 amount=-1 +kerning first=317 second=221 amount=-1 +kerning first=193 second=213 amount=-1 +kerning first=88 second=213 amount=-1 +kerning first=311 second=99 amount=-1 +kerning first=245 second=375 amount=-1 +kerning first=267 second=118 amount=-1 +kerning first=205 second=227 amount=-1 +kerning first=87 second=379 amount=-1 +kerning first=262 second=270 amount=-1 +kerning first=193 second=266 amount=-1 +kerning first=1027 second=1103 amount=-1 +kerning first=200 second=291 amount=-1 +kerning first=88 second=266 amount=-1 +kerning first=330 second=103 amount=-1 +kerning first=366 second=103 amount=-1 +kerning first=258 second=103 amount=-1 +kerning first=1042 second=1038 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=66 second=8217 amount=-1 +kerning first=269 second=224 amount=-1 +kerning first=67 second=334 amount=-1 +kerning first=232 second=44 amount=-1 +kerning first=379 second=249 amount=-1 +kerning first=102 second=8217 amount=1 +kerning first=371 second=232 amount=-1 +kerning first=305 second=171 amount=-1 +kerning first=206 second=117 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=376 second=284 amount=-1 +kerning first=258 second=365 amount=-1 +kerning first=330 second=365 amount=-1 +kerning first=196 second=284 amount=-1 +kerning first=344 second=264 amount=-1 +kerning first=266 second=382 amount=-1 +kerning first=1046 second=1054 amount=-1 +kerning first=374 second=382 amount=-1 +kerning first=350 second=203 amount=-1 +kerning first=369 second=121 amount=-1 +kerning first=268 second=284 amount=-1 +kerning first=333 second=121 amount=-1 +kerning first=256 second=71 amount=-1 +kerning first=106 second=255 amount=-1 +kerning first=364 second=287 amount=-1 +kerning first=256 second=287 amount=-1 +kerning first=287 second=257 amount=-1 +kerning first=66 second=79 amount=-1 +kerning first=266 second=206 amount=-1 +kerning first=220 second=287 amount=-1 +kerning first=268 second=209 amount=-1 +kerning first=115 second=287 amount=-1 +kerning first=377 second=378 amount=-1 +kerning first=86 second=232 amount=-1 +kerning first=195 second=213 amount=-1 +kerning first=45 second=87 amount=-1 +kerning first=196 second=262 amount=-1 +kerning first=226 second=8221 amount=-1 +kerning first=74 second=257 amount=-1 +kerning first=8220 second=281 amount=-1 +kerning first=376 second=262 amount=-1 +kerning first=268 second=262 amount=-1 +kerning first=66 second=350 amount=-1 +kerning first=332 second=192 amount=-1 +kerning first=368 second=192 amount=-1 +kerning first=352 second=356 amount=-1 +kerning first=253 second=269 amount=-1 +kerning first=288 second=8249 amount=-1 +kerning first=258 second=290 amount=-1 +kerning first=187 second=274 amount=-1 +kerning first=324 second=8249 amount=-1 +kerning first=1114 second=1118 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=187 second=327 amount=-1 +kerning first=83 second=192 amount=-1 +kerning first=79 second=256 amount=-1 +kerning first=346 second=298 amount=-1 +kerning first=260 second=84 amount=-2 +kerning first=197 second=268 amount=-1 +kerning first=115 second=115 amount=-1 +kerning first=187 second=364 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=231 second=108 amount=-1 +kerning first=325 second=291 amount=-1 +kerning first=1047 second=1038 amount=-1 +kerning first=253 second=291 amount=-1 +kerning first=84 second=90 amount=-1 +kerning first=217 second=291 amount=-1 +kerning first=76 second=291 amount=-1 +kerning first=199 second=280 amount=-1 +kerning first=73 second=251 amount=-1 +kerning first=218 second=46 amount=-1 +kerning first=86 second=210 amount=-1 +kerning first=75 second=67 amount=-1 +kerning first=364 second=256 amount=-1 +kerning first=354 second=337 amount=-1 +kerning first=45 second=72 amount=-1 +kerning first=220 second=256 amount=-1 +kerning first=214 second=198 amount=-1 +kerning first=269 second=103 amount=-1 +kerning first=258 second=268 amount=-1 +kerning first=350 second=73 amount=-1 +kerning first=298 second=226 amount=-1 +kerning first=89 second=279 amount=-1 +kerning first=370 second=226 amount=-1 +kerning first=217 second=194 amount=-1 +kerning first=257 second=119 amount=-1 +kerning first=313 second=219 amount=-1 +kerning first=221 second=119 amount=-1 +kerning first=325 second=361 amount=-1 +kerning first=253 second=335 amount=-1 +kerning first=344 second=374 amount=-1 +kerning first=77 second=363 amount=-1 +kerning first=365 second=119 amount=-1 +kerning first=268 second=66 amount=-1 +kerning first=256 second=353 amount=-1 +kerning first=115 second=353 amount=-1 +kerning first=352 second=303 amount=-1 +kerning first=323 second=367 amount=-1 +kerning first=72 second=289 amount=-1 +kerning first=376 second=328 amount=-1 +kerning first=249 second=289 amount=-1 +kerning first=256 second=212 amount=-1 +kerning first=1046 second=1098 amount=-1 +kerning first=194 second=338 amount=-1 +kerning first=204 second=257 amount=-1 +kerning first=84 second=286 amount=-1 +kerning first=266 second=338 amount=-1 +kerning first=99 second=257 amount=-1 +kerning first=352 second=237 amount=-1 +kerning first=195 second=8220 amount=-1 +kerning first=85 second=197 amount=-1 +kerning first=89 second=338 amount=-1 +kerning first=8222 second=368 amount=-1 +kerning first=199 second=205 amount=-1 +kerning first=106 second=45 amount=-1 +kerning first=241 second=45 amount=-1 +kerning first=344 second=211 amount=-1 +kerning first=354 second=97 amount=-1 +kerning first=221 second=240 amount=-1 +kerning first=8250 second=364 amount=-1 +kerning first=197 second=290 amount=-1 +kerning first=197 second=356 amount=-2 +kerning first=8250 second=298 amount=-1 +kerning first=356 second=261 amount=-1 +kerning first=85 second=226 amount=-1 +kerning first=283 second=255 amount=-1 +kerning first=264 second=304 amount=-1 +kerning first=324 second=8221 amount=-1 +kerning first=121 second=226 amount=-1 +kerning first=380 second=112 amount=-1 +kerning first=266 second=77 amount=-1 +kerning first=339 second=104 amount=-1 +kerning first=8220 second=193 amount=-2 +kerning first=381 second=380 amount=-1 +kerning first=66 second=253 amount=-1 +kerning first=317 second=377 amount=-1 +kerning first=121 second=248 amount=-1 +kerning first=113 second=8217 amount=-1 +kerning first=243 second=253 amount=-1 +kerning first=315 second=253 amount=-1 +kerning first=279 second=253 amount=-1 +kerning first=1059 second=1057 amount=-1 +kerning first=356 second=283 amount=-1 +kerning first=351 second=253 amount=-1 +kerning first=192 second=86 amount=-2 +kerning first=212 second=65 amount=-1 +kerning first=87 second=260 amount=-2 +kerning first=197 second=334 amount=-1 +kerning first=356 second=65 amount=-2 +kerning first=333 second=46 amount=-1 +kerning first=313 second=382 amount=-1 +kerning first=336 second=260 amount=-1 +kerning first=45 second=202 amount=-1 +kerning first=107 second=283 amount=-1 +kerning first=84 second=264 amount=-1 +kerning first=255 second=347 amount=-1 +kerning first=234 second=318 amount=-1 +kerning first=264 second=260 amount=-1 +kerning first=291 second=347 amount=-1 +kerning first=8218 second=366 amount=-1 +kerning first=253 second=45 amount=-1 +kerning first=193 second=288 amount=-1 +kerning first=78 second=369 amount=-1 +kerning first=1118 second=1076 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=327 second=369 amount=-1 +kerning first=346 second=364 amount=-1 +kerning first=264 second=282 amount=-1 +kerning first=284 second=87 amount=-1 +kerning first=346 second=201 amount=-1 +kerning first=262 second=268 amount=-1 +kerning first=376 second=100 amount=-1 +kerning first=115 second=375 amount=-1 +kerning first=199 second=346 amount=-1 +kerning first=88 second=288 amount=-1 +kerning first=221 second=381 amount=-1 +kerning first=258 second=351 amount=-1 +kerning first=344 second=352 amount=-1 +kerning first=71 second=87 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad55551.png b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad55551.png new file mode 100644 index 000000000..36232b22b Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad55551.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad55552.png b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad55552.png new file mode 100644 index 000000000..d4911cfc7 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif16Ipad55552.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif32.fnt b/jme3-examples/src/main/resources/jme3test/font/FreeSerif32.fnt new file mode 100644 index 000000000..022adf6de --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/FreeSerif32.fnt @@ -0,0 +1,23475 @@ +info face="Free Serif" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,1 spacing=-2,-2 +common lineHeight=42 base=31 scaleW=512 scaleH=512 pages=2 packed=0 +page id=0 file="FreeSerif321.png" +page id=1 file="FreeSerif322.png" +chars count=821 +char id=0 x=195 y=465 width=20 height=24 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=13 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=33 x=503 y=285 width=6 height=25 xoffset=3 yoffset=8 xadvance=11 page=0 chnl=0 +char id=35 x=215 y=465 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=36 x=46 y=226 width=16 height=29 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 +char id=37 x=206 y=314 width=26 height=25 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 +char id=38 x=232 y=314 width=25 height=25 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 +char id=39 x=505 y=440 width=6 height=11 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 +char id=40 x=453 y=135 width=11 height=30 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 +char id=41 x=464 y=135 width=11 height=30 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 +char id=43 x=482 y=490 width=20 height=19 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=0 +char id=47 x=257 y=314 width=13 height=25 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 +char id=48 x=270 y=314 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=49 x=233 y=465 width=12 height=24 xoffset=2 yoffset=8 xadvance=16 page=0 chnl=0 +char id=50 x=245 y=465 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=51 x=288 y=314 width=15 height=25 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 +char id=52 x=263 y=465 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=53 x=303 y=314 width=15 height=25 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 +char id=54 x=318 y=314 width=16 height=25 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 +char id=55 x=334 y=314 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=56 x=351 y=314 width=16 height=25 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 +char id=57 x=367 y=314 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=58 x=505 y=365 width=6 height=18 xoffset=1 yoffset=15 xadvance=9 page=0 chnl=0 +char id=60 x=316 y=490 width=20 height=20 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=0 +char id=62 x=336 y=490 width=20 height=20 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=0 +char id=63 x=384 y=314 width=14 height=25 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=64 x=398 y=314 width=25 height=25 xoffset=2 yoffset=8 xadvance=29 page=0 chnl=0 +char id=65 x=281 y=465 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=66 x=306 y=465 width=21 height=24 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=67 x=423 y=314 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=68 x=327 y=465 width=24 height=24 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=69 x=351 y=465 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=70 x=373 y=465 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=71 x=446 y=314 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=72 x=393 y=465 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=73 x=418 y=465 width=13 height=24 xoffset=-1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=74 x=470 y=314 width=14 height=25 xoffset=-1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=75 x=431 y=465 width=25 height=24 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=76 x=456 y=465 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=77 x=478 y=465 width=30 height=24 xoffset=-1 yoffset=8 xadvance=28 page=0 chnl=0 +char id=78 x=484 y=314 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=79 x=0 y=340 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=81 x=475 y=135 width=24 height=30 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=83 x=24 y=340 width=17 height=25 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 +char id=85 x=41 y=340 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=86 x=66 y=340 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=87 x=91 y=340 width=32 height=25 xoffset=-1 yoffset=8 xadvance=30 page=0 chnl=0 +char id=91 x=62 y=226 width=10 height=29 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=92 x=123 y=340 width=12 height=25 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=93 x=72 y=226 width=10 height=29 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=98 x=135 y=340 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=100 x=152 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=106 x=109 y=72 width=14 height=31 xoffset=-4 yoffset=8 xadvance=9 page=0 chnl=0 +char id=123 x=499 y=135 width=11 height=30 xoffset=2 yoffset=8 xadvance=15 page=0 chnl=0 +char id=124 x=506 y=226 width=5 height=25 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=125 x=0 y=166 width=11 height=30 xoffset=2 yoffset=8 xadvance=15 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=161 x=504 y=72 width=6 height=25 xoffset=2 yoffset=14 xadvance=11 page=0 chnl=0 +char id=162 x=470 y=285 width=16 height=26 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 +char id=163 x=170 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=164 x=0 y=490 width=20 height=21 xoffset=-2 yoffset=10 xadvance=16 page=0 chnl=0 +char id=166 x=504 y=0 width=5 height=25 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=167 x=82 y=226 width=14 height=29 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=169 x=0 y=314 width=27 height=26 xoffset=-1 yoffset=7 xadvance=25 page=0 chnl=0 +char id=174 x=27 y=314 width=27 height=26 xoffset=-1 yoffset=7 xadvance=25 page=0 chnl=0 +char id=182 x=96 y=226 width=18 height=29 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=188 x=188 y=340 width=24 height=25 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 +char id=189 x=212 y=340 width=26 height=25 xoffset=-1 yoffset=8 xadvance=24 page=0 chnl=0 +char id=190 x=238 y=340 width=25 height=25 xoffset=-1 yoffset=8 xadvance=24 page=0 chnl=0 +char id=191 x=263 y=340 width=14 height=25 xoffset=-1 yoffset=14 xadvance=14 page=0 chnl=0 +char id=192 x=123 y=72 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=193 x=148 y=72 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=194 x=173 y=72 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=195 x=114 y=226 width=25 height=29 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=196 x=139 y=226 width=25 height=29 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=197 x=198 y=72 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=199 x=223 y=72 width=23 height=31 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=200 x=246 y=72 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=201 x=268 y=72 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=202 x=290 y=72 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=203 x=164 y=226 width=22 height=29 xoffset=-1 yoffset=3 xadvance=20 page=0 chnl=0 +char id=204 x=312 y=72 width=13 height=31 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=205 x=325 y=72 width=13 height=31 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=206 x=338 y=72 width=13 height=31 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=207 x=186 y=226 width=13 height=29 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=209 x=11 y=166 width=25 height=30 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=210 x=417 y=0 width=24 height=32 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 +char id=211 x=441 y=0 width=24 height=32 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 +char id=212 x=465 y=0 width=24 height=32 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 +char id=213 x=36 y=166 width=24 height=30 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 +char id=214 x=60 y=166 width=24 height=30 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 +char id=216 x=199 y=226 width=24 height=29 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 +char id=217 x=0 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=218 x=25 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=219 x=50 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=220 x=84 y=166 width=25 height=30 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=221 x=351 y=72 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=223 x=277 y=340 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=224 x=294 y=340 width=16 height=25 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=225 x=310 y=340 width=16 height=25 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=226 x=326 y=340 width=16 height=25 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=229 x=308 y=285 width=16 height=27 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=232 x=342 y=340 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=233 x=358 y=340 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=234 x=374 y=340 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=240 x=390 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=242 x=408 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=243 x=426 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=244 x=444 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=247 x=356 y=490 width=20 height=20 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=0 +char id=249 x=462 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=250 x=480 y=340 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=251 x=0 y=365 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=253 x=376 y=72 width=18 height=31 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=254 x=394 y=72 width=17 height=31 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=255 x=223 y=226 width=18 height=29 xoffset=-1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=256 x=69 y=285 width=25 height=28 xoffset=-1 yoffset=4 xadvance=23 page=0 chnl=0 +char id=258 x=411 y=72 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=259 x=18 y=365 width=16 height=25 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=260 x=109 y=166 width=30 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=262 x=75 y=40 width=23 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=263 x=34 y=365 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=264 x=98 y=40 width=23 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=265 x=50 y=365 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=266 x=139 y=166 width=23 height=30 xoffset=-1 yoffset=3 xadvance=21 page=0 chnl=0 +char id=268 x=121 y=40 width=23 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=269 x=66 y=365 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=270 x=436 y=72 width=24 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=271 x=82 y=365 width=22 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=273 x=104 y=365 width=19 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=274 x=94 y=285 width=22 height=28 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=0 +char id=276 x=460 y=72 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=277 x=123 y=365 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=278 x=241 y=226 width=22 height=29 xoffset=-1 yoffset=3 xadvance=20 page=0 chnl=0 +char id=280 x=162 y=166 width=22 height=30 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=282 x=482 y=72 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=283 x=139 y=365 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=284 x=144 y=40 width=24 height=32 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 +char id=285 x=0 y=104 width=18 height=31 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=286 x=168 y=40 width=24 height=32 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 +char id=287 x=18 y=104 width=18 height=31 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=288 x=184 y=166 width=24 height=30 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 +char id=289 x=263 y=226 width=18 height=29 xoffset=-1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=290 x=137 y=0 width=24 height=34 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=291 x=161 y=0 width=18 height=34 xoffset=-1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=292 x=36 y=104 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=293 x=61 y=104 width=18 height=31 xoffset=-1 yoffset=1 xadvance=16 page=0 chnl=0 +char id=296 x=281 y=226 width=13 height=29 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=298 x=116 y=285 width=13 height=28 xoffset=-1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=299 x=20 y=490 width=13 height=21 xoffset=-2 yoffset=11 xadvance=9 page=0 chnl=0 +char id=300 x=79 y=104 width=13 height=31 xoffset=-1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=302 x=208 y=166 width=16 height=30 xoffset=-1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=303 x=224 y=166 width=11 height=30 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=304 x=294 y=226 width=13 height=29 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=306 x=155 y=365 width=24 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=307 x=92 y=104 width=17 height=31 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 +char id=308 x=489 y=0 width=15 height=32 xoffset=-1 yoffset=1 xadvance=12 page=0 chnl=0 +char id=309 x=109 y=104 width=17 height=31 xoffset=-4 yoffset=8 xadvance=9 page=0 chnl=0 +char id=310 x=179 y=0 width=25 height=34 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=311 x=204 y=0 width=19 height=34 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=313 x=126 y=104 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=314 x=148 y=104 width=12 height=31 xoffset=-1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=315 x=223 y=0 width=22 height=34 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=316 x=245 y=0 width=11 height=34 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=323 x=192 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=325 x=256 y=0 width=25 height=34 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=326 x=324 y=285 width=18 height=27 xoffset=-1 yoffset=15 xadvance=16 page=0 chnl=0 +char id=327 x=217 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=330 x=179 y=365 width=24 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=332 x=307 y=226 width=24 height=29 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=334 x=242 y=40 width=24 height=32 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 +char id=335 x=203 y=365 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=336 x=266 y=40 width=24 height=32 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 +char id=337 x=221 y=365 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=338 x=239 y=365 width=31 height=25 xoffset=-1 yoffset=8 xadvance=28 page=0 chnl=0 +char id=340 x=160 y=104 width=24 height=31 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=342 x=281 y=0 width=24 height=34 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=343 x=342 y=285 width=13 height=27 xoffset=-1 yoffset=15 xadvance=11 page=0 chnl=0 +char id=344 x=184 y=104 width=24 height=31 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=346 x=290 y=40 width=17 height=32 xoffset=0 yoffset=1 xadvance=18 page=0 chnl=0 +char id=347 x=498 y=340 width=13 height=25 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 +char id=348 x=307 y=40 width=17 height=32 xoffset=0 yoffset=1 xadvance=18 page=0 chnl=0 +char id=349 x=270 y=365 width=13 height=25 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 +char id=350 x=208 y=104 width=17 height=31 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 +char id=352 x=324 y=40 width=17 height=32 xoffset=0 yoffset=1 xadvance=18 page=0 chnl=0 +char id=353 x=283 y=365 width=13 height=25 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 +char id=354 x=225 y=104 width=21 height=31 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=355 x=129 y=285 width=11 height=28 xoffset=-1 yoffset=11 xadvance=9 page=0 chnl=0 +char id=356 x=246 y=104 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=360 x=235 y=166 width=25 height=30 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=362 x=331 y=226 width=25 height=29 xoffset=-1 yoffset=4 xadvance=23 page=0 chnl=0 +char id=364 x=341 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=365 x=296 y=365 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=366 x=366 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=367 x=355 y=285 width=18 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=368 x=391 y=40 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=369 x=314 y=365 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=370 x=260 y=166 width=25 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=372 x=416 y=40 width=32 height=32 xoffset=-1 yoffset=1 xadvance=30 page=0 chnl=0 +char id=373 x=332 y=365 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=374 x=267 y=104 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=375 x=292 y=104 width=18 height=31 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=376 x=356 y=226 width=25 height=29 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=377 x=310 y=104 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=379 x=381 y=226 width=22 height=29 xoffset=-1 yoffset=3 xadvance=20 page=0 chnl=0 +char id=381 x=332 y=104 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=902 x=357 y=365 width=25 height=25 xoffset=-1 yoffset=7 xadvance=23 page=0 chnl=0 +char id=904 x=382 y=365 width=27 height=25 xoffset=-1 yoffset=7 xadvance=26 page=0 chnl=0 +char id=905 x=409 y=365 width=31 height=25 xoffset=-1 yoffset=7 xadvance=29 page=0 chnl=0 +char id=906 x=440 y=365 width=18 height=25 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=908 x=54 y=314 width=28 height=26 xoffset=-1 yoffset=7 xadvance=26 page=0 chnl=0 +char id=910 x=458 y=365 width=30 height=25 xoffset=-1 yoffset=7 xadvance=28 page=0 chnl=0 +char id=911 x=0 y=390 width=29 height=25 xoffset=-1 yoffset=7 xadvance=28 page=0 chnl=0 +char id=912 x=140 y=285 width=14 height=28 xoffset=-3 yoffset=5 xadvance=9 page=0 chnl=0 +char id=920 x=29 y=390 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=925 x=54 y=390 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=927 x=79 y=390 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=938 x=403 y=226 width=13 height=29 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=939 x=416 y=226 width=23 height=29 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 +char id=940 x=154 y=285 width=19 height=28 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 +char id=941 x=173 y=285 width=14 height=28 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 +char id=942 x=94 y=0 width=18 height=35 xoffset=-1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=943 x=187 y=285 width=9 height=28 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=944 x=373 y=285 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=946 x=354 y=104 width=16 height=31 xoffset=1 yoffset=8 xadvance=17 page=0 chnl=0 +char id=947 x=488 y=365 width=17 height=25 xoffset=-1 yoffset=15 xadvance=15 page=0 chnl=0 +char id=948 x=103 y=390 width=17 height=25 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 +char id=950 x=448 y=40 width=16 height=32 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=951 x=120 y=390 width=18 height=25 xoffset=-1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=952 x=138 y=390 width=17 height=25 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 +char id=953 x=502 y=490 width=9 height=18 xoffset=1 yoffset=15 xadvance=9 page=0 chnl=0 +char id=955 x=155 y=390 width=17 height=25 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=956 x=172 y=390 width=17 height=25 xoffset=1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=958 x=464 y=40 width=18 height=32 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=961 x=189 y=390 width=17 height=25 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 +char id=962 x=206 y=390 width=16 height=25 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 +char id=966 x=222 y=390 width=21 height=25 xoffset=0 yoffset=15 xadvance=21 page=0 chnl=0 +char id=968 x=439 y=226 width=23 height=29 xoffset=-1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=972 x=196 y=285 width=18 height=28 xoffset=-1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=973 x=390 y=285 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=974 x=407 y=285 width=22 height=27 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 +char id=976 x=486 y=285 width=17 height=26 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 +char id=977 x=82 y=314 width=21 height=26 xoffset=-1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=979 x=243 y=390 width=28 height=25 xoffset=-1 yoffset=7 xadvance=26 page=0 chnl=0 +char id=980 x=462 y=226 width=23 height=29 xoffset=-2 yoffset=3 xadvance=20 page=0 chnl=0 +char id=981 x=485 y=226 width=21 height=29 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 +char id=982 x=376 y=490 width=23 height=20 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=985 x=271 y=390 width=18 height=25 xoffset=-1 yoffset=15 xadvance=16 page=0 chnl=0 +char id=990 x=289 y=390 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=991 x=370 y=104 width=13 height=31 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=993 x=383 y=104 width=20 height=31 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=994 x=0 y=72 width=31 height=32 xoffset=0 yoffset=8 xadvance=31 page=0 chnl=0 +char id=995 x=312 y=390 width=23 height=25 xoffset=-1 yoffset=15 xadvance=22 page=0 chnl=0 +char id=996 x=285 y=166 width=18 height=30 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 +char id=998 x=303 y=166 width=19 height=30 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 +char id=999 x=399 y=490 width=16 height=20 xoffset=-1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=1000 x=214 y=285 width=18 height=28 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 +char id=1001 x=415 y=490 width=13 height=20 xoffset=-1 yoffset=15 xadvance=11 page=0 chnl=0 +char id=1002 x=103 y=314 width=27 height=26 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 +char id=1004 x=0 y=256 width=20 height=29 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 +char id=1005 x=33 y=490 width=16 height=21 xoffset=-1 yoffset=12 xadvance=13 page=0 chnl=0 +char id=1006 x=305 y=0 width=21 height=34 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=1007 x=20 y=256 width=16 height=29 xoffset=-1 yoffset=11 xadvance=14 page=0 chnl=0 +char id=1009 x=335 y=390 width=17 height=25 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 +char id=1011 x=403 y=104 width=14 height=31 xoffset=-4 yoffset=8 xadvance=9 page=0 chnl=0 +char id=1012 x=352 y=390 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1016 x=322 y=166 width=19 height=30 xoffset=-1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=1017 x=376 y=390 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1021 x=399 y=390 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1022 x=422 y=390 width=23 height=25 xoffset=-1 yoffset=8 xadvance=32 page=0 chnl=0 +char id=1023 x=445 y=390 width=23 height=25 xoffset=-1 yoffset=8 xadvance=32 page=0 chnl=0 +char id=1024 x=417 y=104 width=22 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=1025 x=36 y=256 width=22 height=29 xoffset=-1 yoffset=3 xadvance=20 page=0 chnl=0 +char id=1026 x=468 y=390 width=25 height=25 xoffset=-1 yoffset=8 xadvance=24 page=0 chnl=0 +char id=1027 x=439 y=104 width=20 height=31 xoffset=-1 yoffset=1 xadvance=18 page=0 chnl=0 +char id=1028 x=0 y=415 width=22 height=25 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1029 x=493 y=390 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=1031 x=341 y=166 width=13 height=30 xoffset=-1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=1032 x=22 y=415 width=14 height=25 xoffset=-1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=1033 x=36 y=415 width=32 height=25 xoffset=-1 yoffset=8 xadvance=30 page=0 chnl=0 +char id=1035 x=68 y=415 width=28 height=25 xoffset=-1 yoffset=8 xadvance=26 page=0 chnl=0 +char id=1036 x=459 y=104 width=24 height=31 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=1037 x=483 y=104 width=25 height=31 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=1038 x=0 y=135 width=25 height=31 xoffset=-1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=1039 x=354 y=166 width=25 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1044 x=379 y=166 width=23 height=30 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=1047 x=96 y=415 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 +char id=1049 x=402 y=166 width=25 height=30 xoffset=-1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=1051 x=116 y=415 width=24 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1054 x=140 y=415 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1057 x=164 y=415 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1059 x=187 y=415 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1062 x=427 y=166 width=25 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1065 x=452 y=166 width=34 height=30 xoffset=-1 yoffset=8 xadvance=32 page=0 chnl=0 +char id=1069 x=212 y=415 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1070 x=235 y=415 width=32 height=25 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=0 +char id=1073 x=130 y=314 width=18 height=26 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=1076 x=49 y=490 width=18 height=21 xoffset=-1 yoffset=15 xadvance=16 page=0 chnl=0 +char id=1092 x=25 y=135 width=24 height=31 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1094 x=67 y=490 width=19 height=21 xoffset=-1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=1097 x=86 y=490 width=26 height=21 xoffset=-1 yoffset=15 xadvance=24 page=0 chnl=0 +char id=1104 x=267 y=415 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=1106 x=49 y=135 width=17 height=31 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1112 x=66 y=135 width=14 height=31 xoffset=-4 yoffset=8 xadvance=9 page=0 chnl=0 +char id=1118 x=80 y=135 width=18 height=31 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1120 x=283 y=415 width=33 height=25 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=0 +char id=1124 x=316 y=415 width=32 height=25 xoffset=-1 yoffset=8 xadvance=30 page=0 chnl=0 +char id=1134 x=76 y=0 width=18 height=37 xoffset=-1 yoffset=2 xadvance=17 page=0 chnl=0 +char id=1135 x=232 y=285 width=14 height=28 xoffset=-1 yoffset=10 xadvance=13 page=0 chnl=0 +char id=1137 x=98 y=135 width=24 height=31 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1138 x=348 y=415 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1140 x=372 y=415 width=27 height=25 xoffset=-1 yoffset=8 xadvance=25 page=0 chnl=0 +char id=1142 x=482 y=40 width=27 height=32 xoffset=-1 yoffset=1 xadvance=25 page=0 chnl=0 +char id=1143 x=399 y=415 width=21 height=25 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 +char id=1144 x=122 y=135 width=41 height=31 xoffset=-1 yoffset=8 xadvance=39 page=0 chnl=0 +char id=1146 x=58 y=256 width=28 height=29 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 +char id=1147 x=428 y=490 width=21 height=20 xoffset=-1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=1148 x=31 y=72 width=33 height=32 xoffset=-1 yoffset=1 xadvance=31 page=0 chnl=0 +char id=1149 x=148 y=314 width=24 height=26 xoffset=-1 yoffset=7 xadvance=21 page=0 chnl=0 +char id=1150 x=0 y=196 width=33 height=30 xoffset=-1 yoffset=3 xadvance=31 page=0 chnl=0 +char id=1160 x=326 y=0 width=68 height=34 xoffset=-26 yoffset=2 xadvance=0 page=0 chnl=0 +char id=1161 x=0 y=0 width=76 height=40 xoffset=-27 yoffset=1 xadvance=0 page=0 chnl=0 +char id=1162 x=112 y=0 width=25 height=35 xoffset=-1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=1163 x=86 y=256 width=19 height=29 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 +char id=1168 x=429 y=285 width=20 height=27 xoffset=-1 yoffset=5 xadvance=18 page=0 chnl=0 +char id=1169 x=449 y=490 width=15 height=20 xoffset=-1 yoffset=12 xadvance=13 page=0 chnl=0 +char id=1172 x=163 y=135 width=21 height=31 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=1174 x=33 y=196 width=34 height=30 xoffset=-1 yoffset=8 xadvance=32 page=0 chnl=0 +char id=1175 x=112 y=490 width=24 height=21 xoffset=-1 yoffset=15 xadvance=22 page=0 chnl=0 +char id=1176 x=184 y=135 width=20 height=31 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 +char id=1178 x=486 y=166 width=24 height=30 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1179 x=136 y=490 width=19 height=21 xoffset=-1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=1186 x=67 y=196 width=25 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1187 x=155 y=490 width=19 height=21 xoffset=-1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=1190 x=204 y=135 width=34 height=31 xoffset=-1 yoffset=8 xadvance=33 page=0 chnl=0 +char id=1192 x=420 y=415 width=25 height=25 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 +char id=1194 x=238 y=135 width=22 height=31 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1196 x=105 y=256 width=21 height=29 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 +char id=1197 x=174 y=490 width=17 height=21 xoffset=-1 yoffset=15 xadvance=14 page=0 chnl=0 +char id=1202 x=92 y=196 width=27 height=30 xoffset=-1 yoffset=8 xadvance=25 page=0 chnl=0 +char id=1203 x=191 y=490 width=19 height=21 xoffset=-1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=1204 x=126 y=256 width=33 height=29 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=0 +char id=1205 x=210 y=490 width=24 height=21 xoffset=-1 yoffset=15 xadvance=22 page=0 chnl=0 +char id=1206 x=119 y=196 width=24 height=30 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1207 x=234 y=490 width=18 height=21 xoffset=-1 yoffset=15 xadvance=16 page=0 chnl=0 +char id=1212 x=445 y=415 width=29 height=25 xoffset=-1 yoffset=8 xadvance=28 page=0 chnl=0 +char id=1214 x=159 y=256 width=29 height=29 xoffset=-1 yoffset=8 xadvance=28 page=0 chnl=0 +char id=1217 x=143 y=196 width=32 height=30 xoffset=-1 yoffset=2 xadvance=30 page=0 chnl=0 +char id=1219 x=260 y=135 width=22 height=31 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=1221 x=188 y=256 width=24 height=29 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1223 x=175 y=196 width=25 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1225 x=212 y=256 width=25 height=29 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1227 x=237 y=256 width=24 height=29 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1228 x=252 y=490 width=18 height=21 xoffset=-1 yoffset=15 xadvance=16 page=0 chnl=0 +char id=1229 x=261 y=256 width=30 height=29 xoffset=-1 yoffset=8 xadvance=29 page=0 chnl=0 +char id=1232 x=200 y=196 width=25 height=30 xoffset=-1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=1233 x=474 y=415 width=16 height=25 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=1234 x=225 y=196 width=25 height=30 xoffset=-1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=1238 x=250 y=196 width=22 height=30 xoffset=-1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=1239 x=490 y=415 width=16 height=25 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=1240 x=0 y=440 width=24 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1242 x=272 y=196 width=24 height=30 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=1244 x=291 y=256 width=32 height=29 xoffset=-1 yoffset=3 xadvance=30 page=0 chnl=0 +char id=1246 x=296 y=196 width=20 height=30 xoffset=-1 yoffset=3 xadvance=19 page=0 chnl=0 +char id=1248 x=24 y=440 width=18 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 +char id=1250 x=246 y=285 width=25 height=28 xoffset=-1 yoffset=4 xadvance=23 page=0 chnl=0 +char id=1252 x=323 y=256 width=25 height=29 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=1254 x=316 y=196 width=24 height=30 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 +char id=1256 x=42 y=440 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1258 x=340 y=196 width=24 height=30 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 +char id=1260 x=364 y=196 width=23 height=30 xoffset=-1 yoffset=3 xadvance=21 page=0 chnl=0 +char id=1262 x=348 y=256 width=25 height=29 xoffset=-1 yoffset=4 xadvance=23 page=0 chnl=0 +char id=1263 x=373 y=256 width=18 height=29 xoffset=-1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=1264 x=387 y=196 width=25 height=30 xoffset=-1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=1265 x=391 y=256 width=18 height=29 xoffset=-1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=1266 x=64 y=72 width=25 height=32 xoffset=-1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=1267 x=282 y=135 width=18 height=31 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1268 x=409 y=256 width=24 height=29 xoffset=-1 yoffset=3 xadvance=22 page=0 chnl=0 +char id=1270 x=433 y=256 width=20 height=29 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=1271 x=270 y=490 width=14 height=21 xoffset=-1 yoffset=15 xadvance=12 page=0 chnl=0 +char id=1272 x=453 y=256 width=30 height=29 xoffset=-1 yoffset=3 xadvance=28 page=0 chnl=0 +char id=1274 x=89 y=72 width=20 height=32 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=1275 x=66 y=440 width=14 height=25 xoffset=-1 yoffset=15 xadvance=12 page=0 chnl=0 +char id=1276 x=412 y=196 width=25 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1281 x=80 y=440 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=1283 x=98 y=440 width=22 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=1284 x=120 y=440 width=28 height=25 xoffset=-1 yoffset=8 xadvance=26 page=0 chnl=0 +char id=1286 x=483 y=256 width=20 height=29 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=1288 x=148 y=440 width=32 height=25 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=0 +char id=1290 x=180 y=440 width=33 height=25 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=0 +char id=1292 x=213 y=440 width=24 height=25 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1294 x=237 y=440 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1296 x=262 y=440 width=17 height=25 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 +char id=1298 x=437 y=196 width=24 height=30 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1300 x=279 y=440 width=33 height=25 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=0 +char id=1306 x=461 y=196 width=24 height=30 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1308 x=312 y=440 width=32 height=25 xoffset=-1 yoffset=8 xadvance=30 page=0 chnl=0 +char id=1312 x=300 y=135 width=33 height=31 xoffset=-1 yoffset=8 xadvance=32 page=0 chnl=0 +char id=1314 x=333 y=135 width=34 height=31 xoffset=-1 yoffset=8 xadvance=33 page=0 chnl=0 +char id=8192 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8193 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=32 page=0 chnl=0 +char id=8194 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8195 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=32 page=0 chnl=0 +char id=8196 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8197 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8198 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=8199 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8200 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8201 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=8202 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=3 page=0 chnl=0 +char id=8203 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=8204 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=8224 x=0 y=285 width=16 height=29 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 +char id=8225 x=16 y=285 width=16 height=29 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 +char id=8239 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8240 x=172 y=314 width=34 height=26 xoffset=-1 yoffset=7 xadvance=32 page=0 chnl=0 +char id=8252 x=344 y=440 width=17 height=25 xoffset=3 yoffset=8 xadvance=21 page=0 chnl=0 +char id=8260 x=361 y=440 width=29 height=25 xoffset=-7 yoffset=8 xadvance=5 page=0 chnl=0 +char id=8286 x=503 y=256 width=6 height=29 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=8352 x=390 y=440 width=22 height=25 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 +char id=8353 x=394 y=0 width=23 height=33 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=0 +char id=8354 x=412 y=440 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=8356 x=435 y=440 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=8357 x=453 y=440 width=27 height=25 xoffset=-1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=8358 x=480 y=440 width=25 height=25 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=8359 x=0 y=465 width=32 height=25 xoffset=-1 yoffset=8 xadvance=30 page=0 chnl=0 +char id=8360 x=32 y=465 width=34 height=25 xoffset=-1 yoffset=8 xadvance=33 page=0 chnl=0 +char id=8361 x=66 y=465 width=28 height=25 xoffset=-1 yoffset=8 xadvance=26 page=0 chnl=0 +char id=8363 x=32 y=285 width=18 height=29 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=8364 x=94 y=465 width=24 height=25 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 +char id=8367 x=367 y=135 width=44 height=31 xoffset=-1 yoffset=8 xadvance=43 page=0 chnl=0 +char id=8368 x=411 y=135 width=18 height=31 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=8370 x=449 y=285 width=21 height=27 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=8372 x=118 y=465 width=17 height=25 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 +char id=8373 x=50 y=285 width=19 height=29 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 +char id=11364 x=429 y=135 width=24 height=31 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=11365 x=284 y=490 width=16 height=21 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=11367 x=485 y=196 width=25 height=30 xoffset=-1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=11368 x=271 y=285 width=18 height=28 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=11369 x=0 y=226 width=25 height=30 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 +char id=11370 x=289 y=285 width=19 height=28 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=11371 x=25 y=226 width=21 height=30 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=11372 x=300 y=490 width=16 height=21 xoffset=-1 yoffset=15 xadvance=14 page=0 chnl=0 +char id=11373 x=135 y=465 width=23 height=25 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 +char id=11378 x=158 y=465 width=37 height=25 xoffset=-1 yoffset=8 xadvance=34 page=0 chnl=0 +char id=11380 x=464 y=490 width=18 height=20 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 +char id=34 x=420 y=269 width=11 height=11 xoffset=1 yoffset=8 xadvance=13 page=1 chnl=0 +char id=42 x=180 y=269 width=14 height=16 xoffset=1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=44 x=431 y=269 width=8 height=11 xoffset=0 yoffset=26 xadvance=8 page=1 chnl=0 +char id=45 x=292 y=286 width=11 height=5 xoffset=0 yoffset=21 xadvance=11 page=1 chnl=0 +char id=46 x=505 y=24 width=6 height=7 xoffset=1 yoffset=26 xadvance=8 page=1 chnl=0 +char id=59 x=33 y=192 width=8 height=22 xoffset=1 yoffset=15 xadvance=9 page=1 chnl=0 +char id=61 x=297 y=269 width=20 height=12 xoffset=-1 yoffset=17 xadvance=18 page=1 chnl=0 +char id=80 x=0 y=0 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=82 x=20 y=0 width=24 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=84 x=44 y=0 width=21 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=88 x=65 y=0 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=89 x=90 y=0 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=90 x=115 y=0 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=94 x=218 y=269 width=17 height=15 xoffset=-1 yoffset=8 xadvance=15 page=1 chnl=0 +char id=95 x=400 y=286 width=19 height=4 xoffset=-1 yoffset=32 xadvance=16 page=1 chnl=0 +char id=96 x=100 y=286 width=10 height=8 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=97 x=18 y=215 width=16 height=18 xoffset=0 yoffset=15 xadvance=14 page=1 chnl=0 +char id=99 x=34 y=215 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=101 x=50 y=215 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=102 x=137 y=0 width=16 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=103 x=153 y=0 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=104 x=171 y=0 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=105 x=189 y=0 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=107 x=200 y=0 width=19 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=108 x=219 y=0 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=109 x=473 y=234 width=27 height=17 xoffset=-1 yoffset=15 xadvance=25 page=1 chnl=0 +char id=110 x=0 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=111 x=66 y=215 width=18 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=112 x=230 y=0 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=113 x=248 y=0 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=114 x=18 y=252 width=13 height=17 xoffset=-1 yoffset=15 xadvance=11 page=1 chnl=0 +char id=115 x=84 y=215 width=13 height=18 xoffset=0 yoffset=15 xadvance=12 page=1 chnl=0 +char id=116 x=41 y=192 width=11 height=22 xoffset=-1 yoffset=11 xadvance=9 page=1 chnl=0 +char id=117 x=97 y=215 width=18 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=118 x=115 y=215 width=18 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=119 x=133 y=215 width=25 height=18 xoffset=-1 yoffset=15 xadvance=23 page=1 chnl=0 +char id=120 x=31 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=121 x=266 y=0 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=122 x=49 y=252 width=16 height=17 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=126 x=110 y=286 width=17 height=8 xoffset=0 yoffset=19 xadvance=17 page=1 chnl=0 +char id=165 x=284 y=0 width=22 height=24 xoffset=-3 yoffset=8 xadvance=16 page=1 chnl=0 +char id=168 x=279 y=286 width=13 height=6 xoffset=-1 yoffset=10 xadvance=11 page=1 chnl=0 +char id=170 x=317 y=269 width=11 height=12 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=171 x=235 y=269 width=16 height=15 xoffset=-1 yoffset=16 xadvance=14 page=1 chnl=0 +char id=172 x=328 y=269 width=20 height=12 xoffset=-1 yoffset=17 xadvance=18 page=1 chnl=0 +char id=173 x=303 y=286 width=11 height=5 xoffset=0 yoffset=21 xadvance=11 page=1 chnl=0 +char id=175 x=314 y=286 width=13 height=5 xoffset=-1 yoffset=10 xadvance=11 page=1 chnl=0 +char id=176 x=348 y=269 width=12 height=12 xoffset=0 yoffset=8 xadvance=13 page=1 chnl=0 +char id=177 x=132 y=168 width=20 height=23 xoffset=-1 yoffset=9 xadvance=18 page=1 chnl=0 +char id=178 x=194 y=269 width=12 height=16 xoffset=-1 yoffset=8 xadvance=10 page=1 chnl=0 +char id=179 x=206 y=269 width=12 height=16 xoffset=-1 yoffset=8 xadvance=10 page=1 chnl=0 +char id=180 x=127 y=286 width=10 height=8 xoffset=2 yoffset=8 xadvance=11 page=1 chnl=0 +char id=181 x=306 y=0 width=18 height=24 xoffset=0 yoffset=15 xadvance=16 page=1 chnl=0 +char id=183 x=505 y=120 width=6 height=7 xoffset=1 yoffset=20 xadvance=8 page=1 chnl=0 +char id=184 x=39 y=286 width=10 height=10 xoffset=0 yoffset=29 xadvance=11 page=1 chnl=0 +char id=185 x=500 y=192 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=1 chnl=0 +char id=186 x=360 y=269 width=12 height=12 xoffset=-1 yoffset=8 xadvance=10 page=1 chnl=0 +char id=187 x=251 y=269 width=16 height=15 xoffset=-1 yoffset=17 xadvance=14 page=1 chnl=0 +char id=198 x=324 y=0 width=30 height=24 xoffset=-1 yoffset=8 xadvance=28 page=1 chnl=0 +char id=208 x=354 y=0 width=24 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=215 x=158 y=215 width=18 height=18 xoffset=0 yoffset=14 xadvance=18 page=1 chnl=0 +char id=222 x=378 y=0 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=227 x=398 y=0 width=16 height=24 xoffset=0 yoffset=9 xadvance=14 page=1 chnl=0 +char id=228 x=152 y=168 width=16 height=23 xoffset=0 yoffset=10 xadvance=14 page=1 chnl=0 +char id=230 x=176 y=215 width=22 height=18 xoffset=0 yoffset=15 xadvance=21 page=1 chnl=0 +char id=231 x=414 y=0 width=16 height=24 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=235 x=168 y=168 width=16 height=23 xoffset=-1 yoffset=10 xadvance=14 page=1 chnl=0 +char id=236 x=430 y=0 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=237 x=441 y=0 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=238 x=452 y=0 width=13 height=24 xoffset=-2 yoffset=8 xadvance=9 page=1 chnl=0 +char id=239 x=52 y=192 width=12 height=22 xoffset=-2 yoffset=10 xadvance=9 page=1 chnl=0 +char id=241 x=184 y=168 width=18 height=23 xoffset=-1 yoffset=9 xadvance=16 page=1 chnl=0 +char id=245 x=465 y=0 width=18 height=24 xoffset=-1 yoffset=9 xadvance=16 page=1 chnl=0 +char id=246 x=202 y=168 width=18 height=23 xoffset=-1 yoffset=10 xadvance=16 page=1 chnl=0 +char id=248 x=483 y=0 width=18 height=24 xoffset=-1 yoffset=12 xadvance=16 page=1 chnl=0 +char id=252 x=220 y=168 width=18 height=23 xoffset=-1 yoffset=10 xadvance=16 page=1 chnl=0 +char id=257 x=64 y=192 width=16 height=22 xoffset=0 yoffset=11 xadvance=14 page=1 chnl=0 +char id=261 x=238 y=168 width=16 height=23 xoffset=0 yoffset=15 xadvance=14 page=1 chnl=0 +char id=267 x=254 y=168 width=16 height=23 xoffset=-1 yoffset=10 xadvance=14 page=1 chnl=0 +char id=272 x=0 y=24 width=24 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=275 x=80 y=192 width=16 height=22 xoffset=-1 yoffset=11 xadvance=14 page=1 chnl=0 +char id=279 x=270 y=168 width=16 height=23 xoffset=-1 yoffset=10 xadvance=14 page=1 chnl=0 +char id=281 x=286 y=168 width=16 height=23 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=294 x=24 y=24 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=295 x=49 y=24 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=297 x=96 y=192 width=13 height=22 xoffset=-2 yoffset=10 xadvance=9 page=1 chnl=0 +char id=301 x=67 y=24 width=12 height=24 xoffset=-2 yoffset=8 xadvance=9 page=1 chnl=0 +char id=305 x=500 y=234 width=11 height=17 xoffset=-1 yoffset=15 xadvance=9 page=1 chnl=0 +char id=312 x=65 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=317 x=79 y=24 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=318 x=101 y=24 width=15 height=24 xoffset=-1 yoffset=8 xadvance=13 page=1 chnl=0 +char id=319 x=116 y=24 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=320 x=138 y=24 width=15 height=24 xoffset=-1 yoffset=8 xadvance=14 page=1 chnl=0 +char id=321 x=153 y=24 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=322 x=175 y=24 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=324 x=186 y=24 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=328 x=204 y=24 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=329 x=222 y=24 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=331 x=242 y=24 width=16 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=333 x=109 y=192 width=18 height=22 xoffset=-1 yoffset=11 xadvance=16 page=1 chnl=0 +char id=339 x=198 y=215 width=24 height=18 xoffset=-1 yoffset=15 xadvance=23 page=1 chnl=0 +char id=341 x=258 y=24 width=13 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=345 x=271 y=24 width=13 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=351 x=284 y=24 width=13 height=24 xoffset=0 yoffset=15 xadvance=12 page=1 chnl=0 +char id=357 x=297 y=24 width=15 height=24 xoffset=-1 yoffset=9 xadvance=13 page=1 chnl=0 +char id=358 x=312 y=24 width=21 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=359 x=127 y=192 width=11 height=22 xoffset=-1 yoffset=11 xadvance=9 page=1 chnl=0 +char id=361 x=302 y=168 width=18 height=23 xoffset=-1 yoffset=10 xadvance=16 page=1 chnl=0 +char id=363 x=138 y=192 width=18 height=22 xoffset=-1 yoffset=11 xadvance=16 page=1 chnl=0 +char id=371 x=320 y=168 width=18 height=23 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=378 x=333 y=24 width=16 height=24 xoffset=-1 yoffset=8 xadvance=14 page=1 chnl=0 +char id=380 x=156 y=192 width=16 height=22 xoffset=-1 yoffset=10 xadvance=14 page=1 chnl=0 +char id=382 x=349 y=24 width=16 height=24 xoffset=-1 yoffset=8 xadvance=14 page=1 chnl=0 +char id=383 x=365 y=24 width=16 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=884 x=504 y=48 width=7 height=10 xoffset=-1 yoffset=5 xadvance=6 page=1 chnl=0 +char id=885 x=439 y=269 width=8 height=11 xoffset=0 yoffset=29 xadvance=6 page=1 chnl=0 +char id=890 x=137 y=286 width=8 height=8 xoffset=3 yoffset=31 xadvance=11 page=1 chnl=0 +char id=894 x=172 y=192 width=8 height=22 xoffset=1 yoffset=15 xadvance=9 page=1 chnl=0 +char id=900 x=504 y=144 width=7 height=10 xoffset=1 yoffset=5 xadvance=9 page=1 chnl=0 +char id=901 x=49 y=286 width=13 height=10 xoffset=-1 yoffset=6 xadvance=11 page=1 chnl=0 +char id=903 x=222 y=286 width=6 height=7 xoffset=1 yoffset=14 xadvance=8 page=1 chnl=0 +char id=913 x=381 y=24 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=914 x=406 y=24 width=21 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=915 x=427 y=24 width=20 height=24 xoffset=-1 yoffset=8 xadvance=19 page=1 chnl=0 +char id=916 x=447 y=24 width=23 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=917 x=470 y=24 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=918 x=0 y=48 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=919 x=22 y=48 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=921 x=492 y=24 width=13 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=922 x=47 y=48 width=25 height=24 xoffset=0 yoffset=8 xadvance=23 page=1 chnl=0 +char id=923 x=72 y=48 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=924 x=97 y=48 width=30 height=24 xoffset=-1 yoffset=8 xadvance=28 page=1 chnl=0 +char id=926 x=127 y=48 width=20 height=24 xoffset=0 yoffset=8 xadvance=20 page=1 chnl=0 +char id=928 x=147 y=48 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=929 x=172 y=48 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=931 x=192 y=48 width=20 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=932 x=212 y=48 width=21 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=933 x=233 y=48 width=23 height=24 xoffset=0 yoffset=8 xadvance=22 page=1 chnl=0 +char id=934 x=256 y=48 width=25 height=24 xoffset=-1 yoffset=8 xadvance=24 page=1 chnl=0 +char id=935 x=281 y=48 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=936 x=306 y=48 width=27 height=24 xoffset=-1 yoffset=8 xadvance=26 page=1 chnl=0 +char id=937 x=333 y=48 width=25 height=24 xoffset=-1 yoffset=8 xadvance=24 page=1 chnl=0 +char id=945 x=222 y=215 width=19 height=18 xoffset=0 yoffset=15 xadvance=19 page=1 chnl=0 +char id=949 x=241 y=215 width=14 height=18 xoffset=0 yoffset=15 xadvance=14 page=1 chnl=0 +char id=954 x=255 y=215 width=19 height=18 xoffset=-1 yoffset=14 xadvance=17 page=1 chnl=0 +char id=957 x=83 y=252 width=17 height=17 xoffset=-1 yoffset=15 xadvance=15 page=1 chnl=0 +char id=959 x=274 y=215 width=18 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=960 x=376 y=192 width=19 height=19 xoffset=0 yoffset=14 xadvance=19 page=1 chnl=0 +char id=963 x=395 y=192 width=18 height=19 xoffset=0 yoffset=14 xadvance=17 page=1 chnl=0 +char id=964 x=292 y=215 width=15 height=18 xoffset=-1 yoffset=15 xadvance=13 page=1 chnl=0 +char id=965 x=307 y=215 width=17 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=967 x=358 y=48 width=17 height=24 xoffset=-1 yoffset=15 xadvance=15 page=1 chnl=0 +char id=969 x=324 y=215 width=22 height=18 xoffset=0 yoffset=15 xadvance=22 page=1 chnl=0 +char id=970 x=375 y=48 width=14 height=24 xoffset=-3 yoffset=9 xadvance=9 page=1 chnl=0 +char id=971 x=389 y=48 width=17 height=24 xoffset=-1 yoffset=9 xadvance=16 page=1 chnl=0 +char id=978 x=406 y=48 width=23 height=24 xoffset=-2 yoffset=8 xadvance=20 page=1 chnl=0 +char id=983 x=338 y=168 width=18 height=23 xoffset=0 yoffset=15 xadvance=17 page=1 chnl=0 +char id=984 x=429 y=48 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=986 x=449 y=48 width=20 height=24 xoffset=-1 yoffset=8 xadvance=19 page=1 chnl=0 +char id=987 x=469 y=48 width=15 height=24 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=988 x=484 y=48 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=989 x=0 y=72 width=17 height=24 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=992 x=17 y=72 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=997 x=42 y=72 width=18 height=24 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1003 x=413 y=192 width=21 height=19 xoffset=-1 yoffset=15 xadvance=19 page=1 chnl=0 +char id=1008 x=346 y=215 width=18 height=18 xoffset=0 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1010 x=364 y=215 width=15 height=18 xoffset=0 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1013 x=379 y=215 width=12 height=18 xoffset=0 yoffset=15 xadvance=12 page=1 chnl=0 +char id=1014 x=391 y=215 width=12 height=18 xoffset=0 yoffset=15 xadvance=12 page=1 chnl=0 +char id=1015 x=60 y=72 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1018 x=80 y=72 width=30 height=24 xoffset=-1 yoffset=8 xadvance=28 page=1 chnl=0 +char id=1019 x=110 y=72 width=24 height=24 xoffset=0 yoffset=15 xadvance=23 page=1 chnl=0 +char id=1020 x=134 y=72 width=21 height=24 xoffset=-3 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1030 x=155 y=72 width=13 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=1034 x=168 y=72 width=33 height=24 xoffset=-1 yoffset=8 xadvance=32 page=1 chnl=0 +char id=1040 x=201 y=72 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1041 x=226 y=72 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1042 x=246 y=72 width=21 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=1043 x=267 y=72 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1045 x=287 y=72 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=1046 x=309 y=72 width=32 height=24 xoffset=-1 yoffset=8 xadvance=30 page=1 chnl=0 +char id=1048 x=341 y=72 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1050 x=366 y=72 width=24 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=1052 x=390 y=72 width=30 height=24 xoffset=-1 yoffset=8 xadvance=29 page=1 chnl=0 +char id=1053 x=420 y=72 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1055 x=445 y=72 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1056 x=470 y=72 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1058 x=490 y=72 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=1 chnl=0 +char id=1060 x=0 y=96 width=25 height=24 xoffset=-1 yoffset=8 xadvance=24 page=1 chnl=0 +char id=1061 x=25 y=96 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1063 x=50 y=96 width=24 height=24 xoffset=-1 yoffset=8 xadvance=22 page=1 chnl=0 +char id=1064 x=74 y=96 width=33 height=24 xoffset=-1 yoffset=8 xadvance=31 page=1 chnl=0 +char id=1066 x=107 y=96 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1067 x=132 y=96 width=30 height=24 xoffset=-1 yoffset=8 xadvance=28 page=1 chnl=0 +char id=1068 x=162 y=96 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1071 x=182 y=96 width=23 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=1072 x=403 y=215 width=16 height=18 xoffset=0 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1074 x=100 y=252 width=17 height=17 xoffset=-1 yoffset=15 xadvance=15 page=1 chnl=0 +char id=1075 x=117 y=252 width=14 height=17 xoffset=-1 yoffset=15 xadvance=12 page=1 chnl=0 +char id=1077 x=419 y=215 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1078 x=131 y=252 width=23 height=17 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=1079 x=435 y=215 width=15 height=18 xoffset=-1 yoffset=15 xadvance=13 page=1 chnl=0 +char id=1080 x=154 y=252 width=19 height=17 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1081 x=205 y=96 width=19 height=24 xoffset=-1 yoffset=8 xadvance=17 page=1 chnl=0 +char id=1082 x=173 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1083 x=450 y=215 width=18 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1084 x=468 y=215 width=22 height=18 xoffset=-1 yoffset=15 xadvance=20 page=1 chnl=0 +char id=1085 x=191 y=252 width=19 height=17 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1086 x=490 y=215 width=18 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1087 x=210 y=252 width=19 height=17 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1088 x=224 y=96 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1089 x=0 y=234 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1090 x=229 y=252 width=16 height=17 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1091 x=242 y=96 width=18 height=24 xoffset=-1 yoffset=15 xadvance=15 page=1 chnl=0 +char id=1093 x=245 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=15 page=1 chnl=0 +char id=1095 x=263 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1096 x=281 y=252 width=26 height=17 xoffset=-1 yoffset=15 xadvance=24 page=1 chnl=0 +char id=1098 x=307 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1099 x=325 y=252 width=22 height=17 xoffset=-1 yoffset=15 xadvance=20 page=1 chnl=0 +char id=1100 x=347 y=252 width=15 height=17 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1101 x=16 y=234 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1102 x=32 y=234 width=23 height=18 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=1103 x=362 y=252 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1105 x=260 y=96 width=16 height=24 xoffset=-1 yoffset=9 xadvance=14 page=1 chnl=0 +char id=1107 x=276 y=96 width=15 height=24 xoffset=-1 yoffset=8 xadvance=12 page=1 chnl=0 +char id=1108 x=55 y=234 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1109 x=71 y=234 width=13 height=18 xoffset=-1 yoffset=15 xadvance=11 page=1 chnl=0 +char id=1110 x=291 y=96 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=1111 x=302 y=96 width=13 height=24 xoffset=-2 yoffset=8 xadvance=9 page=1 chnl=0 +char id=1113 x=84 y=234 width=23 height=18 xoffset=-1 yoffset=15 xadvance=22 page=1 chnl=0 +char id=1114 x=380 y=252 width=24 height=17 xoffset=-1 yoffset=15 xadvance=23 page=1 chnl=0 +char id=1115 x=315 y=96 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=1116 x=333 y=96 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=1117 x=351 y=96 width=19 height=24 xoffset=-1 yoffset=8 xadvance=17 page=1 chnl=0 +char id=1119 x=180 y=192 width=19 height=22 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1121 x=107 y=234 width=23 height=18 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=1122 x=370 y=96 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1123 x=395 y=96 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=1125 x=130 y=234 width=22 height=18 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=1126 x=413 y=96 width=31 height=24 xoffset=-1 yoffset=8 xadvance=29 page=1 chnl=0 +char id=1127 x=404 y=252 width=23 height=17 xoffset=-1 yoffset=15 xadvance=20 page=1 chnl=0 +char id=1128 x=444 y=96 width=42 height=24 xoffset=-1 yoffset=8 xadvance=40 page=1 chnl=0 +char id=1129 x=427 y=252 width=31 height=17 xoffset=-1 yoffset=15 xadvance=29 page=1 chnl=0 +char id=1130 x=0 y=120 width=32 height=24 xoffset=-1 yoffset=8 xadvance=30 page=1 chnl=0 +char id=1131 x=458 y=252 width=23 height=17 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=1132 x=32 y=120 width=43 height=24 xoffset=-1 yoffset=8 xadvance=41 page=1 chnl=0 +char id=1133 x=0 y=269 width=31 height=17 xoffset=-1 yoffset=15 xadvance=29 page=1 chnl=0 +char id=1136 x=75 y=120 width=30 height=24 xoffset=-1 yoffset=8 xadvance=28 page=1 chnl=0 +char id=1139 x=152 y=234 width=17 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1141 x=169 y=234 width=20 height=18 xoffset=-1 yoffset=15 xadvance=18 page=1 chnl=0 +char id=1145 x=105 y=120 width=32 height=24 xoffset=-1 yoffset=15 xadvance=30 page=1 chnl=0 +char id=1151 x=356 y=168 width=23 height=23 xoffset=-1 yoffset=10 xadvance=21 page=1 chnl=0 +char id=1152 x=486 y=96 width=20 height=24 xoffset=-1 yoffset=8 xadvance=19 page=1 chnl=0 +char id=1153 x=379 y=168 width=15 height=23 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1154 x=287 y=269 width=10 height=13 xoffset=-1 yoffset=26 xadvance=7 page=1 chnl=0 +char id=1155 x=228 y=286 width=23 height=7 xoffset=-12 yoffset=9 xadvance=0 page=1 chnl=0 +char id=1156 x=145 y=286 width=30 height=8 xoffset=-15 yoffset=8 xadvance=0 page=1 chnl=0 +char id=1157 x=175 y=286 width=17 height=8 xoffset=-9 yoffset=8 xadvance=0 page=1 chnl=0 +char id=1158 x=192 y=286 width=17 height=8 xoffset=-9 yoffset=8 xadvance=0 page=1 chnl=0 +char id=1159 x=62 y=286 width=38 height=9 xoffset=-16 yoffset=3 xadvance=0 page=1 chnl=0 +char id=1164 x=137 y=120 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1165 x=481 y=252 width=15 height=17 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1166 x=157 y=120 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1167 x=177 y=120 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1170 x=195 y=120 width=20 height=24 xoffset=-1 yoffset=8 xadvance=19 page=1 chnl=0 +char id=1171 x=496 y=252 width=15 height=17 xoffset=-1 yoffset=15 xadvance=13 page=1 chnl=0 +char id=1173 x=215 y=120 width=17 height=24 xoffset=-1 yoffset=15 xadvance=15 page=1 chnl=0 +char id=1177 x=394 y=168 width=15 height=23 xoffset=-1 yoffset=15 xadvance=13 page=1 chnl=0 +char id=1180 x=232 y=120 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1181 x=31 y=269 width=19 height=17 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1182 x=257 y=120 width=24 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=1183 x=50 y=269 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1184 x=281 y=120 width=28 height=24 xoffset=-1 yoffset=8 xadvance=26 page=1 chnl=0 +char id=1185 x=68 y=269 width=20 height=17 xoffset=-1 yoffset=15 xadvance=18 page=1 chnl=0 +char id=1188 x=309 y=120 width=32 height=24 xoffset=-1 yoffset=8 xadvance=30 page=1 chnl=0 +char id=1189 x=88 y=269 width=23 height=17 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=1191 x=341 y=120 width=25 height=24 xoffset=-1 yoffset=15 xadvance=23 page=1 chnl=0 +char id=1193 x=189 y=234 width=18 height=18 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1195 x=409 y=168 width=16 height=23 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1198 x=366 y=120 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1199 x=391 y=120 width=20 height=24 xoffset=-1 yoffset=15 xadvance=18 page=1 chnl=0 +char id=1200 x=411 y=120 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1201 x=436 y=120 width=20 height=24 xoffset=-1 yoffset=15 xadvance=18 page=1 chnl=0 +char id=1208 x=456 y=120 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1209 x=111 y=269 width=19 height=17 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1210 x=481 y=120 width=24 height=24 xoffset=-1 yoffset=8 xadvance=22 page=1 chnl=0 +char id=1211 x=0 y=144 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=1 chnl=0 +char id=1213 x=434 y=192 width=20 height=19 xoffset=-1 yoffset=14 xadvance=18 page=1 chnl=0 +char id=1215 x=425 y=168 width=20 height=23 xoffset=-1 yoffset=14 xadvance=18 page=1 chnl=0 +char id=1216 x=18 y=144 width=13 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=1218 x=31 y=144 width=23 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=1220 x=54 y=144 width=16 height=24 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1222 x=199 y=192 width=18 height=22 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1224 x=70 y=144 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1226 x=217 y=192 width=19 height=22 xoffset=-1 yoffset=15 xadvance=18 page=1 chnl=0 +char id=1230 x=236 y=192 width=22 height=22 xoffset=-1 yoffset=15 xadvance=20 page=1 chnl=0 +char id=1231 x=88 y=144 width=13 height=24 xoffset=-1 yoffset=8 xadvance=11 page=1 chnl=0 +char id=1235 x=445 y=168 width=16 height=23 xoffset=0 yoffset=10 xadvance=14 page=1 chnl=0 +char id=1236 x=101 y=144 width=30 height=24 xoffset=-1 yoffset=8 xadvance=29 page=1 chnl=0 +char id=1237 x=207 y=234 width=22 height=18 xoffset=-1 yoffset=15 xadvance=20 page=1 chnl=0 +char id=1241 x=229 y=234 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1243 x=461 y=168 width=16 height=23 xoffset=-1 yoffset=10 xadvance=14 page=1 chnl=0 +char id=1245 x=258 y=192 width=23 height=22 xoffset=-1 yoffset=10 xadvance=21 page=1 chnl=0 +char id=1247 x=477 y=168 width=15 height=23 xoffset=-1 yoffset=10 xadvance=13 page=1 chnl=0 +char id=1249 x=245 y=234 width=13 height=18 xoffset=-1 yoffset=15 xadvance=12 page=1 chnl=0 +char id=1251 x=281 y=192 width=19 height=22 xoffset=-1 yoffset=10 xadvance=17 page=1 chnl=0 +char id=1253 x=300 y=192 width=19 height=22 xoffset=-1 yoffset=10 xadvance=17 page=1 chnl=0 +char id=1255 x=492 y=168 width=18 height=23 xoffset=-1 yoffset=10 xadvance=16 page=1 chnl=0 +char id=1257 x=258 y=234 width=17 height=18 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1259 x=0 y=192 width=17 height=23 xoffset=-1 yoffset=10 xadvance=16 page=1 chnl=0 +char id=1261 x=17 y=192 width=16 height=23 xoffset=-1 yoffset=10 xadvance=14 page=1 chnl=0 +char id=1269 x=319 y=192 width=18 height=22 xoffset=-1 yoffset=10 xadvance=16 page=1 chnl=0 +char id=1273 x=337 y=192 width=22 height=22 xoffset=-1 yoffset=10 xadvance=20 page=1 chnl=0 +char id=1277 x=131 y=144 width=16 height=24 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1278 x=147 y=144 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=1279 x=130 y=269 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1280 x=172 y=144 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=1282 x=192 y=144 width=30 height=24 xoffset=-1 yoffset=8 xadvance=29 page=1 chnl=0 +char id=1285 x=275 y=234 width=19 height=18 xoffset=-1 yoffset=15 xadvance=17 page=1 chnl=0 +char id=1287 x=359 y=192 width=17 height=22 xoffset=-1 yoffset=15 xadvance=15 page=1 chnl=0 +char id=1289 x=454 y=192 width=22 height=19 xoffset=-1 yoffset=15 xadvance=20 page=1 chnl=0 +char id=1291 x=476 y=192 width=24 height=19 xoffset=-1 yoffset=15 xadvance=22 page=1 chnl=0 +char id=1293 x=294 y=234 width=16 height=18 xoffset=-1 yoffset=15 xadvance=14 page=1 chnl=0 +char id=1295 x=0 y=215 width=18 height=19 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1297 x=310 y=234 width=15 height=18 xoffset=-1 yoffset=15 xadvance=13 page=1 chnl=0 +char id=1299 x=222 y=144 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1301 x=325 y=234 width=23 height=18 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=1302 x=240 y=144 width=28 height=24 xoffset=-1 yoffset=8 xadvance=26 page=1 chnl=0 +char id=1303 x=268 y=144 width=25 height=24 xoffset=-1 yoffset=15 xadvance=22 page=1 chnl=0 +char id=1304 x=293 y=144 width=33 height=24 xoffset=-1 yoffset=8 xadvance=31 page=1 chnl=0 +char id=1305 x=348 y=234 width=26 height=18 xoffset=-1 yoffset=15 xadvance=24 page=1 chnl=0 +char id=1307 x=326 y=144 width=18 height=24 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1309 x=374 y=234 width=25 height=18 xoffset=-1 yoffset=15 xadvance=22 page=1 chnl=0 +char id=1310 x=344 y=144 width=24 height=24 xoffset=-1 yoffset=8 xadvance=21 page=1 chnl=0 +char id=1311 x=148 y=269 width=18 height=17 xoffset=-1 yoffset=15 xadvance=16 page=1 chnl=0 +char id=1313 x=368 y=144 width=24 height=24 xoffset=-1 yoffset=15 xadvance=23 page=1 chnl=0 +char id=1315 x=392 y=144 width=25 height=24 xoffset=-1 yoffset=15 xadvance=24 page=1 chnl=0 +char id=8210 x=327 y=286 width=19 height=5 xoffset=-1 yoffset=21 xadvance=16 page=1 chnl=0 +char id=8211 x=327 y=286 width=19 height=5 xoffset=-1 yoffset=21 xadvance=16 page=1 chnl=0 +char id=8212 x=346 y=286 width=35 height=5 xoffset=-1 yoffset=21 xadvance=32 page=1 chnl=0 +char id=8213 x=346 y=286 width=35 height=5 xoffset=-1 yoffset=21 xadvance=32 page=1 chnl=0 +char id=8214 x=501 y=0 width=8 height=23 xoffset=1 yoffset=12 xadvance=9 page=1 chnl=0 +char id=8215 x=209 y=286 width=13 height=8 xoffset=2 yoffset=31 xadvance=15 page=1 chnl=0 +char id=8216 x=447 y=269 width=8 height=11 xoffset=0 yoffset=8 xadvance=8 page=1 chnl=0 +char id=8217 x=455 y=269 width=8 height=11 xoffset=0 yoffset=8 xadvance=8 page=1 chnl=0 +char id=8218 x=463 y=269 width=8 height=11 xoffset=0 yoffset=26 xadvance=8 page=1 chnl=0 +char id=8219 x=471 y=269 width=8 height=11 xoffset=0 yoffset=8 xadvance=8 page=1 chnl=0 +char id=8220 x=479 y=269 width=14 height=11 xoffset=0 yoffset=8 xadvance=14 page=1 chnl=0 +char id=8221 x=493 y=269 width=14 height=11 xoffset=0 yoffset=8 xadvance=14 page=1 chnl=0 +char id=8222 x=0 y=286 width=14 height=11 xoffset=0 yoffset=26 xadvance=14 page=1 chnl=0 +char id=8223 x=14 y=286 width=14 height=11 xoffset=0 yoffset=8 xadvance=14 page=1 chnl=0 +char id=8226 x=28 y=286 width=11 height=11 xoffset=0 yoffset=15 xadvance=11 page=1 chnl=0 +char id=8230 x=251 y=286 width=28 height=7 xoffset=2 yoffset=26 xadvance=32 page=1 chnl=0 +char id=8242 x=372 y=269 width=10 height=12 xoffset=-1 yoffset=6 xadvance=8 page=1 chnl=0 +char id=8243 x=382 y=269 width=16 height=12 xoffset=-1 yoffset=6 xadvance=13 page=1 chnl=0 +char id=8244 x=398 y=269 width=22 height=12 xoffset=-1 yoffset=6 xadvance=20 page=1 chnl=0 +char id=8249 x=267 y=269 width=10 height=15 xoffset=-1 yoffset=16 xadvance=8 page=1 chnl=0 +char id=8250 x=277 y=269 width=10 height=15 xoffset=-1 yoffset=17 xadvance=8 page=1 chnl=0 +char id=8254 x=381 y=286 width=19 height=5 xoffset=-1 yoffset=10 xadvance=16 page=1 chnl=0 +char id=8355 x=417 y=144 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=8365 x=437 y=144 width=25 height=24 xoffset=0 yoffset=8 xadvance=23 page=1 chnl=0 +char id=8366 x=462 y=144 width=21 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=8369 x=483 y=144 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=1 chnl=0 +char id=8371 x=0 y=168 width=25 height=24 xoffset=-1 yoffset=8 xadvance=23 page=1 chnl=0 +char id=11360 x=25 y=168 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=11361 x=47 y=168 width=12 height=24 xoffset=-1 yoffset=8 xadvance=9 page=1 chnl=0 +char id=11362 x=59 y=168 width=22 height=24 xoffset=-1 yoffset=8 xadvance=20 page=1 chnl=0 +char id=11363 x=81 y=168 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=11366 x=101 y=168 width=12 height=24 xoffset=-1 yoffset=11 xadvance=10 page=1 chnl=0 +char id=11377 x=399 y=234 width=23 height=18 xoffset=-1 yoffset=15 xadvance=21 page=1 chnl=0 +char id=11379 x=422 y=234 width=30 height=18 xoffset=-1 yoffset=15 xadvance=28 page=1 chnl=0 +char id=11381 x=113 y=168 width=19 height=24 xoffset=-1 yoffset=8 xadvance=18 page=1 chnl=0 +char id=11382 x=166 y=269 width=14 height=17 xoffset=-1 yoffset=15 xadvance=12 page=1 chnl=0 +char id=11383 x=452 y=234 width=21 height=18 xoffset=0 yoffset=15 xadvance=21 page=1 chnl=0 +kernings count=22648 +kerning first=107 second=100 amount=-1 +kerning first=296 second=275 amount=-1 +kerning first=242 second=44 amount=-2 +kerning first=216 second=45 amount=-1 +kerning first=270 second=46 amount=-1 +kerning first=199 second=230 amount=-1 +kerning first=332 second=66 amount=-1 +kerning first=369 second=367 amount=-1 +kerning first=222 second=327 amount=-1 +kerning first=338 second=346 amount=-1 +kerning first=8220 second=380 amount=-1 +kerning first=67 second=65 amount=-2 +kerning first=210 second=66 amount=-1 +kerning first=200 second=67 amount=-1 +kerning first=208 second=68 amount=-1 +kerning first=274 second=69 amount=-1 +kerning first=332 second=70 amount=-1 +kerning first=204 second=71 amount=-1 +kerning first=216 second=72 amount=-1 +kerning first=198 second=73 amount=-1 +kerning first=216 second=74 amount=-1 +kerning first=210 second=75 amount=-1 +kerning first=198 second=76 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=338 second=78 amount=-1 +kerning first=304 second=79 amount=-1 +kerning first=262 second=80 amount=-1 +kerning first=67 second=81 amount=-2 +kerning first=202 second=82 amount=-1 +kerning first=258 second=83 amount=-2 +kerning first=8222 second=84 amount=-3 +kerning first=8222 second=85 amount=-2 +kerning first=8218 second=86 amount=-3 +kerning first=8250 second=87 amount=-2 +kerning first=208 second=89 amount=-1 +kerning first=286 second=90 amount=-1 +kerning first=274 second=97 amount=-1 +kerning first=103 second=99 amount=-1 +kerning first=374 second=100 amount=-2 +kerning first=264 second=101 amount=-1 +kerning first=198 second=102 amount=-1 +kerning first=246 second=103 amount=-1 +kerning first=380 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=266 second=109 amount=-1 +kerning first=8216 second=110 amount=-1 +kerning first=364 second=111 amount=-1 +kerning first=316 second=113 amount=-1 +kerning first=266 second=114 amount=-1 +kerning first=1052 second=1105 amount=-1 +kerning first=286 second=117 amount=-1 +kerning first=69 second=119 amount=-1 +kerning first=278 second=120 amount=-1 +kerning first=316 second=121 amount=-1 +kerning first=368 second=122 amount=-1 +kerning first=220 second=379 amount=-1 +kerning first=286 second=171 amount=-1 +kerning first=240 second=187 amount=-1 +kerning first=87 second=192 amount=-3 +kerning first=332 second=193 amount=-2 +kerning first=278 second=194 amount=-1 +kerning first=45 second=195 amount=-2 +kerning first=218 second=196 amount=-2 +kerning first=370 second=197 amount=-2 +kerning first=332 second=198 amount=-2 +kerning first=204 second=199 amount=-1 +kerning first=278 second=200 amount=-1 +kerning first=8250 second=201 amount=-3 +kerning first=216 second=202 amount=-1 +kerning first=212 second=203 amount=-1 +kerning first=290 second=204 amount=-1 +kerning first=8250 second=205 amount=-3 +kerning first=45 second=206 amount=-3 +kerning first=274 second=207 amount=-1 +kerning first=272 second=209 amount=-1 +kerning first=192 second=210 amount=-1 +kerning first=258 second=211 amount=-1 +kerning first=260 second=212 amount=-1 +kerning first=65 second=213 amount=-1 +kerning first=256 second=214 amount=-1 +kerning first=218 second=216 amount=-1 +kerning first=346 second=217 amount=-1 +kerning first=210 second=218 amount=-1 +kerning first=121 second=223 amount=-1 +kerning first=8216 second=220 amount=-1 +kerning first=71 second=221 amount=-1 +kerning first=338 second=223 amount=-1 +kerning first=218 second=224 amount=-1 +kerning first=250 second=225 amount=-1 +kerning first=364 second=226 amount=-2 +kerning first=344 second=227 amount=-1 +kerning first=218 second=228 amount=-1 +kerning first=107 second=229 amount=-1 +kerning first=316 second=230 amount=-1 +kerning first=113 second=231 amount=-1 +kerning first=364 second=232 amount=-1 +kerning first=206 second=233 amount=-1 +kerning first=268 second=234 amount=-1 +kerning first=87 second=235 amount=-1 +kerning first=119 second=237 amount=-1 +kerning first=194 second=240 amount=-1 +kerning first=380 second=241 amount=-1 +kerning first=268 second=242 amount=-1 +kerning first=382 second=243 amount=-1 +kerning first=298 second=245 amount=-1 +kerning first=344 second=246 amount=-1 +kerning first=87 second=248 amount=-2 +kerning first=196 second=249 amount=-1 +kerning first=268 second=250 amount=-1 +kerning first=250 second=251 amount=-1 +kerning first=103 second=252 amount=-1 +kerning first=364 second=253 amount=-1 +kerning first=113 second=254 amount=-1 +kerning first=374 second=255 amount=-1 +kerning first=8250 second=256 amount=-2 +kerning first=8216 second=257 amount=-1 +kerning first=356 second=259 amount=-2 +kerning first=71 second=260 amount=-1 +kerning first=202 second=261 amount=-1 +kerning first=298 second=262 amount=-1 +kerning first=89 second=263 amount=-2 +kerning first=85 second=264 amount=-1 +kerning first=206 second=266 amount=-1 +kerning first=258 second=267 amount=-1 +kerning first=220 second=268 amount=-1 +kerning first=380 second=269 amount=-1 +kerning first=89 second=270 amount=-1 +kerning first=99 second=271 amount=-1 +kerning first=107 second=273 amount=-1 +kerning first=332 second=274 amount=-1 +kerning first=75 second=275 amount=-1 +kerning first=380 second=277 amount=-1 +kerning first=79 second=278 amount=-1 +kerning first=280 second=280 amount=-1 +kerning first=364 second=281 amount=-1 +kerning first=198 second=282 amount=-1 +kerning first=65 second=283 amount=-1 +kerning first=73 second=284 amount=-1 +kerning first=262 second=286 amount=-2 +kerning first=226 second=287 amount=-1 +kerning first=280 second=288 amount=-1 +kerning first=334 second=289 amount=-1 +kerning first=366 second=290 amount=-1 +kerning first=302 second=291 amount=-1 +kerning first=207 second=249 amount=-1 +kerning first=45 second=296 amount=-3 +kerning first=336 second=298 amount=-1 +kerning first=85 second=223 amount=-1 +kerning first=332 second=302 amount=-1 +kerning first=111 second=303 amount=-1 +kerning first=214 second=304 amount=-1 +kerning first=370 second=305 amount=-1 +kerning first=266 second=311 amount=-1 +kerning first=8250 second=313 amount=-3 +kerning first=282 second=314 amount=-1 +kerning first=376 second=315 amount=-1 +kerning first=45 second=316 amount=-1 +kerning first=214 second=317 amount=-1 +kerning first=109 second=318 amount=-1 +kerning first=219 second=192 amount=-2 +kerning first=222 second=323 amount=-1 +kerning first=376 second=324 amount=-1 +kerning first=8250 second=325 amount=-3 +kerning first=8216 second=326 amount=-1 +kerning first=83 second=327 amount=-1 +kerning first=69 second=328 amount=-1 +kerning first=356 second=330 amount=-1 +kerning first=99 second=331 amount=-1 +kerning first=202 second=332 amount=-1 +kerning first=264 second=333 amount=-1 +kerning first=258 second=334 amount=-1 +kerning first=316 second=335 amount=-1 +kerning first=298 second=336 amount=-1 +kerning first=196 second=337 amount=-1 +kerning first=304 second=338 amount=-1 +kerning first=77 second=339 amount=-1 +kerning first=242 second=289 amount=-1 +kerning first=81 second=344 amount=-1 +kerning first=350 second=345 amount=-1 +kerning first=89 second=346 amount=-2 +kerning first=280 second=347 amount=-1 +kerning first=8220 second=350 amount=-1 +kerning first=262 second=352 amount=-1 +kerning first=224 second=353 amount=-1 +kerning first=8222 second=354 amount=-3 +kerning first=310 second=355 amount=-1 +kerning first=8220 second=356 amount=-1 +kerning first=45 second=357 amount=-1 +kerning first=278 second=289 amount=-1 +kerning first=8218 second=361 amount=-1 +kerning first=350 second=362 amount=-1 +kerning first=196 second=363 amount=-1 +kerning first=214 second=364 amount=-1 +kerning first=97 second=365 amount=-1 +kerning first=8250 second=366 amount=-2 +kerning first=356 second=367 amount=-1 +kerning first=290 second=368 amount=-1 +kerning first=83 second=369 amount=-1 +kerning first=346 second=370 amount=-1 +kerning first=224 second=371 amount=-1 +kerning first=74 second=268 amount=-1 +kerning first=310 second=374 amount=-1 +kerning first=220 second=375 amount=-1 +kerning first=71 second=377 amount=-1 +kerning first=8218 second=378 amount=-2 +kerning first=8222 second=379 amount=-1 +kerning first=77 second=380 amount=-1 +kerning first=8250 second=381 amount=-2 +kerning first=113 second=382 amount=-1 +kerning first=244 second=237 amount=-1 +kerning first=272 second=218 amount=-1 +kerning first=350 second=289 amount=-1 +kerning first=217 second=244 amount=-1 +kerning first=377 second=282 amount=-1 +kerning first=253 second=244 amount=-1 +kerning first=200 second=218 amount=-1 +kerning first=289 second=244 amount=-1 +kerning first=87 second=199 amount=-1 +kerning first=103 second=237 amount=-1 +kerning first=8217 second=245 amount=-2 +kerning first=67 second=237 amount=-1 +kerning first=1038 second=1117 amount=-2 +kerning first=75 second=8249 amount=-2 +kerning first=347 second=353 amount=-1 +kerning first=68 second=225 amount=-1 +kerning first=346 second=365 amount=-1 +kerning first=1027 second=1060 amount=-1 +kerning first=219 second=228 amount=-1 +kerning first=195 second=334 amount=-1 +kerning first=364 second=379 amount=-1 +kerning first=84 second=263 amount=-2 +kerning first=310 second=365 amount=-1 +kerning first=279 second=361 amount=-1 +kerning first=350 second=324 amount=-1 +kerning first=120 second=263 amount=-1 +kerning first=274 second=365 amount=-1 +kerning first=266 second=346 amount=-1 +kerning first=1043 second=1098 amount=-1 +kerning first=203 second=353 amount=-1 +kerning first=65 second=289 amount=-1 +kerning first=354 second=366 amount=-1 +kerning first=85 second=251 amount=-1 +kerning first=45 second=327 amount=-3 +kerning first=298 second=275 amount=-1 +kerning first=194 second=346 amount=-2 +kerning first=198 second=270 amount=-1 +kerning first=101 second=289 amount=-1 +kerning first=226 second=251 amount=-1 +kerning first=81 second=327 amount=-1 +kerning first=1063 second=1060 amount=-1 +kerning first=311 second=353 amount=-1 +kerning first=207 second=277 amount=-1 +kerning first=356 second=72 amount=-1 +kerning first=197 second=254 amount=-1 +kerning first=194 second=374 amount=-3 +kerning first=275 second=121 amount=-1 +kerning first=298 second=251 amount=-1 +kerning first=115 second=351 amount=-1 +kerning first=379 second=202 amount=-1 +kerning first=233 second=254 amount=-1 +kerning first=262 second=251 amount=-1 +kerning first=77 second=232 amount=-1 +kerning first=256 second=351 amount=-1 +kerning first=201 second=206 amount=-1 +kerning first=269 second=254 amount=-1 +kerning first=370 second=251 amount=-1 +kerning first=220 second=351 amount=-1 +kerning first=313 second=69 amount=-1 +kerning first=339 second=112 amount=-1 +kerning first=1105 second=1103 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=67 second=209 amount=-1 +kerning first=102 second=277 amount=-1 +kerning first=365 second=367 amount=-1 +kerning first=101 second=261 amount=-1 +kerning first=257 second=367 amount=-1 +kerning first=192 second=199 amount=-1 +kerning first=374 second=114 amount=-1 +kerning first=201 second=117 amount=-1 +kerning first=381 second=206 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=206 second=261 amount=-1 +kerning first=221 second=79 amount=-1 +kerning first=264 second=199 amount=-2 +kerning first=221 second=367 amount=-1 +kerning first=71 second=72 amount=-1 +kerning first=75 second=284 amount=-1 +kerning first=73 second=336 amount=-1 +kerning first=187 second=83 amount=-2 +kerning first=328 second=351 amount=-1 +kerning first=381 second=117 amount=-1 +kerning first=212 second=72 amount=-1 +kerning first=338 second=374 amount=-1 +kerning first=76 second=251 amount=-1 +kerning first=8222 second=356 amount=-3 +kerning first=87 second=67 amount=-1 +kerning first=214 second=76 amount=-1 +kerning first=339 second=255 amount=-1 +kerning first=284 second=72 amount=-1 +kerning first=266 second=374 amount=-1 +kerning first=347 second=121 amount=-1 +kerning first=364 second=351 amount=-1 +kerning first=211 second=344 amount=-1 +kerning first=317 second=318 amount=-1 +kerning first=287 second=240 amount=-1 +kerning first=266 second=86 amount=-1 +kerning first=365 second=107 amount=-1 +kerning first=87 second=171 amount=-3 +kerning first=1051 second=1089 amount=-1 +kerning first=323 second=240 amount=-1 +kerning first=8249 second=89 amount=-2 +kerning first=325 second=216 amount=-1 +kerning first=194 second=86 amount=-3 +kerning first=1027 second=1088 amount=-1 +kerning first=192 second=171 amount=-2 +kerning first=278 second=261 amount=-1 +kerning first=76 second=216 amount=-1 +kerning first=335 second=382 amount=-1 +kerning first=314 second=261 amount=-1 +kerning first=371 second=382 amount=-1 +kerning first=382 second=337 amount=-1 +kerning first=350 second=261 amount=-1 +kerning first=338 second=86 amount=-1 +kerning first=217 second=216 amount=-1 +kerning first=310 second=337 amount=-1 +kerning first=1036 second=1095 amount=-2 +kerning first=280 second=209 amount=-1 +kerning first=291 second=229 amount=-1 +kerning first=1006 second=995 amount=-1 +kerning first=1006 second=996 amount=-1 +kerning first=1006 second=1005 amount=-1 +kerning first=1006 second=1006 amount=-1 +kerning first=208 second=209 amount=-1 +kerning first=81 second=221 amount=-1 +kerning first=1056 second=1024 amount=-1 +kerning first=1024 second=1025 amount=-1 +kerning first=1054 second=1030 amount=-1 +kerning first=1060 second=1031 amount=-1 +kerning first=1070 second=1033 amount=-1 +kerning first=1054 second=1034 amount=-1 +kerning first=1060 second=1036 amount=-1 +kerning first=1056 second=1037 amount=-1 +kerning first=1036 second=1038 amount=-1 +kerning first=1056 second=1039 amount=-1 +kerning first=1070 second=1040 amount=-2 +kerning first=1054 second=1041 amount=-1 +kerning first=1060 second=1042 amount=-1 +kerning first=1054 second=1043 amount=-1 +kerning first=1054 second=1045 amount=-1 +kerning first=1036 second=1047 amount=-1 +kerning first=1060 second=1048 amount=-1 +kerning first=1054 second=1049 amount=-1 +kerning first=1070 second=1050 amount=-1 +kerning first=1058 second=1051 amount=-2 +kerning first=1024 second=1052 amount=-1 +kerning first=1070 second=1053 amount=-1 +kerning first=1064 second=1054 amount=-1 +kerning first=1060 second=1055 amount=-1 +kerning first=1056 second=1056 amount=-1 +kerning first=1046 second=1057 amount=-2 +kerning first=1050 second=1058 amount=-1 +kerning first=1040 second=1059 amount=-2 +kerning first=1058 second=1060 amount=-1 +kerning first=1054 second=1062 amount=-1 +kerning first=1036 second=1063 amount=-2 +kerning first=1042 second=1064 amount=-1 +kerning first=1054 second=1065 amount=-1 +kerning first=1070 second=1067 amount=-1 +kerning first=1056 second=1070 amount=-1 +kerning first=1050 second=1072 amount=-1 +kerning first=1036 second=1073 amount=-1 +kerning first=1058 second=1074 amount=-1 +kerning first=1114 second=1075 amount=-1 +kerning first=1098 second=1076 amount=-1 +kerning first=1036 second=1077 amount=-1 +kerning first=1024 second=1078 amount=-1 +kerning first=1040 second=1079 amount=-1 +kerning first=1058 second=1080 amount=-1 +kerning first=1038 second=1081 amount=-2 +kerning first=363 second=249 amount=-1 +kerning first=1118 second=1083 amount=-1 +kerning first=1058 second=1084 amount=-1 +kerning first=1038 second=1085 amount=-2 +kerning first=1036 second=1086 amount=-1 +kerning first=1058 second=1087 amount=-1 +kerning first=1038 second=1088 amount=-2 +kerning first=232 second=120 amount=-1 +kerning first=1040 second=1090 amount=-1 +kerning first=1046 second=1091 amount=-1 +kerning first=1056 second=1092 amount=-1 +kerning first=1038 second=1093 amount=-2 +kerning first=1058 second=1094 amount=-1 +kerning first=374 second=65 amount=-3 +kerning first=1038 second=1096 amount=-2 +kerning first=1038 second=1097 amount=-2 +kerning first=1036 second=1098 amount=-1 +kerning first=1058 second=1099 amount=-1 +kerning first=1038 second=1100 amount=-2 +kerning first=1040 second=1101 amount=-1 +kerning first=1058 second=1102 amount=-1 +kerning first=1058 second=1103 amount=-2 +kerning first=1036 second=1104 amount=-1 +kerning first=1118 second=1105 amount=-1 +kerning first=1058 second=1107 amount=-1 +kerning first=1040 second=1108 amount=-1 +kerning first=196 second=350 amount=-2 +kerning first=39 second=1111 amount=1 +kerning first=1118 second=1113 amount=-1 +kerning first=1038 second=1114 amount=-2 +kerning first=84 second=207 amount=-1 +kerning first=1038 second=1116 amount=-2 +kerning first=1114 second=1117 amount=-1 +kerning first=1116 second=1118 amount=-1 +kerning first=1038 second=1119 amount=-2 +kerning first=287 second=335 amount=-1 +kerning first=291 second=339 amount=-1 +kerning first=1025 second=1056 amount=-1 +kerning first=1047 second=1050 amount=-1 +kerning first=380 second=246 amount=-1 +kerning first=109 second=252 amount=-1 +kerning first=211 second=201 amount=-1 +kerning first=356 second=44 amount=-3 +kerning first=376 second=350 amount=-2 +kerning first=336 second=227 amount=-1 +kerning first=1108 second=1095 amount=-1 +kerning first=268 second=350 amount=-1 +kerning first=1050 second=1101 amount=-1 +kerning first=250 second=252 amount=-1 +kerning first=304 second=350 amount=-1 +kerning first=1100 second=1076 amount=-1 +kerning first=327 second=103 amount=-1 +kerning first=279 second=305 amount=-1 +kerning first=369 second=291 amount=-1 +kerning first=268 second=90 amount=-1 +kerning first=210 second=356 amount=-1 +kerning first=291 second=103 amount=-1 +kerning first=333 second=291 amount=-1 +kerning first=102 second=45 amount=-1 +kerning first=376 second=90 amount=-1 +kerning first=255 second=103 amount=-2 +kerning first=259 second=371 amount=-1 +kerning first=351 second=305 amount=-1 +kerning first=218 second=260 amount=-2 +kerning first=263 second=382 amount=-1 +kerning first=221 second=323 amount=-1 +kerning first=8250 second=253 amount=-2 +kerning first=8217 second=273 amount=-2 +kerning first=219 second=103 amount=-2 +kerning first=315 second=305 amount=-1 +kerning first=87 second=227 amount=-2 +kerning first=211 second=84 amount=-1 +kerning first=233 second=226 amount=-1 +kerning first=290 second=260 amount=-1 +kerning first=225 second=291 amount=-1 +kerning first=315 second=45 amount=-1 +kerning first=114 second=103 amount=-1 +kerning first=269 second=226 amount=-1 +kerning first=78 second=103 amount=-1 +kerning first=362 second=260 amount=-2 +kerning first=86 second=382 amount=-2 +kerning first=120 second=291 amount=-1 +kerning first=122 second=382 amount=-1 +kerning first=84 second=291 amount=-2 +kerning first=351 second=45 amount=-1 +kerning first=8218 second=116 amount=-1 +kerning first=354 second=213 amount=-1 +kerning first=77 second=115 amount=-1 +kerning first=201 second=89 amount=-1 +kerning first=99 second=109 amount=-1 +kerning first=323 second=212 amount=-1 +kerning first=218 second=115 amount=-1 +kerning first=254 second=115 amount=-1 +kerning first=377 second=78 amount=-1 +kerning first=113 second=115 amount=-1 +kerning first=66 second=45 amount=-1 +kerning first=337 second=187 amount=-1 +kerning first=315 second=193 amount=-1 +kerning first=248 second=44 amount=-2 +kerning first=362 second=115 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=381 second=89 amount=-1 +kerning first=364 second=268 amount=-1 +kerning first=362 second=232 amount=-1 +kerning first=69 second=213 amount=-1 +kerning first=284 second=44 amount=-1 +kerning first=326 second=115 amount=-1 +kerning first=69 second=353 amount=-1 +kerning first=368 second=303 amount=-1 +kerning first=71 second=44 amount=-1 +kerning first=113 second=232 amount=-1 +kerning first=8250 second=105 amount=-1 +kerning first=282 second=213 amount=-1 +kerning first=218 second=232 amount=-1 +kerning first=250 second=104 amount=-1 +kerning first=201 second=352 amount=-1 +kerning first=105 second=328 amount=-1 +kerning first=83 second=303 amount=-1 +kerning first=229 second=98 amount=-1 +kerning first=8250 second=77 amount=-3 +kerning first=376 second=118 amount=-1 +kerning first=119 second=303 amount=-1 +kerning first=324 second=8249 amount=-1 +kerning first=214 second=280 amount=-1 +kerning first=315 second=73 amount=-1 +kerning first=88 second=98 amount=-1 +kerning first=275 second=228 amount=-1 +kerning first=268 second=118 amount=-1 +kerning first=280 second=120 amount=-1 +kerning first=310 second=291 amount=-1 +kerning first=1054 second=1025 amount=-1 +kerning first=286 second=280 amount=-1 +kerning first=232 second=118 amount=-1 +kerning first=316 second=120 amount=-1 +kerning first=84 second=235 amount=-1 +kerning first=344 second=44 amount=-1 +kerning first=66 second=73 amount=-2 +kerning first=193 second=98 amount=-1 +kerning first=352 second=120 amount=-1 +kerning first=120 second=235 amount=-1 +kerning first=304 second=118 amount=-1 +kerning first=87 second=370 amount=-1 +kerning first=1050 second=1073 amount=-1 +kerning first=344 second=218 amount=-1 +kerning first=196 second=118 amount=-2 +kerning first=221 second=283 amount=-2 +kerning first=192 second=370 amount=-2 +kerning first=316 second=261 amount=-1 +kerning first=1064 second=1104 amount=-1 +kerning first=316 second=371 amount=-1 +kerning first=282 second=241 amount=-1 +kerning first=8220 second=352 amount=-1 +kerning first=264 second=370 amount=-1 +kerning first=66 second=193 amount=-3 +kerning first=80 second=196 amount=-2 +kerning first=262 second=284 amount=-2 +kerning first=354 second=241 amount=-1 +kerning first=336 second=370 amount=-1 +kerning first=203 second=325 amount=-1 +kerning first=195 second=362 amount=-2 +kerning first=196 second=266 amount=-1 +kerning first=105 second=241 amount=-1 +kerning first=106 second=112 amount=-1 +kerning first=379 second=286 amount=-1 +kerning first=69 second=241 amount=-1 +kerning first=199 second=314 amount=-1 +kerning first=1046 second=1090 amount=-1 +kerning first=111 second=8221 amount=-1 +kerning first=199 second=286 amount=-2 +kerning first=368 second=331 amount=-1 +kerning first=235 second=314 amount=-1 +kerning first=282 second=356 amount=-1 +kerning first=307 second=314 amount=-1 +kerning first=288 second=8221 amount=-1 +kerning first=204 second=81 amount=-1 +kerning first=203 second=210 amount=-1 +kerning first=324 second=8221 amount=-2 +kerning first=8220 second=324 amount=-1 +kerning first=258 second=67 amount=-1 +kerning first=216 second=8221 amount=-1 +kerning first=377 second=250 amount=-1 +kerning first=119 second=331 amount=-1 +kerning first=252 second=8221 amount=-2 +kerning first=73 second=252 amount=-1 +kerning first=228 second=255 amount=-1 +kerning first=171 second=221 amount=-2 +kerning first=221 second=224 amount=-2 +kerning first=192 second=255 amount=-1 +kerning first=354 second=269 amount=-2 +kerning first=283 second=112 amount=-1 +kerning first=376 second=266 amount=-1 +kerning first=83 second=331 amount=-1 +kerning first=364 second=196 amount=-2 +kerning first=66 second=221 amount=-2 +kerning first=268 second=266 amount=-2 +kerning first=87 second=255 amount=-1 +kerning first=304 second=266 amount=-1 +kerning first=263 second=326 amount=-1 +kerning first=274 second=250 amount=-1 +kerning first=76 second=289 amount=-1 +kerning first=261 second=347 amount=-1 +kerning first=261 second=318 amount=-1 +kerning first=346 second=250 amount=-1 +kerning first=120 second=378 amount=-1 +kerning first=371 second=326 amount=-1 +kerning first=310 second=250 amount=-1 +kerning first=84 second=378 amount=-2 +kerning first=207 second=101 amount=-1 +kerning first=267 second=273 amount=-1 +kerning first=324 second=371 amount=-1 +kerning first=84 second=347 amount=-2 +kerning first=76 second=328 amount=-1 +kerning first=89 second=231 amount=-2 +kerning first=255 second=307 amount=-1 +kerning first=211 second=257 amount=-1 +kerning first=369 second=378 amount=-1 +kerning first=1082 second=1118 amount=-1 +kerning first=87 second=283 amount=-2 +kerning first=289 second=328 amount=-1 +kerning first=333 second=378 amount=-1 +kerning first=1105 second=1076 amount=-1 +kerning first=1040 second=1047 amount=-1 +kerning first=253 second=328 amount=-1 +kerning first=197 second=366 amount=-2 +kerning first=106 second=257 amount=-1 +kerning first=365 second=8220 amount=-2 +kerning first=70 second=288 amount=-1 +kerning first=217 second=328 amount=-1 +kerning first=252 second=371 amount=-1 +kerning first=321 second=212 amount=-1 +kerning first=272 second=302 amount=-1 +kerning first=264 second=283 amount=-1 +kerning first=70 second=257 amount=-1 +kerning first=257 second=8220 amount=-1 +kerning first=200 second=302 amount=-1 +kerning first=369 second=347 amount=-1 +kerning first=192 second=283 amount=-1 +kerning first=67 second=352 amount=-1 +kerning first=333 second=347 amount=-1 +kerning first=218 second=338 amount=-1 +kerning first=290 second=87 amount=-1 +kerning first=305 second=106 amount=-1 +kerning first=44 second=8220 amount=-3 +kerning first=258 second=243 amount=-1 +kerning first=380 second=333 amount=-1 +kerning first=105 second=253 amount=-1 +kerning first=288 second=80 amount=-1 +kerning first=344 second=333 amount=-1 +kerning first=233 second=229 amount=-1 +kerning first=376 second=210 amount=-1 +kerning first=69 second=68 amount=-1 +kerning first=199 second=113 amount=-1 +kerning first=304 second=210 amount=-1 +kerning first=89 second=262 amount=-1 +kerning first=291 second=307 amount=-1 +kerning first=103 second=120 amount=-1 +kerning first=268 second=210 amount=-2 +kerning first=193 second=87 amount=-3 +kerning first=377 second=198 amount=-1 +kerning first=194 second=262 amount=-1 +kerning first=363 second=307 amount=-1 +kerning first=208 second=120 amount=-1 +kerning first=379 second=216 amount=-1 +kerning first=196 second=210 amount=-1 +kerning first=75 second=368 amount=-1 +kerning first=244 second=120 amount=-1 +kerning first=365 second=255 amount=-1 +kerning first=288 second=368 amount=-1 +kerning first=266 second=262 amount=-2 +kerning first=1092 second=1113 amount=-1 +kerning first=302 second=262 amount=-1 +kerning first=310 second=281 amount=-1 +kerning first=8250 second=225 amount=-1 +kerning first=330 second=243 amount=-1 +kerning first=1056 second=1113 amount=-1 +kerning first=216 second=368 amount=-1 +kerning first=338 second=262 amount=-1 +kerning first=257 second=255 amount=-1 +kerning first=366 second=243 amount=-1 +kerning first=374 second=262 amount=-1 +kerning first=86 second=323 amount=-1 +kerning first=221 second=255 amount=-1 +kerning first=219 second=279 amount=-1 +kerning first=106 second=229 amount=-1 +kerning first=119 second=99 amount=-1 +kerning first=365 second=227 amount=-1 +kerning first=352 second=324 amount=-1 +kerning first=272 second=274 amount=-1 +kerning first=89 second=234 amount=-2 +kerning first=291 second=279 amount=-1 +kerning first=1057 second=1101 amount=-1 +kerning first=255 second=279 amount=-1 +kerning first=70 second=229 amount=-1 +kerning first=200 second=274 amount=-1 +kerning first=1093 second=1101 amount=-1 +kerning first=283 second=229 amount=-1 +kerning first=291 second=44 amount=-2 +kerning first=296 second=99 amount=-1 +kerning first=377 second=369 amount=-1 +kerning first=202 second=278 amount=-1 +kerning first=255 second=44 amount=-3 +kerning first=260 second=99 amount=-1 +kerning first=211 second=229 amount=-1 +kerning first=108 second=233 amount=-1 +kerning first=363 second=44 amount=-1 +kerning first=368 second=99 amount=-1 +kerning first=78 second=279 amount=-1 +kerning first=280 second=324 amount=-1 +kerning first=72 second=233 amount=-1 +kerning first=327 second=44 amount=-1 +kerning first=76 second=356 amount=-1 +kerning first=254 second=382 amount=-1 +kerning first=371 second=267 amount=-1 +kerning first=374 second=234 amount=-2 +kerning first=346 second=278 amount=-1 +kerning first=370 second=223 amount=-1 +kerning first=212 second=330 amount=-1 +kerning first=194 second=234 amount=-1 +kerning first=233 second=106 amount=-1 +kerning first=221 second=227 amount=-2 +kerning first=327 second=279 amount=-1 +kerning first=269 second=106 amount=-1 +kerning first=266 second=234 amount=-1 +kerning first=81 second=97 amount=-1 +kerning first=379 second=317 amount=-1 +kerning first=67 second=296 amount=-1 +kerning first=217 second=81 amount=-1 +kerning first=302 second=234 amount=-1 +kerning first=70 second=281 amount=-1 +kerning first=86 second=66 amount=-1 +kerning first=106 second=316 amount=-1 +kerning first=321 second=264 amount=-1 +kerning first=366 second=212 amount=-1 +kerning first=344 second=361 amount=-1 +kerning first=199 second=110 amount=-1 +kerning first=83 second=219 amount=-1 +kerning first=86 second=267 amount=-2 +kerning first=235 second=110 amount=-1 +kerning first=330 second=212 amount=-1 +kerning first=8250 second=194 amount=-2 +kerning first=380 second=361 amount=-1 +kerning first=69 second=65 amount=-1 +kerning first=338 second=112 amount=-1 +kerning first=283 second=316 amount=-1 +kerning first=199 second=82 amount=-1 +kerning first=216 second=205 amount=-1 +kerning first=258 second=212 amount=-1 +kerning first=263 second=267 amount=-1 +kerning first=86 second=210 amount=-1 +kerning first=379 second=110 amount=-1 +kerning first=283 second=257 amount=-1 +kerning first=122 second=267 amount=-1 +kerning first=210 second=65 amount=-2 +kerning first=114 second=44 amount=-2 +kerning first=72 second=266 amount=-1 +kerning first=282 second=65 amount=-1 +kerning first=280 second=89 amount=-1 +kerning first=315 second=104 amount=-1 +kerning first=8216 second=109 amount=-1 +kerning first=286 second=364 amount=-1 +kerning first=354 second=65 amount=-3 +kerning first=352 second=89 amount=-1 +kerning first=243 second=104 amount=-1 +kerning first=335 second=8217 amount=-1 +kerning first=200 second=361 amount=-1 +kerning first=382 second=250 amount=-1 +kerning first=321 second=205 amount=-1 +kerning first=236 second=361 amount=-1 +kerning first=310 second=46 amount=-1 +kerning first=277 second=97 amount=-1 +kerning first=263 second=122 amount=-1 +kerning first=346 second=46 amount=-2 +kerning first=376 second=121 amount=-1 +kerning first=296 second=71 amount=-1 +kerning first=352 second=117 amount=-1 +kerning first=382 second=46 amount=-1 +kerning first=205 second=97 amount=-1 +kerning first=304 second=121 amount=-1 +kerning first=368 second=71 amount=-1 +kerning first=8216 second=84 amount=-1 +kerning first=66 second=76 amount=-2 +kerning first=346 second=225 amount=-1 +kerning first=202 second=46 amount=-1 +kerning first=232 second=121 amount=-1 +kerning first=382 second=225 amount=-1 +kerning first=371 second=122 amount=-1 +kerning first=196 second=121 amount=-1 +kerning first=260 second=71 amount=-1 +kerning first=83 second=102 amount=-1 +kerning first=335 second=122 amount=-1 +kerning first=274 second=46 amount=-1 +kerning first=67 second=377 amount=-1 +kerning first=280 second=377 amount=-1 +kerning first=1059 second=1108 amount=-2 +kerning first=67 second=117 amount=-1 +kerning first=90 second=90 amount=-1 +kerning first=366 second=240 amount=-1 +kerning first=208 second=377 amount=-1 +kerning first=97 second=46 amount=-1 +kerning first=78 second=332 amount=-1 +kerning first=332 second=219 amount=-1 +kerning first=103 second=117 amount=-1 +kerning first=374 second=290 amount=-1 +kerning first=122 second=122 amount=-1 +kerning first=87 second=267 amount=-2 +kerning first=219 second=332 amount=-1 +kerning first=1059 second=1077 amount=-2 +kerning first=288 second=200 amount=-1 +kerning first=86 second=122 amount=-2 +kerning first=78 second=363 amount=-1 +kerning first=260 second=219 amount=-2 +kerning first=368 second=102 amount=-1 +kerning first=315 second=76 amount=-1 +kerning first=352 second=377 amount=-1 +kerning first=89 second=287 amount=-2 +kerning first=316 second=117 amount=-1 +kerning first=216 second=200 amount=-1 +kerning first=350 second=381 amount=-1 +kerning first=280 second=117 amount=-1 +kerning first=231 second=44 amount=-1 +kerning first=377 second=310 amount=-1 +kerning first=194 second=287 amount=-1 +kerning first=302 second=83 amount=-1 +kerning first=205 second=214 amount=-1 +kerning first=374 second=259 amount=-2 +kerning first=327 second=332 amount=-1 +kerning first=313 second=214 amount=-1 +kerning first=266 second=287 amount=-1 +kerning first=230 second=287 amount=-1 +kerning first=266 second=259 amount=-1 +kerning first=205 second=242 amount=-1 +kerning first=338 second=287 amount=-1 +kerning first=330 second=240 amount=-1 +kerning first=230 second=259 amount=-1 +kerning first=302 second=287 amount=-1 +kerning first=86 second=298 amount=-1 +kerning first=338 second=259 amount=-1 +kerning first=258 second=240 amount=-1 +kerning first=302 second=259 amount=-1 +kerning first=374 second=287 amount=-2 +kerning first=344 second=8217 amount=-3 +kerning first=196 second=8220 amount=-3 +kerning first=109 second=8221 amount=-2 +kerning first=200 second=330 amount=-1 +kerning first=233 second=369 amount=-1 +kerning first=284 second=8249 amount=-1 +kerning first=248 second=8250 amount=-1 +kerning first=346 second=77 amount=-1 +kerning first=216 second=197 amount=-2 +kerning first=346 second=194 amount=-2 +kerning first=333 second=375 amount=-1 +kerning first=305 second=369 amount=-1 +kerning first=103 second=324 amount=-1 +kerning first=288 second=197 amount=-1 +kerning first=274 second=194 amount=-1 +kerning first=86 second=119 amount=-1 +kerning first=122 second=119 amount=-1 +kerning first=197 second=369 amount=-1 +kerning first=253 second=110 amount=-1 +kerning first=108 second=116 amount=-1 +kerning first=202 second=194 amount=-1 +kerning first=227 second=119 amount=-1 +kerning first=288 second=228 amount=-1 +kerning first=310 second=253 amount=-2 +kerning first=263 second=119 amount=-1 +kerning first=266 second=203 amount=-1 +kerning first=253 second=234 amount=-1 +kerning first=1098 second=1100 amount=-1 +kerning first=346 second=253 amount=-1 +kerning first=327 second=248 amount=-1 +kerning first=216 second=228 amount=-1 +kerning first=382 second=253 amount=-1 +kerning first=335 second=119 amount=-1 +kerning first=67 second=380 amount=-1 +kerning first=202 second=74 amount=-1 +kerning first=78 second=100 amount=-1 +kerning first=377 second=223 amount=-1 +kerning first=371 second=119 amount=-1 +kerning first=255 second=248 amount=-1 +kerning first=45 second=355 amount=-1 +kerning first=261 second=375 amount=-1 +kerning first=89 second=203 amount=-1 +kerning first=274 second=74 amount=-1 +kerning first=75 second=228 amount=-1 +kerning first=330 second=268 amount=-1 +kerning first=8250 second=250 amount=-1 +kerning first=1059 second=1080 amount=-2 +kerning first=225 second=375 amount=-1 +kerning first=219 second=248 amount=-1 +kerning first=346 second=74 amount=-1 +kerning first=282 second=68 amount=-1 +kerning first=210 second=68 amount=-1 +kerning first=379 second=113 amount=-1 +kerning first=375 second=103 amount=-2 +kerning first=216 second=80 amount=-1 +kerning first=258 second=268 amount=-1 +kerning first=374 second=203 amount=-1 +kerning first=354 second=68 amount=-1 +kerning first=211 second=313 amount=-1 +kerning first=338 second=203 amount=-1 +kerning first=252 second=108 amount=-1 +kerning first=219 second=363 amount=-1 +kerning first=86 second=270 amount=-1 +kerning first=288 second=315 amount=-1 +kerning first=8250 second=365 amount=-1 +kerning first=266 second=290 amount=-2 +kerning first=1051 second=1086 amount=-1 +kerning first=302 second=290 amount=-1 +kerning first=324 second=108 amount=-1 +kerning first=291 second=363 amount=-1 +kerning first=338 second=290 amount=-1 +kerning first=327 second=363 amount=-1 +kerning first=255 second=335 amount=-1 +kerning first=194 second=318 amount=-1 +kerning first=346 second=105 amount=-1 +kerning first=291 second=335 amount=-1 +kerning first=199 second=85 amount=-1 +kerning first=230 second=318 amount=-1 +kerning first=382 second=105 amount=-1 +kerning first=327 second=335 amount=-1 +kerning first=266 second=318 amount=-1 +kerning first=216 second=315 amount=-1 +kerning first=194 second=290 amount=-1 +kerning first=353 second=237 amount=-1 +kerning first=1070 second=1063 amount=-1 +kerning first=44 second=8217 amount=-3 +kerning first=78 second=335 amount=-1 +kerning first=280 second=380 amount=-1 +kerning first=338 second=318 amount=-1 +kerning first=202 second=225 amount=-1 +kerning first=316 second=380 amount=-1 +kerning first=99 second=45 amount=-1 +kerning first=374 second=231 amount=-2 +kerning first=81 second=296 amount=-1 +kerning first=282 second=198 amount=-1 +kerning first=377 second=338 amount=-1 +kerning first=266 second=231 amount=-1 +kerning first=274 second=225 amount=-1 +kerning first=219 second=335 amount=-1 +kerning first=302 second=231 amount=-1 +kerning first=310 second=225 amount=-1 +kerning first=362 second=192 amount=-2 +kerning first=103 second=380 amount=-1 +kerning first=75 second=108 amount=-1 +kerning first=257 second=8217 amount=-1 +kerning first=208 second=380 amount=-1 +kerning first=222 second=296 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=197 second=338 amount=-1 +kerning first=365 second=8217 amount=-2 +kerning first=8250 second=278 amount=-3 +kerning first=252 second=225 amount=-1 +kerning first=376 second=325 amount=-1 +kerning first=353 second=228 amount=-1 +kerning first=288 second=225 amount=-1 +kerning first=77 second=235 amount=-1 +kerning first=8250 second=80 amount=-3 +kerning first=233 second=251 amount=-1 +kerning first=278 second=104 amount=-1 +kerning first=113 second=235 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=281 second=228 amount=-1 +kerning first=315 second=280 amount=-1 +kerning first=305 second=251 amount=-1 +kerning first=75 second=225 amount=-1 +kerning first=218 second=235 amount=-1 +kerning first=90 second=303 amount=-1 +kerning first=67 second=206 amount=-1 +kerning first=269 second=251 amount=-1 +kerning first=378 second=273 amount=-1 +kerning first=209 second=228 amount=-1 +kerning first=208 second=206 amount=-1 +kerning first=377 second=251 amount=-1 +kerning first=263 second=103 amount=-1 +kerning first=313 second=270 amount=-1 +kerning first=69 second=171 amount=-1 +kerning first=216 second=225 amount=-1 +kerning first=1024 second=1093 amount=-1 +kerning first=258 second=98 amount=-1 +kerning first=280 second=206 amount=-1 +kerning first=88 second=355 amount=-1 +kerning first=202 second=102 amount=-1 +kerning first=100 second=45 amount=-1 +kerning first=352 second=206 amount=-1 +kerning first=274 second=102 amount=-1 +kerning first=332 second=46 amount=-1 +kerning first=368 second=46 amount=-3 +kerning first=8250 second=219 amount=-2 +kerning first=89 second=83 amount=-2 +kerning first=376 second=263 amount=-2 +kerning first=268 second=325 amount=-1 +kerning first=66 second=280 amount=-2 +kerning first=119 second=46 amount=-3 +kerning first=193 second=355 amount=-1 +kerning first=1114 second=1107 amount=-1 +kerning first=194 second=83 amount=-2 +kerning first=99 second=8249 amount=-1 +kerning first=224 second=46 amount=-1 +kerning first=8217 second=248 amount=-2 +kerning first=187 second=318 amount=-1 +kerning first=266 second=83 amount=-1 +kerning first=356 second=363 amount=-1 +kerning first=224 second=8221 amount=-1 +kerning first=75 second=289 amount=-1 +kerning first=240 second=112 amount=-1 +kerning first=74 second=67 amount=-1 +kerning first=223 second=318 amount=-1 +kerning first=200 second=221 amount=-1 +kerning first=281 second=8217 amount=-1 +kerning first=204 second=112 amount=-1 +kerning first=259 second=318 amount=-1 +kerning first=338 second=83 amount=-1 +kerning first=295 second=318 amount=-1 +kerning first=374 second=83 amount=-2 +kerning first=346 second=102 amount=-1 +kerning first=99 second=112 amount=-1 +kerning first=331 second=318 amount=-1 +kerning first=382 second=102 amount=-1 +kerning first=367 second=318 amount=-1 +kerning first=84 second=266 amount=-1 +kerning first=250 second=311 amount=-1 +kerning first=202 second=84 amount=-1 +kerning first=339 second=105 amount=-1 +kerning first=362 second=235 amount=-1 +kerning first=45 second=98 amount=-1 +kerning first=76 second=304 amount=-1 +kerning first=375 second=105 amount=-1 +kerning first=267 second=105 amount=-1 +kerning first=117 second=98 amount=-1 +kerning first=303 second=105 amount=-1 +kerning first=323 second=67 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=216 second=259 amount=-1 +kerning first=231 second=105 amount=-1 +kerning first=344 second=221 amount=-1 +kerning first=90 second=105 amount=-1 +kerning first=86 second=214 amount=-1 +kerning first=288 second=259 amount=-1 +kerning first=252 second=259 amount=-1 +kerning first=272 second=221 amount=-1 +kerning first=80 second=240 amount=-1 +kerning first=264 second=230 amount=-1 +kerning first=1050 second=1098 amount=-1 +kerning first=302 second=283 amount=-1 +kerning first=1054 second=1050 amount=-1 +kerning first=335 second=104 amount=-1 +kerning first=98 second=351 amount=-1 +kerning first=201 second=346 amount=-1 +kerning first=354 second=290 amount=-1 +kerning first=250 second=249 amount=-1 +kerning first=84 second=204 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=203 second=350 amount=-1 +kerning first=379 second=171 amount=-1 +kerning first=87 second=230 amount=-2 +kerning first=213 second=379 amount=-1 +kerning first=325 second=275 amount=-1 +kerning first=1025 second=1053 amount=-1 +kerning first=205 second=100 amount=-1 +kerning first=321 second=379 amount=-1 +kerning first=217 second=275 amount=-1 +kerning first=253 second=275 amount=-1 +kerning first=1113 second=1091 amount=-1 +kerning first=187 second=256 amount=-2 +kerning first=381 second=86 amount=-1 +kerning first=250 second=107 amount=-1 +kerning first=264 second=339 amount=-1 +kerning first=109 second=249 amount=-1 +kerning first=198 second=211 amount=-1 +kerning first=84 second=260 amount=-3 +kerning first=255 second=223 amount=-1 +kerning first=336 second=230 amount=-1 +kerning first=219 second=223 amount=-1 +kerning first=73 second=249 amount=-1 +kerning first=377 second=313 amount=-1 +kerning first=351 second=8217 amount=-1 +kerning first=356 second=192 amount=-3 +kerning first=196 second=263 amount=-1 +kerning first=231 second=365 amount=-1 +kerning first=118 second=114 amount=-1 +kerning first=195 second=365 amount=-1 +kerning first=187 second=114 amount=-1 +kerning first=280 second=268 amount=-1 +kerning first=284 second=192 amount=-1 +kerning first=268 second=263 amount=-1 +kerning first=304 second=263 amount=-1 +kerning first=90 second=365 amount=-1 +kerning first=212 second=192 amount=-2 +kerning first=354 second=353 amount=-2 +kerning first=381 second=237 amount=-1 +kerning first=243 second=8217 amount=-1 +kerning first=354 second=244 amount=-2 +kerning first=66 second=218 amount=-2 +kerning first=192 second=339 amount=-1 +kerning first=221 second=199 amount=-1 +kerning first=279 second=8217 amount=-1 +kerning first=67 second=268 amount=-2 +kerning first=204 second=118 amount=-1 +kerning first=315 second=8217 amount=-2 +kerning first=71 second=192 amount=-1 +kerning first=87 second=339 amount=-2 +kerning first=260 second=334 amount=-1 +kerning first=1059 second=1105 amount=-2 +kerning first=266 second=315 amount=-1 +kerning first=246 second=353 amount=-1 +kerning first=334 second=282 amount=-1 +kerning first=374 second=315 amount=-1 +kerning first=282 second=353 amount=-1 +kerning first=338 second=315 amount=-1 +kerning first=296 second=334 amount=-1 +kerning first=262 second=282 amount=-1 +kerning first=199 second=289 amount=-1 +kerning first=89 second=315 amount=-1 +kerning first=339 second=365 amount=-1 +kerning first=1055 second=1072 amount=-1 +kerning first=303 second=365 amount=-1 +kerning first=109 second=291 amount=-1 +kerning first=307 second=289 amount=-1 +kerning first=8250 second=74 amount=-2 +kerning first=1042 second=1051 amount=-1 +kerning first=230 second=371 amount=-1 +kerning first=233 second=257 amount=-1 +kerning first=86 second=351 amount=-2 +kerning first=118 second=345 amount=-1 +kerning first=344 second=277 amount=-1 +kerning first=353 second=8249 amount=-1 +kerning first=350 second=202 amount=-1 +kerning first=90 second=99 amount=-1 +kerning first=284 second=346 amount=-1 +kerning first=222 second=302 amount=-1 +kerning first=231 second=99 amount=-1 +kerning first=278 second=202 amount=-1 +kerning first=195 second=99 amount=-1 +kerning first=283 second=347 amount=-1 +kerning first=317 second=8249 amount=-1 +kerning first=268 second=381 amount=-1 +kerning first=66 second=336 amount=-1 +kerning first=335 second=351 amount=-1 +kerning first=192 second=79 amount=-1 +kerning first=376 second=381 amount=-1 +kerning first=207 second=336 amount=-1 +kerning first=87 second=79 amount=-1 +kerning first=280 second=212 amount=-1 +kerning first=72 second=261 amount=-1 +kerning first=371 second=351 amount=-1 +kerning first=378 second=267 amount=-1 +kerning first=377 second=269 amount=-1 +kerning first=198 second=69 amount=-1 +kerning first=286 second=367 amount=-1 +kerning first=314 second=371 amount=-1 +kerning first=315 second=336 amount=-1 +kerning first=307 second=110 amount=-1 +kerning first=122 second=351 amount=-1 +kerning first=313 second=80 amount=-1 +kerning first=67 second=212 amount=-2 +kerning first=269 second=257 amount=-1 +kerning first=1024 second=1059 amount=-1 +kerning first=263 second=351 amount=-1 +kerning first=264 second=79 amount=-2 +kerning first=227 second=351 amount=-1 +kerning first=73 second=367 amount=-1 +kerning first=218 second=291 amount=-2 +kerning first=109 second=367 amount=-1 +kerning first=378 second=382 amount=-1 +kerning first=1046 second=1059 amount=-1 +kerning first=77 second=291 amount=-1 +kerning first=1062 second=1047 amount=-1 +kerning first=198 second=382 amount=-1 +kerning first=101 second=314 amount=-1 +kerning first=85 second=226 amount=-2 +kerning first=287 second=271 amount=-1 +kerning first=199 second=99 amount=-1 +kerning first=234 second=382 amount=-1 +kerning first=334 second=209 amount=-1 +kerning first=65 second=314 amount=-1 +kerning first=1063 second=1057 amount=-1 +kerning first=86 second=229 amount=-2 +kerning first=121 second=226 amount=-2 +kerning first=213 second=261 amount=-1 +kerning first=209 second=337 amount=-1 +kerning first=1027 second=1057 amount=-1 +kerning first=249 second=261 amount=-1 +kerning first=1051 second=1092 amount=-1 +kerning first=1071 second=1104 amount=-1 +kerning first=313 second=326 amount=-1 +kerning first=278 second=314 amount=-1 +kerning first=8218 second=255 amount=-1 +kerning first=81 second=302 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=242 second=314 amount=-1 +kerning first=229 second=361 amount=-1 +kerning first=307 second=171 amount=-1 +kerning first=350 second=314 amount=-1 +kerning first=338 second=361 amount=-1 +kerning first=46 second=8221 amount=-3 +kerning first=193 second=361 amount=-1 +kerning first=106 second=347 amount=-1 +kerning first=314 second=314 amount=-1 +kerning first=82 second=8221 amount=-3 +kerning first=99 second=316 amount=-1 +kerning first=70 second=347 amount=-1 +kerning first=253 second=269 amount=-1 +kerning first=1057 second=1076 amount=-1 +kerning first=260 second=216 amount=-1 +kerning first=87 second=224 amount=-2 +kerning first=8216 second=198 amount=-4 +kerning first=217 second=269 amount=-1 +kerning first=1114 second=1103 amount=-1 +kerning first=1024 second=1037 amount=-1 +kerning first=296 second=216 amount=-1 +kerning first=325 second=269 amount=-1 +kerning first=1060 second=1037 amount=-1 +kerning first=223 second=8221 amount=-1 +kerning first=240 second=316 amount=-1 +kerning first=277 second=326 amount=-1 +kerning first=75 second=281 amount=-1 +kerning first=289 second=269 amount=-1 +kerning first=199 second=171 amount=-2 +kerning first=259 second=8221 amount=-1 +kerning first=1054 second=1056 amount=-1 +kerning first=264 second=224 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=286 second=45 amount=-1 +kerning first=272 second=70 amount=-1 +kerning first=71 second=103 amount=-1 +kerning first=221 second=252 amount=-1 +kerning first=367 second=8221 amount=-2 +kerning first=336 second=224 amount=-1 +kerning first=257 second=252 amount=-1 +kerning first=321 second=317 amount=-1 +kerning first=235 second=227 amount=-1 +kerning first=199 second=227 amount=-1 +kerning first=73 second=101 amount=-1 +kerning first=65 second=235 amount=-1 +kerning first=346 second=362 amount=-1 +kerning first=268 second=207 amount=-1 +kerning first=213 second=317 amount=-1 +kerning first=298 second=226 amount=-1 +kerning first=73 second=45 amount=-2 +kerning first=334 second=226 amount=-1 +kerning first=203 second=90 amount=-1 +kerning first=356 second=103 amount=-2 +kerning first=376 second=207 amount=-1 +kerning first=370 second=226 amount=-2 +kerning first=193 second=246 amount=-1 +kerning first=284 second=103 amount=-1 +kerning first=326 second=291 amount=-1 +kerning first=109 second=45 amount=-1 +kerning first=203 second=356 amount=-1 +kerning first=274 second=362 amount=-1 +kerning first=84 second=350 amount=-2 +kerning first=248 second=103 amount=-1 +kerning first=88 second=246 amount=-1 +kerning first=250 second=45 amount=-1 +kerning first=310 second=362 amount=-1 +kerning first=212 second=103 amount=-1 +kerning first=254 second=291 amount=-1 +kerning first=214 second=45 amount=-1 +kerning first=365 second=104 amount=-1 +kerning first=217 second=213 amount=-1 +kerning first=266 second=89 amount=-1 +kerning first=8249 second=86 amount=-2 +kerning first=377 second=109 amount=-1 +kerning first=220 second=338 amount=-1 +kerning first=338 second=89 amount=-1 +kerning first=269 second=109 amount=-1 +kerning first=286 second=193 amount=-1 +kerning first=325 second=213 amount=-1 +kerning first=84 second=115 amount=-2 +kerning first=200 second=219 amount=-1 +kerning first=194 second=89 amount=-3 +kerning first=290 second=84 amount=-1 +kerning first=221 second=370 amount=-1 +kerning first=214 second=193 amount=-2 +kerning first=197 second=234 amount=-1 +kerning first=209 second=8249 amount=-2 +kerning first=267 second=303 amount=-1 +kerning first=225 second=115 amount=-1 +kerning first=379 second=227 amount=-1 +kerning first=303 second=303 amount=-1 +kerning first=261 second=115 amount=-1 +kerning first=104 second=8249 amount=-1 +kerning first=334 second=78 amount=-1 +kerning first=120 second=115 amount=-1 +kerning first=307 second=227 amount=-1 +kerning first=376 second=103 amount=-2 +kerning first=231 second=303 amount=-1 +kerning first=241 second=44 amount=-1 +kerning first=200 second=70 amount=-1 +kerning first=262 second=78 amount=-1 +kerning first=1027 second=1113 amount=-2 +kerning first=187 second=368 amount=-2 +kerning first=68 second=8249 amount=-1 +kerning first=8217 second=97 amount=-3 +kerning first=339 second=303 amount=-1 +kerning first=277 second=44 amount=-2 +kerning first=82 second=368 amount=-1 +kerning first=76 second=213 amount=-1 +kerning first=375 second=303 amount=-1 +kerning first=333 second=115 amount=-1 +kerning first=287 second=120 amount=-1 +kerning first=304 second=115 amount=-1 +kerning first=198 second=323 amount=-1 +kerning first=68 second=278 amount=-1 +kerning first=200 second=73 amount=-1 +kerning first=369 second=118 amount=-1 +kerning first=377 second=201 amount=-1 +kerning first=225 second=361 amount=-1 +kerning first=272 second=73 amount=-1 +kerning first=315 second=70 amount=-1 +kerning first=356 second=248 amount=-2 +kerning first=251 second=120 amount=-1 +kerning first=192 second=85 amount=-2 +kerning first=261 second=118 amount=-1 +kerning first=314 second=113 amount=-1 +kerning first=195 second=253 amount=-1 +kerning first=225 second=118 amount=-1 +kerning first=334 second=75 amount=-1 +kerning first=317 second=278 amount=-1 +kerning first=87 second=85 amount=-1 +kerning first=231 second=253 amount=-1 +kerning first=333 second=118 amount=-1 +kerning first=76 second=68 amount=-1 +kerning first=267 second=253 amount=-1 +kerning first=317 second=80 amount=-1 +kerning first=366 second=246 amount=-1 +kerning first=262 second=75 amount=-1 +kerning first=220 second=233 amount=-1 +kerning first=303 second=253 amount=-1 +kerning first=330 second=246 amount=-1 +kerning first=84 second=118 amount=-1 +kerning first=108 second=257 amount=-1 +kerning first=214 second=196 amount=-2 +kerning first=339 second=253 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=256 second=233 amount=-1 +kerning first=286 second=196 amount=-1 +kerning first=120 second=118 amount=-1 +kerning first=364 second=233 amount=-1 +kerning first=298 second=338 amount=-1 +kerning first=118 second=108 amount=-1 +kerning first=262 second=335 amount=-1 +kerning first=262 second=338 amount=-2 +kerning first=82 second=108 amount=-1 +kerning first=298 second=335 amount=-1 +kerning first=223 second=108 amount=-1 +kerning first=368 second=234 amount=-1 +kerning first=368 second=328 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=201 second=290 amount=-1 +kerning first=199 second=283 amount=-1 +kerning first=187 second=108 amount=-1 +kerning first=1060 second=1040 amount=-2 +kerning first=80 second=193 amount=-2 +kerning first=287 second=380 amount=-1 +kerning first=336 second=85 amount=-1 +kerning first=295 second=108 amount=-1 +kerning first=85 second=335 amount=-1 +kerning first=85 second=338 amount=-1 +kerning first=323 second=380 amount=-1 +kerning first=259 second=108 amount=-1 +kerning first=121 second=335 amount=-1 +kerning first=379 second=283 amount=-1 +kerning first=264 second=85 amount=-1 +kerning first=264 second=286 amount=-2 +kerning first=367 second=108 amount=-1 +kerning first=203 second=241 amount=-1 +kerning first=76 second=65 amount=-1 +kerning first=278 second=110 amount=-1 +kerning first=331 second=108 amount=-1 +kerning first=314 second=110 amount=-1 +kerning first=192 second=286 amount=-1 +kerning first=350 second=110 amount=-1 +kerning first=217 second=65 amount=-2 +kerning first=87 second=286 amount=-1 +kerning first=289 second=331 amount=-1 +kerning first=221 second=193 amount=-3 +kerning first=251 second=380 amount=-1 +kerning first=232 second=115 amount=-1 +kerning first=217 second=331 amount=-1 +kerning first=268 second=115 amount=-1 +kerning first=107 second=248 amount=-1 +kerning first=381 second=231 amount=-1 +kerning first=253 second=331 amount=-1 +kerning first=370 second=338 amount=-1 +kerning first=196 second=115 amount=-1 +kerning first=74 second=380 amount=-1 +kerning first=260 second=356 amount=-3 +kerning first=283 second=8250 amount=-1 +kerning first=295 second=371 amount=-1 +kerning first=84 second=210 amount=-1 +kerning first=198 second=326 amount=-1 +kerning first=1064 second=1073 amount=-1 +kerning first=331 second=371 amount=-1 +kerning first=250 second=255 amount=-1 +kerning first=234 second=326 amount=-1 +kerning first=362 second=347 amount=-1 +kerning first=367 second=371 amount=-1 +kerning first=278 second=205 amount=-1 +kerning first=248 second=307 amount=-1 +kerning first=326 second=347 amount=-1 +kerning first=381 second=352 amount=-1 +kerning first=267 second=250 amount=-1 +kerning first=82 second=262 amount=-1 +kerning first=109 second=255 amount=-1 +kerning first=231 second=250 amount=-1 +kerning first=254 second=347 amount=-1 +kerning first=187 second=371 amount=-1 +kerning first=73 second=255 amount=-1 +kerning first=339 second=250 amount=-1 +kerning first=218 second=347 amount=-1 +kerning first=303 second=250 amount=-1 +kerning first=1047 second=1078 amount=-1 +kerning first=268 second=378 amount=-1 +kerning first=90 second=250 amount=-1 +kerning first=232 second=378 amount=-1 +kerning first=119 second=328 amount=-1 +kerning first=83 second=328 amount=-1 +kerning first=74 second=212 amount=-1 +kerning first=195 second=250 amount=-1 +kerning first=1113 second=1097 amount=-1 +kerning first=102 second=333 amount=-1 +kerning first=1030 second=1077 amount=-1 +kerning first=86 second=44 amount=-3 +kerning first=204 second=257 amount=-1 +kerning first=89 second=267 amount=-2 +kerning first=99 second=257 amount=-1 +kerning first=356 second=347 amount=-2 +kerning first=286 second=8220 amount=-1 +kerning first=1069 second=1047 amount=-1 +kerning first=331 second=119 amount=-1 +kerning first=218 second=288 amount=-1 +kerning first=250 second=8220 amount=-2 +kerning first=207 second=103 amount=-1 +kerning first=303 second=283 amount=-1 +kerning first=214 second=8220 amount=-1 +kerning first=87 second=345 amount=-1 +kerning first=97 second=351 amount=-1 +kerning first=88 second=243 amount=-1 +kerning first=8218 second=314 amount=-1 +kerning first=298 second=332 amount=-1 +kerning first=109 second=8220 amount=-2 +kerning first=240 second=106 amount=-1 +kerning first=262 second=332 amount=-2 +kerning first=206 second=113 amount=-1 +kerning first=370 second=332 amount=-1 +kerning first=207 second=333 amount=-1 +kerning first=264 second=345 amount=-1 +kerning first=107 second=242 amount=-1 +kerning first=77 second=288 amount=-1 +kerning first=211 second=87 amount=-1 +kerning first=65 second=113 amount=-1 +kerning first=1027 second=1116 amount=-1 +kerning first=303 second=99 amount=-1 +kerning first=1058 second=1033 amount=-2 +kerning first=381 second=287 amount=-2 +kerning first=113 second=347 amount=-1 +kerning first=267 second=99 amount=-1 +kerning first=345 second=287 amount=-1 +kerning first=77 second=347 amount=-1 +kerning first=375 second=99 amount=-1 +kerning first=198 second=217 amount=-1 +kerning first=219 second=232 amount=-1 +kerning first=362 second=288 amount=-1 +kerning first=193 second=243 amount=-1 +kerning first=8217 second=192 amount=-3 +kerning first=356 second=242 amount=-1 +kerning first=187 second=197 amount=-2 +kerning first=378 second=326 amount=-1 +kerning first=209 second=281 amount=-1 +kerning first=1105 second=1095 amount=-1 +kerning first=85 second=279 amount=-1 +kerning first=256 second=354 amount=-3 +kerning first=99 second=254 amount=-1 +kerning first=198 second=119 amount=-1 +kerning first=76 second=334 amount=-1 +kerning first=278 second=379 amount=-1 +kerning first=71 second=304 amount=-1 +kerning first=287 second=324 amount=-1 +kerning first=68 second=74 amount=-1 +kerning first=234 second=119 amount=-1 +kerning first=121 second=279 amount=-1 +kerning first=217 second=334 amount=-1 +kerning first=74 second=324 amount=-1 +kerning first=187 second=374 amount=-2 +kerning first=1093 second=1079 amount=-1 +kerning first=290 second=344 amount=-1 +kerning first=315 second=274 amount=-1 +kerning first=87 second=289 amount=-2 +kerning first=317 second=204 amount=-1 +kerning first=257 second=249 amount=-1 +kerning first=79 second=259 amount=-1 +kerning first=77 second=229 amount=-1 +kerning first=378 second=119 amount=-1 +kerning first=1057 second=1079 amount=-1 +kerning first=199 second=339 amount=-1 +kerning first=290 second=229 amount=-1 +kerning first=1038 second=1074 amount=-2 +kerning first=317 second=284 amount=-1 +kerning first=317 second=74 amount=-1 +kerning first=370 second=279 amount=-1 +kerning first=209 second=284 amount=-1 +kerning first=8216 second=366 amount=-1 +kerning first=258 second=246 amount=-1 +kerning first=218 second=229 amount=-2 +kerning first=210 second=201 amount=-1 +kerning first=366 second=114 amount=-1 +kerning first=199 second=76 amount=-1 +kerning first=1027 second=1119 amount=-1 +kerning first=262 second=279 amount=-1 +kerning first=379 second=339 amount=-1 +kerning first=8218 second=261 amount=-1 +kerning first=362 second=229 amount=-2 +kerning first=346 second=206 amount=-1 +kerning first=298 second=279 amount=-1 +kerning first=311 second=244 amount=-1 +kerning first=250 second=8217 amount=-2 +kerning first=286 second=8217 amount=-1 +kerning first=336 second=82 amount=-1 +kerning first=278 second=264 amount=-1 +kerning first=1058 second=1089 amount=-1 +kerning first=381 second=234 amount=-1 +kerning first=109 second=8217 amount=-2 +kerning first=201 second=86 amount=-1 +kerning first=206 second=264 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=192 second=289 amount=-1 +kerning first=261 second=121 amount=-1 +kerning first=221 second=364 amount=-1 +kerning first=225 second=121 amount=-1 +kerning first=1069 second=1041 amount=-1 +kerning first=65 second=264 amount=-1 +kerning first=264 second=289 amount=-1 +kerning first=264 second=82 amount=-1 +kerning first=198 second=66 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=8220 second=271 amount=-1 +kerning first=336 second=289 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=350 second=205 amount=-1 +kerning first=1058 second=1086 amount=-1 +kerning first=79 second=354 amount=-1 +kerning first=87 second=82 amount=-1 +kerning first=1038 second=1083 amount=-3 +kerning first=353 second=225 amount=-1 +kerning first=251 second=117 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=219 second=338 amount=-1 +kerning first=90 second=102 amount=-1 +kerning first=323 second=117 amount=-1 +kerning first=356 second=241 amount=-1 +kerning first=287 second=117 amount=-1 +kerning first=71 second=97 amount=-1 +kerning first=272 second=76 amount=-1 +kerning first=325 second=71 amount=-1 +kerning first=267 second=46 amount=-1 +kerning first=209 second=225 amount=-1 +kerning first=262 second=72 amount=-1 +kerning first=284 second=97 amount=-1 +kerning first=369 second=121 amount=-1 +kerning first=99 second=251 amount=-1 +kerning first=200 second=76 amount=-1 +kerning first=201 second=219 amount=-1 +kerning first=333 second=121 amount=-1 +kerning first=379 second=111 amount=-1 +kerning first=339 second=46 amount=-2 +kerning first=281 second=225 amount=-1 +kerning first=8217 second=103 amount=-2 +kerning first=334 second=72 amount=-1 +kerning first=212 second=97 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=204 second=251 amount=-1 +kerning first=198 second=122 amount=-1 +kerning first=375 second=46 amount=-3 +kerning first=381 second=290 amount=-1 +kerning first=339 second=102 amount=-1 +kerning first=107 second=245 amount=-1 +kerning first=71 second=363 amount=-1 +kerning first=356 second=97 amount=-2 +kerning first=231 second=46 amount=-1 +kerning first=315 second=84 amount=-1 +kerning first=356 second=245 amount=-2 +kerning first=1052 second=1108 amount=-1 +kerning first=187 second=200 amount=-3 +kerning first=231 second=102 amount=-1 +kerning first=267 second=102 amount=-1 +kerning first=82 second=318 amount=-1 +kerning first=284 second=363 amount=-1 +kerning first=303 second=102 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=118 second=318 amount=-1 +kerning first=352 second=90 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=65 second=116 amount=-1 +kerning first=201 second=83 amount=-1 +kerning first=315 second=330 amount=-1 +kerning first=79 second=298 amount=-1 +kerning first=193 second=240 amount=-1 +kerning first=367 second=259 amount=-1 +kerning first=198 second=214 amount=-1 +kerning first=90 second=194 amount=-1 +kerning first=1060 second=1043 amount=-1 +kerning first=88 second=240 amount=-1 +kerning first=110 second=371 amount=-1 +kerning first=90 second=253 amount=-2 +kerning first=1024 second=1043 amount=-1 +kerning first=350 second=116 amount=-1 +kerning first=381 second=83 amount=-1 +kerning first=317 second=77 amount=-1 +kerning first=314 second=116 amount=-1 +kerning first=66 second=330 amount=-2 +kerning first=232 second=375 amount=-1 +kerning first=187 second=259 amount=-1 +kerning first=356 second=304 amount=-1 +kerning first=378 second=122 amount=-1 +kerning first=196 second=375 amount=-1 +kerning first=204 second=369 amount=-1 +kerning first=217 second=71 amount=-1 +kerning first=122 second=311 amount=-1 +kerning first=284 second=304 amount=-1 +kerning first=376 second=375 amount=-1 +kerning first=334 second=220 amount=-1 +kerning first=76 second=71 amount=-1 +kerning first=212 second=304 amount=-1 +kerning first=118 second=259 amount=-2 +kerning first=304 second=375 amount=-1 +kerning first=262 second=220 amount=-1 +kerning first=82 second=259 amount=-1 +kerning first=354 second=90 amount=-1 +kerning first=264 second=233 amount=-1 +kerning first=71 second=298 amount=-1 +kerning first=347 second=291 amount=-1 +kerning first=332 second=77 amount=-1 +kerning first=311 second=291 amount=-1 +kerning first=288 second=194 amount=-1 +kerning first=275 second=291 amount=-1 +kerning first=101 second=227 amount=-1 +kerning first=212 second=298 amount=-1 +kerning first=69 second=350 amount=-1 +kerning first=284 second=82 amount=-1 +kerning first=216 second=194 amount=-2 +kerning first=203 second=291 amount=-1 +kerning first=354 second=233 amount=-2 +kerning first=198 second=304 amount=-1 +kerning first=284 second=298 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=67 second=235 amount=-1 +kerning first=210 second=350 amount=-1 +kerning first=291 second=97 amount=-1 +kerning first=98 second=291 amount=-1 +kerning first=260 second=337 amount=-1 +kerning first=351 second=311 amount=-1 +kerning first=1113 second=1088 amount=-1 +kerning first=368 second=213 amount=-1 +kerning first=327 second=97 amount=-1 +kerning first=315 second=311 amount=-1 +kerning first=222 second=66 amount=-1 +kerning first=279 second=311 amount=-1 +kerning first=79 second=317 amount=-1 +kerning first=346 second=200 amount=-1 +kerning first=75 second=318 amount=-1 +kerning first=255 second=97 amount=-2 +kerning first=119 second=337 amount=-1 +kerning first=243 second=311 amount=-1 +kerning first=69 second=90 amount=-1 +kerning first=197 second=84 amount=-3 +kerning first=354 second=350 amount=-2 +kerning first=210 second=90 amount=-1 +kerning first=8218 second=370 amount=-2 +kerning first=202 second=71 amount=-1 +kerning first=368 second=337 amount=-1 +kerning first=282 second=350 amount=-1 +kerning first=310 second=71 amount=-1 +kerning first=102 second=311 amount=2 +kerning first=282 second=90 amount=-1 +kerning first=377 second=84 amount=-1 +kerning first=252 second=318 amount=-1 +kerning first=274 second=71 amount=-1 +kerning first=296 second=337 amount=-1 +kerning first=66 second=311 amount=-1 +kerning first=1036 second=1101 amount=-1 +kerning first=264 second=104 amount=-1 +kerning first=217 second=381 amount=-1 +kerning first=198 second=44 amount=-1 +kerning first=194 second=284 amount=-1 +kerning first=382 second=303 amount=-1 +kerning first=279 second=187 amount=-1 +kerning first=287 second=234 amount=-1 +kerning first=192 second=104 amount=-1 +kerning first=243 second=187 amount=-1 +kerning first=323 second=234 amount=-1 +kerning first=270 second=44 amount=-1 +kerning first=89 second=284 amount=-1 +kerning first=8217 second=382 amount=-1 +kerning first=268 second=260 amount=-2 +kerning first=84 second=325 amount=-1 +kerning first=74 second=234 amount=-1 +kerning first=211 second=78 amount=-1 +kerning first=211 second=310 amount=-1 +kerning first=8220 second=86 amount=-1 +kerning first=376 second=260 amount=-3 +kerning first=8216 second=195 amount=-4 +kerning first=296 second=213 amount=-1 +kerning first=280 second=374 amount=-1 +kerning first=260 second=213 amount=-1 +kerning first=66 second=187 amount=-1 +kerning first=256 second=85 amount=-2 +kerning first=101 second=351 amount=-1 +kerning first=278 second=227 amount=-1 +kerning first=356 second=298 amount=-1 +kerning first=202 second=284 amount=-1 +kerning first=65 second=351 amount=-1 +kerning first=1038 second=1077 amount=-2 +kerning first=206 second=351 amount=-1 +kerning first=206 second=227 amount=-1 +kerning first=374 second=284 amount=-1 +kerning first=197 second=220 amount=-2 +kerning first=100 second=98 amount=-1 +kerning first=1059 second=1074 amount=-2 +kerning first=79 second=85 amount=-1 +kerning first=378 second=44 amount=-1 +kerning first=302 second=284 amount=-1 +kerning first=280 second=266 amount=-1 +kerning first=346 second=303 amount=-1 +kerning first=338 second=284 amount=-1 +kerning first=85 second=350 amount=-1 +kerning first=80 second=277 amount=-1 +kerning first=379 second=367 amount=-1 +kerning first=314 second=227 amount=-1 +kerning first=266 second=284 amount=-2 +kerning first=382 second=269 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=314 second=8220 amount=-2 +kerning first=115 second=345 amount=-1 +kerning first=8217 second=122 amount=-1 +kerning first=230 second=380 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=207 second=283 amount=-1 +kerning first=284 second=270 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=242 second=8220 amount=-1 +kerning first=8222 second=362 amount=-2 +kerning first=68 second=287 amount=-1 +kerning first=302 second=380 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=214 second=171 amount=-1 +kerning first=102 second=283 amount=-1 +kerning first=338 second=380 amount=-1 +kerning first=356 second=270 amount=-1 +kerning first=382 second=228 amount=-1 +kerning first=346 second=228 amount=-1 +kerning first=101 second=8220 amount=-1 +kerning first=8216 second=223 amount=-1 +kerning first=104 second=287 amount=-1 +kerning first=310 second=228 amount=-1 +kerning first=65 second=8220 amount=-3 +kerning first=364 second=345 amount=-1 +kerning first=274 second=228 amount=-1 +kerning first=368 second=241 amount=-1 +kerning first=209 second=287 amount=-1 +kerning first=212 second=270 amount=-1 +kerning first=317 second=287 amount=-1 +kerning first=202 second=228 amount=-1 +kerning first=119 second=241 amount=-1 +kerning first=281 second=287 amount=-1 +kerning first=338 second=8249 amount=-1 +kerning first=100 second=287 amount=-1 +kerning first=374 second=8249 amount=-3 +kerning first=353 second=287 amount=-1 +kerning first=377 second=248 amount=-1 +kerning first=266 second=8249 amount=-2 +kerning first=382 second=331 amount=-1 +kerning first=269 second=248 amount=-1 +kerning first=90 second=197 amount=-1 +kerning first=194 second=8249 amount=-2 +kerning first=83 second=241 amount=-1 +kerning first=197 second=248 amount=-1 +kerning first=311 second=263 amount=-1 +kerning first=346 second=331 amount=-1 +kerning first=356 second=366 amount=-1 +kerning first=324 second=318 amount=-1 +kerning first=350 second=255 amount=-1 +kerning first=274 second=331 amount=-1 +kerning first=377 second=112 amount=-1 +kerning first=374 second=256 amount=-3 +kerning first=284 second=366 amount=-1 +kerning first=74 second=262 amount=-1 +kerning first=338 second=256 amount=-1 +kerning first=202 second=331 amount=-1 +kerning first=305 second=112 amount=-1 +kerning first=242 second=255 amount=-1 +kerning first=8222 second=217 amount=-2 +kerning first=269 second=112 amount=-1 +kerning first=206 second=255 amount=-1 +kerning first=193 second=221 amount=-3 +kerning first=233 second=112 amount=-1 +kerning first=202 second=200 amount=-1 +kerning first=197 second=112 amount=-1 +kerning first=272 second=228 amount=-1 +kerning first=101 second=255 amount=-1 +kerning first=88 second=221 amount=-1 +kerning first=65 second=255 amount=-1 +kerning first=217 second=74 amount=-1 +kerning first=108 second=314 amount=-1 +kerning first=88 second=352 amount=-1 +kerning first=365 second=249 amount=-1 +kerning first=287 second=98 amount=-1 +kerning first=193 second=352 amount=-2 +kerning first=211 second=207 amount=-1 +kerning first=251 second=98 amount=-1 +kerning first=70 second=338 amount=-1 +kerning first=212 second=366 amount=-1 +kerning first=8217 second=279 amount=-2 +kerning first=8216 second=87 amount=-1 +kerning first=368 second=105 amount=-1 +kerning first=75 second=290 amount=-1 +kerning first=1058 second=1092 amount=-1 +kerning first=249 second=314 amount=-1 +kerning first=110 second=98 amount=-1 +kerning first=84 second=339 amount=-2 +kerning first=71 second=366 amount=-1 +kerning first=220 second=214 amount=-1 +kerning first=321 second=314 amount=-1 +kerning first=277 second=307 amount=-1 +kerning first=212 second=106 amount=-1 +kerning first=197 second=268 amount=-1 +kerning first=85 second=81 amount=-1 +kerning first=67 second=346 amount=-1 +kerning first=248 second=106 amount=-1 +kerning first=258 second=333 amount=-1 +kerning first=230 second=8221 amount=-1 +kerning first=199 second=224 amount=-1 +kerning first=90 second=68 amount=-1 +kerning first=298 second=81 amount=-1 +kerning first=90 second=80 amount=-1 +kerning first=280 second=346 amount=-1 +kerning first=86 second=217 amount=-1 +kerning first=262 second=81 amount=-2 +kerning first=235 second=224 amount=-1 +kerning first=370 second=81 amount=-1 +kerning first=208 second=346 amount=-1 +kerning first=284 second=106 amount=-1 +kerning first=307 second=224 amount=-1 +kerning first=103 second=243 amount=-1 +kerning first=8220 second=114 amount=-1 +kerning first=89 second=256 amount=-3 +kerning first=116 second=118 amount=-1 +kerning first=379 second=224 amount=-1 +kerning first=213 second=230 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=352 second=346 amount=-1 +kerning first=72 second=230 amount=-1 +kerning first=244 second=347 amount=-1 +kerning first=353 second=324 amount=-1 +kerning first=108 second=230 amount=-1 +kerning first=8250 second=315 amount=-3 +kerning first=330 second=333 amount=-1 +kerning first=266 second=256 amount=-2 +kerning first=362 second=253 amount=-1 +kerning first=67 second=326 amount=-1 +kerning first=221 second=101 amount=-2 +kerning first=366 second=333 amount=-1 +kerning first=344 second=67 amount=-1 +kerning first=67 second=243 amount=-1 +kerning first=86 second=69 amount=-1 +kerning first=89 second=120 amount=-1 +kerning first=1060 second=1034 amount=-1 +kerning first=8250 second=200 amount=-3 +kerning first=379 second=79 amount=-1 +kerning first=209 second=334 amount=-1 +kerning first=1048 second=1072 amount=-1 +kerning first=87 second=187 amount=-1 +kerning first=381 second=268 amount=-1 +kerning first=264 second=318 amount=-1 +kerning first=258 second=218 amount=-2 +kerning first=71 second=251 amount=-1 +kerning first=85 second=229 amount=-2 +kerning first=313 second=192 amount=-1 +kerning first=1113 second=1080 amount=-1 +kerning first=1024 second=1034 amount=-1 +kerning first=1065 second=1098 amount=-1 +kerning first=201 second=268 amount=-1 +kerning first=374 second=120 amount=-1 +kerning first=317 second=203 amount=-1 +kerning first=109 second=371 amount=-1 +kerning first=45 second=218 amount=-2 +kerning first=262 second=229 amount=-1 +kerning first=121 second=229 amount=-2 +kerning first=71 second=270 amount=-1 +kerning first=284 second=251 amount=-1 +kerning first=282 second=118 amount=-1 +kerning first=230 second=120 amount=-1 +kerning first=370 second=229 amount=-2 +kerning first=222 second=218 amount=-1 +kerning first=246 second=118 amount=-1 +kerning first=356 second=251 amount=-1 +kerning first=302 second=249 amount=-1 +kerning first=71 second=106 amount=-1 +kerning first=354 second=118 amount=-1 +kerning first=68 second=203 amount=-1 +kerning first=8222 second=102 amount=-1 +kerning first=298 second=229 amount=-1 +kerning first=350 second=366 amount=-1 +kerning first=338 second=120 amount=-1 +kerning first=334 second=229 amount=-1 +kerning first=81 second=218 amount=-1 +kerning first=375 second=244 amount=-1 +kerning first=334 second=257 amount=-1 +kerning first=194 second=368 amount=-2 +kerning first=370 second=257 amount=-2 +kerning first=317 second=219 amount=-1 +kerning first=45 second=361 amount=-1 +kerning first=262 second=257 amount=-1 +kerning first=241 second=45 amount=-1 +kerning first=89 second=368 amount=-1 +kerning first=298 second=257 amount=-1 +kerning first=117 second=361 amount=-1 +kerning first=99 second=232 amount=-1 +kerning first=213 second=202 amount=-1 +kerning first=338 second=368 amount=-1 +kerning first=363 second=254 amount=-1 +kerning first=374 second=368 amount=-1 +kerning first=85 second=257 amount=-2 +kerning first=204 second=232 amount=-1 +kerning first=266 second=368 amount=-1 +kerning first=84 second=8250 amount=-1 +kerning first=121 second=257 amount=-2 +kerning first=68 second=219 amount=-1 +kerning first=325 second=121 amount=-1 +kerning first=90 second=244 amount=-1 +kerning first=289 second=121 amount=-1 +kerning first=254 second=378 amount=-1 +kerning first=77 second=266 amount=-1 +kerning first=255 second=254 amount=-1 +kerning first=344 second=336 amount=-1 +kerning first=195 second=244 amount=-1 +kerning first=217 second=121 amount=-1 +kerning first=321 second=202 amount=-1 +kerning first=291 second=254 amount=-1 +kerning first=231 second=244 amount=-1 +kerning first=216 second=330 amount=-1 +kerning first=199 second=79 amount=-2 +kerning first=213 second=66 amount=-1 +kerning first=213 second=82 amount=-1 +kerning first=267 second=244 amount=-1 +kerning first=112 second=121 amount=-1 +kerning first=216 second=278 amount=-1 +kerning first=377 second=344 amount=-1 +kerning first=303 second=244 amount=-1 +kerning first=76 second=121 amount=-1 +kerning first=205 second=267 amount=-1 +kerning first=99 second=106 amount=-1 +kerning first=288 second=278 amount=-1 +kerning first=321 second=82 amount=-1 +kerning first=205 second=382 amount=-1 +kerning first=187 second=117 amount=-1 +kerning first=321 second=66 amount=-1 +kerning first=199 second=107 amount=-1 +kerning first=277 second=382 amount=-1 +kerning first=316 second=271 amount=-1 +kerning first=259 second=117 amount=-1 +kerning first=313 second=382 amount=-1 +kerning first=118 second=281 amount=-1 +kerning first=331 second=117 amount=-1 +kerning first=295 second=117 amount=-1 +kerning first=100 second=382 amount=-1 +kerning first=249 second=230 amount=-1 +kerning first=367 second=117 amount=-1 +kerning first=266 second=201 amount=-1 +kerning first=333 second=8250 amount=-1 +kerning first=258 second=361 amount=-1 +kerning first=86 second=205 amount=-1 +kerning first=366 second=361 amount=-1 +kerning first=82 second=281 amount=-1 +kerning first=330 second=361 amount=-1 +kerning first=212 second=315 amount=-1 +kerning first=240 second=347 amount=-1 +kerning first=90 second=216 amount=-1 +kerning first=204 second=347 amount=-1 +kerning first=235 second=107 amount=-1 +kerning first=103 second=271 amount=-1 +kerning first=195 second=216 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=99 second=347 amount=-1 +kerning first=307 second=107 amount=-1 +kerning first=381 second=240 amount=-1 +kerning first=1058 second=1095 amount=-1 +kerning first=106 second=226 amount=-1 +kerning first=281 second=259 amount=-1 +kerning first=332 second=65 amount=-2 +kerning first=327 second=245 amount=-1 +kerning first=325 second=266 amount=-1 +kerning first=368 second=65 amount=-2 +kerning first=291 second=245 amount=-1 +kerning first=1025 second=1062 amount=-1 +kerning first=1059 second=1083 amount=-3 +kerning first=75 second=46 amount=-1 +kerning first=211 second=226 amount=-1 +kerning first=193 second=336 amount=-1 +kerning first=69 second=362 amount=-1 +kerning first=263 second=111 amount=-1 +kerning first=255 second=245 amount=-1 +kerning first=111 second=46 amount=-2 +kerning first=87 second=252 amount=-1 +kerning first=79 second=202 amount=-1 +kerning first=310 second=219 amount=-1 +kerning first=282 second=102 amount=-1 +kerning first=205 second=122 amount=-1 +kerning first=283 second=226 amount=-1 +kerning first=274 second=219 amount=-1 +kerning first=8222 second=118 amount=-2 +kerning first=354 second=102 amount=-1 +kerning first=100 second=122 amount=-1 +kerning first=217 second=266 amount=-1 +kerning first=202 second=219 amount=-1 +kerning first=254 second=8250 amount=-1 +kerning first=1057 second=1042 amount=-1 +kerning first=8220 second=234 amount=-1 +kerning first=225 second=316 amount=-1 +kerning first=8217 second=267 amount=-2 +kerning first=261 second=316 amount=-1 +kerning first=219 second=245 amount=-1 +kerning first=269 second=335 amount=-1 +kerning first=280 second=259 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=263 second=261 amount=-1 +kerning first=333 second=316 amount=-1 +kerning first=192 second=252 amount=-1 +kerning first=352 second=259 amount=-1 +kerning first=369 second=316 amount=-1 +kerning first=228 second=252 amount=-1 +kerning first=78 second=245 amount=-1 +kerning first=377 second=335 amount=-1 +kerning first=316 second=259 amount=-1 +kerning first=70 second=226 amount=-1 +kerning first=264 second=252 amount=-1 +kerning first=323 second=246 amount=-1 +kerning first=1027 second=1082 amount=-1 +kerning first=88 second=45 amount=-2 +kerning first=219 second=369 amount=-1 +kerning first=103 second=259 amount=-1 +kerning first=71 second=382 amount=-1 +kerning first=287 second=246 amount=-1 +kerning first=76 second=202 amount=-1 +kerning first=67 second=259 amount=-1 +kerning first=90 second=356 amount=-1 +kerning first=352 second=86 amount=-1 +kerning first=347 second=375 amount=-1 +kerning first=99 second=351 amount=-1 +kerning first=291 second=369 amount=-1 +kerning first=208 second=259 amount=-1 +kerning first=235 second=116 amount=-1 +kerning first=233 second=103 amount=-1 +kerning first=1054 second=1103 amount=-1 +kerning first=212 second=382 amount=-1 +kerning first=83 second=253 amount=-1 +kerning first=8250 second=331 amount=-1 +kerning first=298 second=233 amount=-1 +kerning first=197 second=103 amount=-1 +kerning first=229 second=45 amount=-1 +kerning first=370 second=109 amount=-1 +kerning first=224 second=253 amount=-1 +kerning first=78 second=369 amount=-1 +kerning first=76 second=266 amount=-1 +kerning first=100 second=249 amount=-1 +kerning first=98 second=375 amount=-1 +kerning first=205 second=279 amount=-1 +kerning first=377 second=332 amount=-1 +kerning first=313 second=122 amount=-1 +kerning first=354 second=362 amount=-1 +kerning first=277 second=122 amount=-1 +kerning first=65 second=277 amount=-1 +kerning first=78 second=242 amount=-1 +kerning first=219 second=242 amount=-1 +kerning first=275 second=375 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=363 second=369 amount=-1 +kerning first=248 second=382 amount=-1 +kerning first=327 second=369 amount=-1 +kerning first=284 second=382 amount=-1 +kerning first=291 second=242 amount=-1 +kerning first=210 second=362 amount=-1 +kerning first=379 second=116 amount=-1 +kerning first=255 second=242 amount=-1 +kerning first=121 second=109 amount=-1 +kerning first=377 second=103 amount=-2 +kerning first=195 second=356 amount=-3 +kerning first=356 second=382 amount=-2 +kerning first=201 second=227 amount=-1 +kerning first=327 second=242 amount=-1 +kerning first=275 second=115 amount=-1 +kerning first=332 second=68 amount=-1 +kerning first=103 second=355 amount=-1 +kerning first=278 second=370 amount=-1 +kerning first=332 second=304 amount=-1 +kerning first=202 second=80 amount=-1 +kerning first=203 second=115 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=352 second=355 amount=-1 +kerning first=356 second=237 amount=-1 +kerning first=350 second=370 amount=-1 +kerning first=363 second=363 amount=-1 +kerning first=316 second=355 amount=-1 +kerning first=205 second=119 amount=-1 +kerning first=211 second=198 amount=-2 +kerning first=311 second=115 amount=-1 +kerning first=241 second=119 amount=-1 +kerning first=288 second=203 amount=-1 +kerning first=347 second=115 amount=-1 +kerning first=277 second=119 amount=-1 +kerning first=1061 second=1090 amount=-1 +kerning first=313 second=119 amount=-1 +kerning first=8222 second=90 amount=-1 +kerning first=8216 second=235 amount=-1 +kerning first=1025 second=1090 amount=-1 +kerning first=203 second=284 amount=-1 +kerning first=296 second=253 amount=-1 +kerning first=266 second=108 amount=-1 +kerning first=84 second=313 amount=-1 +kerning first=274 second=315 amount=-1 +kerning first=368 second=253 amount=-1 +kerning first=338 second=108 amount=-1 +kerning first=1061 second=1059 amount=-1 +kerning first=274 second=80 amount=-1 +kerning first=377 second=75 amount=-1 +kerning first=1031 second=1105 amount=-1 +kerning first=346 second=80 amount=-1 +kerning first=1067 second=1105 amount=-1 +kerning first=65 second=370 amount=-2 +kerning first=83 second=68 amount=-1 +kerning first=1104 second=1095 amount=-1 +kerning first=339 second=328 amount=-1 +kerning first=196 second=269 amount=-1 +kerning first=303 second=328 amount=-1 +kerning first=315 second=196 amount=-1 +kerning first=197 second=335 amount=-1 +kerning first=304 second=269 amount=-1 +kerning first=267 second=328 amount=-1 +kerning first=316 second=231 amount=-1 +kerning first=296 second=225 amount=-1 +kerning first=231 second=328 amount=-1 +kerning first=376 second=269 amount=-2 +kerning first=346 second=315 amount=-1 +kerning first=83 second=225 amount=-1 +kerning first=230 second=108 amount=-1 +kerning first=197 second=363 amount=-1 +kerning first=226 second=316 amount=-1 +kerning first=119 second=225 amount=-2 +kerning first=194 second=108 amount=-1 +kerning first=233 second=363 amount=-1 +kerning first=105 second=102 amount=-1 +kerning first=216 second=203 amount=-1 +kerning first=122 second=277 amount=-1 +kerning first=324 second=46 amount=-1 +kerning first=87 second=280 amount=-1 +kerning first=269 second=363 amount=-1 +kerning first=67 second=231 amount=-1 +kerning first=278 second=198 amount=-1 +kerning first=305 second=363 amount=-1 +kerning first=8250 second=303 amount=-1 +kerning first=235 second=8217 amount=-1 +kerning first=377 second=363 amount=-1 +kerning first=332 second=225 amount=-1 +kerning first=264 second=280 amount=-1 +kerning first=368 second=225 amount=-2 +kerning first=291 second=273 amount=-1 +kerning first=194 second=8221 amount=-3 +kerning first=216 second=46 amount=-1 +kerning first=103 second=231 amount=-1 +kerning first=1086 second=1076 amount=-1 +kerning first=255 second=273 amount=-1 +kerning first=252 second=46 amount=-1 +kerning first=336 second=280 amount=-1 +kerning first=69 second=102 amount=-1 +kerning first=288 second=46 amount=-1 +kerning first=362 second=245 amount=-1 +kerning first=221 second=261 amount=-2 +kerning first=206 second=367 amount=-1 +kerning first=1057 second=1067 amount=-1 +kerning first=65 second=367 amount=-1 +kerning first=218 second=210 amount=-1 +kerning first=101 second=367 amount=-1 +kerning first=211 second=379 amount=-1 +kerning first=72 second=211 amount=-1 +kerning first=45 second=352 amount=-2 +kerning first=307 second=8220 amount=-1 +kerning first=200 second=296 amount=-1 +kerning first=368 second=250 amount=-1 +kerning first=1043 second=1092 amount=-1 +kerning first=379 second=351 amount=-1 +kerning first=77 second=210 amount=-1 +kerning first=354 second=275 amount=-2 +kerning first=235 second=8220 amount=-1 +kerning first=272 second=296 amount=-1 +kerning first=81 second=352 amount=-1 +kerning first=280 second=86 amount=-1 +kerning first=260 second=250 amount=-1 +kerning first=98 second=378 amount=-1 +kerning first=200 second=327 amount=-1 +kerning first=224 second=250 amount=-1 +kerning first=208 second=86 amount=-1 +kerning first=321 second=326 amount=-1 +kerning first=203 second=378 amount=-1 +kerning first=272 second=327 amount=-1 +kerning first=120 second=122 amount=-1 +kerning first=81 second=206 amount=-1 +kerning first=121 second=112 amount=-1 +kerning first=99 second=235 amount=-1 +kerning first=296 second=250 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=83 second=250 amount=-1 +kerning first=365 second=261 amount=-1 +kerning first=8220 second=374 amount=-1 +kerning first=108 second=326 amount=-1 +kerning first=1024 second=1118 amount=-1 +kerning first=90 second=328 amount=-1 +kerning first=102 second=171 amount=-1 +kerning first=222 second=206 amount=-1 +kerning first=117 second=237 amount=-1 +kerning first=84 second=288 amount=-1 +kerning first=377 second=100 amount=-1 +kerning first=296 second=365 amount=-1 +kerning first=260 second=365 amount=-1 +kerning first=45 second=237 amount=-1 +kerning first=280 second=262 amount=-1 +kerning first=224 second=365 amount=-1 +kerning first=67 second=83 amount=-1 +kerning first=197 second=100 amount=-1 +kerning first=121 second=224 amount=-1 +kerning first=307 second=355 amount=-1 +kerning first=253 second=353 amount=-1 +kerning first=315 second=171 amount=-1 +kerning first=370 second=112 amount=-1 +kerning first=111 second=382 amount=-1 +kerning first=289 second=353 amount=-1 +kerning first=351 second=171 amount=-1 +kerning first=269 second=100 amount=-1 +kerning first=347 second=378 amount=-1 +kerning first=1042 second=1113 amount=-1 +kerning first=208 second=83 amount=-1 +kerning first=298 second=112 amount=-1 +kerning first=222 second=352 amount=-1 +kerning first=213 second=323 amount=-1 +kerning first=280 second=83 amount=-1 +kerning first=200 second=46 amount=-1 +kerning first=112 second=353 amount=-1 +kerning first=80 second=113 amount=-1 +kerning first=352 second=83 amount=-1 +kerning first=264 second=249 amount=-1 +kerning first=70 second=198 amount=-2 +kerning first=258 second=352 amount=-2 +kerning first=217 second=353 amount=-1 +kerning first=366 second=352 amount=-1 +kerning first=370 second=337 amount=-1 +kerning first=330 second=352 amount=-1 +kerning first=321 second=323 amount=-1 +kerning first=67 second=262 amount=-2 +kerning first=221 second=113 amount=-2 +kerning first=275 second=353 amount=-1 +kerning first=354 second=332 amount=-1 +kerning first=111 second=291 amount=-1 +kerning first=352 second=114 amount=-1 +kerning first=199 second=233 amount=-1 +kerning first=379 second=379 amount=-1 +kerning first=354 second=99 amount=-2 +kerning first=313 second=304 amount=-1 +kerning first=336 second=364 amount=-1 +kerning first=80 second=289 amount=-1 +kerning first=8220 second=346 amount=-1 +kerning first=8222 second=121 amount=-1 +kerning first=116 second=289 amount=-1 +kerning first=314 second=339 amount=-1 +kerning first=264 second=364 amount=-1 +kerning first=192 second=249 amount=-1 +kerning first=214 second=274 amount=-1 +kerning first=221 second=289 amount=-2 +kerning first=262 second=84 amount=-1 +kerning first=228 second=249 amount=-1 +kerning first=257 second=289 amount=-1 +kerning first=258 second=89 amount=-3 +kerning first=45 second=324 amount=-1 +kerning first=87 second=249 amount=-1 +kerning first=222 second=89 amount=-1 +kerning first=1057 second=1039 amount=-1 +kerning first=379 second=233 amount=-1 +kerning first=1050 second=1079 amount=-1 +kerning first=76 second=350 amount=-1 +kerning first=65 second=339 amount=-1 +kerning first=67 second=234 amount=-1 +kerning first=103 second=234 amount=-1 +kerning first=366 second=237 amount=-1 +kerning first=286 second=274 amount=-1 +kerning first=334 second=84 amount=-1 +kerning first=221 second=110 amount=-1 +kerning first=1114 second=1116 amount=-1 +kerning first=206 second=339 amount=-1 +kerning first=192 second=121 amount=-1 +kerning first=332 second=8217 amount=-1 +kerning first=199 second=379 amount=-1 +kerning first=76 second=381 amount=-1 +kerning first=366 second=324 amount=-1 +kerning first=217 second=350 amount=-1 +kerning first=88 second=362 amount=-1 +kerning first=315 second=199 amount=-1 +kerning first=89 second=111 amount=-2 +kerning first=325 second=350 amount=-1 +kerning first=222 second=209 amount=-1 +kerning first=275 second=8217 amount=-1 +kerning first=120 second=375 amount=-1 +kerning first=67 second=86 amount=-1 +kerning first=192 second=277 amount=-1 +kerning first=286 second=302 amount=-1 +kerning first=379 second=264 amount=-1 +kerning first=8220 second=259 amount=-1 +kerning first=203 second=260 amount=-1 +kerning first=316 second=234 amount=-1 +kerning first=264 second=277 amount=-1 +kerning first=214 second=302 amount=-1 +kerning first=365 second=289 amount=-1 +kerning first=374 second=111 amount=-2 +kerning first=235 second=351 amount=-1 +kerning first=81 second=89 amount=-1 +kerning first=272 second=330 amount=-1 +kerning first=8218 second=259 amount=-1 +kerning first=199 second=264 amount=-2 +kerning first=344 second=212 amount=-1 +kerning first=66 second=199 amount=-1 +kerning first=87 second=277 amount=-2 +kerning first=307 second=351 amount=-1 +kerning first=314 second=367 amount=-1 +kerning first=194 second=111 amount=-1 +kerning first=213 second=354 amount=-1 +kerning first=89 second=377 amount=-1 +kerning first=350 second=367 amount=-1 +kerning first=377 second=72 amount=-1 +kerning first=192 second=364 amount=-2 +kerning first=81 second=209 amount=-1 +kerning first=207 second=199 amount=-1 +kerning first=266 second=111 amount=-1 +kerning first=199 second=351 amount=-1 +kerning first=45 second=209 amount=-3 +kerning first=200 second=212 amount=-1 +kerning first=278 second=367 amount=-1 +kerning first=302 second=111 amount=-1 +kerning first=321 second=354 amount=-1 +kerning first=87 second=364 amount=-1 +kerning first=89 second=362 amount=-1 +kerning first=87 second=264 amount=-1 +kerning first=321 second=351 amount=-1 +kerning first=110 second=361 amount=-1 +kerning first=259 second=8249 amount=-1 +kerning first=105 second=121 amount=-1 +kerning first=266 second=377 amount=-1 +kerning first=8217 second=119 amount=-1 +kerning first=295 second=8249 amount=-1 +kerning first=199 second=364 amount=-1 +kerning first=363 second=257 amount=-1 +kerning first=73 second=277 amount=-1 +kerning first=230 second=97 amount=-1 +kerning first=374 second=377 amount=-1 +kerning first=287 second=361 amount=-1 +kerning first=291 second=257 amount=-1 +kerning first=264 second=367 amount=-1 +kerning first=117 second=311 amount=-1 +kerning first=108 second=351 amount=-1 +kerning first=251 second=361 amount=-1 +kerning first=226 second=254 amount=-1 +kerning first=327 second=257 amount=-1 +kerning first=118 second=8249 amount=-2 +kerning first=75 second=287 amount=-1 +kerning first=356 second=267 amount=-2 +kerning first=262 second=254 amount=-1 +kerning first=219 second=257 amount=-2 +kerning first=192 second=367 amount=-1 +kerning first=338 second=377 amount=-1 +kerning first=316 second=111 amount=-1 +kerning first=323 second=361 amount=-1 +kerning first=255 second=257 amount=-2 +kerning first=46 second=8249 amount=-1 +kerning first=221 second=274 amount=-1 +kerning first=381 second=374 amount=-1 +kerning first=374 second=117 amount=-1 +kerning first=235 second=261 amount=-1 +kerning first=87 second=367 amount=-1 +kerning first=111 second=287 amount=-1 +kerning first=338 second=117 amount=-1 +kerning first=260 second=244 amount=-1 +kerning first=69 second=381 amount=-1 +kerning first=252 second=287 amount=-1 +kerning first=122 second=44 amount=-1 +kerning first=8216 second=226 amount=-1 +kerning first=307 second=261 amount=-1 +kerning first=296 second=244 amount=-1 +kerning first=354 second=121 amount=-1 +kerning first=80 second=274 amount=-1 +kerning first=216 second=287 amount=-1 +kerning first=307 second=104 amount=-1 +kerning first=121 second=254 amount=-1 +kerning first=324 second=287 amount=-1 +kerning first=354 second=250 amount=-1 +kerning first=368 second=244 amount=-1 +kerning first=210 second=381 amount=-1 +kerning first=288 second=287 amount=-1 +kerning first=201 second=374 amount=-1 +kerning first=246 second=121 amount=-1 +kerning first=331 second=8249 amount=-1 +kerning first=282 second=381 amount=-1 +kerning first=287 second=237 amount=-1 +kerning first=199 second=261 amount=-1 +kerning first=367 second=8249 amount=-1 +kerning first=1049 second=1104 amount=-1 +kerning first=112 second=378 amount=-1 +kerning first=194 second=281 amount=-1 +kerning first=221 second=171 amount=-3 +kerning first=375 second=337 amount=-1 +kerning first=197 second=347 amount=-1 +kerning first=192 second=107 amount=-1 +kerning first=257 second=171 amount=-1 +kerning first=370 second=97 amount=-2 +kerning first=282 second=250 amount=-1 +kerning first=217 second=378 amount=-1 +kerning first=266 second=281 amount=-1 +kerning first=8220 second=89 amount=-1 +kerning first=303 second=337 amount=-1 +kerning first=1104 second=1078 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=302 second=281 amount=-1 +kerning first=264 second=107 amount=-1 +kerning first=230 second=117 amount=-1 +kerning first=379 second=261 amount=-1 +kerning first=44 second=171 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=80 second=171 amount=-1 +kerning first=65 second=354 amount=-3 +kerning first=302 second=117 amount=-1 +kerning first=89 second=281 amount=-2 +kerning first=116 second=171 amount=-1 +kerning first=266 second=117 amount=-1 +kerning first=69 second=250 amount=-1 +kerning first=346 second=197 amount=-2 +kerning first=291 second=100 amount=-1 +kerning first=103 second=240 amount=-1 +kerning first=327 second=100 amount=-1 +kerning first=83 second=74 amount=-1 +kerning first=203 second=288 amount=-1 +kerning first=8220 second=246 amount=-1 +kerning first=278 second=354 amount=-1 +kerning first=67 second=240 amount=-1 +kerning first=78 second=257 amount=-1 +kerning first=264 second=264 amount=-2 +kerning first=289 second=378 amount=-1 +kerning first=365 second=171 amount=-1 +kerning first=115 second=314 amount=-1 +kerning first=350 second=354 amount=-1 +kerning first=316 second=240 amount=-1 +kerning first=253 second=378 amount=-1 +kerning first=256 second=314 amount=-1 +kerning first=192 second=264 amount=-1 +kerning first=219 second=100 amount=-1 +kerning first=103 second=371 amount=-1 +kerning first=305 second=347 amount=-1 +kerning first=274 second=338 amount=-1 +kerning first=255 second=100 amount=-1 +kerning first=325 second=378 amount=-1 +kerning first=332 second=74 amount=-1 +kerning first=328 second=314 amount=-1 +kerning first=195 second=71 amount=-1 +kerning first=200 second=311 amount=-1 +kerning first=217 second=90 amount=-1 +kerning first=290 second=207 amount=-1 +kerning first=45 second=330 amount=-3 +kerning first=313 second=298 amount=-1 +kerning first=81 second=330 amount=-1 +kerning first=101 second=224 amount=-1 +kerning first=376 second=291 amount=-2 +kerning first=86 second=317 amount=-1 +kerning first=72 second=214 amount=-1 +kerning first=206 second=224 amount=-1 +kerning first=90 second=71 amount=-1 +kerning first=77 second=259 amount=-1 +kerning first=222 second=330 amount=-1 +kerning first=304 second=291 amount=-1 +kerning first=1038 second=1108 amount=-2 +kerning first=268 second=291 amount=-1 +kerning first=104 second=318 amount=-1 +kerning first=317 second=200 amount=-1 +kerning first=278 second=224 amount=-1 +kerning first=232 second=291 amount=-1 +kerning first=195 second=213 amount=-1 +kerning first=196 second=291 amount=-1 +kerning first=236 second=324 amount=-1 +kerning first=350 second=224 amount=-1 +kerning first=245 second=318 amount=-1 +kerning first=85 second=97 amount=-2 +kerning first=314 second=224 amount=-1 +kerning first=380 second=311 amount=-1 +kerning first=267 second=337 amount=-1 +kerning first=281 second=318 amount=-1 +kerning first=298 second=97 amount=-1 +kerning first=90 second=77 amount=-1 +kerning first=344 second=311 amount=-1 +kerning first=86 second=304 amount=-1 +kerning first=231 second=337 amount=-1 +kerning first=87 second=101 amount=-2 +kerning first=334 second=97 amount=-1 +kerning first=195 second=337 amount=-1 +kerning first=353 second=318 amount=-1 +kerning first=192 second=101 amount=-1 +kerning first=262 second=97 amount=-1 +kerning first=236 second=311 amount=-1 +kerning first=76 second=90 amount=-1 +kerning first=317 second=303 amount=-1 +kerning first=371 second=44 amount=-1 +kerning first=354 second=381 amount=-1 +kerning first=353 second=303 amount=-1 +kerning first=335 second=44 amount=-2 +kerning first=45 second=70 amount=-3 +kerning first=8220 second=83 amount=-1 +kerning first=272 second=193 amount=-2 +kerning first=1069 second=1025 amount=-1 +kerning first=235 second=104 amount=-1 +kerning first=222 second=70 amount=-1 +kerning first=290 second=325 amount=-1 +kerning first=380 second=324 amount=-1 +kerning first=199 second=104 amount=-1 +kerning first=81 second=70 amount=-1 +kerning first=263 second=44 amount=-1 +kerning first=82 second=284 amount=-1 +kerning first=90 second=213 amount=-1 +kerning first=108 second=227 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=78 second=251 amount=-1 +kerning first=72 second=227 amount=-1 +kerning first=317 second=194 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=72 second=351 amount=-1 +kerning first=219 second=251 amount=-1 +kerning first=321 second=85 amount=-1 +kerning first=258 second=234 amount=-1 +kerning first=291 second=251 amount=-1 +kerning first=213 second=85 amount=-1 +kerning first=249 second=227 amount=-1 +kerning first=330 second=234 amount=-1 +kerning first=290 second=201 amount=-1 +kerning first=363 second=251 amount=-1 +kerning first=213 second=227 amount=-1 +kerning first=366 second=234 amount=-1 +kerning first=1074 second=1093 amount=-1 +kerning first=327 second=251 amount=-1 +kerning first=290 second=310 amount=-1 +kerning first=68 second=194 amount=-2 +kerning first=275 second=118 amount=-1 +kerning first=289 second=105 amount=-1 +kerning first=73 second=283 amount=-1 +kerning first=258 second=231 amount=-1 +kerning first=347 second=118 amount=-1 +kerning first=217 second=105 amount=-1 +kerning first=311 second=118 amount=-1 +kerning first=253 second=105 amount=-1 +kerning first=80 second=280 amount=-1 +kerning first=98 second=118 amount=-1 +kerning first=201 second=368 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=259 second=103 amount=-1 +kerning first=197 second=245 amount=-1 +kerning first=203 second=118 amount=-1 +kerning first=221 second=280 amount=-1 +kerning first=356 second=8249 amount=-3 +kerning first=76 second=105 amount=-1 +kerning first=375 second=228 amount=-1 +kerning first=199 second=84 amount=-1 +kerning first=289 second=241 amount=-1 +kerning first=339 second=228 amount=-1 +kerning first=307 second=253 amount=-1 +kerning first=201 second=108 amount=-1 +kerning first=267 second=228 amount=-1 +kerning first=200 second=193 amount=-1 +kerning first=221 second=353 amount=-2 +kerning first=70 second=335 amount=-1 +kerning first=253 second=241 amount=-1 +kerning first=187 second=278 amount=-3 +kerning first=199 second=370 amount=-1 +kerning first=90 second=228 amount=-1 +kerning first=363 second=122 amount=-1 +kerning first=375 second=331 amount=-1 +kerning first=327 second=122 amount=-1 +kerning first=332 second=362 amount=-1 +kerning first=287 second=231 amount=-1 +kerning first=291 second=122 amount=-1 +kerning first=303 second=331 amount=-1 +kerning first=76 second=241 amount=-1 +kerning first=201 second=256 amount=-1 +kerning first=255 second=122 amount=-1 +kerning first=339 second=331 amount=-1 +kerning first=231 second=331 amount=-1 +kerning first=1050 second=1057 amount=-2 +kerning first=379 second=255 amount=-2 +kerning first=1027 second=1097 amount=-1 +kerning first=267 second=331 amount=-1 +kerning first=381 second=256 amount=-1 +kerning first=307 second=255 amount=-1 +kerning first=1043 second=1073 amount=-1 +kerning first=323 second=231 amount=-1 +kerning first=260 second=362 amount=-2 +kerning first=235 second=255 amount=-1 +kerning first=377 second=245 amount=-1 +kerning first=88 second=67 amount=-1 +kerning first=90 second=331 amount=-1 +kerning first=232 second=8250 amount=-1 +kerning first=377 second=81 amount=-1 +kerning first=1101 second=1095 amount=-1 +kerning first=378 second=261 amount=-1 +kerning first=1065 second=1095 amount=-1 +kerning first=83 second=362 amount=-1 +kerning first=269 second=245 amount=-1 +kerning first=321 second=214 amount=-1 +kerning first=219 second=122 amount=-1 +kerning first=203 second=266 amount=-1 +kerning first=74 second=231 amount=-1 +kerning first=90 second=65 amount=-1 +kerning first=78 second=122 amount=-1 +kerning first=356 second=282 amount=-1 +kerning first=377 second=229 amount=-1 +kerning first=378 second=307 amount=-1 +kerning first=79 second=217 amount=-1 +kerning first=1047 second=1053 amount=-1 +kerning first=284 second=282 amount=-1 +kerning first=88 second=333 amount=-1 +kerning first=1114 second=1084 amount=-1 +kerning first=202 second=68 amount=-1 +kerning first=310 second=216 amount=-1 +kerning first=212 second=282 amount=-1 +kerning first=256 second=217 amount=-2 +kerning first=76 second=74 amount=-1 +kerning first=236 second=305 amount=-1 +kerning first=74 second=346 amount=-1 +kerning first=255 second=106 amount=-1 +kerning first=332 second=80 amount=-1 +kerning first=193 second=67 amount=-1 +kerning first=197 second=81 amount=-1 +kerning first=71 second=282 amount=-1 +kerning first=314 second=230 amount=-1 +kerning first=363 second=106 amount=-1 +kerning first=8222 second=381 amount=-1 +kerning first=380 second=305 amount=-1 +kerning first=278 second=230 amount=-1 +kerning first=74 second=243 amount=-1 +kerning first=211 second=204 amount=-1 +kerning first=234 second=307 amount=-1 +kerning first=206 second=230 amount=-1 +kerning first=205 second=250 amount=-1 +kerning first=374 second=281 amount=-2 +kerning first=356 second=381 amount=-1 +kerning first=101 second=230 amount=-1 +kerning first=113 second=242 amount=-1 +kerning first=323 second=346 amount=-1 +kerning first=274 second=334 amount=-1 +kerning first=206 second=79 amount=-1 +kerning first=287 second=243 amount=-1 +kerning first=8250 second=197 amount=-2 +kerning first=202 second=203 amount=-1 +kerning first=317 second=193 amount=-1 +kerning first=323 second=243 amount=-1 +kerning first=193 second=218 amount=-2 +kerning first=275 second=104 amount=-1 +kerning first=8222 second=225 amount=-1 +kerning first=310 second=334 amount=-1 +kerning first=302 second=268 amount=-1 +kerning first=8222 second=250 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=8218 second=354 amount=-3 +kerning first=266 second=268 amount=-2 +kerning first=204 second=332 amount=-1 +kerning first=278 second=79 amount=-1 +kerning first=277 second=8221 amount=-1 +kerning first=374 second=268 amount=-1 +kerning first=1052 second=1072 amount=-1 +kerning first=119 second=244 amount=-1 +kerning first=338 second=268 amount=-1 +kerning first=346 second=68 amount=-1 +kerning first=83 second=80 amount=-1 +kerning first=89 second=268 amount=-1 +kerning first=274 second=68 amount=-1 +kerning first=366 second=268 amount=-1 +kerning first=1072 second=1098 amount=-1 +kerning first=194 second=268 amount=-1 +kerning first=88 second=218 amount=-1 +kerning first=198 second=192 amount=-1 +kerning first=346 second=203 amount=-1 +kerning first=354 second=328 amount=-1 +kerning first=321 second=201 amount=-1 +kerning first=371 second=46 amount=-1 +kerning first=269 second=229 amount=-1 +kerning first=202 second=334 amount=-1 +kerning first=121 second=242 amount=-1 +kerning first=201 second=120 amount=-1 +kerning first=274 second=203 amount=-1 +kerning first=85 second=242 amount=-1 +kerning first=356 second=279 amount=-2 +kerning first=289 second=99 amount=-1 +kerning first=86 second=192 amount=-3 +kerning first=1038 second=1099 amount=-2 +kerning first=253 second=99 amount=-1 +kerning first=377 second=232 amount=-1 +kerning first=298 second=242 amount=-1 +kerning first=8218 second=224 amount=-1 +kerning first=214 second=289 amount=-1 +kerning first=108 second=339 amount=-1 +kerning first=262 second=242 amount=-1 +kerning first=325 second=99 amount=-1 +kerning first=204 second=229 amount=-1 +kerning first=370 second=242 amount=-1 +kerning first=286 second=289 amount=-1 +kerning first=269 second=232 amount=-1 +kerning first=313 second=282 amount=-1 +kerning first=71 second=119 amount=-1 +kerning first=107 second=119 amount=-1 +kerning first=269 second=326 amount=-1 +kerning first=226 second=106 amount=-1 +kerning first=262 second=106 amount=-1 +kerning first=81 second=346 amount=-1 +kerning first=121 second=106 amount=-1 +kerning first=248 second=119 amount=-1 +kerning first=8222 second=378 amount=-2 +kerning first=197 second=232 amount=-1 +kerning first=45 second=346 amount=-2 +kerning first=284 second=119 amount=-1 +kerning first=264 second=379 amount=-1 +kerning first=330 second=346 amount=-1 +kerning first=1043 second=1079 amount=-1 +kerning first=196 second=367 amount=-1 +kerning first=350 second=82 amount=-1 +kerning first=356 second=119 amount=-1 +kerning first=336 second=379 amount=-1 +kerning first=258 second=346 amount=-2 +kerning first=362 second=249 amount=-1 +kerning first=274 second=289 amount=-1 +kerning first=222 second=346 amount=-1 +kerning first=334 second=106 amount=-1 +kerning first=73 second=289 amount=-1 +kerning first=1102 second=1095 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=321 second=69 amount=-1 +kerning first=278 second=82 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=113 second=316 amount=-1 +kerning first=88 second=212 amount=-1 +kerning first=45 second=196 amount=-2 +kerning first=311 second=269 amount=-1 +kerning first=213 second=69 amount=-1 +kerning first=315 second=302 amount=-1 +kerning first=254 second=316 amount=-1 +kerning first=346 second=350 amount=-1 +kerning first=68 second=228 amount=-1 +kerning first=202 second=216 amount=-1 +kerning first=336 second=8217 amount=-1 +kerning first=221 second=66 amount=-1 +kerning first=1036 second=1089 amount=-1 +kerning first=200 second=199 amount=-1 +kerning first=321 second=79 amount=-1 +kerning first=274 second=216 amount=-1 +kerning first=79 second=205 amount=-1 +kerning first=99 second=229 amount=-1 +kerning first=192 second=8217 amount=-3 +kerning first=81 second=76 amount=-1 +kerning first=344 second=199 amount=-1 +kerning first=228 second=8217 amount=-1 +kerning first=45 second=76 amount=-3 +kerning first=209 second=46 amount=-1 +kerning first=220 second=251 amount=-1 +kerning first=258 second=336 amount=-1 +kerning first=245 second=46 amount=-2 +kerning first=121 second=245 amount=-1 +kerning first=281 second=46 amount=-2 +kerning first=8250 second=318 amount=-1 +kerning first=85 second=245 amount=-1 +kerning first=366 second=336 amount=-1 +kerning first=370 second=245 amount=-1 +kerning first=354 second=266 amount=-1 +kerning first=335 second=8221 amount=-1 +kerning first=235 second=252 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=8218 second=227 amount=-1 +kerning first=282 second=266 amount=-1 +kerning first=104 second=46 amount=-1 +kerning first=1088 second=1083 amount=-1 +kerning first=262 second=245 amount=-1 +kerning first=198 second=87 amount=-1 +kerning first=272 second=45 amount=-1 +kerning first=86 second=202 amount=-1 +kerning first=236 second=45 amount=-1 +kerning first=326 second=316 amount=-1 +kerning first=121 second=103 amount=-2 +kerning first=344 second=45 amount=-2 +kerning first=315 second=296 amount=-1 +kerning first=85 second=103 amount=-2 +kerning first=195 second=219 amount=-2 +kerning first=307 second=252 amount=-1 +kerning first=208 second=364 amount=-1 +kerning first=99 second=226 amount=-1 +kerning first=380 second=45 amount=-2 +kerning first=204 second=335 amount=-1 +kerning first=381 second=259 amount=-1 +kerning first=204 second=226 amount=-1 +kerning first=76 second=253 amount=-1 +kerning first=85 second=369 amount=-1 +kerning first=112 second=253 amount=-1 +kerning first=246 second=375 amount=-1 +kerning first=66 second=85 amount=-2 +kerning first=1067 second=1073 amount=-1 +kerning first=217 second=253 amount=-1 +kerning first=370 second=103 amount=-2 +kerning first=187 second=287 amount=-1 +kerning first=316 second=246 amount=-1 +kerning first=317 second=103 amount=-1 +kerning first=334 second=103 amount=-1 +kerning first=8218 second=85 amount=-2 +kerning first=289 second=253 amount=-1 +kerning first=379 second=252 amount=-1 +kerning first=87 second=116 amount=-1 +kerning first=83 second=356 amount=-1 +kerning first=298 second=103 amount=-1 +kerning first=325 second=253 amount=-1 +kerning first=200 second=45 amount=-1 +kerning first=201 second=259 amount=-1 +kerning first=262 second=103 amount=-1 +kerning first=192 second=116 amount=-1 +kerning first=74 second=83 amount=-1 +kerning first=226 second=103 amount=-1 +kerning first=296 second=267 amount=-1 +kerning first=255 second=382 amount=-1 +kerning first=212 second=122 amount=-1 +kerning first=103 second=246 amount=-1 +kerning first=370 second=369 amount=-1 +kerning first=291 second=382 amount=-1 +kerning first=67 second=246 amount=-1 +kerning first=107 second=279 amount=-1 +kerning first=8250 second=280 amount=-3 +kerning first=8220 second=240 amount=-1 +kerning first=327 second=382 amount=-1 +kerning first=79 second=323 amount=-1 +kerning first=363 second=382 amount=-1 +kerning first=71 second=122 amount=-1 +kerning first=75 second=8221 amount=-1 +kerning first=262 second=369 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=78 second=382 amount=-1 +kerning first=255 second=109 amount=-1 +kerning first=356 second=122 amount=-2 +kerning first=226 second=369 amount=-1 +kerning first=323 second=83 amount=-1 +kerning first=69 second=266 amount=-1 +kerning first=284 second=122 amount=-1 +kerning first=298 second=369 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=332 second=356 amount=-1 +kerning first=219 second=382 amount=-1 +kerning first=291 second=109 amount=-1 +kerning first=248 second=122 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=262 second=248 amount=-1 +kerning first=8218 second=230 amount=-1 +kerning first=218 second=198 amount=-2 +kerning first=298 second=248 amount=-1 +kerning first=1038 second=1105 amount=-2 +kerning first=83 second=90 amount=-1 +kerning first=69 second=115 amount=-1 +kerning first=290 second=198 amount=-1 +kerning first=201 second=380 amount=-1 +kerning first=354 second=263 amount=-2 +kerning first=86 second=109 amount=-1 +kerning first=363 second=117 amount=-1 +kerning first=282 second=115 amount=-1 +kerning first=85 second=248 amount=-1 +kerning first=86 second=244 amount=-2 +kerning first=376 second=288 amount=-1 +kerning first=121 second=248 amount=-1 +kerning first=171 second=89 amount=-2 +kerning first=117 second=307 amount=-1 +kerning first=246 second=115 amount=-1 +kerning first=290 second=313 amount=-1 +kerning first=68 second=315 amount=-1 +kerning first=314 second=233 amount=-1 +kerning first=76 second=365 amount=-1 +kerning first=202 second=213 amount=-1 +kerning first=354 second=115 amount=-2 +kerning first=287 second=355 amount=-1 +kerning first=274 second=213 amount=-1 +kerning first=198 second=298 amount=-1 +kerning first=83 second=350 amount=-1 +kerning first=87 second=110 amount=-1 +kerning first=222 second=73 amount=-1 +kerning first=362 second=198 amount=-2 +kerning first=83 second=97 amount=-1 +kerning first=370 second=248 amount=-1 +kerning first=354 second=377 amount=-1 +kerning first=260 second=350 amount=-2 +kerning first=202 second=328 amount=-1 +kerning first=264 second=110 amount=-1 +kerning first=45 second=73 amount=-3 +kerning first=296 second=350 amount=-1 +kerning first=85 second=363 amount=-1 +kerning first=211 second=325 amount=-1 +kerning first=8250 second=203 amount=-3 +kerning first=90 second=225 amount=-1 +kerning first=81 second=73 amount=-1 +kerning first=103 second=98 amount=-1 +kerning first=268 second=269 amount=-1 +kerning first=67 second=98 amount=-1 +kerning first=65 second=85 amount=-2 +kerning first=258 second=221 amount=-3 +kerning first=346 second=328 amount=-1 +kerning first=226 second=363 amount=-1 +kerning first=262 second=363 amount=-1 +kerning first=200 second=196 amount=-1 +kerning first=317 second=315 amount=-1 +kerning first=332 second=350 amount=-1 +kerning first=274 second=328 amount=-1 +kerning first=298 second=363 amount=-1 +kerning first=252 second=303 amount=-1 +kerning first=222 second=221 amount=-1 +kerning first=368 second=350 amount=-1 +kerning first=69 second=260 amount=-1 +kerning first=272 second=196 amount=-2 +kerning first=339 second=225 amount=-1 +kerning first=352 second=98 amount=-1 +kerning first=366 second=264 amount=-1 +kerning first=210 second=260 amount=-2 +kerning first=370 second=363 amount=-1 +kerning first=381 second=380 amount=-1 +kerning first=375 second=225 amount=-2 +kerning first=316 second=98 amount=-1 +kerning first=82 second=290 amount=-1 +kerning first=282 second=260 amount=-1 +kerning first=382 second=328 amount=-1 +kerning first=1045 second=1093 amount=-1 +kerning first=354 second=260 amount=-3 +kerning first=204 second=338 amount=-1 +kerning first=350 second=85 amount=-1 +kerning first=353 second=46 amount=-1 +kerning first=231 second=225 amount=-1 +kerning first=267 second=225 amount=-1 +kerning first=1038 second=1102 amount=-2 +kerning first=280 second=98 amount=-1 +kerning first=278 second=85 amount=-1 +kerning first=303 second=225 amount=-1 +kerning first=78 second=112 amount=-1 +kerning first=8249 second=374 amount=-2 +kerning first=1052 second=1077 amount=-1 +kerning first=87 second=261 amount=-2 +kerning first=307 second=367 amount=-1 +kerning first=45 second=302 amount=-3 +kerning first=199 second=367 amount=-1 +kerning first=74 second=352 amount=-1 +kerning first=235 second=367 amount=-1 +kerning first=278 second=351 amount=-1 +kerning first=381 second=111 amount=-1 +kerning first=242 second=351 amount=-1 +kerning first=81 second=278 amount=-1 +kerning first=350 second=351 amount=-1 +kerning first=201 second=377 amount=-1 +kerning first=314 second=351 amount=-1 +kerning first=336 second=8220 amount=-1 +kerning first=364 second=326 amount=-1 +kerning first=1036 second=1092 amount=-1 +kerning first=363 second=112 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=73 second=171 amount=-2 +kerning first=197 second=235 amount=-1 +kerning first=115 second=326 amount=-1 +kerning first=325 second=250 amount=-1 +kerning first=327 second=112 amount=-1 +kerning first=109 second=171 amount=-1 +kerning first=220 second=211 amount=-1 +kerning first=82 second=287 amount=-1 +kerning first=291 second=113 amount=-1 +kerning first=192 second=8220 amount=-3 +kerning first=381 second=377 amount=-1 +kerning first=269 second=235 amount=-1 +kerning first=220 second=326 amount=-1 +kerning first=255 second=112 amount=-1 +kerning first=217 second=250 amount=-1 +kerning first=66 second=302 amount=-2 +kerning first=219 second=112 amount=-1 +kerning first=264 second=261 amount=-1 +kerning first=118 second=287 amount=-2 +kerning first=8220 second=243 amount=-1 +kerning first=377 second=235 amount=-1 +kerning first=364 second=211 amount=-1 +kerning first=104 second=121 amount=-1 +kerning first=336 second=261 amount=-1 +kerning first=223 second=287 amount=-1 +kerning first=260 second=353 amount=-1 +kerning first=251 second=237 amount=-1 +kerning first=282 second=378 amount=-1 +kerning first=331 second=287 amount=-1 +kerning first=264 second=113 amount=-1 +kerning first=296 second=353 amount=-1 +kerning first=8216 second=335 amount=-1 +kerning first=246 second=378 amount=-1 +kerning first=295 second=287 amount=-1 +kerning first=381 second=262 amount=-1 +kerning first=119 second=261 amount=-2 +kerning first=354 second=378 amount=-2 +kerning first=192 second=113 amount=-1 +kerning first=368 second=353 amount=-1 +kerning first=68 second=197 amount=-2 +kerning first=367 second=287 amount=-1 +kerning first=325 second=365 amount=-1 +kerning first=74 second=237 amount=-1 +kerning first=105 second=378 amount=-1 +kerning first=262 second=366 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=69 second=378 amount=-1 +kerning first=250 second=171 amount=-1 +kerning first=374 second=242 amount=-1 +kerning first=210 second=378 amount=-1 +kerning first=75 second=119 amount=-1 +kerning first=370 second=100 amount=-1 +kerning first=217 second=365 amount=-1 +kerning first=87 second=379 amount=-1 +kerning first=66 second=171 amount=-1 +kerning first=199 second=249 amount=-1 +kerning first=1058 second=1117 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=233 second=109 amount=-1 +kerning first=317 second=197 amount=-1 +kerning first=1025 second=1078 amount=-1 +kerning first=323 second=352 amount=-1 +kerning first=235 second=249 amount=-1 +kerning first=377 second=87 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=304 second=288 amount=-1 +kerning first=262 second=100 amount=-1 +kerning first=278 second=66 amount=-1 +kerning first=197 second=87 amount=-3 +kerning first=87 second=113 amount=-2 +kerning first=201 second=262 amount=-1 +kerning first=379 second=249 amount=-1 +kerning first=1056 second=1104 amount=-1 +kerning first=196 second=288 amount=-1 +kerning first=307 second=249 amount=-1 +kerning first=85 second=100 amount=-1 +kerning first=80 second=243 amount=-1 +kerning first=90 second=117 amount=-1 +kerning first=213 second=217 amount=-1 +kerning first=122 second=314 amount=-1 +kerning first=1059 second=1040 amount=-3 +kerning first=378 second=106 amount=-1 +kerning first=346 second=218 amount=-1 +kerning first=263 second=314 amount=-1 +kerning first=70 second=269 amount=-1 +kerning first=221 second=243 amount=-2 +kerning first=327 second=288 amount=-1 +kerning first=227 second=314 amount=-1 +kerning first=321 second=217 amount=-1 +kerning first=335 second=314 amount=-1 +kerning first=198 second=366 amount=-1 +kerning first=316 second=333 amount=-1 +kerning first=78 second=288 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=45 second=224 amount=-1 +kerning first=371 second=314 amount=-1 +kerning first=45 second=367 amount=-1 +kerning first=268 second=198 amount=-2 +kerning first=88 second=262 amount=-1 +kerning first=81 second=224 amount=-1 +kerning first=254 second=307 amount=-1 +kerning first=1059 second=1033 amount=-3 +kerning first=222 second=224 amount=-1 +kerning first=195 second=210 amount=-1 +kerning first=337 second=255 amount=-1 +kerning first=193 second=262 amount=-1 +kerning first=370 second=326 amount=-1 +kerning first=90 second=210 amount=-1 +kerning first=229 second=255 amount=-1 +kerning first=202 second=197 amount=-1 +kerning first=366 second=224 amount=-1 +kerning first=193 second=255 amount=-1 +kerning first=330 second=224 amount=-1 +kerning first=381 second=274 amount=-1 +kerning first=203 second=229 amount=-1 +kerning first=280 second=73 amount=-1 +kerning first=86 second=75 amount=-1 +kerning first=8220 second=256 amount=-4 +kerning first=352 second=73 amount=-1 +kerning first=199 second=101 amount=-1 +kerning first=122 second=375 amount=-1 +kerning first=376 second=198 amount=-3 +kerning first=347 second=229 amount=-1 +kerning first=216 second=120 amount=-1 +kerning first=8217 second=81 amount=-1 +kerning first=296 second=118 amount=-1 +kerning first=252 second=120 amount=-1 +kerning first=275 second=229 amount=-1 +kerning first=208 second=73 amount=-1 +kerning first=311 second=229 amount=-1 +kerning first=368 second=118 amount=-1 +kerning first=90 second=203 amount=-1 +kerning first=379 second=101 amount=-1 +kerning first=69 second=108 amount=-1 +kerning first=208 second=80 amount=-1 +kerning first=378 second=113 amount=-1 +kerning first=119 second=118 amount=-1 +kerning first=321 second=196 amount=-1 +kerning first=233 second=347 amount=-1 +kerning first=337 second=8220 amount=-1 +kerning first=260 second=118 amount=-2 +kerning first=352 second=226 amount=-1 +kerning first=280 second=80 amount=-1 +kerning first=224 second=118 amount=-1 +kerning first=67 second=73 amount=-1 +kerning first=334 second=87 amount=-1 +kerning first=67 second=80 amount=-1 +kerning first=213 second=196 amount=-2 +kerning first=288 second=198 amount=-1 +kerning first=229 second=8220 amount=-1 +kerning first=234 second=106 amount=-1 +kerning first=262 second=87 amount=-1 +kerning first=83 second=118 amount=-1 +kerning first=317 second=68 amount=-1 +kerning first=75 second=99 amount=-1 +kerning first=88 second=8220 amount=-1 +kerning first=356 second=249 amount=-1 +kerning first=1057 second=1113 amount=-1 +kerning first=280 second=361 amount=-1 +kerning first=260 second=111 amount=-1 +kerning first=65 second=364 amount=-2 +kerning first=221 second=264 amount=-1 +kerning first=296 second=111 amount=-1 +kerning first=352 second=361 amount=-1 +kerning first=316 second=361 amount=-1 +kerning first=78 second=267 amount=-1 +kerning first=278 second=364 amount=-1 +kerning first=291 second=267 amount=-1 +kerning first=255 second=316 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=327 second=267 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=291 second=316 amount=-1 +kerning first=66 second=104 amount=-1 +kerning first=268 second=356 amount=-1 +kerning first=347 second=257 amount=-1 +kerning first=219 second=267 amount=-1 +kerning first=1100 second=1116 amount=-1 +kerning first=255 second=267 amount=-1 +kerning first=8217 second=109 amount=-1 +kerning first=334 second=66 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=209 second=81 amount=-1 +kerning first=242 second=104 amount=-1 +kerning first=381 second=337 amount=-1 +kerning first=350 second=364 amount=-1 +kerning first=262 second=66 amount=-1 +kerning first=283 second=44 amount=-2 +kerning first=368 second=111 amount=-1 +kerning first=103 second=361 amount=-1 +kerning first=1078 second=1104 amount=-1 +kerning first=201 second=274 amount=-1 +kerning first=67 second=361 amount=-1 +kerning first=350 second=104 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=117 second=115 amount=-1 +kerning first=70 second=44 amount=-2 +kerning first=314 second=97 amount=-1 +kerning first=347 second=250 amount=-1 +kerning first=370 second=347 amount=-1 +kerning first=201 second=302 amount=-1 +kerning first=356 second=8250 amount=-1 +kerning first=89 second=278 amount=-1 +kerning first=350 second=97 amount=-1 +kerning first=262 second=326 amount=-1 +kerning first=376 second=226 amount=-2 +kerning first=83 second=378 amount=-1 +kerning first=346 second=346 amount=-1 +kerning first=298 second=347 amount=-1 +kerning first=214 second=205 amount=-1 +kerning first=278 second=97 amount=-1 +kerning first=262 second=347 amount=-1 +kerning first=203 second=250 amount=-1 +kerning first=226 second=347 amount=-1 +kerning first=266 second=278 amount=-1 +kerning first=85 second=326 amount=-1 +kerning first=73 second=233 amount=-1 +kerning first=8220 second=277 amount=-1 +kerning first=374 second=278 amount=-1 +kerning first=121 second=326 amount=-1 +kerning first=275 second=250 amount=-1 +kerning first=121 second=347 amount=-1 +kerning first=338 second=278 amount=-1 +kerning first=262 second=354 amount=-1 +kerning first=85 second=347 amount=-1 +kerning first=332 second=378 amount=-1 +kerning first=368 second=90 amount=-1 +kerning first=363 second=316 amount=-1 +kerning first=275 second=257 amount=-1 +kerning first=376 second=219 amount=-1 +kerning first=296 second=378 amount=-1 +kerning first=332 second=90 amount=-1 +kerning first=227 second=103 amount=-1 +kerning first=334 second=354 amount=-1 +kerning first=311 second=257 amount=-1 +kerning first=103 second=333 amount=-1 +kerning first=280 second=45 amount=-1 +kerning first=203 second=257 amount=-1 +kerning first=368 second=378 amount=-1 +kerning first=122 second=103 amount=-1 +kerning first=381 second=302 amount=-1 +kerning first=73 second=212 amount=-1 +kerning first=268 second=219 amount=-1 +kerning first=8222 second=253 amount=-1 +kerning first=86 second=103 amount=-2 +kerning first=1057 second=1092 amount=-1 +kerning first=119 second=378 amount=-1 +kerning first=316 second=45 amount=-1 +kerning first=1057 second=1085 amount=-1 +kerning first=86 second=110 amount=-1 +kerning first=232 second=226 amount=-1 +kerning first=196 second=219 amount=-2 +kerning first=1093 second=1092 amount=-1 +kerning first=122 second=110 amount=-1 +kerning first=268 second=226 amount=-1 +kerning first=67 second=333 amount=-1 +kerning first=304 second=226 amount=-1 +kerning first=232 second=328 amount=-1 +kerning first=122 second=363 amount=-1 +kerning first=278 second=214 amount=-1 +kerning first=203 second=194 amount=-1 +kerning first=227 second=363 amount=-1 +kerning first=1050 second=1089 amount=-1 +kerning first=1100 second=1088 amount=-1 +kerning first=263 second=363 amount=-1 +kerning first=330 second=259 amount=-1 +kerning first=88 second=318 amount=-1 +kerning first=371 second=110 amount=-1 +kerning first=211 second=220 amount=-1 +kerning first=202 second=65 amount=-1 +kerning first=379 second=353 amount=-1 +kerning first=193 second=318 amount=-1 +kerning first=1042 second=1063 amount=-1 +kerning first=371 second=363 amount=-1 +kerning first=274 second=65 amount=-1 +kerning first=366 second=259 amount=-2 +kerning first=229 second=318 amount=-1 +kerning first=206 second=214 amount=-1 +kerning first=205 second=369 amount=-1 +kerning first=277 second=116 amount=-1 +kerning first=75 second=71 amount=-1 +kerning first=381 second=77 amount=-1 +kerning first=117 second=259 amount=-1 +kerning first=201 second=330 amount=-1 +kerning first=277 second=369 amount=-1 +kerning first=337 second=318 amount=-1 +kerning first=65 second=214 amount=-1 +kerning first=241 second=369 amount=-1 +kerning first=222 second=259 amount=-1 +kerning first=211 second=304 amount=-1 +kerning first=73 second=240 amount=-1 +kerning first=206 second=97 amount=-1 +kerning first=100 second=369 amount=-1 +kerning first=81 second=259 amount=-1 +kerning first=381 second=330 amount=-1 +kerning first=45 second=259 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=246 second=253 amount=-1 +kerning first=68 second=377 amount=-1 +kerning first=113 second=279 amount=-1 +kerning first=112 second=375 amount=-1 +kerning first=119 second=228 amount=-1 +kerning first=195 second=374 amount=-3 +kerning first=76 second=375 amount=-1 +kerning first=232 second=254 amount=-1 +kerning first=83 second=228 amount=-1 +kerning first=218 second=279 amount=-1 +kerning first=354 second=253 amount=-1 +kerning first=66 second=209 amount=-2 +kerning first=118 second=355 amount=-1 +kerning first=90 second=374 amount=-1 +kerning first=325 second=375 amount=-1 +kerning first=313 second=369 amount=-1 +kerning first=268 second=337 amount=-1 +kerning first=82 second=355 amount=-1 +kerning first=289 second=375 amount=-1 +kerning first=99 second=273 amount=-1 +kerning first=77 second=279 amount=-1 +kerning first=69 second=361 amount=-1 +kerning first=346 second=8221 amount=-1 +kerning first=217 second=375 amount=-1 +kerning first=220 second=332 amount=-1 +kerning first=1067 second=1108 amount=-1 +kerning first=105 second=45 amount=-1 +kerning first=1104 second=1103 amount=-1 +kerning first=187 second=355 amount=-1 +kerning first=201 second=287 amount=-1 +kerning first=317 second=377 amount=-1 +kerning first=1031 second=1108 amount=-1 +kerning first=88 second=234 amount=-1 +kerning first=262 second=298 amount=-1 +kerning first=81 second=287 amount=-1 +kerning first=256 second=332 amount=-1 +kerning first=67 second=284 amount=-2 +kerning first=45 second=287 amount=-1 +kerning first=8250 second=356 amount=-2 +kerning first=193 second=234 amount=-1 +kerning first=364 second=332 amount=-1 +kerning first=334 second=298 amount=-1 +kerning first=198 second=310 amount=-1 +kerning first=267 second=119 amount=-1 +kerning first=86 second=363 amount=-1 +kerning first=117 second=287 amount=-1 +kerning first=362 second=279 amount=-1 +kerning first=258 second=287 amount=-1 +kerning first=212 second=313 amount=-1 +kerning first=371 second=335 amount=-1 +kerning first=289 second=108 amount=-1 +kerning first=198 second=338 amount=-1 +kerning first=193 second=290 amount=-1 +kerning first=66 second=375 amount=-1 +kerning first=222 second=8217 amount=-1 +kerning first=222 second=287 amount=-1 +kerning first=258 second=8217 amount=-3 +kerning first=197 second=242 amount=-1 +kerning first=330 second=287 amount=-1 +kerning first=381 second=105 amount=-1 +kerning first=99 second=245 amount=-1 +kerning first=269 second=242 amount=-1 +kerning first=76 second=197 amount=-1 +kerning first=366 second=287 amount=-2 +kerning first=71 second=313 amount=-1 +kerning first=263 second=335 amount=-1 +kerning first=81 second=8217 amount=-1 +kerning first=88 second=290 amount=-1 +kerning first=117 second=8217 amount=-2 +kerning first=217 second=197 amount=-2 +kerning first=216 second=380 amount=-1 +kerning first=334 second=270 amount=-1 +kerning first=1064 second=1060 amount=-1 +kerning first=105 second=225 amount=-1 +kerning first=252 second=380 amount=-1 +kerning first=377 second=242 amount=-1 +kerning first=86 second=335 amount=-2 +kerning first=76 second=108 amount=-1 +kerning first=87 second=119 amount=-1 +kerning first=330 second=231 amount=-1 +kerning first=210 second=225 amount=-1 +kerning first=122 second=335 amount=-1 +kerning first=221 second=277 amount=-2 +kerning first=84 second=90 amount=-1 +kerning first=366 second=231 amount=-1 +kerning first=192 second=119 amount=-2 +kerning first=1060 second=1049 amount=-1 +kerning first=368 second=228 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=228 second=119 amount=-1 +kerning first=1024 second=1049 amount=-1 +kerning first=332 second=228 amount=-1 +kerning first=1061 second=1118 amount=-1 +kerning first=253 second=108 amount=-1 +kerning first=264 second=119 amount=-1 +kerning first=262 second=270 amount=-1 +kerning first=296 second=228 amount=-1 +kerning first=89 second=74 amount=-2 +kerning first=69 second=225 amount=-1 +kerning first=235 second=122 amount=-1 +kerning first=374 second=46 amount=-3 +kerning first=199 second=122 amount=-1 +kerning first=67 second=256 amount=-2 +kerning first=75 second=352 amount=-1 +kerning first=332 second=200 amount=-1 +kerning first=187 second=102 amount=-1 +kerning first=216 second=352 amount=-1 +kerning first=376 second=201 amount=-1 +kerning first=266 second=74 amount=-1 +kerning first=8250 second=328 amount=-1 +kerning first=379 second=122 amount=-1 +kerning first=230 second=46 amount=-2 +kerning first=280 second=256 amount=-1 +kerning first=288 second=352 amount=-1 +kerning first=282 second=225 amount=-1 +kerning first=338 second=74 amount=-1 +kerning first=87 second=211 amount=-1 +kerning first=208 second=352 amount=-1 +kerning first=8218 second=104 amount=-1 +kerning first=208 second=256 amount=-2 +kerning first=113 second=307 amount=-1 +kerning first=354 second=225 amount=-2 +kerning first=338 second=46 amount=-1 +kerning first=83 second=200 amount=-1 +kerning first=89 second=46 amount=-3 +kerning first=264 second=211 amount=-2 +kerning first=204 second=245 amount=-1 +kerning first=352 second=256 amount=-2 +kerning first=192 second=211 amount=-1 +kerning first=367 second=102 amount=-1 +kerning first=115 second=171 amount=-1 +kerning first=8250 second=68 amount=-3 +kerning first=362 second=216 amount=-1 +kerning first=256 second=107 amount=-1 +kerning first=220 second=171 amount=-3 +kerning first=107 second=112 amount=-1 +kerning first=379 second=211 amount=-1 +kerning first=256 second=171 amount=-2 +kerning first=1043 second=1086 amount=-1 +kerning first=208 second=8221 amount=-1 +kerning first=115 second=107 amount=-1 +kerning first=244 second=8221 amount=-1 +kerning first=232 second=237 amount=-1 +kerning first=351 second=261 amount=-1 +kerning first=328 second=251 amount=-1 +kerning first=79 second=171 amount=-1 +kerning first=81 second=323 amount=-1 +kerning first=374 second=105 amount=-1 +kerning first=352 second=8221 amount=-1 +kerning first=1063 second=1072 amount=-1 +kerning first=364 second=100 amount=-1 +kerning first=266 second=105 amount=-1 +kerning first=8218 second=217 amount=-2 +kerning first=289 second=235 amount=-1 +kerning first=1027 second=1072 amount=-1 +kerning first=325 second=235 amount=-1 +kerning first=187 second=296 amount=-3 +kerning first=187 second=344 amount=-3 +kerning first=303 second=110 amount=-1 +kerning first=316 second=8221 amount=-2 +kerning first=230 second=105 amount=-1 +kerning first=220 second=100 amount=-1 +kerning first=356 second=112 amount=-1 +kerning first=89 second=105 amount=-1 +kerning first=195 second=86 amount=-3 +kerning first=328 second=171 amount=-1 +kerning first=256 second=100 amount=-1 +kerning first=120 second=251 amount=-1 +kerning first=364 second=171 amount=-3 +kerning first=211 second=85 amount=-1 +kerning first=356 second=81 amount=-1 +kerning first=90 second=86 amount=-1 +kerning first=84 second=251 amount=-1 +kerning first=187 second=327 amount=-3 +kerning first=83 second=305 amount=-1 +kerning first=248 second=112 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=225 second=251 amount=-1 +kerning first=282 second=171 amount=-1 +kerning first=66 second=230 amount=-1 +kerning first=90 second=353 amount=-1 +kerning first=102 second=230 amount=-1 +kerning first=76 second=204 amount=-1 +kerning first=274 second=346 amount=-1 +kerning first=84 second=233 amount=-2 +kerning first=287 second=249 amount=-1 +kerning first=261 second=251 amount=-1 +kerning first=323 second=249 amount=-1 +kerning first=71 second=379 amount=-1 +kerning first=196 second=275 amount=-1 +kerning first=231 second=353 amount=-1 +kerning first=200 second=206 amount=-1 +kerning first=369 second=251 amount=-1 +kerning first=212 second=379 amount=-1 +kerning first=1053 second=1105 amount=-1 +kerning first=74 second=256 amount=-3 +kerning first=272 second=206 amount=-1 +kerning first=381 second=365 amount=-1 +kerning first=82 second=334 amount=-1 +kerning first=284 second=379 amount=-1 +kerning first=84 second=223 amount=-1 +kerning first=364 second=339 amount=-1 +kerning first=1113 second=1114 amount=-1 +kerning first=351 second=230 amount=-1 +kerning first=90 second=83 amount=-1 +kerning first=376 second=275 amount=-2 +kerning first=356 second=313 amount=-1 +kerning first=279 second=230 amount=-1 +kerning first=251 second=249 amount=-1 +kerning first=73 second=268 amount=-1 +kerning first=195 second=83 amount=-2 +kerning first=199 second=211 amount=-2 +kerning first=110 second=249 amount=-1 +kerning first=304 second=275 amount=-1 +kerning first=284 second=313 amount=-1 +kerning first=207 second=230 amount=-1 +kerning first=77 second=244 amount=-1 +kerning first=279 second=289 amount=-1 +kerning first=269 second=103 amount=-1 +kerning first=113 second=244 amount=-1 +kerning first=69 second=194 amount=-1 +kerning first=315 second=289 amount=-1 +kerning first=8250 second=65 amount=-2 +kerning first=380 second=237 amount=-1 +kerning first=220 second=192 amount=-2 +kerning first=351 second=289 amount=-1 +kerning first=218 second=244 amount=-1 +kerning first=71 second=344 amount=-1 +kerning first=323 second=284 amount=-1 +kerning first=220 second=339 amount=-1 +kerning first=1078 second=1091 amount=-1 +kerning first=79 second=192 amount=-2 +kerning first=235 second=98 amount=-1 +kerning first=256 second=339 amount=-1 +kerning first=236 second=237 amount=-1 +kerning first=1114 second=1091 amount=-1 +kerning first=362 second=244 amount=-1 +kerning first=220 second=199 amount=-1 +kerning first=356 second=379 amount=-1 +kerning first=354 second=194 amount=-3 +kerning first=253 second=232 amount=-1 +kerning first=217 second=232 amount=-1 +kerning first=282 second=194 amount=-1 +kerning first=325 second=232 amount=-1 +kerning first=374 second=77 amount=-1 +kerning first=66 second=289 amount=-2 +kerning first=287 second=277 amount=-1 +kerning first=202 second=346 amount=-1 +kerning first=210 second=194 amount=-2 +kerning first=102 second=289 amount=-1 +kerning first=204 second=235 amount=-1 +kerning first=84 second=282 amount=-1 +kerning first=207 second=289 amount=-1 +kerning first=323 second=277 amount=-1 +kerning first=233 second=328 amount=-1 +kerning first=8218 second=221 amount=-3 +kerning first=243 second=289 amount=-1 +kerning first=217 second=111 amount=-1 +kerning first=248 second=351 amount=-1 +kerning first=90 second=350 amount=-1 +kerning first=261 second=254 amount=-1 +kerning first=339 second=121 amount=-1 +kerning first=74 second=277 amount=-1 +kerning first=315 second=202 amount=-1 +kerning first=303 second=121 amount=-1 +kerning first=267 second=121 amount=-1 +kerning first=214 second=379 amount=-1 +kerning first=369 second=254 amount=-1 +kerning first=231 second=121 amount=-1 +kerning first=377 second=69 amount=-1 +kerning first=200 second=209 amount=-1 +kerning first=195 second=121 amount=-1 +kerning first=328 second=367 amount=-1 +kerning first=1071 second=1095 amount=-1 +kerning first=120 second=254 amount=-1 +kerning first=364 second=367 amount=-1 +kerning first=195 second=350 amount=-2 +kerning first=90 second=121 amount=-2 +kerning first=256 second=367 amount=-1 +kerning first=107 second=351 amount=-1 +kerning first=74 second=305 amount=-1 +kerning first=284 second=344 amount=-1 +kerning first=375 second=114 amount=-1 +kerning first=256 second=79 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=74 second=284 amount=-1 +kerning first=207 second=261 amount=-1 +kerning first=220 second=367 amount=-1 +kerning first=77 second=216 amount=-1 +kerning first=287 second=305 amount=-1 +kerning first=346 second=374 amount=-1 +kerning first=1114 second=1119 amount=-1 +kerning first=351 second=117 amount=-1 +kerning first=85 second=260 amount=-2 +kerning first=364 second=199 amount=-1 +kerning first=279 second=261 amount=-1 +kerning first=115 second=367 amount=-1 +kerning first=220 second=79 amount=-1 +kerning first=317 second=117 amount=-1 +kerning first=274 second=374 amount=-1 +kerning first=356 second=351 amount=-2 +kerning first=281 second=117 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=364 second=192 amount=-2 +kerning first=202 second=374 amount=-1 +kerning first=66 second=261 amount=-1 +kerning first=353 second=117 amount=-1 +kerning first=1043 second=1089 amount=-1 +kerning first=1027 second=1051 amount=-3 +kerning first=262 second=260 amount=-2 +kerning first=102 second=261 amount=-1 +kerning first=364 second=79 amount=-1 +kerning first=381 second=361 amount=-1 +kerning first=121 second=291 amount=-2 +kerning first=370 second=260 amount=-2 +kerning first=337 second=311 amount=-1 +kerning first=248 second=316 amount=-1 +kerning first=315 second=286 amount=-1 +kerning first=85 second=291 amount=-2 +kerning first=334 second=260 amount=-2 +kerning first=207 second=352 amount=-1 +kerning first=8218 second=364 amount=-2 +kerning first=207 second=286 amount=-1 +kerning first=113 second=241 amount=-1 +kerning first=198 second=317 amount=-1 +kerning first=82 second=362 amount=-1 +kerning first=121 second=267 amount=-1 +kerning first=317 second=356 amount=-1 +kerning first=193 second=311 amount=-1 +kerning first=307 second=382 amount=-1 +kerning first=187 second=362 amount=-2 +kerning first=88 second=311 amount=-1 +kerning first=1064 second=1057 amount=-1 +kerning first=85 second=267 amount=-1 +kerning first=66 second=286 amount=-1 +kerning first=84 second=226 amount=-2 +kerning first=379 second=382 amount=-1 +kerning first=118 second=331 amount=-1 +kerning first=187 second=331 amount=-1 +kerning first=278 second=221 amount=-1 +kerning first=110 second=252 amount=-1 +kerning first=65 second=221 amount=-3 +kerning first=1024 second=1056 amount=-1 +kerning first=201 second=361 amount=-1 +kerning first=1060 second=1056 amount=-1 +kerning first=204 second=266 amount=-1 +kerning first=1053 second=1092 amount=-1 +kerning first=66 second=202 amount=-2 +kerning first=79 second=103 amount=-1 +kerning first=101 second=104 amount=-1 +kerning first=212 second=356 amount=-1 +kerning first=251 second=252 amount=-1 +kerning first=65 second=104 amount=-1 +kerning first=90 second=381 amount=-1 +kerning first=287 second=252 amount=-1 +kerning first=203 second=201 amount=-1 +kerning first=76 second=207 amount=-1 +kerning first=323 second=252 amount=-1 +kerning first=355 second=8249 amount=-1 +kerning first=120 second=226 amount=-1 +kerning first=74 second=45 amount=-2 +kerning first=71 second=84 amount=-1 +kerning first=264 second=246 amount=-1 +kerning first=364 second=103 amount=-2 +kerning first=74 second=336 amount=-1 +kerning first=68 second=356 amount=-1 +kerning first=328 second=103 amount=-1 +kerning first=370 second=291 amount=-2 +kerning first=199 second=382 amount=-1 +kerning first=192 second=246 amount=-1 +kerning first=334 second=291 amount=-1 +kerning first=235 second=382 amount=-1 +kerning first=110 second=45 amount=-1 +kerning first=284 second=84 amount=-1 +kerning first=356 second=109 amount=-1 +kerning first=256 second=103 amount=-1 +kerning first=298 second=291 amount=-1 +kerning first=251 second=45 amount=-1 +kerning first=87 second=246 amount=-1 +kerning first=220 second=103 amount=-2 +kerning first=262 second=291 amount=-1 +kerning first=88 second=227 amount=-1 +kerning first=212 second=84 amount=-1 +kerning first=369 second=226 amount=-1 +kerning first=226 second=291 amount=-1 +kerning first=334 second=259 amount=-1 +kerning first=323 second=45 amount=-2 +kerning first=87 second=78 amount=-1 +kerning first=115 second=103 amount=-1 +kerning first=323 second=336 amount=-1 +kerning first=287 second=45 amount=-1 +kerning first=370 second=263 amount=-1 +kerning first=264 second=352 amount=-1 +kerning first=192 second=218 amount=-2 +kerning first=362 second=213 amount=-1 +kerning first=87 second=218 amount=-1 +kerning first=336 second=218 amount=-1 +kerning first=198 second=314 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=262 second=263 amount=-1 +kerning first=350 second=193 amount=-2 +kerning first=73 second=243 amount=-1 +kerning first=298 second=263 amount=-1 +kerning first=77 second=269 amount=-1 +kerning first=264 second=218 amount=-1 +kerning first=356 second=288 amount=-1 +kerning first=229 second=8217 amount=-1 +kerning first=79 second=370 amount=-1 +kerning first=278 second=193 amount=-1 +kerning first=234 second=314 amount=-1 +kerning first=76 second=115 amount=-1 +kerning first=289 second=115 amount=-1 +kerning first=85 second=263 amount=-1 +kerning first=113 second=269 amount=-1 +kerning first=8218 second=97 amount=-1 +kerning first=208 second=8249 amount=-1 +kerning first=325 second=115 amount=-1 +kerning first=245 second=120 amount=-1 +kerning first=121 second=263 amount=-1 +kerning first=67 second=8249 amount=-2 +kerning first=217 second=115 amount=-1 +kerning first=281 second=120 amount=-1 +kerning first=1042 second=1038 amount=-1 +kerning first=218 second=269 amount=-1 +kerning first=103 second=8249 amount=-1 +kerning first=378 second=314 amount=-1 +kerning first=253 second=115 amount=-1 +kerning first=317 second=120 amount=-1 +kerning first=198 second=78 amount=-1 +kerning first=267 second=353 amount=-1 +kerning first=77 second=213 amount=-1 +kerning first=88 second=224 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=303 second=353 amount=-1 +kerning first=68 second=120 amount=-1 +kerning first=218 second=213 amount=-1 +kerning first=201 second=70 amount=-1 +kerning first=339 second=353 amount=-1 +kerning first=362 second=269 amount=-1 +kerning first=375 second=353 amount=-1 +kerning first=350 second=317 amount=-1 +kerning first=201 second=98 amount=-1 +kerning first=339 second=118 amount=-1 +kerning first=88 second=255 amount=-2 +kerning first=374 second=197 amount=-3 +kerning first=303 second=118 amount=-1 +kerning first=286 second=89 amount=-1 +kerning first=375 second=118 amount=-1 +kerning first=195 second=118 amount=-2 +kerning first=316 second=8249 amount=-1 +kerning first=187 second=303 amount=-1 +kerning first=65 second=101 amount=-1 +kerning first=353 second=120 amount=-1 +kerning first=264 second=99 amount=-1 +kerning first=74 second=259 amount=-1 +kerning first=352 second=8249 amount=-1 +kerning first=223 second=303 amount=-1 +kerning first=267 second=118 amount=-1 +kerning first=225 second=171 amount=-1 +kerning first=217 second=235 amount=-1 +kerning first=1027 second=1076 amount=-1 +kerning first=350 second=221 amount=-1 +kerning first=280 second=8249 amount=-1 +kerning first=118 second=303 amount=-1 +kerning first=206 second=101 amount=-1 +kerning first=253 second=235 amount=-1 +kerning first=327 second=375 amount=-1 +kerning first=362 second=241 amount=-1 +kerning first=220 second=196 amount=-2 +kerning first=1025 second=1093 amount=-1 +kerning first=193 second=283 amount=-1 +kerning first=90 second=118 amount=-1 +kerning first=317 second=328 amount=-1 +kerning first=314 second=101 amount=-1 +kerning first=1049 second=1073 amount=-1 +kerning first=256 second=370 amount=-2 +kerning first=281 second=328 amount=-1 +kerning first=88 second=283 amount=-1 +kerning first=218 second=241 amount=-1 +kerning first=253 second=46 amount=-3 +kerning first=79 second=196 amount=-2 +kerning first=380 second=283 amount=-1 +kerning first=367 second=380 amount=-1 +kerning first=1038 second=1087 amount=-2 +kerning first=344 second=283 amount=-1 +kerning first=117 second=8220 amount=-2 +kerning first=119 second=108 amount=-1 +kerning first=81 second=8220 amount=-1 +kerning first=1042 second=1045 amount=-1 +kerning first=76 second=118 amount=-1 +kerning first=86 second=345 amount=-1 +kerning first=224 second=108 amount=-1 +kerning first=223 second=380 amount=-1 +kerning first=213 second=193 amount=-2 +kerning first=8220 second=281 amount=-1 +kerning first=86 second=338 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=321 second=193 amount=-1 +kerning first=217 second=361 amount=-1 +kerning first=83 second=368 amount=-1 +kerning first=99 second=241 amount=-1 +kerning first=118 second=380 amount=-1 +kerning first=353 second=331 amount=-1 +kerning first=193 second=286 amount=-1 +kerning first=83 second=115 amount=-1 +kerning first=187 second=380 amount=-3 +kerning first=83 second=203 amount=-1 +kerning first=296 second=115 amount=-1 +kerning first=281 second=331 amount=-1 +kerning first=88 second=286 amount=-1 +kerning first=325 second=119 amount=-1 +kerning first=204 second=248 amount=-1 +kerning first=260 second=368 amount=-2 +kerning first=317 second=331 amount=-1 +kerning first=224 second=115 amount=-1 +kerning first=83 second=108 amount=-1 +kerning first=304 second=290 amount=-1 +kerning first=260 second=115 amount=-1 +kerning first=99 second=248 amount=-1 +kerning first=90 second=78 amount=-1 +kerning first=258 second=255 amount=-1 +kerning first=327 second=269 amount=-1 +kerning first=262 second=323 amount=-1 +kerning first=106 second=307 amount=-1 +kerning first=117 second=255 amount=-1 +kerning first=8217 second=277 amount=-2 +kerning first=332 second=368 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=317 second=352 amount=-1 +kerning first=334 second=323 amount=-1 +kerning first=88 second=231 amount=-1 +kerning first=1060 second=1052 amount=-1 +kerning first=67 second=77 amount=-1 +kerning first=45 second=255 amount=-2 +kerning first=206 second=122 amount=-1 +kerning first=283 second=307 amount=-1 +kerning first=201 second=278 amount=-1 +kerning first=101 second=122 amount=-1 +kerning first=344 second=290 amount=-1 +kerning first=1038 second=1080 amount=-2 +kerning first=80 second=233 amount=-1 +kerning first=70 second=245 amount=-1 +kerning first=381 second=278 amount=-1 +kerning first=221 second=233 amount=-2 +kerning first=200 second=290 amount=-1 +kerning first=229 second=252 amount=-1 +kerning first=90 second=200 amount=-1 +kerning first=313 second=366 amount=-1 +kerning first=378 second=335 amount=-1 +kerning first=68 second=352 amount=-1 +kerning first=250 second=367 amount=-1 +kerning first=209 second=352 amount=-1 +kerning first=323 second=333 amount=-1 +kerning first=313 second=106 amount=-1 +kerning first=1050 second=1092 amount=-1 +kerning first=350 second=217 amount=-1 +kerning first=287 second=333 amount=-1 +kerning first=85 second=288 amount=-1 +kerning first=241 second=106 amount=-1 +kerning first=198 second=110 amount=-1 +kerning first=277 second=106 amount=-1 +kerning first=234 second=110 amount=-1 +kerning first=339 second=378 amount=-1 +kerning first=68 second=65 amount=-2 +kerning first=303 second=378 amount=-1 +kerning first=8218 second=367 amount=-1 +kerning first=375 second=378 amount=-1 +kerning first=1043 second=1080 amount=-1 +kerning first=268 second=262 amount=-2 +kerning first=378 second=110 amount=-1 +kerning first=368 second=210 amount=-1 +kerning first=264 second=243 amount=-1 +kerning first=65 second=217 amount=-2 +kerning first=78 second=347 amount=-1 +kerning first=296 second=210 amount=-1 +kerning first=258 second=262 amount=-1 +kerning first=317 second=65 amount=-1 +kerning first=316 second=281 amount=-1 +kerning first=260 second=210 amount=-1 +kerning first=1118 second=1078 amount=-1 +kerning first=203 second=198 amount=-1 +kerning first=298 second=288 amount=-1 +kerning first=233 second=326 amount=-1 +kerning first=87 second=243 amount=-2 +kerning first=330 second=262 amount=-1 +kerning first=262 second=288 amount=-2 +kerning first=366 second=255 amount=-1 +kerning first=67 second=281 amount=-1 +kerning first=366 second=262 amount=-1 +kerning first=370 second=288 amount=-1 +kerning first=330 second=255 amount=-1 +kerning first=103 second=281 amount=-1 +kerning first=192 second=243 amount=-1 +kerning first=278 second=217 amount=-1 +kerning first=223 second=120 amount=-1 +kerning first=87 second=74 amount=-2 +kerning first=208 second=274 amount=-1 +kerning first=259 second=120 amount=-1 +kerning first=69 second=229 amount=-1 +kerning first=362 second=291 amount=-2 +kerning first=118 second=99 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=8218 second=107 amount=-1 +kerning first=1024 second=1031 amount=-1 +kerning first=288 second=68 amount=-1 +kerning first=82 second=99 amount=-1 +kerning first=210 second=229 amount=-1 +kerning first=352 second=274 amount=-1 +kerning first=332 second=203 amount=-1 +kerning first=220 second=365 amount=-1 +kerning first=118 second=120 amount=-1 +kerning first=105 second=229 amount=-1 +kerning first=350 second=78 amount=-1 +kerning first=280 second=274 amount=-1 +kerning first=187 second=120 amount=-2 +kerning first=381 second=73 amount=-1 +kerning first=87 second=240 amount=-2 +kerning first=298 second=267 amount=-1 +kerning first=354 second=229 amount=-2 +kerning first=216 second=377 amount=-1 +kerning first=67 second=108 amount=-1 +kerning first=325 second=118 amount=-1 +kerning first=289 second=118 amount=-1 +kerning first=282 second=229 amount=-1 +kerning first=1067 second=1077 amount=-1 +kerning first=205 second=113 amount=-1 +kerning first=262 second=267 amount=-1 +kerning first=381 second=80 amount=-1 +kerning first=198 second=75 amount=-1 +kerning first=367 second=120 amount=-1 +kerning first=201 second=80 amount=-1 +kerning first=278 second=196 amount=-1 +kerning first=86 second=332 amount=-1 +kerning first=1031 second=1077 amount=-1 +kerning first=112 second=118 amount=-1 +kerning first=370 second=267 amount=-1 +kerning first=258 second=8220 amount=-3 +kerning first=288 second=377 amount=-1 +kerning first=253 second=118 amount=-1 +kerning first=222 second=8220 amount=-1 +kerning first=350 second=196 amount=-2 +kerning first=217 second=118 amount=-1 +kerning first=90 second=111 amount=-1 +kerning first=72 second=199 amount=-1 +kerning first=88 second=287 amount=-1 +kerning first=229 second=287 amount=-1 +kerning first=195 second=111 amount=-1 +kerning first=286 second=209 amount=-1 +kerning first=193 second=287 amount=-1 +kerning first=84 second=219 amount=-1 +kerning first=231 second=111 amount=-1 +kerning first=86 second=339 amount=-2 +kerning first=110 second=8217 amount=-2 +kerning first=99 second=242 amount=-1 +kerning first=122 second=339 amount=-1 +kerning first=344 second=234 amount=-1 +kerning first=8217 second=113 amount=-2 +kerning first=204 second=242 amount=-1 +kerning first=321 second=199 amount=-1 +kerning first=337 second=287 amount=-1 +kerning first=380 second=234 amount=-1 +kerning first=73 second=264 amount=-1 +kerning first=83 second=374 amount=-1 +kerning first=311 second=254 amount=-1 +kerning first=367 second=303 amount=-1 +kerning first=83 second=197 amount=-2 +kerning first=347 second=254 amount=-1 +kerning first=200 second=289 amount=-1 +kerning first=83 second=121 amount=-1 +kerning first=213 second=364 amount=-1 +kerning first=236 second=289 amount=-1 +kerning first=1114 second=1094 amount=-1 +kerning first=331 second=361 amount=-1 +kerning first=70 second=244 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=67 second=274 amount=-1 +kerning first=267 second=111 amount=-1 +kerning first=258 second=216 amount=-1 +kerning first=303 second=111 amount=-1 +kerning first=203 second=254 amount=-1 +kerning first=344 second=289 amount=-1 +kerning first=380 second=289 amount=-1 +kerning first=8250 second=346 amount=-2 +kerning first=332 second=197 amount=-2 +kerning first=321 second=364 amount=-1 +kerning first=375 second=111 amount=-1 +kerning first=275 second=254 amount=-1 +kerning first=368 second=197 amount=-2 +kerning first=213 second=97 amount=-1 +kerning first=315 second=205 amount=-1 +kerning first=324 second=117 amount=-1 +kerning first=86 second=72 amount=-1 +kerning first=249 second=97 amount=-1 +kerning first=280 second=76 amount=-1 +kerning first=288 second=117 amount=-1 +kerning first=380 second=228 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=274 second=380 amount=-1 +kerning first=368 second=121 amount=-1 +kerning first=377 second=66 amount=-1 +kerning first=208 second=76 amount=-1 +kerning first=307 second=119 amount=-1 +kerning first=362 second=275 amount=-1 +kerning first=201 second=74 amount=-1 +kerning first=192 second=366 amount=-2 +kerning first=304 second=250 amount=-1 +kerning first=296 second=121 amount=-1 +kerning first=379 second=119 amount=-1 +kerning first=260 second=121 amount=-1 +kerning first=88 second=230 amount=-1 +kerning first=67 second=76 amount=-1 +kerning first=1069 second=1036 amount=-1 +kerning first=376 second=250 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=278 second=107 amount=-1 +kerning first=317 second=86 amount=-1 +kerning first=242 second=107 amount=-1 +kerning first=74 second=333 amount=-1 +kerning first=267 second=378 amount=-1 +kerning first=350 second=107 amount=-1 +kerning first=66 second=205 amount=-2 +kerning first=75 second=117 amount=-1 +kerning first=232 second=250 amount=-1 +kerning first=231 second=378 amount=-1 +kerning first=103 second=367 amount=-1 +kerning first=101 second=107 amount=-1 +kerning first=65 second=107 amount=-1 +kerning first=90 second=378 amount=-1 +kerning first=252 second=117 amount=-1 +kerning first=352 second=76 amount=-1 +kerning first=256 second=363 amount=-1 +kerning first=313 second=310 amount=-1 +kerning first=117 second=318 amount=-1 +kerning first=379 second=214 amount=-1 +kerning first=328 second=363 amount=-1 +kerning first=352 second=330 amount=-1 +kerning first=336 second=171 amount=-1 +kerning first=374 second=355 amount=-1 +kerning first=268 second=194 amount=-2 +kerning first=364 second=363 amount=-1 +kerning first=323 second=227 amount=-1 +kerning first=258 second=318 amount=-1 +kerning first=1043 second=1114 amount=-1 +kerning first=120 second=333 amount=-1 +kerning first=73 second=259 amount=-1 +kerning first=290 second=74 amount=-1 +kerning first=1057 second=1088 amount=-1 +kerning first=1093 second=1089 amount=-1 +kerning first=1057 second=1089 amount=-1 +kerning first=221 second=240 amount=-2 +kerning first=8216 second=241 amount=-1 +kerning first=287 second=259 amount=-1 +kerning first=209 second=71 amount=-1 +kerning first=378 second=116 amount=-1 +kerning first=350 second=122 amount=-1 +kerning first=208 second=77 amount=-1 +kerning first=296 second=375 amount=-1 +kerning first=317 second=71 amount=-1 +kerning first=88 second=346 amount=-1 +kerning first=199 second=214 amount=-2 +kerning first=260 second=375 amount=-1 +kerning first=67 second=330 amount=-1 +kerning first=278 second=122 amount=-1 +kerning first=224 second=375 amount=-1 +kerning first=1070 second=1041 amount=-1 +kerning first=71 second=369 amount=-1 +kerning first=323 second=259 amount=-1 +kerning first=89 second=296 amount=-1 +kerning first=280 second=330 amount=-1 +kerning first=234 second=116 amount=-1 +kerning first=72 second=97 amount=-1 +kerning first=352 second=77 amount=-1 +kerning first=264 second=220 amount=-1 +kerning first=209 second=246 amount=-1 +kerning first=376 second=194 amount=-3 +kerning first=208 second=330 amount=-1 +kerning first=290 second=220 amount=-1 +kerning first=1050 second=1086 amount=-1 +kerning first=280 second=77 amount=-1 +kerning first=368 second=375 amount=-1 +kerning first=334 second=344 amount=-1 +kerning first=266 second=296 amount=-1 +kerning first=325 second=228 amount=-1 +kerning first=187 second=324 amount=-1 +kerning first=356 second=369 amount=-1 +kerning first=289 second=228 amount=-1 +kerning first=118 second=324 amount=-1 +kerning first=332 second=374 amount=-1 +kerning first=338 second=296 amount=-1 +kerning first=253 second=228 amount=-1 +kerning first=84 second=279 amount=-2 +kerning first=217 second=228 amount=-1 +kerning first=228 second=289 amount=-1 +kerning first=260 second=374 amount=-3 +kerning first=232 second=251 amount=-1 +kerning first=66 second=206 amount=-2 +kerning first=374 second=296 amount=-1 +kerning first=1045 second=1055 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=262 second=344 amount=-1 +kerning first=304 second=251 amount=-1 +kerning first=83 second=375 amount=-1 +kerning first=284 second=369 amount=-1 +kerning first=268 second=251 amount=-1 +kerning first=376 second=251 amount=-1 +kerning first=8217 second=112 amount=-1 +kerning first=381 second=284 amount=-1 +kerning first=98 second=253 amount=-1 +kerning first=89 second=355 amount=-1 +kerning first=315 second=206 amount=-1 +kerning first=201 second=284 amount=-1 +kerning first=1100 second=1119 amount=-1 +kerning first=115 second=363 amount=-1 +kerning first=120 second=279 amount=-1 +kerning first=275 second=253 amount=-1 +kerning first=230 second=355 amount=-1 +kerning first=220 second=363 amount=-1 +kerning first=45 second=318 amount=-1 +kerning first=347 second=253 amount=-1 +kerning first=194 second=355 amount=-1 +kerning first=232 second=331 amount=-1 +kerning first=313 second=313 amount=-1 +kerning first=45 second=315 amount=-3 +kerning first=251 second=318 amount=-1 +kerning first=202 second=83 amount=-1 +kerning first=8220 second=337 amount=-1 +kerning first=66 second=268 amount=-1 +kerning first=287 second=318 amount=-1 +kerning first=89 second=365 amount=-1 +kerning first=71 second=310 amount=-1 +kerning first=207 second=268 amount=-1 +kerning first=274 second=83 amount=-1 +kerning first=81 second=315 amount=-1 +kerning first=377 second=263 amount=-1 +kerning first=310 second=83 amount=-1 +kerning first=199 second=218 amount=-1 +kerning first=213 second=370 amount=-1 +kerning first=346 second=83 amount=-1 +kerning first=284 second=310 amount=-1 +kerning first=8216 second=245 amount=-1 +kerning first=1045 second=1065 amount=-1 +kerning first=197 second=263 amount=-1 +kerning first=381 second=355 amount=-1 +kerning first=212 second=310 amount=-1 +kerning first=84 second=220 amount=-1 +kerning first=230 second=303 amount=-1 +kerning first=274 second=353 amount=-1 +kerning first=266 second=303 amount=-1 +kerning first=84 second=275 amount=-2 +kerning first=310 second=353 amount=-1 +kerning first=346 second=353 amount=-1 +kerning first=374 second=365 amount=-1 +kerning first=356 second=310 amount=-1 +kerning first=382 second=353 amount=-1 +kerning first=108 second=45 amount=-1 +kerning first=338 second=365 amount=-1 +kerning first=222 second=315 amount=-1 +kerning first=374 second=303 amount=-1 +kerning first=380 second=224 amount=-1 +kerning first=302 second=365 amount=-1 +kerning first=1071 second=1060 amount=-1 +kerning first=266 second=365 amount=-1 +kerning first=202 second=353 amount=-1 +kerning first=253 second=303 amount=-1 +kerning first=230 second=365 amount=-1 +kerning first=194 second=365 amount=-1 +kerning first=1070 second=1048 amount=-1 +kerning first=289 second=225 amount=-1 +kerning first=1114 second=1098 amount=-1 +kerning first=118 second=105 amount=-1 +kerning first=325 second=225 amount=-1 +kerning first=266 second=98 amount=-1 +kerning first=1114 second=1095 amount=-1 +kerning first=354 second=228 amount=-2 +kerning first=1104 second=1093 amount=-1 +kerning first=338 second=98 amount=-1 +kerning first=1042 second=1095 amount=-1 +kerning first=331 second=46 amount=-1 +kerning first=282 second=228 amount=-1 +kerning first=89 second=303 amount=-1 +kerning first=367 second=46 amount=-1 +kerning first=354 second=235 amount=-1 +kerning first=217 second=225 amount=-2 +kerning first=230 second=98 amount=-1 +kerning first=210 second=228 amount=-1 +kerning first=253 second=225 amount=-2 +kerning first=194 second=98 amount=-1 +kerning first=274 second=350 amount=-1 +kerning first=8250 second=352 amount=-2 +kerning first=266 second=102 amount=-1 +kerning first=108 second=363 amount=-1 +kerning first=105 second=228 amount=-1 +kerning first=45 second=305 amount=-1 +kerning first=223 second=46 amount=-2 +kerning first=321 second=370 amount=-1 +kerning first=202 second=350 amount=-1 +kerning first=69 second=228 amount=-1 +kerning first=338 second=102 amount=-1 +kerning first=8218 second=382 amount=-2 +kerning first=259 second=46 amount=-1 +kerning first=374 second=102 amount=-1 +kerning first=295 second=46 amount=-1 +kerning first=249 second=363 amount=-1 +kerning first=89 second=102 amount=-1 +kerning first=90 second=245 amount=-1 +kerning first=83 second=86 amount=-1 +kerning first=369 second=46 amount=-1 +kerning first=121 second=273 amount=-1 +kerning first=1053 second=1108 amount=-1 +kerning first=110 second=318 amount=-1 +kerning first=321 second=363 amount=-1 +kerning first=377 second=325 amount=-1 +kerning first=82 second=46 amount=-1 +kerning first=208 second=280 amount=-1 +kerning first=230 second=102 amount=-1 +kerning first=118 second=46 amount=-3 +kerning first=278 second=211 amount=-1 +kerning first=202 second=86 amount=-1 +kerning first=366 second=305 amount=-1 +kerning first=313 second=112 amount=-1 +kerning first=75 second=67 amount=-1 +kerning first=206 second=211 amount=-1 +kerning first=122 second=261 amount=-1 +kerning first=277 second=112 amount=-1 +kerning first=86 second=171 amount=-3 +kerning first=241 second=112 amount=-1 +kerning first=327 second=81 amount=-1 +kerning first=366 second=256 amount=-2 +kerning first=214 second=261 amount=-1 +kerning first=346 second=86 amount=-1 +kerning first=205 second=112 amount=-1 +kerning first=250 second=261 amount=-1 +kerning first=310 second=86 amount=-1 +kerning first=249 second=107 amount=-1 +kerning first=286 second=261 amount=-1 +kerning first=84 second=216 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=274 second=86 amount=-1 +kerning first=206 second=99 amount=-1 +kerning first=100 second=112 amount=-1 +kerning first=8250 second=89 amount=-2 +kerning first=321 second=107 amount=-1 +kerning first=332 second=204 amount=-1 +kerning first=371 second=171 amount=-1 +kerning first=256 second=211 amount=-1 +kerning first=367 second=105 amount=-1 +kerning first=268 second=254 amount=-1 +kerning first=216 second=327 amount=-1 +kerning first=122 second=171 amount=-2 +kerning first=78 second=81 amount=-1 +kerning first=315 second=209 amount=-1 +kerning first=288 second=327 amount=-1 +kerning first=219 second=81 amount=-1 +kerning first=223 second=105 amount=-1 +kerning first=263 second=171 amount=-1 +kerning first=209 second=346 amount=-1 +kerning first=1025 second=1103 amount=-1 +kerning first=258 second=249 amount=-1 +kerning first=236 second=230 amount=-1 +kerning first=83 second=204 amount=-1 +kerning first=106 second=303 amount=-1 +kerning first=117 second=249 amount=-1 +kerning first=75 second=334 amount=-1 +kerning first=199 second=318 amount=-1 +kerning first=68 second=346 amount=-1 +kerning first=366 second=249 amount=-1 +kerning first=313 second=379 amount=-1 +kerning first=72 second=100 amount=-1 +kerning first=317 second=346 amount=-1 +kerning first=378 second=242 amount=-1 +kerning first=202 second=196 amount=-1 +kerning first=362 second=223 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=120 second=275 amount=-1 +kerning first=330 second=249 amount=-1 +kerning first=263 second=339 amount=-1 +kerning first=325 second=334 amount=-1 +kerning first=218 second=223 amount=-1 +kerning first=81 second=256 amount=-2 +kerning first=45 second=256 amount=-2 +kerning first=45 second=249 amount=-1 +kerning first=344 second=230 amount=-1 +kerning first=380 second=230 amount=-1 +kerning first=1042 second=1039 amount=-1 +kerning first=272 second=230 amount=-1 +kerning first=288 second=202 amount=-1 +kerning first=65 second=211 amount=-1 +kerning first=113 second=223 amount=-1 +kerning first=222 second=256 amount=-2 +kerning first=1045 second=1059 amount=-1 +kerning first=313 second=109 amount=-1 +kerning first=274 second=89 amount=-1 +kerning first=119 second=114 amount=-1 +kerning first=321 second=104 amount=-1 +kerning first=8250 second=86 amount=-2 +kerning first=321 second=192 amount=-1 +kerning first=83 second=114 amount=-1 +kerning first=277 second=109 amount=-1 +kerning first=315 second=212 amount=-1 +kerning first=1043 second=1104 amount=-1 +kerning first=100 second=314 amount=-1 +kerning first=337 second=237 amount=-1 +kerning first=221 second=187 amount=-1 +kerning first=323 second=262 amount=-1 +kerning first=199 second=217 amount=-1 +kerning first=194 second=99 amount=-1 +kerning first=302 second=99 amount=-1 +kerning first=201 second=8249 amount=-1 +kerning first=84 second=269 amount=-2 +kerning first=277 second=314 amount=-1 +kerning first=380 second=227 amount=-1 +kerning first=266 second=99 amount=-1 +kerning first=244 second=378 amount=-1 +kerning first=241 second=314 amount=-1 +kerning first=374 second=99 amount=-2 +kerning first=346 second=89 amount=-1 +kerning first=249 second=104 amount=-1 +kerning first=290 second=282 amount=-1 +kerning first=99 second=44 amount=-1 +kerning first=120 second=269 amount=-1 +kerning first=310 second=89 amount=-1 +kerning first=313 second=314 amount=-1 +kerning first=240 second=44 amount=-2 +kerning first=1102 second=1083 amount=-1 +kerning first=8222 second=229 amount=-1 +kerning first=78 second=351 amount=-1 +kerning first=231 second=371 amount=-1 +kerning first=200 second=224 amount=-1 +kerning first=267 second=371 amount=-1 +kerning first=377 second=267 amount=-1 +kerning first=316 second=277 amount=-1 +kerning first=266 second=302 amount=-1 +kerning first=303 second=371 amount=-1 +kerning first=272 second=224 amount=-1 +kerning first=363 second=347 amount=-1 +kerning first=8250 second=353 amount=-1 +kerning first=1070 second=1051 amount=-1 +kerning first=339 second=371 amount=-1 +kerning first=236 second=224 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=327 second=347 amount=-1 +kerning first=286 second=202 amount=-1 +kerning first=67 second=277 amount=-1 +kerning first=356 second=344 amount=-1 +kerning first=344 second=224 amount=-1 +kerning first=291 second=347 amount=-1 +kerning first=255 second=347 amount=-1 +kerning first=345 second=8249 amount=-1 +kerning first=214 second=202 amount=-1 +kerning first=89 second=302 amount=-1 +kerning first=89 second=361 amount=-1 +kerning first=381 second=8249 amount=-1 +kerning first=103 second=277 amount=-1 +kerning first=321 second=367 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=73 second=261 amount=-1 +kerning first=197 second=267 amount=-1 +kerning first=8217 second=106 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=363 second=351 amount=-1 +kerning first=249 second=367 amount=-1 +kerning first=334 second=69 amount=-1 +kerning first=207 second=212 amount=-1 +kerning first=376 second=257 amount=-2 +kerning first=66 second=212 amount=-1 +kerning first=368 second=114 amount=-1 +kerning first=255 second=351 amount=-1 +kerning first=233 second=97 amount=-1 +kerning first=268 second=257 amount=-1 +kerning first=262 second=69 amount=-1 +kerning first=1070 second=1047 amount=-1 +kerning first=304 second=257 amount=-1 +kerning first=8250 second=83 amount=-2 +kerning first=327 second=351 amount=-1 +kerning first=108 second=367 amount=-1 +kerning first=269 second=267 amount=-1 +kerning first=291 second=351 amount=-1 +kerning first=232 second=257 amount=-1 +kerning first=291 second=291 amount=-1 +kerning first=67 second=337 amount=-1 +kerning first=278 second=382 amount=-1 +kerning first=80 second=246 amount=-1 +kerning first=313 second=316 amount=-1 +kerning first=255 second=291 amount=-2 +kerning first=314 second=382 amount=-1 +kerning first=1045 second=1062 amount=-1 +kerning first=197 second=266 amount=-1 +kerning first=194 second=362 amount=-2 +kerning first=350 second=382 amount=-1 +kerning first=344 second=286 amount=-1 +kerning first=79 second=206 amount=-1 +kerning first=283 second=241 amount=-1 +kerning first=77 second=226 amount=-1 +kerning first=1071 second=1057 amount=-1 +kerning first=113 second=226 amount=-1 +kerning first=114 second=291 amount=-1 +kerning first=101 second=382 amount=-1 +kerning first=282 second=205 amount=-1 +kerning first=258 second=311 amount=-1 +kerning first=255 second=287 amount=-2 +kerning first=78 second=291 amount=-1 +kerning first=196 second=279 amount=-1 +kerning first=282 second=67 amount=-1 +kerning first=218 second=226 amount=-2 +kerning first=206 second=382 amount=-1 +kerning first=200 second=286 amount=-1 +kerning first=1042 second=1042 amount=-1 +kerning first=106 second=241 amount=-1 +kerning first=346 second=356 amount=-1 +kerning first=103 second=337 amount=-1 +kerning first=242 second=382 amount=-1 +kerning first=379 second=221 amount=-1 +kerning first=230 second=361 amount=-1 +kerning first=1107 second=1113 amount=-1 +kerning first=194 second=361 amount=-1 +kerning first=251 second=8221 amount=-2 +kerning first=99 second=382 amount=-1 +kerning first=302 second=361 amount=-1 +kerning first=316 second=337 amount=-1 +kerning first=192 second=290 amount=-1 +kerning first=110 second=8221 amount=-2 +kerning first=266 second=361 amount=-1 +kerning first=1100 second=1075 amount=-1 +kerning first=100 second=316 amount=-1 +kerning first=8217 second=369 amount=-1 +kerning first=374 second=361 amount=-1 +kerning first=1057 second=1082 amount=-1 +kerning first=284 second=289 amount=-1 +kerning first=241 second=316 amount=-1 +kerning first=216 second=274 amount=-1 +kerning first=199 second=221 amount=-1 +kerning first=377 second=266 amount=-1 +kerning first=200 second=227 amount=-1 +kerning first=280 second=70 amount=-1 +kerning first=213 second=103 amount=-1 +kerning first=258 second=252 amount=-1 +kerning first=83 second=381 amount=-1 +kerning first=222 second=45 amount=-1 +kerning first=368 second=115 amount=-1 +kerning first=208 second=70 amount=-1 +kerning first=83 second=207 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=86 second=78 amount=-1 +kerning first=195 second=368 amount=-2 +kerning first=330 second=252 amount=-1 +kerning first=72 second=103 amount=-1 +kerning first=45 second=252 amount=-1 +kerning first=1042 second=1101 amount=-1 +kerning first=366 second=45 amount=-3 +kerning first=67 second=336 amount=-2 +kerning first=272 second=227 amount=-1 +kerning first=352 second=70 amount=-1 +kerning first=1078 second=1101 amount=-1 +kerning first=117 second=252 amount=-1 +kerning first=67 second=278 amount=-1 +kerning first=8250 second=350 amount=-2 +kerning first=332 second=381 amount=-1 +kerning first=290 second=226 amount=-1 +kerning first=332 second=207 amount=-1 +kerning first=268 second=201 amount=-1 +kerning first=274 second=356 amount=-1 +kerning first=45 second=311 amount=-1 +kerning first=313 second=317 amount=-1 +kerning first=1043 second=1107 amount=-1 +kerning first=202 second=90 amount=-1 +kerning first=280 second=336 amount=-1 +kerning first=202 second=356 amount=-1 +kerning first=377 second=323 amount=-1 +kerning first=208 second=278 amount=-1 +kerning first=266 second=362 amount=-1 +kerning first=366 second=252 amount=-1 +kerning first=274 second=90 amount=-1 +kerning first=81 second=45 amount=-1 +kerning first=87 second=233 amount=-2 +kerning first=221 second=246 amount=-1 +kerning first=321 second=103 amount=-1 +kerning first=280 second=278 amount=-1 +kerning first=338 second=362 amount=-1 +kerning first=346 second=90 amount=-1 +kerning first=192 second=233 amount=-1 +kerning first=327 second=291 amount=-1 +kerning first=200 second=216 amount=-1 +kerning first=117 second=45 amount=-1 +kerning first=352 second=278 amount=-1 +kerning first=108 second=382 amount=-1 +kerning first=122 second=369 amount=-1 +kerning first=277 second=103 amount=-1 +kerning first=1086 second=1095 amount=-1 +kerning first=86 second=369 amount=-1 +kerning first=241 second=103 amount=-1 +kerning first=218 second=259 amount=-2 +kerning first=187 second=356 amount=-2 +kerning first=1050 second=1095 amount=-2 +kerning first=213 second=382 amount=-1 +kerning first=227 second=369 amount=-1 +kerning first=205 second=103 amount=-1 +kerning first=249 second=382 amount=-1 +kerning first=236 second=259 amount=-1 +kerning first=263 second=116 amount=-1 +kerning first=82 second=356 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=73 second=246 amount=-1 +kerning first=380 second=252 amount=-1 +kerning first=356 second=263 amount=-2 +kerning first=122 second=116 amount=-1 +kerning first=100 second=363 amount=-1 +kerning first=72 second=382 amount=-1 +kerning first=374 second=45 amount=-3 +kerning first=86 second=116 amount=-1 +kerning first=354 second=226 amount=-2 +kerning first=99 second=279 amount=-1 +kerning first=1071 second=1054 amount=-1 +kerning first=195 second=375 amount=-1 +kerning first=205 second=363 amount=-1 +kerning first=1042 second=1076 amount=-1 +kerning first=249 second=122 amount=-1 +kerning first=1057 second=1100 amount=-1 +kerning first=89 second=305 amount=-1 +kerning first=204 second=279 amount=-1 +kerning first=90 second=375 amount=-2 +kerning first=213 second=122 amount=-1 +kerning first=277 second=363 amount=-1 +kerning first=317 second=362 amount=-1 +kerning first=1064 second=1089 amount=-1 +kerning first=371 second=109 amount=-1 +kerning first=313 second=363 amount=-1 +kerning first=216 second=65 amount=-2 +kerning first=339 second=375 amount=-1 +kerning first=371 second=116 amount=-1 +kerning first=321 second=382 amount=-1 +kerning first=303 second=375 amount=-1 +kerning first=68 second=362 amount=-1 +kerning first=263 second=369 amount=-1 +kerning first=122 second=109 amount=-1 +kerning first=266 second=305 amount=-1 +kerning first=288 second=65 amount=-1 +kerning first=267 second=375 amount=-1 +kerning first=371 second=369 amount=-1 +kerning first=89 second=45 amount=-3 +kerning first=263 second=109 amount=-1 +kerning first=69 second=122 amount=-1 +kerning first=230 second=305 amount=-1 +kerning first=1114 second=1076 amount=-1 +kerning first=231 second=375 amount=-1 +kerning first=321 second=122 amount=-1 +kerning first=313 second=103 amount=-1 +kerning first=1056 second=1063 amount=-1 +kerning first=281 second=355 amount=-1 +kerning first=303 second=115 amount=-1 +kerning first=339 second=115 amount=-1 +kerning first=304 second=232 amount=-1 +kerning first=231 second=115 amount=-1 +kerning first=374 second=305 amount=-1 +kerning first=84 second=202 amount=-1 +kerning first=1060 second=1062 amount=-1 +kerning first=196 second=232 amount=-1 +kerning first=219 second=44 amount=-3 +kerning first=201 second=336 amount=-1 +kerning first=1024 second=1062 amount=-1 +kerning first=353 second=355 amount=-1 +kerning first=375 second=115 amount=-1 +kerning first=268 second=232 amount=-1 +kerning first=8250 second=371 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=375 second=108 amount=-1 +kerning first=382 second=251 amount=-1 +kerning first=232 second=253 amount=-1 +kerning first=8250 second=90 amount=-2 +kerning first=339 second=108 amount=-1 +kerning first=1024 second=1055 amount=-1 +kerning first=381 second=336 amount=-1 +kerning first=304 second=253 amount=-1 +kerning first=8250 second=378 amount=-3 +kerning first=376 second=253 amount=-1 +kerning first=262 second=325 amount=-1 +kerning first=71 second=66 amount=-1 +kerning first=1042 second=1048 amount=-1 +kerning first=65 second=251 amount=-1 +kerning first=264 second=227 amount=-1 +kerning first=379 second=196 amount=-1 +kerning first=344 second=231 amount=-1 +kerning first=380 second=231 amount=-1 +kerning first=232 second=225 amount=-1 +kerning first=198 second=332 amount=-1 +kerning first=231 second=108 amount=-1 +kerning first=73 second=380 amount=-1 +kerning first=195 second=108 amount=-1 +kerning first=381 second=315 amount=-1 +kerning first=303 second=108 amount=-1 +kerning first=199 second=196 amount=-2 +kerning first=267 second=108 amount=-1 +kerning first=366 second=286 amount=-1 +kerning first=236 second=8217 amount=-1 +kerning first=264 second=84 amount=-1 +kerning first=272 second=8217 amount=-1 +kerning first=330 second=286 amount=-1 +kerning first=76 second=203 amount=-1 +kerning first=88 second=8221 amount=-1 +kerning first=268 second=225 amount=-1 +kerning first=286 second=218 amount=-1 +kerning first=244 second=46 amount=-2 +kerning first=200 second=280 amount=-1 +kerning first=258 second=286 amount=-1 +kerning first=195 second=115 amount=-1 +kerning first=304 second=225 amount=-1 +kerning first=280 second=46 amount=-1 +kerning first=214 second=218 amount=-1 +kerning first=272 second=280 amount=-1 +kerning first=113 second=273 amount=-1 +kerning first=90 second=115 amount=-1 +kerning first=376 second=225 amount=-2 +kerning first=352 second=46 amount=-2 +kerning first=353 second=102 amount=-1 +kerning first=217 second=210 amount=-1 +kerning first=1060 second=1083 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=1042 second=1053 amount=-1 +kerning first=240 second=307 amount=-1 +kerning first=65 second=119 amount=-2 +kerning first=103 second=46 amount=-2 +kerning first=193 second=8221 amount=-3 +kerning first=218 second=245 amount=-1 +kerning first=362 second=266 amount=-1 +kerning first=76 second=210 amount=-1 +kerning first=229 second=8221 amount=-1 +kerning first=207 second=337 amount=-1 +kerning first=67 second=67 amount=-2 +kerning first=108 second=122 amount=-1 +kerning first=206 second=119 amount=-1 +kerning first=72 second=122 amount=-1 +kerning first=242 second=119 amount=-1 +kerning first=281 second=102 amount=-1 +kerning first=337 second=8221 amount=-1 +kerning first=278 second=119 amount=-1 +kerning first=218 second=266 amount=-1 +kerning first=8250 second=118 amount=-2 +kerning first=314 second=119 amount=-1 +kerning first=268 second=204 amount=-1 +kerning first=350 second=119 amount=-1 +kerning first=236 second=252 amount=-1 +kerning first=1024 second=1090 amount=-1 +kerning first=344 second=252 amount=-1 +kerning first=267 second=115 amount=-1 +kerning first=205 second=335 amount=-1 +kerning first=344 second=259 amount=-1 +kerning first=1114 second=1097 amount=-1 +kerning first=376 second=204 amount=-1 +kerning first=77 second=245 amount=-1 +kerning first=1056 second=1042 amount=-1 +kerning first=99 second=307 amount=-1 +kerning first=197 second=269 amount=-1 +kerning first=187 second=328 amount=-1 +kerning first=368 second=196 amount=-2 +kerning first=280 second=67 amount=-1 +kerning first=380 second=259 amount=-1 +kerning first=86 second=81 amount=-1 +kerning first=118 second=328 amount=-1 +kerning first=200 second=252 amount=-1 +kerning first=364 second=113 amount=-1 +kerning first=324 second=353 amount=-1 +kerning first=269 second=269 amount=-1 +kerning first=8217 second=335 amount=-2 +kerning first=378 second=100 amount=-1 +kerning first=70 second=275 amount=-1 +kerning first=256 second=366 amount=-2 +kerning first=363 second=291 amount=-1 +kerning first=324 second=365 amount=-1 +kerning first=256 second=113 amount=-1 +kerning first=70 second=263 amount=-1 +kerning first=288 second=365 amount=-1 +kerning first=382 second=378 amount=-1 +kerning first=65 second=99 amount=-1 +kerning first=8217 second=347 amount=-1 +kerning first=252 second=365 amount=-1 +kerning first=202 second=378 amount=-1 +kerning first=278 second=171 amount=-1 +kerning first=71 second=259 amount=-1 +kerning first=314 second=171 amount=-1 +kerning first=252 second=353 amount=-1 +kerning first=274 second=378 amount=-1 +kerning first=350 second=171 amount=-1 +kerning first=315 second=262 amount=-1 +kerning first=379 second=8250 amount=-1 +kerning first=234 second=112 amount=-1 +kerning first=317 second=212 amount=-1 +kerning first=89 second=352 amount=-2 +kerning first=75 second=353 amount=-1 +kerning first=1027 second=1054 amount=-1 +kerning first=111 second=353 amount=-1 +kerning first=194 second=352 amount=-2 +kerning first=1057 second=1086 amount=-1 +kerning first=1093 second=1091 amount=-1 +kerning first=71 second=87 amount=-1 +kerning first=377 second=288 amount=-1 +kerning first=71 second=354 amount=-1 +kerning first=220 second=113 amount=-1 +kerning first=302 second=352 amount=-1 +kerning first=197 second=288 amount=-1 +kerning first=352 second=105 amount=-1 +kerning first=266 second=352 amount=-1 +kerning first=73 second=211 amount=-1 +kerning first=374 second=352 amount=-2 +kerning first=1045 second=1052 amount=-1 +kerning first=212 second=354 amount=-1 +kerning first=347 second=223 amount=-1 +kerning first=8220 second=283 amount=-1 +kerning first=338 second=352 amount=-1 +kerning first=88 second=249 amount=-1 +kerning first=1100 second=1117 amount=-1 +kerning first=351 second=8220 amount=-1 +kerning first=112 second=303 amount=-1 +kerning first=202 second=380 amount=-1 +kerning first=315 second=8220 amount=-2 +kerning first=84 second=248 amount=-2 +kerning first=201 second=296 amount=-1 +kerning first=203 second=223 amount=-1 +kerning first=1088 second=1113 amount=-1 +kerning first=378 second=339 amount=-1 +kerning first=279 second=8220 amount=-1 +kerning first=120 second=248 amount=-1 +kerning first=354 second=198 amount=-3 +kerning first=229 second=249 amount=-1 +kerning first=88 second=289 amount=-1 +kerning first=243 second=8220 amount=-1 +kerning first=69 second=198 amount=-1 +kerning first=221 second=282 amount=-1 +kerning first=193 second=289 amount=-1 +kerning first=356 second=338 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=67 second=327 amount=-1 +kerning first=102 second=8220 amount=1 +kerning first=210 second=198 amount=-2 +kerning first=266 second=73 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=66 second=8220 amount=-2 +kerning first=1043 second=1113 amount=-2 +kerning first=365 second=237 amount=-1 +kerning first=8222 second=219 amount=-2 +kerning first=262 second=313 amount=-1 +kerning first=381 second=296 amount=-1 +kerning first=338 second=73 amount=-1 +kerning first=346 second=324 amount=-1 +kerning first=208 second=327 amount=-1 +kerning first=374 second=73 amount=-1 +kerning first=201 second=315 amount=-1 +kerning first=1039 second=1105 amount=-1 +kerning first=89 second=73 amount=-1 +kerning first=310 second=99 amount=-1 +kerning first=193 second=8249 amount=-2 +kerning first=280 second=327 amount=-1 +kerning first=221 second=237 amount=-1 +kerning first=313 second=75 amount=-1 +kerning first=229 second=8249 amount=-1 +kerning first=214 second=206 amount=-1 +kerning first=382 second=99 amount=-1 +kerning first=88 second=8249 amount=-2 +kerning first=352 second=327 amount=-1 +kerning first=198 second=379 amount=-1 +kerning first=286 second=206 amount=-1 +kerning first=200 second=310 amount=-1 +kerning first=206 second=199 amount=-1 +kerning first=101 second=187 amount=-1 +kerning first=192 second=212 amount=-1 +kerning first=221 second=209 amount=-1 +kerning first=278 second=199 amount=-1 +kerning first=68 second=83 amount=-1 +kerning first=216 second=381 amount=-1 +kerning first=87 second=212 amount=-1 +kerning first=241 second=363 amount=-1 +kerning first=1118 second=1103 amount=-2 +kerning first=288 second=381 amount=-1 +kerning first=102 second=234 amount=-1 +kerning first=8217 second=363 amount=-1 +kerning first=209 second=83 amount=-1 +kerning first=206 second=234 amount=-1 +kerning first=315 second=264 amount=-1 +kerning first=207 second=234 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=317 second=83 amount=-1 +kerning first=198 second=351 amount=-1 +kerning first=207 second=264 amount=-1 +kerning first=88 second=277 amount=-1 +kerning first=310 second=111 amount=-1 +kerning first=79 second=364 amount=-1 +kerning first=187 second=89 amount=-2 +kerning first=337 second=289 amount=-1 +kerning first=193 second=277 amount=-1 +kerning first=234 second=351 amount=-1 +kerning first=66 second=264 amount=-1 +kerning first=378 second=367 amount=-1 +kerning first=327 second=119 amount=-1 +kerning first=80 second=209 amount=-1 +kerning first=65 second=199 amount=-1 +kerning first=256 second=364 amount=-2 +kerning first=264 second=212 amount=-2 +kerning first=355 second=291 amount=-1 +kerning first=234 second=367 amount=-1 +kerning first=284 second=354 amount=-1 +kerning first=69 second=226 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=105 second=226 amount=-1 +kerning first=283 second=291 amount=-1 +kerning first=269 second=108 amount=-1 +kerning first=381 second=76 amount=-1 +kerning first=353 second=97 amount=-1 +kerning first=198 second=367 amount=-1 +kerning first=380 second=233 amount=-1 +kerning first=210 second=226 amount=-1 +kerning first=211 second=291 amount=-1 +kerning first=1071 second=1092 amount=-1 +kerning first=198 second=72 amount=-1 +kerning first=220 second=97 amount=-2 +kerning first=344 second=233 amount=-1 +kerning first=350 second=346 amount=-1 +kerning first=1063 second=1054 amount=-1 +kerning first=356 second=326 amount=-1 +kerning first=282 second=226 amount=-1 +kerning first=106 second=291 amount=-1 +kerning first=75 second=337 amount=-1 +kerning first=115 second=97 amount=-1 +kerning first=70 second=291 amount=-1 +kerning first=378 second=351 amount=-1 +kerning first=201 second=76 amount=-1 +kerning first=108 second=110 amount=-1 +kerning first=1045 second=1040 amount=-1 +kerning first=364 second=97 amount=-2 +kerning first=209 second=350 amount=-1 +kerning first=261 second=250 amount=-1 +kerning first=1024 second=1050 amount=-1 +kerning first=206 second=171 amount=-2 +kerning first=68 second=350 amount=-1 +kerning first=369 second=250 amount=-1 +kerning first=75 second=86 amount=-1 +kerning first=202 second=77 amount=-1 +kerning first=1060 second=1050 amount=-1 +kerning first=197 second=316 amount=-1 +kerning first=1113 second=1100 amount=-1 +kerning first=317 second=350 amount=-1 +kerning first=233 second=316 amount=-1 +kerning first=120 second=250 amount=-1 +kerning first=84 second=250 amount=-1 +kerning first=288 second=86 amount=-1 +kerning first=305 second=316 amount=-1 +kerning first=225 second=250 amount=-1 +kerning first=65 second=171 amount=-2 +kerning first=377 second=234 amount=-1 +kerning first=201 second=331 amount=-1 +kerning first=203 second=200 amount=-1 +kerning first=264 second=221 amount=-1 +kerning first=317 second=381 amount=-1 +kerning first=380 second=271 amount=-1 +kerning first=192 second=221 amount=-3 +kerning first=267 second=117 amount=-1 +kerning first=231 second=117 amount=-1 +kerning first=339 second=117 amount=-1 +kerning first=303 second=117 amount=-1 +kerning first=344 second=264 amount=-1 +kerning first=280 second=290 amount=-1 +kerning first=264 second=214 amount=-2 +kerning first=203 second=207 amount=-1 +kerning first=82 second=98 amount=-1 +kerning first=78 second=338 amount=-1 +kerning first=187 second=98 amount=-1 +kerning first=194 second=291 amount=-1 +kerning first=200 second=264 amount=-1 +kerning first=344 second=240 amount=-1 +kerning first=87 second=214 amount=-1 +kerning first=380 second=240 amount=-1 +kerning first=86 second=364 amount=-1 +kerning first=192 second=214 amount=-1 +kerning first=90 second=377 amount=-1 +kerning first=336 second=221 amount=-1 +kerning first=1079 second=1093 amount=-1 +kerning first=368 second=194 amount=-2 +kerning first=268 second=220 amount=-1 +kerning first=1045 second=1024 amount=-1 +kerning first=8218 second=119 amount=-2 +kerning first=76 second=201 amount=-1 +kerning first=353 second=249 amount=-1 +kerning first=377 second=304 amount=-1 +kerning first=196 second=220 amount=-2 +kerning first=99 second=275 amount=-1 +kerning first=332 second=194 amount=-2 +kerning first=187 second=330 amount=-3 +kerning first=89 second=324 amount=-1 +kerning first=317 second=90 amount=-1 +kerning first=67 second=287 amount=-1 +kerning first=207 second=227 amount=-1 +kerning first=1082 second=1077 amount=-1 +kerning first=86 second=97 amount=-2 +kerning first=284 second=317 amount=-1 +kerning first=198 second=84 amount=-1 +kerning first=1118 second=1077 amount=-1 +kerning first=102 second=227 amount=-1 +kerning first=240 second=291 amount=-1 +kerning first=103 second=287 amount=-1 +kerning first=376 second=220 amount=-1 +kerning first=66 second=227 amount=-1 +kerning first=356 second=317 amount=-1 +kerning first=1046 second=1077 amount=-1 +kerning first=204 second=291 amount=-1 +kerning first=244 second=287 amount=-1 +kerning first=287 second=311 amount=-1 +kerning first=71 second=317 amount=-1 +kerning first=304 second=213 amount=-1 +kerning first=374 second=324 amount=-1 +kerning first=118 second=337 amount=-1 +kerning first=251 second=311 amount=-1 +kerning first=268 second=213 amount=-2 +kerning first=338 second=324 amount=-1 +kerning first=381 second=71 amount=-1 +kerning first=82 second=337 amount=-1 +kerning first=316 second=287 amount=-1 +kerning first=327 second=243 amount=-1 +kerning first=376 second=213 amount=-1 +kerning first=1114 second=1088 amount=-1 +kerning first=280 second=287 amount=-1 +kerning first=241 second=253 amount=-1 +kerning first=200 second=207 amount=-1 +kerning first=212 second=317 amount=-1 +kerning first=371 second=97 amount=-1 +kerning first=351 second=347 amount=-1 +kerning first=68 second=381 amount=-1 +kerning first=230 second=324 amount=-1 +kerning first=352 second=287 amount=-1 +kerning first=288 second=77 amount=-1 +kerning first=327 second=261 amount=-1 +kerning first=68 second=90 amount=-1 +kerning first=242 second=187 amount=-1 +kerning first=315 second=303 amount=-1 +kerning first=350 second=187 amount=-1 +kerning first=201 second=71 amount=-1 +kerning first=216 second=77 amount=-1 +kerning first=266 second=324 amount=-1 +kerning first=352 second=318 amount=-1 +kerning first=225 second=8217 amount=-1 +kerning first=381 second=303 amount=-1 +kerning first=99 second=263 amount=-1 +kerning first=295 second=365 amount=-1 +kerning first=259 second=365 amount=-1 +kerning first=203 second=197 amount=-1 +kerning first=344 second=268 amount=-1 +kerning first=377 second=326 amount=-1 +kerning first=231 second=120 amount=-1 +kerning first=1050 second=1104 amount=-1 +kerning first=204 second=263 amount=-1 +kerning first=336 second=193 amount=-2 +kerning first=356 second=78 amount=-1 +kerning first=363 second=45 amount=-1 +kerning first=267 second=120 amount=-1 +kerning first=187 second=365 amount=-1 +kerning first=317 second=353 amount=-1 +kerning first=344 second=243 amount=-1 +kerning first=284 second=78 amount=-1 +kerning first=353 second=353 amount=-1 +kerning first=380 second=243 amount=-1 +kerning first=251 second=291 amount=-1 +kerning first=200 second=268 amount=-1 +kerning first=187 second=70 amount=-3 +kerning first=212 second=78 amount=-1 +kerning first=267 second=232 amount=-1 +kerning first=71 second=78 amount=-1 +kerning first=218 second=275 amount=-1 +kerning first=69 second=356 amount=-1 +kerning first=209 second=353 amount=-1 +kerning first=284 second=85 amount=-1 +kerning first=353 second=118 amount=-1 +kerning first=113 second=275 amount=-1 +kerning first=245 second=353 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=281 second=353 amount=-1 +kerning first=212 second=85 amount=-1 +kerning first=248 second=314 amount=-1 +kerning first=303 second=120 amount=-1 +kerning first=288 second=74 amount=-1 +kerning first=77 second=275 amount=-1 +kerning first=8250 second=102 amount=-1 +kerning first=339 second=120 amount=-1 +kerning first=209 second=118 amount=-1 +kerning first=375 second=120 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=367 second=365 amount=-1 +kerning first=317 second=118 amount=-1 +kerning first=104 second=353 amount=-1 +kerning first=331 second=365 amount=-1 +kerning first=281 second=118 amount=-1 +kerning first=1082 second=1108 amount=-1 +kerning first=252 second=105 amount=-1 +kerning first=303 second=380 amount=-1 +kerning first=1046 second=1108 amount=-1 +kerning first=376 second=241 amount=-1 +kerning first=8250 second=362 amount=-2 +kerning first=8218 second=122 amount=-2 +kerning first=339 second=380 amount=-1 +kerning first=81 second=8249 amount=-1 +kerning first=311 second=235 amount=-1 +kerning first=74 second=283 amount=-1 +kerning first=375 second=380 amount=-1 +kerning first=117 second=8249 amount=-1 +kerning first=325 second=353 amount=-1 +kerning first=66 second=224 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=327 second=338 amount=-1 +kerning first=268 second=241 amount=-1 +kerning first=323 second=283 amount=-1 +kerning first=295 second=98 amount=-1 +kerning first=207 second=224 amount=-1 +kerning first=111 second=318 amount=-1 +kerning first=287 second=283 amount=-1 +kerning first=259 second=98 amount=-1 +kerning first=231 second=380 amount=-1 +kerning first=367 second=98 amount=-1 +kerning first=279 second=224 amount=-1 +kerning first=1060 second=1053 amount=-1 +kerning first=344 second=8221 amount=-3 +kerning first=267 second=380 amount=-1 +kerning first=356 second=85 amount=-1 +kerning first=1024 second=1053 amount=-1 +kerning first=198 second=112 amount=-1 +kerning first=376 second=248 amount=-2 +kerning first=103 second=45 amount=-1 +kerning first=351 second=224 amount=-1 +kerning first=87 second=193 amount=-3 +kerning first=67 second=318 amount=-1 +kerning first=286 second=74 amount=-1 +kerning first=334 second=325 amount=-1 +kerning first=236 second=226 amount=-1 +kerning first=103 second=318 amount=-1 +kerning first=304 second=248 amount=-1 +kerning first=90 second=380 amount=-1 +kerning first=203 second=228 amount=-1 +kerning first=330 second=8249 amount=-2 +kerning first=264 second=193 amount=-2 +kerning first=244 second=318 amount=-1 +kerning first=366 second=8249 amount=-3 +kerning first=268 second=248 amount=-1 +kerning first=381 second=331 amount=-1 +kerning first=280 second=318 amount=-1 +kerning first=258 second=8249 amount=-2 +kerning first=220 second=101 amount=-1 +kerning first=316 second=318 amount=-1 +kerning first=256 second=101 amount=-1 +kerning first=1070 second=1038 amount=-1 +kerning first=1049 second=1072 amount=-1 +kerning first=379 second=205 amount=-1 +kerning first=1027 second=1047 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=364 second=101 amount=-1 +kerning first=313 second=66 amount=-1 +kerning first=365 second=230 amount=-1 +kerning first=315 second=255 amount=-1 +kerning first=279 second=255 amount=-1 +kerning first=1071 second=1073 amount=-1 +kerning first=199 second=205 amount=-1 +kerning first=287 second=281 amount=-1 +kerning first=243 second=255 amount=-1 +kerning first=8216 second=263 amount=-1 +kerning first=106 second=251 amount=-1 +kerning first=323 second=281 amount=-1 +kerning first=207 second=255 amount=-1 +kerning first=70 second=251 amount=-1 +kerning first=221 second=230 amount=-2 +kerning first=97 second=108 amount=-1 +kerning first=74 second=281 amount=-1 +kerning first=66 second=8217 amount=-2 +kerning first=81 second=8221 amount=-1 +kerning first=376 second=216 amount=-1 +kerning first=248 second=347 amount=-1 +kerning first=102 second=8217 amount=1 +kerning first=66 second=255 amount=-1 +kerning first=283 second=251 amount=-1 +kerning first=381 second=99 amount=-1 +kerning first=378 second=107 amount=-1 +kerning first=198 second=107 amount=-1 +kerning first=222 second=8221 amount=-1 +kerning first=196 second=216 amount=-1 +kerning first=107 second=347 amount=-1 +kerning first=258 second=8221 amount=-3 +kerning first=207 second=231 amount=-1 +kerning first=117 second=8221 amount=-2 +kerning first=268 second=216 amount=-2 +kerning first=382 second=371 amount=-1 +kerning first=234 second=107 amount=-1 +kerning first=304 second=216 amount=-1 +kerning first=102 second=231 amount=-1 +kerning first=381 second=67 amount=-1 +kerning first=115 second=106 amount=-1 +kerning first=369 second=229 amount=-1 +kerning first=211 second=282 amount=-1 +kerning first=266 second=80 amount=-1 +kerning first=87 second=217 amount=-1 +kerning first=79 second=106 amount=-1 +kerning first=82 second=333 amount=-1 +kerning first=356 second=345 amount=-1 +kerning first=216 second=346 amount=-1 +kerning first=274 second=368 amount=-1 +kerning first=201 second=67 amount=-1 +kerning first=380 second=107 amount=-1 +kerning first=302 second=257 amount=-1 +kerning first=328 second=106 amount=-1 +kerning first=310 second=368 amount=-1 +kerning first=89 second=80 amount=-1 +kerning first=118 second=333 amount=-1 +kerning first=264 second=217 amount=-1 +kerning first=75 second=346 amount=-1 +kerning first=203 second=204 amount=-1 +kerning first=288 second=346 amount=-1 +kerning first=1045 second=1049 amount=-1 +kerning first=346 second=368 amount=-1 +kerning first=207 second=338 amount=-1 +kerning first=338 second=80 amount=-1 +kerning first=233 second=307 amount=-1 +kerning first=269 second=307 amount=-1 +kerning first=1038 second=1033 amount=-3 +kerning first=374 second=80 amount=-1 +kerning first=201 second=334 amount=-1 +kerning first=88 second=284 amount=-1 +kerning first=8216 second=260 amount=-4 +kerning first=8217 second=326 amount=-1 +kerning first=256 second=369 amount=-1 +kerning first=233 second=44 amount=-2 +kerning first=198 second=79 amount=-1 +kerning first=256 second=104 amount=-1 +kerning first=364 second=369 amount=-1 +kerning first=102 second=259 amount=-1 +kerning first=66 second=259 amount=-1 +kerning first=201 second=77 amount=-1 +kerning first=115 second=369 amount=-1 +kerning first=288 second=374 amount=-1 +kerning first=198 second=344 amount=-1 +kerning first=220 second=369 amount=-1 +kerning first=350 second=192 amount=-2 +kerning first=381 second=334 amount=-1 +kerning first=216 second=374 amount=-1 +kerning first=378 second=109 amount=-1 +kerning first=351 second=227 amount=-1 +kerning first=269 second=279 amount=-1 +kerning first=120 second=229 amount=-1 +kerning first=278 second=192 amount=-1 +kerning first=1114 second=1085 amount=-1 +kerning first=83 second=194 amount=-2 +kerning first=336 second=217 amount=-1 +kerning first=1069 second=1059 amount=-1 +kerning first=279 second=227 amount=-1 +kerning first=234 second=109 amount=-1 +kerning first=84 second=229 amount=-2 +kerning first=305 second=44 amount=-1 +kerning first=1093 second=1095 amount=-1 +kerning first=269 second=44 amount=-1 +kerning first=1057 second=1095 amount=-1 +kerning first=115 second=104 amount=-1 +kerning first=193 second=284 amount=-1 +kerning first=197 second=279 amount=-1 +kerning first=187 second=65 amount=-2 +kerning first=339 second=289 amount=-1 +kerning first=97 second=371 amount=-1 +kerning first=354 second=219 amount=-1 +kerning first=218 second=379 amount=-1 +kerning first=311 second=232 amount=-1 +kerning first=282 second=219 amount=-1 +kerning first=82 second=361 amount=-1 +kerning first=84 second=257 amount=-2 +kerning first=326 second=118 amount=-1 +kerning first=120 second=257 amount=-1 +kerning first=210 second=219 amount=-1 +kerning first=187 second=361 amount=-1 +kerning first=377 second=279 amount=-1 +kerning first=295 second=361 amount=-1 +kerning first=381 second=305 amount=-1 +kerning first=82 second=210 amount=-1 +kerning first=259 second=361 amount=-1 +kerning first=80 second=202 amount=-1 +kerning first=69 second=219 amount=-1 +kerning first=353 second=121 amount=-1 +kerning first=356 second=82 amount=-1 +kerning first=196 second=244 amount=-1 +kerning first=283 second=254 amount=-1 +kerning first=75 second=374 amount=-1 +kerning first=317 second=121 amount=-1 +kerning first=221 second=202 amount=-1 +kerning first=281 second=121 amount=-1 +kerning first=268 second=244 amount=-1 +kerning first=8216 second=291 amount=-2 +kerning first=245 second=121 amount=-1 +kerning first=204 second=267 amount=-1 +kerning first=304 second=244 amount=-1 +kerning first=209 second=121 amount=-1 +kerning first=212 second=82 amount=-1 +kerning first=106 second=254 amount=-1 +kerning first=99 second=267 amount=-1 +kerning first=376 second=244 amount=-2 +kerning first=296 second=249 amount=-1 +kerning first=369 second=257 amount=-1 +kerning first=1057 second=1116 amount=-1 +kerning first=87 second=209 amount=-1 +kerning first=379 second=199 amount=-1 +kerning first=356 second=69 amount=-1 +kerning first=88 second=8217 amount=-1 +kerning first=221 second=212 amount=-1 +kerning first=284 second=69 amount=-1 +kerning first=205 second=332 amount=-1 +kerning first=264 second=209 amount=-1 +kerning first=313 second=79 amount=-1 +kerning first=212 second=69 amount=-1 +kerning first=205 second=79 amount=-1 +kerning first=121 second=316 amount=-1 +kerning first=198 second=82 amount=-1 +kerning first=71 second=69 amount=-1 +kerning first=371 second=303 amount=-1 +kerning first=379 second=192 amount=-1 +kerning first=69 second=216 amount=-1 +kerning first=266 second=76 amount=-1 +kerning first=366 second=289 amount=-2 +kerning first=337 second=8217 amount=-1 +kerning first=216 second=89 amount=-1 +kerning first=313 second=332 amount=-1 +kerning first=288 second=89 amount=-1 +kerning first=356 second=113 amount=-2 +kerning first=206 second=333 amount=-1 +kerning first=83 second=313 amount=-1 +kerning first=199 second=199 amount=-2 +kerning first=193 second=8217 amount=-3 +kerning first=199 second=192 amount=-2 +kerning first=77 second=242 amount=-1 +kerning first=313 second=72 amount=-1 +kerning first=218 second=242 amount=-1 +kerning first=86 second=82 amount=-1 +kerning first=221 second=205 amount=-1 +kerning first=89 second=336 amount=-1 +kerning first=75 second=89 amount=-1 +kerning first=203 second=226 amount=-1 +kerning first=8250 second=374 amount=-2 +kerning first=80 second=205 amount=-1 +kerning first=362 second=242 amount=-1 +kerning first=275 second=226 amount=-1 +kerning first=84 second=75 amount=-1 +kerning first=272 second=8221 amount=-1 +kerning first=72 second=119 amount=-1 +kerning first=347 second=226 amount=-1 +kerning first=307 second=45 amount=-1 +kerning first=282 second=216 amount=-1 +kerning first=374 second=76 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=219 second=326 amount=-1 +kerning first=338 second=76 amount=-1 +kerning first=255 second=326 amount=-1 +kerning first=97 second=253 amount=-1 +kerning first=236 second=8221 amount=-1 +kerning first=354 second=216 amount=-1 +kerning first=291 second=326 amount=-1 +kerning first=1064 second=1092 amount=-1 +kerning first=352 second=302 amount=-1 +kerning first=249 second=119 amount=-1 +kerning first=8216 second=267 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=203 second=219 amount=-1 +kerning first=262 second=316 amount=-1 +kerning first=87 second=202 amount=-1 +kerning first=280 second=302 amount=-1 +kerning first=321 second=119 amount=-1 +kerning first=381 second=333 amount=-1 +kerning first=336 second=209 amount=-1 +kerning first=280 second=282 amount=-1 +kerning first=350 second=230 amount=-1 +kerning first=381 second=45 amount=-1 +kerning first=336 second=202 amount=-1 +kerning first=208 second=302 amount=-1 +kerning first=1060 second=1059 amount=-1 +kerning first=264 second=202 amount=-1 +kerning first=187 second=86 amount=-2 +kerning first=67 second=302 amount=-1 +kerning first=346 second=375 amount=-1 +kerning first=310 second=375 amount=-2 +kerning first=8217 second=338 amount=-1 +kerning first=1100 second=1085 amount=-1 +kerning first=99 second=269 amount=-1 +kerning first=378 second=103 amount=-1 +kerning first=84 second=253 amount=-1 +kerning first=288 second=356 amount=-1 +kerning first=364 second=122 amount=-1 +kerning first=79 second=382 amount=-1 +kerning first=120 second=253 amount=-1 +kerning first=204 second=269 amount=-1 +kerning first=115 second=382 amount=-1 +kerning first=279 second=252 amount=-1 +kerning first=201 second=45 amount=-1 +kerning first=216 second=356 amount=-1 +kerning first=216 second=362 amount=-1 +kerning first=207 second=246 amount=-1 +kerning first=225 second=253 amount=-1 +kerning first=198 second=363 amount=-1 +kerning first=234 second=103 amount=-1 +kerning first=261 second=253 amount=-1 +kerning first=351 second=252 amount=-1 +kerning first=288 second=362 amount=-1 +kerning first=198 second=103 amount=-1 +kerning first=382 second=375 amount=-1 +kerning first=256 second=116 amount=-1 +kerning first=75 second=356 amount=-1 +kerning first=1045 second=1043 amount=-1 +kerning first=8217 second=345 amount=-1 +kerning first=115 second=122 amount=-1 +kerning first=84 second=213 amount=-1 +kerning first=75 second=362 amount=-1 +kerning first=79 second=122 amount=-1 +kerning first=364 second=382 amount=-1 +kerning first=88 second=259 amount=-1 +kerning first=378 second=363 amount=-1 +kerning first=378 second=369 amount=-1 +kerning first=1071 second=1089 amount=-1 +kerning first=198 second=369 amount=-1 +kerning first=314 second=307 amount=-1 +kerning first=220 second=382 amount=-1 +kerning first=364 second=109 amount=-1 +kerning first=97 second=375 amount=-1 +kerning first=220 second=122 amount=-1 +kerning first=234 second=369 amount=-1 +kerning first=70 second=266 amount=-1 +kerning first=115 second=109 amount=-1 +kerning first=202 second=115 amount=-1 +kerning first=75 second=355 amount=-1 +kerning first=194 second=336 amount=-1 +kerning first=220 second=109 amount=-1 +kerning first=97 second=115 amount=-1 +kerning first=356 second=256 amount=-3 +kerning first=335 second=380 amount=-1 +kerning first=302 second=336 amount=-1 +kerning first=346 second=115 amount=-1 +kerning first=338 second=336 amount=-1 +kerning first=382 second=115 amount=-1 +kerning first=1045 second=1036 amount=-1 +kerning first=374 second=336 amount=-1 +kerning first=274 second=115 amount=-1 +kerning first=208 second=296 amount=-1 +kerning first=1064 second=1086 amount=-1 +kerning first=310 second=115 amount=-1 +kerning first=333 second=253 amount=-1 +kerning first=280 second=296 amount=-1 +kerning first=369 second=253 amount=-1 +kerning first=120 second=232 amount=-1 +kerning first=202 second=108 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=352 second=296 amount=-1 +kerning first=310 second=108 amount=-1 +kerning first=274 second=108 amount=-1 +kerning first=80 second=206 amount=-1 +kerning first=382 second=108 amount=-1 +kerning first=346 second=108 amount=-1 +kerning first=198 second=370 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=67 second=251 amount=-1 +kerning first=104 second=98 amount=-1 +kerning first=356 second=75 amount=-1 +kerning first=266 second=328 amount=-1 +kerning first=352 second=315 amount=-1 +kerning first=244 second=303 amount=-1 +kerning first=330 second=290 amount=-1 +kerning first=221 second=206 amount=-1 +kerning first=230 second=328 amount=-1 +kerning first=354 second=245 amount=-2 +kerning first=284 second=75 amount=-1 +kerning first=1086 second=1113 amount=-1 +kerning first=187 second=73 amount=-3 +kerning first=76 second=200 amount=-1 +kerning first=1050 second=1113 amount=-1 +kerning first=208 second=315 amount=-1 +kerning first=75 second=83 amount=-1 +kerning first=374 second=328 amount=-1 +kerning first=264 second=196 amount=-2 +kerning first=1100 second=1107 amount=-1 +kerning first=338 second=328 amount=-1 +kerning first=280 second=315 amount=-1 +kerning first=316 second=303 amount=-1 +kerning first=258 second=290 amount=-1 +kerning first=286 second=221 amount=-1 +kerning first=1056 second=1038 amount=-1 +kerning first=336 second=196 amount=-2 +kerning first=352 second=303 amount=-1 +kerning first=317 second=211 amount=-1 +kerning first=275 second=225 amount=-1 +kerning first=216 second=83 amount=-1 +kerning first=317 second=380 amount=-1 +kerning first=311 second=225 amount=-1 +kerning first=71 second=323 amount=-1 +kerning first=87 second=196 amount=-3 +kerning first=353 second=380 amount=-1 +kerning first=347 second=225 amount=-1 +kerning first=313 second=338 amount=-1 +kerning first=203 second=80 amount=-1 +kerning first=1057 second=1117 amount=-1 +kerning first=281 second=98 amount=-1 +kerning first=1118 second=1093 amount=-1 +kerning first=284 second=323 amount=-1 +kerning first=313 second=85 amount=-1 +kerning first=67 second=303 amount=-1 +kerning first=209 second=380 amount=-1 +kerning first=353 second=98 amount=-1 +kerning first=203 second=225 amount=-1 +kerning first=356 second=323 amount=-1 +kerning first=245 second=380 amount=-1 +kerning first=317 second=98 amount=-1 +kerning first=8250 second=375 amount=-2 +kerning first=323 second=286 amount=-1 +kerning first=281 second=380 amount=-1 +kerning first=376 second=235 amount=-1 +kerning first=102 second=233 amount=-1 +kerning first=252 second=102 amount=-1 +kerning first=354 second=210 amount=-1 +kerning first=288 second=102 amount=-1 +kerning first=89 second=77 amount=-1 +kerning first=207 second=233 amount=-1 +kerning first=282 second=210 amount=-1 +kerning first=345 second=46 amount=-2 +kerning first=338 second=77 amount=-1 +kerning first=1038 second=1040 amount=-3 +kerning first=82 second=71 amount=-1 +kerning first=221 second=211 amount=-1 +kerning first=74 second=286 amount=-1 +kerning first=323 second=103 amount=-1 +kerning first=82 second=352 amount=-1 +kerning first=266 second=77 amount=-1 +kerning first=268 second=345 amount=-1 +kerning first=193 second=45 amount=-2 +kerning first=201 second=46 amount=-1 +kerning first=69 second=210 amount=-1 +kerning first=335 second=112 amount=-1 +kerning first=214 second=221 amount=-1 +kerning first=207 second=252 amount=-1 +kerning first=263 second=112 amount=-1 +kerning first=196 second=235 amount=-1 +kerning first=115 second=110 amount=-1 +kerning first=89 second=328 amount=-1 +kerning first=268 second=235 amount=-1 +kerning first=122 second=112 amount=-1 +kerning first=216 second=350 amount=-1 +kerning first=220 second=110 amount=-1 +kerning first=304 second=235 amount=-1 +kerning first=86 second=112 amount=-1 +kerning first=80 second=194 amount=-2 +kerning first=66 second=252 amount=-1 +kerning first=8217 second=332 amount=-1 +kerning first=113 second=250 amount=-1 +kerning first=209 second=378 amount=-1 +kerning first=187 second=353 amount=-1 +kerning first=364 second=110 amount=-1 +kerning first=204 second=275 amount=-1 +kerning first=223 second=353 amount=-1 +kerning first=321 second=171 amount=-1 +kerning first=8250 second=120 amount=-2 +kerning first=122 second=113 amount=-1 +kerning first=218 second=250 amount=-1 +kerning first=281 second=378 amount=-1 +kerning first=259 second=353 amount=-1 +kerning first=86 second=366 amount=-1 +kerning first=344 second=262 amount=-1 +kerning first=86 second=113 amount=-2 +kerning first=288 second=350 amount=-1 +kerning first=245 second=378 amount=-1 +kerning first=327 second=352 amount=-1 +kerning first=371 second=113 amount=-1 +kerning first=70 second=260 amount=-2 +kerning first=371 second=100 amount=-1 +kerning first=201 second=73 amount=-1 +kerning first=8250 second=108 amount=-1 +kerning first=108 second=171 amount=-1 +kerning first=353 second=365 amount=-1 +kerning first=203 second=315 amount=-1 +kerning first=317 second=365 amount=-1 +kerning first=82 second=353 amount=-1 +kerning first=213 second=171 amount=-1 +kerning first=281 second=365 amount=-1 +kerning first=263 second=113 amount=-1 +kerning first=352 second=237 amount=-1 +kerning first=68 second=378 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=249 second=171 amount=-1 +kerning first=204 second=288 amount=-1 +kerning first=211 second=260 amount=-2 +kerning first=263 second=100 amount=-1 +kerning first=313 second=87 amount=-1 +kerning first=200 second=249 amount=-1 +kerning first=1107 second=1076 amount=-1 +kerning first=356 second=114 amount=-1 +kerning first=298 second=350 amount=-1 +kerning first=236 second=249 amount=-1 +kerning first=1060 second=1065 amount=-1 +kerning first=353 second=378 amount=-1 +kerning first=303 second=271 amount=-1 +kerning first=86 second=100 amount=-2 +kerning first=313 second=354 amount=-1 +kerning first=317 second=378 amount=-1 +kerning first=122 second=100 amount=-1 +kerning first=344 second=249 amount=-1 +kerning first=200 second=262 amount=-1 +kerning first=1100 second=1091 amount=-1 +kerning first=45 second=289 amount=-1 +kerning first=1046 second=1105 amount=-1 +kerning first=202 second=377 amount=-1 +kerning first=268 second=223 amount=-1 +kerning first=81 second=289 amount=-1 +kerning first=362 second=248 amount=-1 +kerning first=1082 second=1105 amount=-1 +kerning first=1053 second=1077 amount=-1 +kerning first=353 second=114 amount=-1 +kerning first=376 second=223 amount=-1 +kerning first=217 second=198 amount=-2 +kerning first=117 second=289 amount=-1 +kerning first=205 second=339 amount=-1 +kerning first=68 second=380 amount=-1 +kerning first=1024 second=1065 amount=-1 +kerning first=8250 second=121 amount=-2 +kerning first=222 second=289 amount=-1 +kerning first=346 second=377 amount=-1 +kerning first=258 second=289 amount=-1 +kerning first=344 second=8220 amount=-3 +kerning first=218 second=248 amount=-1 +kerning first=81 second=274 amount=-1 +kerning first=362 second=263 amount=-1 +kerning first=201 second=327 amount=-1 +kerning first=77 second=248 amount=-1 +kerning first=45 second=274 amount=-3 +kerning first=274 second=377 amount=-1 +kerning first=76 second=198 amount=-1 +kerning first=330 second=289 amount=-1 +kerning first=272 second=8220 amount=-1 +kerning first=113 second=248 amount=-1 +kerning first=113 second=263 amount=-1 +kerning first=1075 second=1103 amount=-1 +kerning first=236 second=8220 amount=-1 +kerning first=74 second=287 amount=-1 +kerning first=209 second=365 amount=-1 +kerning first=353 second=110 amount=-1 +kerning first=86 second=379 amount=-1 +kerning first=218 second=263 amount=-1 +kerning first=1042 second=1079 amount=-1 +kerning first=222 second=274 amount=-1 +kerning first=104 second=365 amount=-1 +kerning first=1078 second=1079 amount=-1 +kerning first=381 second=327 amount=-1 +kerning first=67 second=315 amount=-1 +kerning first=110 second=287 amount=-1 +kerning first=212 second=75 amount=-1 +kerning first=209 second=99 amount=-1 +kerning first=331 second=353 amount=-1 +kerning first=251 second=287 amount=-1 +kerning first=367 second=353 amount=-1 +kerning first=8250 second=204 amount=-3 +kerning first=323 second=287 amount=-1 +kerning first=77 second=263 amount=-1 +kerning first=71 second=75 amount=-1 +kerning first=250 second=237 amount=-1 +kerning first=287 second=287 amount=-1 +kerning first=338 second=334 amount=-1 +kerning first=315 second=237 amount=-1 +kerning first=302 second=334 amount=-1 +kerning first=279 second=237 amount=-1 +kerning first=122 second=104 amount=-1 +kerning first=235 second=187 amount=-1 +kerning first=262 second=44 amount=-1 +kerning first=258 second=284 amount=-1 +kerning first=243 second=237 amount=-1 +kerning first=262 second=223 amount=-1 +kerning first=69 second=197 amount=-1 +kerning first=374 second=334 amount=-1 +kerning first=84 second=244 amount=-2 +kerning first=198 second=193 amount=-1 +kerning first=334 second=44 amount=-1 +kerning first=120 second=244 amount=-1 +kerning first=121 second=44 amount=-3 +kerning first=381 second=324 amount=-1 +kerning first=85 second=44 amount=-3 +kerning first=210 second=197 amount=-2 +kerning first=73 second=234 amount=-1 +kerning first=66 second=237 amount=-1 +kerning first=263 second=104 amount=-1 +kerning first=226 second=44 amount=-1 +kerning first=198 second=354 amount=-1 +kerning first=282 second=197 amount=-1 +kerning first=217 second=194 amount=-2 +kerning first=258 second=277 amount=-1 +kerning first=354 second=197 amount=-3 +kerning first=366 second=277 amount=-1 +kerning first=209 second=111 amount=-1 +kerning first=1045 second=1034 amount=-1 +kerning first=330 second=277 amount=-1 +kerning first=100 second=351 amount=-1 +kerning first=73 second=227 amount=-1 +kerning first=194 second=334 amount=-1 +kerning first=366 second=284 amount=-1 +kerning first=187 second=74 amount=-2 +kerning first=1093 second=1104 amount=-1 +kerning first=89 second=331 amount=-1 +kerning first=1049 second=1054 amount=-1 +kerning first=76 second=194 amount=-1 +kerning first=1057 second=1104 amount=-1 +kerning first=266 second=334 amount=-2 +kerning first=286 second=227 amount=-1 +kerning first=250 second=227 amount=-1 +kerning first=330 second=284 amount=-1 +kerning first=198 second=364 amount=-1 +kerning first=255 second=314 amount=-1 +kerning first=193 second=264 amount=-1 +kerning first=323 second=8249 amount=-2 +kerning first=89 second=327 amount=-1 +kerning first=382 second=111 amount=-1 +kerning first=354 second=248 amount=-2 +kerning first=371 second=367 amount=-1 +kerning first=88 second=264 amount=-1 +kerning first=263 second=367 amount=-1 +kerning first=288 second=361 amount=-1 +kerning first=251 second=8249 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=291 second=314 amount=-1 +kerning first=362 second=257 amount=-2 +kerning first=252 second=361 amount=-1 +kerning first=287 second=8249 amount=-1 +kerning first=352 second=102 amount=-1 +kerning first=241 second=351 amount=-1 +kerning first=304 second=378 amount=-1 +kerning first=266 second=327 amount=-1 +kerning first=205 second=351 amount=-1 +kerning first=363 second=314 amount=-1 +kerning first=290 second=257 amount=-1 +kerning first=227 second=367 amount=-1 +kerning first=324 second=361 amount=-1 +kerning first=202 second=315 amount=-1 +kerning first=346 second=114 amount=-1 +kerning first=313 second=351 amount=-1 +kerning first=86 second=367 amount=-1 +kerning first=326 second=254 amount=-1 +kerning first=74 second=8249 amount=-2 +kerning first=338 second=327 amount=-1 +kerning first=277 second=351 amount=-1 +kerning first=73 second=224 amount=-1 +kerning first=122 second=367 amount=-1 +kerning first=110 second=8249 amount=-1 +kerning first=374 second=327 amount=-1 +kerning first=1056 second=1051 amount=-1 +kerning first=317 second=374 amount=-1 +kerning first=214 second=224 amount=-1 +kerning first=274 second=117 amount=-1 +kerning first=344 second=261 amount=-1 +kerning first=382 second=117 amount=-1 +kerning first=380 second=261 amount=-1 +kerning first=346 second=117 amount=-1 +kerning first=371 second=104 amount=-1 +kerning first=72 second=171 amount=-2 +kerning first=1058 second=1114 amount=-1 +kerning first=290 second=250 amount=-1 +kerning first=346 second=121 amount=-1 +kerning first=1049 second=1057 amount=-1 +kerning first=200 second=261 amount=-1 +kerning first=313 second=344 amount=-1 +kerning first=310 second=121 amount=-2 +kerning first=236 second=261 amount=-1 +kerning first=8217 second=339 amount=-2 +kerning first=362 second=250 amount=-1 +kerning first=86 second=101 amount=-2 +kerning first=351 second=237 amount=-1 +kerning first=272 second=261 amount=-1 +kerning first=326 second=250 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=1045 second=1031 amount=-1 +kerning first=122 second=101 amount=-1 +kerning first=378 second=97 amount=-1 +kerning first=338 second=331 amount=-1 +kerning first=302 second=337 amount=-1 +kerning first=8217 second=79 amount=-1 +kerning first=230 second=331 amount=-1 +kerning first=266 second=337 amount=-1 +kerning first=1057 second=1107 amount=-1 +kerning first=263 second=101 amount=-1 +kerning first=1056 second=1041 amount=-1 +kerning first=266 second=331 amount=-1 +kerning first=210 second=200 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=323 second=290 amount=-1 +kerning first=371 second=101 amount=-1 +kerning first=202 second=117 amount=-1 +kerning first=69 second=200 amount=-1 +kerning first=374 second=337 amount=-2 +kerning first=374 second=330 amount=-1 +kerning first=1042 second=1067 amount=-1 +kerning first=252 second=98 amount=-1 +kerning first=69 second=207 amount=-1 +kerning first=113 second=251 amount=-1 +kerning first=324 second=98 amount=-1 +kerning first=290 second=323 amount=-1 +kerning first=77 second=251 amount=-1 +kerning first=207 second=240 amount=-1 +kerning first=218 second=251 amount=-1 +kerning first=221 second=214 amount=-1 +kerning first=75 second=98 amount=-1 +kerning first=89 second=8249 amount=-3 +kerning first=8216 second=279 amount=-1 +kerning first=102 second=240 amount=-1 +kerning first=382 second=380 amount=-1 +kerning first=79 second=194 amount=-2 +kerning first=290 second=251 amount=-1 +kerning first=282 second=201 amount=-1 +kerning first=103 second=311 amount=-1 +kerning first=362 second=251 amount=-1 +kerning first=354 second=207 amount=-1 +kerning first=1045 second=1030 amount=-1 +kerning first=89 second=71 amount=-1 +kerning first=67 second=311 amount=-1 +kerning first=326 second=251 amount=-1 +kerning first=216 second=90 amount=-1 +kerning first=224 second=289 amount=-1 +kerning first=194 second=71 amount=-1 +kerning first=377 second=298 amount=-1 +kerning first=288 second=90 amount=-1 +kerning first=334 second=304 amount=-1 +kerning first=210 second=207 amount=-1 +kerning first=69 second=201 amount=-1 +kerning first=266 second=330 amount=-1 +kerning first=203 second=220 amount=-1 +kerning first=377 second=291 amount=-2 +kerning first=282 second=207 amount=-1 +kerning first=68 second=368 amount=-1 +kerning first=354 second=200 amount=-1 +kerning first=8216 second=273 amount=-1 +kerning first=305 second=291 amount=-1 +kerning first=80 second=221 amount=-1 +kerning first=317 second=368 amount=-1 +kerning first=269 second=291 amount=-1 +kerning first=201 second=324 amount=-1 +kerning first=282 second=200 amount=-1 +kerning first=352 second=311 amount=-1 +kerning first=356 second=116 amount=-1 +kerning first=233 second=291 amount=-1 +kerning first=102 second=382 amount=-1 +kerning first=202 second=381 amount=-1 +kerning first=272 second=364 amount=-1 +kerning first=197 second=291 amount=-1 +kerning first=203 second=213 amount=-1 +kerning first=45 second=278 amount=-3 +kerning first=234 second=97 amount=-1 +kerning first=1043 second=1060 amount=-1 +kerning first=280 second=311 amount=-1 +kerning first=194 second=337 amount=-1 +kerning first=274 second=381 amount=-1 +kerning first=266 second=71 amount=-2 +kerning first=202 second=212 amount=-1 +kerning first=244 second=311 amount=-1 +kerning first=379 second=187 amount=-1 +kerning first=374 second=71 amount=-1 +kerning first=313 second=84 amount=-1 +kerning first=89 second=337 amount=-2 +kerning first=346 second=381 amount=-1 +kerning first=338 second=71 amount=-1 +kerning first=198 second=97 amount=-1 +kerning first=69 second=203 amount=-1 +kerning first=222 second=278 amount=-1 +kerning first=245 second=375 amount=-1 +kerning first=218 second=253 amount=-1 +kerning first=209 second=375 amount=-1 +kerning first=8250 second=117 amount=-1 +kerning first=199 second=193 amount=-2 +kerning first=254 second=253 amount=-1 +kerning first=221 second=218 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=104 second=375 amount=-1 +kerning first=207 second=243 amount=-1 +kerning first=89 second=70 amount=-1 +kerning first=326 second=253 amount=-1 +kerning first=371 second=103 amount=-1 +kerning first=8216 second=275 amount=-1 +kerning first=193 second=268 amount=-1 +kerning first=353 second=375 amount=-1 +kerning first=335 second=103 amount=-1 +kerning first=313 second=78 amount=-1 +kerning first=317 second=375 amount=-1 +kerning first=67 second=45 amount=-2 +kerning first=267 second=103 amount=-1 +kerning first=1049 second=1060 amount=-1 +kerning first=379 second=193 amount=-1 +kerning first=201 second=311 amount=-1 +kerning first=281 second=375 amount=-1 +kerning first=1100 second=1095 amount=-1 +kerning first=266 second=70 amount=-1 +kerning first=346 second=120 amount=-1 +kerning first=1064 second=1095 amount=-1 +kerning first=382 second=120 amount=-1 +kerning first=338 second=68 amount=-1 +kerning first=1056 second=1045 amount=-1 +kerning first=354 second=203 amount=-1 +kerning first=374 second=68 amount=-1 +kerning first=88 second=268 amount=-1 +kerning first=346 second=118 amount=-1 +kerning first=334 second=310 amount=-1 +kerning first=282 second=203 amount=-1 +kerning first=310 second=118 amount=-1 +kerning first=202 second=120 amount=-1 +kerning first=354 second=201 amount=-1 +kerning first=262 second=310 amount=-1 +kerning first=338 second=70 amount=-1 +kerning first=77 second=253 amount=-1 +kerning first=210 second=203 amount=-1 +kerning first=382 second=118 amount=-1 +kerning first=274 second=120 amount=-1 +kerning first=374 second=70 amount=-1 +kerning first=113 second=253 amount=-1 +kerning first=72 second=375 amount=-1 +kerning first=202 second=118 amount=-1 +kerning first=353 second=105 amount=-1 +kerning first=120 second=245 amount=-1 +kerning first=353 second=108 amount=-1 +kerning first=45 second=280 amount=-3 +kerning first=211 second=270 amount=-1 +kerning first=84 second=245 amount=-2 +kerning first=8250 second=377 amount=-2 +kerning first=274 second=118 amount=-1 +kerning first=81 second=280 amount=-1 +kerning first=103 second=305 amount=-1 +kerning first=281 second=105 amount=-1 +kerning first=67 second=305 amount=-1 +kerning first=317 second=105 amount=-1 +kerning first=202 second=73 amount=-1 +kerning first=266 second=65 amount=-2 +kerning first=222 second=280 amount=-1 +kerning first=1039 second=1108 amount=-1 +kerning first=245 second=105 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=338 second=65 amount=-1 +kerning first=65 second=108 amount=-1 +kerning first=1056 second=1048 amount=-1 +kerning first=200 second=204 amount=-1 +kerning first=201 second=318 amount=-1 +kerning first=366 second=283 amount=-1 +kerning first=352 second=305 amount=-1 +kerning first=330 second=283 amount=-1 +kerning first=316 second=305 amount=-1 +kerning first=376 second=228 amount=-2 +kerning first=264 second=334 amount=-2 +kerning first=104 second=108 amount=-1 +kerning first=356 second=335 amount=-2 +kerning first=258 second=283 amount=-1 +kerning first=1042 second=1070 amount=-1 +kerning first=245 second=108 amount=-1 +kerning first=84 second=241 amount=-1 +kerning first=304 second=228 amount=-1 +kerning first=107 second=335 amount=-1 +kerning first=268 second=228 amount=-1 +kerning first=317 second=108 amount=-1 +kerning first=374 second=331 amount=-1 +kerning first=232 second=228 amount=-1 +kerning first=281 second=108 amount=-1 +kerning first=200 second=256 amount=-1 +kerning first=258 second=281 amount=-1 +kerning first=284 second=66 amount=-1 +kerning first=122 second=107 amount=-1 +kerning first=236 second=8249 amount=-1 +kerning first=100 second=347 amount=-1 +kerning first=263 second=107 amount=-1 +kerning first=73 second=231 amount=-1 +kerning first=330 second=281 amount=-1 +kerning first=212 second=66 amount=-1 +kerning first=366 second=281 amount=-1 +kerning first=336 second=205 amount=-1 +kerning first=380 second=255 amount=-1 +kerning first=272 second=256 amount=-2 +kerning first=344 second=255 amount=-1 +kerning first=356 second=66 amount=-1 +kerning first=233 second=8250 amount=-1 +kerning first=1100 second=1098 amount=-1 +kerning first=281 second=371 amount=-1 +kerning first=77 second=257 amount=-1 +kerning first=203 second=216 amount=-1 +kerning first=194 second=45 amount=-2 +kerning first=205 second=81 amount=-1 +kerning first=113 second=257 amount=-1 +kerning first=236 second=255 amount=-1 +kerning first=194 second=67 amount=-1 +kerning first=313 second=81 amount=-1 +kerning first=353 second=371 amount=-1 +kerning first=264 second=205 amount=-1 +kerning first=89 second=67 amount=-1 +kerning first=335 second=107 amount=-1 +kerning first=377 second=8250 amount=-1 +kerning first=356 second=332 amount=-1 +kerning first=104 second=371 amount=-1 +kerning first=313 second=347 amount=-1 +kerning first=8250 second=115 amount=-1 +kerning first=277 second=347 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=241 second=347 amount=-1 +kerning first=290 second=221 amount=-1 +kerning first=371 second=107 amount=-1 +kerning first=272 second=259 amount=-1 +kerning first=87 second=205 amount=-1 +kerning first=205 second=347 amount=-1 +kerning first=89 second=68 amount=-1 +kerning first=89 second=333 amount=-2 +kerning first=282 second=204 amount=-1 +kerning first=304 second=229 amount=-1 +kerning first=120 second=242 amount=-1 +kerning first=194 second=333 amount=-1 +kerning first=221 second=217 amount=-1 +kerning first=232 second=229 amount=-1 +kerning first=313 second=201 amount=-1 +kerning first=122 second=246 amount=-1 +kerning first=268 second=229 amount=-1 +kerning first=187 second=80 amount=-3 +kerning first=374 second=67 amount=-1 +kerning first=122 second=106 amount=-1 +kerning first=338 second=67 amount=-1 +kerning first=8250 second=380 amount=-3 +kerning first=376 second=229 amount=-2 +kerning first=266 second=67 amount=-2 +kerning first=250 second=230 amount=-1 +kerning first=121 second=307 amount=-1 +kerning first=286 second=230 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=374 second=333 amount=-2 +kerning first=321 second=334 amount=-1 +kerning first=187 second=346 amount=-2 +kerning first=335 second=106 amount=-1 +kerning first=102 second=243 amount=-1 +kerning first=227 second=106 amount=-1 +kerning first=214 second=230 amount=-1 +kerning first=220 second=119 amount=-1 +kerning first=82 second=346 amount=-1 +kerning first=263 second=106 amount=-1 +kerning first=73 second=230 amount=-1 +kerning first=256 second=119 amount=-2 +kerning first=266 second=333 amount=-1 +kerning first=69 second=204 amount=-1 +kerning first=202 second=314 amount=-1 +kerning first=328 second=119 amount=-1 +kerning first=266 second=100 amount=-1 +kerning first=210 second=204 amount=-1 +kerning first=291 second=328 amount=-1 +kerning first=371 second=106 amount=1 +kerning first=8250 second=114 amount=-1 +kerning first=364 second=119 amount=-1 +kerning first=302 second=333 amount=-1 +kerning first=288 second=317 amount=-1 +kerning first=323 second=275 amount=-1 +kerning first=121 second=230 amount=-2 +kerning first=222 second=74 amount=-1 +kerning first=1045 second=1053 amount=-1 +kerning first=221 second=100 amount=-2 +kerning first=107 second=353 amount=-1 +kerning first=8216 second=324 amount=-1 +kerning first=287 second=275 amount=-1 +kerning first=85 second=230 amount=-2 +kerning first=86 second=121 amount=-1 +kerning first=366 second=74 amount=-1 +kerning first=74 second=275 amount=-1 +kerning first=90 second=81 amount=-1 +kerning first=80 second=100 amount=-1 +kerning first=66 second=256 amount=-3 +kerning first=315 second=256 amount=-1 +kerning first=259 second=45 amount=-1 +kerning first=200 second=211 amount=-1 +kerning first=370 second=230 amount=-2 +kerning first=253 second=223 amount=-1 +kerning first=356 second=339 amount=-2 +kerning first=282 second=328 amount=-1 +kerning first=217 second=223 amount=-1 +kerning first=75 second=249 amount=-1 +kerning first=298 second=230 amount=-1 +kerning first=206 second=268 amount=-1 +kerning first=334 second=230 amount=-1 +kerning first=324 second=249 amount=-1 +kerning first=344 second=211 amount=-1 +kerning first=8216 second=269 amount=-1 +kerning first=76 second=223 amount=-1 +kerning first=278 second=268 amount=-1 +kerning first=262 second=230 amount=-1 +kerning first=86 second=204 amount=-1 +kerning first=252 second=249 amount=-1 +kerning first=86 second=218 amount=-1 +kerning first=70 second=365 amount=-1 +kerning first=107 second=339 amount=-1 +kerning first=366 second=334 amount=-1 +kerning first=251 second=289 amount=-1 +kerning first=210 second=192 amount=-2 +kerning first=85 second=244 amount=-1 +kerning first=1045 second=1039 amount=-1 +kerning first=287 second=289 amount=-1 +kerning first=1079 second=1091 amount=-1 +kerning first=121 second=244 amount=-1 +kerning first=65 second=268 amount=-1 +kerning first=323 second=289 amount=-1 +kerning first=289 second=237 amount=-1 +kerning first=90 second=313 amount=-1 +kerning first=1071 second=1086 amount=-1 +kerning first=253 second=237 amount=-1 +kerning first=69 second=192 amount=-1 +kerning first=8220 second=366 amount=-1 +kerning first=217 second=237 amount=-1 +kerning first=350 second=282 amount=-1 +kerning first=262 second=244 amount=-1 +kerning first=8218 second=226 amount=-1 +kerning first=298 second=244 amount=-1 +kerning first=112 second=237 amount=-1 +kerning first=71 second=65 amount=-1 +kerning first=278 second=282 amount=-1 +kerning first=76 second=237 amount=-1 +kerning first=75 second=107 amount=-1 +kerning first=84 second=8249 amount=-3 +kerning first=75 second=263 amount=-1 +kerning first=8217 second=252 amount=-1 +kerning first=99 second=244 amount=-1 +kerning first=200 second=225 amount=-1 +kerning first=283 second=365 amount=-1 +kerning first=315 second=270 amount=-1 +kerning first=1053 second=1072 amount=-1 +kerning first=1116 second=1079 amount=-1 +kerning first=248 second=353 amount=-1 +kerning first=278 second=296 amount=-1 +kerning first=221 second=346 amount=-2 +kerning first=66 second=270 amount=-2 +kerning first=268 second=315 amount=-1 +kerning first=74 second=289 amount=-1 +kerning first=217 second=251 amount=-1 +kerning first=330 second=334 amount=-1 +kerning first=110 second=289 amount=-1 +kerning first=90 second=327 amount=-1 +kerning first=350 second=296 amount=-1 +kerning first=106 second=365 amount=-1 +kerning first=87 second=206 amount=-1 +kerning first=289 second=251 amount=-1 +kerning first=334 second=202 amount=-1 +kerning first=248 second=121 amount=-1 +kerning first=106 second=351 amount=-1 +kerning first=86 second=232 amount=-1 +kerning first=262 second=202 amount=-1 +kerning first=278 second=254 amount=-1 +kerning first=376 second=69 amount=-1 +kerning first=325 second=251 amount=-1 +kerning first=80 second=374 amount=-1 +kerning first=314 second=254 amount=-1 +kerning first=264 second=206 amount=-1 +kerning first=65 second=254 amount=-1 +kerning first=76 second=209 amount=-1 +kerning first=336 second=206 amount=-1 +kerning first=1060 second=1103 amount=-1 +kerning first=71 second=381 amount=-1 +kerning first=101 second=254 amount=-1 +kerning first=75 second=277 amount=-1 +kerning first=70 second=351 amount=-1 +kerning first=1078 second=1077 amount=-1 +kerning first=1024 second=1103 amount=-1 +kerning first=268 second=69 amount=-1 +kerning first=364 second=214 amount=-1 +kerning first=1043 second=1119 amount=-1 +kerning first=201 second=199 amount=-1 +kerning first=370 second=244 amount=-1 +kerning first=212 second=381 amount=-1 +kerning first=284 second=367 amount=-1 +kerning first=356 second=79 amount=-1 +kerning first=282 second=117 amount=-1 +kerning first=284 second=381 amount=-1 +kerning first=313 second=76 amount=-1 +kerning first=8249 second=356 amount=-2 +kerning first=221 second=72 amount=-1 +kerning first=8222 second=363 amount=-1 +kerning first=71 second=367 amount=-1 +kerning first=221 second=114 amount=-1 +kerning first=354 second=117 amount=-1 +kerning first=268 second=83 amount=-1 +kerning first=283 second=351 amount=-1 +kerning first=381 second=199 amount=-1 +kerning first=205 second=336 amount=-1 +kerning first=356 second=121 amount=-1 +kerning first=304 second=83 amount=-1 +kerning first=8222 second=103 amount=-1 +kerning first=75 second=291 amount=-1 +kerning first=262 second=216 amount=-2 +kerning first=376 second=83 amount=-2 +kerning first=314 second=240 amount=-1 +kerning first=298 second=216 amount=-1 +kerning first=206 second=240 amount=-1 +kerning first=370 second=216 amount=-1 +kerning first=201 second=171 amount=-1 +kerning first=85 second=216 amount=-1 +kerning first=69 second=117 amount=-1 +kerning first=251 second=261 amount=-1 +kerning first=287 second=261 amount=-1 +kerning first=380 second=382 amount=-1 +kerning first=8222 second=89 amount=-3 +kerning first=323 second=261 amount=-1 +kerning first=248 second=107 amount=-1 +kerning first=1045 second=1095 amount=-1 +kerning first=381 second=171 amount=-1 +kerning first=74 second=267 amount=-1 +kerning first=220 second=229 amount=-2 +kerning first=80 second=86 amount=-1 +kerning first=252 second=307 amount=-1 +kerning first=350 second=254 amount=-1 +kerning first=65 second=240 amount=-1 +kerning first=345 second=171 amount=-1 +kerning first=187 second=350 amount=-2 +kerning first=346 second=201 amount=-1 +kerning first=277 second=252 amount=-1 +kerning first=313 second=252 amount=-1 +kerning first=82 second=350 amount=-1 +kerning first=213 second=221 amount=-1 +kerning first=274 second=201 amount=-1 +kerning first=1056 second=1050 amount=-1 +kerning first=8222 second=377 amount=-1 +kerning first=216 second=207 amount=-1 +kerning first=371 second=246 amount=-1 +kerning first=202 second=201 amount=-1 +kerning first=8218 second=254 amount=-1 +kerning first=100 second=252 amount=-1 +kerning first=381 second=227 amount=-1 +kerning first=365 second=44 amount=-1 +kerning first=236 second=378 amount=-1 +kerning first=205 second=252 amount=-1 +kerning first=263 second=246 amount=-1 +kerning first=1059 second=1101 amount=-1 +kerning first=1091 second=1076 amount=-2 +kerning first=241 second=252 amount=-1 +kerning first=267 second=271 amount=-1 +kerning first=86 second=260 amount=-3 +kerning first=200 second=382 amount=-1 +kerning first=101 second=226 amount=-1 +kerning first=75 second=45 amount=-2 +kerning first=201 second=356 amount=-1 +kerning first=236 second=382 amount=-1 +kerning first=290 second=192 amount=-1 +kerning first=377 second=317 amount=-1 +kerning first=272 second=382 amount=-1 +kerning first=288 second=291 amount=-1 +kerning first=206 second=226 amount=-1 +kerning first=375 second=271 amount=-1 +kerning first=210 second=103 amount=-1 +kerning first=252 second=291 amount=-1 +kerning first=288 second=45 amount=-1 +kerning first=216 second=291 amount=-1 +kerning first=70 second=337 amount=-1 +kerning first=278 second=226 amount=-1 +kerning first=252 second=45 amount=-1 +kerning first=288 second=207 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=314 second=226 amount=-1 +kerning first=69 second=103 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=350 second=226 amount=-1 +kerning first=324 second=45 amount=-1 +kerning first=382 second=365 amount=-1 +kerning first=216 second=193 amount=-2 +kerning first=313 second=336 amount=-1 +kerning first=245 second=118 amount=-1 +kerning first=1098 second=1103 amount=-1 +kerning first=267 second=109 amount=-1 +kerning first=210 second=89 amount=-1 +kerning first=375 second=109 amount=-1 +kerning first=256 second=84 amount=-3 +kerning first=381 second=213 amount=-1 +kerning first=339 second=109 amount=-1 +kerning first=227 second=115 amount=-1 +kerning first=8222 second=117 amount=-1 +kerning first=101 second=8250 amount=-1 +kerning first=90 second=109 amount=-1 +kerning first=86 second=115 amount=-2 +kerning first=278 second=212 amount=-1 +kerning first=8216 second=194 amount=-4 +kerning first=122 second=115 amount=-1 +kerning first=187 second=90 amount=-2 +kerning first=346 second=187 amount=-1 +kerning first=257 second=44 amount=-1 +kerning first=335 second=115 amount=-1 +kerning first=223 second=104 amount=-1 +kerning first=278 second=78 amount=-1 +kerning first=221 second=44 amount=-3 +kerning first=282 second=364 amount=-1 +kerning first=371 second=115 amount=-1 +kerning first=187 second=104 amount=-1 +kerning first=338 second=199 amount=-1 +kerning first=263 second=115 amount=-1 +kerning first=118 second=104 amount=-1 +kerning first=377 second=303 amount=-1 +kerning first=371 second=232 amount=-1 +kerning first=80 second=44 amount=-2 +kerning first=201 second=213 amount=-1 +kerning first=282 second=89 amount=-1 +kerning first=367 second=104 amount=-1 +kerning first=122 second=232 amount=-1 +kerning first=263 second=232 amount=-1 +kerning first=1027 second=1085 amount=-1 +kerning first=266 second=325 amount=-1 +kerning first=256 second=98 amount=-1 +kerning first=369 second=8249 amount=-1 +kerning first=216 second=73 amount=-1 +kerning first=367 second=118 amount=-1 +kerning first=338 second=325 amount=-1 +kerning first=328 second=98 amount=-1 +kerning first=288 second=73 amount=-1 +kerning first=8222 second=307 amount=-1 +kerning first=374 second=325 amount=-1 +kerning first=69 second=75 amount=-1 +kerning first=269 second=303 amount=-1 +kerning first=259 second=118 amount=-1 +kerning first=365 second=252 amount=-1 +kerning first=354 second=75 amount=-1 +kerning first=75 second=235 amount=-1 +kerning first=223 second=118 amount=-1 +kerning first=307 second=120 amount=-1 +kerning first=219 second=67 amount=-1 +kerning first=89 second=283 amount=-2 +kerning first=366 second=216 amount=-1 +kerning first=363 second=250 amount=-1 +kerning first=313 second=280 amount=-1 +kerning first=120 second=8249 amount=-2 +kerning first=282 second=75 amount=-1 +kerning first=233 second=303 amount=-1 +kerning first=115 second=98 amount=-1 +kerning first=295 second=118 amount=-1 +kerning first=201 second=328 amount=-1 +kerning first=368 second=347 amount=-1 +kerning first=82 second=118 amount=-1 +kerning first=284 second=196 amount=-1 +kerning first=266 second=283 amount=-1 +kerning first=187 second=118 amount=-2 +kerning first=381 second=328 amount=-1 +kerning first=1059 second=1073 amount=-2 +kerning first=1091 second=1104 amount=-1 +kerning first=1070 second=1070 amount=-1 +kerning first=356 second=196 amount=-3 +kerning first=202 second=45 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=194 second=283 amount=-1 +kerning first=1055 second=1104 amount=-1 +kerning first=201 second=370 amount=-1 +kerning first=89 second=325 amount=-1 +kerning first=369 second=311 amount=-1 +kerning first=71 second=196 amount=-1 +kerning first=381 second=241 amount=-1 +kerning first=374 second=283 amount=-2 +kerning first=103 second=314 amount=-1 +kerning first=205 second=266 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=75 second=87 amount=-1 +kerning first=370 second=286 amount=-1 +kerning first=338 second=311 amount=-1 +kerning first=222 second=362 amount=-1 +kerning first=1070 second=1042 amount=-1 +kerning first=258 second=362 amount=-2 +kerning first=298 second=286 amount=-1 +kerning first=1092 second=1095 amount=-1 +kerning first=356 second=210 amount=-1 +kerning first=1036 second=1059 amount=-1 +kerning first=280 second=314 amount=-1 +kerning first=120 second=8221 amount=-1 +kerning first=381 second=356 amount=-1 +kerning first=377 second=331 amount=-1 +kerning first=65 second=365 amount=-1 +kerning first=194 second=311 amount=-1 +kerning first=45 second=362 amount=-2 +kerning first=86 second=85 amount=-1 +kerning first=85 second=286 amount=-1 +kerning first=352 second=314 amount=-1 +kerning first=81 second=362 amount=-1 +kerning first=316 second=314 amount=-1 +kerning first=67 second=314 amount=-1 +kerning first=381 second=255 amount=-2 +kerning first=65 second=112 amount=-1 +kerning first=195 second=81 amount=-1 +kerning first=71 second=224 amount=-1 +kerning first=333 second=8221 amount=-1 +kerning first=269 second=331 amount=-1 +kerning first=328 second=369 amount=-1 +kerning first=225 second=8221 amount=-1 +kerning first=364 second=112 amount=-1 +kerning first=261 second=8221 amount=-1 +kerning first=328 second=112 amount=-1 +kerning first=195 second=67 amount=-1 +kerning first=288 second=221 amount=-1 +kerning first=1070 second=1056 amount=-1 +kerning first=1059 second=1087 amount=-2 +kerning first=381 second=269 amount=-1 +kerning first=266 second=363 amount=-1 +kerning first=90 second=67 amount=-1 +kerning first=216 second=221 amount=-1 +kerning first=212 second=224 amount=-1 +kerning first=369 second=8221 amount=-2 +kerning first=220 second=112 amount=-1 +kerning first=75 second=221 amount=-1 +kerning first=313 second=266 amount=-1 +kerning first=284 second=224 amount=-1 +kerning first=81 second=205 amount=-1 +kerning first=86 second=302 amount=-1 +kerning first=194 second=255 amount=-1 +kerning first=283 second=250 amount=-1 +kerning first=252 second=347 amount=-1 +kerning first=356 second=224 amount=-2 +kerning first=89 second=255 amount=-1 +kerning first=111 second=378 amount=-1 +kerning first=380 second=326 amount=-1 +kerning first=111 second=347 amount=-1 +kerning first=1042 second=1033 amount=-1 +kerning first=8217 second=353 amount=-1 +kerning first=106 second=250 amount=-1 +kerning first=105 second=307 amount=-1 +kerning first=75 second=347 amount=-1 +kerning first=187 second=204 amount=-3 +kerning first=70 second=250 amount=-1 +kerning first=67 second=328 amount=-1 +kerning first=369 second=371 amount=-1 +kerning first=200 second=326 amount=-1 +kerning first=379 second=352 amount=-1 +kerning first=246 second=307 amount=-1 +kerning first=236 second=326 amount=-1 +kerning first=316 second=328 amount=-1 +kerning first=120 second=371 amount=-1 +kerning first=1057 second=1097 amount=-1 +kerning first=344 second=117 amount=-1 +kerning first=280 second=328 amount=-1 +kerning first=274 second=257 amount=-1 +kerning first=209 second=333 amount=-1 +kerning first=72 second=212 amount=-1 +kerning first=209 second=361 amount=-1 +kerning first=378 second=101 amount=-1 +kerning first=326 second=8221 amount=-2 +kerning first=261 second=371 amount=-1 +kerning first=202 second=257 amount=-1 +kerning first=252 second=378 amount=-1 +kerning first=1030 second=1073 amount=-1 +kerning first=284 second=8220 amount=-1 +kerning first=216 second=378 amount=-1 +kerning first=248 second=8220 amount=-1 +kerning first=354 second=202 amount=-1 +kerning first=212 second=8220 amount=-1 +kerning first=288 second=378 amount=-1 +kerning first=352 second=328 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=364 second=288 amount=-1 +kerning first=107 second=8220 amount=-1 +kerning first=286 second=217 amount=-1 +kerning first=121 second=113 amount=-1 +kerning first=71 second=8220 amount=-1 +kerning first=314 second=106 amount=-1 +kerning first=85 second=113 amount=-1 +kerning first=231 second=243 amount=-1 +kerning first=350 second=106 amount=-1 +kerning first=267 second=243 amount=-1 +kerning first=315 second=80 amount=-1 +kerning first=220 second=288 amount=-1 +kerning first=68 second=87 amount=-1 +kerning first=298 second=113 amount=-1 +kerning first=65 second=366 amount=-2 +kerning first=121 second=345 amount=-1 +kerning first=262 second=113 amount=-1 +kerning first=256 second=288 amount=-1 +kerning first=90 second=243 amount=-1 +kerning first=8220 second=289 amount=-2 +kerning first=313 second=210 amount=-1 +kerning first=262 second=345 amount=-1 +kerning first=260 second=45 amount=-2 +kerning first=8217 second=121 amount=-1 +kerning first=221 second=262 amount=-1 +kerning first=350 second=198 amount=-2 +kerning first=205 second=210 amount=-1 +kerning first=66 second=368 amount=-2 +kerning first=235 second=120 amount=-1 +kerning first=370 second=345 amount=-1 +kerning first=303 second=243 amount=-1 +kerning first=260 second=100 amount=-1 +kerning first=302 second=255 amount=-1 +kerning first=315 second=368 amount=-1 +kerning first=1101 second=1113 amount=-1 +kerning first=8222 second=237 amount=-1 +kerning first=375 second=243 amount=-1 +kerning first=214 second=217 amount=-1 +kerning first=230 second=255 amount=-1 +kerning first=8250 second=296 amount=-3 +kerning first=379 second=324 amount=-1 +kerning first=374 second=227 amount=-2 +kerning first=79 second=366 amount=-1 +kerning first=338 second=227 amount=-1 +kerning first=80 second=234 amount=-1 +kerning first=302 second=227 amount=-1 +kerning first=213 second=219 amount=-1 +kerning first=8220 second=261 amount=-1 +kerning first=266 second=227 amount=-1 +kerning first=200 second=354 amount=-1 +kerning first=264 second=44 amount=-1 +kerning first=235 second=324 amount=-1 +kerning first=228 second=44 amount=-1 +kerning first=199 second=324 amount=-1 +kerning first=269 second=99 amount=-1 +kerning first=272 second=354 amount=-1 +kerning first=336 second=44 amount=-1 +kerning first=307 second=324 amount=-1 +kerning first=377 second=99 amount=-1 +kerning first=75 second=104 amount=-1 +kerning first=344 second=354 amount=-1 +kerning first=362 second=267 amount=-1 +kerning first=338 second=197 amount=-1 +kerning first=99 second=335 amount=-1 +kerning first=101 second=106 amount=-1 +kerning first=67 second=356 amount=-1 +kerning first=346 second=229 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=382 second=229 amount=-1 +kerning first=258 second=233 amount=-1 +kerning first=242 second=106 amount=-1 +kerning first=366 second=233 amount=-1 +kerning first=230 second=227 amount=-1 +kerning first=338 second=109 amount=-1 +kerning first=330 second=233 amount=-1 +kerning first=354 second=279 amount=-2 +kerning first=334 second=317 amount=-1 +kerning first=1052 second=1060 amount=-1 +kerning first=317 second=87 amount=-1 +kerning first=261 second=171 amount=-1 +kerning first=89 second=227 amount=-2 +kerning first=67 second=110 amount=-1 +kerning first=317 second=361 amount=-1 +kerning first=115 second=316 amount=-1 +kerning first=352 second=82 amount=-1 +kerning first=103 second=110 amount=-1 +kerning first=281 second=361 amount=-1 +kerning first=77 second=267 amount=-1 +kerning first=1056 second=1064 amount=-1 +kerning first=353 second=361 amount=-1 +kerning first=256 second=316 amount=-1 +kerning first=204 second=264 amount=-1 +kerning first=354 second=291 amount=-2 +kerning first=208 second=82 amount=-1 +kerning first=382 second=257 amount=-1 +kerning first=280 second=110 amount=-1 +kerning first=328 second=316 amount=-1 +kerning first=316 second=110 amount=-1 +kerning first=235 second=378 amount=-1 +kerning first=113 second=267 amount=-1 +kerning first=280 second=82 amount=-1 +kerning first=310 second=257 amount=-1 +kerning first=219 second=65 amount=-2 +kerning first=352 second=110 amount=-1 +kerning first=82 second=364 amount=-1 +kerning first=231 second=271 amount=-1 +kerning first=346 second=257 amount=-1 +kerning first=317 second=45 amount=-1 +kerning first=87 second=44 amount=-3 +kerning first=67 second=82 amount=-1 +kerning first=1065 second=1057 amount=-1 +kerning first=352 second=72 amount=-1 +kerning first=267 second=365 amount=-1 +kerning first=252 second=104 amount=-1 +kerning first=272 second=66 amount=-1 +kerning first=219 second=105 amount=-1 +kerning first=222 second=205 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=86 second=274 amount=-1 +kerning first=268 second=97 amount=-1 +kerning first=337 second=46 amount=-2 +kerning first=208 second=304 amount=-1 +kerning first=304 second=97 amount=-1 +kerning first=272 second=122 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=236 second=122 amount=-1 +kerning first=377 second=71 amount=-1 +kerning first=313 second=121 amount=-1 +kerning first=264 second=72 amount=-1 +kerning first=232 second=97 amount=-1 +kerning first=200 second=122 amount=-1 +kerning first=197 second=71 amount=-1 +kerning first=277 second=121 amount=-1 +kerning first=241 second=121 amount=-1 +kerning first=336 second=72 amount=-1 +kerning first=229 second=46 amount=-1 +kerning first=205 second=121 amount=-1 +kerning first=211 second=77 amount=-1 +kerning first=74 second=102 amount=-1 +kerning first=380 second=122 amount=-1 +kerning first=76 second=377 amount=-1 +kerning first=376 second=97 amount=-2 +kerning first=302 second=199 amount=-1 +kerning first=304 second=245 amount=-1 +kerning first=192 second=375 amount=-1 +kerning first=374 second=199 amount=-1 +kerning first=84 second=200 amount=-1 +kerning first=217 second=377 amount=-1 +kerning first=88 second=46 amount=-1 +kerning first=87 second=332 amount=-1 +kerning first=282 second=199 amount=-1 +kerning first=376 second=214 amount=-1 +kerning first=1050 second=1077 amount=-1 +kerning first=240 second=382 amount=-1 +kerning first=69 second=363 amount=-1 +kerning first=325 second=117 amount=-1 +kerning first=105 second=363 amount=-1 +kerning first=98 second=287 amount=-1 +kerning first=376 second=245 amount=-2 +kerning first=87 second=72 amount=-1 +kerning first=264 second=332 amount=-2 +kerning first=1024 second=1058 amount=-1 +kerning first=70 second=194 amount=-2 +kerning first=1100 second=1114 amount=-1 +kerning first=350 second=310 amount=-1 +kerning first=203 second=287 amount=-1 +kerning first=196 second=214 amount=-1 +kerning first=347 second=259 amount=-1 +kerning first=73 second=242 amount=-1 +kerning first=278 second=310 amount=-1 +kerning first=304 second=214 amount=-1 +kerning first=72 second=240 amount=-1 +kerning first=275 second=287 amount=-1 +kerning first=108 second=240 amount=-1 +kerning first=8217 second=266 amount=-1 +kerning first=347 second=287 amount=-1 +kerning first=192 second=220 amount=-2 +kerning first=315 second=284 amount=-1 +kerning first=311 second=287 amount=-1 +kerning first=207 second=284 amount=-1 +kerning first=311 second=259 amount=-1 +kerning first=87 second=220 amount=-1 +kerning first=66 second=197 amount=-3 +kerning first=275 second=259 amount=-1 +kerning first=378 second=375 amount=-1 +kerning first=260 second=369 amount=-1 +kerning first=336 second=304 amount=-1 +kerning first=224 second=369 amount=-1 +kerning first=86 second=330 amount=-1 +kerning first=258 second=116 amount=-1 +kerning first=264 second=304 amount=-1 +kerning first=296 second=369 amount=-1 +kerning first=1060 second=1030 amount=-1 +kerning first=45 second=116 amount=-1 +kerning first=77 second=119 amount=-1 +kerning first=1024 second=1030 amount=-1 +kerning first=113 second=45 amount=-1 +kerning first=315 second=197 amount=-1 +kerning first=113 second=119 amount=-2 +kerning first=87 second=304 amount=-1 +kerning first=211 second=194 amount=-2 +kerning first=374 second=209 amount=-1 +kerning first=218 second=119 amount=-1 +kerning first=221 second=203 amount=-1 +kerning first=368 second=223 amount=-1 +kerning first=254 second=119 amount=-1 +kerning first=337 second=253 amount=-1 +kerning first=1036 second=1105 amount=-1 +kerning first=290 second=119 amount=-1 +kerning first=326 second=119 amount=-1 +kerning first=120 second=228 amount=-1 +kerning first=313 second=311 amount=-1 +kerning first=362 second=119 amount=-1 +kerning first=234 second=375 amount=-1 +kerning first=264 second=248 amount=-1 +kerning first=84 second=228 amount=-2 +kerning first=80 second=203 amount=-1 +kerning first=321 second=268 amount=-1 +kerning first=192 second=248 amount=-1 +kerning first=291 second=8249 amount=-1 +kerning first=231 second=355 amount=-1 +kerning first=195 second=355 amount=-1 +kerning first=200 second=298 amount=-1 +kerning first=119 second=223 amount=-1 +kerning first=346 second=313 amount=-1 +kerning first=201 second=68 amount=-1 +kerning first=338 second=364 amount=-1 +kerning first=83 second=223 amount=-1 +kerning first=370 second=113 amount=-1 +kerning first=90 second=355 amount=-1 +kerning first=272 second=298 amount=-1 +kerning first=274 second=313 amount=-1 +kerning first=375 second=355 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=339 second=355 amount=-1 +kerning first=229 second=253 amount=-1 +kerning first=66 second=80 amount=-2 +kerning first=202 second=313 amount=-1 +kerning first=303 second=355 amount=-1 +kerning first=381 second=68 amount=-1 +kerning first=267 second=355 amount=-1 +kerning first=72 second=268 amount=-1 +kerning first=221 second=290 amount=-1 +kerning first=1078 second=1086 amount=-1 +kerning first=279 second=108 amount=-1 +kerning first=334 second=85 amount=-1 +kerning first=243 second=108 amount=-1 +kerning first=65 second=338 amount=-1 +kerning first=194 second=8217 amount=-3 +kerning first=351 second=108 amount=-1 +kerning first=282 second=363 amount=-1 +kerning first=200 second=270 amount=-1 +kerning first=262 second=85 amount=-1 +kerning first=288 second=83 amount=-1 +kerning first=230 second=8217 amount=-1 +kerning first=315 second=108 amount=-1 +kerning first=221 second=286 amount=-1 +kerning first=84 second=315 amount=-1 +kerning first=269 second=8221 amount=-1 +kerning first=354 second=363 amount=-1 +kerning first=257 second=318 amount=-1 +kerning first=283 second=105 amount=-1 +kerning first=200 second=313 amount=-1 +kerning first=354 second=335 amount=-2 +kerning first=365 second=318 amount=-1 +kerning first=317 second=209 amount=-1 +kerning first=307 second=380 amount=-1 +kerning first=106 second=105 amount=-1 +kerning first=379 second=380 amount=-1 +kerning first=311 second=231 amount=-1 +kerning first=102 second=108 amount=1 +kerning first=272 second=270 amount=-1 +kerning first=278 second=338 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=199 second=380 amount=-1 +kerning first=88 second=225 amount=-1 +kerning first=8217 second=210 amount=-1 +kerning first=206 second=338 amount=-1 +kerning first=1105 second=1113 amount=-1 +kerning first=235 second=380 amount=-1 +kerning first=213 second=296 amount=-1 +kerning first=321 second=296 amount=-1 +kerning first=362 second=228 amount=-1 +kerning first=279 second=225 amount=-1 +kerning first=83 second=251 amount=-1 +kerning first=224 second=251 amount=-1 +kerning first=290 second=228 amount=-1 +kerning first=351 second=225 amount=-1 +kerning first=249 second=98 amount=-1 +kerning first=66 second=225 amount=-1 +kerning first=296 second=251 amount=-1 +kerning first=78 second=113 amount=-1 +kerning first=209 second=235 amount=-1 +kerning first=99 second=303 amount=-1 +kerning first=102 second=225 amount=-1 +kerning first=260 second=251 amount=-1 +kerning first=1046 second=1058 amount=-1 +kerning first=1114 second=1100 amount=-1 +kerning first=321 second=98 amount=-1 +kerning first=368 second=251 amount=-1 +kerning first=113 second=228 amount=-1 +kerning first=207 second=225 amount=-1 +kerning first=66 second=314 amount=-1 +kerning first=77 second=228 amount=-1 +kerning first=1056 second=1025 amount=-1 +kerning first=251 second=46 amount=-1 +kerning first=287 second=46 amount=-2 +kerning first=266 second=370 amount=-1 +kerning first=323 second=46 amount=-1 +kerning first=374 second=370 amount=-1 +kerning first=198 second=218 amount=-1 +kerning first=338 second=370 amount=-1 +kerning first=187 second=325 amount=-3 +kerning first=120 second=273 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=8250 second=73 amount=-3 +kerning first=110 second=46 amount=-1 +kerning first=109 second=98 amount=-1 +kerning first=8220 second=110 amount=-1 +kerning first=198 second=280 amount=-1 +kerning first=203 second=83 amount=-1 +kerning first=347 second=363 amount=-1 +kerning first=249 second=112 amount=-1 +kerning first=250 second=318 amount=-1 +kerning first=68 second=221 amount=-1 +kerning first=315 second=211 amount=-1 +kerning first=288 second=8249 amount=-1 +kerning first=362 second=214 amount=-1 +kerning first=367 second=311 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=72 second=112 amount=-1 +kerning first=198 second=266 amount=-1 +kerning first=218 second=214 amount=-1 +kerning first=369 second=259 amount=-1 +kerning first=368 second=67 amount=-1 +kerning first=313 second=260 amount=-1 +kerning first=108 second=98 amount=-1 +kerning first=296 second=67 amount=-1 +kerning first=202 second=81 amount=-1 +kerning first=365 second=254 amount=-1 +kerning first=260 second=67 amount=-1 +kerning first=317 second=221 amount=-1 +kerning first=240 second=105 amount=-1 +kerning first=274 second=81 amount=-1 +kerning first=99 second=105 amount=-1 +kerning first=77 second=214 amount=-1 +kerning first=321 second=112 amount=-1 +kerning first=291 second=230 amount=-1 +kerning first=295 second=249 amount=-1 +kerning first=264 second=346 amount=-1 +kerning first=327 second=230 amount=-1 +kerning first=332 second=327 amount=-1 +kerning first=331 second=249 amount=-1 +kerning first=219 second=230 amount=-2 +kerning first=192 second=346 amount=-2 +kerning first=1113 second=1098 amount=-1 +kerning first=255 second=230 amount=-2 +kerning first=73 second=286 amount=-1 +kerning first=259 second=249 amount=-1 +kerning first=194 second=350 amount=-2 +kerning first=1052 second=1095 amount=-1 +kerning first=119 second=106 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=198 second=204 amount=-1 +kerning first=316 second=275 amount=-1 +kerning first=89 second=350 amount=-2 +kerning first=8250 second=361 amount=-1 +kerning first=367 second=249 amount=-1 +kerning first=336 second=346 amount=-1 +kerning first=8220 second=328 amount=-1 +kerning first=78 second=230 amount=-1 +kerning first=338 second=350 amount=-1 +kerning first=327 second=339 amount=-1 +kerning first=282 second=362 amount=-1 +kerning first=118 second=305 amount=-1 +kerning first=374 second=350 amount=-2 +kerning first=66 second=211 amount=-1 +kerning first=282 second=223 amount=-1 +kerning first=214 second=256 amount=-2 +kerning first=336 second=86 amount=-1 +kerning first=277 second=107 amount=-1 +kerning first=302 second=350 amount=-1 +kerning first=187 second=305 amount=-1 +kerning first=354 second=223 amount=-1 +kerning first=207 second=211 amount=-1 +kerning first=310 second=311 amount=-1 +kerning first=187 second=249 amount=-1 +kerning first=363 second=230 amount=-1 +kerning first=105 second=250 amount=-1 +kerning first=100 second=107 amount=-1 +kerning first=379 second=268 amount=-1 +kerning first=82 second=249 amount=-1 +kerning first=198 second=260 amount=-1 +kerning first=286 second=256 amount=-1 +kerning first=352 second=289 amount=-1 +kerning first=204 second=365 amount=-1 +kerning first=199 second=268 amount=-2 +kerning first=219 second=244 amount=-1 +kerning first=1113 second=1084 amount=-1 +kerning first=255 second=244 amount=-1 +kerning first=99 second=365 amount=-1 +kerning first=1061 second=1060 amount=-2 +kerning first=69 second=223 amount=-1 +kerning first=332 second=313 amount=-1 +kerning first=291 second=244 amount=-1 +kerning first=89 second=199 amount=-1 +kerning first=376 second=232 amount=-1 +kerning first=216 second=8217 amount=-1 +kerning first=327 second=244 amount=-1 +kerning first=203 second=192 amount=-1 +kerning first=363 second=353 amount=-1 +kerning first=252 second=8217 amount=-2 +kerning first=219 second=339 amount=-1 +kerning first=194 second=199 amount=-1 +kerning first=354 second=237 amount=-1 +kerning first=288 second=8217 amount=-1 +kerning first=78 second=339 amount=-1 +kerning first=82 second=263 amount=-1 +kerning first=1050 second=1091 amount=-1 +kerning first=8218 second=366 amount=-2 +kerning first=8220 second=219 amount=-1 +kerning first=324 second=8217 amount=-2 +kerning first=266 second=199 amount=-2 +kerning first=118 second=263 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=374 second=302 amount=-1 +kerning first=246 second=237 amount=-1 +kerning first=103 second=275 amount=-1 +kerning first=219 second=353 amount=-1 +kerning first=379 second=282 amount=-1 +kerning first=67 second=289 amount=-1 +kerning first=269 second=369 amount=-1 +kerning first=255 second=353 amount=-1 +kerning first=1050 second=1105 amount=-1 +kerning first=1118 second=1072 amount=-1 +kerning first=103 second=289 amount=-1 +kerning first=214 second=270 amount=-1 +kerning first=323 second=334 amount=-1 +kerning first=291 second=353 amount=-1 +kerning first=105 second=237 amount=-1 +kerning first=67 second=275 amount=-1 +kerning first=327 second=353 amount=-1 +kerning first=376 second=264 amount=-1 +kerning first=208 second=289 amount=-1 +kerning first=87 second=346 amount=-2 +kerning first=325 second=363 amount=-1 +kerning first=244 second=289 amount=-1 +kerning first=1025 second=1060 amount=-1 +kerning first=8250 second=347 amount=-1 +kerning first=344 second=332 amount=-1 +kerning first=199 second=282 amount=-1 +kerning first=280 second=289 amount=-1 +kerning first=78 second=244 amount=-1 +kerning first=8218 second=380 amount=-2 +kerning first=316 second=289 amount=-1 +kerning first=1046 second=1072 amount=-1 +kerning first=303 second=122 amount=-1 +kerning first=352 second=255 amount=-1 +kerning first=220 second=232 amount=-1 +kerning first=321 second=302 amount=-1 +kerning first=83 second=257 amount=-1 +kerning first=8250 second=229 amount=-1 +kerning first=275 second=371 amount=-1 +kerning first=119 second=257 amount=-2 +kerning first=362 second=8249 amount=-3 +kerning first=382 second=347 amount=-1 +kerning first=213 second=302 amount=-1 +kerning first=99 second=99 amount=-1 +kerning first=377 second=202 amount=-1 +kerning first=290 second=8249 amount=-1 +kerning first=346 second=347 amount=-1 +kerning first=326 second=8249 amount=-1 +kerning first=209 second=277 amount=-1 +kerning first=352 second=380 amount=-1 +kerning first=204 second=99 amount=-1 +kerning first=326 second=351 amount=-1 +kerning first=313 second=381 amount=-1 +kerning first=219 second=79 amount=-1 +kerning first=45 second=261 amount=-1 +kerning first=313 second=367 amount=-1 +kerning first=120 second=267 amount=-1 +kerning first=198 second=336 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=81 second=261 amount=-1 +kerning first=220 second=71 amount=-1 +kerning first=362 second=351 amount=-1 +kerning first=241 second=367 amount=-1 +kerning first=327 second=79 amount=-1 +kerning first=332 second=257 amount=-1 +kerning first=277 second=367 amount=-1 +kerning first=199 second=212 amount=-2 +kerning first=113 second=351 amount=-1 +kerning first=368 second=257 amount=-2 +kerning first=254 second=351 amount=-1 +kerning first=84 second=69 amount=-1 +kerning first=218 second=351 amount=-1 +kerning first=296 second=257 amount=-1 +kerning first=351 second=382 amount=-1 +kerning first=209 second=291 amount=-1 +kerning first=113 second=337 amount=-1 +kerning first=330 second=261 amount=-1 +kerning first=119 second=271 amount=-1 +kerning first=77 second=337 amount=-1 +kerning first=366 second=261 amount=-2 +kerning first=197 second=216 amount=-1 +kerning first=104 second=291 amount=-1 +kerning first=68 second=291 amount=-1 +kerning first=117 second=261 amount=-1 +kerning first=110 second=314 amount=-1 +kerning first=207 second=382 amount=-1 +kerning first=84 second=267 amount=-2 +kerning first=243 second=382 amount=-1 +kerning first=222 second=261 amount=-1 +kerning first=279 second=382 amount=-1 +kerning first=218 second=337 amount=-1 +kerning first=377 second=270 amount=-1 +kerning first=1078 second=1092 amount=-1 +kerning first=315 second=382 amount=-1 +kerning first=199 second=226 amount=-1 +kerning first=287 second=314 amount=-1 +kerning first=274 second=347 amount=-1 +kerning first=120 second=281 amount=-1 +kerning first=103 second=269 amount=-1 +kerning first=196 second=8221 amount=-3 +kerning first=280 second=171 amount=-1 +kerning first=97 second=361 amount=-1 +kerning first=251 second=314 amount=-1 +kerning first=67 second=269 amount=-1 +kerning first=316 second=171 amount=-1 +kerning first=202 second=347 amount=-1 +kerning first=362 second=337 amount=-1 +kerning first=352 second=171 amount=-1 +kerning first=202 second=361 amount=-1 +kerning first=70 second=352 amount=-1 +kerning first=267 second=361 amount=-1 +kerning first=67 second=171 amount=-2 +kerning first=310 second=361 amount=-1 +kerning first=97 second=347 amount=-1 +kerning first=78 second=224 amount=-1 +kerning first=103 second=171 amount=-1 +kerning first=274 second=361 amount=-1 +kerning first=108 second=316 amount=-1 +kerning first=347 second=371 amount=-1 +kerning first=232 second=8221 amount=-1 +kerning first=382 second=361 amount=-1 +kerning first=377 second=216 amount=-1 +kerning first=208 second=171 amount=-1 +kerning first=346 second=361 amount=-1 +kerning first=84 second=281 amount=-2 +kerning first=316 second=269 amount=-1 +kerning first=103 second=227 amount=-1 +kerning first=255 second=224 amount=-1 +kerning first=331 second=45 amount=-1 +kerning first=67 second=227 amount=-1 +kerning first=98 second=103 amount=-1 +kerning first=321 second=110 amount=-1 +kerning first=219 second=224 amount=-1 +kerning first=295 second=45 amount=-1 +kerning first=327 second=224 amount=-1 +kerning first=85 second=8249 amount=-3 +kerning first=291 second=224 amount=-1 +kerning first=367 second=45 amount=-1 +kerning first=280 second=227 amount=-1 +kerning first=208 second=227 amount=-1 +kerning first=364 second=246 amount=-1 +kerning first=223 second=311 amount=-1 +kerning first=235 second=226 amount=-1 +kerning first=338 second=356 amount=-1 +kerning first=187 second=311 amount=-1 +kerning first=205 second=101 amount=-1 +kerning first=66 second=382 amount=-2 +kerning first=118 second=311 amount=-1 +kerning first=266 second=90 amount=-1 +kerning first=90 second=201 amount=-1 +kerning first=307 second=226 amount=-1 +kerning first=82 second=45 amount=-2 +kerning first=266 second=356 amount=-1 +kerning first=347 second=103 amount=-1 +kerning first=256 second=246 amount=-1 +kerning first=82 second=311 amount=-1 +kerning first=46 second=45 amount=-1 +kerning first=311 second=103 amount=-1 +kerning first=220 second=246 amount=-1 +kerning first=193 second=362 amount=-2 +kerning first=338 second=90 amount=-1 +kerning first=353 second=291 amount=-1 +kerning first=379 second=226 amount=-1 +kerning first=194 second=356 amount=-3 +kerning first=275 second=103 amount=-1 +kerning first=187 second=207 amount=-3 +kerning first=317 second=291 amount=-1 +kerning first=118 second=45 amount=-2 +kerning first=262 second=102 amount=-1 +kerning first=281 second=291 amount=-1 +kerning first=356 second=252 amount=-1 +kerning first=203 second=103 amount=-1 +kerning first=332 second=261 amount=-1 +kerning first=374 second=90 amount=-1 +kerning first=245 second=291 amount=-1 +kerning first=73 second=44 amount=-1 +kerning first=368 second=109 amount=-1 +kerning first=338 second=104 amount=-1 +kerning first=246 second=8250 amount=-1 +kerning first=280 second=213 amount=-1 +kerning first=266 second=104 amount=-1 +kerning first=109 second=44 amount=-1 +kerning first=89 second=370 amount=-1 +kerning first=203 second=89 amount=-1 +kerning first=379 second=212 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=187 second=193 amount=-2 +kerning first=194 second=370 amount=-2 +kerning first=83 second=109 amount=-1 +kerning first=234 second=115 amount=-1 +kerning first=113 second=8249 amount=-1 +kerning first=352 second=227 amount=-1 +kerning first=1036 second=1113 amount=-1 +kerning first=119 second=109 amount=-1 +kerning first=316 second=227 amount=-1 +kerning first=198 second=115 amount=-1 +kerning first=339 second=187 amount=-1 +kerning first=379 second=78 amount=-1 +kerning first=240 second=303 amount=-1 +kerning first=230 second=104 amount=-1 +kerning first=378 second=115 amount=-1 +kerning first=250 second=44 amount=-1 +kerning first=77 second=8249 amount=-2 +kerning first=194 second=104 amount=-1 +kerning first=256 second=232 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=214 second=368 amount=-1 +kerning first=86 second=70 amount=-1 +kerning first=67 second=213 amount=-2 +kerning first=286 second=44 amount=-1 +kerning first=264 second=78 amount=-1 +kerning first=76 second=75 amount=-1 +kerning first=84 second=323 amount=-1 +kerning first=314 second=120 amount=-1 +kerning first=235 second=289 amount=-1 +kerning first=286 second=203 amount=-1 +kerning first=350 second=120 amount=-1 +kerning first=1101 second=1103 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=313 second=115 amount=-1 +kerning first=198 second=70 amount=-1 +kerning first=286 second=368 amount=-1 +kerning first=214 second=203 amount=-1 +kerning first=101 second=120 amount=-1 +kerning first=321 second=198 amount=-1 +kerning first=100 second=375 amount=-1 +kerning first=362 second=210 amount=-1 +kerning first=8216 second=111 amount=-1 +kerning first=242 second=120 amount=-1 +kerning first=317 second=73 amount=-1 +kerning first=252 second=118 amount=-1 +kerning first=117 second=253 amount=-1 +kerning first=332 second=201 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=71 second=356 amount=-1 +kerning first=200 second=278 amount=-1 +kerning first=324 second=118 amount=-1 +kerning first=269 second=113 amount=-1 +kerning first=289 second=117 amount=-1 +kerning first=88 second=233 amount=-1 +kerning first=288 second=118 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=272 second=278 amount=-1 +kerning first=258 second=253 amount=-1 +kerning first=75 second=118 amount=-1 +kerning first=280 second=68 amount=-1 +kerning first=193 second=233 amount=-1 +kerning first=374 second=241 amount=-1 +kerning first=330 second=253 amount=-1 +kerning first=113 second=353 amount=-1 +kerning first=366 second=253 amount=-1 +kerning first=83 second=201 amount=-1 +kerning first=1058 second=1085 amount=-1 +kerning first=200 second=80 amount=-1 +kerning first=382 second=291 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=313 second=196 amount=-1 +kerning first=377 second=113 amount=-1 +kerning first=316 second=283 amount=-1 +kerning first=253 second=335 amount=-1 +kerning first=266 second=241 amount=-1 +kerning first=109 second=108 amount=-1 +kerning first=106 second=305 amount=-1 +kerning first=289 second=335 amount=-1 +kerning first=230 second=241 amount=-1 +kerning first=1069 second=1040 amount=-2 +kerning first=90 second=323 amount=-1 +kerning first=74 second=110 amount=-1 +kerning first=325 second=335 amount=-1 +kerning first=338 second=241 amount=-1 +kerning first=89 second=193 amount=-3 +kerning first=89 second=241 amount=-1 +kerning first=278 second=380 amount=-1 +kerning first=205 second=232 amount=-1 +kerning first=314 second=380 amount=-1 +kerning first=84 second=85 amount=-1 +kerning first=250 second=108 amount=-1 +kerning first=350 second=380 amount=-1 +kerning first=287 second=110 amount=-1 +kerning first=217 second=335 amount=-1 +kerning first=85 second=65 amount=-2 +kerning first=266 second=193 amount=-2 +kerning first=221 second=248 amount=-2 +kerning first=101 second=380 amount=-1 +kerning first=219 second=286 amount=-1 +kerning first=370 second=331 amount=-1 +kerning first=290 second=70 amount=-1 +kerning first=100 second=115 amount=-1 +kerning first=78 second=286 amount=-1 +kerning first=262 second=331 amount=-1 +kerning first=206 second=380 amount=-1 +kerning first=8220 second=275 amount=-1 +kerning first=250 second=375 amount=-1 +kerning first=242 second=380 amount=-1 +kerning first=262 second=65 amount=-2 +kerning first=316 second=224 amount=-1 +kerning first=354 second=231 amount=-2 +kerning first=241 second=115 amount=-1 +kerning first=80 second=248 amount=-1 +kerning first=277 second=115 amount=-1 +kerning first=334 second=65 amount=-2 +kerning first=336 second=78 amount=-1 +kerning first=338 second=193 amount=-1 +kerning first=85 second=331 amount=-1 +kerning first=370 second=65 amount=-2 +kerning first=379 second=338 amount=-1 +kerning first=374 second=193 amount=-3 +kerning first=121 second=331 amount=-1 +kerning first=205 second=115 amount=-1 +kerning first=1037 second=1073 amount=-1 +kerning first=331 second=255 amount=-1 +kerning first=98 second=307 amount=-1 +kerning first=336 second=352 amount=-1 +kerning first=295 second=255 amount=-1 +kerning first=259 second=255 amount=-1 +kerning first=353 second=347 amount=-1 +kerning first=223 second=255 amount=-1 +kerning first=321 second=366 amount=-1 +kerning first=317 second=347 amount=-1 +kerning first=77 second=281 amount=-1 +kerning first=1092 second=1078 amount=-1 +kerning first=79 second=302 amount=-1 +kerning first=187 second=255 amount=-2 +kerning first=73 second=262 amount=-1 +kerning first=275 second=307 amount=-1 +kerning first=281 second=347 amount=-1 +kerning first=245 second=347 amount=-1 +kerning first=82 second=255 amount=-1 +kerning first=347 second=307 amount=-1 +kerning first=232 second=371 amount=-1 +kerning first=209 second=347 amount=-1 +kerning first=1056 second=1078 amount=-1 +kerning first=66 second=326 amount=-1 +kerning first=1093 second=1077 amount=-1 +kerning first=99 second=250 amount=-1 +kerning first=206 second=212 amount=-1 +kerning first=339 second=257 amount=-1 +kerning first=75 second=333 amount=-1 +kerning first=8250 second=355 amount=-1 +kerning first=223 second=378 amount=-1 +kerning first=274 second=280 amount=-1 +kerning first=382 second=97 amount=-1 +kerning first=375 second=257 amount=-2 +kerning first=338 second=330 amount=-1 +kerning first=204 second=250 amount=-1 +kerning first=87 second=352 amount=-2 +kerning first=74 second=328 amount=-1 +kerning first=1057 second=1077 amount=-1 +kerning first=1025 second=1052 amount=-1 +kerning first=83 second=377 amount=-1 +kerning first=303 second=257 amount=-1 +kerning first=350 second=325 amount=-1 +kerning first=274 second=229 amount=-1 +kerning first=192 second=352 amount=-2 +kerning first=1098 second=1118 amount=-1 +kerning first=103 second=283 amount=-1 +kerning first=332 second=377 amount=-1 +kerning first=65 second=212 amount=-1 +kerning first=231 second=257 amount=-1 +kerning first=287 second=328 amount=-1 +kerning first=67 second=283 amount=-1 +kerning first=187 second=378 amount=-3 +kerning first=213 second=366 amount=-1 +kerning first=1042 second=1047 amount=-1 +kerning first=118 second=378 amount=-1 +kerning first=313 second=8220 amount=-2 +kerning first=249 second=106 amount=-1 +kerning first=277 second=8220 amount=-1 +kerning first=199 second=332 amount=-2 +kerning first=241 second=8220 amount=-2 +kerning first=278 second=103 amount=-1 +kerning first=310 second=87 amount=-1 +kerning first=368 second=377 amount=-1 +kerning first=105 second=287 amount=-1 +kerning first=1049 second=1092 amount=-1 +kerning first=8217 second=367 amount=-1 +kerning first=346 second=87 amount=-1 +kerning first=213 second=106 amount=-1 +kerning first=69 second=287 amount=-1 +kerning first=219 second=345 amount=-1 +kerning first=379 second=332 amount=-1 +kerning first=210 second=287 amount=-1 +kerning first=197 second=113 amount=-1 +kerning first=100 second=8220 amount=-1 +kerning first=255 second=345 amount=-1 +kerning first=367 second=378 amount=-1 +kerning first=377 second=268 amount=-1 +kerning first=321 second=106 amount=-1 +kerning first=8220 second=269 amount=-1 +kerning first=282 second=287 amount=-1 +kerning first=67 second=316 amount=-1 +kerning first=1113 second=1090 amount=-1 +kerning first=202 second=87 amount=-1 +kerning first=86 second=288 amount=-1 +kerning first=80 second=242 amount=-1 +kerning first=246 second=287 amount=-1 +kerning first=66 second=217 amount=-2 +kerning first=221 second=242 amount=-1 +kerning first=354 second=287 amount=-2 +kerning first=104 second=347 amount=-1 +kerning first=310 second=243 amount=-1 +kerning first=213 second=198 amount=-2 +kerning first=377 second=102 amount=-1 +kerning first=362 second=281 amount=-1 +kerning first=327 second=367 amount=-1 +kerning first=279 second=326 amount=-1 +kerning first=113 second=281 amount=-1 +kerning first=315 second=326 amount=-1 +kerning first=187 second=82 amount=-3 +kerning first=315 second=217 amount=-1 +kerning first=351 second=326 amount=-1 +kerning first=218 second=281 amount=-1 +kerning first=214 second=197 amount=-2 +kerning first=367 second=255 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=198 second=210 amount=-1 +kerning first=120 second=119 amount=-1 +kerning first=278 second=324 amount=-1 +kerning first=67 second=334 amount=-2 +kerning first=198 second=274 amount=-1 +kerning first=286 second=197 amount=-1 +kerning first=321 second=270 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=122 second=97 amount=-1 +kerning first=108 second=254 amount=-1 +kerning first=225 second=119 amount=-1 +kerning first=86 second=283 amount=-2 +kerning first=89 second=249 amount=-1 +kerning first=261 second=119 amount=-1 +kerning first=80 second=304 amount=-1 +kerning first=214 second=374 amount=-1 +kerning first=314 second=324 amount=-1 +kerning first=81 second=75 amount=-1 +kerning first=377 second=379 amount=-1 +kerning first=267 second=369 amount=-1 +kerning first=101 second=324 amount=-1 +kerning first=338 second=249 amount=-1 +kerning first=333 second=119 amount=-1 +kerning first=8217 second=101 amount=-2 +kerning first=231 second=369 amount=-1 +kerning first=369 second=119 amount=-1 +kerning first=339 second=369 amount=-1 +kerning first=200 second=74 amount=-1 +kerning first=1062 second=1054 amount=-1 +kerning first=266 second=249 amount=-1 +kerning first=8218 second=316 amount=-1 +kerning first=303 second=369 amount=-1 +kerning first=68 second=229 amount=-1 +kerning first=280 second=334 amount=-1 +kerning first=86 second=344 amount=-1 +kerning first=192 second=234 amount=-1 +kerning first=281 second=229 amount=-1 +kerning first=272 second=74 amount=-1 +kerning first=85 second=339 amount=-1 +kerning first=200 second=284 amount=-1 +kerning first=264 second=234 amount=-1 +kerning first=209 second=229 amount=-1 +kerning first=121 second=339 amount=-1 +kerning first=253 second=279 amount=-1 +kerning first=1091 second=1093 amount=-1 +kerning first=370 second=339 amount=-1 +kerning first=108 second=106 amount=-1 +kerning first=217 second=279 amount=-1 +kerning first=262 second=339 amount=-1 +kerning first=87 second=234 amount=-2 +kerning first=325 second=279 amount=-1 +kerning first=353 second=229 amount=-1 +kerning first=298 second=339 amount=-1 +kerning first=289 second=279 amount=-1 +kerning first=223 second=8217 amount=-1 +kerning first=280 second=219 amount=-1 +kerning first=196 second=111 amount=-1 +kerning first=259 second=8217 amount=-1 +kerning first=356 second=244 amount=-2 +kerning first=295 second=8217 amount=-2 +kerning first=377 second=264 amount=-1 +kerning first=286 second=374 amount=-1 +kerning first=208 second=219 amount=-1 +kerning first=268 second=111 amount=-1 +kerning first=331 second=8217 amount=-2 +kerning first=332 second=209 amount=-1 +kerning first=264 second=86 amount=-1 +kerning first=85 second=332 amount=-1 +kerning first=66 second=66 amount=-2 +kerning first=82 second=8217 amount=-3 +kerning first=1067 second=1089 amount=-1 +kerning first=313 second=107 amount=-1 +kerning first=67 second=219 amount=-1 +kerning first=192 second=86 amount=-3 +kerning first=197 second=264 amount=-1 +kerning first=8250 second=291 amount=-1 +kerning first=379 second=72 amount=-1 +kerning first=201 second=289 amount=-1 +kerning first=1042 second=1041 amount=-1 +kerning first=234 second=121 amount=-1 +kerning first=194 second=364 amount=-2 +kerning first=83 second=209 amount=-1 +kerning first=315 second=298 amount=-1 +kerning first=196 second=254 amount=-1 +kerning first=201 second=82 amount=-1 +kerning first=280 second=326 amount=-1 +kerning first=89 second=364 amount=-1 +kerning first=107 second=244 amount=-1 +kerning first=304 second=111 amount=-1 +kerning first=345 second=289 amount=-1 +kerning first=286 second=83 amount=-1 +kerning first=366 second=90 amount=-1 +kerning first=284 second=368 amount=-1 +kerning first=381 second=289 amount=-2 +kerning first=249 second=254 amount=-1 +kerning first=88 second=354 amount=-1 +kerning first=376 second=111 amount=-2 +kerning first=274 second=278 amount=-1 +kerning first=79 second=296 amount=-1 +kerning first=315 second=66 amount=-1 +kerning first=266 second=364 amount=-1 +kerning first=321 second=254 amount=-1 +kerning first=82 second=199 amount=-1 +kerning first=193 second=354 amount=-3 +kerning first=380 second=225 amount=-1 +kerning first=260 second=117 amount=-1 +kerning first=102 second=122 amount=-1 +kerning first=45 second=102 amount=-1 +kerning first=224 second=117 amount=-1 +kerning first=268 second=200 amount=-1 +kerning first=66 second=122 amount=-2 +kerning first=90 second=251 amount=-1 +kerning first=117 second=102 amount=-1 +kerning first=8216 second=99 amount=-1 +kerning first=296 second=117 amount=-1 +kerning first=275 second=97 amount=-1 +kerning first=315 second=122 amount=-1 +kerning first=236 second=225 amount=-1 +kerning first=195 second=251 amount=-1 +kerning first=378 second=121 amount=-1 +kerning first=199 second=72 amount=-1 +kerning first=311 second=97 amount=-1 +kerning first=279 second=122 amount=-1 +kerning first=298 second=71 amount=-1 +kerning first=330 second=46 amount=-1 +kerning first=272 second=225 amount=-1 +kerning first=368 second=117 amount=-1 +kerning first=203 second=97 amount=-1 +kerning first=243 second=122 amount=-1 +kerning first=366 second=46 amount=-3 +kerning first=267 second=251 amount=-1 +kerning first=376 second=200 amount=-1 +kerning first=207 second=122 amount=-1 +kerning first=370 second=71 amount=-1 +kerning first=344 second=225 amount=-1 +kerning first=231 second=251 amount=-1 +kerning first=117 second=46 amount=-1 +kerning first=339 second=251 amount=-1 +kerning first=366 second=102 amount=-1 +kerning first=303 second=251 amount=-1 +kerning first=364 second=240 amount=-1 +kerning first=347 second=97 amount=-1 +kerning first=222 second=46 amount=-1 +kerning first=256 second=240 amount=-1 +kerning first=203 second=363 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=311 second=245 amount=-1 +kerning first=278 second=206 amount=-1 +kerning first=275 second=363 amount=-1 +kerning first=352 second=219 amount=-1 +kerning first=1061 second=1108 amount=-1 +kerning first=350 second=206 amount=-1 +kerning first=69 second=83 amount=-1 +kerning first=382 second=355 amount=-1 +kerning first=213 second=310 amount=-1 +kerning first=72 second=284 amount=-1 +kerning first=351 second=249 amount=-1 +kerning first=346 second=355 amount=-1 +kerning first=1045 second=1056 amount=-1 +kerning first=291 second=289 amount=-1 +kerning first=376 second=259 amount=-2 +kerning first=282 second=83 amount=-1 +kerning first=221 second=267 amount=-2 +kerning first=220 second=240 amount=-1 +kerning first=344 second=284 amount=-1 +kerning first=8217 second=196 amount=-3 +kerning first=45 second=253 amount=-2 +kerning first=354 second=83 amount=-2 +kerning first=332 second=69 amount=-1 +kerning first=290 second=77 amount=-1 +kerning first=90 second=369 amount=-1 +kerning first=232 second=259 amount=-1 +kerning first=277 second=375 amount=-1 +kerning first=199 second=220 amount=-1 +kerning first=287 second=116 amount=-1 +kerning first=241 second=375 amount=-1 +kerning first=262 second=71 amount=-2 +kerning first=75 second=269 amount=-1 +kerning first=195 second=369 amount=-1 +kerning first=304 second=259 amount=-1 +kerning first=205 second=375 amount=-1 +kerning first=351 second=122 amount=-1 +kerning first=268 second=259 amount=-1 +kerning first=1038 second=1075 amount=-2 +kerning first=115 second=45 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=8216 second=271 amount=-1 +kerning first=221 second=304 amount=-1 +kerning first=266 second=87 amount=-1 +kerning first=313 second=375 amount=-1 +kerning first=266 second=266 amount=-2 +kerning first=204 second=351 amount=-1 +kerning first=278 second=330 amount=-1 +kerning first=374 second=291 amount=-2 +kerning first=80 second=298 amount=-1 +kerning first=350 second=220 amount=-1 +kerning first=377 second=77 amount=-1 +kerning first=315 second=304 amount=-1 +kerning first=381 second=233 amount=-1 +kerning first=338 second=291 amount=-1 +kerning first=70 second=214 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=278 second=220 amount=-1 +kerning first=381 second=90 amount=-1 +kerning first=105 second=97 amount=-1 +kerning first=266 second=291 amount=-1 +kerning first=221 second=298 amount=-1 +kerning first=211 second=317 amount=-1 +kerning first=98 second=8250 amount=-1 +kerning first=74 second=227 amount=-1 +kerning first=118 second=110 amount=-1 +kerning first=230 second=291 amount=-1 +kerning first=8217 second=286 amount=-1 +kerning first=187 second=110 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=350 second=330 amount=-1 +kerning first=346 second=207 amount=-1 +kerning first=86 second=287 amount=-2 +kerning first=69 second=97 amount=-1 +kerning first=278 second=65 amount=-1 +kerning first=66 second=304 amount=-2 +kerning first=282 second=97 amount=-1 +kerning first=89 second=291 amount=-2 +kerning first=193 second=8220 amount=-3 +kerning first=278 second=84 amount=-1 +kerning first=197 second=337 amount=-1 +kerning first=323 second=213 amount=-1 +kerning first=364 second=324 amount=-1 +kerning first=210 second=97 amount=-1 +kerning first=66 second=318 amount=-1 +kerning first=252 second=311 amount=-1 +kerning first=201 second=350 amount=-1 +kerning first=115 second=324 amount=-1 +kerning first=377 second=337 amount=-1 +kerning first=381 second=350 amount=-1 +kerning first=201 second=90 amount=-1 +kerning first=220 second=324 amount=-1 +kerning first=354 second=97 amount=-2 +kerning first=111 second=311 amount=-1 +kerning first=243 second=318 amount=-1 +kerning first=350 second=84 amount=-1 +kerning first=269 second=337 amount=-1 +kerning first=75 second=311 amount=-1 +kerning first=279 second=318 amount=-1 +kerning first=79 second=310 amount=-1 +kerning first=243 second=44 amount=-2 +kerning first=234 second=289 amount=-1 +kerning first=201 second=104 amount=-1 +kerning first=221 second=284 amount=-1 +kerning first=111 second=187 amount=-1 +kerning first=314 second=234 amount=-1 +kerning first=278 second=344 amount=-1 +kerning first=1070 second=1025 amount=-1 +kerning first=279 second=44 amount=-2 +kerning first=74 second=213 amount=-1 +kerning first=65 second=234 amount=-1 +kerning first=334 second=381 amount=-1 +kerning first=374 second=277 amount=-2 +kerning first=66 second=44 amount=-2 +kerning first=379 second=374 amount=-1 +kerning first=370 second=381 amount=-1 +kerning first=8218 second=368 amount=-2 +kerning first=350 second=70 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=102 second=44 amount=-1 +kerning first=1059 second=1081 amount=-2 +kerning first=278 second=70 amount=-1 +kerning first=287 second=227 amount=-1 +kerning first=194 second=277 amount=-1 +kerning first=251 second=227 amount=-1 +kerning first=8222 second=259 amount=-1 +kerning first=302 second=277 amount=-1 +kerning first=233 second=351 amount=-1 +kerning first=266 second=277 amount=-1 +kerning first=197 second=351 amount=-1 +kerning first=84 second=194 amount=-3 +kerning first=283 second=303 amount=-1 +kerning first=268 second=377 amount=-1 +kerning first=351 second=44 amount=-1 +kerning first=216 second=201 amount=-1 +kerning first=370 second=367 amount=-1 +kerning first=65 second=220 amount=-2 +kerning first=89 second=277 amount=-2 +kerning first=376 second=377 amount=-1 +kerning first=221 second=380 amount=-2 +kerning first=209 second=266 amount=-1 +kerning first=269 second=8220 amount=-1 +kerning first=1058 second=1093 amount=-1 +kerning first=310 second=235 amount=-1 +kerning first=65 second=248 amount=-1 +kerning first=201 second=118 amount=-1 +kerning first=233 second=8220 amount=-1 +kerning first=364 second=338 amount=-1 +kerning first=350 second=98 amount=-1 +kerning first=197 second=8220 amount=-3 +kerning first=80 second=270 amount=-1 +kerning first=382 second=235 amount=-1 +kerning first=314 second=98 amount=-1 +kerning first=287 second=241 amount=-1 +kerning first=221 second=270 amount=-1 +kerning first=218 second=287 amount=-2 +kerning first=116 second=380 amount=-1 +kerning first=209 second=211 amount=-1 +kerning first=256 second=338 amount=-1 +kerning first=283 second=228 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=202 second=193 amount=-1 +kerning first=216 second=325 amount=-1 +kerning first=290 second=287 amount=-1 +kerning first=374 second=263 amount=-2 +kerning first=254 second=287 amount=-1 +kerning first=211 second=228 amount=-1 +kerning first=69 second=274 amount=-1 +kerning first=206 second=363 amount=-1 +kerning first=220 second=197 amount=-2 +kerning first=362 second=287 amount=-2 +kerning first=347 second=8249 amount=-1 +kerning first=326 second=287 amount=-1 +kerning first=106 second=228 amount=-1 +kerning first=194 second=263 amount=-1 +kerning first=346 second=193 amount=-2 +kerning first=70 second=228 amount=-1 +kerning first=45 second=197 amount=-2 +kerning first=8216 second=230 amount=-1 +kerning first=314 second=248 amount=-1 +kerning first=311 second=8249 amount=-2 +kerning first=81 second=197 amount=-2 +kerning first=266 second=263 amount=-1 +kerning first=274 second=193 amount=-1 +kerning first=206 second=248 amount=-1 +kerning first=203 second=8249 amount=-1 +kerning first=74 second=241 amount=-1 +kerning first=302 second=263 amount=-1 +kerning first=274 second=221 amount=-1 +kerning first=263 second=110 amount=-1 +kerning first=222 second=197 amount=-2 +kerning first=112 second=104 amount=-1 +kerning first=283 second=331 amount=-1 +kerning first=310 second=221 amount=-1 +kerning first=364 second=352 amount=-1 +kerning first=351 second=318 amount=-1 +kerning first=350 second=112 amount=-1 +kerning first=202 second=221 amount=-1 +kerning first=323 second=255 amount=-1 +kerning first=65 second=262 amount=-1 +kerning first=314 second=112 amount=-1 +kerning first=287 second=255 amount=-1 +kerning first=278 second=112 amount=-1 +kerning first=251 second=255 amount=-1 +kerning first=366 second=197 amount=-2 +kerning first=242 second=112 amount=-1 +kerning first=106 second=331 amount=-1 +kerning first=8222 second=369 amount=-1 +kerning first=206 second=262 amount=-1 +kerning first=1064 second=1072 amount=-1 +kerning first=67 second=74 amount=-1 +kerning first=82 second=374 amount=-1 +kerning first=206 second=112 amount=-1 +kerning first=278 second=318 amount=-1 +kerning first=45 second=314 amount=-1 +kerning first=211 second=200 amount=-1 +kerning first=110 second=255 amount=-1 +kerning first=278 second=262 amount=-1 +kerning first=8216 second=244 amount=-1 +kerning first=117 second=314 amount=-1 +kerning first=79 second=352 amount=-1 +kerning first=207 second=290 amount=-1 +kerning first=208 second=74 amount=-1 +kerning first=88 second=253 amount=-2 +kerning first=374 second=249 amount=-1 +kerning first=75 second=111 amount=-1 +kerning first=278 second=98 amount=-1 +kerning first=280 second=74 amount=-1 +kerning first=377 second=105 amount=-1 +kerning first=202 second=207 amount=-1 +kerning first=315 second=290 amount=-1 +kerning first=75 second=283 amount=-1 +kerning first=221 second=366 amount=-1 +kerning first=256 second=352 amount=-2 +kerning first=352 second=74 amount=-1 +kerning first=365 second=380 amount=-1 +kerning first=258 second=314 amount=-1 +kerning first=220 second=352 amount=-1 +kerning first=66 second=290 amount=-1 +kerning first=378 second=112 amount=-1 +kerning first=346 second=221 amount=-1 +kerning first=101 second=98 amount=-1 +kerning first=233 second=105 amount=-1 +kerning first=65 second=98 amount=-1 +kerning first=8222 second=355 amount=-1 +kerning first=195 second=333 amount=-1 +kerning first=317 second=67 amount=-1 +kerning first=85 second=224 amount=-1 +kerning first=311 second=8221 amount=-1 +kerning first=222 second=68 amount=-1 +kerning first=76 second=81 amount=-1 +kerning first=347 second=8221 amount=-1 +kerning first=222 second=80 amount=-1 +kerning first=267 second=333 amount=-1 +kerning first=81 second=68 amount=-1 +kerning first=231 second=333 amount=-1 +kerning first=209 second=67 amount=-1 +kerning first=220 second=261 amount=-2 +kerning first=87 second=282 amount=-1 +kerning first=275 second=8221 amount=-1 +kerning first=262 second=224 amount=-1 +kerning first=81 second=80 amount=-1 +kerning first=365 second=106 amount=-1 +kerning first=377 second=355 amount=-1 +kerning first=45 second=80 amount=-3 +kerning first=90 second=333 amount=-1 +kerning first=255 second=45 amount=-2 +kerning first=257 second=106 amount=-1 +kerning first=334 second=224 amount=-1 +kerning first=199 second=346 amount=-1 +kerning first=200 second=217 amount=-1 +kerning first=325 second=81 amount=-1 +kerning first=298 second=224 amount=-1 +kerning first=80 second=256 amount=-2 +kerning first=370 second=102 amount=-1 +kerning first=204 second=230 amount=-1 +kerning first=379 second=346 amount=-1 +kerning first=217 second=243 amount=-1 +kerning first=107 second=101 amount=-1 +kerning first=253 second=243 amount=-1 +kerning first=99 second=230 amount=-1 +kerning first=213 second=204 amount=-1 +kerning first=321 second=204 amount=-1 +kerning first=303 second=333 amount=-1 +kerning first=45 second=68 amount=-3 +kerning first=282 second=332 amount=-1 +kerning first=221 second=256 amount=-3 +kerning first=1043 second=1099 amount=-1 +kerning first=68 second=103 amount=-1 +kerning first=375 second=333 amount=-1 +kerning first=232 second=307 amount=-1 +kerning first=362 second=118 amount=-1 +kerning first=356 second=101 amount=-2 +kerning first=370 second=79 amount=-1 +kerning first=116 second=120 amount=-1 +kerning first=321 second=218 amount=-1 +kerning first=1039 second=1072 amount=-1 +kerning first=262 second=79 amount=-2 +kerning first=90 second=335 amount=-1 +kerning first=298 second=79 amount=-1 +kerning first=376 second=192 amount=-3 +kerning first=200 second=334 amount=-1 +kerning first=221 second=120 amount=-1 +kerning first=192 second=268 amount=-1 +kerning first=289 second=243 amount=-1 +kerning first=325 second=243 amount=-1 +kerning first=315 second=347 amount=-1 +kerning first=264 second=268 amount=-2 +kerning first=268 second=192 amount=-2 +kerning first=203 second=251 amount=-1 +kerning first=198 second=315 amount=-1 +kerning first=344 second=334 amount=-1 +kerning first=275 second=251 amount=-1 +kerning first=217 second=229 amount=-2 +kerning first=272 second=217 amount=-1 +kerning first=253 second=229 amount=-2 +kerning first=87 second=268 amount=-1 +kerning first=272 second=203 amount=-1 +kerning first=347 second=251 amount=-1 +kerning first=344 second=217 amount=-1 +kerning first=200 second=203 amount=-1 +kerning first=257 second=120 amount=-1 +kerning first=213 second=218 amount=-1 +kerning first=336 second=282 amount=-1 +kerning first=289 second=229 amount=-1 +kerning first=381 second=118 amount=-1 +kerning first=264 second=282 amount=-1 +kerning first=325 second=229 amount=-1 +kerning first=325 second=257 amount=-1 +kerning first=344 second=219 amount=-1 +kerning first=221 second=368 amount=-1 +kerning first=105 second=371 amount=-1 +kerning first=253 second=257 amount=-2 +kerning first=272 second=219 amount=-1 +kerning first=289 second=257 amount=-1 +kerning first=1024 second=1036 amount=-1 +kerning first=376 second=267 amount=-2 +kerning first=86 second=336 amount=-1 +kerning first=108 second=232 amount=-1 +kerning first=217 second=257 amount=-2 +kerning first=304 second=279 amount=-1 +kerning first=90 second=361 amount=-1 +kerning first=72 second=232 amount=-1 +kerning first=231 second=361 amount=-1 +kerning first=105 second=375 amount=-1 +kerning first=376 second=279 amount=-2 +kerning first=195 second=361 amount=-1 +kerning first=45 second=66 amount=-3 +kerning first=66 second=278 amount=-2 +kerning first=298 second=121 amount=-1 +kerning first=192 second=254 amount=-1 +kerning first=199 second=374 amount=-1 +kerning first=228 second=254 amount=-1 +kerning first=226 second=121 amount=-1 +kerning first=264 second=254 amount=-1 +kerning first=204 second=244 amount=-1 +kerning first=350 second=344 amount=-1 +kerning first=290 second=69 amount=-1 +kerning first=269 second=316 amount=-1 +kerning first=268 second=267 amount=-1 +kerning first=222 second=82 amount=-1 +kerning first=304 second=267 amount=-1 +kerning first=85 second=121 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=315 second=278 amount=-1 +kerning first=196 second=267 amount=-1 +kerning first=81 second=66 amount=-1 +kerning first=8217 second=260 amount=-3 +kerning first=304 second=281 amount=-1 +kerning first=214 second=382 amount=-1 +kerning first=45 second=82 amount=-3 +kerning first=196 second=117 amount=-1 +kerning first=250 second=382 amount=-1 +kerning first=108 second=246 amount=-1 +kerning first=81 second=82 amount=-1 +kerning first=376 second=281 amount=-2 +kerning first=286 second=382 amount=-1 +kerning first=72 second=246 amount=-1 +kerning first=289 second=271 amount=-1 +kerning first=1043 second=1057 amount=-1 +kerning first=268 second=117 amount=-1 +kerning first=121 second=107 amount=-1 +kerning first=232 second=117 amount=-1 +kerning first=196 second=281 amount=-1 +kerning first=73 second=382 amount=-1 +kerning first=272 second=205 amount=-1 +kerning first=1043 second=1085 amount=-1 +kerning first=304 second=117 amount=-1 +kerning first=370 second=121 amount=-1 +kerning first=268 second=281 amount=-1 +kerning first=203 second=230 amount=-1 +kerning first=376 second=117 amount=-1 +kerning first=375 second=347 amount=-1 +kerning first=72 second=352 amount=-1 +kerning first=264 second=240 amount=-1 +kerning first=339 second=347 amount=-1 +kerning first=303 second=347 amount=-1 +kerning first=234 second=8250 amount=-1 +kerning first=267 second=347 amount=-1 +kerning first=339 second=361 amount=-1 +kerning first=368 second=379 amount=-1 +kerning first=231 second=347 amount=-1 +kerning first=262 second=107 amount=-1 +kerning first=302 second=339 amount=-1 +kerning first=195 second=347 amount=-1 +kerning first=1067 second=1095 amount=-1 +kerning first=204 second=216 amount=-1 +kerning first=1031 second=1095 amount=-1 +kerning first=90 second=347 amount=-1 +kerning first=115 second=226 amount=-1 +kerning first=207 second=262 amount=-1 +kerning first=370 second=266 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=1050 second=1083 amount=-1 +kerning first=377 second=65 amount=-1 +kerning first=78 second=252 amount=-1 +kerning first=346 second=305 amount=-1 +kerning first=346 second=249 amount=-1 +kerning first=66 second=46 amount=-2 +kerning first=220 second=226 amount=-2 +kerning first=298 second=266 amount=-1 +kerning first=1086 second=1083 amount=-1 +kerning first=102 second=46 amount=-1 +kerning first=86 second=8250 amount=-1 +kerning first=220 second=336 amount=-1 +kerning first=256 second=336 amount=-1 +kerning first=382 second=305 amount=-1 +kerning first=335 second=8250 amount=-1 +kerning first=1070 second=1062 amount=-1 +kerning first=262 second=266 amount=-2 +kerning first=73 second=122 amount=-1 +kerning first=1116 second=1104 amount=-1 +kerning first=381 second=102 amount=-1 +kerning first=364 second=336 amount=-1 +kerning first=327 second=252 amount=-1 +kerning first=193 second=219 amount=-2 +kerning first=363 second=252 amount=-1 +kerning first=198 second=316 amount=-1 +kerning first=382 second=45 amount=-2 +kerning first=117 second=365 amount=-1 +kerning first=88 second=219 amount=-1 +kerning first=234 second=316 amount=-1 +kerning first=80 second=269 amount=-1 +kerning first=211 second=202 amount=-1 +kerning first=296 second=335 amount=-1 +kerning first=289 second=259 amount=-1 +kerning first=219 second=252 amount=-1 +kerning first=253 second=259 amount=-2 +kerning first=201 second=102 amount=-1 +kerning first=378 second=316 amount=-1 +kerning first=291 second=252 amount=-1 +kerning first=325 second=259 amount=-1 +kerning first=79 second=226 amount=-1 +kerning first=368 second=103 amount=-2 +kerning first=97 second=45 amount=-1 +kerning first=314 second=246 amount=-1 +kerning first=65 second=332 amount=-1 +kerning first=81 second=356 amount=-1 +kerning first=332 second=103 amount=-1 +kerning first=8216 second=85 amount=-1 +kerning first=103 second=116 amount=-1 +kerning first=45 second=356 amount=-2 +kerning first=116 second=382 amount=-1 +kerning first=217 second=259 amount=-2 +kerning first=356 second=375 amount=-1 +kerning first=282 second=369 amount=-1 +kerning first=260 second=103 amount=-1 +kerning first=1045 second=1103 amount=-1 +kerning first=206 second=246 amount=-1 +kerning first=69 second=369 amount=-1 +kerning first=224 second=103 amount=-1 +kerning first=110 second=253 amount=-1 +kerning first=274 second=45 amount=-1 +kerning first=8220 second=74 amount=-1 +kerning first=206 second=332 amount=-1 +kerning first=119 second=103 amount=-2 +kerning first=346 second=45 amount=-1 +kerning first=65 second=246 amount=-1 +kerning first=8250 second=221 amount=-2 +kerning first=105 second=369 amount=-1 +kerning first=83 second=103 amount=-1 +kerning first=251 second=253 amount=-1 +kerning first=310 second=45 amount=-2 +kerning first=278 second=332 amount=-1 +kerning first=102 second=120 amount=-1 +kerning first=365 second=382 amount=-1 +kerning first=253 second=109 amount=-1 +kerning first=194 second=8220 amount=-3 +kerning first=286 second=122 amount=-1 +kerning first=85 second=266 amount=-1 +kerning first=268 second=279 amount=-1 +kerning first=250 second=122 amount=-1 +kerning first=289 second=109 amount=-1 +kerning first=214 second=122 amount=-1 +kerning first=352 second=68 amount=-1 +kerning first=87 second=242 amount=-1 +kerning first=221 second=382 amount=-2 +kerning first=76 second=109 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=316 second=116 amount=-1 +kerning first=8218 second=98 amount=-1 +kerning first=258 second=356 amount=-3 +kerning first=354 second=369 amount=-1 +kerning first=248 second=375 amount=-1 +kerning first=192 second=242 amount=-1 +kerning first=222 second=356 amount=-1 +kerning first=201 second=362 amount=-1 +kerning first=352 second=116 amount=-1 +kerning first=264 second=242 amount=-1 +kerning first=248 second=115 amount=-1 +kerning first=352 second=378 amount=-1 +kerning first=364 second=198 amount=-2 +kerning first=346 second=251 amount=-1 +kerning first=346 second=73 amount=-1 +kerning first=83 second=75 amount=-1 +kerning first=316 second=8217 amount=-2 +kerning first=220 second=198 amount=-2 +kerning first=196 second=119 amount=-2 +kerning first=364 second=210 amount=-1 +kerning first=352 second=8217 amount=-1 +kerning first=289 second=355 amount=-1 +kerning first=232 second=119 amount=-1 +kerning first=8222 second=97 amount=-1 +kerning first=356 second=115 amount=-2 +kerning first=253 second=355 amount=-1 +kerning first=268 second=119 amount=-1 +kerning first=315 second=203 amount=-1 +kerning first=288 second=313 amount=-1 +kerning first=304 second=119 amount=-1 +kerning first=287 second=253 amount=-1 +kerning first=350 second=74 amount=-1 +kerning first=257 second=108 amount=-1 +kerning first=70 second=230 amount=-1 +kerning first=323 second=253 amount=-1 +kerning first=216 second=313 amount=-1 +kerning first=211 second=315 amount=-1 +kerning first=365 second=108 amount=-1 +kerning first=274 second=73 amount=-1 +kerning first=368 second=381 amount=-1 +kerning first=332 second=75 amount=-1 +kerning first=118 second=269 amount=-1 +kerning first=82 second=269 amount=-1 +kerning first=119 second=335 amount=-1 +kerning first=198 second=196 amount=-1 +kerning first=251 second=225 amount=-1 +kerning first=289 second=231 amount=-1 +kerning first=287 second=225 amount=-1 +kerning first=260 second=335 amount=-1 +kerning first=325 second=231 amount=-1 +kerning first=83 second=363 amount=-1 +kerning first=74 second=225 amount=-1 +kerning first=366 second=328 amount=-1 +kerning first=224 second=363 amount=-1 +kerning first=1056 second=1086 amount=-1 +kerning first=260 second=363 amount=-1 +kerning first=356 second=286 amount=-1 +kerning first=8218 second=220 amount=-2 +kerning first=208 second=8217 amount=-1 +kerning first=296 second=363 amount=-1 +kerning first=8216 second=345 amount=-1 +kerning first=244 second=8217 amount=-1 +kerning first=65 second=218 amount=-2 +kerning first=323 second=225 amount=-1 +kerning first=368 second=363 amount=-1 +kerning first=217 second=231 amount=-1 +kerning first=8220 second=255 amount=-1 +kerning first=350 second=218 amount=-1 +kerning first=107 second=115 amount=-1 +kerning first=253 second=231 amount=-1 +kerning first=66 second=203 amount=-2 +kerning first=243 second=46 amount=-2 +kerning first=1113 second=1076 amount=-1 +kerning first=278 second=218 amount=-1 +kerning first=279 second=46 amount=-2 +kerning first=98 second=8221 amount=-1 +kerning first=230 second=261 amount=-1 +kerning first=79 second=368 amount=-1 +kerning first=266 second=261 amount=-1 +kerning first=197 second=367 amount=-1 +kerning first=366 second=122 amount=-1 +kerning first=302 second=261 amount=-1 +kerning first=375 second=235 amount=-1 +kerning first=338 second=261 amount=-1 +kerning first=334 second=8220 amount=-1 +kerning first=86 second=296 amount=-1 +kerning first=8218 second=218 amount=-2 +kerning first=89 second=261 amount=-2 +kerning first=8250 second=193 amount=-2 +kerning first=330 second=211 amount=-1 +kerning first=370 second=351 amount=-1 +kerning first=68 second=327 amount=-1 +kerning first=226 second=8220 amount=-1 +kerning first=259 second=347 amount=-1 +kerning first=381 second=275 amount=-1 +kerning first=89 second=378 amount=-2 +kerning first=233 second=250 amount=-1 +kerning first=102 second=244 amount=-1 +kerning first=216 second=171 amount=-1 +kerning first=235 second=112 amount=-1 +kerning first=252 second=171 amount=-1 +kerning first=199 second=112 amount=-1 +kerning first=366 second=211 amount=-1 +kerning first=288 second=171 amount=-1 +kerning first=90 second=235 amount=-1 +kerning first=366 second=326 amount=-1 +kerning first=317 second=327 amount=-1 +kerning first=199 second=86 amount=-1 +kerning first=269 second=250 amount=-1 +kerning first=374 second=261 amount=-2 +kerning first=195 second=235 amount=-1 +kerning first=75 second=171 amount=-2 +kerning first=231 second=235 amount=-1 +kerning first=379 second=86 amount=-1 +kerning first=213 second=206 amount=-1 +kerning first=267 second=235 amount=-1 +kerning first=45 second=328 amount=-1 +kerning first=321 second=206 amount=-1 +kerning first=370 second=353 amount=-1 +kerning first=87 second=117 amount=-1 +kerning first=314 second=100 amount=-1 +kerning first=305 second=365 amount=-1 +kerning first=374 second=378 amount=-2 +kerning first=199 second=262 amount=-2 +kerning first=269 second=365 amount=-1 +kerning first=233 second=365 amount=-1 +kerning first=87 second=366 amount=-1 +kerning first=197 second=365 amount=-1 +kerning first=324 second=171 amount=-1 +kerning first=76 second=83 amount=-1 +kerning first=266 second=378 amount=-1 +kerning first=226 second=353 amount=-1 +kerning first=336 second=366 amount=-1 +kerning first=379 second=112 amount=-1 +kerning first=230 second=378 amount=-1 +kerning first=262 second=353 amount=-1 +kerning first=206 second=100 amount=-1 +kerning first=256 second=45 amount=-2 +kerning first=298 second=353 amount=-1 +kerning first=379 second=262 amount=-1 +kerning first=264 second=366 amount=-1 +kerning first=307 second=112 amount=-1 +kerning first=217 second=83 amount=-1 +kerning first=302 second=378 amount=-1 +kerning first=107 second=113 amount=-1 +kerning first=274 second=286 amount=-1 +kerning first=85 second=353 amount=-1 +kerning first=346 second=223 amount=-1 +kerning first=213 second=352 amount=-1 +kerning first=79 second=198 amount=-2 +kerning first=325 second=83 amount=-1 +kerning first=121 second=353 amount=-1 +kerning first=65 second=100 amount=-1 +kerning first=321 second=352 amount=-1 +kerning first=195 second=87 amount=-3 +kerning first=198 second=288 amount=-1 +kerning first=8250 second=305 amount=-1 +kerning first=90 second=87 amount=-1 +kerning first=202 second=223 amount=-1 +kerning first=67 second=233 amount=-1 +kerning first=377 second=365 amount=-1 +kerning first=274 second=223 amount=-1 +kerning first=370 second=379 amount=-1 +kerning first=286 second=304 amount=-1 +kerning first=108 second=324 amount=-1 +kerning first=103 second=233 amount=-1 +kerning first=334 second=379 amount=-1 +kerning first=377 second=339 amount=-1 +kerning first=269 second=339 amount=-1 +kerning first=89 second=289 amount=-2 +kerning first=101 second=305 amount=-1 +kerning first=316 second=233 amount=-1 +kerning first=195 second=89 amount=-3 +kerning first=199 second=114 amount=-1 +kerning first=201 second=249 amount=-1 +kerning first=194 second=289 amount=-1 +kerning first=230 second=289 amount=-1 +kerning first=266 second=289 amount=-1 +kerning first=78 second=99 amount=-1 +kerning first=1070 second=1064 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=1059 second=1079 amount=-1 +kerning first=67 second=350 amount=-1 +kerning first=313 second=274 amount=-1 +kerning first=375 second=237 amount=-1 +kerning first=379 second=84 amount=-1 +kerning first=339 second=237 amount=-1 +kerning first=1114 second=1114 amount=-1 +kerning first=85 second=379 amount=-1 +kerning first=230 second=110 amount=-1 +kerning first=303 second=237 amount=-1 +kerning first=255 second=99 amount=-1 +kerning first=266 second=110 amount=-1 +kerning first=267 second=237 amount=-1 +kerning first=197 second=339 amount=-1 +kerning first=223 second=187 amount=-1 +kerning first=219 second=99 amount=-1 +kerning first=231 second=237 amount=-1 +kerning first=280 second=350 amount=-1 +kerning first=327 second=99 amount=-1 +kerning first=85 second=381 amount=-1 +kerning first=338 second=110 amount=-1 +kerning first=291 second=99 amount=-1 +kerning first=262 second=379 amount=-1 +kerning first=1048 second=1060 amount=-1 +kerning first=374 second=110 amount=-1 +kerning first=208 second=350 amount=-1 +kerning first=321 second=324 amount=-1 +kerning first=381 second=277 amount=-1 +kerning first=107 second=224 amount=-1 +kerning first=86 second=212 amount=-1 +kerning first=379 second=234 amount=-1 +kerning first=45 second=326 amount=-1 +kerning first=352 second=350 amount=-1 +kerning first=313 second=302 amount=-1 +kerning first=199 second=234 amount=-1 +kerning first=370 second=264 amount=-1 +kerning first=1038 second=1089 amount=-2 +kerning first=347 second=241 amount=-1 +kerning first=212 second=260 amount=-2 +kerning first=336 second=356 amount=-1 +kerning first=298 second=264 amount=-1 +kerning first=302 second=289 amount=-1 +kerning first=262 second=351 amount=-1 +kerning first=262 second=264 amount=-2 +kerning first=278 second=72 amount=-1 +kerning first=284 second=260 amount=-1 +kerning first=45 second=354 amount=-2 +kerning first=338 second=289 amount=-1 +kerning first=226 second=351 amount=-1 +kerning first=377 second=367 amount=-1 +kerning first=90 second=89 amount=-1 +kerning first=81 second=354 amount=-1 +kerning first=374 second=289 amount=-2 +kerning first=350 second=72 amount=-1 +kerning first=356 second=260 amount=-3 +kerning first=1055 second=1054 amount=-1 +kerning first=298 second=351 amount=-1 +kerning first=75 second=199 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=305 second=367 amount=-1 +kerning first=85 second=351 amount=-1 +kerning first=222 second=354 amount=-1 +kerning first=201 second=364 amount=-1 +kerning first=233 second=367 amount=-1 +kerning first=90 second=209 amount=-1 +kerning first=258 second=354 amount=-3 +kerning first=269 second=367 amount=-1 +kerning first=377 second=110 amount=-1 +kerning first=121 second=351 amount=-1 +kerning first=311 second=111 amount=-1 +kerning first=268 second=8249 amount=-2 +kerning first=78 second=264 amount=-1 +kerning first=304 second=8249 amount=-2 +kerning first=78 second=121 amount=-1 +kerning first=83 second=361 amount=-1 +kerning first=311 second=267 amount=-1 +kerning first=118 second=277 amount=-1 +kerning first=196 second=8249 amount=-2 +kerning first=1030 second=1095 amount=-1 +kerning first=224 second=361 amount=-1 +kerning first=82 second=277 amount=-1 +kerning first=203 second=377 amount=-1 +kerning first=363 second=367 amount=-1 +kerning first=296 second=361 amount=-1 +kerning first=199 second=254 amount=-1 +kerning first=354 second=327 amount=-1 +kerning first=253 second=111 amount=-1 +kerning first=354 second=257 amount=-2 +kerning first=291 second=367 amount=-1 +kerning first=260 second=361 amount=-1 +kerning first=235 second=254 amount=-1 +kerning first=240 second=351 amount=-1 +kerning first=289 second=111 amount=-1 +kerning first=84 second=287 amount=-2 +kerning first=264 second=114 amount=-1 +kerning first=368 second=361 amount=-1 +kerning first=325 second=111 amount=-1 +kerning first=282 second=257 amount=-1 +kerning first=219 second=367 amount=-1 +kerning first=280 second=364 amount=-1 +kerning first=307 second=254 amount=-1 +kerning first=212 second=274 amount=-1 +kerning first=78 second=367 amount=-1 +kerning first=347 second=117 amount=-1 +kerning first=336 second=374 amount=-1 +kerning first=120 second=287 amount=-1 +kerning first=280 second=261 amount=-1 +kerning first=269 second=244 amount=-1 +kerning first=218 second=197 amount=-2 +kerning first=87 second=114 amount=-1 +kerning first=363 second=121 amount=-1 +kerning first=352 second=104 amount=-1 +kerning first=264 second=374 amount=-1 +kerning first=71 second=274 amount=-1 +kerning first=225 second=287 amount=-1 +kerning first=352 second=261 amount=-1 +kerning first=327 second=121 amount=-1 +kerning first=356 second=274 amount=-1 +kerning first=333 second=287 amount=-1 +kerning first=67 second=261 amount=-1 +kerning first=377 second=244 amount=-1 +kerning first=291 second=121 amount=-1 +kerning first=213 second=344 amount=-1 +kerning first=192 second=374 amount=-3 +kerning first=327 second=250 amount=-1 +kerning first=103 second=261 amount=-1 +kerning first=219 second=381 amount=-1 +kerning first=284 second=274 amount=-1 +kerning first=219 second=121 amount=-1 +kerning first=369 second=287 amount=-1 +kerning first=208 second=261 amount=-1 +kerning first=321 second=344 amount=-1 +kerning first=224 second=347 amount=-1 +kerning first=255 second=107 amount=-1 +kerning first=219 second=250 amount=-1 +kerning first=103 second=378 amount=-1 +kerning first=266 second=171 amount=-2 +kerning first=1040 second=1104 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=291 second=250 amount=-1 +kerning first=289 second=289 amount=-1 +kerning first=83 second=347 amount=-1 +kerning first=291 second=107 amount=-1 +kerning first=379 second=240 amount=-1 +kerning first=338 second=171 amount=-1 +kerning first=1057 second=1047 amount=-1 +kerning first=305 second=250 amount=-1 +kerning first=89 second=171 amount=-3 +kerning first=67 second=378 amount=-1 +kerning first=275 second=117 amount=-1 +kerning first=377 second=230 amount=-1 +kerning first=78 second=250 amount=-1 +kerning first=73 second=199 amount=-1 +kerning first=194 second=171 amount=-2 +kerning first=1118 second=1108 amount=-1 +kerning first=74 second=74 amount=-1 +kerning first=210 second=257 amount=-1 +kerning first=289 second=371 amount=-1 +kerning first=69 second=257 amount=-1 +kerning first=327 second=264 amount=-1 +kerning first=105 second=257 amount=-1 +kerning first=316 second=378 amount=-1 +kerning first=374 second=171 amount=-3 +kerning first=67 second=364 amount=-1 +kerning first=280 second=378 amount=-1 +kerning first=363 second=107 amount=-1 +kerning first=192 second=100 amount=-1 +kerning first=88 second=314 amount=-1 +kerning first=296 second=347 amount=-1 +kerning first=199 second=240 amount=-1 +kerning first=229 second=314 amount=-1 +kerning first=260 second=347 amount=-1 +kerning first=264 second=100 amount=-1 +kerning first=8220 second=253 amount=-1 +kerning first=1048 second=1054 amount=-1 +kerning first=193 second=314 amount=-1 +kerning first=213 second=220 amount=-1 +kerning first=208 second=90 amount=-1 +kerning first=214 second=298 amount=-1 +kerning first=213 second=330 amount=-1 +kerning first=280 second=90 amount=-1 +kerning first=286 second=298 amount=-1 +kerning first=317 second=207 amount=-1 +kerning first=290 second=317 amount=-1 +kerning first=68 second=201 amount=-1 +kerning first=204 second=214 amount=-1 +kerning first=337 second=314 amount=-1 +kerning first=321 second=330 amount=-1 +kerning first=68 second=207 amount=-1 +kerning first=1024 second=1024 amount=-1 +kerning first=367 second=291 amount=-1 +kerning first=331 second=291 amount=-1 +kerning first=362 second=194 amount=-2 +kerning first=321 second=220 amount=-1 +kerning first=295 second=291 amount=-1 +kerning first=90 second=221 amount=-1 +kerning first=258 second=213 amount=-1 +kerning first=269 second=224 amount=-1 +kerning first=259 second=291 amount=-1 +kerning first=99 second=337 amount=-1 +kerning first=122 second=324 amount=-1 +kerning first=290 second=200 amount=-1 +kerning first=233 second=224 amount=-1 +kerning first=272 second=304 amount=-1 +kerning first=86 second=324 amount=-1 +kerning first=217 second=97 amount=-2 +kerning first=200 second=318 amount=-1 +kerning first=187 second=291 amount=-1 +kerning first=8220 second=370 amount=-1 +kerning first=118 second=291 amount=-2 +kerning first=82 second=291 amount=-1 +kerning first=1038 second=1101 amount=-1 +kerning first=325 second=97 amount=-1 +kerning first=321 second=84 amount=-1 +kerning first=353 second=311 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=366 second=213 amount=-1 +kerning first=377 second=224 amount=-1 +kerning first=235 second=251 amount=-1 +kerning first=8250 second=195 amount=-2 +kerning first=317 second=311 amount=-1 +kerning first=344 second=318 amount=-1 +kerning first=204 second=337 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=253 second=97 amount=-2 +kerning first=281 second=311 amount=-1 +kerning first=380 second=318 amount=-1 +kerning first=67 second=90 amount=-1 +kerning first=289 second=97 amount=-1 +kerning first=213 second=84 amount=-1 +kerning first=245 second=311 amount=-1 +kerning first=219 second=101 amount=-1 +kerning first=72 second=234 amount=-1 +kerning first=1036 second=1057 amount=-2 +kerning first=103 second=104 amount=-1 +kerning first=255 second=101 amount=-1 +kerning first=281 second=187 amount=-1 +kerning first=108 second=234 amount=-1 +kerning first=68 second=325 amount=-1 +kerning first=362 second=303 amount=-1 +kerning first=67 second=104 amount=-1 +kerning first=291 second=101 amount=-1 +kerning first=254 second=303 amount=-1 +kerning first=1057 second=1041 amount=-1 +kerning first=366 second=227 amount=-2 +kerning first=347 second=249 amount=-1 +kerning first=327 second=101 amount=-1 +kerning first=8250 second=209 amount=-3 +kerning first=380 second=44 amount=-1 +kerning first=330 second=227 amount=-1 +kerning first=200 second=44 amount=-1 +kerning first=321 second=78 amount=-1 +kerning first=280 second=104 amount=-1 +kerning first=86 second=310 amount=-1 +kerning first=263 second=324 amount=-1 +kerning first=213 second=70 amount=-1 +kerning first=381 second=266 amount=-1 +kerning first=244 second=104 amount=-1 +kerning first=245 second=187 amount=-1 +kerning first=272 second=44 amount=-1 +kerning first=371 second=324 amount=-1 +kerning first=236 second=44 amount=-1 +kerning first=317 second=325 amount=-1 +kerning first=381 second=211 amount=-1 +kerning first=117 second=227 amount=-1 +kerning first=290 second=194 amount=-1 +kerning first=105 second=251 amount=-1 +kerning first=213 second=78 amount=-1 +kerning first=81 second=227 amount=-1 +kerning first=69 second=251 amount=-1 +kerning first=1060 second=1024 amount=-1 +kerning first=45 second=227 amount=-1 +kerning first=218 second=194 amount=-2 +kerning first=282 second=251 amount=-1 +kerning first=317 second=201 amount=-1 +kerning first=218 second=303 amount=-1 +kerning first=1101 second=1093 amount=-1 +kerning first=222 second=227 amount=-1 +kerning first=354 second=251 amount=-1 +kerning first=8220 second=233 amount=-1 +kerning first=113 second=303 amount=-1 +kerning first=85 second=237 amount=-1 +kerning first=266 second=118 amount=-1 +kerning first=82 second=283 amount=-1 +kerning first=230 second=118 amount=-1 +kerning first=280 second=370 amount=-1 +kerning first=8250 second=327 amount=-3 +kerning first=255 second=226 amount=-2 +kerning first=264 second=270 amount=-1 +kerning first=302 second=118 amount=-1 +kerning first=352 second=370 amount=-1 +kerning first=262 second=105 amount=-1 +kerning first=89 second=118 amount=-1 +kerning first=260 second=245 amount=-1 +kerning first=192 second=368 amount=-2 +kerning first=121 second=105 amount=-1 +kerning first=310 second=335 amount=-1 +kerning first=71 second=280 amount=-1 +kerning first=194 second=118 amount=-2 +kerning first=87 second=368 amount=-1 +kerning first=382 second=335 amount=-1 +kerning first=87 second=270 amount=-1 +kerning first=323 second=268 amount=-1 +kerning first=118 second=283 amount=-1 +kerning first=85 second=105 amount=-1 +kerning first=212 second=280 amount=-1 +kerning first=316 second=241 amount=-1 +kerning first=336 second=368 amount=-1 +kerning first=218 second=193 amount=-2 +kerning first=68 second=193 amount=-2 +kerning first=280 second=241 amount=-1 +kerning first=368 second=216 amount=-1 +kerning first=67 second=370 amount=-1 +kerning first=67 second=223 amount=-1 +kerning first=228 second=108 amount=-1 +kerning first=264 second=368 amount=-1 +kerning first=1036 second=1083 amount=-1 +kerning first=352 second=241 amount=-1 +kerning first=192 second=108 amount=-1 +kerning first=212 second=87 amount=-1 +kerning first=336 second=270 amount=-1 +kerning first=305 second=254 amount=-1 +kerning first=264 second=108 amount=-1 +kerning first=204 second=228 amount=-1 +kerning first=214 second=278 amount=-1 +kerning first=208 second=370 amount=-1 +kerning first=99 second=228 amount=-1 +kerning first=117 second=353 amount=-1 +kerning first=286 second=278 amount=-1 +kerning first=66 second=89 amount=-2 +kerning first=260 second=231 amount=-1 +kerning first=336 second=122 amount=-1 +kerning first=67 second=241 amount=-1 +kerning first=119 second=231 amount=-1 +kerning first=352 second=356 amount=-1 +kerning first=333 second=107 amount=-1 +kerning first=262 second=304 amount=-1 +kerning first=264 second=122 amount=-1 +kerning first=368 second=231 amount=-1 +kerning first=280 second=356 amount=-1 +kerning first=336 second=73 amount=-1 +kerning first=316 second=255 amount=-1 +kerning first=374 second=116 amount=-1 +kerning first=296 second=231 amount=-1 +kerning first=336 second=256 amount=-2 +kerning first=208 second=356 amount=-1 +kerning first=1052 second=1073 amount=-1 +kerning first=244 second=255 amount=-1 +kerning first=356 second=266 amount=-1 +kerning first=368 second=245 amount=-1 +kerning first=296 second=81 amount=-1 +kerning first=284 second=280 amount=-1 +kerning first=103 second=255 amount=-1 +kerning first=296 second=245 amount=-1 +kerning first=356 second=280 amount=-1 +kerning first=1038 second=1095 amount=-2 +kerning first=370 second=105 amount=-1 +kerning first=277 second=8250 amount=-1 +kerning first=87 second=122 amount=-2 +kerning first=260 second=108 amount=-1 +kerning first=368 second=229 amount=-2 +kerning first=88 second=217 amount=-1 +kerning first=296 second=229 amount=-1 +kerning first=103 second=303 amount=-1 +kerning first=193 second=217 amount=-2 +kerning first=332 second=229 amount=-1 +kerning first=281 second=305 amount=-1 +kerning first=228 second=106 amount=-1 +kerning first=310 second=67 amount=-1 +kerning first=305 second=8220 amount=-1 +kerning first=264 second=106 amount=-1 +kerning first=274 second=67 amount=-1 +kerning first=353 second=305 amount=-1 +kerning first=65 second=346 amount=-2 +kerning first=260 second=81 amount=-1 +kerning first=317 second=305 amount=-1 +kerning first=80 second=282 amount=-1 +kerning first=278 second=346 amount=-1 +kerning first=310 second=333 amount=-1 +kerning first=233 second=230 amount=-1 +kerning first=79 second=204 amount=-1 +kerning first=206 second=346 amount=-1 +kerning first=382 second=333 amount=-1 +kerning first=336 second=106 amount=-1 +kerning first=269 second=230 amount=-1 +kerning first=311 second=281 amount=-1 +kerning first=87 second=256 amount=-3 +kerning first=370 second=224 amount=-1 +kerning first=324 second=316 amount=-1 +kerning first=369 second=307 amount=-1 +kerning first=197 second=79 amount=-1 +kerning first=256 second=218 amount=-2 +kerning first=296 second=243 amount=-1 +kerning first=334 second=352 amount=-1 +kerning first=217 second=99 amount=-1 +kerning first=368 second=243 amount=-1 +kerning first=211 second=69 amount=-1 +kerning first=119 second=243 amount=-1 +kerning first=1039 second=1060 amount=-1 +kerning first=72 second=332 amount=-1 +kerning first=377 second=79 amount=-1 +kerning first=200 second=381 amount=-1 +kerning first=352 second=80 amount=-1 +kerning first=260 second=243 amount=-1 +kerning first=1027 second=1098 amount=-1 +kerning first=311 second=171 amount=-2 +kerning first=83 second=229 amount=-1 +kerning first=336 second=120 amount=-1 +kerning first=221 second=268 amount=-1 +kerning first=321 second=332 amount=-1 +kerning first=88 second=334 amount=-1 +kerning first=79 second=218 amount=-1 +kerning first=87 second=120 amount=-1 +kerning first=374 second=118 amount=-1 +kerning first=193 second=334 amount=-1 +kerning first=84 second=192 amount=-3 +kerning first=119 second=229 amount=-2 +kerning first=228 second=120 amount=-1 +kerning first=8222 second=371 amount=-1 +kerning first=267 second=229 amount=-1 +kerning first=262 second=99 amount=-1 +kerning first=69 second=109 amount=-1 +kerning first=204 second=339 amount=-1 +kerning first=311 second=279 amount=-1 +kerning first=199 second=242 amount=-1 +kerning first=303 second=229 amount=-1 +kerning first=187 second=289 amount=-1 +kerning first=223 second=289 amount=-1 +kerning first=99 second=339 amount=-1 +kerning first=231 second=229 amount=-1 +kerning first=262 second=112 amount=-1 +kerning first=105 second=109 amount=-1 +kerning first=259 second=289 amount=-1 +kerning first=307 second=122 amount=-1 +kerning first=379 second=242 amount=-1 +kerning first=295 second=289 amount=-1 +kerning first=370 second=99 amount=-1 +kerning first=331 second=289 amount=-1 +kerning first=260 second=89 amount=-3 +kerning first=286 second=282 amount=-1 +kerning first=339 second=229 amount=-1 +kerning first=367 second=289 amount=-1 +kerning first=200 second=230 amount=-1 +kerning first=314 second=232 amount=-1 +kerning first=375 second=229 amount=-2 +kerning first=332 second=89 amount=-1 +kerning first=214 second=282 amount=-1 +kerning first=219 second=379 amount=-1 +kerning first=235 second=106 amount=-1 +kerning first=65 second=232 amount=-1 +kerning first=203 second=119 amount=-1 +kerning first=206 second=232 amount=-1 +kerning first=72 second=346 amount=-1 +kerning first=8216 second=261 amount=-1 +kerning first=338 second=75 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=275 second=119 amount=-1 +kerning first=85 second=99 amount=-1 +kerning first=321 second=346 amount=-1 +kerning first=311 second=119 amount=-1 +kerning first=249 second=307 amount=-1 +kerning first=347 second=119 amount=-1 +kerning first=222 second=364 amount=-1 +kerning first=307 second=106 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=213 second=346 amount=-1 +kerning first=82 second=289 amount=-1 +kerning first=202 second=209 amount=-1 +kerning first=220 second=212 amount=-1 +kerning first=256 second=212 amount=-1 +kerning first=66 second=87 amount=-2 +kerning first=8220 second=354 amount=-1 +kerning first=8217 second=288 amount=-1 +kerning first=89 second=269 amount=-2 +kerning first=82 second=8249 amount=-2 +kerning first=346 second=209 amount=-1 +kerning first=122 second=316 amount=-1 +kerning first=194 second=269 amount=-1 +kerning first=1058 second=1119 amount=-1 +kerning first=1061 second=1072 amount=-1 +kerning first=274 second=209 amount=-1 +kerning first=302 second=269 amount=-1 +kerning first=227 second=316 amount=-1 +kerning first=8222 second=251 amount=-1 +kerning first=249 second=8220 amount=-2 +kerning first=266 second=269 amount=-1 +kerning first=263 second=316 amount=-1 +kerning first=204 second=79 amount=-1 +kerning first=374 second=269 amount=-2 +kerning first=99 second=291 amount=-1 +kerning first=330 second=288 amount=-1 +kerning first=67 second=229 amount=-1 +kerning first=321 second=76 amount=-1 +kerning first=83 second=89 amount=-1 +kerning first=213 second=72 amount=-1 +kerning first=209 second=199 amount=-1 +kerning first=66 second=274 amount=-2 +kerning first=364 second=212 amount=-1 +kerning first=90 second=229 amount=-1 +kerning first=213 second=76 amount=-1 +kerning first=317 second=199 amount=-1 +kerning first=280 second=368 amount=-1 +kerning first=379 second=365 amount=-1 +kerning first=219 second=109 amount=-1 +kerning first=321 second=72 amount=-1 +kerning first=70 second=216 amount=-1 +kerning first=218 second=192 amount=-2 +kerning first=249 second=226 amount=-1 +kerning first=316 second=102 amount=-1 +kerning first=217 second=245 amount=-1 +kerning first=210 second=8221 amount=-1 +kerning first=205 second=286 amount=-1 +kerning first=236 second=46 amount=-1 +kerning first=321 second=336 amount=-1 +kerning first=105 second=8221 amount=-1 +kerning first=272 second=46 amount=-1 +kerning first=67 second=280 amount=-1 +kerning first=325 second=245 amount=-1 +kerning first=246 second=8221 amount=-1 +kerning first=1043 second=1083 amount=-2 +kerning first=289 second=245 amount=-1 +kerning first=8218 second=84 amount=-3 +kerning first=327 second=266 amount=-1 +kerning first=1027 second=1086 amount=-1 +kerning first=280 second=102 amount=-1 +kerning first=253 second=245 amount=-1 +kerning first=303 second=335 amount=-1 +kerning first=90 second=257 amount=-1 +kerning first=198 second=296 amount=-1 +kerning first=258 second=219 amount=-2 +kerning first=226 second=252 amount=-1 +kerning first=112 second=103 amount=-1 +kerning first=375 second=335 amount=-1 +kerning first=222 second=219 amount=-1 +kerning first=371 second=316 amount=-1 +kerning first=262 second=252 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=298 second=252 amount=-1 +kerning first=78 second=269 amount=-1 +kerning first=1088 second=1095 amount=-1 +kerning first=72 second=226 amount=-1 +kerning first=195 second=335 amount=-1 +kerning first=81 second=219 amount=-1 +kerning first=108 second=226 amount=-1 +kerning first=290 second=202 amount=-1 +kerning first=231 second=335 amount=-1 +kerning first=45 second=219 amount=-2 +kerning first=85 second=252 amount=-1 +kerning first=267 second=335 amount=-1 +kerning first=213 second=226 amount=-1 +kerning first=76 second=369 amount=-1 +kerning first=282 second=259 amount=-1 +kerning first=291 second=375 amount=-1 +kerning first=103 second=253 amount=-1 +kerning first=379 second=246 amount=-1 +kerning first=354 second=259 amount=-2 +kerning first=381 second=116 amount=-1 +kerning first=219 second=375 amount=-1 +kerning first=1058 second=1113 amount=-1 +kerning first=8220 second=241 amount=-1 +kerning first=105 second=259 amount=-1 +kerning first=244 second=253 amount=-1 +kerning first=104 second=45 amount=-1 +kerning first=325 second=103 amount=-1 +kerning first=280 second=362 amount=-1 +kerning first=69 second=259 amount=-1 +kerning first=370 second=252 amount=-1 +kerning first=289 second=103 amount=-1 +kerning first=210 second=259 amount=-1 +kerning first=363 second=375 amount=-1 +kerning first=253 second=103 amount=-2 +kerning first=352 second=362 amount=-1 +kerning first=199 second=246 amount=-1 +kerning first=352 second=253 amount=-1 +kerning first=83 second=83 amount=-1 +kerning first=217 second=103 amount=-2 +kerning first=221 second=122 amount=-2 +kerning first=219 second=266 amount=-1 +kerning first=264 second=382 amount=-1 +kerning first=354 second=109 amount=-1 +kerning first=116 second=122 amount=-1 +kerning first=208 second=362 amount=-1 +kerning first=336 second=382 amount=-1 +kerning first=67 second=225 amount=-1 +kerning first=260 second=83 amount=-2 +kerning first=8216 second=331 amount=-1 +kerning first=296 second=83 amount=-1 +kerning first=365 second=122 amount=-1 +kerning first=211 second=323 amount=-1 +kerning first=364 second=256 amount=-2 +kerning first=87 second=382 amount=-2 +kerning first=217 second=369 amount=-1 +kerning first=72 second=336 amount=-1 +kerning first=8216 second=65 amount=-4 +kerning first=78 second=375 amount=-1 +kerning first=332 second=83 amount=-1 +kerning first=78 second=266 amount=-1 +kerning first=8220 second=364 amount=-1 +kerning first=325 second=369 amount=-1 +kerning first=368 second=83 amount=-1 +kerning first=289 second=369 amount=-1 +kerning first=282 second=109 amount=-1 +kerning first=67 second=362 amount=-1 +kerning first=67 second=89 amount=-1 +kerning first=231 second=289 amount=-1 +kerning first=1057 second=1055 amount=-1 +kerning first=311 second=273 amount=-1 +kerning first=203 second=104 amount=-1 +kerning first=232 second=241 amount=-1 +kerning first=74 second=233 amount=-1 +kerning first=255 second=115 amount=-1 +kerning first=381 second=263 amount=-1 +kerning first=291 second=115 amount=-1 +kerning first=79 second=330 amount=-1 +kerning first=119 second=355 amount=-1 +kerning first=287 second=233 amount=-1 +kerning first=86 second=198 amount=-3 +kerning first=90 second=223 amount=-1 +kerning first=219 second=115 amount=-1 +kerning first=83 second=355 amount=-1 +kerning first=88 second=213 amount=-1 +kerning first=317 second=313 amount=-1 +kerning first=323 second=233 amount=-1 +kerning first=327 second=115 amount=-1 +kerning first=8216 second=337 amount=-1 +kerning first=193 second=213 amount=-1 +kerning first=85 second=365 amount=-1 +kerning first=363 second=115 amount=-1 +kerning first=260 second=355 amount=-1 +kerning first=74 second=350 amount=-1 +kerning first=214 second=227 amount=-1 +kerning first=1027 second=1090 amount=-1 +kerning first=201 second=110 amount=-1 +kerning first=379 second=248 amount=-1 +kerning first=68 second=313 amount=-1 +kerning first=202 second=325 amount=-1 +kerning first=1050 second=1063 amount=-2 +kerning first=76 second=363 amount=-1 +kerning first=1046 second=1038 amount=-1 +kerning first=197 second=85 amount=-2 +kerning first=45 second=225 amount=-1 +kerning first=274 second=325 amount=-1 +kerning first=84 second=303 amount=-1 +kerning first=81 second=225 amount=-1 +kerning first=363 second=8220 amount=-2 +kerning first=117 second=225 amount=-1 +kerning first=381 second=110 amount=-1 +kerning first=217 second=363 amount=-1 +kerning first=346 second=325 amount=-1 +kerning first=333 second=303 amount=-1 +kerning first=369 second=303 amount=-1 +kerning first=289 second=363 amount=-1 +kerning first=195 second=221 amount=-3 +kerning first=323 second=350 amount=-1 +kerning first=376 second=302 amount=-1 +kerning first=290 second=315 amount=-1 +kerning first=8250 second=207 amount=-3 +kerning first=321 second=338 amount=-1 +kerning first=330 second=225 amount=-1 +kerning first=73 second=290 amount=-1 +kerning first=307 second=98 amount=-1 +kerning first=366 second=225 amount=-2 +kerning first=67 second=102 amount=-1 +kerning first=86 second=196 amount=-3 +kerning first=219 second=260 amount=-2 +kerning first=264 second=380 amount=-1 +kerning first=199 second=98 amount=-1 +kerning first=313 second=286 amount=-1 +kerning first=344 second=46 amount=-1 +kerning first=222 second=225 amount=-1 +kerning first=336 second=380 amount=-1 +kerning first=72 second=338 amount=-1 +kerning first=8220 second=362 amount=-1 +kerning first=380 second=46 amount=-1 +kerning first=69 second=377 amount=-1 +kerning first=298 second=367 amount=-1 +kerning first=1043 second=1077 amount=-1 +kerning first=103 second=307 amount=-1 +kerning first=226 second=367 amount=-1 +kerning first=65 second=352 amount=-2 +kerning first=201 second=261 amount=-1 +kerning first=262 second=367 amount=-1 +kerning first=350 second=86 amount=-1 +kerning first=206 second=352 amount=-1 +kerning first=305 second=351 amount=-1 +kerning first=256 second=210 amount=-1 +kerning first=354 second=111 amount=-2 +kerning first=354 second=325 amount=-1 +kerning first=202 second=327 amount=-1 +kerning first=282 second=377 amount=-1 +kerning first=269 second=351 amount=-1 +kerning first=220 second=210 amount=-1 +kerning first=193 second=211 amount=-1 +kerning first=278 second=352 amount=-1 +kerning first=377 second=351 amount=-1 +kerning first=274 second=327 amount=-1 +kerning first=210 second=377 amount=-1 +kerning first=85 second=367 amount=-1 +kerning first=88 second=211 amount=-1 +kerning first=119 second=235 amount=-1 +kerning first=381 second=261 amount=-1 +kerning first=370 second=250 amount=-1 +kerning first=346 second=327 amount=-1 +kerning first=46 second=171 amount=-1 +kerning first=1072 second=1090 amount=-1 +kerning first=1063 second=1092 amount=-1 +kerning first=82 second=171 amount=-2 +kerning first=65 second=86 amount=-3 +kerning first=260 second=235 amount=-1 +kerning first=118 second=171 amount=-2 +kerning first=264 second=112 amount=-1 +kerning first=198 second=302 amount=-1 +kerning first=296 second=235 amount=-1 +kerning first=196 second=287 amount=-1 +kerning first=226 second=250 amount=-1 +kerning first=278 second=86 amount=-1 +kerning first=368 second=235 amount=-1 +kerning first=268 second=287 amount=-1 +kerning first=298 second=250 amount=-1 +kerning first=1074 second=1103 amount=-1 +kerning first=232 second=287 amount=-1 +kerning first=87 second=112 amount=-1 +kerning first=262 second=250 amount=-1 +kerning first=1038 second=1103 amount=-3 +kerning first=303 second=242 amount=-1 +kerning first=89 second=275 amount=-2 +kerning first=269 second=353 amount=-1 +kerning first=331 second=171 amount=-1 +kerning first=1072 second=1091 amount=-1 +kerning first=304 second=287 amount=-1 +kerning first=255 second=113 amount=-1 +kerning first=305 second=353 amount=-1 +kerning first=367 second=171 amount=-1 +kerning first=219 second=113 amount=-1 +kerning first=376 second=287 amount=-2 +kerning first=377 second=353 amount=-1 +kerning first=85 second=250 amount=-1 +kerning first=370 second=365 amount=-1 +kerning first=83 second=237 amount=-1 +kerning first=298 second=365 amount=-1 +kerning first=197 second=353 amount=-1 +kerning first=200 second=197 amount=-1 +kerning first=259 second=171 amount=-1 +kerning first=379 second=100 amount=-1 +kerning first=201 second=378 amount=-1 +kerning first=262 second=365 amount=-1 +kerning first=199 second=366 amount=-1 +kerning first=327 second=113 amount=-1 +kerning first=233 second=353 amount=-1 +kerning first=295 second=171 amount=-1 +kerning first=226 second=365 amount=-1 +kerning first=350 second=352 amount=-1 +kerning first=272 second=197 amount=-2 +kerning first=332 second=87 amount=-1 +kerning first=258 second=45 amount=-2 +kerning first=199 second=100 amount=-1 +kerning first=260 second=87 amount=-3 +kerning first=103 second=249 amount=-1 +kerning first=87 second=262 amount=-1 +kerning first=374 second=275 amount=-2 +kerning first=313 second=288 amount=-1 +kerning first=375 second=223 amount=-1 +kerning first=266 second=275 amount=-1 +kerning first=45 second=74 amount=-2 +kerning first=352 second=249 amount=-1 +kerning first=192 second=262 amount=-1 +kerning first=302 second=275 amount=-1 +kerning first=81 second=74 amount=-1 +kerning first=8222 second=257 amount=-1 +kerning first=381 second=378 amount=-1 +kerning first=194 second=275 amount=-1 +kerning first=83 second=87 amount=-1 +kerning first=280 second=249 amount=-1 +kerning first=205 second=288 amount=-1 +kerning first=264 second=262 amount=-2 +kerning first=316 second=249 amount=-1 +kerning first=1036 second=1091 amount=-1 +kerning first=364 second=262 amount=-1 +kerning first=200 second=314 amount=-1 +kerning first=222 second=217 amount=-1 +kerning first=264 second=288 amount=-2 +kerning first=258 second=217 amount=-2 +kerning first=89 second=243 amount=-2 +kerning first=236 second=314 amount=-1 +kerning first=194 second=243 amount=-1 +kerning first=344 second=314 amount=-1 +kerning first=379 second=80 amount=-1 +kerning first=325 second=333 amount=-1 +kerning first=289 second=333 amount=-1 +kerning first=87 second=288 amount=-1 +kerning first=380 second=314 amount=-1 +kerning first=192 second=288 amount=-1 +kerning first=120 second=113 amount=-1 +kerning first=66 second=366 amount=-2 +kerning first=245 second=307 amount=-1 +kerning first=310 second=269 amount=-1 +kerning first=108 second=224 amount=-1 +kerning first=8216 second=121 amount=-1 +kerning first=354 second=281 amount=-2 +kerning first=281 second=307 amount=-1 +kerning first=382 second=255 amount=-1 +kerning first=72 second=224 amount=-1 +kerning first=66 second=120 amount=-2 +kerning first=346 second=255 amount=-1 +kerning first=313 second=198 amount=-1 +kerning first=353 second=307 amount=-1 +kerning first=310 second=255 amount=-2 +kerning first=220 second=262 amount=-1 +kerning first=45 second=217 amount=-2 +kerning first=256 second=262 amount=-1 +kerning first=379 second=326 amount=-1 +kerning first=81 second=217 amount=-1 +kerning first=266 second=243 amount=-1 +kerning first=351 second=120 amount=-1 +kerning first=105 second=353 amount=-1 +kerning first=336 second=274 amount=-1 +kerning first=230 second=229 amount=-1 +kerning first=85 second=101 amount=-1 +kerning first=222 second=203 amount=-1 +kerning first=89 second=229 amount=-2 +kerning first=121 second=101 amount=-1 +kerning first=264 second=274 amount=-1 +kerning first=323 second=118 amount=-1 +kerning first=338 second=229 amount=-1 +kerning first=290 second=75 amount=-1 +kerning first=1056 second=1076 amount=-1 +kerning first=364 second=248 amount=-1 +kerning first=287 second=118 amount=-1 +kerning first=243 second=120 amount=-1 +kerning first=374 second=229 amount=-2 +kerning first=262 second=101 amount=-1 +kerning first=45 second=203 amount=-3 +kerning first=256 second=248 amount=-1 +kerning first=279 second=120 amount=-1 +kerning first=266 second=229 amount=-1 +kerning first=298 second=101 amount=-1 +kerning first=81 second=203 amount=-1 +kerning first=66 second=284 amount=-1 +kerning first=315 second=120 amount=-1 +kerning first=302 second=229 amount=-1 +kerning first=200 second=68 amount=-1 +kerning first=370 second=101 amount=-1 +kerning first=199 second=80 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=328 second=8220 amount=-2 +kerning first=280 second=316 amount=-1 +kerning first=354 second=267 amount=-2 +kerning first=251 second=118 amount=-1 +kerning first=8220 second=85 amount=-1 +kerning first=66 second=106 amount=-1 +kerning first=194 second=242 amount=-1 +kerning first=76 second=73 amount=-1 +kerning first=256 second=8220 amount=-3 +kerning first=346 second=241 amount=-1 +kerning first=315 second=106 amount=-1 +kerning first=351 second=106 amount=-1 +kerning first=74 second=118 amount=-1 +kerning first=120 second=99 amount=-1 +kerning first=115 second=8220 amount=-1 +kerning first=243 second=106 amount=-1 +kerning first=307 second=116 amount=-1 +kerning first=84 second=99 amount=-2 +kerning first=382 second=241 amount=-1 +kerning first=79 second=8220 amount=-1 +kerning first=279 second=106 amount=-1 +kerning first=316 second=363 amount=-1 +kerning first=269 second=111 amount=-1 +kerning first=325 second=361 amount=-1 +kerning first=289 second=361 amount=-1 +kerning first=192 second=316 amount=-1 +kerning first=228 second=316 amount=-1 +kerning first=199 second=66 amount=-1 +kerning first=264 second=316 amount=-1 +kerning first=67 second=368 amount=-1 +kerning first=313 second=212 amount=-1 +kerning first=246 second=8220 amount=-1 +kerning first=374 second=257 amount=-2 +kerning first=278 second=350 amount=-1 +kerning first=205 second=212 amount=-1 +kerning first=197 second=111 amount=-1 +kerning first=208 second=368 amount=-1 +kerning first=287 second=104 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=251 second=104 amount=-1 +kerning first=69 second=323 amount=-1 +kerning first=200 second=82 amount=-1 +kerning first=220 second=44 amount=-3 +kerning first=1030 second=1057 amount=-1 +kerning first=291 second=275 amount=-1 +kerning first=76 second=361 amount=-1 +kerning first=377 second=111 amount=-1 +kerning first=352 second=368 amount=-1 +kerning first=8216 second=339 amount=-1 +kerning first=311 second=228 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=290 second=89 amount=-1 +kerning first=210 second=323 amount=-1 +kerning first=379 second=66 amount=-1 +kerning first=87 second=274 amount=-1 +kerning first=266 second=280 amount=-1 +kerning first=1102 second=1113 amount=-1 +kerning first=356 second=250 amount=-1 +kerning first=199 second=326 amount=-1 +kerning first=187 second=205 amount=-3 +kerning first=80 second=278 amount=-1 +kerning first=282 second=323 amount=-1 +kerning first=377 second=97 amount=-1 +kerning first=235 second=326 amount=-1 +kerning first=325 second=347 amount=-1 +kerning first=221 second=278 amount=-1 +kerning first=74 second=378 amount=-1 +kerning first=87 second=302 amount=-1 +kerning first=269 second=97 amount=-1 +kerning first=289 second=347 amount=-1 +kerning first=354 second=323 amount=-1 +kerning first=84 second=362 amount=-1 +kerning first=307 second=326 amount=-1 +kerning first=253 second=347 amount=-1 +kerning first=233 second=371 amount=-1 +kerning first=118 second=233 amount=-1 +kerning first=199 second=354 amount=-1 +kerning first=269 second=371 amount=-1 +kerning first=82 second=233 amount=-1 +kerning first=8216 second=353 amount=-1 +kerning first=284 second=250 amount=-1 +kerning first=305 second=371 amount=-1 +kerning first=112 second=347 amount=-1 +kerning first=76 second=347 amount=-1 +kerning first=68 second=89 amount=-1 +kerning first=323 second=378 amount=-1 +kerning first=217 second=45 amount=-3 +kerning first=254 second=103 amount=-1 +kerning first=287 second=378 amount=-1 +kerning first=338 second=257 amount=-1 +kerning first=218 second=103 amount=-2 +kerning first=289 second=45 amount=-1 +kerning first=253 second=333 amount=-1 +kerning first=71 second=250 amount=-1 +kerning first=253 second=45 amount=-2 +kerning first=217 second=333 amount=-1 +kerning first=1048 second=1092 amount=-1 +kerning first=336 second=302 amount=-1 +kerning first=361 second=45 amount=-1 +kerning first=77 second=103 amount=-1 +kerning first=187 second=219 amount=-2 +kerning first=356 second=264 amount=-1 +kerning first=205 second=226 amount=-1 +kerning first=325 second=45 amount=-2 +kerning first=251 second=378 amount=-1 +kerning first=264 second=302 amount=-1 +kerning first=82 second=219 amount=-1 +kerning first=277 second=226 amount=-1 +kerning first=89 second=257 amount=-2 +kerning first=200 second=110 amount=-1 +kerning first=113 second=363 amount=-1 +kerning first=8216 second=196 amount=-4 +kerning first=212 second=194 amount=-2 +kerning first=79 second=220 amount=-1 +kerning first=70 second=65 amount=-2 +kerning first=236 second=110 amount=-1 +kerning first=377 second=214 amount=-1 +kerning first=71 second=194 amount=-1 +kerning first=218 second=363 amount=-1 +kerning first=1059 second=1089 amount=-2 +kerning first=8220 second=221 amount=-1 +kerning first=205 second=240 amount=-1 +kerning first=315 second=310 amount=-1 +kerning first=1114 second=1078 amount=-1 +kerning first=211 second=65 amount=-2 +kerning first=290 second=363 amount=-1 +kerning first=303 second=259 amount=-1 +kerning first=115 second=318 amount=-1 +kerning first=256 second=220 amount=-2 +kerning first=379 second=284 amount=-1 +kerning first=380 second=110 amount=-1 +kerning first=326 second=363 amount=-1 +kerning first=267 second=259 amount=-1 +kerning first=77 second=117 amount=-1 +kerning first=362 second=363 amount=-1 +kerning first=375 second=259 amount=-2 +kerning first=197 second=214 amount=-1 +kerning first=8250 second=241 amount=-1 +kerning first=339 second=259 amount=-1 +kerning first=256 second=318 amount=-1 +kerning first=354 second=77 amount=-1 +kerning first=264 second=330 amount=-1 +kerning first=196 second=369 amount=-1 +kerning first=90 second=259 amount=-1 +kerning first=328 second=318 amount=-1 +kerning first=282 second=77 amount=-1 +kerning first=370 second=375 amount=-1 +kerning first=268 second=369 amount=-1 +kerning first=231 second=259 amount=-1 +kerning first=232 second=369 amount=-1 +kerning first=356 second=194 amount=-3 +kerning first=1025 second=1030 amount=-1 +kerning first=336 second=330 amount=-1 +kerning first=284 second=194 amount=-1 +kerning first=100 second=254 amount=-1 +kerning first=315 second=324 amount=-1 +kerning first=258 second=374 amount=-3 +kerning first=8250 second=255 amount=-2 +kerning first=85 second=375 amount=-1 +kerning first=79 second=304 amount=-1 +kerning first=279 second=324 amount=-1 +kerning first=222 second=374 amount=-1 +kerning first=332 second=346 amount=-1 +kerning first=8220 second=235 amount=-1 +kerning first=303 second=273 amount=-1 +kerning first=241 second=254 amount=-1 +kerning first=351 second=324 amount=-1 +kerning first=209 second=279 amount=-1 +kerning first=1059 second=1103 amount=-3 +kerning first=381 second=253 amount=-2 +kerning first=298 second=375 amount=-1 +kerning first=87 second=330 amount=-1 +kerning first=231 second=273 amount=-1 +kerning first=81 second=374 amount=-1 +kerning first=218 second=377 amount=-1 +kerning first=45 second=374 amount=-2 +kerning first=304 second=369 amount=-1 +kerning first=226 second=375 amount=-1 +kerning first=121 second=318 amount=-1 +kerning first=376 second=369 amount=-1 +kerning first=256 second=234 amount=-1 +kerning first=199 second=284 amount=-2 +kerning first=1061 second=1058 amount=-1 +kerning first=362 second=377 amount=-1 +kerning first=88 second=332 amount=-1 +kerning first=1025 second=1058 amount=-1 +kerning first=66 second=310 amount=-2 +kerning first=199 second=298 amount=-1 +kerning first=232 second=355 amount=-1 +kerning first=209 second=45 amount=-2 +kerning first=290 second=377 amount=-1 +kerning first=193 second=332 amount=-1 +kerning first=196 second=355 amount=-1 +kerning first=364 second=234 amount=-1 +kerning first=264 second=344 amount=-1 +kerning first=248 second=311 amount=-1 +kerning first=90 second=287 amount=-2 +kerning first=1057 second=1043 amount=-1 +kerning first=376 second=355 amount=-1 +kerning first=1051 second=1077 amount=-1 +kerning first=195 second=287 amount=-1 +kerning first=379 second=298 amount=-1 +kerning first=220 second=234 amount=-1 +kerning first=87 second=344 amount=-1 +kerning first=77 second=363 amount=-1 +kerning first=65 second=242 amount=-1 +kerning first=203 second=313 amount=-1 +kerning first=267 second=287 amount=-1 +kerning first=195 second=8217 amount=-3 +kerning first=280 second=108 amount=-1 +kerning first=220 second=290 amount=-1 +kerning first=362 second=335 amount=-1 +kerning first=231 second=287 amount=-1 +kerning first=231 second=8217 amount=-1 +kerning first=256 second=290 amount=-1 +kerning first=354 second=105 amount=-1 +kerning first=339 second=287 amount=-1 +kerning first=267 second=8217 amount=-1 +kerning first=352 second=108 amount=-1 +kerning first=303 second=287 amount=-1 +kerning first=351 second=380 amount=-1 +kerning first=66 second=338 amount=-1 +kerning first=251 second=353 amount=-1 +kerning first=206 second=242 amount=-1 +kerning first=218 second=335 amount=-1 +kerning first=375 second=287 amount=-2 +kerning first=314 second=242 amount=-1 +kerning first=246 second=105 amount=-1 +kerning first=83 second=315 amount=-1 +kerning first=208 second=197 amount=-2 +kerning first=8218 second=252 amount=-1 +kerning first=105 second=105 amount=-1 +kerning first=1055 second=1060 amount=-1 +kerning first=1101 second=1083 amount=-1 +kerning first=1059 second=1117 amount=-2 +kerning first=243 second=380 amount=-1 +kerning first=89 second=259 amount=-2 +kerning first=280 second=197 amount=-1 +kerning first=279 second=380 amount=-1 +kerning first=201 second=225 amount=-1 +kerning first=77 second=335 amount=-1 +kerning first=78 second=119 amount=-1 +kerning first=377 second=228 amount=-1 +kerning first=315 second=380 amount=-1 +kerning first=379 second=270 amount=-1 +kerning first=113 second=335 amount=-1 +kerning first=1040 second=1038 amount=-2 +kerning first=375 second=231 amount=-1 +kerning first=352 second=197 amount=-2 +kerning first=199 second=270 amount=-1 +kerning first=339 second=8217 amount=-1 +kerning first=66 second=380 amount=-2 +kerning first=332 second=315 amount=-1 +kerning first=219 second=119 amount=-1 +kerning first=269 second=228 amount=-1 +kerning first=244 second=108 amount=-1 +kerning first=102 second=380 amount=-1 +kerning first=80 second=74 amount=-1 +kerning first=255 second=119 amount=-1 +kerning first=233 second=228 amount=-1 +kerning first=291 second=119 amount=-1 +kerning first=365 second=46 amount=-1 +kerning first=244 second=122 amount=-1 +kerning first=90 second=231 amount=-1 +kerning first=377 second=200 amount=-1 +kerning first=66 second=352 amount=-2 +kerning first=221 second=74 amount=-2 +kerning first=208 second=122 amount=-1 +kerning first=363 second=119 amount=-1 +kerning first=1006 second=1007 amount=-1 +kerning first=366 second=346 amount=-1 +kerning first=282 second=103 amount=-1 +kerning first=103 second=122 amount=-1 +kerning first=221 second=46 amount=-3 +kerning first=210 second=77 amount=-1 +kerning first=267 second=231 amount=-1 +kerning first=257 second=46 amount=-1 +kerning first=107 second=337 amount=-1 +kerning first=352 second=122 amount=-1 +kerning first=199 second=256 amount=-2 +kerning first=316 second=122 amount=-1 +kerning first=195 second=231 amount=-1 +kerning first=69 second=77 amount=-1 +kerning first=315 second=352 amount=-1 +kerning first=381 second=225 amount=-1 +kerning first=280 second=122 amount=-1 +kerning first=84 second=344 amount=-1 +kerning first=75 second=350 amount=-1 +kerning first=267 second=245 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=379 second=256 amount=-1 +kerning first=231 second=245 amount=-1 +kerning first=315 second=366 amount=-1 +kerning first=354 second=192 amount=-3 +kerning first=195 second=245 amount=-1 +kerning first=205 second=367 amount=-1 +kerning first=266 second=45 amount=-2 +kerning first=201 second=211 amount=-1 +kerning first=250 second=102 amount=-1 +kerning first=67 second=122 amount=-1 +kerning first=264 second=278 amount=-1 +kerning first=286 second=102 amount=-1 +kerning first=375 second=245 amount=-1 +kerning first=364 second=290 amount=-1 +kerning first=1063 second=1086 amount=-1 +kerning first=8250 second=227 amount=-1 +kerning first=8220 second=193 amount=-4 +kerning first=303 second=245 amount=-1 +kerning first=199 second=248 amount=-1 +kerning first=221 second=112 amount=-1 +kerning first=283 second=107 amount=-1 +kerning first=76 second=8221 amount=-2 +kerning first=193 second=171 amount=-2 +kerning first=258 second=86 amount=-3 +kerning first=229 second=171 amount=-1 +kerning first=222 second=86 amount=-1 +kerning first=8220 second=368 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=112 second=8221 amount=-1 +kerning first=347 second=105 amount=-1 +kerning first=88 second=171 amount=-2 +kerning first=275 second=105 amount=-1 +kerning first=316 second=235 amount=-1 +kerning first=8222 second=87 amount=-3 +kerning first=304 second=67 amount=-1 +kerning first=268 second=67 amount=-2 +kerning first=203 second=81 amount=-1 +kerning first=267 second=45 amount=-1 +kerning first=196 second=67 amount=-1 +kerning first=98 second=105 amount=-1 +kerning first=365 second=112 amount=-1 +kerning first=214 second=296 amount=-1 +kerning first=1062 second=1098 amount=-1 +kerning first=369 second=375 amount=-1 +kerning first=81 second=86 amount=-1 +kerning first=370 second=228 amount=-1 +kerning first=286 second=296 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=45 second=86 amount=-2 +kerning first=99 second=353 amount=-1 +kerning first=1100 second=1097 amount=-1 +kerning first=369 second=122 amount=-1 +kerning first=1036 second=1079 amount=-1 +kerning first=368 second=249 amount=-1 +kerning first=88 second=100 amount=-1 +kerning first=204 second=353 amount=-1 +kerning first=288 second=251 amount=-1 +kerning first=193 second=100 amount=-1 +kerning first=86 second=206 amount=-1 +kerning first=82 second=275 amount=-1 +kerning first=220 second=350 amount=-1 +kerning first=235 second=257 amount=-1 +kerning first=203 second=379 amount=-1 +kerning first=118 second=275 amount=-1 +kerning first=1116 second=1105 amount=-1 +kerning first=262 second=204 amount=-1 +kerning first=73 second=334 amount=-1 +kerning first=376 second=67 amount=-1 +kerning first=334 second=204 amount=-1 +kerning first=354 second=365 amount=-1 +kerning first=378 second=230 amount=-1 +kerning first=274 second=197 amount=-1 +kerning first=67 second=211 amount=-2 +kerning first=218 second=237 amount=-1 +kerning first=83 second=249 amount=-1 +kerning first=278 second=256 amount=-1 +kerning first=8217 second=212 amount=-1 +kerning first=68 second=304 amount=-1 +kerning first=313 second=268 amount=-1 +kerning first=234 second=230 amount=-1 +kerning first=224 second=249 amount=-1 +kerning first=204 second=83 amount=-1 +kerning first=260 second=249 amount=-1 +kerning first=280 second=211 amount=-1 +kerning first=205 second=268 amount=-1 +kerning first=198 second=230 amount=-1 +kerning first=1025 second=1055 amount=-1 +kerning first=350 second=256 amount=-2 +kerning first=288 second=289 amount=-1 +kerning first=70 second=339 amount=-1 +kerning first=381 second=187 amount=-1 +kerning first=199 second=106 amount=-1 +kerning first=324 second=289 amount=-1 +kerning first=122 second=244 amount=-1 +kerning first=203 second=109 amount=-1 +kerning first=352 second=374 amount=-1 +kerning first=211 second=192 amount=-2 +kerning first=278 second=284 amount=-1 +kerning first=45 second=114 amount=-1 +kerning first=275 second=109 amount=-1 +kerning first=290 second=291 amount=-1 +kerning first=263 second=244 amount=-1 +kerning first=317 second=237 amount=-1 +kerning first=206 second=284 amount=-1 +kerning first=88 second=199 amount=-1 +kerning first=370 second=232 amount=-1 +kerning first=70 second=192 amount=-2 +kerning first=281 second=237 amount=-1 +kerning first=8250 second=311 amount=-1 +kerning first=245 second=237 amount=-1 +kerning first=193 second=199 amount=-1 +kerning first=371 second=244 amount=-1 +kerning first=69 second=89 amount=-1 +kerning first=249 second=351 amount=-1 +kerning first=262 second=232 amount=-1 +kerning first=66 second=69 amount=-2 +kerning first=8222 second=361 amount=-1 +kerning first=8217 second=264 amount=-1 +kerning first=368 second=277 amount=-1 +kerning first=221 second=116 amount=-1 +kerning first=298 second=232 amount=-1 +kerning first=85 second=232 amount=-1 +kerning first=193 second=346 amount=-2 +kerning first=260 second=277 amount=-1 +kerning first=219 second=194 amount=-2 +kerning first=216 second=289 amount=-1 +kerning first=317 second=110 amount=-1 +kerning first=328 second=8217 amount=-2 +kerning first=1047 second=1034 amount=-1 +kerning first=121 second=232 amount=-1 +kerning first=296 second=277 amount=-1 +kerning first=81 second=350 amount=-1 +kerning first=268 second=327 amount=-1 +kerning first=203 second=351 amount=-1 +kerning first=198 second=202 amount=-1 +kerning first=311 second=351 amount=-1 +kerning first=45 second=350 amount=-2 +kerning first=240 second=121 amount=-1 +kerning first=378 second=254 amount=-1 +kerning first=119 second=277 amount=-1 +kerning first=275 second=351 amount=-1 +kerning first=258 second=350 amount=-2 +kerning first=376 second=327 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=1098 second=1102 amount=-1 +kerning first=99 second=121 amount=-1 +kerning first=1044 second=1095 amount=-1 +kerning first=198 second=254 amount=-1 +kerning first=119 second=305 amount=-1 +kerning first=222 second=350 amount=-1 +kerning first=283 second=367 amount=-1 +kerning first=234 second=254 amount=-1 +kerning first=70 second=233 amount=-1 +kerning first=68 second=209 amount=-1 +kerning first=315 second=252 amount=-1 +kerning first=113 second=117 amount=-1 +kerning first=216 second=261 amount=-1 +kerning first=65 second=284 amount=-1 +kerning first=330 second=350 amount=-1 +kerning first=252 second=261 amount=-1 +kerning first=70 second=367 amount=-1 +kerning first=327 second=286 amount=-1 +kerning first=366 second=350 amount=-1 +kerning first=350 second=76 amount=-1 +kerning first=288 second=261 amount=-1 +kerning first=106 second=367 amount=-1 +kerning first=199 second=260 amount=-2 +kerning first=326 second=117 amount=-1 +kerning first=368 second=305 amount=-1 +kerning first=278 second=76 amount=-1 +kerning first=290 second=117 amount=-1 +kerning first=83 second=69 amount=-1 +kerning first=347 second=351 amount=-1 +kerning first=75 second=261 amount=-1 +kerning first=1052 second=1089 amount=-1 +kerning first=221 second=344 amount=-1 +kerning first=193 second=374 amount=-3 +kerning first=362 second=117 amount=-1 +kerning first=295 second=44 amount=-1 +kerning first=8216 second=115 amount=-1 +kerning first=112 second=291 amount=-1 +kerning first=274 second=311 amount=-1 +kerning first=84 second=317 amount=-1 +kerning first=286 second=362 amount=-1 +kerning first=76 second=291 amount=-1 +kerning first=198 second=286 amount=-1 +kerning first=257 second=316 amount=-1 +kerning first=8217 second=268 amount=-1 +kerning first=376 second=331 amount=-1 +kerning first=202 second=311 amount=-1 +kerning first=118 second=271 amount=-1 +kerning first=379 second=260 amount=-1 +kerning first=8220 second=197 amount=-4 +kerning first=344 second=356 amount=-1 +kerning first=354 second=337 amount=-2 +kerning first=280 second=382 amount=-1 +kerning first=365 second=316 amount=-1 +kerning first=316 second=382 amount=-1 +kerning first=272 second=356 amount=-1 +kerning first=352 second=382 amount=-1 +kerning first=214 second=362 amount=-1 +kerning first=268 second=331 amount=-1 +kerning first=1037 second=1057 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=253 second=337 amount=-1 +kerning first=101 second=252 amount=-1 +kerning first=105 second=361 amount=-1 +kerning first=321 second=266 amount=-1 +kerning first=8218 second=121 amount=-1 +kerning first=1069 second=1056 amount=-1 +kerning first=382 second=311 amount=-1 +kerning first=346 second=311 amount=-1 +kerning first=282 second=361 amount=-1 +kerning first=368 second=45 amount=-3 +kerning first=350 second=252 amount=-1 +kerning first=310 second=227 amount=-1 +kerning first=332 second=45 amount=-1 +kerning first=1058 second=1101 amount=-1 +kerning first=374 second=201 amount=-1 +kerning first=208 second=207 amount=-1 +kerning first=274 second=227 amount=-1 +kerning first=66 second=78 amount=-2 +kerning first=336 second=70 amount=-1 +kerning first=338 second=201 amount=-1 +kerning first=280 second=207 amount=-1 +kerning first=202 second=227 amount=-1 +kerning first=328 second=44 amount=-1 +kerning first=206 second=252 amount=-1 +kerning first=1113 second=1078 amount=-1 +kerning first=224 second=121 amount=-1 +kerning first=278 second=252 amount=-1 +kerning first=67 second=207 amount=-1 +kerning first=382 second=227 amount=-1 +kerning first=327 second=246 amount=-1 +kerning first=364 second=44 amount=-3 +kerning first=314 second=252 amount=-1 +kerning first=346 second=227 amount=-1 +kerning first=291 second=246 amount=-1 +kerning first=231 second=109 amount=-1 +kerning first=89 second=201 amount=-1 +kerning first=200 second=356 amount=-1 +kerning first=80 second=84 amount=-1 +kerning first=103 second=382 amount=-1 +kerning first=255 second=246 amount=-1 +kerning first=198 second=226 amount=-1 +kerning first=355 second=103 amount=-1 +kerning first=65 second=336 amount=-1 +kerning first=222 second=90 amount=-1 +kerning first=1063 second=1104 amount=-1 +kerning first=219 second=246 amount=-1 +kerning first=234 second=226 amount=-1 +kerning first=80 second=267 amount=-1 +kerning first=208 second=382 amount=-1 +kerning first=283 second=103 amount=-1 +kerning first=325 second=291 amount=-1 +kerning first=244 second=382 amount=-1 +kerning first=224 second=45 amount=-1 +kerning first=206 second=336 amount=-1 +kerning first=289 second=291 amount=-1 +kerning first=78 second=246 amount=-1 +kerning first=1047 second=1062 amount=-1 +kerning first=211 second=103 amount=-1 +kerning first=352 second=207 amount=-1 +kerning first=253 second=291 amount=-2 +kerning first=347 second=109 amount=-1 +kerning first=378 second=226 amount=-1 +kerning first=278 second=336 amount=-1 +kerning first=217 second=291 amount=-2 +kerning first=106 second=103 amount=-1 +kerning first=67 second=382 amount=-1 +kerning first=102 second=314 amount=1 +kerning first=317 second=213 amount=-1 +kerning first=74 second=193 amount=-3 +kerning first=121 second=115 amount=-1 +kerning first=81 second=90 amount=-1 +kerning first=253 second=263 amount=-1 +kerning first=45 second=90 amount=-2 +kerning first=82 second=243 amount=-1 +kerning first=289 second=263 amount=-1 +kerning first=279 second=314 amount=-1 +kerning first=118 second=243 amount=-1 +kerning first=325 second=263 amount=-1 +kerning first=243 second=314 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=88 second=370 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=87 second=70 amount=-1 +kerning first=351 second=314 amount=-1 +kerning first=298 second=115 amount=-1 +kerning first=200 second=120 amount=-1 +kerning first=315 second=314 amount=-1 +kerning first=236 second=120 amount=-1 +kerning first=282 second=365 amount=-1 +kerning first=376 second=303 amount=-1 +kerning first=226 second=115 amount=-1 +kerning first=272 second=120 amount=-1 +kerning first=268 second=303 amount=-1 +kerning first=76 second=8249 amount=-1 +kerning first=209 second=269 amount=-1 +kerning first=262 second=115 amount=-1 +kerning first=217 second=263 amount=-1 +kerning first=315 second=78 amount=-1 +kerning first=264 second=70 amount=-1 +kerning first=198 second=198 amount=-1 +kerning first=332 second=73 amount=-1 +kerning first=105 second=365 amount=-1 +kerning first=115 second=224 amount=-1 +kerning first=209 second=213 amount=-1 +kerning first=370 second=115 amount=-1 +kerning first=316 second=108 amount=-1 +kerning first=69 second=365 amount=-1 +kerning first=338 second=338 amount=-1 +kerning first=8217 second=240 amount=-2 +kerning first=220 second=224 amount=-1 +kerning first=330 second=118 amount=-1 +kerning first=97 second=255 amount=-1 +kerning first=192 second=98 amount=-1 +kerning first=8250 second=307 amount=-1 +kerning first=194 second=116 amount=-1 +kerning first=264 second=98 amount=-1 +kerning first=361 second=8249 amount=-1 +kerning first=211 second=75 amount=-1 +kerning first=228 second=98 amount=-1 +kerning first=8220 second=227 amount=-1 +kerning first=278 second=280 amount=-1 +kerning first=364 second=224 amount=-1 +kerning first=103 second=235 amount=-1 +kerning first=236 second=328 amount=-1 +kerning first=289 second=8249 amount=-1 +kerning first=1054 second=1048 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=200 second=328 amount=-1 +kerning first=325 second=8249 amount=-2 +kerning first=1090 second=1076 amount=-1 +kerning first=350 second=280 amount=-1 +kerning first=380 second=120 amount=-1 +kerning first=232 second=303 amount=-1 +kerning first=258 second=118 amount=-2 +kerning first=199 second=232 amount=-1 +kerning first=212 second=65 amount=-2 +kerning first=253 second=8249 amount=-2 +kerning first=197 second=101 amount=-1 +kerning first=1088 second=1093 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=380 second=328 amount=-1 +kerning first=353 second=241 amount=-1 +kerning first=269 second=101 amount=-1 +kerning first=8216 second=83 amount=-1 +kerning first=256 second=375 amount=-1 +kerning first=193 second=370 amount=-2 +kerning first=196 second=84 amount=-3 +kerning first=45 second=118 amount=-2 +kerning first=1058 second=1073 amount=-1 +kerning first=90 second=325 amount=-1 +kerning first=311 second=226 amount=-1 +kerning first=377 second=101 amount=-1 +kerning first=382 second=283 amount=-1 +kerning first=67 second=324 amount=-1 +kerning first=317 second=241 amount=-1 +kerning first=310 second=283 amount=-1 +kerning first=70 second=196 amount=-2 +kerning first=281 second=241 amount=-1 +kerning first=8250 second=223 amount=-1 +kerning first=339 second=241 amount=-1 +kerning first=213 second=8220 amount=-1 +kerning first=45 second=193 amount=-2 +kerning first=344 second=338 amount=-1 +kerning first=303 second=241 amount=-1 +kerning first=67 second=118 amount=-1 +kerning first=287 second=108 amount=-1 +kerning first=86 second=290 amount=-1 +kerning first=108 second=8220 amount=-2 +kerning first=251 second=108 amount=-1 +kerning first=375 second=241 amount=-1 +kerning first=113 second=345 amount=-1 +kerning first=290 second=85 amount=-1 +kerning first=214 second=380 amount=-1 +kerning first=222 second=193 amount=-2 +kerning first=200 second=338 amount=-1 +kerning first=218 second=345 amount=-1 +kerning first=327 second=71 amount=-1 +kerning first=81 second=193 amount=-2 +kerning first=84 second=335 amount=-2 +kerning first=286 second=380 amount=-1 +kerning first=267 second=241 amount=-1 +kerning first=120 second=335 amount=-1 +kerning first=364 second=286 amount=-1 +kerning first=231 second=241 amount=-1 +kerning first=256 second=286 amount=-1 +kerning first=1069 second=1038 amount=-1 +kerning first=366 second=193 amount=-2 +kerning first=310 second=231 amount=-1 +kerning first=197 second=115 amount=-1 +kerning first=362 second=345 amount=-1 +kerning first=113 second=361 amount=-1 +kerning first=90 second=241 amount=-1 +kerning first=69 second=304 amount=-1 +kerning first=362 second=331 amount=-1 +kerning first=220 second=286 amount=-1 +kerning first=1058 second=1083 amount=-1 +kerning first=1073 second=1113 amount=-1 +kerning first=108 second=248 amount=-1 +kerning first=305 second=115 amount=-1 +kerning first=8216 second=97 amount=-1 +kerning first=272 second=78 amount=-1 +kerning first=76 second=323 amount=-1 +kerning first=110 second=108 amount=-1 +kerning first=233 second=115 amount=-1 +kerning first=218 second=331 amount=-1 +kerning first=72 second=248 amount=-1 +kerning first=278 second=81 amount=-1 +kerning first=382 second=231 amount=-1 +kerning first=269 second=115 amount=-1 +kerning first=74 second=122 amount=-1 +kerning first=267 second=255 amount=-1 +kerning first=272 second=352 amount=-1 +kerning first=231 second=255 amount=-1 +kerning first=113 second=331 amount=-1 +kerning first=105 second=355 amount=-1 +kerning first=382 second=245 amount=-1 +kerning first=195 second=255 amount=-1 +kerning first=344 second=352 amount=-1 +kerning first=115 second=252 amount=-1 +kerning first=310 second=245 amount=-1 +kerning first=251 second=122 amount=-1 +kerning first=1069 second=1052 amount=-1 +kerning first=90 second=255 amount=-2 +kerning first=264 second=298 amount=-1 +kerning first=76 second=77 amount=-1 +kerning first=72 second=262 amount=-1 +kerning first=87 second=278 amount=-1 +kerning first=222 second=207 amount=-1 +kerning first=214 second=366 amount=-1 +kerning first=364 second=252 amount=-1 +kerning first=89 second=233 amount=-2 +kerning first=1059 second=1085 amount=-2 +kerning first=1006 second=997 amount=-1 +kerning first=1058 second=1097 amount=-1 +kerning first=194 second=233 amount=-1 +kerning first=336 second=278 amount=-1 +kerning first=335 second=316 amount=-1 +kerning first=45 second=207 amount=-3 +kerning first=302 second=233 amount=-1 +kerning first=220 second=252 amount=-1 +kerning first=1025 second=1040 amount=-1 +kerning first=81 second=207 amount=-1 +kerning first=266 second=233 amount=-1 +kerning first=351 second=328 amount=-1 +kerning first=256 second=252 amount=-1 +kerning first=202 second=250 amount=-1 +kerning first=374 second=233 amount=-2 +kerning first=200 second=352 amount=-1 +kerning first=315 second=328 amount=-1 +kerning first=279 second=328 amount=-1 +kerning first=328 second=252 amount=-1 +kerning first=66 second=110 amount=-1 +kerning first=296 second=333 amount=-1 +kerning first=250 second=106 amount=-1 +kerning first=286 second=106 amount=-1 +kerning first=282 second=87 amount=-1 +kerning first=199 second=288 amount=-2 +kerning first=368 second=333 amount=-1 +kerning first=227 second=121 amount=-1 +kerning first=330 second=378 amount=-1 +kerning first=210 second=87 amount=-1 +kerning first=279 second=110 amount=-1 +kerning first=119 second=333 amount=-1 +kerning first=69 second=87 amount=-1 +kerning first=315 second=110 amount=-1 +kerning first=260 second=333 amount=-1 +kerning first=351 second=110 amount=-1 +kerning first=366 second=378 amount=-1 +kerning first=377 second=210 amount=-1 +kerning first=217 second=281 amount=-1 +kerning first=376 second=99 amount=-2 +kerning first=218 second=65 amount=-2 +kerning first=8220 second=225 amount=-1 +kerning first=253 second=281 amount=-1 +kerning first=382 second=307 amount=-1 +kerning first=1059 second=1099 amount=-2 +kerning first=8216 second=192 amount=-4 +kerning first=105 second=347 amount=-1 +kerning first=289 second=281 amount=-1 +kerning first=290 second=65 amount=-1 +kerning first=212 second=198 amount=-2 +kerning first=381 second=243 amount=-1 +kerning first=321 second=262 amount=-1 +kerning first=69 second=347 amount=-1 +kerning first=325 second=281 amount=-1 +kerning first=362 second=65 amount=-2 +kerning first=278 second=326 amount=-1 +kerning first=379 second=288 amount=-1 +kerning first=314 second=326 amount=-1 +kerning first=8250 second=237 amount=-1 +kerning first=350 second=326 amount=-1 +kerning first=230 second=249 amount=-1 +kerning first=105 second=351 amount=-1 +kerning first=214 second=120 amount=-1 +kerning first=250 second=120 amount=-1 +kerning first=199 second=274 amount=-1 +kerning first=282 second=261 amount=-1 +kerning first=87 second=80 amount=-1 +kerning first=315 second=68 amount=-1 +kerning first=282 second=73 amount=-1 +kerning first=201 second=229 amount=-1 +kerning first=284 second=198 amount=-1 +kerning first=379 second=274 amount=-1 +kerning first=220 second=346 amount=-1 +kerning first=84 second=377 amount=-1 +kerning first=354 second=73 amount=-1 +kerning first=304 second=99 amount=-1 +kerning first=356 second=198 amount=-3 +kerning first=268 second=99 amount=-1 +kerning first=268 second=113 amount=-1 +kerning first=289 second=267 amount=-1 +kerning first=316 second=118 amount=-1 +kerning first=325 second=267 amount=-1 +kerning first=336 second=80 amount=-1 +kerning first=280 second=118 amount=-1 +kerning first=80 second=263 amount=-1 +kerning first=66 second=68 amount=-2 +kerning first=196 second=113 amount=-1 +kerning first=210 second=73 amount=-1 +kerning first=217 second=267 amount=-1 +kerning first=1058 second=1077 amount=-1 +kerning first=253 second=267 amount=-1 +kerning first=352 second=118 amount=-1 +kerning first=376 second=113 amount=-2 +kerning first=303 second=234 amount=-1 +kerning first=103 second=118 amount=-1 +kerning first=321 second=8220 amount=-2 +kerning first=287 second=107 amount=-1 +kerning first=244 second=118 amount=-1 +kerning first=304 second=113 amount=-1 +kerning first=109 second=106 amount=-1 +kerning first=69 second=73 amount=-1 +kerning first=200 second=332 amount=-1 +kerning first=264 second=80 amount=-1 +kerning first=377 second=196 amount=-1 +kerning first=97 second=287 amount=-1 +kerning first=216 second=219 amount=-1 +kerning first=256 second=244 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=313 second=264 amount=-1 +kerning first=202 second=287 amount=-1 +kerning first=204 second=111 amount=-1 +kerning first=75 second=219 amount=-1 +kerning first=364 second=244 amount=-1 +kerning first=200 second=86 amount=-1 +kerning first=108 second=242 amount=-1 +kerning first=274 second=287 amount=-1 +kerning first=263 second=234 amount=-1 +kerning first=258 second=199 amount=-1 +kerning first=81 second=364 amount=-1 +kerning first=113 second=339 amount=-1 +kerning first=205 second=264 amount=-1 +kerning first=224 second=8217 amount=-1 +kerning first=45 second=364 amount=-2 +kerning first=8222 second=291 amount=-1 +kerning first=346 second=287 amount=-1 +kerning first=260 second=8217 amount=-3 +kerning first=330 second=199 amount=-1 +kerning first=310 second=287 amount=-1 +kerning first=371 second=234 amount=-1 +kerning first=197 second=121 amount=-1 +kerning first=104 second=289 amount=-1 +kerning first=315 second=334 amount=-1 +kerning first=368 second=262 amount=-1 +kerning first=258 second=364 amount=-2 +kerning first=74 second=197 amount=-3 +kerning first=382 second=287 amount=-1 +kerning first=209 second=289 amount=-1 +kerning first=245 second=289 amount=-1 +kerning first=107 second=254 amount=-1 +kerning first=281 second=289 amount=-1 +kerning first=350 second=66 amount=-1 +kerning first=317 second=289 amount=-1 +kerning first=353 second=289 amount=-1 +kerning first=187 second=209 amount=-3 +kerning first=8250 second=270 amount=-3 +kerning first=85 second=119 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=220 second=244 amount=-1 +kerning first=8220 second=231 amount=-1 +kerning first=78 second=8249 amount=-2 +kerning first=71 second=330 amount=-1 +kerning first=204 second=97 amount=-1 +kerning first=288 second=205 amount=-1 +kerning first=364 second=230 amount=-2 +kerning first=226 second=119 amount=-1 +kerning first=192 second=354 amount=-3 +kerning first=262 second=119 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=377 second=121 amount=-2 +kerning first=369 second=117 amount=-1 +kerning first=200 second=72 amount=-1 +kerning first=298 second=119 amount=-1 +kerning first=264 second=354 amount=-1 +kerning first=313 second=250 amount=-1 +kerning first=305 second=121 amount=-1 +kerning first=272 second=72 amount=-1 +kerning first=8216 second=103 amount=-2 +kerning first=220 second=230 amount=-2 +kerning first=370 second=119 amount=-1 +kerning first=336 second=354 amount=-1 +kerning first=277 second=250 amount=-1 +kerning first=269 second=121 amount=-1 +kerning first=79 second=230 amount=-1 +kerning first=1061 second=1054 amount=-2 +kerning first=264 second=74 amount=-1 +kerning first=233 second=121 amount=-1 +kerning first=115 second=230 amount=-1 +kerning first=1025 second=1054 amount=-1 +kerning first=344 second=86 amount=-1 +kerning first=366 second=199 amount=-1 +kerning first=187 second=195 amount=-2 +kerning first=336 second=74 amount=-1 +kerning first=311 second=100 amount=-1 +kerning first=117 second=378 amount=-1 +kerning first=233 second=107 amount=-1 +kerning first=100 second=250 amount=-1 +kerning first=272 second=86 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=241 second=250 amount=-1 +kerning first=83 second=8217 amount=-1 +kerning first=222 second=378 amount=-1 +kerning first=356 second=240 amount=-2 +kerning first=8216 second=89 amount=-1 +kerning first=8217 second=350 amount=-1 +kerning first=120 second=117 amount=-1 +kerning first=379 second=76 amount=-1 +kerning first=261 second=117 amount=-1 +kerning first=81 second=378 amount=-1 +kerning first=197 second=107 amount=-1 +kerning first=288 second=219 amount=-1 +kerning first=225 second=117 amount=-1 +kerning first=45 second=378 amount=-3 +kerning first=283 second=363 amount=-1 +kerning first=66 second=116 amount=-1 +kerning first=313 second=194 amount=-1 +kerning first=108 second=318 amount=-1 +kerning first=107 second=240 amount=-1 +kerning first=214 second=310 amount=-1 +kerning first=379 second=330 amount=-1 +kerning first=347 second=355 amount=-1 +kerning first=1030 second=1089 amount=-1 +kerning first=249 second=318 amount=-1 +kerning first=298 second=214 amount=-1 +kerning first=8249 second=221 amount=-2 +kerning first=262 second=214 amount=-2 +kerning first=86 second=220 amount=-1 +kerning first=87 second=298 amount=-1 +kerning first=321 second=318 amount=-1 +kerning first=370 second=214 amount=-1 +kerning first=277 second=241 amount=-1 +kerning first=296 second=259 amount=-1 +kerning first=218 second=71 amount=-1 +kerning first=85 second=214 amount=-1 +kerning first=351 second=116 amount=-1 +kerning first=305 second=375 amount=-1 +kerning first=323 second=122 amount=-1 +kerning first=368 second=259 amount=-2 +kerning first=269 second=375 amount=-1 +kerning first=287 second=122 amount=-1 +kerning first=332 second=259 amount=-1 +kerning first=233 second=375 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=119 second=259 amount=-2 +kerning first=80 second=296 amount=-1 +kerning first=83 second=259 amount=-1 +kerning first=199 second=330 amount=-1 +kerning first=321 second=304 amount=-1 +kerning first=279 second=116 amount=-1 +kerning first=377 second=375 amount=-2 +kerning first=334 second=228 amount=-1 +kerning first=213 second=304 amount=-1 +kerning first=82 second=251 amount=-1 +kerning first=347 second=369 amount=-1 +kerning first=374 second=253 amount=-1 +kerning first=8217 second=115 amount=-1 +kerning first=379 second=344 amount=-1 +kerning first=221 second=296 amount=-1 +kerning first=262 second=228 amount=-1 +kerning first=75 second=279 amount=-1 +kerning first=187 second=251 amount=-1 +kerning first=1039 second=1089 amount=-1 +kerning first=199 second=344 amount=-1 +kerning first=259 second=251 amount=-1 +kerning first=203 second=369 amount=-1 +kerning first=197 second=375 amount=-1 +kerning first=121 second=228 amount=-1 +kerning first=85 second=228 amount=-1 +kerning first=331 second=251 amount=-1 +kerning first=275 second=369 amount=-1 +kerning first=1043 second=1097 amount=-1 +kerning first=295 second=251 amount=-1 +kerning first=368 second=100 amount=-1 +kerning first=86 second=234 amount=-2 +kerning first=198 second=206 amount=-1 +kerning first=367 second=251 amount=-1 +kerning first=119 second=273 amount=-1 +kerning first=122 second=234 amount=-1 +kerning first=89 second=253 amount=-1 +kerning first=264 second=284 amount=-2 +kerning first=70 second=363 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=192 second=284 amount=-1 +kerning first=106 second=363 amount=-1 +kerning first=230 second=253 amount=-1 +kerning first=211 second=45 amount=-1 +kerning first=263 second=365 amount=-1 +kerning first=275 second=355 amount=-1 +kerning first=87 second=284 amount=-1 +kerning first=70 second=83 amount=-1 +kerning first=302 second=253 amount=-1 +kerning first=8220 second=382 amount=-1 +kerning first=242 second=318 amount=-1 +kerning first=45 second=370 amount=-2 +kerning first=296 second=263 amount=-1 +kerning first=75 second=213 amount=-1 +kerning first=211 second=83 amount=-1 +kerning first=376 second=313 amount=-1 +kerning first=80 second=310 amount=-1 +kerning first=314 second=318 amount=-1 +kerning first=198 second=268 amount=-1 +kerning first=268 second=313 amount=-1 +kerning first=368 second=263 amount=-1 +kerning first=81 second=370 amount=-1 +kerning first=90 second=315 amount=-1 +kerning first=356 second=216 amount=-1 +kerning first=222 second=370 amount=-1 +kerning first=119 second=263 amount=-1 +kerning first=8222 second=105 amount=-1 +kerning first=1114 second=1074 amount=-1 +kerning first=221 second=310 amount=-1 +kerning first=258 second=370 amount=-2 +kerning first=354 second=355 amount=-1 +kerning first=283 second=353 amount=-1 +kerning first=278 second=270 amount=-1 +kerning first=98 second=303 amount=-1 +kerning first=1051 second=1105 amount=-1 +kerning first=103 second=225 amount=-1 +kerning first=347 second=365 amount=-1 +kerning first=1062 second=1060 amount=-1 +kerning first=347 second=303 amount=-1 +kerning first=106 second=353 amount=-1 +kerning first=275 second=365 amount=-1 +kerning first=366 second=118 amount=-1 +kerning first=203 second=365 amount=-1 +kerning first=198 second=220 amount=-1 +kerning first=316 second=225 amount=-1 +kerning first=1025 second=1048 amount=-1 +kerning first=352 second=225 amount=-1 +kerning first=1051 second=1095 amount=-1 +kerning first=365 second=98 amount=-1 +kerning first=1037 second=1105 amount=-1 +kerning first=379 second=280 amount=-1 +kerning first=290 second=259 amount=-1 +kerning first=225 second=8249 amount=-1 +kerning first=362 second=74 amount=-1 +kerning first=350 second=270 amount=-1 +kerning first=327 second=228 amount=-1 +kerning first=8220 second=217 amount=-1 +kerning first=208 second=225 amount=-1 +kerning first=193 second=350 amount=-2 +kerning first=291 second=228 amount=-1 +kerning first=257 second=98 amount=-1 +kerning first=255 second=228 amount=-1 +kerning first=280 second=225 amount=-1 +kerning first=353 second=44 amount=-1 +kerning first=88 second=350 amount=-1 +kerning first=381 second=235 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=334 second=218 amount=-1 +kerning first=99 second=363 amount=-1 +kerning first=250 second=46 amount=-1 +kerning first=289 second=273 amount=-1 +kerning first=286 second=46 amount=-1 +kerning first=262 second=218 amount=-1 +kerning first=78 second=228 amount=-1 +kerning first=253 second=273 amount=-1 +kerning first=365 second=102 amount=-1 +kerning first=204 second=363 amount=-1 +kerning first=90 second=305 amount=-1 +kerning first=65 second=318 amount=-1 +kerning first=203 second=252 amount=-1 +kerning first=73 second=46 amount=-1 +kerning first=101 second=318 amount=-1 +kerning first=332 second=325 amount=-1 +kerning first=8220 second=122 amount=-1 +kerning first=109 second=46 amount=-1 +kerning first=303 second=305 amount=-1 +kerning first=199 second=280 amount=-1 +kerning first=1057 second=1025 amount=-1 +kerning first=221 second=102 amount=-1 +kerning first=267 second=305 amount=-1 +kerning first=282 second=81 amount=-1 +kerning first=193 second=86 amount=-3 +kerning first=198 second=216 amount=-1 +kerning first=375 second=305 amount=-1 +kerning first=323 second=211 amount=-1 +kerning first=339 second=305 amount=-1 +kerning first=235 second=291 amount=-1 +kerning first=8250 second=287 amount=-1 +kerning first=367 second=261 amount=-1 +kerning first=84 second=67 amount=-1 +kerning first=88 second=86 amount=-1 +kerning first=250 second=112 amount=-1 +kerning first=253 second=230 amount=-2 +kerning first=8217 second=198 amount=-3 +kerning first=278 second=260 amount=-1 +kerning first=203 second=381 amount=-1 +kerning first=187 second=261 amount=-1 +kerning first=350 second=260 amount=-2 +kerning first=192 second=240 amount=-1 +kerning first=216 second=209 amount=-1 +kerning first=344 second=171 amount=-2 +kerning first=84 second=327 amount=-1 +kerning first=380 second=171 amount=-2 +kerning first=283 second=121 amount=-1 +kerning first=377 second=204 amount=-1 +kerning first=376 second=105 amount=-1 +kerning first=268 second=105 amount=-1 +kerning first=277 second=254 amount=-1 +kerning first=330 second=100 amount=-1 +kerning first=69 second=81 amount=-1 +kerning first=200 second=171 amount=-1 +kerning first=313 second=254 amount=-1 +kerning first=368 second=335 amount=-1 +kerning first=366 second=100 amount=-1 +kerning first=236 second=171 amount=-1 +kerning first=288 second=209 amount=-1 +kerning first=232 second=105 amount=-1 +kerning first=272 second=171 amount=-1 +kerning first=231 second=249 amount=-1 +kerning first=200 second=346 amount=-1 +kerning first=263 second=230 amount=-1 +kerning first=267 second=249 amount=-1 +kerning first=86 second=282 amount=-1 +kerning first=122 second=230 amount=-1 +kerning first=66 second=334 amount=-1 +kerning first=268 second=379 amount=-1 +kerning first=258 second=100 amount=-1 +kerning first=195 second=249 amount=-1 +kerning first=70 second=353 amount=-1 +kerning first=344 second=346 amount=-1 +kerning first=86 second=230 amount=-2 +kerning first=353 second=223 amount=-1 +kerning first=103 second=347 amount=-1 +kerning first=303 second=249 amount=-1 +kerning first=272 second=346 amount=-1 +kerning first=68 second=289 amount=-1 +kerning first=1088 second=1103 amount=-1 +kerning first=207 second=334 amount=-1 +kerning first=376 second=379 amount=-1 +kerning first=288 second=380 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=231 second=113 amount=-1 +kerning first=317 second=223 amount=-1 +kerning first=218 second=339 amount=-1 +kerning first=193 second=244 amount=-1 +kerning first=371 second=230 amount=-1 +kerning first=321 second=256 amount=-1 +kerning first=90 second=249 amount=-1 +kerning first=1052 second=1054 amount=-1 +kerning first=260 second=252 amount=-1 +kerning first=74 second=211 amount=-1 +kerning first=362 second=339 amount=-1 +kerning first=213 second=256 amount=-2 +kerning first=8217 second=250 amount=-1 +kerning first=211 second=89 amount=-1 +kerning first=76 second=69 amount=-1 +kerning first=289 second=255 amount=-1 +kerning first=72 second=44 amount=-1 +kerning first=350 second=374 amount=-1 +kerning first=192 second=84 amount=-3 +kerning first=376 second=109 amount=-1 +kerning first=362 second=79 amount=-1 +kerning first=374 second=187 amount=-1 +kerning first=268 second=109 amount=-1 +kerning first=382 second=237 amount=-1 +kerning first=109 second=314 amount=-1 +kerning first=336 second=84 amount=-1 +kerning first=232 second=109 amount=-1 +kerning first=346 second=237 amount=-1 +kerning first=282 second=8249 amount=-1 +kerning first=1098 second=1116 amount=-1 +kerning first=117 second=104 amount=-1 +kerning first=230 second=187 amount=-1 +kerning first=208 second=217 amount=-1 +kerning first=311 second=99 amount=-1 +kerning first=210 second=8249 amount=-1 +kerning first=45 second=104 amount=-1 +kerning first=280 second=217 amount=-1 +kerning first=250 second=314 amount=-1 +kerning first=353 second=227 amount=-1 +kerning first=105 second=8249 amount=-1 +kerning first=255 second=232 amount=-1 +kerning first=352 second=217 amount=-1 +kerning first=258 second=104 amount=-1 +kerning first=249 second=44 amount=-1 +kerning first=86 second=224 amount=-2 +kerning first=213 second=44 amount=-1 +kerning first=291 second=232 amount=-1 +kerning first=89 second=187 amount=-1 +kerning first=78 second=232 amount=-1 +kerning first=253 second=277 amount=-1 +kerning first=69 second=351 amount=-1 +kerning first=71 second=203 amount=-1 +kerning first=82 second=257 amount=-1 +kerning first=101 second=326 amount=-1 +kerning first=217 second=277 amount=-1 +kerning first=122 second=224 amount=-1 +kerning first=381 second=280 amount=-1 +kerning first=325 second=277 amount=-1 +kerning first=263 second=224 amount=-1 +kerning first=1043 second=1051 amount=-3 +kerning first=289 second=277 amount=-1 +kerning first=221 second=302 amount=-1 +kerning first=354 second=347 amount=-2 +kerning first=99 second=371 amount=-1 +kerning first=313 second=202 amount=-1 +kerning first=354 second=8249 amount=-3 +kerning first=282 second=347 amount=-1 +kerning first=80 second=302 amount=-1 +kerning first=246 second=347 amount=-1 +kerning first=371 second=224 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=354 second=351 amount=-2 +kerning first=8217 second=194 amount=-3 +kerning first=204 second=101 amount=-1 +kerning first=198 second=212 amount=-1 +kerning first=82 second=261 amount=-1 +kerning first=119 second=267 amount=-1 +kerning first=367 second=257 amount=-1 +kerning first=118 second=261 amount=-2 +kerning first=1113 second=1096 amount=-1 +kerning first=246 second=351 amount=-1 +kerning first=1043 second=1047 amount=-1 +kerning first=368 second=267 amount=-1 +kerning first=204 second=367 amount=-1 +kerning first=260 second=267 amount=-1 +kerning first=228 second=103 amount=-1 +kerning first=187 second=257 amount=-1 +kerning first=350 second=8220 amount=-1 +kerning first=218 second=79 amount=-1 +kerning first=282 second=351 amount=-1 +kerning first=99 second=367 amount=-1 +kerning first=107 second=246 amount=-1 +kerning first=202 second=241 amount=-1 +kerning first=287 second=382 amount=-1 +kerning first=67 second=221 amount=-1 +kerning first=246 second=291 amount=-1 +kerning first=323 second=382 amount=-1 +kerning first=278 second=266 amount=-1 +kerning first=375 second=311 amount=-1 +kerning first=210 second=291 amount=-1 +kerning first=274 second=241 amount=-1 +kerning first=339 second=311 amount=-1 +kerning first=221 second=362 amount=-1 +kerning first=1044 second=1057 amount=-1 +kerning first=331 second=8221 amount=-2 +kerning first=280 second=352 amount=-1 +kerning first=303 second=311 amount=-1 +kerning first=105 second=291 amount=-1 +kerning first=217 second=337 amount=-1 +kerning first=122 second=226 amount=-1 +kerning first=65 second=266 amount=-1 +kerning first=83 second=8221 amount=-1 +kerning first=267 second=311 amount=-1 +kerning first=69 second=291 amount=-1 +kerning first=231 second=311 amount=-1 +kerning first=1069 second=1042 amount=-1 +kerning first=195 second=311 amount=-1 +kerning first=251 second=382 amount=-1 +kerning first=84 second=113 amount=-2 +kerning first=260 second=8221 amount=-3 +kerning first=203 second=361 amount=-1 +kerning first=325 second=337 amount=-1 +kerning first=277 second=316 amount=-1 +kerning first=289 second=337 amount=-1 +kerning first=275 second=361 amount=-1 +kerning first=109 second=316 amount=-1 +kerning first=352 second=221 amount=-1 +kerning first=81 second=368 amount=-1 +kerning first=347 second=361 amount=-1 +kerning first=280 second=221 amount=-1 +kerning first=250 second=316 amount=-1 +kerning first=332 second=8221 amount=-1 +kerning first=122 second=45 amount=-2 +kerning first=336 second=83 amount=-1 +kerning first=84 second=331 amount=-1 +kerning first=208 second=221 amount=-1 +kerning first=45 second=368 amount=-2 +kerning first=200 second=78 amount=-1 +kerning first=258 second=368 amount=-2 +kerning first=219 second=97 amount=-2 +kerning first=204 second=103 amount=-1 +kerning first=249 second=252 amount=-1 +kerning first=231 second=45 amount=-1 +kerning first=199 second=70 amount=-1 +kerning first=83 second=323 amount=-1 +kerning first=377 second=115 amount=-1 +kerning first=68 second=227 amount=-1 +kerning first=195 second=353 amount=-1 +kerning first=99 second=103 amount=-1 +kerning first=222 second=368 amount=-1 +kerning first=376 second=317 amount=-1 +kerning first=72 second=252 amount=-1 +kerning first=281 second=227 amount=-1 +kerning first=375 second=45 amount=-2 +kerning first=108 second=252 amount=-1 +kerning first=379 second=70 amount=-1 +kerning first=86 second=257 amount=-2 +kerning first=209 second=227 amount=-1 +kerning first=332 second=323 amount=-1 +kerning first=303 second=307 amount=-1 +kerning first=199 second=336 amount=-2 +kerning first=377 second=381 amount=-1 +kerning first=268 second=317 amount=-1 +kerning first=356 second=246 amount=-1 +kerning first=187 second=201 amount=-3 +kerning first=371 second=226 amount=-1 +kerning first=255 second=339 amount=-1 +kerning first=193 second=356 amount=-3 +kerning first=8218 second=318 amount=-1 +kerning first=74 second=382 amount=-1 +kerning first=90 second=45 amount=-1 +kerning first=88 second=356 amount=-1 +kerning first=379 second=336 amount=-1 +kerning first=379 second=278 amount=-1 +kerning first=195 second=45 amount=-2 +kerning first=280 second=223 amount=-1 +kerning first=214 second=356 amount=-1 +kerning first=1059 second=1095 amount=-2 +kerning first=117 second=382 amount=-1 +kerning first=236 second=116 amount=-1 +kerning first=203 second=45 amount=-1 +kerning first=113 second=369 amount=-1 +kerning first=268 second=103 amount=-1 +kerning first=205 second=246 amount=-1 +kerning first=279 second=103 amount=-1 +kerning first=222 second=382 amount=-1 +kerning first=218 second=369 amount=-1 +kerning first=196 second=103 amount=-1 +kerning first=344 second=362 amount=-1 +kerning first=347 second=45 amount=-1 +kerning first=82 second=253 amount=-1 +kerning first=311 second=45 amount=-2 +kerning first=77 second=369 amount=-1 +kerning first=45 second=382 amount=-3 +kerning first=81 second=382 amount=-1 +kerning first=187 second=253 amount=-2 +kerning first=90 second=279 amount=-1 +kerning first=245 second=303 amount=-1 +kerning first=204 second=375 amount=-1 +kerning first=200 second=362 amount=-1 +kerning first=69 second=67 amount=-1 +kerning first=363 second=226 amount=-1 +kerning first=84 second=65 amount=-3 +kerning first=222 second=122 amount=-1 +kerning first=195 second=279 amount=-1 +kerning first=232 second=363 amount=-1 +kerning first=99 second=375 amount=-1 +kerning first=272 second=362 amount=-1 +kerning first=1113 second=1102 amount=-1 +kerning first=268 second=363 amount=-1 +kerning first=117 second=122 amount=-1 +kerning first=362 second=109 amount=-1 +kerning first=86 second=266 amount=-1 +kerning first=304 second=363 amount=-1 +kerning first=326 second=369 amount=-1 +kerning first=380 second=116 amount=-1 +kerning first=290 second=369 amount=-1 +kerning first=330 second=382 amount=-1 +kerning first=344 second=116 amount=-1 +kerning first=286 second=356 amount=-1 +kerning first=376 second=363 amount=-1 +kerning first=330 second=122 amount=-1 +kerning first=366 second=382 amount=-1 +kerning first=362 second=369 amount=-1 +kerning first=218 second=109 amount=-1 +kerning first=240 second=375 amount=-1 +kerning first=66 second=298 amount=-2 +kerning first=8222 second=287 amount=-1 +kerning first=1039 second=1095 amount=-1 +kerning first=375 second=279 amount=-1 +kerning first=275 second=305 amount=-1 +kerning first=240 second=115 amount=-1 +kerning first=214 second=370 amount=-1 +kerning first=87 second=336 amount=-1 +kerning first=1047 second=1070 amount=-1 +kerning first=347 second=305 amount=-1 +kerning first=113 second=355 amount=-1 +kerning first=267 second=279 amount=-1 +kerning first=286 second=370 amount=-1 +kerning first=192 second=336 amount=-1 +kerning first=231 second=279 amount=-1 +kerning first=196 second=89 amount=-3 +kerning first=8250 second=261 amount=-1 +kerning first=264 second=336 amount=-2 +kerning first=303 second=279 amount=-1 +kerning first=1069 second=1062 amount=-1 +kerning first=268 second=89 amount=-1 +kerning first=223 second=253 amount=-1 +kerning first=259 second=253 amount=-1 +kerning first=87 second=380 amount=-2 +kerning first=295 second=253 amount=-1 +kerning first=331 second=253 amount=-1 +kerning first=1073 second=1103 amount=-1 +kerning first=367 second=253 amount=-1 +kerning first=286 second=82 amount=-1 +kerning first=80 second=66 amount=-1 +kerning first=1069 second=1048 amount=-1 +kerning first=66 second=332 amount=-1 +kerning first=366 second=230 amount=-2 +kerning first=82 second=225 amount=-1 +kerning first=45 second=108 amount=-1 +kerning first=118 second=225 amount=-2 +kerning first=262 second=196 amount=-2 +kerning first=187 second=225 amount=-1 +kerning first=370 second=196 amount=-2 +kerning first=117 second=108 amount=-1 +kerning first=196 second=335 amount=-1 +kerning first=334 second=196 amount=-2 +kerning first=376 second=75 amount=-1 +kerning first=207 second=332 amount=-1 +kerning first=282 second=315 amount=-1 +kerning first=85 second=196 amount=-2 +kerning first=197 second=116 amount=-1 +kerning first=354 second=315 amount=-1 +kerning first=78 second=115 amount=-1 +kerning first=258 second=108 amount=-1 +kerning first=280 second=203 amount=-1 +kerning first=245 second=8217 amount=-1 +kerning first=208 second=203 amount=-1 +kerning first=321 second=286 amount=-1 +kerning first=220 second=242 amount=-1 +kerning first=317 second=8217 amount=-2 +kerning first=200 second=102 amount=-1 +kerning first=313 second=218 amount=-1 +kerning first=235 second=46 amount=-2 +kerning first=204 second=115 amount=-1 +kerning first=97 second=8221 amount=-1 +kerning first=86 second=269 amount=-2 +kerning first=68 second=8217 amount=-1 +kerning first=256 second=242 amount=-1 +kerning first=209 second=231 amount=-1 +kerning first=307 second=46 amount=-1 +kerning first=364 second=242 amount=-1 +kerning first=99 second=115 amount=-1 +kerning first=367 second=225 amount=-1 +kerning first=67 second=203 amount=-1 +kerning first=218 second=81 amount=-1 +kerning first=72 second=286 amount=-1 +kerning first=217 second=67 amount=-1 +kerning first=231 second=307 amount=-1 +kerning first=267 second=307 amount=-1 +kerning first=209 second=245 amount=-1 +kerning first=197 second=119 amount=-2 +kerning first=199 second=46 amount=-1 +kerning first=85 second=210 amount=-1 +kerning first=76 second=67 amount=-1 +kerning first=81 second=122 amount=-1 +kerning first=233 second=119 amount=-1 +kerning first=8250 second=289 amount=-1 +kerning first=339 second=307 amount=-1 +kerning first=236 second=102 amount=-1 +kerning first=45 second=122 amount=-3 +kerning first=269 second=119 amount=-1 +kerning first=375 second=307 amount=-1 +kerning first=67 second=217 amount=-1 +kerning first=305 second=119 amount=-1 +kerning first=310 second=8221 amount=-1 +kerning first=356 second=74 amount=-2 +kerning first=65 second=8217 amount=-3 +kerning first=263 second=252 amount=-1 +kerning first=376 second=335 amount=-2 +kerning first=377 second=119 amount=-1 +kerning first=1056 second=1062 amount=-1 +kerning first=80 second=344 amount=-1 +kerning first=1047 second=1042 amount=-1 +kerning first=313 second=204 amount=-1 +kerning first=371 second=252 amount=-1 +kerning first=86 second=252 amount=-1 +kerning first=353 second=259 amount=-1 +kerning first=119 second=269 amount=-1 +kerning first=122 second=252 amount=-1 +kerning first=268 second=335 amount=-1 +kerning first=1067 second=1086 amount=-1 +kerning first=325 second=67 amount=-1 +kerning first=304 second=335 amount=-1 +kerning first=77 second=81 amount=-1 +kerning first=227 second=252 amount=-1 +kerning first=105 second=104 amount=-1 +kerning first=333 second=353 amount=-1 +kerning first=296 second=269 amount=-1 +kerning first=337 second=378 amount=-1 +kerning first=369 second=365 amount=-1 +kerning first=369 second=353 amount=-1 +kerning first=260 second=269 amount=-1 +kerning first=65 second=288 amount=-1 +kerning first=346 second=378 amount=-1 +kerning first=368 second=269 amount=-1 +kerning first=198 second=262 amount=-1 +kerning first=261 second=365 amount=-1 +kerning first=351 second=112 amount=-1 +kerning first=251 second=171 amount=-1 +kerning first=225 second=365 amount=-1 +kerning first=315 second=112 amount=-1 +kerning first=225 second=353 amount=-1 +kerning first=287 second=171 amount=-1 +kerning first=8217 second=244 amount=-2 +kerning first=279 second=112 amount=-1 +kerning first=261 second=353 amount=-1 +kerning first=323 second=171 amount=-2 +kerning first=120 second=365 amount=-1 +kerning first=243 second=112 amount=-1 +kerning first=382 second=249 amount=-1 +kerning first=278 second=288 amount=-1 +kerning first=382 second=275 amount=-1 +kerning first=203 second=87 amount=-1 +kerning first=102 second=100 amount=-1 +kerning first=310 second=249 amount=-1 +kerning first=84 second=353 amount=-2 +kerning first=1048 second=1086 amount=-1 +kerning first=310 second=275 amount=-1 +kerning first=120 second=353 amount=-1 +kerning first=207 second=100 amount=-1 +kerning first=80 second=354 amount=-1 +kerning first=221 second=352 amount=-2 +kerning first=370 second=210 amount=-1 +kerning first=201 second=365 amount=-1 +kerning first=82 second=211 amount=-1 +kerning first=88 second=366 amount=-1 +kerning first=266 second=223 amount=-1 +kerning first=1054 second=1052 amount=-1 +kerning first=1098 second=1078 amount=-1 +kerning first=374 second=223 amount=-1 +kerning first=298 second=210 amount=-1 +kerning first=206 second=288 amount=-1 +kerning first=70 second=113 amount=-1 +kerning first=262 second=210 amount=-2 +kerning first=87 second=296 amount=-1 +kerning first=97 second=249 amount=-1 +kerning first=89 second=223 amount=-1 +kerning first=85 second=277 amount=-1 +kerning first=270 second=8220 amount=-1 +kerning first=234 second=8220 amount=-1 +kerning first=264 second=296 amount=-1 +kerning first=278 second=274 amount=-1 +kerning first=274 second=249 amount=-1 +kerning first=97 second=289 amount=-1 +kerning first=1058 second=1079 amount=-1 +kerning first=336 second=296 amount=-1 +kerning first=86 second=370 amount=-1 +kerning first=202 second=249 amount=-1 +kerning first=202 second=289 amount=-1 +kerning first=76 second=327 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=219 second=198 amount=-2 +kerning first=346 second=8249 amount=-1 +kerning first=374 second=237 amount=-1 +kerning first=310 second=263 amount=-1 +kerning first=382 second=8249 amount=-2 +kerning first=120 second=339 amount=-1 +kerning first=274 second=8249 amount=-1 +kerning first=109 second=363 amount=-1 +kerning first=350 second=274 amount=-1 +kerning first=382 second=263 amount=-1 +kerning first=310 second=8249 amount=-2 +kerning first=210 second=315 amount=-1 +kerning first=266 second=237 amount=-1 +kerning first=202 second=8249 amount=-1 +kerning first=230 second=237 amount=-1 +kerning first=1030 second=1105 amount=-1 +kerning first=84 second=379 amount=-1 +kerning first=97 second=8249 amount=-1 +kerning first=69 second=315 amount=-1 +kerning first=313 second=206 amount=-1 +kerning first=268 second=75 amount=-1 +kerning first=89 second=237 amount=-1 +kerning first=203 second=73 amount=-1 +kerning first=266 second=209 amount=-1 +kerning first=84 second=381 amount=-1 +kerning first=234 second=44 amount=-2 +kerning first=1058 second=1081 amount=-1 +kerning first=378 second=234 amount=-1 +kerning first=77 second=83 amount=-1 +kerning first=78 second=212 amount=-1 +kerning first=323 second=199 amount=-1 +kerning first=230 second=257 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=310 second=277 amount=-1 +kerning first=66 second=86 amount=-2 +kerning first=218 second=83 amount=-1 +kerning first=8217 second=246 amount=-2 +kerning first=262 second=381 amount=-1 +kerning first=350 second=302 amount=-1 +kerning first=70 second=99 amount=-1 +kerning first=338 second=209 amount=-1 +kerning first=382 second=277 amount=-1 +kerning first=290 second=83 amount=-1 +kerning first=278 second=302 amount=-1 +kerning first=315 second=72 amount=-1 +kerning first=225 second=351 amount=-1 +kerning first=268 second=323 amount=-1 +kerning first=198 second=264 amount=-1 +kerning first=362 second=83 amount=-1 +kerning first=88 second=364 amount=-1 +kerning first=87 second=76 amount=-1 +kerning first=310 second=289 amount=-1 +kerning first=261 second=351 amount=-1 +kerning first=346 second=289 amount=-1 +kerning first=89 second=209 amount=-1 +kerning first=382 second=289 amount=-1 +kerning first=327 second=212 amount=-1 +kerning first=74 second=199 amount=-1 +kerning first=376 second=323 amount=-1 +kerning first=120 second=351 amount=-1 +kerning first=219 second=212 amount=-1 +kerning first=351 second=114 amount=-1 +kerning first=84 second=351 amount=-2 +kerning first=193 second=364 amount=-2 +kerning first=225 second=367 amount=-1 +kerning first=346 second=291 amount=-1 +kerning first=1098 second=1097 amount=-1 +kerning first=261 second=367 amount=-1 +kerning first=209 second=233 amount=-1 +kerning first=78 second=226 amount=-1 +kerning first=66 second=72 amount=-2 +kerning first=120 second=367 amount=-1 +kerning first=274 second=291 amount=-1 +kerning first=274 second=261 amount=-1 +kerning first=212 second=8217 amount=-1 +kerning first=336 second=76 amount=-1 +kerning first=211 second=97 amount=-1 +kerning first=369 second=351 amount=-1 +kerning first=202 second=291 amount=-1 +kerning first=120 second=337 amount=-1 +kerning first=219 second=226 amount=-2 +kerning first=84 second=367 amount=-1 +kerning first=45 second=110 amount=-1 +kerning first=333 second=351 amount=-1 +kerning first=84 second=337 amount=-2 +kerning first=264 second=76 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=97 second=291 amount=-1 +kerning first=291 second=226 amount=-1 +kerning first=199 second=345 amount=-1 +kerning first=327 second=226 amount=-1 +kerning first=1054 second=1040 amount=-2 +kerning first=74 second=171 amount=-2 +kerning first=65 second=316 amount=-1 +kerning first=8217 second=232 amount=-2 +kerning first=221 second=326 amount=-1 +kerning first=110 second=171 amount=-1 +kerning first=200 second=350 amount=-1 +kerning first=101 second=316 amount=-1 +kerning first=283 second=97 amount=-1 +kerning first=378 second=250 amount=-1 +kerning first=171 second=86 amount=-2 +kerning first=1069 second=1050 amount=-1 +kerning first=1057 second=1064 amount=-1 +kerning first=310 second=261 amount=-1 +kerning first=242 second=316 amount=-1 +kerning first=346 second=261 amount=-1 +kerning first=274 second=87 amount=-1 +kerning first=366 second=110 amount=-1 +kerning first=344 second=350 amount=-1 +kerning first=278 second=316 amount=-1 +kerning first=382 second=261 amount=-1 +kerning first=1113 second=1116 amount=-1 +kerning first=314 second=316 amount=-1 +kerning first=234 second=250 amount=-1 +kerning first=315 second=86 amount=-1 +kerning first=272 second=350 amount=-1 +kerning first=350 second=316 amount=-1 +kerning first=198 second=250 amount=-1 +kerning first=212 second=200 amount=-1 +kerning first=1051 second=1057 amount=-1 +kerning first=99 second=117 amount=-1 +kerning first=290 second=381 amount=-1 +kerning first=69 second=331 amount=-1 +kerning first=204 second=117 amount=-1 +kerning first=362 second=381 amount=-1 +kerning first=376 second=337 amount=-2 +kerning first=105 second=331 amount=-1 +kerning first=201 second=221 amount=-1 +kerning first=356 second=200 amount=-1 +kerning first=282 second=352 amount=-1 +kerning first=213 second=260 amount=-2 +kerning first=284 second=200 amount=-1 +kerning first=321 second=260 amount=-1 +kerning first=75 second=85 amount=-1 +kerning first=376 second=361 amount=-1 +kerning first=268 second=288 amount=-2 +kerning first=97 second=8220 amount=-1 +kerning first=219 second=214 amount=-1 +kerning first=87 second=338 amount=-1 +kerning first=86 second=240 amount=-2 +kerning first=327 second=214 amount=-1 +kerning first=266 second=207 amount=-1 +kerning first=122 second=240 amount=-1 +kerning first=379 second=290 amount=-1 +kerning first=381 second=221 amount=-1 +kerning first=371 second=240 amount=-1 +kerning first=263 second=240 amount=-1 +kerning first=199 second=290 amount=-2 +kerning first=89 second=207 amount=-1 +kerning first=272 second=90 amount=-1 +kerning first=66 second=84 amount=-2 +kerning first=1054 second=1024 amount=-1 +kerning first=350 second=304 amount=-1 +kerning first=214 second=330 amount=-1 +kerning first=377 second=194 amount=-1 +kerning first=313 second=220 amount=-1 +kerning first=330 second=67 amount=-1 +kerning first=69 second=71 amount=-1 +kerning first=213 second=298 amount=-1 +kerning first=278 second=304 amount=-1 +kerning first=67 second=201 amount=-1 +kerning first=375 second=291 amount=-2 +kerning first=216 second=227 amount=-1 +kerning first=339 second=291 amount=-1 +kerning first=76 second=287 amount=-1 +kerning first=67 second=197 amount=-2 +kerning first=1047 second=1030 amount=-1 +kerning first=338 second=207 amount=-1 +kerning first=303 second=291 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=321 second=298 amount=-1 +kerning first=374 second=207 amount=-1 +kerning first=1037 second=1077 amount=-1 +kerning first=267 second=291 amount=-1 +kerning first=286 second=330 amount=-1 +kerning first=75 second=227 amount=-1 +kerning first=231 second=291 amount=-1 +kerning first=112 second=287 amount=-1 +kerning first=195 second=291 amount=-1 +kerning first=218 second=97 amount=-2 +kerning first=253 second=287 amount=-2 +kerning first=264 second=290 amount=-2 +kerning first=282 second=71 amount=-1 +kerning first=217 second=287 amount=-2 +kerning first=260 second=311 amount=-1 +kerning first=90 second=291 amount=-2 +kerning first=113 second=97 amount=-1 +kerning first=325 second=287 amount=-1 +kerning first=203 second=317 amount=-1 +kerning first=84 second=77 amount=-1 +kerning first=354 second=71 amount=-1 +kerning first=289 second=287 amount=-1 +kerning first=110 second=365 amount=-1 +kerning first=1116 second=1101 amount=-1 +kerning first=362 second=97 amount=-2 +kerning first=119 second=311 amount=-1 +kerning first=221 second=324 amount=-1 +kerning first=304 second=337 amount=-1 +kerning first=83 second=311 amount=-1 +kerning first=200 second=90 amount=-1 +kerning first=290 second=97 amount=-1 +kerning first=1059 second=1107 amount=-2 +kerning first=218 second=381 amount=-1 +kerning first=354 second=204 amount=-1 +kerning first=89 second=197 amount=-3 +kerning first=117 second=120 amount=-1 +kerning first=90 second=263 amount=-1 +kerning first=268 second=365 amount=-1 +kerning first=232 second=365 amount=-1 +kerning first=222 second=120 amount=-1 +kerning first=195 second=263 amount=-1 +kerning first=196 second=365 amount=-1 +kerning first=381 second=193 amount=-1 +kerning first=231 second=263 amount=-1 +kerning first=76 second=325 amount=-1 +kerning first=354 second=303 amount=-1 +kerning first=266 second=197 amount=-2 +kerning first=86 second=268 amount=-1 +kerning first=326 second=353 amount=-1 +kerning first=286 second=70 amount=-1 +kerning first=82 second=213 amount=-1 +kerning first=45 second=120 amount=-2 +kerning first=87 second=310 amount=-1 +kerning first=362 second=353 amount=-1 +kerning first=66 second=74 amount=-2 +kerning first=81 second=120 amount=-1 +kerning first=221 second=78 amount=-1 +kerning first=214 second=70 amount=-1 +kerning first=204 second=113 amount=-1 +kerning first=336 second=310 amount=-1 +kerning first=80 second=78 amount=-1 +kerning first=370 second=262 amount=-1 +kerning first=209 second=275 amount=-1 +kerning first=380 second=118 amount=-1 +kerning first=196 second=248 amount=-1 +kerning first=1007 second=1003 amount=-1 +kerning first=76 second=346 amount=-1 +kerning first=105 second=303 amount=-1 +kerning first=344 second=118 amount=-1 +kerning first=99 second=113 amount=-1 +kerning first=264 second=310 amount=-1 +kerning first=218 second=353 amount=-1 +kerning first=201 second=254 amount=-1 +kerning first=254 second=353 amount=-1 +kerning first=352 second=201 amount=-1 +kerning first=203 second=85 amount=-1 +kerning first=246 second=303 amount=-1 +kerning first=236 second=118 amount=-1 +kerning first=315 second=74 amount=-1 +kerning first=376 second=365 amount=-1 +kerning first=200 second=118 amount=-1 +kerning first=280 second=201 amount=-1 +kerning first=366 second=120 amount=-1 +kerning first=286 second=366 amount=-1 +kerning first=304 second=365 amount=-1 +kerning first=77 second=353 amount=-1 +kerning first=257 second=314 amount=-1 +kerning first=208 second=201 amount=-1 +kerning first=1102 second=1093 amount=-1 +kerning first=266 second=235 amount=-1 +kerning first=195 second=8249 amount=-2 +kerning first=365 second=314 amount=-1 +kerning first=119 second=283 amount=-1 +kerning first=302 second=235 amount=-1 +kerning first=330 second=380 amount=-1 +kerning first=231 second=8249 amount=-1 +kerning first=8216 second=227 amount=-1 +kerning first=366 second=380 amount=-1 +kerning first=90 second=8249 amount=-1 +kerning first=258 second=355 amount=-1 +kerning first=374 second=235 amount=-1 +kerning first=213 second=270 amount=-1 +kerning first=198 second=224 amount=-1 +kerning first=117 second=380 amount=-1 +kerning first=339 second=249 amount=-1 +kerning first=296 second=283 amount=-1 +kerning first=264 second=338 amount=-2 +kerning first=250 second=98 amount=-1 +kerning first=84 second=105 amount=-1 +kerning first=260 second=283 amount=-1 +kerning first=222 second=380 amount=-1 +kerning first=234 second=224 amount=-1 +kerning first=356 second=228 amount=-2 +kerning first=192 second=338 amount=-1 +kerning first=284 second=228 amount=-1 +kerning first=45 second=380 amount=-3 +kerning first=187 second=241 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=368 second=283 amount=-1 +kerning first=66 second=112 amount=-2 +kerning first=378 second=224 amount=-1 +kerning first=212 second=228 amount=-1 +kerning first=81 second=380 amount=-1 +kerning first=251 second=102 amount=-1 +kerning first=118 second=241 amount=-1 +kerning first=267 second=263 amount=-1 +kerning first=205 second=248 amount=-1 +kerning first=89 second=235 amount=-1 +kerning first=235 second=318 amount=-1 +kerning first=303 second=263 amount=-1 +kerning first=354 second=331 amount=-1 +kerning first=107 second=228 amount=-1 +kerning first=375 second=8249 amount=-2 +kerning first=1025 second=1038 amount=-1 +kerning first=71 second=228 amount=-1 +kerning first=307 second=318 amount=-1 +kerning first=267 second=8249 amount=-1 +kerning first=1061 second=1038 amount=-1 +kerning first=375 second=263 amount=-1 +kerning first=282 second=331 amount=-1 +kerning first=368 second=281 amount=-1 +kerning first=1040 second=1072 amount=-1 +kerning first=352 second=205 amount=-1 +kerning first=220 second=256 amount=-2 +kerning first=356 second=230 amount=-2 +kerning first=80 second=82 amount=-1 +kerning first=213 second=205 amount=-1 +kerning first=1044 second=1073 amount=-1 +kerning first=260 second=281 amount=-1 +kerning first=208 second=205 amount=-1 +kerning first=284 second=230 amount=-1 +kerning first=252 second=255 amount=-1 +kerning first=296 second=281 amount=-1 +kerning first=97 second=251 amount=-1 +kerning first=88 second=108 amount=-1 +kerning first=280 second=205 amount=-1 +kerning first=212 second=230 amount=-1 +kerning first=311 second=347 amount=-1 +kerning first=67 second=205 amount=-1 +kerning first=111 second=255 amount=-1 +kerning first=202 second=251 amount=-1 +kerning first=75 second=8217 amount=-1 +kerning first=275 second=347 amount=-1 +kerning first=75 second=255 amount=-2 +kerning first=307 second=102 amount=-1 +kerning first=111 second=8217 amount=-1 +kerning first=119 second=281 amount=-1 +kerning first=274 second=251 amount=-1 +kerning first=85 second=378 amount=-1 +kerning first=203 second=347 amount=-1 +kerning first=8222 second=303 amount=-1 +kerning first=369 second=107 amount=-1 +kerning first=205 second=216 amount=-1 +kerning first=231 second=8221 amount=-1 +kerning first=369 second=105 amount=-1 +kerning first=98 second=347 amount=-1 +kerning first=267 second=8221 amount=-1 +kerning first=283 second=371 amount=-1 +kerning first=313 second=216 amount=-1 +kerning first=75 second=231 amount=-1 +kerning first=195 second=8221 amount=-3 +kerning first=333 second=105 amount=-1 +kerning first=88 second=106 amount=-1 +kerning first=88 second=368 amount=-1 +kerning first=268 second=333 amount=-1 +kerning first=286 second=68 amount=-1 +kerning first=354 second=67 amount=-1 +kerning first=214 second=68 amount=-1 +kerning first=221 second=80 amount=-1 +kerning first=304 second=333 amount=-1 +kerning first=339 second=8221 amount=-1 +kerning first=347 second=345 amount=-1 +kerning first=88 second=374 amount=-1 +kerning first=207 second=346 amount=-1 +kerning first=201 second=217 amount=-1 +kerning first=79 second=282 amount=-1 +kerning first=352 second=203 amount=-1 +kerning first=193 second=368 amount=-2 +kerning first=196 second=333 amount=-1 +kerning first=229 second=106 amount=-1 +kerning first=66 second=346 amount=-2 +kerning first=209 second=243 amount=-1 +kerning first=71 second=230 amount=-1 +kerning first=71 second=204 amount=-1 +kerning first=107 second=230 amount=-1 +kerning first=315 second=346 amount=-1 +kerning first=212 second=204 amount=-1 +kerning first=337 second=106 amount=-1 +kerning first=119 second=307 amount=-1 +kerning first=8216 second=101 amount=-1 +kerning first=275 second=314 amount=-1 +kerning first=284 second=204 amount=-1 +kerning first=376 second=333 amount=-2 +kerning first=356 second=204 amount=-1 +kerning first=278 second=278 amount=-1 +kerning first=79 second=256 amount=-2 +kerning first=210 second=69 amount=-1 +kerning first=283 second=369 amount=-1 +kerning first=346 second=380 amount=-1 +kerning first=315 second=344 amount=-1 +kerning first=192 second=334 amount=-1 +kerning first=101 second=44 amount=-2 +kerning first=193 second=104 amount=-1 +kerning first=75 second=259 amount=-1 +kerning first=206 second=44 amount=-1 +kerning first=1025 second=1034 amount=-1 +kerning first=106 second=369 amount=-1 +kerning first=315 second=374 amount=-1 +kerning first=69 second=69 amount=-1 +kerning first=70 second=369 amount=-1 +kerning first=377 second=192 amount=-1 +kerning first=337 second=104 amount=-1 +kerning first=72 second=225 amount=-1 +kerning first=288 second=227 amount=-1 +kerning first=252 second=227 amount=-1 +kerning first=296 second=279 amount=-1 +kerning first=364 second=284 amount=-1 +kerning first=75 second=229 amount=-1 +kerning first=256 second=284 amount=-1 +kerning first=356 second=232 amount=-1 +kerning first=1057 second=1054 amount=-1 +kerning first=288 second=229 amount=-1 +kerning first=88 second=104 amount=-1 +kerning first=278 second=44 amount=-1 +kerning first=105 second=305 amount=-1 +kerning first=84 second=109 amount=-1 +kerning first=216 second=229 amount=-1 +kerning first=119 second=279 amount=-1 +kerning first=220 second=284 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=87 second=334 amount=-1 +kerning first=350 second=44 amount=-2 +kerning first=252 second=229 amount=-1 +kerning first=8250 second=249 amount=-1 +kerning first=252 second=257 amount=-1 +kerning first=225 second=249 amount=-1 +kerning first=268 second=65 amount=-2 +kerning first=106 second=371 amount=-1 +kerning first=288 second=257 amount=-1 +kerning first=267 second=267 amount=-1 +kerning first=303 second=267 amount=-1 +kerning first=216 second=257 amount=-1 +kerning first=8216 second=113 amount=-1 +kerning first=354 second=305 amount=-1 +kerning first=376 second=65 amount=-3 +kerning first=235 second=8250 amount=-1 +kerning first=232 second=361 amount=-1 +kerning first=75 second=257 amount=-1 +kerning first=212 second=202 amount=-1 +kerning first=368 second=279 amount=-1 +kerning first=196 second=361 amount=-1 +kerning first=71 second=202 amount=-1 +kerning first=107 second=232 amount=-1 +kerning first=304 second=361 amount=-1 +kerning first=347 second=347 amount=-1 +kerning first=214 second=209 amount=-1 +kerning first=268 second=361 amount=-1 +kerning first=171 second=374 amount=-2 +kerning first=362 second=121 amount=-1 +kerning first=356 second=202 amount=-1 +kerning first=256 second=254 amount=-1 +kerning first=205 second=244 amount=-1 +kerning first=326 second=121 amount=-1 +kerning first=66 second=374 amount=-2 +kerning first=284 second=202 amount=-1 +kerning first=328 second=254 amount=-1 +kerning first=254 second=121 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=354 second=69 amount=-1 +kerning first=286 second=66 amount=-1 +kerning first=264 second=171 amount=-2 +kerning first=195 second=267 amount=-1 +kerning first=231 second=267 amount=-1 +kerning first=115 second=254 amount=-1 +kerning first=282 second=69 amount=-1 +kerning first=214 second=66 amount=-1 +kerning first=90 second=267 amount=-1 +kerning first=113 second=121 amount=-1 +kerning first=221 second=82 amount=-1 +kerning first=77 second=121 amount=-1 +kerning first=315 second=82 amount=-1 +kerning first=196 second=79 amount=-1 +kerning first=87 second=66 amount=-1 +kerning first=97 second=8217 amount=-1 +kerning first=73 second=332 amount=-1 +kerning first=1059 second=1119 amount=-2 +kerning first=203 second=69 amount=-1 +kerning first=264 second=66 amount=-1 +kerning first=201 second=209 amount=-1 +kerning first=379 second=302 amount=-1 +kerning first=199 second=316 amount=-1 +kerning first=338 second=205 amount=-1 +kerning first=214 second=72 amount=-1 +kerning first=78 second=216 amount=-1 +kerning first=67 second=199 amount=-2 +kerning first=370 second=192 amount=-2 +kerning first=1098 second=1096 amount=-1 +kerning first=221 second=76 amount=-1 +kerning first=286 second=72 amount=-1 +kerning first=376 second=79 amount=-1 +kerning first=334 second=192 amount=-2 +kerning first=374 second=205 amount=-1 +kerning first=66 second=82 amount=-2 +kerning first=336 second=66 amount=-1 +kerning first=122 second=242 amount=-1 +kerning first=187 second=229 amount=-1 +kerning first=262 second=192 amount=-2 +kerning first=86 second=242 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=266 second=205 amount=-1 +kerning first=356 second=212 amount=-1 +kerning first=82 second=229 amount=-1 +kerning first=280 second=199 amount=-1 +kerning first=118 second=229 amount=-2 +kerning first=310 second=8217 amount=-1 +kerning first=104 second=8221 amount=-2 +kerning first=212 second=226 amount=-1 +kerning first=263 second=242 amount=-1 +kerning first=202 second=268 amount=-1 +kerning first=290 second=382 amount=-1 +kerning first=89 second=205 amount=-1 +kerning first=371 second=242 amount=-1 +kerning first=284 second=226 amount=-1 +kerning first=68 second=8221 amount=-1 +kerning first=286 second=86 amount=-1 +kerning first=374 second=219 amount=-1 +kerning first=281 second=8221 amount=-1 +kerning first=219 second=216 amount=-1 +kerning first=356 second=226 amount=-2 +kerning first=99 second=119 amount=-1 +kerning first=338 second=219 amount=-1 +kerning first=317 second=8221 amount=-2 +kerning first=1043 second=1033 amount=-3 +kerning first=264 second=326 amount=-1 +kerning first=204 second=119 amount=-1 +kerning first=266 second=219 amount=-1 +kerning first=245 second=8221 amount=-1 +kerning first=327 second=216 amount=-1 +kerning first=240 second=119 amount=-1 +kerning first=235 second=316 amount=-1 +kerning first=1055 second=1092 amount=-1 +kerning first=84 second=103 amount=-2 +kerning first=194 second=219 amount=-2 +kerning first=1091 second=1092 amount=-1 +kerning first=381 second=209 amount=-1 +kerning first=354 second=333 amount=-2 +kerning first=353 second=8221 amount=-1 +kerning first=87 second=326 amount=-1 +kerning first=89 second=219 amount=-1 +kerning first=199 second=302 amount=-1 +kerning first=214 second=86 amount=-1 +kerning first=71 second=226 amount=-1 +kerning first=221 second=334 amount=-1 +kerning first=107 second=226 amount=-1 +kerning first=346 second=259 amount=-1 +kerning first=296 second=289 amount=-1 +kerning first=8217 second=231 amount=-2 +kerning first=378 second=246 amount=-1 +kerning first=310 second=259 amount=-1 +kerning first=369 second=103 amount=-1 +kerning first=90 second=269 amount=-1 +kerning first=84 second=369 amount=-1 +kerning first=75 second=253 amount=-2 +kerning first=333 second=103 amount=-1 +kerning first=231 second=269 amount=-1 +kerning first=84 second=363 amount=-1 +kerning first=382 second=259 amount=-1 +kerning first=111 second=253 amount=-1 +kerning first=337 second=122 amount=-1 +kerning first=69 second=45 amount=-1 +kerning first=195 second=269 amount=-1 +kerning first=120 second=363 amount=-1 +kerning first=287 second=263 amount=-1 +kerning first=1098 second=1082 amount=-1 +kerning first=210 second=45 amount=-1 +kerning first=303 second=269 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=193 second=116 amount=-1 +kerning first=225 second=103 amount=-1 +kerning first=267 second=269 amount=-1 +kerning first=315 second=362 amount=-1 +kerning first=274 second=259 amount=-1 +kerning first=252 second=253 amount=-1 +kerning first=282 second=45 amount=-1 +kerning first=375 second=269 amount=-1 +kerning first=261 second=363 amount=-1 +kerning first=378 second=252 amount=-1 +kerning first=120 second=103 amount=-1 +kerning first=8250 second=251 amount=-1 +kerning first=66 second=356 amount=-2 +kerning first=66 second=362 amount=-2 +kerning first=1055 second=1086 amount=-1 +kerning first=337 second=382 amount=-1 +kerning first=369 second=363 amount=-1 +kerning first=220 second=266 amount=-1 +kerning first=369 second=369 amount=-1 +kerning first=256 second=266 amount=-1 +kerning first=120 second=369 amount=-1 +kerning first=261 second=369 amount=-1 +kerning first=106 second=375 amount=-1 +kerning first=1116 second=1089 amount=-1 +kerning first=225 second=369 amount=-1 +kerning first=321 second=284 amount=-1 +kerning first=120 second=355 amount=-1 +kerning first=313 second=361 amount=-1 +kerning first=310 second=279 amount=-1 +kerning first=84 second=355 amount=-1 +kerning first=106 second=109 amount=-1 +kerning first=221 second=336 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=315 second=370 amount=-1 +kerning first=382 second=279 amount=-1 +kerning first=106 second=115 amount=-1 +kerning first=330 second=213 amount=-1 +kerning first=8217 second=214 amount=-1 +kerning first=8222 second=311 amount=-1 +kerning first=79 second=280 amount=-1 +kerning first=378 second=232 amount=-1 +kerning first=283 second=115 amount=-1 +kerning first=199 second=296 amount=-1 +kerning first=1091 second=1086 amount=-1 +kerning first=1054 second=1036 amount=-1 +kerning first=229 second=108 amount=-1 +kerning first=324 second=253 amount=-1 +kerning first=193 second=108 amount=-1 +kerning first=89 second=380 amount=-2 +kerning first=379 second=296 amount=-1 +kerning first=88 second=116 amount=-1 +kerning first=71 second=206 amount=-1 +kerning first=66 second=370 amount=-2 +kerning first=337 second=108 amount=-1 +kerning first=66 second=296 amount=-2 +kerning first=45 second=323 amount=-3 +kerning first=73 second=338 amount=-1 +kerning first=212 second=206 amount=-1 +kerning first=289 second=303 amount=-1 +kerning first=321 second=290 amount=-1 +kerning first=69 second=313 amount=-1 +kerning first=73 second=83 amount=-1 +kerning first=200 second=98 amount=-1 +kerning first=221 second=328 amount=-1 +kerning first=284 second=206 amount=-1 +kerning first=217 second=303 amount=-1 +kerning first=74 second=334 amount=-1 +kerning first=282 second=325 amount=-1 +kerning first=1059 second=1113 amount=-3 +kerning first=356 second=206 amount=-1 +kerning first=89 second=213 amount=-1 +kerning first=84 second=83 amount=-2 +kerning first=266 second=225 amount=-1 +kerning first=380 second=380 amount=-1 +kerning first=380 second=98 amount=-1 +kerning first=344 second=364 amount=-1 +kerning first=79 second=344 amount=-1 +kerning first=302 second=225 amount=-1 +kerning first=219 second=196 amount=-2 +kerning first=376 second=85 amount=-1 +kerning first=203 second=323 amount=-1 +kerning first=338 second=225 amount=-1 +kerning first=1091 second=1077 amount=-1 +kerning first=72 second=290 amount=-1 +kerning first=374 second=225 amount=-2 +kerning first=382 second=273 amount=-1 +kerning first=8222 second=305 amount=-1 +kerning first=89 second=225 amount=-2 +kerning first=236 second=380 amount=-1 +kerning first=236 second=98 amount=-1 +kerning first=1073 second=1093 amount=-1 +kerning first=268 second=85 amount=-1 +kerning first=278 second=286 amount=-1 +kerning first=272 second=380 amount=-1 +kerning first=344 second=98 amount=-1 +kerning first=69 second=325 amount=-1 +kerning first=196 second=85 amount=-2 +kerning first=230 second=225 amount=-1 +kerning first=75 second=233 amount=-1 +kerning first=206 second=286 amount=-1 +kerning first=246 second=311 amount=-1 +kerning first=203 second=77 amount=-1 +kerning first=268 second=71 amount=-2 +kerning first=228 second=46 amount=-1 +kerning first=89 second=211 amount=-1 +kerning first=279 second=102 amount=-1 +kerning first=327 second=210 amount=-1 +kerning first=1113 second=1118 amount=-1 +kerning first=214 second=8217 amount=-1 +kerning first=105 second=311 amount=-1 +kerning first=351 second=102 amount=-1 +kerning first=304 second=71 amount=-1 +kerning first=336 second=46 amount=-1 +kerning first=69 second=311 amount=-1 +kerning first=302 second=210 amount=-1 +kerning first=1047 second=1040 amount=-1 +kerning first=66 second=102 amount=-2 +kerning first=219 second=210 amount=-1 +kerning first=65 second=286 amount=-1 +kerning first=73 second=352 amount=-1 +kerning first=266 second=211 amount=-2 +kerning first=102 second=102 amount=-1 +kerning first=87 second=46 amount=-3 +kerning first=214 second=352 amount=-1 +kerning first=196 second=71 amount=-1 +kerning first=76 second=317 amount=-1 +kerning first=194 second=211 amount=-1 +kerning first=78 second=210 amount=-1 +kerning first=187 second=221 amount=-2 +kerning first=374 second=211 amount=-1 +kerning first=82 second=235 amount=-1 +kerning first=1098 second=1090 amount=-1 +kerning first=82 second=221 amount=-1 +kerning first=118 second=235 amount=-1 +kerning first=302 second=211 amount=-1 +kerning first=198 second=252 amount=-1 +kerning first=236 second=112 amount=-1 +kerning first=344 second=366 amount=-1 +kerning first=338 second=211 amount=-1 +kerning first=234 second=252 amount=-1 +kerning first=200 second=112 amount=-1 +kerning first=207 second=350 amount=-1 +kerning first=334 second=200 amount=-1 +kerning first=1054 second=1042 amount=-1 +kerning first=66 second=350 amount=-2 +kerning first=1062 second=1090 amount=-1 +kerning first=282 second=311 amount=-1 +kerning first=262 second=200 amount=-1 +kerning first=195 second=275 amount=-1 +kerning first=196 second=353 amount=-1 +kerning first=315 second=350 amount=-1 +kerning first=187 second=237 amount=-1 +kerning first=122 second=250 amount=-1 +kerning first=231 second=275 amount=-1 +kerning first=232 second=353 amount=-1 +kerning first=118 second=237 amount=-1 +kerning first=86 second=250 amount=-1 +kerning first=218 second=113 amount=-1 +kerning first=330 second=171 amount=-2 +kerning first=256 second=112 amount=-1 +kerning first=90 second=275 amount=-1 +kerning first=268 second=353 amount=-1 +kerning first=227 second=250 amount=-1 +kerning first=366 second=171 amount=-3 +kerning first=272 second=378 amount=-1 +kerning first=304 second=353 amount=-1 +kerning first=113 second=113 amount=-1 +kerning first=79 second=260 amount=-2 +kerning first=380 second=100 amount=-1 +kerning first=117 second=171 amount=-1 +kerning first=362 second=113 amount=-1 +kerning first=362 second=365 amount=-1 +kerning first=1031 second=1073 amount=-1 +kerning first=380 second=112 amount=-1 +kerning first=222 second=171 amount=-1 +kerning first=326 second=365 amount=-1 +kerning first=200 second=366 amount=-1 +kerning first=344 second=112 amount=-1 +kerning first=258 second=171 amount=-2 +kerning first=213 second=65 amount=-2 +kerning first=286 second=352 amount=-1 +kerning first=268 second=87 amount=-1 +kerning first=281 second=249 amount=-1 +kerning first=8217 second=336 amount=-1 +kerning first=196 second=87 amount=-3 +kerning first=209 second=249 amount=-1 +kerning first=344 second=100 amount=-1 +kerning first=214 second=354 amount=-1 +kerning first=380 second=378 amount=-1 +kerning first=194 second=100 amount=-1 +kerning first=8250 second=257 amount=-1 +kerning first=77 second=113 amount=-1 +kerning first=375 second=275 amount=-1 +kerning first=364 second=260 amount=-2 +kerning first=286 second=354 amount=-1 +kerning first=86 second=262 amount=-1 +kerning first=1047 second=1052 amount=-1 +kerning first=267 second=275 amount=-1 +kerning first=1073 second=1091 amount=-1 +kerning first=303 second=275 amount=-1 +kerning first=72 second=288 amount=-1 +kerning first=1116 second=1077 amount=-1 +kerning first=85 second=198 amount=-2 +kerning first=268 second=339 amount=-1 +kerning first=371 second=248 amount=-1 +kerning first=211 second=377 amount=-1 +kerning first=90 second=289 amount=-2 +kerning first=304 second=339 amount=-1 +kerning first=263 second=248 amount=-1 +kerning first=8216 second=229 amount=-1 +kerning first=196 second=339 amount=-1 +kerning first=362 second=99 amount=-1 +kerning first=195 second=289 amount=-1 +kerning first=69 second=327 amount=-1 +kerning first=118 second=223 amount=-1 +kerning first=371 second=8220 amount=-2 +kerning first=104 second=249 amount=-1 +kerning first=335 second=8220 amount=-1 +kerning first=267 second=289 amount=-1 +kerning first=321 second=288 amount=-1 +kerning first=86 second=248 amount=-2 +kerning first=303 second=289 amount=-1 +kerning first=210 second=327 amount=-1 +kerning first=122 second=248 amount=-1 +kerning first=187 second=223 amount=-1 +kerning first=263 second=8220 amount=-1 +kerning first=376 second=339 amount=-2 +kerning first=74 second=223 amount=-1 +kerning first=83 second=287 amount=-1 +kerning first=354 second=313 amount=-1 +kerning first=376 second=73 amount=-1 +kerning first=282 second=327 amount=-1 +kerning first=209 second=263 amount=-1 +kerning first=218 second=365 amount=-1 +kerning first=213 second=274 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=282 second=313 amount=-1 +kerning first=76 second=315 amount=-1 +kerning first=1069 second=1064 amount=-1 +kerning first=119 second=287 amount=-2 +kerning first=367 second=237 amount=-1 +kerning first=113 second=365 amount=-1 +kerning first=290 second=379 amount=-1 +kerning first=260 second=287 amount=-1 +kerning first=210 second=313 amount=-1 +kerning first=262 second=198 amount=-2 +kerning first=203 second=75 amount=-1 +kerning first=77 second=365 amount=-1 +kerning first=376 second=353 amount=-2 +kerning first=224 second=287 amount=-1 +kerning first=113 second=99 amount=-1 +kerning first=89 second=44 amount=-3 +kerning first=268 second=73 amount=-1 +kerning first=362 second=379 amount=-1 +kerning first=332 second=287 amount=-1 +kerning first=334 second=198 amount=-2 +kerning first=321 second=274 amount=-1 +kerning first=296 second=287 amount=-1 +kerning first=218 second=99 amount=-1 +kerning first=223 second=237 amount=-1 +kerning first=370 second=198 amount=-2 +kerning first=1102 second=1103 amount=-1 +kerning first=244 second=187 amount=-1 +kerning first=307 second=44 amount=-1 +kerning first=200 second=104 amount=-1 +kerning first=368 second=287 amount=-2 +kerning first=205 second=234 amount=-1 +kerning first=252 second=237 amount=-1 +kerning first=1116 second=1091 amount=-1 +kerning first=66 second=354 amount=-2 +kerning first=344 second=104 amount=-1 +kerning first=111 second=237 amount=-1 +kerning first=171 second=354 amount=-2 +kerning first=235 second=44 amount=-2 +kerning first=344 second=374 amount=-1 +kerning first=1098 second=1084 amount=-1 +kerning first=199 second=44 amount=-1 +kerning first=236 second=104 amount=-1 +kerning first=303 second=277 amount=-1 +kerning first=113 second=111 amount=-1 +kerning first=267 second=277 amount=-1 +kerning first=274 second=77 amount=-1 +kerning first=381 second=197 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=187 second=227 amount=-1 +kerning first=262 second=194 amount=-2 +kerning first=375 second=277 amount=-1 +kerning first=315 second=354 amount=-1 +kerning first=118 second=227 amount=-2 +kerning first=218 second=111 amount=-1 +kerning first=8250 second=259 amount=-1 +kerning first=82 second=227 amount=-1 +kerning first=367 second=227 amount=-1 +kerning first=90 second=277 amount=-1 +kerning first=1040 second=1054 amount=-2 +kerning first=85 second=194 amount=-2 +kerning first=231 second=277 amount=-1 +kerning first=192 second=314 amount=-1 +kerning first=214 second=74 amount=-1 +kerning first=195 second=277 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=1048 second=1104 amount=-1 +kerning first=376 second=351 amount=-2 +kerning first=264 second=314 amount=-1 +kerning first=362 second=367 amount=-1 +kerning first=332 second=8249 amount=-1 +kerning first=227 second=249 amount=-1 +kerning first=120 second=361 amount=-1 +kerning first=228 second=314 amount=-1 +kerning first=368 second=8249 amount=-3 +kerning first=261 second=361 amount=-1 +kerning first=314 second=122 amount=-1 +kerning first=68 second=261 amount=-1 +kerning first=290 second=367 amount=-1 +kerning first=260 second=8249 amount=-2 +kerning first=106 second=121 amount=-1 +kerning first=66 second=364 amount=-2 +kerning first=203 second=327 amount=-1 +kerning first=353 second=257 amount=-1 +kerning first=326 second=367 amount=-1 +kerning first=1037 second=1089 amount=-1 +kerning first=232 second=351 amount=-1 +kerning first=263 second=254 amount=-1 +kerning first=196 second=351 amount=-1 +kerning first=281 second=257 amount=-1 +kerning first=224 second=8249 amount=-1 +kerning first=304 second=351 amount=-1 +kerning first=113 second=367 amount=-1 +kerning first=202 second=260 amount=-1 +kerning first=83 second=8249 amount=-1 +kerning first=369 second=361 amount=-1 +kerning first=268 second=351 amount=-1 +kerning first=209 second=257 amount=-1 +kerning first=119 second=8249 amount=-2 +kerning first=371 second=254 amount=-1 +kerning first=205 second=224 amount=-1 +kerning first=283 second=117 amount=-1 +kerning first=272 second=374 amount=-1 +kerning first=353 second=261 amount=-1 +kerning first=79 second=274 amount=-1 +kerning first=8217 second=226 amount=-3 +kerning first=122 second=254 amount=-1 +kerning first=277 second=224 amount=-1 +kerning first=203 second=367 amount=-1 +kerning first=200 second=374 amount=-1 +kerning first=378 second=244 amount=-1 +kerning first=81 second=171 amount=-1 +kerning first=227 second=254 amount=-1 +kerning first=286 second=344 amount=-1 +kerning first=1058 second=1057 amount=-1 +kerning first=209 second=261 amount=-1 +kerning first=263 second=250 amount=-1 +kerning first=84 second=361 amount=-1 +kerning first=371 second=250 amount=-1 +kerning first=281 second=261 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=338 second=221 amount=-1 +kerning first=113 second=101 amount=-1 +kerning first=311 second=337 amount=-1 +kerning first=378 second=240 amount=-1 +kerning first=347 second=331 amount=-1 +kerning first=266 second=221 amount=-1 +kerning first=218 second=101 amount=-1 +kerning first=275 second=331 amount=-1 +kerning first=1054 second=1038 amount=-1 +kerning first=369 second=97 amount=-1 +kerning first=278 second=290 amount=-1 +kerning first=194 second=221 amount=-3 +kerning first=106 second=117 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=362 second=101 amount=-1 +kerning first=279 second=98 amount=-1 +kerning first=208 second=282 amount=-1 +kerning first=221 second=338 amount=-1 +kerning first=356 second=214 amount=-1 +kerning first=206 second=290 amount=-1 +kerning first=104 second=251 amount=-1 +kerning first=351 second=98 amount=-1 +kerning first=364 second=264 amount=-1 +kerning first=328 second=8221 amount=-2 +kerning first=315 second=98 amount=-1 +kerning first=209 second=251 amount=-1 +kerning first=102 second=98 amount=2 +kerning first=66 second=98 amount=-1 +kerning first=337 second=380 amount=-1 +kerning first=281 second=251 amount=-1 +kerning first=256 second=264 amount=-1 +kerning first=65 second=290 amount=-1 +kerning first=220 second=264 amount=-1 +kerning first=283 second=109 amount=-1 +kerning first=382 second=271 amount=-1 +kerning first=80 second=330 amount=-1 +kerning first=290 second=378 amount=-1 +kerning first=278 second=298 amount=-1 +kerning first=112 second=311 amount=-1 +kerning first=282 second=317 amount=-1 +kerning first=317 second=251 amount=-1 +kerning first=66 second=90 amount=-2 +kerning first=1098 second=1080 amount=-1 +kerning first=76 second=311 amount=-1 +kerning first=379 second=304 amount=-1 +kerning first=201 second=201 amount=-1 +kerning first=350 second=298 amount=-1 +kerning first=203 second=71 amount=-1 +kerning first=268 second=77 amount=-1 +kerning first=381 second=207 amount=-1 +kerning first=354 second=317 amount=-1 +kerning first=71 second=220 amount=-1 +kerning first=379 second=310 amount=-1 +kerning first=284 second=220 amount=-1 +kerning first=370 second=194 amount=-2 +kerning first=201 second=207 amount=-1 +kerning first=368 second=248 amount=-1 +kerning first=212 second=220 amount=-1 +kerning first=351 second=46 amount=-1 +kerning first=210 second=317 amount=-1 +kerning first=368 second=291 amount=-2 +kerning first=221 second=330 amount=-1 +kerning first=1025 second=1024 amount=-1 +kerning first=376 second=77 amount=-1 +kerning first=334 second=194 amount=-2 +kerning first=332 second=291 amount=-1 +kerning first=194 second=213 amount=-1 +kerning first=272 second=368 amount=-1 +kerning first=84 second=97 amount=-2 +kerning first=296 second=291 amount=-1 +kerning first=362 second=226 amount=-2 +kerning first=214 second=84 amount=-1 +kerning first=120 second=97 amount=-1 +kerning first=260 second=291 amount=-1 +kerning first=266 second=213 amount=-2 +kerning first=356 second=220 amount=-1 +kerning first=200 second=368 amount=-1 +kerning first=310 second=347 amount=-1 +kerning first=224 second=291 amount=-1 +kerning first=264 second=324 amount=-1 +kerning first=211 second=381 amount=-1 +kerning first=69 second=317 amount=-1 +kerning first=338 second=213 amount=-1 +kerning first=119 second=45 amount=-2 +kerning first=289 second=311 amount=-1 +kerning first=119 second=291 amount=-2 +kerning first=302 second=213 amount=-1 +kerning first=352 second=187 amount=-1 +kerning first=253 second=311 amount=-1 +kerning first=83 second=291 amount=-1 +kerning first=344 second=368 amount=-1 +kerning first=1098 second=1088 amount=-1 +kerning first=374 second=213 amount=-1 +kerning first=87 second=324 amount=-1 +kerning first=286 second=84 amount=-1 +kerning first=213 second=278 amount=-1 +kerning first=218 second=375 amount=-1 +kerning first=280 second=193 amount=-1 +kerning first=209 second=253 amount=-1 +kerning first=284 second=218 amount=-1 +kerning first=245 second=253 amount=-1 +kerning first=113 second=375 amount=-1 +kerning first=344 second=263 amount=-1 +kerning first=208 second=193 amount=-2 +kerning first=281 second=253 amount=-1 +kerning first=77 second=375 amount=-1 +kerning first=212 second=218 amount=-1 +kerning first=256 second=268 amount=-1 +kerning first=362 second=375 amount=-1 +kerning first=80 second=70 amount=-1 +kerning first=222 second=8249 amount=-1 +kerning first=321 second=278 amount=-1 +kerning first=353 second=253 amount=-1 +kerning first=326 second=375 amount=-1 +kerning first=362 second=103 amount=-2 +kerning first=286 second=78 amount=-1 +kerning first=1040 second=1060 amount=-2 +kerning first=352 second=193 amount=-2 +kerning first=326 second=103 amount=-1 +kerning first=254 second=375 amount=-1 +kerning first=356 second=218 amount=-1 +kerning first=76 second=45 amount=-1 +kerning first=290 second=103 amount=-1 +kerning first=381 second=203 amount=-1 +kerning first=214 second=78 amount=-1 +kerning first=337 second=120 amount=-1 +kerning first=199 second=310 amount=-1 +kerning first=1073 second=1095 amount=-1 +kerning first=208 second=45 amount=-1 +kerning first=1037 second=1095 amount=-1 +kerning first=221 second=70 amount=-1 +kerning first=381 second=201 amount=-1 +kerning first=70 second=213 amount=-1 +kerning first=229 second=120 amount=-1 +kerning first=71 second=218 amount=-1 +kerning first=228 second=253 amount=-1 +kerning first=196 second=104 amount=-1 +kerning first=171 second=356 amount=-2 +kerning first=104 second=253 amount=-1 +kerning first=201 second=203 amount=-1 +kerning first=8216 second=233 amount=-1 +kerning first=377 second=278 amount=-1 +kerning first=380 second=108 amount=-1 +kerning first=362 second=105 amount=-1 +kerning first=229 second=118 amount=-1 +kerning first=344 second=370 amount=-1 +kerning first=344 second=108 amount=-1 +kerning first=193 second=118 amount=-2 +kerning first=75 second=245 amount=-1 +kerning first=203 second=65 amount=-1 +kerning first=76 second=305 amount=-1 +kerning first=217 second=305 amount=-1 +kerning first=195 second=283 amount=-1 +kerning first=218 second=105 amount=-1 +kerning first=79 second=270 amount=-1 +kerning first=213 second=280 amount=-1 +kerning first=1048 second=1108 amount=-1 +kerning first=254 second=105 amount=-1 +kerning first=289 second=305 amount=-1 +kerning first=90 second=283 amount=-1 +kerning first=364 second=266 amount=-1 +kerning first=113 second=105 amount=-1 +kerning first=253 second=305 amount=-1 +kerning first=1047 second=1048 amount=-1 +kerning first=88 second=118 amount=-1 +kerning first=192 second=318 amount=-1 +kerning first=1069 second=1070 amount=-1 +kerning first=1051 second=1073 amount=-1 +kerning first=228 second=318 amount=-1 +kerning first=311 second=335 amount=-1 +kerning first=267 second=283 amount=-1 +kerning first=202 second=365 amount=-1 +kerning first=231 second=283 amount=-1 +kerning first=277 second=228 amount=-1 +kerning first=236 second=108 amount=-1 +kerning first=200 second=370 amount=-1 +kerning first=351 second=287 amount=-1 +kerning first=200 second=108 amount=-1 +kerning first=307 second=230 amount=-1 +kerning first=199 second=252 amount=-1 +kerning first=205 second=228 amount=-1 +kerning first=272 second=370 amount=-1 +kerning first=375 second=283 amount=-1 +kerning first=67 second=193 amount=-2 +kerning first=231 second=281 amount=-1 +kerning first=267 second=281 amount=-1 +kerning first=113 second=107 amount=-1 +kerning first=303 second=281 amount=-1 +kerning first=86 second=256 amount=-3 +kerning first=254 second=107 amount=-1 +kerning first=214 second=82 amount=-1 +kerning first=82 second=231 amount=-1 +kerning first=281 second=103 amount=-1 +kerning first=90 second=281 amount=-1 +kerning first=272 second=207 amount=-1 +kerning first=1065 second=1047 amount=-1 +kerning first=317 second=268 amount=-1 +kerning first=353 second=255 amount=-1 +kerning first=112 second=307 amount=-1 +kerning first=381 second=205 amount=-1 +kerning first=260 second=266 amount=-1 +kerning first=221 second=332 amount=-1 +kerning first=321 second=280 amount=-1 +kerning first=201 second=205 amount=-1 +kerning first=242 second=8250 amount=-1 +kerning first=268 second=81 amount=-2 +kerning first=281 second=255 amount=-1 +kerning first=326 second=371 amount=-1 +kerning first=203 second=67 amount=-1 +kerning first=245 second=255 amount=-1 +kerning first=376 second=347 amount=-2 +kerning first=209 second=255 amount=-1 +kerning first=304 second=81 amount=-1 +kerning first=304 second=347 amount=-1 +kerning first=113 second=371 amount=-1 +kerning first=67 second=304 amount=-1 +kerning first=104 second=255 amount=-1 +kerning first=268 second=347 amount=-1 +kerning first=376 second=81 amount=-1 +kerning first=232 second=347 amount=-1 +kerning first=196 second=347 amount=-1 +kerning first=350 second=8250 amount=-1 +kerning first=80 second=68 amount=-1 +kerning first=85 second=192 amount=-2 +kerning first=367 second=229 amount=-1 +kerning first=376 second=345 amount=-1 +kerning first=194 second=217 amount=-2 +kerning first=286 second=80 amount=-1 +kerning first=321 second=282 amount=-1 +kerning first=266 second=217 amount=-1 +kerning first=1040 second=1058 amount=-1 +kerning first=73 second=346 amount=-1 +kerning first=8217 second=224 amount=-3 +kerning first=274 second=318 amount=-1 +kerning first=338 second=217 amount=-1 +kerning first=209 second=288 amount=-1 +kerning first=213 second=282 amount=-1 +kerning first=196 second=81 amount=-1 +kerning first=374 second=217 amount=-1 +kerning first=214 second=8221 amount=-1 +kerning first=221 second=68 amount=-1 +kerning first=214 second=80 amount=-1 +kerning first=70 second=119 amount=-1 +kerning first=214 second=346 amount=-1 +kerning first=75 second=243 amount=-1 +kerning first=344 second=106 amount=-1 +kerning first=277 second=230 amount=-1 +kerning first=106 second=119 amount=-1 +kerning first=253 second=307 amount=-1 +kerning first=197 second=244 amount=-1 +kerning first=289 second=307 amount=-1 +kerning first=272 second=106 amount=-1 +kerning first=205 second=230 amount=-1 +kerning first=375 second=281 amount=-1 +kerning first=283 second=119 amount=-1 +kerning first=380 second=106 amount=-1 +kerning first=311 second=333 amount=-1 +kerning first=286 second=346 amount=-1 +kerning first=89 second=217 amount=-1 +kerning first=355 second=119 amount=-1 +kerning first=314 second=275 amount=-1 +kerning first=382 second=119 amount=-1 +kerning first=89 second=100 amount=-2 +kerning first=379 second=45 amount=-1 +kerning first=289 second=46 amount=-2 +kerning first=80 second=353 amount=-1 +kerning first=356 second=346 amount=-2 +kerning first=74 second=65 amount=-3 +kerning first=205 second=67 amount=-1 +kerning first=187 second=68 amount=-3 +kerning first=90 second=69 amount=-1 +kerning first=321 second=70 amount=-1 +kerning first=84 second=71 amount=-1 +kerning first=68 second=72 amount=-1 +kerning first=84 second=73 amount=-1 +kerning first=90 second=75 amount=-1 +kerning first=98 second=353 amount=-1 +kerning first=199 second=78 amount=-1 +kerning first=66 second=79 amount=-1 +kerning first=84 second=81 amount=-1 +kerning first=313 second=82 amount=-1 +kerning first=86 second=83 amount=-2 +kerning first=193 second=84 amount=-3 +kerning first=68 second=86 amount=-1 +kerning first=76 second=87 amount=-1 +kerning first=317 second=89 amount=-1 +kerning first=363 second=97 amount=-1 +kerning first=311 second=98 amount=-1 +kerning first=371 second=99 amount=-1 +kerning first=287 second=100 amount=-1 +kerning first=102 second=101 amount=-1 +kerning first=305 second=103 amount=-1 +kerning first=317 second=104 amount=-1 +kerning first=269 second=107 amount=-1 +kerning first=235 second=108 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=231 second=110 amount=-1 +kerning first=120 second=111 amount=-1 +kerning first=207 second=112 amount=-1 +kerning first=72 second=113 amount=-1 +kerning first=253 second=114 amount=-1 +kerning first=120 second=116 amount=-1 +kerning first=277 second=117 amount=-1 +kerning first=337 second=118 amount=-1 +kerning first=235 second=119 amount=-1 +kerning first=365 second=120 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=377 second=122 amount=-1 +kerning first=198 second=256 amount=-1 +kerning first=202 second=379 amount=-1 +kerning first=65 second=275 amount=-1 +kerning first=90 second=171 amount=-1 +kerning first=90 second=187 amount=-1 +kerning first=84 second=249 amount=-1 +kerning first=201 second=192 amount=-1 +kerning first=201 second=193 amount=-1 +kerning first=379 second=194 amount=-1 +kerning first=8217 second=195 amount=-3 +kerning first=201 second=197 amount=-1 +kerning first=84 second=198 amount=-3 +kerning first=197 second=199 amount=-1 +kerning first=68 second=200 amount=-1 +kerning first=84 second=201 amount=-1 +kerning first=68 second=202 amount=-1 +kerning first=187 second=203 amount=-3 +kerning first=379 second=206 amount=-1 +kerning first=90 second=207 amount=-1 +kerning first=313 second=209 amount=-1 +kerning first=197 second=210 amount=-1 +kerning first=321 second=211 amount=-1 +kerning first=193 second=212 amount=-1 +kerning first=313 second=213 amount=-1 +kerning first=84 second=214 amount=-1 +kerning first=251 second=8217 amount=-2 +kerning first=317 second=216 amount=-1 +kerning first=82 second=217 amount=-1 +kerning first=315 second=221 amount=-1 +kerning first=213 second=224 amount=-1 +kerning first=303 second=228 amount=-1 +kerning first=255 second=229 amount=-2 +kerning first=82 second=230 amount=-1 +kerning first=118 second=231 amount=-1 +kerning first=327 second=232 amount=-1 +kerning first=377 second=233 amount=-1 +kerning first=303 second=235 amount=-1 +kerning first=90 second=237 amount=-1 +kerning first=330 second=45 amount=-2 +kerning first=231 second=240 amount=-1 +kerning first=8217 second=242 amount=-2 +kerning first=323 second=244 amount=-1 +kerning first=205 second=245 amount=-1 +kerning first=74 second=246 amount=-1 +kerning first=291 second=248 amount=-1 +kerning first=66 second=249 amount=-1 +kerning first=76 second=250 amount=-1 +kerning first=225 second=254 amount=-1 +kerning first=351 second=255 amount=-1 +kerning first=122 second=257 amount=-1 +kerning first=307 second=259 amount=-1 +kerning first=377 second=260 amount=-1 +kerning first=74 second=261 amount=-1 +kerning first=66 second=262 amount=-1 +kerning first=379 second=263 amount=-1 +kerning first=321 second=305 amount=-1 +kerning first=379 second=266 amount=-1 +kerning first=375 second=267 amount=-1 +kerning first=315 second=268 amount=-1 +kerning first=207 second=269 amount=-1 +kerning first=84 second=270 amount=-1 +kerning first=102 second=271 amount=-1 +kerning first=269 second=273 amount=-1 +kerning first=76 second=274 amount=-1 +kerning first=289 second=275 amount=-1 +kerning first=263 second=277 amount=-1 +kerning first=313 second=278 amount=-1 +kerning first=199 second=279 amount=-1 +kerning first=86 second=280 amount=-1 +kerning first=197 second=281 amount=-1 +kerning first=66 second=282 amount=-2 +kerning first=8217 second=284 amount=-1 +kerning first=86 second=286 amount=-1 +kerning first=245 second=287 amount=-1 +kerning first=219 second=288 amount=-1 +kerning first=229 second=289 amount=-1 +kerning first=74 second=290 amount=-1 +kerning first=1078 second=1095 amount=-1 +kerning first=217 second=230 amount=-2 +kerning first=76 second=302 amount=-1 +kerning first=281 second=303 amount=-1 +kerning first=231 second=305 amount=-1 +kerning first=337 second=307 amount=-1 +kerning first=321 second=310 amount=-1 +kerning first=365 second=311 amount=-1 +kerning first=76 second=313 amount=-1 +kerning first=197 second=314 amount=-1 +kerning first=199 second=315 amount=-1 +kerning first=112 second=316 amount=-1 +kerning first=315 second=317 amount=-1 +kerning first=315 second=318 amount=-1 +kerning first=313 second=323 amount=-1 +kerning first=66 second=324 amount=-1 +kerning first=122 second=326 amount=-1 +kerning first=313 second=327 amount=-1 +kerning first=353 second=328 amount=-1 +kerning first=350 second=379 amount=-1 +kerning first=90 second=330 amount=-1 +kerning first=233 second=331 amount=-1 +kerning first=315 second=332 amount=-1 +kerning first=193 second=333 amount=-1 +kerning first=317 second=334 amount=-1 +kerning first=323 second=335 amount=-1 +kerning first=88 second=336 amount=-1 +kerning first=8217 second=337 amount=-2 +kerning first=84 second=338 amount=-1 +kerning first=311 second=339 amount=-1 +kerning first=370 second=237 amount=-1 +kerning first=253 second=345 amount=-1 +kerning first=8217 second=346 amount=-1 +kerning first=74 second=347 amount=-1 +kerning first=221 second=350 amount=-2 +kerning first=219 second=351 amount=-1 +kerning first=187 second=352 amount=-2 +kerning first=78 second=353 amount=-1 +kerning first=379 second=354 amount=-1 +kerning first=371 second=355 amount=-1 +kerning first=187 second=357 amount=-1 +kerning first=305 second=361 amount=-1 +kerning first=379 second=363 amount=-1 +kerning first=187 second=364 amount=-2 +kerning first=235 second=365 amount=-1 +kerning first=332 second=289 amount=-1 +kerning first=100 second=367 amount=-1 +kerning first=281 second=369 amount=-1 +kerning first=249 second=371 amount=-1 +kerning first=222 second=313 amount=-1 +kerning first=197 second=374 amount=-3 +kerning first=187 second=377 amount=-2 +kerning first=335 second=378 amount=-1 +kerning first=76 second=379 amount=-1 +kerning first=8217 second=380 amount=-1 +kerning first=120 second=382 amount=-1 +kerning first=199 second=244 amount=-1 +kerning first=81 second=313 amount=-1 +kerning first=262 second=237 amount=-1 +kerning first=207 second=263 amount=-1 +kerning first=1054 second=1067 amount=-1 +kerning first=69 second=199 amount=-1 +kerning first=1043 second=1084 amount=-1 +kerning first=45 second=313 amount=-3 +kerning first=72 second=334 amount=-1 +kerning first=274 second=379 amount=-1 +kerning first=365 second=353 amount=-1 +kerning first=71 second=346 amount=-1 +kerning first=288 second=270 amount=-1 +kerning first=86 second=225 amount=-2 +kerning first=328 second=365 amount=-1 +kerning first=346 second=379 amount=-1 +kerning first=122 second=225 amount=-1 +kerning first=102 second=263 amount=-1 +kerning first=256 second=365 amount=-1 +kerning first=1061 second=1098 amount=-1 +kerning first=103 second=251 amount=-1 +kerning first=104 second=361 amount=-1 +kerning first=83 second=289 amount=-1 +kerning first=257 second=353 amount=-1 +kerning first=212 second=346 amount=-1 +kerning first=219 second=283 amount=-1 +kerning first=282 second=291 amount=-1 +kerning first=119 second=289 amount=-2 +kerning first=115 second=365 amount=-1 +kerning first=1045 second=1060 amount=-1 +kerning first=216 second=270 amount=-1 +kerning first=377 second=296 amount=-1 +kerning first=313 second=315 amount=-1 +kerning first=212 second=374 amount=-1 +kerning first=280 second=251 amount=-1 +kerning first=374 second=72 amount=-1 +kerning first=257 second=121 amount=-1 +kerning first=120 second=277 amount=-1 +kerning first=338 second=72 amount=-1 +kerning first=251 second=254 amount=-1 +kerning first=221 second=121 amount=-1 +kerning first=352 second=251 amount=-1 +kerning first=287 second=254 amount=-1 +kerning first=71 second=374 amount=-1 +kerning first=316 second=251 amount=-1 +kerning first=202 second=351 amount=-1 +kerning first=280 second=344 amount=-1 +kerning first=1027 second=1074 amount=-1 +kerning first=86 second=246 amount=-1 +kerning first=266 second=381 amount=-1 +kerning first=203 second=79 amount=-1 +kerning first=84 second=277 amount=-2 +kerning first=110 second=254 amount=-1 +kerning first=1025 second=1118 amount=-1 +kerning first=199 second=331 amount=-1 +kerning first=83 second=261 amount=-1 +kerning first=219 second=117 amount=-1 +kerning first=379 second=244 amount=-1 +kerning first=187 second=69 amount=-3 +kerning first=275 second=367 amount=-1 +kerning first=376 second=76 amount=-1 +kerning first=221 second=381 amount=-1 +kerning first=291 second=117 amount=-1 +kerning first=121 second=328 amount=-1 +kerning first=1047 second=1036 amount=-1 +kerning first=89 second=72 amount=-1 +kerning first=205 second=83 amount=-1 +kerning first=310 second=351 amount=-1 +kerning first=381 second=192 amount=-1 +kerning first=268 second=76 amount=-1 +kerning first=354 second=199 amount=-1 +kerning first=274 second=351 amount=-1 +kerning first=327 second=117 amount=-1 +kerning first=196 second=336 amount=-1 +kerning first=284 second=374 amount=-1 +kerning first=365 second=121 amount=-1 +kerning first=1114 second=1096 amount=-1 +kerning first=382 second=351 amount=-1 +kerning first=313 second=83 amount=-1 +kerning first=346 second=351 amount=-1 +kerning first=266 second=72 amount=-1 +kerning first=268 second=336 amount=-2 +kerning first=66 second=291 amount=-2 +kerning first=212 second=86 amount=-1 +kerning first=347 second=107 amount=-1 +kerning first=256 second=337 amount=-1 +kerning first=8217 second=234 amount=-2 +kerning first=221 second=249 amount=-1 +kerning first=220 second=337 amount=-1 +kerning first=210 second=171 amount=-1 +kerning first=269 second=240 amount=-1 +kerning first=317 second=382 amount=-1 +kerning first=203 second=107 amount=-1 +kerning first=353 second=382 amount=-1 +kerning first=8216 second=243 amount=-1 +kerning first=296 second=261 amount=-1 +kerning first=364 second=337 amount=-1 +kerning first=377 second=240 amount=-1 +kerning first=284 second=86 amount=-1 +kerning first=275 second=107 amount=-1 +kerning first=368 second=261 amount=-2 +kerning first=199 second=216 amount=-2 +kerning first=8222 second=370 amount=-2 +kerning first=78 second=117 amount=-1 +kerning first=262 second=209 amount=-1 +kerning first=1047 second=1024 amount=-1 +kerning first=1047 second=1025 amount=-1 +kerning first=1057 second=1030 amount=-1 +kerning first=1057 second=1031 amount=-1 +kerning first=1057 second=1033 amount=-1 +kerning first=1069 second=1034 amount=-1 +kerning first=1025 second=1036 amount=-1 +kerning first=1045 second=1037 amount=-1 +kerning first=1047 second=1038 amount=-1 +kerning first=1047 second=1039 amount=-1 +kerning first=1043 second=1040 amount=-2 +kerning first=1045 second=1041 amount=-1 +kerning first=1025 second=1042 amount=-1 +kerning first=1025 second=1043 amount=-1 +kerning first=1057 second=1045 amount=-1 +kerning first=1047 second=1047 amount=-1 +kerning first=1057 second=1048 amount=-1 +kerning first=1057 second=1049 amount=-1 +kerning first=1025 second=1050 amount=-1 +kerning first=1059 second=1051 amount=-3 +kerning first=1057 second=1052 amount=-1 +kerning first=1057 second=1053 amount=-1 +kerning first=1067 second=1054 amount=-1 +kerning first=1069 second=1055 amount=-1 +kerning first=1047 second=1056 amount=-1 +kerning first=1057 second=1057 amount=-1 +kerning first=1045 second=1058 amount=-1 +kerning first=1025 second=1059 amount=-1 +kerning first=1051 second=1060 amount=-1 +kerning first=1057 second=1062 amount=-1 +kerning first=1057 second=1063 amount=-1 +kerning first=1045 second=1064 amount=-1 +kerning first=1057 second=1065 amount=-1 +kerning first=302 second=100 amount=-1 +kerning first=1045 second=1067 amount=-1 +kerning first=197 second=240 amount=-1 +kerning first=1057 second=1070 amount=-1 +kerning first=1091 second=1072 amount=-1 +kerning first=1065 second=1073 amount=-1 +kerning first=1043 second=1074 amount=-1 +kerning first=1059 second=1075 amount=-2 +kerning first=1047 second=1076 amount=-1 +kerning first=1061 second=1077 amount=-1 +kerning first=1027 second=1078 amount=-2 +kerning first=1027 second=1079 amount=-1 +kerning first=1027 second=1080 amount=-1 +kerning first=1043 second=1081 amount=-1 +kerning first=1113 second=1082 amount=-1 +kerning first=1057 second=1083 amount=-1 +kerning first=1027 second=1084 amount=-1 +kerning first=1031 second=1086 amount=-1 +kerning first=1043 second=1087 amount=-1 +kerning first=1043 second=1088 amount=-1 +kerning first=1031 second=1089 amount=-1 +kerning first=1059 second=1090 amount=-1 +kerning first=1045 second=1091 amount=-1 +kerning first=1027 second=1092 amount=-1 +kerning first=1059 second=1093 amount=-2 +kerning first=1027 second=1094 amount=-1 +kerning first=1063 second=1095 amount=-1 +kerning first=1043 second=1096 amount=-1 +kerning first=1059 second=1097 amount=-2 +kerning first=1025 second=1098 amount=-1 +kerning first=1027 second=1100 amount=-1 +kerning first=1043 second=1101 amount=-1 +kerning first=1057 second=1102 amount=-1 +kerning first=1047 second=1103 amount=-1 +kerning first=1027 second=1104 amount=-1 +kerning first=1043 second=1105 amount=-1 +kerning first=1027 second=1107 amount=-1 +kerning first=1027 second=1108 amount=-1 +kerning first=1069 second=1113 amount=-1 +kerning first=1057 second=1114 amount=-1 +kerning first=1043 second=1116 amount=-1 +kerning first=1043 second=1117 amount=-1 +kerning first=214 second=350 amount=-1 +kerning first=1057 second=1119 amount=-1 +kerning first=210 second=227 amount=-1 +kerning first=304 second=252 amount=-1 +kerning first=73 second=350 amount=-1 +kerning first=105 second=227 amount=-1 +kerning first=376 second=252 amount=-1 +kerning first=107 second=8221 amount=-1 +kerning first=362 second=246 amount=-1 +kerning first=84 second=305 amount=-1 +kerning first=354 second=227 amount=-2 +kerning first=374 second=44 amount=-3 +kerning first=1118 second=1076 amount=-2 +kerning first=196 second=252 amount=-1 +kerning first=286 second=350 amount=-1 +kerning first=66 second=207 amount=-2 +kerning first=282 second=227 amount=-1 +kerning first=232 second=252 amount=-1 +kerning first=120 second=45 amount=-2 +kerning first=264 second=356 amount=-1 +kerning first=218 second=246 amount=-1 +kerning first=74 second=226 amount=-1 +kerning first=209 second=382 amount=-1 +kerning first=351 second=291 amount=-1 +kerning first=332 second=317 amount=-1 +kerning first=200 second=260 amount=-1 +kerning first=245 second=382 amount=-1 +kerning first=315 second=291 amount=-1 +kerning first=225 second=45 amount=-1 +kerning first=192 second=356 amount=-3 +kerning first=218 second=121 amount=-1 +kerning first=113 second=246 amount=-1 +kerning first=281 second=382 amount=-1 +kerning first=279 second=291 amount=-1 +kerning first=201 second=103 amount=-1 +kerning first=77 second=246 amount=-1 +kerning first=272 second=260 amount=-2 +kerning first=243 second=291 amount=-1 +kerning first=321 second=362 amount=-1 +kerning first=69 second=227 amount=-1 +kerning first=251 second=226 amount=-1 +kerning first=207 second=291 amount=-1 +kerning first=315 second=207 amount=-1 +kerning first=261 second=45 amount=-1 +kerning first=287 second=226 amount=-1 +kerning first=68 second=382 amount=-1 +kerning first=369 second=45 amount=-1 +kerning first=88 second=84 amount=-1 +kerning first=323 second=226 amount=-1 +kerning first=102 second=291 amount=-1 +kerning first=304 second=336 amount=-1 +kerning first=8220 second=195 amount=-4 +kerning first=193 second=232 amount=-1 +kerning first=366 second=109 amount=-1 +kerning first=376 second=336 amount=-1 +kerning first=368 second=365 amount=-1 +kerning first=200 second=115 amount=-1 +kerning first=236 second=115 amount=-1 +kerning first=283 second=187 amount=-1 +kerning first=377 second=212 amount=-1 +kerning first=381 second=103 amount=-2 +kerning first=214 second=90 amount=-1 +kerning first=345 second=103 amount=-1 +kerning first=344 second=115 amount=-1 +kerning first=266 second=44 amount=-1 +kerning first=380 second=115 amount=-1 +kerning first=230 second=44 amount=-2 +kerning first=350 second=303 amount=-1 +kerning first=380 second=232 amount=-1 +kerning first=45 second=109 amount=-1 +kerning first=87 second=213 amount=-1 +kerning first=338 second=44 amount=-1 +kerning first=344 second=232 amount=-1 +kerning first=192 second=213 amount=-1 +kerning first=200 second=259 amount=-1 +kerning first=8217 second=259 amount=-3 +kerning first=264 second=213 amount=-2 +kerning first=268 second=104 amount=-1 +kerning first=378 second=8249 amount=-2 +kerning first=101 second=303 amount=-1 +kerning first=87 second=328 amount=-1 +kerning first=201 second=75 amount=-1 +kerning first=187 second=315 amount=-3 +kerning first=283 second=98 amount=-1 +kerning first=250 second=118 amount=-1 +kerning first=381 second=75 amount=-1 +kerning first=8216 second=287 amount=-2 +kerning first=270 second=8249 amount=-1 +kerning first=264 second=328 amount=-1 +kerning first=8218 second=102 amount=-1 +kerning first=314 second=303 amount=-1 +kerning first=268 second=280 amount=-1 +kerning first=334 second=120 amount=-1 +kerning first=199 second=202 amount=-1 +kerning first=286 second=118 amount=-1 +kerning first=370 second=120 amount=-1 +kerning first=263 second=105 amount=-1 +kerning first=242 second=303 amount=-1 +kerning first=106 second=98 amount=-1 +kerning first=73 second=118 amount=-1 +kerning first=1118 second=1104 amount=-1 +kerning first=1082 second=1104 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=1046 second=1104 amount=-1 +kerning first=210 second=370 amount=-1 +kerning first=290 second=218 amount=-1 +kerning first=8220 second=223 amount=-1 +kerning first=80 second=325 amount=-1 +kerning first=84 second=193 amount=-3 +kerning first=264 second=241 amount=-1 +kerning first=260 second=263 amount=-1 +kerning first=1025 second=1070 amount=-1 +kerning first=282 second=370 amount=-1 +kerning first=203 second=196 amount=-1 +kerning first=234 second=122 amount=-1 +kerning first=378 second=305 amount=-1 +kerning first=311 second=283 amount=-1 +kerning first=102 second=104 amount=2 +kerning first=354 second=370 amount=-1 +kerning first=76 second=314 amount=-1 +kerning first=87 second=241 amount=-1 +kerning first=347 second=311 amount=-1 +kerning first=171 second=87 amount=-2 +kerning first=213 second=362 amount=-1 +kerning first=88 second=112 amount=-1 +kerning first=73 second=266 amount=-1 +kerning first=275 second=311 amount=-1 +kerning first=83 second=317 amount=-1 +kerning first=325 second=286 amount=-1 +kerning first=112 second=314 amount=-1 +kerning first=350 second=331 amount=-1 +kerning first=346 second=65 amount=-2 +kerning first=87 second=269 amount=-2 +kerning first=217 second=286 amount=-1 +kerning first=253 second=314 amount=-1 +kerning first=203 second=311 amount=-1 +kerning first=219 second=8249 amount=-3 +kerning first=231 second=261 amount=-1 +kerning first=87 second=8250 amount=-1 +kerning first=278 second=331 amount=-1 +kerning first=192 second=269 amount=-1 +kerning first=98 second=311 amount=-1 +kerning first=314 second=331 amount=-1 +kerning first=1093 second=1118 amount=-1 +kerning first=1057 second=1059 amount=-1 +kerning first=289 second=314 amount=-1 +kerning first=354 second=255 amount=-1 +kerning first=207 second=235 amount=-1 +kerning first=83 second=345 amount=-1 +kerning first=270 second=8221 amount=-1 +kerning first=264 second=269 amount=-1 +kerning first=376 second=280 amount=-1 +kerning first=119 second=345 amount=-1 +kerning first=76 second=286 amount=-1 +kerning first=258 second=81 amount=-1 +kerning first=101 second=331 amount=-1 +kerning first=222 second=196 amount=-2 +kerning first=246 second=255 amount=-1 +kerning first=234 second=8221 amount=-1 +kerning first=337 second=112 amount=-1 +kerning first=330 second=81 amount=-1 +kerning first=1100 second=1090 amount=-1 +kerning first=231 second=118 amount=-1 +kerning first=203 second=224 amount=-1 +kerning first=105 second=255 amount=-1 +kerning first=311 second=224 amount=-1 +kerning first=366 second=81 amount=-1 +kerning first=368 second=345 amount=-1 +kerning first=275 second=224 amount=-1 +kerning first=193 second=112 amount=-1 +kerning first=281 second=326 amount=-1 +kerning first=66 second=378 amount=-2 +kerning first=1058 second=1078 amount=-1 +kerning first=90 second=205 amount=-1 +kerning first=317 second=326 amount=-1 +kerning first=256 second=250 amount=-1 +kerning first=243 second=347 amount=-1 +kerning first=347 second=224 amount=-1 +kerning first=353 second=326 amount=-1 +kerning first=364 second=250 amount=-1 +kerning first=207 second=347 amount=-1 +kerning first=98 second=255 amount=-1 +kerning first=8218 second=303 amount=-1 +kerning first=328 second=250 amount=-1 +kerning first=102 second=378 amount=-1 +kerning first=220 second=281 amount=-1 +kerning first=84 second=101 amount=-2 +kerning first=115 second=250 amount=-1 +kerning first=102 second=347 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=1069 second=1033 amount=-1 +kerning first=298 second=352 amount=-1 +kerning first=66 second=347 amount=-1 +kerning first=76 second=344 amount=-1 +kerning first=378 second=371 amount=-1 +kerning first=220 second=250 amount=-1 +kerning first=264 second=71 amount=-2 +kerning first=107 second=231 amount=-1 +kerning first=218 second=333 amount=-1 +kerning first=8217 second=83 amount=-1 +kerning first=307 second=328 amount=-1 +kerning first=121 second=237 amount=-1 +kerning first=351 second=378 amount=-1 +kerning first=282 second=76 amount=-1 +kerning first=268 second=366 amount=-1 +kerning first=347 second=8220 amount=-1 +kerning first=1058 second=1047 amount=-1 +kerning first=235 second=328 amount=-1 +kerning first=311 second=8220 amount=-1 +kerning first=88 second=288 amount=-1 +kerning first=199 second=328 amount=-1 +kerning first=243 second=378 amount=-1 +kerning first=275 second=8220 amount=-1 +kerning first=290 second=302 amount=-1 +kerning first=351 second=345 amount=-1 +kerning first=88 second=257 amount=-1 +kerning first=207 second=378 amount=-1 +kerning first=1039 second=1073 amount=-1 +kerning first=204 second=210 amount=-1 +kerning first=85 second=352 amount=-1 +kerning first=113 second=333 amount=-1 +kerning first=379 second=328 amount=-1 +kerning first=77 second=333 amount=-1 +kerning first=98 second=8220 amount=-1 +kerning first=204 second=243 amount=-1 +kerning first=272 second=87 amount=-1 +kerning first=336 second=344 amount=-1 +kerning first=97 second=353 amount=-1 +kerning first=200 second=87 amount=-1 +kerning first=74 second=198 amount=-3 +kerning first=362 second=333 amount=-1 +kerning first=87 second=68 amount=-1 +kerning first=325 second=113 amount=-1 +kerning first=8217 second=114 amount=-1 +kerning first=289 second=113 amount=-1 +kerning first=193 second=288 amount=-1 +kerning first=45 second=194 amount=-2 +kerning first=253 second=113 amount=-1 +kerning first=99 second=243 amount=-1 +kerning first=217 second=345 amount=-1 +kerning first=217 second=113 amount=-1 +kerning first=85 second=120 amount=-1 +kerning first=121 second=120 amount=-1 +kerning first=198 second=368 amount=-1 +kerning first=226 second=120 amount=-1 +kerning first=68 second=323 amount=-1 +kerning first=347 second=255 amount=-1 +kerning first=356 second=262 amount=-1 +kerning first=209 second=214 amount=-1 +kerning first=275 second=255 amount=-1 +kerning first=73 second=210 amount=-1 +kerning first=1079 second=1095 amount=-1 +kerning first=1038 second=1113 amount=-3 +kerning first=68 second=354 amount=-1 +kerning first=88 second=229 amount=-1 +kerning first=269 second=347 amount=-1 +kerning first=347 second=227 amount=-1 +kerning first=1024 second=1054 amount=-1 +kerning first=370 second=324 amount=-1 +kerning first=290 second=274 amount=-1 +kerning first=317 second=323 amount=-1 +kerning first=311 second=227 amount=-1 +kerning first=275 second=227 amount=-1 +kerning first=107 second=234 amount=-1 +kerning first=262 second=324 amount=-1 +kerning first=345 second=44 amount=-2 +kerning first=317 second=354 amount=-1 +kerning first=314 second=99 amount=-1 +kerning first=90 second=233 amount=-1 +kerning first=231 second=233 amount=-1 +kerning first=374 second=101 amount=-2 +kerning first=356 second=234 amount=-2 +kerning first=195 second=233 amount=-1 +kerning first=110 second=106 amount=-1 +kerning first=303 second=233 amount=-1 +kerning first=267 second=233 amount=-1 +kerning first=381 second=279 amount=-1 +kerning first=219 second=264 amount=-1 +kerning first=375 second=233 amount=-1 +kerning first=251 second=106 amount=-1 +kerning first=203 second=227 amount=-1 +kerning first=344 second=87 amount=-1 +kerning first=76 second=110 amount=-1 +kerning first=326 second=361 amount=-1 +kerning first=1047 second=1064 amount=-1 +kerning first=68 second=66 amount=-1 +kerning first=302 second=243 amount=-1 +kerning first=88 second=316 amount=-1 +kerning first=65 second=219 amount=-2 +kerning first=378 second=111 amount=-1 +kerning first=193 second=316 amount=-1 +kerning first=217 second=110 amount=-1 +kerning first=362 second=361 amount=-1 +kerning first=229 second=316 amount=-1 +kerning first=195 second=264 amount=-1 +kerning first=204 second=212 amount=-1 +kerning first=209 second=267 amount=-1 +kerning first=87 second=65 amount=-3 +kerning first=196 second=364 amount=-2 +kerning first=289 second=110 amount=-1 +kerning first=90 second=264 amount=-1 +kerning first=337 second=316 amount=-1 +kerning first=333 second=104 amount=-1 +kerning first=264 second=65 amount=-2 +kerning first=1038 second=1057 amount=-1 +kerning first=201 second=44 amount=-1 +kerning first=77 second=361 amount=-1 +kerning first=330 second=336 amount=-1 +kerning first=336 second=65 amount=-2 +kerning first=317 second=66 amount=-1 +kerning first=268 second=364 amount=-1 +kerning first=76 second=82 amount=-1 +kerning first=334 second=89 amount=-1 +kerning first=369 second=104 amount=-1 +kerning first=218 second=361 amount=-1 +kerning first=376 second=364 amount=-1 +kerning first=317 second=122 amount=-1 +kerning first=370 second=117 amount=-1 +kerning first=201 second=72 amount=-1 +kerning first=281 second=122 amount=-1 +kerning first=328 second=46 amount=-1 +kerning first=187 second=97 amount=-1 +kerning first=69 second=370 amount=-1 +kerning first=245 second=122 amount=-1 +kerning first=364 second=46 amount=-3 +kerning first=278 second=102 amount=-1 +kerning first=209 second=122 amount=-1 +kerning first=85 second=377 amount=-1 +kerning first=206 second=71 amount=-1 +kerning first=364 second=225 amount=-2 +kerning first=381 second=72 amount=-1 +kerning first=84 second=76 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=250 second=121 amount=-1 +kerning first=303 second=116 amount=-1 +kerning first=278 second=71 amount=-1 +kerning first=220 second=46 amount=-3 +kerning first=367 second=97 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=353 second=122 amount=-1 +kerning first=375 second=116 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=262 second=377 amount=-1 +kerning first=85 second=117 amount=-1 +kerning first=350 second=219 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=278 second=219 amount=-1 +kerning first=314 second=102 amount=-1 +kerning first=262 second=117 amount=-1 +kerning first=201 second=332 amount=-1 +kerning first=350 second=102 amount=-1 +kerning first=226 second=117 amount=-1 +kerning first=334 second=377 amount=-1 +kerning first=104 second=8217 amount=-2 +kerning first=107 second=287 amount=-1 +kerning first=68 second=122 amount=-1 +kerning first=370 second=377 amount=-1 +kerning first=71 second=287 amount=-1 +kerning first=298 second=117 amount=-1 +kerning first=198 second=200 amount=-1 +kerning first=352 second=364 amount=-1 +kerning first=381 second=332 amount=-1 +kerning first=212 second=287 amount=-1 +kerning first=204 second=240 amount=-1 +kerning first=82 second=242 amount=-1 +kerning first=284 second=287 amount=-1 +kerning first=248 second=287 amount=-1 +kerning first=278 second=249 amount=-1 +kerning first=99 second=240 amount=-1 +kerning first=356 second=287 amount=-2 +kerning first=108 second=8221 amount=-2 +kerning first=201 second=220 amount=-1 +kerning first=118 second=242 amount=-1 +kerning first=212 second=259 amount=-1 +kerning first=381 second=304 amount=-1 +kerning first=68 second=298 amount=-1 +kerning first=198 second=284 amount=-1 +kerning first=82 second=214 amount=-1 +kerning first=284 second=259 amount=-1 +kerning first=361 second=8217 amount=-2 +kerning first=261 second=8220 amount=-1 +kerning first=361 second=8221 amount=-2 +kerning first=251 second=369 amount=-1 +kerning first=85 second=324 amount=-1 +kerning first=195 second=116 amount=-1 +kerning first=250 second=380 amount=-1 +kerning first=351 second=375 amount=-1 +kerning first=261 second=8249 amount=-1 +kerning first=381 second=8250 amount=-1 +kerning first=315 second=375 amount=-1 +kerning first=323 second=369 amount=-1 +kerning first=267 second=116 amount=-1 +kerning first=198 second=197 amount=-1 +kerning first=1069 second=1030 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=279 second=375 amount=-1 +kerning first=287 second=369 amount=-1 +kerning first=121 second=324 amount=-1 +kerning first=231 second=116 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=118 second=97 amount=-2 +kerning first=201 second=304 amount=-1 +kerning first=209 second=119 amount=-1 +kerning first=90 second=116 amount=-1 +kerning first=220 second=194 amount=-2 +kerning first=245 second=119 amount=-1 +kerning first=110 second=369 amount=-1 +kerning first=1058 second=1075 amount=-1 +kerning first=281 second=119 amount=-1 +kerning first=381 second=248 amount=-1 +kerning first=79 second=74 amount=-1 +kerning first=234 second=228 amount=-1 +kerning first=1027 second=1105 amount=-1 +kerning first=328 second=253 amount=-1 +kerning first=317 second=119 amount=-1 +kerning first=284 second=203 amount=-1 +kerning first=198 second=228 amount=-1 +kerning first=353 second=119 amount=-1 +kerning first=220 second=74 amount=-1 +kerning first=243 second=375 amount=-1 +kerning first=195 second=217 amount=-2 +kerning first=207 second=375 amount=-1 +kerning first=364 second=74 amount=-1 +kerning first=118 second=273 amount=-1 +kerning first=264 second=68 amount=-1 +kerning first=204 second=268 amount=-1 +kerning first=221 second=196 amount=-3 +kerning first=99 second=355 amount=-1 +kerning first=198 second=80 amount=-1 +kerning first=115 second=253 amount=-1 +kerning first=317 second=298 amount=-1 +kerning first=220 second=253 amount=-1 +kerning first=336 second=68 amount=-1 +kerning first=72 second=264 amount=-1 +kerning first=256 second=253 amount=-1 +kerning first=356 second=203 amount=-1 +kerning first=201 second=363 amount=-1 +kerning first=68 second=270 amount=-1 +kerning first=381 second=335 amount=-1 +kerning first=98 second=8217 amount=-1 +kerning first=234 second=108 amount=-1 +kerning first=74 second=338 amount=-1 +kerning first=208 second=381 amount=-1 +kerning first=356 second=290 amount=-1 +kerning first=364 second=105 amount=-1 +kerning first=381 second=363 amount=-1 +kerning first=118 second=245 amount=-1 +kerning first=378 second=108 amount=-1 +kerning first=248 second=318 amount=-1 +kerning first=82 second=245 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=220 second=105 amount=-1 +kerning first=220 second=225 amount=-2 +kerning first=262 second=380 amount=-1 +kerning first=356 second=231 amount=-2 +kerning first=8218 second=362 amount=-2 +kerning first=298 second=380 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=1038 second=1060 amount=-1 +kerning first=334 second=380 amount=-1 +kerning first=1091 second=1083 amount=-1 +kerning first=108 second=331 amount=-1 +kerning first=307 second=8217 amount=-1 +kerning first=370 second=380 amount=-1 +kerning first=111 second=316 amount=-1 +kerning first=85 second=380 amount=-1 +kerning first=323 second=338 amount=-1 +kerning first=378 second=228 amount=-1 +kerning first=364 second=251 amount=-1 +kerning first=79 second=225 amount=-1 +kerning first=98 second=119 amount=-1 +kerning first=207 second=248 amount=-1 +kerning first=121 second=380 amount=-1 +kerning first=317 second=270 amount=-1 +kerning first=311 second=8217 amount=-1 +kerning first=115 second=225 amount=-1 +kerning first=198 second=108 amount=-1 +kerning first=347 second=8217 amount=-1 +kerning first=313 second=350 amount=-1 +kerning first=330 second=351 amount=-1 +kerning first=234 second=225 amount=-1 +kerning first=110 second=251 amount=-1 +kerning first=371 second=228 amount=-1 +kerning first=8217 second=262 amount=-1 +kerning first=251 second=251 amount=-1 +kerning first=376 second=282 amount=-1 +kerning first=108 second=303 amount=-1 +kerning first=323 second=251 amount=-1 +kerning first=263 second=228 amount=-1 +kerning first=1114 second=1093 amount=-1 +kerning first=287 second=251 amount=-1 +kerning first=1042 second=1093 amount=-1 +kerning first=122 second=228 amount=-1 +kerning first=198 second=225 amount=-1 +kerning first=278 second=46 amount=-1 +kerning first=86 second=228 amount=-2 +kerning first=262 second=206 amount=-1 +kerning first=350 second=46 amount=-2 +kerning first=214 second=325 amount=-1 +kerning first=334 second=206 amount=-1 +kerning first=88 second=103 amount=-1 +kerning first=101 second=46 amount=-2 +kerning first=71 second=83 amount=-1 +kerning first=45 second=310 amount=-3 +kerning first=378 second=225 amount=-1 +kerning first=286 second=325 amount=-1 +kerning first=84 second=280 amount=-1 +kerning first=206 second=46 amount=-1 +kerning first=277 second=287 amount=-1 +kerning first=1054 second=1070 amount=-1 +kerning first=115 second=102 amount=-1 +kerning first=242 second=46 amount=-2 +kerning first=212 second=83 amount=-1 +kerning first=106 second=355 amount=-1 +kerning first=315 second=266 amount=-1 +kerning first=338 second=363 amount=-1 +kerning first=258 second=112 amount=-1 +kerning first=290 second=46 amount=-1 +kerning first=284 second=83 amount=-1 +kerning first=374 second=363 amount=-1 +kerning first=241 second=318 amount=-1 +kerning first=79 second=362 amount=-1 +kerning first=277 second=318 amount=-1 +kerning first=356 second=83 amount=-2 +kerning first=117 second=112 amount=-1 +kerning first=313 second=318 amount=-1 +kerning first=364 second=102 amount=-1 +kerning first=250 second=289 amount=-1 +kerning first=317 second=214 amount=-1 +kerning first=207 second=266 amount=-1 +kerning first=45 second=112 amount=-1 +kerning first=66 second=266 amount=-1 +kerning first=268 second=311 amount=-1 +kerning first=344 second=235 amount=-1 +kerning first=378 second=259 amount=-1 +kerning first=321 second=105 amount=-1 +kerning first=380 second=235 amount=-1 +kerning first=88 second=81 amount=-1 +kerning first=249 second=105 amount=-1 +kerning first=99 second=98 amount=-1 +kerning first=378 second=248 amount=-1 +kerning first=234 second=259 amount=-1 +kerning first=76 second=382 amount=-1 +kerning first=198 second=259 amount=-1 +kerning first=366 second=112 amount=-1 +kerning first=197 second=67 amount=-1 +kerning first=330 second=112 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=282 second=230 amount=-1 +kerning first=1082 second=1079 amount=-1 +kerning first=66 second=204 amount=-2 +kerning first=67 second=282 amount=-1 +kerning first=304 second=249 amount=-1 +kerning first=90 second=379 amount=-1 +kerning first=219 second=346 amount=-1 +kerning first=379 second=275 amount=-1 +kerning first=210 second=230 amount=-1 +kerning first=377 second=327 amount=-1 +kerning first=232 second=249 amount=-1 +kerning first=1046 second=1079 amount=-1 +kerning first=268 second=249 amount=-1 +kerning first=105 second=230 amount=-1 +kerning first=65 second=334 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=1061 second=1095 amount=-2 +kerning first=118 second=100 amount=-1 +kerning first=255 second=240 amount=-1 +kerning first=1025 second=1095 amount=-1 +kerning first=315 second=204 amount=-1 +kerning first=376 second=249 amount=-1 +kerning first=327 second=346 amount=-1 +kerning first=69 second=230 amount=-1 +kerning first=196 second=107 amount=-1 +kerning first=354 second=339 amount=-2 +kerning first=217 second=8249 amount=-3 +kerning first=220 second=121 amount=-1 +kerning first=381 second=223 amount=-1 +kerning first=232 second=305 amount=-1 +kerning first=268 second=107 amount=-1 +kerning first=232 second=107 amount=-1 +kerning first=84 second=333 amount=-2 +kerning first=66 second=260 amount=-3 +kerning first=298 second=268 amount=-1 +kerning first=8218 second=250 amount=-1 +kerning first=268 second=305 amount=-1 +kerning first=354 second=230 amount=-2 +kerning first=313 second=256 amount=-1 +kerning first=376 second=305 amount=-1 +kerning first=75 second=211 amount=-1 +kerning first=201 second=223 amount=-1 +kerning first=370 second=268 amount=-1 +kerning first=1025 second=1039 amount=-1 +kerning first=369 second=8217 amount=-2 +kerning first=192 second=244 amount=-1 +kerning first=374 second=192 amount=-3 +kerning first=338 second=192 amount=-1 +kerning first=108 second=365 amount=-1 +kerning first=1098 second=1117 amount=-1 +kerning first=262 second=268 amount=-2 +kerning first=71 second=315 amount=-1 +kerning first=264 second=244 amount=-1 +kerning first=220 second=102 amount=-1 +kerning first=72 second=365 amount=-1 +kerning first=315 second=260 amount=-1 +kerning first=8220 second=226 amount=-1 +kerning first=266 second=192 amount=-2 +kerning first=363 second=237 amount=-1 +kerning first=84 second=218 amount=-1 +kerning first=203 second=199 amount=-1 +kerning first=261 second=8217 amount=-1 +kerning first=73 second=263 amount=-1 +kerning first=291 second=237 amount=-1 +kerning first=85 second=268 amount=-1 +kerning first=255 second=237 amount=-1 +kerning first=333 second=8217 amount=-1 +kerning first=89 second=192 amount=-3 +kerning first=228 second=353 amount=-1 +kerning first=219 second=237 amount=-1 +kerning first=73 second=121 amount=-1 +kerning first=217 second=117 amount=-1 +kerning first=199 second=275 amount=-1 +kerning first=264 second=353 amount=-1 +kerning first=206 second=334 amount=-1 +kerning first=375 second=101 amount=-1 +kerning first=352 second=282 amount=-1 +kerning first=284 second=315 amount=-1 +kerning first=8220 second=335 amount=-1 +kerning first=278 second=334 amount=-1 +kerning first=187 second=270 amount=-3 +kerning first=356 second=315 amount=-1 +kerning first=1057 second=1034 amount=-1 +kerning first=217 second=289 amount=-2 +kerning first=78 second=346 amount=-1 +kerning first=268 second=252 amount=-1 +kerning first=321 second=365 amount=-1 +kerning first=8250 second=354 amount=-2 +kerning first=87 second=244 amount=-2 +kerning first=1060 second=1051 amount=-1 +kerning first=88 second=232 amount=-1 +kerning first=104 second=351 amount=-1 +kerning first=72 second=99 amount=-1 +kerning first=74 second=257 amount=-1 +kerning first=1025 second=1065 amount=-1 +kerning first=362 second=277 amount=-1 +kerning first=279 second=249 amount=-1 +kerning first=371 second=8249 amount=-1 +kerning first=113 second=277 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=214 second=381 amount=-1 +kerning first=71 second=8249 amount=-1 +kerning first=70 second=361 amount=-1 +kerning first=337 second=347 amount=-1 +kerning first=332 second=202 amount=-1 +kerning first=218 second=277 amount=-1 +kerning first=286 second=381 amount=-1 +kerning first=84 second=336 amount=-1 +kerning first=353 second=351 amount=-1 +kerning first=288 second=69 amount=-1 +kerning first=376 second=367 amount=-1 +kerning first=317 second=351 amount=-1 +kerning first=370 second=212 amount=-1 +kerning first=77 second=277 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=262 second=212 amount=-2 +kerning first=216 second=69 amount=-1 +kerning first=304 second=367 amount=-1 +kerning first=298 second=212 amount=-1 +kerning first=209 second=351 amount=-1 +kerning first=323 second=257 amount=-1 +kerning first=232 second=367 amount=-1 +kerning first=354 second=79 amount=-1 +kerning first=268 second=367 amount=-1 +kerning first=281 second=351 amount=-1 +kerning first=85 second=212 amount=-1 +kerning first=251 second=257 amount=-1 +kerning first=245 second=351 amount=-1 +kerning first=282 second=79 amount=-1 +kerning first=287 second=257 amount=-1 +kerning first=236 second=291 amount=-1 +kerning first=122 second=337 amount=-1 +kerning first=258 second=316 amount=-1 +kerning first=267 second=261 amount=-1 +kerning first=200 second=291 amount=-1 +kerning first=86 second=337 amount=-2 +kerning first=303 second=261 amount=-1 +kerning first=206 second=216 amount=-1 +kerning first=8250 second=298 amount=-3 +kerning first=339 second=261 amount=-1 +kerning first=1044 second=1047 amount=-1 +kerning first=375 second=261 amount=-2 +kerning first=119 second=314 amount=-1 +kerning first=75 second=267 amount=-1 +kerning first=67 second=226 amount=-1 +kerning first=90 second=261 amount=-1 +kerning first=216 second=382 amount=-1 +kerning first=263 second=337 amount=-1 +kerning first=83 second=314 amount=-1 +kerning first=103 second=226 amount=-1 +kerning first=269 second=271 amount=-1 +kerning first=252 second=382 amount=-1 +kerning first=224 second=314 amount=-1 +kerning first=1045 second=1057 amount=-1 +kerning first=378 second=281 amount=-1 +kerning first=288 second=382 amount=-1 +kerning first=1053 second=1104 amount=-1 +kerning first=65 second=216 amount=-1 +kerning first=208 second=226 amount=-1 +kerning first=253 second=171 amount=-2 +kerning first=260 second=314 amount=-1 +kerning first=106 second=361 amount=-1 +kerning first=229 second=347 amount=-1 +kerning first=289 second=171 amount=-1 +kerning first=371 second=337 amount=-1 +kerning first=193 second=347 amount=-1 +kerning first=199 second=269 amount=-1 +kerning first=325 second=171 amount=-2 +kerning first=361 second=171 amount=-1 +kerning first=106 second=255 amount=-1 +kerning first=278 second=216 amount=-1 +kerning first=69 second=224 amount=-1 +kerning first=118 second=326 amount=-1 +kerning first=88 second=347 amount=-1 +kerning first=76 second=171 amount=-1 +kerning first=83 second=202 amount=-1 +kerning first=283 second=361 amount=-1 +kerning first=117 second=316 amount=-1 +kerning first=187 second=326 amount=-1 +kerning first=1042 second=1037 amount=-1 +kerning first=241 second=8221 amount=-2 +kerning first=105 second=224 amount=-1 +kerning first=217 second=171 amount=-3 +kerning first=304 second=45 amount=-2 +kerning first=268 second=45 amount=-2 +kerning first=8220 second=279 amount=-1 +kerning first=210 second=224 amount=-1 +kerning first=379 second=269 amount=-1 +kerning first=89 second=103 amount=-2 +kerning first=376 second=71 amount=-1 +kerning first=98 second=115 amount=-1 +kerning first=229 second=371 amount=-1 +kerning first=67 second=78 amount=-1 +kerning first=275 second=252 amount=-1 +kerning first=282 second=224 amount=-1 +kerning first=253 second=227 amount=-2 +kerning first=354 second=224 amount=-2 +kerning first=217 second=227 amount=-2 +kerning first=317 second=206 amount=-1 +kerning first=222 second=201 amount=-1 +kerning first=225 second=363 amount=-1 +kerning first=286 second=207 amount=-1 +kerning first=196 second=311 amount=-1 +kerning first=291 second=318 amount=-1 +kerning first=268 second=101 amount=-1 +kerning first=81 second=201 amount=-1 +kerning first=316 second=226 amount=-1 +kerning first=310 second=251 amount=-1 +kerning first=374 second=103 amount=-2 +kerning first=304 second=101 amount=-1 +kerning first=45 second=201 amount=-3 +kerning first=1061 second=1101 amount=-1 +kerning first=221 second=90 amount=-1 +kerning first=338 second=103 amount=-1 +kerning first=110 second=316 amount=-1 +kerning first=302 second=103 amount=-1 +kerning first=344 second=291 amount=-1 +kerning first=347 second=252 amount=-1 +kerning first=376 second=101 amount=-2 +kerning first=266 second=103 amount=-1 +kerning first=214 second=207 amount=-1 +kerning first=90 second=317 amount=-1 +kerning first=256 second=362 amount=-2 +kerning first=230 second=103 amount=-1 +kerning first=196 second=45 amount=-2 +kerning first=80 second=356 amount=-1 +kerning first=194 second=103 amount=-1 +kerning first=82 second=44 amount=-1 +kerning first=199 second=213 amount=-2 +kerning first=200 second=84 amount=-1 +kerning first=347 second=104 amount=-1 +kerning first=1047 second=1067 amount=-1 +kerning first=212 second=89 amount=-1 +kerning first=368 second=74 amount=-1 +kerning first=118 second=44 amount=-3 +kerning first=354 second=283 amount=-2 +kerning first=284 second=89 amount=-1 +kerning first=228 second=367 amount=-1 +kerning first=287 second=109 amount=-1 +kerning first=71 second=89 amount=-1 +kerning first=344 second=84 amount=-1 +kerning first=362 second=338 amount=-1 +kerning first=66 second=115 amount=-1 +kerning first=8217 second=111 amount=-2 +kerning first=268 second=193 amount=-2 +kerning first=203 second=370 amount=-1 +kerning first=272 second=84 amount=-1 +kerning first=379 second=213 amount=-1 +kerning first=207 second=115 amount=-1 +kerning first=376 second=193 amount=-3 +kerning first=321 second=303 amount=-1 +kerning first=243 second=115 amount=-1 +kerning first=367 second=44 amount=-1 +kerning first=74 second=109 amount=-1 +kerning first=352 second=78 amount=-1 +kerning first=102 second=115 amount=-1 +kerning first=122 second=8249 amount=-2 +kerning first=325 second=227 amount=-1 +kerning first=249 second=303 amount=-1 +kerning first=289 second=227 amount=-1 +kerning first=280 second=78 amount=-1 +kerning first=351 second=115 amount=-1 +kerning first=259 second=44 amount=-1 +kerning first=256 second=346 amount=-2 +kerning first=223 second=44 amount=-2 +kerning first=8216 second=240 amount=-1 +kerning first=86 second=8249 amount=-3 +kerning first=208 second=78 amount=-1 +kerning first=279 second=115 amount=-1 +kerning first=331 second=44 amount=-1 +kerning first=315 second=115 amount=-1 +kerning first=98 second=104 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=69 second=374 amount=-1 +kerning first=313 second=368 amount=-1 +kerning first=201 second=78 amount=-1 +kerning first=279 second=378 amount=-1 +kerning first=313 second=203 amount=-1 +kerning first=379 second=68 amount=-1 +kerning first=73 second=375 amount=-1 +kerning first=374 second=248 amount=-2 +kerning first=367 second=361 amount=-1 +kerning first=351 second=118 amount=-1 +kerning first=208 second=75 amount=-1 +kerning first=216 second=323 amount=-1 +kerning first=8218 second=105 amount=-1 +kerning first=218 second=8249 amount=-3 +kerning first=8222 second=230 amount=-1 +kerning first=366 second=198 amount=-2 +kerning first=302 second=248 amount=-1 +kerning first=233 second=120 amount=-1 +kerning first=86 second=278 amount=-1 +kerning first=288 second=323 amount=-1 +kerning first=269 second=120 amount=-1 +kerning first=210 second=85 amount=-1 +kerning first=108 second=253 amount=-1 +kerning first=218 second=117 amount=-1 +kerning first=243 second=118 amount=-1 +kerning first=296 second=113 amount=-1 +kerning first=207 second=118 amount=-1 +kerning first=346 second=298 amount=-1 +kerning first=352 second=75 amount=-1 +kerning first=376 second=196 amount=-3 +kerning first=8220 second=257 amount=-1 +kerning first=315 second=118 amount=-1 +kerning first=69 second=85 amount=-1 +kerning first=249 second=253 amount=-1 +kerning first=279 second=118 amount=-1 +kerning first=280 second=75 amount=-1 +kerning first=211 second=203 amount=-1 +kerning first=113 second=229 amount=-1 +kerning first=66 second=118 amount=-2 +kerning first=77 second=382 amount=-1 +kerning first=268 second=196 amount=-2 +kerning first=321 second=253 amount=-1 +kerning first=86 second=80 amount=-1 +kerning first=310 second=233 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=199 second=68 amount=-1 +kerning first=368 second=113 amount=-1 +kerning first=100 second=108 amount=-1 +kerning first=382 second=233 amount=-1 +kerning first=78 second=290 amount=-1 +kerning first=1057 second=1087 amount=-1 +kerning first=325 second=283 amount=-1 +kerning first=280 second=338 amount=-1 +kerning first=289 second=283 amount=-1 +kerning first=253 second=283 amount=-1 +kerning first=1042 second=1040 amount=-1 +kerning first=350 second=328 amount=-1 +kerning first=83 second=110 amount=-1 +kerning first=219 second=290 amount=-1 +kerning first=217 second=283 amount=-1 +kerning first=354 second=85 amount=-1 +kerning first=277 second=108 amount=-1 +kerning first=103 second=335 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=354 second=286 amount=-1 +kerning first=241 second=108 amount=-1 +kerning first=8220 second=220 amount=-1 +kerning first=282 second=85 amount=-1 +kerning first=204 second=67 amount=-1 +kerning first=221 second=241 amount=-1 +kerning first=67 second=338 amount=-2 +kerning first=282 second=286 amount=-1 +kerning first=313 second=108 amount=-1 +kerning first=377 second=380 amount=-1 +kerning first=73 second=115 amount=-1 +kerning first=219 second=231 amount=-1 +kerning first=379 second=331 amount=-1 +kerning first=109 second=115 amount=-1 +kerning first=199 second=65 amount=-2 +kerning first=266 second=248 amount=-1 +kerning first=255 second=231 amount=-1 +kerning first=69 second=286 amount=-1 +kerning first=368 second=110 amount=-1 +kerning first=307 second=331 amount=-1 +kerning first=67 second=335 amount=-1 +kerning first=203 second=193 amount=-1 +kerning first=194 second=248 amount=-1 +kerning first=233 second=380 amount=-1 +kerning first=70 second=279 amount=-1 +kerning first=250 second=115 amount=-1 +kerning first=235 second=331 amount=-1 +kerning first=84 second=70 amount=-1 +kerning first=89 second=248 amount=-2 +kerning first=379 second=65 amount=-1 +kerning first=291 second=231 amount=-1 +kerning first=381 second=78 amount=-1 +kerning first=327 second=231 amount=-1 +kerning first=1046 second=1073 amount=-1 +kerning first=45 second=257 amount=-1 +kerning first=304 second=255 amount=-1 +kerning first=380 second=347 amount=-1 +kerning first=211 second=302 amount=-1 +kerning first=81 second=257 amount=-1 +kerning first=344 second=347 amount=-1 +kerning first=332 second=205 amount=-1 +kerning first=232 second=255 amount=-1 +kerning first=1075 second=1076 amount=-1 +kerning first=196 second=255 amount=-1 +kerning first=230 second=307 amount=-1 +kerning first=1101 second=1078 amount=-1 +kerning first=83 second=205 amount=-1 +kerning first=249 second=289 amount=-1 +kerning first=249 second=250 amount=-1 +kerning first=236 second=347 amount=-1 +kerning first=8222 second=289 amount=-1 +kerning first=78 second=231 amount=-1 +kerning first=200 second=347 amount=-1 +kerning first=337 second=8250 amount=-1 +kerning first=205 second=262 amount=-1 +kerning first=241 second=371 amount=-1 +kerning first=321 second=250 amount=-1 +kerning first=277 second=371 amount=-1 +kerning first=8250 second=316 amount=-1 +kerning first=366 second=257 amount=-2 +kerning first=250 second=378 amount=-1 +kerning first=197 second=212 amount=-1 +kerning first=72 second=250 amount=-1 +kerning first=214 second=378 amount=-1 +kerning first=268 second=203 amount=-1 +kerning first=81 second=366 amount=-1 +kerning first=302 second=353 amount=-1 +kerning first=1070 second=1052 amount=-1 +kerning first=78 second=352 amount=-1 +kerning first=45 second=366 amount=-2 +kerning first=100 second=371 amount=-1 +kerning first=330 second=257 amount=-1 +kerning first=286 second=378 amount=-1 +kerning first=108 second=250 amount=-1 +kerning first=67 second=332 amount=-2 +kerning first=222 second=257 amount=-1 +kerning first=73 second=378 amount=-1 +kerning first=314 second=328 amount=-1 +kerning first=278 second=328 amount=-1 +kerning first=258 second=366 amount=-2 +kerning first=364 second=194 amount=-2 +kerning first=222 second=366 amount=-1 +kerning first=219 second=352 amount=-1 +kerning first=246 second=119 amount=-1 +kerning first=1025 second=1045 amount=-1 +kerning first=352 second=254 amount=-1 +kerning first=200 second=288 amount=-1 +kerning first=232 second=8220 amount=-1 +kerning first=122 second=98 amount=-1 +kerning first=1040 second=1092 amount=-1 +kerning first=70 second=243 amount=-1 +kerning first=377 second=377 amount=-1 +kerning first=114 second=287 amount=-1 +kerning first=222 second=106 amount=-1 +kerning first=280 second=332 amount=-1 +kerning first=78 second=287 amount=-1 +kerning first=219 second=287 amount=-2 +kerning first=119 second=113 amount=-1 +kerning first=76 second=378 amount=-1 +kerning first=1050 second=1090 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=291 second=287 amount=-1 +kerning first=354 second=345 amount=-1 +kerning first=263 second=281 amount=-1 +kerning first=75 second=217 amount=-1 +kerning first=1058 second=1105 amount=-1 +kerning first=363 second=287 amount=-1 +kerning first=313 second=262 amount=-1 +kerning first=88 second=87 amount=-1 +kerning first=266 second=242 amount=-1 +kerning first=222 second=198 amount=-2 +kerning first=371 second=281 amount=-1 +kerning first=216 second=217 amount=-1 +kerning first=86 second=281 amount=-2 +kerning first=315 second=210 amount=-1 +kerning first=122 second=281 amount=-1 +kerning first=288 second=217 amount=-1 +kerning first=302 second=242 amount=-1 +kerning first=8222 second=224 amount=-1 +kerning first=344 second=288 amount=-1 +kerning first=376 second=255 amount=-1 +kerning first=81 second=198 amount=-2 +kerning first=313 second=197 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=67 second=279 amount=-1 +kerning first=202 second=354 amount=-1 +kerning first=45 second=254 amount=-1 +kerning first=72 second=45 amount=-2 +kerning first=269 second=324 amount=-1 +kerning first=313 second=374 amount=-1 +kerning first=203 second=249 amount=-1 +kerning first=233 second=324 amount=-1 +kerning first=84 second=274 amount=-1 +kerning first=274 second=354 amount=-1 +kerning first=332 second=379 amount=-1 +kerning first=117 second=254 amount=-1 +kerning first=252 second=119 amount=-1 +kerning first=103 second=279 amount=-1 +kerning first=310 second=354 amount=-1 +kerning first=89 second=304 amount=-1 +kerning first=86 second=74 amount=-2 +kerning first=288 second=119 amount=-1 +kerning first=346 second=354 amount=-1 +kerning first=1053 second=1054 amount=-1 +kerning first=324 second=119 amount=-1 +kerning first=258 second=369 amount=-1 +kerning first=199 second=334 amount=-2 +kerning first=272 second=344 amount=-1 +kerning first=8217 second=256 amount=-3 +kerning first=366 second=369 amount=-1 +kerning first=65 second=233 amount=-1 +kerning first=8250 second=351 amount=-1 +kerning first=330 second=369 amount=-1 +kerning first=105 second=289 amount=-1 +kerning first=74 second=264 amount=-1 +kerning first=272 second=229 amount=-1 +kerning first=8217 second=371 amount=-1 +kerning first=217 second=339 amount=-1 +kerning first=219 second=234 amount=-1 +kerning first=255 second=234 amount=-1 +kerning first=200 second=229 amount=-1 +kerning first=200 second=344 amount=-1 +kerning first=291 second=234 amount=-1 +kerning first=236 second=229 amount=-1 +kerning first=81 second=106 amount=-1 +kerning first=325 second=339 amount=-1 +kerning first=86 second=284 amount=-1 +kerning first=117 second=106 amount=-1 +kerning first=377 second=324 amount=-1 +kerning first=368 second=97 amount=-2 +kerning first=316 second=279 amount=-1 +kerning first=253 second=339 amount=-1 +kerning first=78 second=234 amount=-1 +kerning first=344 second=229 amount=-1 +kerning first=45 second=106 amount=-1 +kerning first=289 second=339 amount=-1 +kerning first=1057 second=1084 amount=-1 +kerning first=380 second=229 amount=-1 +kerning first=232 second=8217 amount=-1 +kerning first=205 second=111 amount=-1 +kerning first=196 second=199 amount=-1 +kerning first=199 second=219 amount=-1 +kerning first=368 second=264 amount=-1 +kerning first=377 second=209 amount=-1 +kerning first=268 second=199 amount=-2 +kerning first=1054 second=1064 amount=-1 +kerning first=296 second=264 amount=-1 +kerning first=8216 second=246 amount=-1 +kerning first=304 second=199 amount=-1 +kerning first=327 second=234 amount=-1 +kerning first=260 second=264 amount=-1 +kerning first=1040 second=1089 amount=-1 +kerning first=354 second=82 amount=-1 +kerning first=376 second=199 amount=-1 +kerning first=196 second=8217 amount=-3 +kerning first=264 second=105 amount=-1 +kerning first=379 second=334 amount=-1 +kerning first=243 second=121 amount=-1 +kerning first=203 second=364 amount=-1 +kerning first=252 second=251 amount=-1 +kerning first=210 second=289 amount=-1 +kerning first=207 second=121 amount=-1 +kerning first=210 second=82 amount=-1 +kerning first=216 second=66 amount=-1 +kerning first=1114 second=1099 amount=-1 +kerning first=246 second=289 amount=-1 +kerning first=80 second=244 amount=-1 +kerning first=282 second=289 amount=-1 +kerning first=282 second=82 amount=-1 +kerning first=1040 second=1086 amount=-1 +kerning first=354 second=289 amount=-2 +kerning first=221 second=244 amount=-2 +kerning first=258 second=254 amount=-1 +kerning first=69 second=82 amount=-1 +kerning first=288 second=66 amount=-1 +kerning first=371 second=225 amount=-1 +kerning first=269 second=117 amount=-1 +kerning first=67 second=72 amount=-1 +kerning first=89 second=97 amount=-2 +kerning first=211 second=296 amount=-1 +kerning first=233 second=117 amount=-1 +kerning first=313 second=200 amount=-1 +kerning first=111 second=122 amount=-1 +kerning first=290 second=76 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=305 second=117 amount=-1 +kerning first=374 second=245 amount=-2 +kerning first=45 second=251 amount=-1 +kerning first=266 second=97 amount=-1 +kerning first=85 second=227 amount=-2 +kerning first=263 second=225 amount=-1 +kerning first=377 second=117 amount=-1 +kerning first=208 second=72 amount=-1 +kerning first=302 second=97 amount=-1 +kerning first=86 second=77 amount=-1 +kerning first=351 second=121 amount=-1 +kerning first=117 second=251 amount=-1 +kerning first=288 second=122 amount=-1 +kerning first=379 second=71 amount=-1 +kerning first=315 second=121 amount=-1 +kerning first=258 second=251 amount=-1 +kerning first=252 second=122 amount=-1 +kerning first=280 second=72 amount=-1 +kerning first=279 second=121 amount=-1 +kerning first=216 second=122 amount=-1 +kerning first=194 second=245 amount=-1 +kerning first=330 second=251 amount=-1 +kerning first=213 second=46 amount=-1 +kerning first=338 second=97 amount=-1 +kerning first=89 second=245 amount=-2 +kerning first=89 second=363 amount=-1 +kerning first=249 second=46 amount=-1 +kerning first=1045 second=1063 amount=-1 +kerning first=374 second=97 amount=-2 +kerning first=366 second=251 amount=-1 +kerning first=194 second=363 amount=-1 +kerning first=8222 second=227 amount=-1 +kerning first=302 second=245 amount=-1 +kerning first=230 second=363 amount=-1 +kerning first=249 second=102 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=377 second=206 amount=-1 +kerning first=266 second=245 amount=-1 +kerning first=327 second=290 amount=-1 +kerning first=72 second=46 amount=-1 +kerning first=100 second=318 amount=-1 +kerning first=302 second=363 amount=-1 +kerning first=222 second=310 amount=-1 +kerning first=78 second=83 amount=-1 +kerning first=83 second=116 amount=-1 +kerning first=283 second=355 amount=-1 +kerning first=81 second=310 amount=-1 +kerning first=219 second=83 amount=-1 +kerning first=213 second=194 amount=-2 +kerning first=202 second=298 amount=-1 +kerning first=70 second=240 amount=-1 +kerning first=327 second=83 amount=-1 +kerning first=1098 second=1114 amount=-1 +kerning first=72 second=253 amount=-1 +kerning first=1042 second=1043 amount=-1 +kerning first=274 second=298 amount=-1 +kerning first=117 second=369 amount=-1 +kerning first=84 second=330 amount=-1 +kerning first=208 second=220 amount=-1 +kerning first=205 second=259 amount=-1 +kerning first=67 second=220 amount=-1 +kerning first=218 second=230 amount=-2 +kerning first=1059 second=1094 amount=-2 +kerning first=374 second=304 amount=-1 +kerning first=109 second=375 amount=-1 +kerning first=277 second=259 amount=-1 +kerning first=199 second=71 amount=-2 +kerning first=75 second=214 amount=-1 +kerning first=352 second=220 amount=-1 +kerning first=119 second=116 amount=-1 +kerning first=338 second=304 amount=-1 +kerning first=45 second=369 amount=-1 +kerning first=260 second=116 amount=-1 +kerning first=1070 second=1049 amount=-1 +kerning first=321 second=194 amount=-1 +kerning first=280 second=220 amount=-1 +kerning first=1077 second=1095 amount=-1 +kerning first=266 second=304 amount=-1 +kerning first=336 second=90 amount=-1 +kerning first=66 second=201 amount=-2 +kerning first=346 second=317 amount=-1 +kerning first=350 second=77 amount=-1 +kerning first=89 second=298 amount=-1 +kerning first=365 second=291 amount=-1 +kerning first=76 second=76 amount=-1 +kerning first=1114 second=1082 amount=-1 +kerning first=278 second=77 amount=-1 +kerning first=67 second=290 amount=-2 +kerning first=1063 second=1108 amount=-1 +kerning first=119 second=227 amount=-2 +kerning first=78 second=240 amount=-1 +kerning first=1057 second=1037 amount=-1 +kerning first=257 second=291 amount=-1 +kerning first=65 second=337 amount=-1 +kerning first=202 second=317 amount=-1 +kerning first=83 second=227 amount=-1 +kerning first=288 second=304 amount=-1 +kerning first=266 second=298 amount=-1 +kerning first=87 second=350 amount=-2 +kerning first=201 second=97 amount=-1 +kerning first=221 second=291 amount=-2 +kerning first=377 second=330 amount=-1 +kerning first=298 second=100 amount=-1 +kerning first=274 second=317 amount=-1 +kerning first=216 second=304 amount=-1 +kerning first=338 second=298 amount=-1 +kerning first=283 second=324 amount=-1 +kerning first=232 second=110 amount=-1 +kerning first=80 second=291 amount=-1 +kerning first=264 second=350 amount=-1 +kerning first=268 second=110 amount=-1 +kerning first=206 second=337 amount=-1 +kerning first=333 second=311 amount=-1 +kerning first=87 second=90 amount=-1 +kerning first=1059 second=1088 amount=-2 +kerning first=192 second=350 amount=-2 +kerning first=333 second=187 amount=-1 +kerning first=106 second=324 amount=-1 +kerning first=376 second=110 amount=-1 +kerning first=198 second=318 amount=-1 +kerning first=264 second=90 amount=-1 +kerning first=107 second=259 amount=-1 +kerning first=234 second=318 amount=-1 +kerning first=381 second=97 amount=-1 +kerning first=314 second=337 amount=-1 +kerning first=336 second=350 amount=-1 +kerning first=256 second=71 amount=-1 +kerning first=216 second=44 amount=-1 +kerning first=289 second=250 amount=-1 +kerning first=199 second=381 amount=-1 +kerning first=269 second=234 amount=-1 +kerning first=68 second=374 amount=-1 +kerning first=354 second=334 amount=-1 +kerning first=364 second=365 amount=-1 +kerning first=288 second=44 amount=-1 +kerning first=364 second=303 amount=-1 +kerning first=252 second=44 amount=-1 +kerning first=212 second=90 amount=-1 +kerning first=214 second=260 amount=-2 +kerning first=206 second=213 amount=-1 +kerning first=286 second=260 amount=-1 +kerning first=379 second=381 amount=-1 +kerning first=66 second=325 amount=-2 +kerning first=8218 second=356 amount=-3 +kerning first=84 second=187 amount=-1 +kerning first=111 second=44 amount=-2 +kerning first=278 second=213 amount=-1 +kerning first=75 second=44 amount=-1 +kerning first=262 second=374 amount=-1 +kerning first=274 second=85 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=296 second=227 amount=-1 +kerning first=374 second=298 amount=-1 +kerning first=275 second=241 amount=-1 +kerning first=219 second=111 amount=-1 +kerning first=115 second=303 amount=-1 +kerning first=83 second=351 amount=-1 +kerning first=1056 second=1077 amount=-1 +kerning first=198 second=194 amount=-1 +kerning first=255 second=111 amount=-1 +kerning first=311 second=277 amount=-1 +kerning first=224 second=351 amount=-1 +kerning first=377 second=70 amount=-1 +kerning first=315 second=201 amount=-1 +kerning first=334 second=207 amount=-1 +kerning first=327 second=111 amount=-1 +kerning first=69 second=104 amount=-1 +kerning first=324 second=44 amount=-1 +kerning first=356 second=284 amount=-1 +kerning first=346 second=204 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=1113 second=1074 amount=-1 +kerning first=202 second=229 amount=-1 +kerning first=368 second=227 amount=-2 +kerning first=220 second=303 amount=-1 +kerning first=332 second=227 amount=-1 +kerning first=248 second=380 amount=-1 +kerning first=107 second=8249 amount=-2 +kerning first=376 second=362 amount=-1 +kerning first=332 second=8220 amount=-1 +kerning first=193 second=235 amount=-1 +kerning first=284 second=380 amount=-1 +kerning first=266 second=270 amount=-1 +kerning first=8222 second=252 amount=-1 +kerning first=87 second=118 amount=-1 +kerning first=374 second=270 amount=-1 +kerning first=228 second=118 amount=-1 +kerning first=260 second=8220 amount=-3 +kerning first=313 second=377 amount=-1 +kerning first=74 second=248 amount=-1 +kerning first=356 second=380 amount=-2 +kerning first=338 second=270 amount=-1 +kerning first=192 second=118 amount=-2 +kerning first=101 second=105 amount=-1 +kerning first=224 second=8220 amount=-1 +kerning first=120 second=283 amount=-1 +kerning first=71 second=380 amount=-1 +kerning first=314 second=241 amount=-1 +kerning first=376 second=206 amount=-1 +kerning first=122 second=287 amount=-1 +kerning first=364 second=228 amount=-1 +kerning first=278 second=241 amount=-1 +kerning first=346 second=345 amount=-1 +kerning first=346 second=85 amount=-1 +kerning first=83 second=8220 amount=-1 +kerning first=227 second=287 amount=-1 +kerning first=310 second=85 amount=-1 +kerning first=212 second=380 amount=-1 +kerning first=350 second=241 amount=-1 +kerning first=1058 second=1100 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=74 second=112 amount=-1 +kerning first=211 second=193 amount=-2 +kerning first=101 second=241 amount=-1 +kerning first=263 second=287 amount=-1 +kerning first=70 second=193 amount=-2 +kerning first=371 second=287 amount=-1 +kerning first=115 second=228 amount=-1 +kerning first=315 second=325 amount=-1 +kerning first=335 second=287 amount=-1 +kerning first=287 second=248 amount=-1 +kerning first=79 second=228 amount=-1 +kerning first=221 second=263 amount=-2 +kerning first=323 second=248 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=212 second=8249 amount=-1 +kerning first=88 second=235 amount=-1 +kerning first=213 second=197 amount=-2 +kerning first=364 second=331 amount=-1 +kerning first=307 second=365 amount=-1 +kerning first=368 second=255 amount=-1 +kerning first=374 second=366 amount=-1 +kerning first=79 second=200 amount=-1 +kerning first=338 second=366 amount=-1 +kerning first=211 second=221 amount=-1 +kerning first=321 second=197 amount=-1 +kerning first=378 second=318 amount=-1 +kerning first=296 second=255 amount=-1 +kerning first=323 second=112 amount=-1 +kerning first=284 second=256 amount=-1 +kerning first=260 second=255 amount=-1 +kerning first=266 second=366 amount=-1 +kerning first=220 second=331 amount=-1 +kerning first=197 second=262 amount=-1 +kerning first=248 second=289 amount=-1 +kerning first=224 second=255 amount=-1 +kerning first=251 second=112 amount=-1 +kerning first=83 second=255 amount=-1 +kerning first=198 second=290 amount=-1 +kerning first=199 second=74 amount=-1 +kerning first=193 second=338 amount=-1 +kerning first=197 second=98 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=310 second=214 amount=-1 +kerning first=305 second=98 amount=-1 +kerning first=231 second=314 amount=-1 +kerning first=88 second=338 amount=-1 +kerning first=290 second=352 amount=-1 +kerning first=269 second=98 amount=-1 +kerning first=195 second=314 amount=-1 +kerning first=202 second=214 amount=-1 +kerning first=303 second=314 amount=-1 +kerning first=89 second=65 amount=-3 +kerning first=314 second=105 amount=-1 +kerning first=84 second=283 amount=-2 +kerning first=325 second=214 amount=-1 +kerning first=267 second=314 amount=-1 +kerning first=211 second=352 amount=-1 +kerning first=350 second=105 amount=-1 +kerning first=194 second=366 amount=-2 +kerning first=274 second=214 amount=-1 +kerning first=375 second=314 amount=-1 +kerning first=242 second=105 amount=-1 +kerning first=339 second=314 amount=-1 +kerning first=89 second=366 amount=-1 +kerning first=204 second=333 amount=-1 +kerning first=85 second=346 amount=-1 +kerning first=230 second=106 amount=-1 +kerning first=213 second=68 amount=-1 +kerning first=213 second=80 amount=-1 +kerning first=248 second=8221 amount=-1 +kerning first=321 second=80 amount=-1 +kerning first=284 second=8221 amount=-1 +kerning first=367 second=307 amount=-1 +kerning first=218 second=67 amount=-1 +kerning first=298 second=346 amount=-1 +kerning first=253 second=224 amount=-1 +kerning first=321 second=68 amount=-1 +kerning first=68 second=217 amount=-1 +kerning first=1047 second=1059 amount=-1 +kerning first=262 second=346 amount=-1 +kerning first=217 second=224 amount=-1 +kerning first=280 second=81 amount=-1 +kerning first=266 second=106 amount=-1 +kerning first=325 second=224 amount=-1 +kerning first=99 second=333 amount=-1 +kerning first=77 second=67 amount=-1 +kerning first=326 second=45 amount=-1 +kerning first=71 second=256 amount=-1 +kerning first=85 second=243 amount=-1 +kerning first=231 second=230 amount=-1 +kerning first=121 second=243 amount=-1 +kerning first=370 second=346 amount=-1 +kerning first=90 second=230 amount=-1 +kerning first=334 second=346 amount=-1 +kerning first=222 second=204 amount=-1 +kerning first=212 second=256 amount=-2 +kerning first=118 second=307 amount=-1 +kerning first=187 second=307 amount=-1 +kerning first=311 second=101 amount=-1 +kerning first=1074 second=1095 amount=-1 +kerning first=101 second=361 amount=-1 +kerning first=362 second=67 amount=-1 +kerning first=262 second=109 amount=-1 +kerning first=327 second=268 amount=-1 +kerning first=86 second=334 amount=-1 +kerning first=1042 second=1034 amount=-1 +kerning first=1059 second=1060 amount=-1 +kerning first=316 second=229 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=212 second=120 amount=-1 +kerning first=1030 second=1072 amount=-1 +kerning first=89 second=251 amount=-1 +kerning first=262 second=243 amount=-1 +kerning first=255 second=225 amount=-2 +kerning first=8218 second=225 amount=-1 +kerning first=298 second=243 amount=-1 +kerning first=81 second=204 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=219 second=268 amount=-1 +kerning first=45 second=204 amount=-3 +kerning first=370 second=243 amount=-1 +kerning first=187 second=192 amount=-2 +kerning first=266 second=251 amount=-1 +kerning first=230 second=251 amount=-1 +kerning first=268 second=79 amount=-2 +kerning first=78 second=268 amount=-1 +kerning first=317 second=217 amount=-1 +kerning first=338 second=251 amount=-1 +kerning first=103 second=229 amount=-1 +kerning first=368 second=380 amount=-1 +kerning first=302 second=251 amount=-1 +kerning first=381 second=282 amount=-1 +kerning first=248 second=120 amount=-1 +kerning first=352 second=229 amount=-1 +kerning first=8220 second=100 amount=-1 +kerning first=264 second=118 amount=-1 +kerning first=374 second=251 amount=-1 +kerning first=86 second=203 amount=-1 +kerning first=280 second=229 amount=-1 +kerning first=207 second=244 amount=-1 +kerning first=356 second=120 amount=-1 +kerning first=268 second=214 amount=-2 +kerning first=316 second=257 amount=-1 +kerning first=258 second=232 amount=-1 +kerning first=90 second=202 amount=-1 +kerning first=212 second=368 amount=-1 +kerning first=352 second=257 amount=-1 +kerning first=366 second=232 amount=-1 +kerning first=71 second=368 amount=-1 +kerning first=85 second=231 amount=-1 +kerning first=330 second=232 amount=-1 +kerning first=280 second=257 amount=-1 +kerning first=77 second=336 amount=-1 +kerning first=325 second=79 amount=-1 +kerning first=356 second=368 amount=-1 +kerning first=208 second=257 amount=-1 +kerning first=86 second=219 amount=-1 +kerning first=66 second=8250 amount=-1 +kerning first=69 second=8249 amount=-1 +kerning first=67 second=257 amount=-1 +kerning first=218 second=336 amount=-1 +kerning first=204 second=361 amount=-1 +kerning first=103 second=257 amount=-1 +kerning first=72 second=244 amount=-1 +kerning first=307 second=121 amount=-1 +kerning first=82 second=267 amount=-1 +kerning first=310 second=213 amount=-1 +kerning first=82 second=103 amount=-1 +kerning first=108 second=244 amount=-1 +kerning first=118 second=267 amount=-1 +kerning first=198 second=278 amount=-1 +kerning first=235 second=121 amount=-1 +kerning first=8222 second=116 amount=-1 +kerning first=362 second=336 amount=-1 +kerning first=236 second=318 amount=-1 +kerning first=317 second=69 amount=-1 +kerning first=217 second=79 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=90 second=66 amount=-1 +kerning first=205 second=117 amount=-1 +kerning first=204 second=246 amount=-1 +kerning first=76 second=107 amount=-1 +kerning first=223 second=382 amount=-1 +kerning first=90 second=82 amount=-1 +kerning first=45 second=347 amount=-1 +kerning first=1052 second=1057 amount=-1 +kerning first=99 second=246 amount=-1 +kerning first=8218 second=253 amount=-1 +kerning first=72 second=216 amount=-1 +kerning first=241 second=117 amount=-1 +kerning first=112 second=107 amount=-1 +kerning first=339 second=230 amount=-1 +kerning first=313 second=117 amount=-1 +kerning first=375 second=230 amount=-2 +kerning first=205 second=281 amount=-1 +kerning first=332 second=196 amount=-2 +kerning first=267 second=230 amount=-1 +kerning first=379 second=121 amount=-2 +kerning first=118 second=382 amount=-1 +kerning first=317 second=205 amount=-1 +kerning first=303 second=230 amount=-1 +kerning first=187 second=382 amount=-3 +kerning first=321 second=216 amount=-1 +kerning first=68 second=205 amount=-1 +kerning first=291 second=240 amount=-1 +kerning first=366 second=347 amount=-1 +kerning first=363 second=371 amount=-1 +kerning first=330 second=347 amount=-1 +kerning first=243 second=8250 amount=-1 +kerning first=313 second=217 amount=-1 +kerning first=219 second=240 amount=-1 +kerning first=279 second=8250 amount=-1 +kerning first=258 second=347 amount=-1 +kerning first=354 second=81 amount=-1 +kerning first=253 second=107 amount=-1 +kerning first=367 second=382 amount=-1 +kerning first=8250 second=217 amount=-2 +kerning first=100 second=117 amount=-1 +kerning first=327 second=240 amount=-1 +kerning first=121 second=271 amount=-1 +kerning first=1040 second=1095 amount=-1 +kerning first=117 second=347 amount=-1 +kerning first=289 second=107 amount=-1 +kerning first=291 second=371 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=88 second=226 amount=-1 +kerning first=70 second=336 amount=-1 +kerning first=350 second=65 amount=-2 +kerning first=69 second=252 amount=-1 +kerning first=363 second=365 amount=-1 +kerning first=8220 second=84 amount=-1 +kerning first=105 second=252 amount=-1 +kerning first=283 second=305 amount=-1 +kerning first=187 second=122 amount=-3 +kerning first=275 second=249 amount=-1 +kerning first=118 second=122 amount=-1 +kerning first=256 second=219 amount=-2 +kerning first=115 second=305 amount=-1 +kerning first=199 second=266 amount=-2 +kerning first=381 second=245 amount=-1 +kerning first=8218 second=365 amount=-1 +kerning first=354 second=252 amount=-1 +kerning first=274 second=202 amount=-1 +kerning first=88 second=261 amount=-1 +kerning first=243 second=316 amount=-1 +kerning first=79 second=219 amount=-1 +kerning first=279 second=316 amount=-1 +kerning first=202 second=202 amount=-1 +kerning first=370 second=335 amount=-1 +kerning first=298 second=259 amount=-1 +kerning first=315 second=316 amount=-1 +kerning first=262 second=259 amount=-1 +kerning first=351 second=316 amount=-1 +kerning first=331 second=98 amount=-1 +kerning first=370 second=259 amount=-2 +kerning first=346 second=69 amount=-1 +kerning first=118 second=113 amount=-1 +kerning first=282 second=252 amount=-1 +kerning first=346 second=202 amount=-1 +kerning first=171 second=84 amount=-2 +kerning first=121 second=259 amount=-2 +kerning first=74 second=332 amount=-1 +kerning first=106 second=45 amount=-1 +kerning first=201 second=369 amount=-1 +kerning first=85 second=259 amount=-2 +kerning first=89 second=382 amount=-2 +kerning first=269 second=246 amount=-1 +kerning first=70 second=45 amount=-2 +kerning first=287 second=103 amount=-1 +kerning first=253 second=116 amount=-1 +kerning first=365 second=375 amount=-1 +kerning first=251 second=103 amount=-1 +kerning first=197 second=246 amount=-1 +kerning first=101 second=253 amount=-1 +kerning first=352 second=109 amount=-1 +kerning first=231 second=231 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=323 second=332 amount=-1 +kerning first=355 second=45 amount=-1 +kerning first=74 second=103 amount=-1 +kerning first=242 second=253 amount=-1 +kerning first=374 second=382 amount=-2 +kerning first=264 second=362 amount=-1 +kerning first=118 second=279 amount=-1 +kerning first=8222 second=364 amount=-2 +kerning first=316 second=109 amount=-1 +kerning first=336 second=362 amount=-1 +kerning first=280 second=109 amount=-1 +kerning first=223 second=122 amount=-1 +kerning first=321 second=356 amount=-1 +kerning first=67 second=109 amount=-1 +kerning first=381 second=369 amount=-1 +kerning first=8217 second=117 amount=-1 +kerning first=230 second=382 amount=-1 +kerning first=87 second=362 amount=-1 +kerning first=289 second=116 amount=-1 +kerning first=266 second=382 amount=-1 +kerning first=257 second=375 amount=-1 +kerning first=82 second=279 amount=-1 +kerning first=1100 second=1081 amount=-1 +kerning first=213 second=356 amount=-1 +kerning first=302 second=382 amount=-1 +kerning first=192 second=362 amount=-2 +kerning first=221 second=375 amount=-1 +kerning first=367 second=122 amount=-1 +kerning first=338 second=382 amount=-1 +kerning first=381 second=242 amount=-1 +kerning first=257 second=115 amount=-1 +kerning first=67 second=374 amount=-1 +kerning first=350 second=68 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=1116 second=1086 amount=-1 +kerning first=260 second=370 amount=-2 +kerning first=278 second=68 amount=-1 +kerning first=221 second=115 amount=-2 +kerning first=82 second=119 amount=-1 +kerning first=332 second=370 amount=-1 +kerning first=315 second=313 amount=-1 +kerning first=118 second=119 amount=-1 +kerning first=8216 second=352 amount=-1 +kerning first=187 second=119 amount=-2 +kerning first=221 second=363 amount=-1 +kerning first=223 second=119 amount=-1 +kerning first=69 second=280 amount=-1 +kerning first=365 second=115 amount=-1 +kerning first=259 second=119 amount=-1 +kerning first=350 second=318 amount=-1 +kerning first=295 second=119 amount=-1 +kerning first=248 second=108 amount=-1 +kerning first=8218 second=257 amount=-1 +kerning first=1043 second=1090 amount=-1 +kerning first=211 second=73 amount=-1 +kerning first=66 second=313 amount=-2 +kerning first=350 second=253 amount=-1 +kerning first=367 second=119 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=79 second=315 amount=-1 +kerning first=83 second=370 amount=-1 +kerning first=377 second=246 amount=-1 +kerning first=73 second=269 amount=-1 +kerning first=8220 second=333 amount=-1 +kerning first=1049 second=1105 amount=-1 +kerning first=370 second=231 amount=-1 +kerning first=1060 second=1041 amount=-1 +kerning first=321 second=328 amount=-1 +kerning first=206 second=225 amount=-1 +kerning first=298 second=231 amount=-1 +kerning first=1040 second=1098 amount=-1 +kerning first=226 second=371 amount=-1 +kerning first=278 second=225 amount=-1 +kerning first=73 second=117 amount=-1 +kerning first=84 second=196 amount=-3 +kerning first=356 second=100 amount=-2 +kerning first=110 second=363 amount=-1 +kerning first=74 second=335 amount=-1 +kerning first=101 second=225 amount=-1 +kerning first=198 second=203 amount=-1 +kerning first=251 second=363 amount=-1 +kerning first=112 second=8217 amount=-1 +kerning first=197 second=218 amount=-2 +kerning first=378 second=46 amount=-1 +kerning first=287 second=363 amount=-1 +kerning first=216 second=8249 amount=-1 +kerning first=210 second=280 amount=-1 +kerning first=323 second=363 amount=-1 +kerning first=1042 second=1024 amount=-1 +kerning first=338 second=378 amount=-1 +kerning first=198 second=46 amount=-1 +kerning first=282 second=280 amount=-1 +kerning first=80 second=115 amount=-1 +kerning first=314 second=225 amount=-1 +kerning first=212 second=8221 amount=-1 +kerning first=234 second=46 amount=-2 +kerning first=262 second=231 amount=-1 +kerning first=350 second=225 amount=-1 +kerning first=71 second=8221 amount=-1 +kerning first=354 second=280 amount=-1 +kerning first=121 second=231 amount=-1 +kerning first=1104 second=1076 amount=-1 +kerning first=76 second=8217 amount=-2 +kerning first=87 second=102 amount=-1 +kerning first=330 second=235 amount=-1 +kerning first=203 second=261 amount=-1 +kerning first=1114 second=1118 amount=-1 +kerning first=195 second=211 amount=-1 +kerning first=366 second=235 amount=-1 +kerning first=1078 second=1118 amount=-1 +kerning first=200 second=210 amount=-1 +kerning first=275 second=261 amount=-1 +kerning first=90 second=211 amount=-1 +kerning first=311 second=261 amount=-1 +kerning first=83 second=367 amount=-1 +kerning first=361 second=8220 amount=-2 +kerning first=375 second=326 amount=-1 +kerning first=350 second=250 amount=-1 +kerning first=1061 second=1092 amount=-1 +kerning first=290 second=296 amount=-1 +kerning first=356 second=235 amount=-1 +kerning first=244 second=112 amount=-1 +kerning first=231 second=326 amount=-1 +kerning first=262 second=86 amount=-1 +kerning first=267 second=326 amount=-1 +kerning first=206 second=250 amount=-1 +kerning first=112 second=8220 amount=-1 +kerning first=303 second=326 amount=-1 +kerning first=314 second=250 amount=-1 +kerning first=290 second=327 amount=-1 +kerning first=76 second=8220 amount=-2 +kerning first=339 second=326 amount=-1 +kerning first=278 second=250 amount=-1 +kerning first=116 second=378 amount=-1 +kerning first=8217 second=120 amount=-1 +kerning first=67 second=112 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=347 second=261 amount=-1 +kerning first=90 second=326 amount=-1 +kerning first=108 second=328 amount=-1 +kerning first=258 second=235 amount=-1 +kerning first=84 second=171 amount=-3 +kerning first=206 second=244 amount=-1 +kerning first=334 second=86 amount=-1 +kerning first=101 second=250 amount=-1 +kerning first=120 second=171 amount=-2 +kerning first=99 second=237 amount=-1 +kerning first=66 second=288 amount=-1 +kerning first=323 second=100 amount=-1 +kerning first=350 second=365 amount=-1 +kerning first=1043 second=1093 amount=-2 +kerning first=201 second=366 amount=-1 +kerning first=365 second=378 amount=-1 +kerning first=314 second=365 amount=-1 +kerning first=278 second=365 amount=-1 +kerning first=311 second=113 amount=-1 +kerning first=262 second=262 amount=-2 +kerning first=85 second=83 amount=-1 +kerning first=216 second=106 amount=-1 +kerning first=206 second=365 amount=-1 +kerning first=1060 second=1113 amount=-1 +kerning first=352 second=112 amount=-1 +kerning first=221 second=378 amount=-2 +kerning first=369 second=171 amount=-1 +kerning first=222 second=76 amount=-1 +kerning first=316 second=112 amount=-1 +kerning first=307 second=353 amount=-1 +kerning first=8250 second=69 amount=-3 +kerning first=280 second=112 amount=-1 +kerning first=262 second=83 amount=-1 +kerning first=222 second=87 amount=-1 +kerning first=264 second=275 amount=-1 +kerning first=298 second=83 amount=-1 +kerning first=258 second=87 amount=-3 +kerning first=354 second=249 amount=-1 +kerning first=204 second=352 amount=-1 +kerning first=334 second=83 amount=-1 +kerning first=288 second=193 amount=-1 +kerning first=74 second=100 amount=-1 +kerning first=192 second=275 amount=-1 +kerning first=370 second=83 amount=-1 +kerning first=282 second=249 amount=-1 +kerning first=203 second=286 amount=-1 +kerning first=199 second=353 amount=-1 +kerning first=207 second=210 amount=-1 +kerning first=45 second=87 amount=-2 +kerning first=1074 second=1091 amount=-1 +kerning first=87 second=275 amount=-2 +kerning first=81 second=87 amount=-1 +kerning first=207 second=288 amount=-1 +kerning first=379 second=203 amount=-1 +kerning first=315 second=288 amount=-1 +kerning first=344 second=210 amount=-1 +kerning first=85 second=262 amount=-1 +kerning first=370 second=114 amount=-1 +kerning first=99 second=324 amount=-1 +kerning first=354 second=364 amount=-1 +kerning first=368 second=339 amount=-1 +kerning first=67 second=84 amount=-1 +kerning first=253 second=233 amount=-1 +kerning first=260 second=339 amount=-1 +kerning first=217 second=233 amount=-1 +kerning first=298 second=334 amount=-1 +kerning first=98 second=289 amount=-1 +kerning first=296 second=339 amount=-1 +kerning first=325 second=233 amount=-1 +kerning first=262 second=114 amount=-1 +kerning first=289 second=233 amount=-1 +kerning first=203 second=289 amount=-1 +kerning first=121 second=114 amount=-1 +kerning first=69 second=249 amount=-1 +kerning first=208 second=84 amount=-1 +kerning first=105 second=249 amount=-1 +kerning first=275 second=289 amount=-1 +kerning first=87 second=99 amount=-2 +kerning first=85 second=234 amount=-1 +kerning first=121 second=234 amount=-1 +kerning first=45 second=205 amount=-3 +kerning first=268 second=274 amount=-1 +kerning first=203 second=110 amount=-1 +kerning first=352 second=84 amount=-1 +kerning first=217 second=379 amount=-1 +kerning first=275 second=110 amount=-1 +kerning first=240 second=237 amount=-1 +kerning first=347 second=110 amount=-1 +kerning first=199 second=350 amount=-1 +kerning first=376 second=274 amount=-1 +kerning first=232 second=187 amount=-1 +kerning first=119 second=339 amount=-1 +kerning first=370 second=234 amount=-1 +kerning first=368 second=369 amount=-1 +kerning first=77 second=212 amount=-1 +kerning first=354 second=277 amount=-2 +kerning first=80 second=260 amount=-2 +kerning first=107 second=111 amount=-1 +kerning first=8220 second=229 amount=-1 +kerning first=262 second=234 amount=-1 +kerning first=268 second=302 amount=-1 +kerning first=298 second=234 amount=-1 +kerning first=66 second=316 amount=-1 +kerning first=102 second=316 amount=1 +kerning first=325 second=264 amount=-1 +kerning first=221 second=260 amount=-3 +kerning first=1025 second=1064 amount=-1 +kerning first=211 second=76 amount=-1 +kerning first=69 second=364 amount=-1 +kerning first=289 second=351 amount=-1 +kerning first=311 second=289 amount=-1 +kerning first=356 second=111 amount=-2 +kerning first=253 second=351 amount=-1 +kerning first=347 second=289 amount=-1 +kerning first=90 second=354 amount=-1 +kerning first=217 second=264 amount=-1 +kerning first=368 second=367 amount=-1 +kerning first=1046 second=1054 amount=-2 +kerning first=325 second=351 amount=-1 +kerning first=362 second=212 amount=-1 +kerning first=84 second=199 amount=-1 +kerning first=195 second=354 amount=-3 +kerning first=112 second=351 amount=-1 +kerning first=296 second=367 amount=-1 +kerning first=8220 second=109 amount=-1 +kerning first=210 second=364 amount=-1 +kerning first=76 second=351 amount=-1 +kerning first=76 second=264 amount=-1 +kerning first=106 second=259 amount=-1 +kerning first=379 second=267 amount=-1 +kerning first=217 second=351 amount=-1 +kerning first=224 second=367 amount=-1 +kerning first=218 second=212 amount=-1 +kerning first=260 second=367 amount=-1 +kerning first=266 second=267 amount=-1 +kerning first=316 second=254 amount=-1 +kerning first=241 second=8249 amount=-1 +kerning first=370 second=111 amount=-1 +kerning first=69 second=264 amount=-1 +kerning first=303 second=351 amount=-1 +kerning first=302 second=267 amount=-1 +kerning first=8222 second=249 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=284 second=377 amount=-1 +kerning first=68 second=45 amount=-1 +kerning first=267 second=351 amount=-1 +kerning first=197 second=361 amount=-1 +kerning first=194 second=267 amount=-1 +kerning first=381 second=257 amount=-1 +kerning first=354 second=367 amount=-1 +kerning first=375 second=351 amount=-1 +kerning first=370 second=44 amount=-3 +kerning first=212 second=377 amount=-1 +kerning first=339 second=351 amount=-1 +kerning first=269 second=361 amount=-1 +kerning first=282 second=367 amount=-1 +kerning first=1027 second=1077 amount=-1 +kerning first=233 second=361 amount=-1 +kerning first=100 second=8249 amount=-1 +kerning first=262 second=111 amount=-1 +kerning first=1063 second=1077 amount=-1 +kerning first=90 second=351 amount=-1 +kerning first=354 second=171 amount=-3 +kerning first=298 second=111 amount=-1 +kerning first=255 second=114 amount=-1 +kerning first=231 second=351 amount=-1 +kerning first=374 second=267 amount=-2 +kerning first=280 second=254 amount=-1 +kerning first=356 second=377 amount=-1 +kerning first=195 second=351 amount=-1 +kerning first=253 second=261 amount=-2 +kerning first=105 second=367 amount=-1 +kerning first=356 second=117 amount=-1 +kerning first=289 second=261 amount=-1 +kerning first=203 second=274 amount=-1 +kerning first=219 second=114 amount=-1 +kerning first=104 second=44 amount=-1 +kerning first=67 second=254 amount=-1 +kerning first=325 second=261 amount=-1 +kerning first=87 second=381 amount=-1 +kerning first=234 second=287 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=103 second=254 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=314 second=244 amount=-1 +kerning first=198 second=287 amount=-1 +kerning first=222 second=344 amount=-1 +kerning first=8220 second=103 amount=-2 +kerning first=8220 second=232 amount=-1 +kerning first=377 second=237 amount=-1 +kerning first=83 second=46 amount=-2 +kerning first=313 second=8249 amount=-1 +kerning first=228 second=121 amount=-1 +kerning first=264 second=381 amount=-1 +kerning first=378 second=287 amount=-1 +kerning first=1059 second=1057 amount=-1 +kerning first=217 second=261 amount=-2 +kerning first=228 second=250 amount=-1 +kerning first=246 second=107 amount=-1 +kerning first=203 second=171 amount=-1 +kerning first=1067 second=1104 amount=-1 +kerning first=192 second=250 amount=-1 +kerning first=1031 second=1104 amount=-1 +kerning first=110 second=347 amount=-1 +kerning first=370 second=240 amount=-1 +kerning first=264 second=250 amount=-1 +kerning first=199 second=378 amount=-1 +kerning first=282 second=107 amount=-1 +kerning first=1086 second=1078 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=69 second=107 amount=-1 +kerning first=8218 second=219 amount=-2 +kerning first=368 second=230 amount=-2 +kerning first=83 second=354 amount=-1 +kerning first=284 second=117 amount=-1 +kerning first=87 second=250 amount=-1 +kerning first=107 second=281 amount=-1 +kerning first=105 second=107 amount=-1 +kerning first=85 second=240 amount=-1 +kerning first=377 second=361 amount=-1 +kerning first=121 second=240 amount=-1 +kerning first=201 second=257 amount=-1 +kerning first=354 second=264 amount=-1 +kerning first=381 second=100 amount=-1 +kerning first=246 second=104 amount=-1 +kerning first=221 second=288 amount=-1 +kerning first=260 second=354 amount=-3 +kerning first=282 second=264 amount=-1 +kerning first=262 second=240 amount=-1 +kerning first=307 second=378 amount=-1 +kerning first=347 second=171 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=199 second=278 amount=-1 +kerning first=332 second=354 amount=-1 +kerning first=377 second=67 amount=-1 +kerning first=298 second=240 amount=-1 +kerning first=255 second=271 amount=-1 +kerning first=323 second=347 amount=-1 +kerning first=97 second=314 amount=-1 +kerning first=217 second=347 amount=-1 +kerning first=291 second=271 amount=-1 +kerning first=379 second=378 amount=-1 +kerning first=278 second=74 amount=-1 +kerning first=251 second=347 amount=-1 +kerning first=321 second=252 amount=-1 +kerning first=287 second=337 amount=-1 +kerning first=199 second=90 amount=-1 +kerning first=310 second=314 amount=-1 +kerning first=113 second=311 amount=-1 +kerning first=90 second=214 amount=-1 +kerning first=274 second=314 amount=-1 +kerning first=222 second=220 amount=-1 +kerning first=200 second=201 amount=-1 +kerning first=382 second=314 amount=-1 +kerning first=81 second=220 amount=-1 +kerning first=213 second=77 amount=-1 +kerning first=317 second=317 amount=-1 +kerning first=195 second=214 amount=-1 +kerning first=346 second=314 amount=-1 +kerning first=225 second=371 amount=-1 +kerning first=302 second=338 amount=-1 +kerning first=8250 second=202 amount=-3 +kerning first=119 second=224 amount=-1 +kerning first=1057 second=1040 amount=-1 +kerning first=68 second=317 amount=-1 +kerning first=83 second=224 amount=-1 +kerning first=317 second=304 amount=-1 +kerning first=258 second=220 amount=-2 +kerning first=72 second=71 amount=-1 +kerning first=379 second=90 amount=-1 +kerning first=286 second=291 amount=-1 +kerning first=1056 second=1108 amount=-1 +kerning first=321 second=77 amount=-1 +kerning first=250 second=291 amount=-1 +kerning first=72 second=337 amount=-1 +kerning first=122 second=318 amount=-1 +kerning first=296 second=224 amount=-1 +kerning first=214 second=291 amount=-1 +kerning first=113 second=324 amount=-1 +kerning first=208 second=97 amount=-1 +kerning first=110 second=44 amount=-1 +kerning first=321 second=213 amount=-1 +kerning first=81 second=84 amount=-1 +kerning first=227 second=318 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=368 second=224 amount=-1 +kerning first=45 second=84 amount=-2 +kerning first=218 second=324 amount=-1 +kerning first=263 second=318 amount=-1 +kerning first=332 second=224 amount=-1 +kerning first=1047 second=1101 amount=-1 +kerning first=8250 second=66 amount=-3 +kerning first=73 second=291 amount=-1 +kerning first=316 second=97 amount=-1 +kerning first=321 second=71 amount=-1 +kerning first=200 second=380 amount=-1 +kerning first=335 second=318 amount=-1 +kerning first=352 second=97 amount=-1 +kerning first=254 second=311 amount=-1 +kerning first=74 second=196 amount=-3 +kerning first=258 second=84 amount=-3 +kerning first=66 second=328 amount=-1 +kerning first=371 second=318 amount=-1 +kerning first=382 second=267 amount=-1 +kerning first=187 second=298 amount=-3 +kerning first=222 second=84 amount=-1 +kerning first=108 second=337 amount=-1 +kerning first=280 second=97 amount=-1 +kerning first=45 second=344 amount=-3 +kerning first=313 second=284 amount=-1 +kerning first=362 second=193 amount=-2 +kerning first=336 second=381 amount=-1 +kerning first=99 second=234 amount=-1 +kerning first=290 second=193 amount=-1 +kerning first=375 second=227 amount=-2 +kerning first=339 second=227 amount=-1 +kerning first=204 second=234 amount=-1 +kerning first=263 second=303 amount=-1 +kerning first=253 second=104 amount=-1 +kerning first=72 second=213 amount=-1 +kerning first=268 second=275 amount=-1 +kerning first=200 second=325 amount=-1 +kerning first=354 second=101 amount=-2 +kerning first=205 second=284 amount=-1 +kerning first=1038 second=1107 amount=-2 +kerning first=281 second=44 amount=-2 +kerning first=222 second=78 amount=-1 +kerning first=254 second=187 amount=-1 +kerning first=245 second=44 amount=-2 +kerning first=362 second=324 amount=-1 +kerning first=272 second=310 amount=-1 +kerning first=90 second=227 amount=-1 +kerning first=85 second=111 amount=-1 +kerning first=304 second=277 amount=-1 +kerning first=201 second=251 amount=-1 +kerning first=1025 second=1067 amount=-1 +kerning first=1069 second=1024 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=45 second=78 amount=-3 +kerning first=81 second=78 amount=-1 +kerning first=376 second=277 amount=-2 +kerning first=303 second=227 amount=-1 +kerning first=86 second=194 amount=-3 +kerning first=122 second=303 amount=-1 +kerning first=196 second=277 amount=-1 +kerning first=267 second=227 amount=-1 +kerning first=45 second=220 amount=-2 +kerning first=195 second=85 amount=-2 +kerning first=231 second=227 amount=-1 +kerning first=1092 second=1093 amount=-1 +kerning first=268 second=277 amount=-1 +kerning first=1056 second=1093 amount=-1 +kerning first=86 second=303 amount=-1 +kerning first=272 second=201 amount=-1 +kerning first=307 second=105 amount=-1 +kerning first=74 second=245 amount=-1 +kerning first=381 second=251 amount=-1 +kerning first=257 second=118 amount=-1 +kerning first=235 second=105 amount=-1 +kerning first=365 second=118 amount=-1 +kerning first=201 second=270 amount=-1 +kerning first=375 second=345 amount=-1 +kerning first=268 second=283 amount=-1 +kerning first=199 second=105 amount=-1 +kerning first=196 second=283 amount=-1 +kerning first=221 second=118 amount=-1 +kerning first=203 second=280 amount=-1 +kerning first=307 second=241 amount=-1 +kerning first=376 second=283 amount=-2 +kerning first=193 second=335 amount=-1 +kerning first=8220 second=87 amount=-1 +kerning first=1063 second=1105 amount=-1 +kerning first=255 second=108 amount=-1 +kerning first=1027 second=1083 amount=-2 +kerning first=76 second=370 amount=-1 +kerning first=304 second=283 amount=-1 +kerning first=213 second=228 amount=-1 +kerning first=291 second=108 amount=-1 +kerning first=381 second=270 amount=-1 +kerning first=108 second=228 amount=-1 +kerning first=235 second=241 amount=-1 +kerning first=72 second=228 amount=-1 +kerning first=88 second=335 amount=-1 +kerning first=363 second=108 amount=-1 +kerning first=199 second=241 amount=-1 +kerning first=90 second=73 amount=-1 +kerning first=381 second=122 amount=-1 +kerning first=219 second=256 amount=-2 +kerning first=331 second=347 amount=-1 +kerning first=269 second=231 amount=-1 +kerning first=379 second=356 amount=-1 +kerning first=321 second=331 amount=-1 +kerning first=197 second=231 amount=-1 +kerning first=377 second=231 amount=-1 +kerning first=275 second=116 amount=-1 +kerning first=325 second=255 amount=-1 +kerning first=1061 second=1073 amount=-1 +kerning first=347 second=116 amount=-1 +kerning first=199 second=356 amount=-1 +kerning first=278 second=362 amount=-1 +kerning first=291 second=111 amount=-1 +kerning first=323 second=81 amount=-1 +kerning first=217 second=255 amount=-1 +kerning first=65 second=362 amount=-2 +kerning first=323 second=245 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=214 second=8249 amount=-1 +kerning first=112 second=255 amount=-1 +kerning first=1047 second=1095 amount=-1 +kerning first=287 second=245 amount=-1 +kerning first=76 second=255 amount=-1 +kerning first=221 second=266 amount=-1 +kerning first=78 second=211 amount=-1 +kerning first=201 second=122 amount=-1 +kerning first=371 second=339 amount=-1 +kerning first=379 second=105 amount=-1 +kerning first=374 second=282 amount=-1 +kerning first=113 second=305 amount=-1 +kerning first=253 second=316 amount=-1 +kerning first=338 second=282 amount=-1 +kerning first=350 second=80 amount=-1 +kerning first=1027 second=1099 amount=-1 +kerning first=323 second=229 amount=-1 +kerning first=218 second=305 amount=-1 +kerning first=74 second=81 amount=-1 +kerning first=70 second=333 amount=-1 +kerning first=266 second=282 amount=-1 +kerning first=1031 second=1092 amount=-1 +kerning first=202 second=217 amount=-1 +kerning first=321 second=65 amount=-1 +kerning first=274 second=217 amount=-1 +kerning first=362 second=305 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=310 second=217 amount=-1 +kerning first=364 second=216 amount=-1 +kerning first=89 second=282 amount=-1 +kerning first=278 second=80 amount=-1 +kerning first=296 second=230 amount=-1 +kerning first=111 second=307 amount=-1 +kerning first=332 second=230 amount=-1 +kerning first=8222 second=367 amount=-1 +kerning first=197 second=346 amount=-2 +kerning first=119 second=230 amount=-2 +kerning first=356 second=281 amount=-2 +kerning first=377 second=346 amount=-1 +kerning first=83 second=230 amount=-1 +kerning first=1059 second=1072 amount=-2 +kerning first=211 second=218 amount=-1 +kerning first=192 second=112 amount=-1 +kerning first=260 second=79 amount=-1 +kerning first=377 second=243 amount=-1 +kerning first=202 second=69 amount=-1 +kerning first=79 second=203 amount=-1 +kerning first=364 second=334 amount=-1 +kerning first=1030 second=1060 amount=-1 +kerning first=368 second=79 amount=-1 +kerning first=197 second=243 amount=-1 +kerning first=65 second=244 amount=-1 +kerning first=296 second=79 amount=-1 +kerning first=356 second=268 amount=-1 +kerning first=269 second=243 amount=-1 +kerning first=74 second=229 amount=-1 +kerning first=8217 second=290 amount=-1 +kerning first=255 second=120 amount=-1 +kerning first=258 second=332 amount=-1 +kerning first=291 second=120 amount=-1 +kerning first=288 second=192 amount=-1 +kerning first=8250 second=314 amount=-1 +kerning first=330 second=332 amount=-1 +kerning first=363 second=120 amount=-1 +kerning first=216 second=192 amount=-2 +kerning first=251 second=229 amount=-1 +kerning first=46 second=8217 amount=-3 +kerning first=67 second=242 amount=-1 +kerning first=287 second=229 amount=-1 +kerning first=366 second=332 amount=-1 +kerning first=220 second=334 amount=-1 +kerning first=219 second=120 amount=-1 +kerning first=103 second=242 amount=-1 +kerning first=231 second=339 amount=-1 +kerning first=1114 second=1090 amount=-1 +kerning first=374 second=279 amount=-2 +kerning first=196 second=289 amount=-1 +kerning first=267 second=339 amount=-1 +kerning first=232 second=289 amount=-1 +kerning first=217 second=102 amount=-1 +kerning first=68 second=192 amount=-2 +kerning first=316 second=242 amount=-1 +kerning first=268 second=289 amount=-1 +kerning first=195 second=339 amount=-1 +kerning first=222 second=229 amount=-1 +kerning first=304 second=289 amount=-1 +kerning first=375 second=339 amount=-1 +kerning first=287 second=232 amount=-1 +kerning first=67 second=106 amount=-1 +kerning first=379 second=99 amount=-1 +kerning first=194 second=279 amount=-1 +kerning first=376 second=289 amount=-2 +kerning first=303 second=339 amount=-1 +kerning first=330 second=229 amount=-1 +kerning first=377 second=89 amount=-1 +kerning first=302 second=279 amount=-1 +kerning first=8222 second=261 amount=-1 +kerning first=323 second=232 amount=-1 +kerning first=366 second=229 amount=-2 +kerning first=1027 second=1096 amount=-1 +kerning first=89 second=119 amount=-1 +kerning first=266 second=279 amount=-1 +kerning first=210 second=379 amount=-1 +kerning first=244 second=106 amount=-1 +kerning first=187 second=282 amount=-3 +kerning first=74 second=232 amount=-1 +kerning first=194 second=119 amount=-2 +kerning first=282 second=379 amount=-1 +kerning first=230 second=119 amount=-1 +kerning first=8216 second=221 amount=-1 +kerning first=1050 second=1059 amount=-1 +kerning first=208 second=106 amount=-1 +kerning first=266 second=119 amount=-1 +kerning first=354 second=379 amount=-1 +kerning first=302 second=119 amount=-1 +kerning first=1061 second=1079 amount=-1 +kerning first=90 second=339 amount=-1 +kerning first=338 second=119 amount=-1 +kerning first=316 second=106 amount=-1 +kerning first=374 second=119 amount=-1 +kerning first=204 second=346 amount=-1 +kerning first=352 second=106 amount=-1 +kerning first=211 second=209 amount=-1 +kerning first=202 second=66 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=317 second=202 amount=-1 +kerning first=221 second=269 amount=-2 +kerning first=1025 second=1076 amount=-1 +kerning first=200 second=316 amount=-1 +kerning first=83 second=82 amount=-1 +kerning first=346 second=66 amount=-1 +kerning first=236 second=316 amount=-1 +kerning first=274 second=66 amount=-1 +kerning first=195 second=79 amount=-1 +kerning first=274 second=205 amount=-1 +kerning first=77 second=199 amount=-1 +kerning first=251 second=259 amount=-1 +kerning first=8217 second=281 amount=-2 +kerning first=81 second=72 amount=-1 +kerning first=346 second=205 amount=-1 +kerning first=222 second=72 amount=-1 +kerning first=220 second=216 amount=-1 +kerning first=218 second=199 amount=-1 +kerning first=197 second=89 amount=-3 +kerning first=256 second=216 amount=-1 +kerning first=81 second=229 amount=-1 +kerning first=105 second=8217 amount=-1 +kerning first=317 second=192 amount=-1 +kerning first=117 second=229 amount=-1 +kerning first=202 second=205 amount=-1 +kerning first=210 second=8217 amount=-1 +kerning first=201 second=282 amount=-1 +kerning first=362 second=199 amount=-1 +kerning first=45 second=229 amount=-1 +kerning first=246 second=8217 amount=-1 +kerning first=232 second=103 amount=-1 +kerning first=122 second=46 amount=-1 +kerning first=196 second=286 amount=-1 +kerning first=330 second=226 amount=-1 +kerning first=192 second=353 amount=-1 +kerning first=379 second=102 amount=-1 +kerning first=366 second=226 amount=-2 +kerning first=103 second=245 amount=-1 +kerning first=263 second=46 amount=-1 +kerning first=381 second=382 amount=-1 +kerning first=199 second=102 amount=-1 +kerning first=363 second=8221 amount=-2 +kerning first=316 second=245 amount=-1 +kerning first=8220 second=248 amount=-1 +kerning first=235 second=102 amount=-1 +kerning first=45 second=72 amount=-3 +kerning first=1070 second=1083 amount=-1 +kerning first=86 second=46 amount=-3 +kerning first=84 second=296 amount=-1 +kerning first=208 second=103 amount=-1 +kerning first=321 second=219 amount=-1 +kerning first=290 second=45 amount=-1 +kerning first=344 second=316 amount=-1 +kerning first=217 second=252 amount=-1 +kerning first=330 second=335 amount=-1 +kerning first=8250 second=317 amount=-3 +kerning first=380 second=316 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=196 second=213 amount=-1 +kerning first=362 second=45 amount=-3 +kerning first=366 second=335 amount=-1 +kerning first=45 second=226 amount=-1 +kerning first=67 second=103 amount=-1 +kerning first=289 second=252 amount=-1 +kerning first=81 second=226 amount=-1 +kerning first=67 second=245 amount=-1 +kerning first=221 second=200 amount=-1 +kerning first=117 second=226 amount=-1 +kerning first=363 second=259 amount=-1 +kerning first=67 second=381 amount=-1 +kerning first=76 second=252 amount=-1 +kerning first=222 second=226 amount=-1 +kerning first=258 second=335 amount=-1 +kerning first=278 second=356 amount=-1 +kerning first=211 second=206 amount=-1 +kerning first=67 second=369 amount=-1 +kerning first=255 second=259 amount=-2 +kerning first=219 second=259 amount=-2 +kerning first=228 second=375 amount=-1 +kerning first=370 second=246 amount=-1 +kerning first=327 second=259 amount=-1 +kerning first=354 second=116 amount=-1 +kerning first=374 second=122 amount=-2 +kerning first=235 second=253 amount=-1 +kerning first=103 second=369 amount=-1 +kerning first=291 second=259 amount=-1 +kerning first=352 second=103 amount=-1 +kerning first=325 second=252 amount=-1 +kerning first=298 second=246 amount=-1 +kerning first=78 second=259 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=65 second=356 amount=-3 +kerning first=316 second=103 amount=-1 +kerning first=1043 second=1075 amount=-1 +kerning first=77 second=45 amount=-2 +kerning first=262 second=246 amount=-1 +kerning first=217 second=241 amount=-1 +kerning first=280 second=103 amount=-1 +kerning first=218 second=45 amount=-3 +kerning first=244 second=103 amount=-1 +kerning first=381 second=109 amount=-1 +kerning first=8220 second=378 amount=-1 +kerning first=121 second=246 amount=-1 +kerning first=199 second=362 amount=-1 +kerning first=264 second=266 amount=-2 +kerning first=85 second=246 amount=-1 +kerning first=197 second=83 amount=-2 +kerning first=89 second=122 amount=-2 +kerning first=1057 second=1056 amount=-1 +kerning first=192 second=266 amount=-1 +kerning first=89 second=279 amount=-2 +kerning first=338 second=122 amount=-1 +kerning first=45 second=115 amount=-1 +kerning first=202 second=323 amount=-1 +kerning first=201 second=109 amount=-1 +kerning first=302 second=122 amount=-1 +kerning first=87 second=266 amount=-1 +kerning first=87 second=375 amount=-1 +kerning first=350 second=356 amount=-1 +kerning first=266 second=122 amount=-1 +kerning first=316 second=369 amount=-1 +kerning first=274 second=323 amount=-1 +kerning first=201 second=382 amount=-1 +kerning first=377 second=83 amount=-1 +kerning first=230 second=122 amount=-1 +kerning first=260 second=346 amount=-2 +kerning first=280 second=369 amount=-1 +kerning first=204 second=336 amount=-1 +kerning first=87 second=115 amount=-2 +kerning first=8222 second=255 amount=-1 +kerning first=78 second=380 amount=-1 +kerning first=346 second=323 amount=-1 +kerning first=316 second=248 amount=-1 +kerning first=364 second=213 amount=-1 +kerning first=272 second=198 amount=-2 +kerning first=1056 second=1105 amount=-1 +kerning first=192 second=115 amount=-1 +kerning first=219 second=380 amount=-1 +kerning first=264 second=115 amount=-1 +kerning first=233 second=355 amount=-1 +kerning first=103 second=248 amount=-1 +kerning first=45 second=223 amount=-1 +kerning first=119 second=233 amount=-1 +kerning first=197 second=355 amount=-1 +kerning first=211 second=330 amount=-1 +kerning first=8220 second=97 amount=-1 +kerning first=260 second=233 amount=-1 +kerning first=364 second=259 amount=-2 +kerning first=70 second=102 amount=-1 +kerning first=228 second=115 amount=-1 +kerning first=366 second=338 amount=-1 +kerning first=67 second=248 amount=-1 +kerning first=278 second=90 amount=-1 +kerning first=199 second=365 amount=-1 +kerning first=86 second=315 amount=-1 +kerning first=296 second=233 amount=-1 +kerning first=264 second=263 amount=-1 +kerning first=45 second=75 amount=-3 +kerning first=368 second=233 amount=-1 +kerning first=269 second=355 amount=-1 +kerning first=69 second=110 amount=-1 +kerning first=272 second=313 amount=-1 +kerning first=65 second=350 amount=-2 +kerning first=105 second=110 amount=-1 +kerning first=1036 second=1090 amount=-1 +kerning first=256 second=213 amount=-1 +kerning first=8220 second=245 amount=-1 +kerning first=87 second=263 amount=-2 +kerning first=220 second=213 amount=-1 +kerning first=216 second=298 amount=-1 +kerning first=222 second=75 amount=-1 +kerning first=288 second=298 amount=-1 +kerning first=220 second=328 amount=-1 +kerning first=282 second=110 amount=-1 +kerning first=362 second=196 amount=-2 +kerning first=252 second=316 amount=-1 +kerning first=67 second=363 amount=-1 +kerning first=234 second=303 amount=-1 +kerning first=115 second=328 amount=-1 +kerning first=354 second=110 amount=-1 +kerning first=103 second=363 amount=-1 +kerning first=284 second=87 amount=-1 +kerning first=206 second=350 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=108 second=225 amount=-1 +kerning first=364 second=328 amount=-1 +kerning first=205 second=290 amount=-1 +kerning first=1057 second=1050 amount=-1 +kerning first=378 second=303 amount=-1 +kerning first=86 second=200 amount=-1 +kerning first=87 second=260 amount=-3 +kerning first=280 second=363 amount=-1 +kerning first=290 second=196 amount=-1 +kerning first=350 second=350 amount=-1 +kerning first=313 second=290 amount=-1 +kerning first=74 second=235 amount=-1 +kerning first=1090 second=1103 amount=-1 +kerning first=330 second=338 amount=-1 +kerning first=352 second=363 amount=-1 +kerning first=264 second=260 amount=-2 +kerning first=258 second=338 amount=-1 +kerning first=376 second=286 amount=-1 +kerning first=85 second=345 amount=-1 +kerning first=264 second=256 amount=-2 +kerning first=336 second=260 amount=-2 +kerning first=255 second=380 amount=-1 +kerning first=304 second=286 amount=-1 +kerning first=1027 second=1093 amount=-2 +kerning first=291 second=380 amount=-1 +kerning first=332 second=85 amount=-1 +kerning first=335 second=46 amount=-2 +kerning first=213 second=225 amount=-1 +kerning first=121 second=98 amount=-1 +kerning first=8220 second=242 amount=-1 +kerning first=327 second=380 amount=-1 +kerning first=249 second=225 amount=-1 +kerning first=262 second=98 amount=-1 +kerning first=363 second=380 amount=-1 +kerning first=260 second=85 amount=-2 +kerning first=268 second=286 amount=-2 +kerning first=226 second=98 amount=-1 +kerning first=69 second=261 amount=-1 +kerning first=289 second=367 amount=-1 +kerning first=105 second=261 amount=-1 +kerning first=325 second=367 amount=-1 +kerning first=217 second=367 amount=-1 +kerning first=377 second=86 amount=-1 +kerning first=210 second=261 amount=-1 +kerning first=321 second=67 amount=-1 +kerning first=296 second=351 amount=-1 +kerning first=274 second=326 amount=-1 +kerning first=8216 second=333 amount=-1 +kerning first=260 second=351 amount=-1 +kerning first=211 second=327 amount=-1 +kerning first=202 second=211 amount=-1 +kerning first=197 second=352 amount=-2 +kerning first=368 second=351 amount=-1 +kerning first=193 second=210 amount=-1 +kerning first=346 second=326 amount=-1 +kerning first=76 second=367 amount=-1 +kerning first=219 second=377 amount=-1 +kerning first=382 second=326 amount=-1 +kerning first=88 second=210 amount=-1 +kerning first=310 second=211 amount=-1 +kerning first=379 second=250 amount=-1 +kerning first=381 second=112 amount=-1 +kerning first=352 second=366 amount=-1 +kerning first=210 second=8220 amount=-1 +kerning first=202 second=326 amount=-1 +kerning first=280 second=366 amount=-1 +kerning first=274 second=211 amount=-1 +kerning first=105 second=8220 amount=-1 +kerning first=287 second=235 amount=-1 +kerning first=235 second=250 amount=-1 +kerning first=323 second=263 amount=-1 +kerning first=323 second=235 amount=-1 +kerning first=199 second=250 amount=-1 +kerning first=84 second=302 amount=-1 +kerning first=201 second=112 amount=-1 +kerning first=307 second=250 amount=-1 +kerning first=354 second=261 amount=-2 +kerning first=197 second=86 amount=-3 +kerning first=241 second=287 amount=-1 +kerning first=67 second=366 amount=-1 +kerning first=72 second=245 amount=-1 +kerning first=80 second=275 amount=-1 +kerning first=242 second=353 amount=-1 +kerning first=269 second=237 amount=-1 +kerning first=77 second=367 amount=-1 +kerning first=313 second=287 amount=-1 +kerning first=278 second=353 amount=-1 +kerning first=327 second=262 amount=-1 +kerning first=233 second=237 amount=-1 +kerning first=314 second=353 amount=-1 +kerning first=336 second=378 amount=-1 +kerning first=350 second=353 amount=-1 +kerning first=196 second=171 amount=-2 +kerning first=316 second=100 amount=-1 +kerning first=65 second=353 amount=-1 +kerning first=86 second=197 amount=-3 +kerning first=87 second=378 amount=-2 +kerning first=208 second=366 amount=-1 +kerning first=8222 second=107 amount=-1 +kerning first=101 second=353 amount=-1 +kerning first=268 second=171 amount=-2 +kerning first=69 second=379 amount=-1 +kerning first=304 second=171 amount=-2 +kerning first=45 second=198 amount=-2 +kerning first=354 second=113 amount=-2 +kerning first=206 second=353 amount=-1 +kerning first=377 second=352 amount=-1 +kerning first=217 second=249 amount=-1 +kerning first=8216 second=218 amount=-1 +kerning first=76 second=249 amount=-1 +kerning first=374 second=346 amount=-2 +kerning first=78 second=262 amount=-1 +kerning first=325 second=249 amount=-1 +kerning first=73 second=288 amount=-1 +kerning first=366 second=223 amount=-1 +kerning first=1038 second=1104 amount=-2 +kerning first=67 second=100 amount=-1 +kerning first=219 second=262 amount=-1 +kerning first=1043 second=1078 amount=-2 +kerning first=289 second=249 amount=-1 +kerning first=103 second=100 amount=-1 +kerning first=221 second=275 amount=-2 +kerning first=213 second=74 amount=-1 +kerning first=1079 second=1078 amount=-1 +kerning first=75 second=113 amount=-1 +kerning first=208 second=87 amount=-1 +kerning first=104 second=314 amount=-1 +kerning first=67 second=87 amount=-1 +kerning first=381 second=288 amount=-1 +kerning first=245 second=314 amount=-1 +kerning first=8222 second=218 amount=-2 +kerning first=260 second=217 amount=-2 +kerning first=298 second=333 amount=-1 +kerning first=317 second=314 amount=-1 +kerning first=262 second=333 amount=-1 +kerning first=88 second=269 amount=-1 +kerning first=281 second=314 amount=-1 +kerning first=334 second=80 amount=-1 +kerning first=321 second=210 amount=-1 +kerning first=75 second=366 amount=-1 +kerning first=370 second=333 amount=-1 +kerning first=8250 second=192 amount=-2 +kerning first=193 second=269 amount=-1 +kerning first=201 second=288 amount=-1 +kerning first=353 second=314 amount=-1 +kerning first=327 second=281 amount=-1 +kerning first=236 second=307 amount=-1 +kerning first=214 second=198 amount=-2 +kerning first=378 second=98 amount=-1 +kerning first=70 second=262 amount=-1 +kerning first=99 second=224 amount=-1 +kerning first=286 second=198 amount=-1 +kerning first=204 second=224 amount=-1 +kerning first=72 second=210 amount=-1 +kerning first=380 second=307 amount=-1 +kerning first=283 second=255 amount=-1 +kerning first=193 second=369 amount=-1 +kerning first=352 second=326 amount=-1 +kerning first=219 second=281 amount=-1 +kerning first=255 second=281 amount=-1 +kerning first=311 second=243 amount=-1 +kerning first=291 second=281 amount=-1 +kerning first=8220 second=263 amount=-1 +kerning first=1039 second=1054 amount=-1 +kerning first=378 second=120 amount=-1 +kerning first=334 second=73 amount=-1 +kerning first=321 second=203 amount=-1 +kerning first=221 second=229 amount=-2 +kerning first=68 second=75 amount=-1 +kerning first=213 second=203 amount=-1 +kerning first=314 second=118 amount=-1 +kerning first=198 second=120 amount=-1 +kerning first=317 second=75 amount=-1 +kerning first=217 second=101 amount=-1 +kerning first=278 second=118 amount=-1 +kerning first=234 second=120 amount=-1 +kerning first=365 second=229 amount=-1 +kerning first=289 second=101 amount=-1 +kerning first=350 second=118 amount=-1 +kerning first=262 second=73 amount=-1 +kerning first=378 second=99 amount=-1 +kerning first=325 second=101 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=240 second=103 amount=-1 +kerning first=315 second=90 amount=-1 +kerning first=242 second=118 amount=-1 +kerning first=283 second=8220 amount=-1 +kerning first=75 second=106 amount=-1 +kerning first=86 second=68 amount=-1 +kerning first=206 second=118 amount=-1 +kerning first=381 second=267 amount=-1 +kerning first=111 second=106 amount=-1 +kerning first=211 second=8220 amount=-1 +kerning first=324 second=106 amount=-1 +kerning first=121 second=355 amount=-1 +kerning first=352 second=87 amount=-1 +kerning first=65 second=118 amount=-2 +kerning first=106 second=8220 amount=-1 +kerning first=252 second=106 amount=-1 +kerning first=288 second=106 amount=-1 +kerning first=280 second=87 amount=-1 +kerning first=262 second=361 amount=-1 +kerning first=83 second=364 amount=-1 +kerning first=226 second=361 amount=-1 +kerning first=203 second=264 amount=-1 +kerning first=314 second=111 amount=-1 +kerning first=8220 second=291 amount=-2 +kerning first=376 second=212 amount=-1 +kerning first=298 second=361 amount=-1 +kerning first=268 second=212 amount=-2 +kerning first=65 second=111 amount=-1 +kerning first=260 second=364 amount=-2 +kerning first=201 second=316 amount=-1 +kerning first=304 second=212 amount=-1 +kerning first=370 second=361 amount=-1 +kerning first=196 second=212 amount=-1 +kerning first=365 second=257 amount=-1 +kerning first=67 second=66 amount=-1 +kerning first=206 second=111 amount=-1 +kerning first=65 second=8249 amount=-2 +kerning first=199 second=368 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=260 second=104 amount=-1 +kerning first=280 second=66 amount=-1 +kerning first=266 second=335 amount=-1 +kerning first=332 second=364 amount=-1 +kerning first=229 second=44 amount=-1 +kerning first=1039 second=1057 amount=-1 +kerning first=208 second=66 amount=-1 +kerning first=88 second=44 amount=-1 +kerning first=201 second=323 amount=-1 +kerning first=376 second=205 amount=-1 +kerning first=352 second=66 amount=-1 +kerning first=352 second=347 amount=-1 +kerning first=332 second=97 amount=-1 +kerning first=316 second=347 amount=-1 +kerning first=354 second=375 amount=-1 +kerning first=1057 second=1078 amount=-1 +kerning first=374 second=8250 amount=-1 +kerning first=71 second=278 amount=-1 +kerning first=78 second=281 amount=-1 +kerning first=1059 second=1054 amount=-1 +kerning first=381 second=323 amount=-1 +kerning first=268 second=205 amount=-1 +kerning first=212 second=278 amount=-1 +kerning first=67 second=354 amount=-1 +kerning first=214 second=106 amount=-1 +kerning first=264 second=351 amount=-1 +kerning first=296 second=97 amount=-1 +kerning first=316 second=326 amount=-1 +kerning first=365 second=250 amount=-1 +kerning first=284 second=278 amount=-1 +kerning first=208 second=354 amount=-1 +kerning first=196 second=233 amount=-1 +kerning first=356 second=278 amount=-1 +kerning first=103 second=326 amount=-1 +kerning first=257 second=250 amount=-1 +kerning first=67 second=347 amount=-1 +kerning first=1057 second=1099 amount=-1 +kerning first=280 second=354 amount=-1 +kerning first=221 second=250 amount=-1 +kerning first=268 second=233 amount=-1 +kerning first=121 second=333 amount=-1 +kerning first=314 second=378 amount=-1 +kerning first=226 second=45 amount=-1 +kerning first=1059 second=1047 amount=-1 +kerning first=266 second=82 amount=-1 +kerning first=101 second=371 amount=-1 +kerning first=85 second=333 amount=-1 +kerning first=278 second=378 amount=-1 +kerning first=350 second=90 amount=-1 +kerning first=209 second=103 amount=-1 +kerning first=352 second=354 amount=-1 +kerning first=73 second=226 amount=-1 +kerning first=221 second=257 amount=-2 +kerning first=286 second=219 amount=-1 +kerning first=304 second=233 amount=-1 +kerning first=311 second=271 amount=-1 +kerning first=350 second=378 amount=-1 +kerning first=262 second=45 amount=-2 +kerning first=214 second=219 amount=-1 +kerning first=377 second=203 amount=-1 +kerning first=370 second=45 amount=-3 +kerning first=376 second=233 amount=-2 +kerning first=214 second=226 amount=-1 +kerning first=230 second=8250 amount=-1 +kerning first=101 second=378 amount=-1 +kerning first=334 second=45 amount=-1 +kerning first=250 second=226 amount=-1 +kerning first=89 second=8250 amount=-1 +kerning first=242 second=378 amount=-1 +kerning first=112 second=289 amount=-1 +kerning first=286 second=226 amount=-1 +kerning first=206 second=378 amount=-1 +kerning first=104 second=363 amount=-1 +kerning first=296 second=214 amount=-1 +kerning first=88 second=220 amount=-1 +kerning first=268 second=240 amount=-1 +kerning first=260 second=214 amount=-1 +kerning first=221 second=194 amount=-3 +kerning first=209 second=363 amount=-1 +kerning first=79 second=65 amount=-2 +kerning first=368 second=214 amount=-1 +kerning first=281 second=110 amount=-1 +kerning first=196 second=240 amount=-1 +kerning first=200 second=304 amount=-1 +kerning first=281 second=363 amount=-1 +kerning first=106 second=318 amount=-1 +kerning first=266 second=317 amount=-1 +kerning first=317 second=363 amount=-1 +kerning first=220 second=65 amount=-2 +kerning first=370 second=284 amount=-1 +kerning first=353 second=363 amount=-1 +kerning first=304 second=240 amount=-1 +kerning first=1060 second=1063 amount=-1 +kerning first=193 second=220 amount=-2 +kerning first=90 second=334 amount=-1 +kerning first=1024 second=1063 amount=-1 +kerning first=187 second=369 amount=-1 +kerning first=283 second=318 amount=-1 +kerning first=364 second=65 amount=-2 +kerning first=99 second=259 amount=-1 +kerning first=198 second=71 amount=-1 +kerning first=379 second=375 amount=-2 +kerning first=259 second=369 amount=-1 +kerning first=204 second=259 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=1070 second=1030 amount=-1 +kerning first=82 second=369 amount=-1 +kerning first=187 second=116 amount=-1 +kerning first=1113 second=1094 amount=-1 +kerning first=118 second=116 amount=-1 +kerning first=206 second=228 amount=-1 +kerning first=109 second=254 amount=-1 +kerning first=1100 second=1102 amount=-1 +kerning first=1056 second=1055 amount=-1 +kerning first=101 second=228 amount=-1 +kerning first=213 second=374 amount=-1 +kerning first=8222 second=382 amount=-2 +kerning first=250 second=254 amount=-1 +kerning first=378 second=324 amount=-1 +kerning first=1100 second=1074 amount=-1 +kerning first=307 second=375 amount=-1 +kerning first=331 second=369 amount=-1 +kerning first=198 second=324 amount=-1 +kerning first=8220 second=326 amount=-1 +kerning first=295 second=369 amount=-1 +kerning first=86 second=377 amount=-1 +kerning first=235 second=375 amount=-1 +kerning first=381 second=344 amount=-1 +kerning first=367 second=369 amount=-1 +kerning first=234 second=324 amount=-1 +kerning first=67 second=298 amount=-1 +kerning first=277 second=355 amount=-1 +kerning first=201 second=344 amount=-1 +kerning first=1049 second=1108 amount=-1 +kerning first=85 second=284 amount=-1 +kerning first=1086 second=1103 amount=-1 +kerning first=208 second=298 amount=-1 +kerning first=99 second=287 amount=-1 +kerning first=90 second=224 amount=-1 +kerning first=70 second=234 amount=-1 +kerning first=274 second=332 amount=-1 +kerning first=87 second=253 amount=-1 +kerning first=280 second=298 amount=-1 +kerning first=216 second=310 amount=-1 +kerning first=380 second=279 amount=-1 +kerning first=8218 second=371 amount=-1 +kerning first=344 second=279 amount=-1 +kerning first=192 second=253 amount=-1 +kerning first=310 second=332 amount=-1 +kerning first=352 second=298 amount=-1 +kerning first=67 second=249 amount=-1 +kerning first=8217 second=67 amount=-1 +kerning first=74 second=242 amount=-1 +kerning first=288 second=85 amount=-1 +kerning first=240 second=287 amount=-1 +kerning first=8218 second=90 amount=-1 +kerning first=307 second=108 amount=-1 +kerning first=240 second=8217 amount=-1 +kerning first=89 second=313 amount=-1 +kerning first=216 second=85 amount=-1 +kerning first=1049 second=1086 amount=-1 +kerning first=67 second=270 amount=-1 +kerning first=291 second=105 amount=-1 +kerning first=75 second=338 amount=-1 +kerning first=209 second=335 amount=-1 +kerning first=378 second=380 amount=-1 +kerning first=323 second=242 amount=-1 +kerning first=70 second=290 amount=-1 +kerning first=99 second=8217 amount=-1 +kerning first=287 second=242 amount=-1 +kerning first=255 second=105 amount=-1 +kerning first=218 second=382 amount=-1 +kerning first=1046 second=1060 amount=-2 +kerning first=1092 second=1083 amount=-1 +kerning first=199 second=197 amount=-2 +kerning first=198 second=380 amount=-1 +kerning first=352 second=270 amount=-1 +kerning first=193 second=248 amount=-1 +kerning first=234 second=380 amount=-1 +kerning first=264 second=225 amount=-1 +kerning first=88 second=248 amount=-1 +kerning first=105 second=119 amount=-1 +kerning first=350 second=228 amount=-1 +kerning first=199 second=108 amount=-1 +kerning first=208 second=270 amount=-1 +kerning first=314 second=228 amount=-1 +kerning first=379 second=197 amount=-1 +kerning first=304 second=112 amount=-1 +kerning first=1042 second=1049 amount=-1 +kerning first=278 second=228 amount=-1 +kerning first=71 second=74 amount=-1 +kerning first=280 second=270 amount=-1 +kerning first=87 second=225 amount=-2 +kerning first=377 second=315 amount=-1 +kerning first=1056 second=1083 amount=-1 +kerning first=296 second=103 amount=-1 +kerning first=282 second=119 amount=-1 +kerning first=8216 second=283 amount=-1 +kerning first=253 second=122 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=356 second=46 amount=-3 +kerning first=99 second=231 amount=-1 +kerning first=350 second=200 amount=-1 +kerning first=217 second=122 amount=-1 +kerning first=354 second=119 amount=-1 +kerning first=212 second=74 amount=-1 +kerning first=85 second=256 amount=-2 +kerning first=198 second=352 amount=-1 +kerning first=112 second=122 amount=-1 +kerning first=284 second=74 amount=-1 +kerning first=69 second=211 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=336 second=225 amount=-1 +kerning first=352 second=119 amount=-1 +kerning first=248 second=46 amount=-2 +kerning first=262 second=256 amount=-2 +kerning first=325 second=122 amount=-1 +kerning first=284 second=46 amount=-1 +kerning first=8217 second=334 amount=-1 +kerning first=204 second=231 amount=-1 +kerning first=282 second=318 amount=-1 +kerning first=289 second=122 amount=-1 +kerning first=258 second=245 amount=-1 +kerning first=288 second=366 amount=-1 +kerning first=282 second=211 amount=-1 +kerning first=187 second=379 amount=-2 +kerning first=71 second=46 amount=-1 +kerning first=244 second=380 amount=-1 +kerning first=107 second=46 amount=-1 +kerning first=370 second=256 amount=-2 +kerning first=216 second=366 amount=-1 +kerning first=334 second=256 amount=-2 +kerning first=76 second=122 amount=-1 +kerning first=277 second=102 amount=-1 +kerning first=366 second=245 amount=-1 +kerning first=330 second=245 amount=-1 +kerning first=8218 second=118 amount=-2 +kerning first=354 second=211 amount=-1 +kerning first=230 second=112 amount=-1 +kerning first=321 second=86 amount=-1 +kerning first=310 second=107 amount=-1 +kerning first=321 second=313 amount=-1 +kerning first=194 second=112 amount=-1 +kerning first=374 second=81 amount=-1 +kerning first=274 second=107 amount=-1 +kerning first=202 second=171 amount=-1 +kerning first=344 second=216 amount=-1 +kerning first=269 second=105 amount=-1 +kerning first=1061 second=1086 amount=-1 +kerning first=382 second=107 amount=-1 +kerning first=325 second=211 amount=-1 +kerning first=89 second=112 amount=-1 +kerning first=213 second=86 amount=-1 +kerning first=346 second=107 amount=-1 +kerning first=274 second=171 amount=-1 +kerning first=369 second=261 amount=-1 +kerning first=226 second=8221 amount=-1 +kerning first=200 second=324 amount=-1 +kerning first=356 second=105 amount=-1 +kerning first=8249 second=87 amount=-2 +kerning first=202 second=107 amount=-1 +kerning first=97 second=171 amount=-1 +kerning first=89 second=81 amount=-1 +kerning first=334 second=8221 amount=-1 +kerning first=313 second=67 amount=-1 +kerning first=382 second=100 amount=-1 +kerning first=314 second=8217 amount=-2 +kerning first=290 second=209 amount=-1 +kerning first=266 second=336 amount=-2 +kerning first=1098 second=1074 amount=-1 +kerning first=248 second=105 amount=-1 +kerning first=379 second=235 amount=-1 +kerning first=374 second=112 amount=-1 +kerning first=266 second=81 amount=-2 +kerning first=66 second=251 amount=-1 +kerning first=376 second=203 amount=-1 +kerning first=310 second=171 amount=-2 +kerning first=338 second=45 amount=-1 +kerning first=346 second=171 amount=-1 +kerning first=8250 second=75 amount=-3 +kerning first=302 second=112 amount=-1 +kerning first=338 second=81 amount=-1 +kerning first=8249 second=354 amount=-2 +kerning first=382 second=171 amount=-2 +kerning first=313 second=296 amount=-1 +kerning first=266 second=112 amount=-1 +kerning first=302 second=81 amount=-1 +kerning first=310 second=100 amount=-1 +kerning first=379 second=228 amount=-1 +kerning first=108 second=353 amount=-1 +kerning first=377 second=249 amount=-1 +kerning first=207 second=251 amount=-1 +kerning first=84 second=230 amount=-2 +kerning first=269 second=249 amount=-1 +kerning first=89 second=379 amount=-1 +kerning first=305 second=249 amount=-1 +kerning first=8216 second=231 amount=-1 +kerning first=199 second=204 amount=-1 +kerning first=249 second=353 amount=-1 +kerning first=279 second=251 amount=-1 +kerning first=1071 second=1105 amount=-1 +kerning first=195 second=281 amount=-1 +kerning first=73 second=275 amount=-1 +kerning first=351 second=251 amount=-1 +kerning first=266 second=379 amount=-1 +kerning first=379 second=204 amount=-1 +kerning first=290 second=206 amount=-1 +kerning first=315 second=223 amount=-1 +kerning first=72 second=353 amount=-1 +kerning first=364 second=346 amount=-1 +kerning first=304 second=268 amount=-1 +kerning first=382 second=339 amount=-1 +kerning first=76 second=211 amount=-1 +kerning first=369 second=230 amount=-1 +kerning first=66 second=223 amount=-1 +kerning first=268 second=268 amount=-2 +kerning first=298 second=228 amount=-1 +kerning first=376 second=268 amount=-1 +kerning first=310 second=339 amount=-1 +kerning first=8250 second=323 amount=-3 +kerning first=122 second=229 amount=-1 +kerning first=72 second=83 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=338 second=313 amount=-1 +kerning first=233 second=249 amount=-1 +kerning first=374 second=313 amount=-1 +kerning first=219 second=291 amount=-2 +kerning first=290 second=330 amount=-1 +kerning first=213 second=83 amount=-1 +kerning first=266 second=313 amount=-1 +kerning first=377 second=256 amount=-1 +kerning first=120 second=230 amount=-1 +kerning first=196 second=268 amount=-1 +kerning first=217 second=211 amount=-1 +kerning first=86 second=76 amount=-1 +kerning first=377 second=284 amount=-1 +kerning first=80 second=283 amount=-1 +kerning first=230 second=109 amount=-1 +kerning first=333 second=289 amount=-1 +kerning first=321 second=83 amount=-1 +kerning first=274 second=192 amount=-1 +kerning first=369 second=289 amount=-1 +kerning first=338 second=84 amount=-1 +kerning first=89 second=344 amount=-1 +kerning first=375 second=328 amount=-1 +kerning first=202 second=192 amount=-1 +kerning first=263 second=97 amount=-1 +kerning first=1024 second=1091 amount=-1 +kerning first=246 second=187 amount=-1 +kerning first=379 second=232 amount=-1 +kerning first=254 second=237 amount=-1 +kerning first=344 second=244 amount=-1 +kerning first=197 second=284 amount=-1 +kerning first=202 second=199 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=380 second=244 amount=-1 +kerning first=338 second=379 amount=-1 +kerning first=336 second=194 amount=-2 +kerning first=97 second=250 amount=-1 +kerning first=315 second=282 amount=-1 +kerning first=89 second=116 amount=-1 +kerning first=377 second=277 amount=-1 +kerning first=113 second=237 amount=-1 +kerning first=230 second=116 amount=-1 +kerning first=264 second=194 amount=-2 +kerning first=315 second=89 amount=-1 +kerning first=205 second=334 amount=-1 +kerning first=374 second=379 amount=-1 +kerning first=84 second=289 amount=-2 +kerning first=120 second=289 amount=-1 +kerning first=269 second=277 amount=-1 +kerning first=87 second=194 amount=-3 +kerning first=225 second=289 amount=-1 +kerning first=1056 second=1034 amount=-1 +kerning first=79 second=346 amount=-1 +kerning first=8216 second=259 amount=-1 +kerning first=230 second=351 amount=-1 +kerning first=279 second=254 amount=-1 +kerning first=8250 second=103 amount=-1 +kerning first=79 second=374 amount=-1 +kerning first=321 second=121 amount=-1 +kerning first=194 second=351 amount=-1 +kerning first=274 second=72 amount=-1 +kerning first=315 second=254 amount=-1 +kerning first=197 second=277 amount=-1 +kerning first=302 second=351 amount=-1 +kerning first=351 second=254 amount=-1 +kerning first=249 second=121 amount=-1 +kerning first=266 second=351 amount=-1 +kerning first=72 second=350 amount=-1 +kerning first=288 second=325 amount=-1 +kerning first=102 second=254 amount=2 +kerning first=382 second=367 amount=-1 +kerning first=1089 second=1095 amount=-1 +kerning first=321 second=350 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=274 second=367 amount=-1 +kerning first=1053 second=1095 amount=-1 +kerning first=213 second=350 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=310 second=367 amount=-1 +kerning first=89 second=351 amount=-2 +kerning first=233 second=305 amount=-1 +kerning first=202 second=367 amount=-1 +kerning first=122 second=117 amount=-1 +kerning first=315 second=213 amount=-1 +kerning first=338 second=344 amount=-1 +kerning first=274 second=199 amount=-1 +kerning first=274 second=79 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=374 second=344 amount=-1 +kerning first=97 second=367 amount=-1 +kerning first=227 second=117 amount=-1 +kerning first=269 second=305 amount=-1 +kerning first=67 second=260 amount=-2 +kerning first=202 second=79 amount=-1 +kerning first=377 second=76 amount=-1 +kerning first=66 second=254 amount=-1 +kerning first=377 second=305 amount=-1 +kerning first=208 second=260 amount=-2 +kerning first=374 second=351 amount=-2 +kerning first=256 second=374 amount=-3 +kerning first=338 second=351 amount=-1 +kerning first=263 second=117 amount=-1 +kerning first=81 second=192 amount=-2 +kerning first=280 second=260 amount=-1 +kerning first=84 second=261 amount=-2 +kerning first=310 second=79 amount=-1 +kerning first=371 second=117 amount=-1 +kerning first=1061 second=1089 amount=-1 +kerning first=209 second=117 amount=-1 +kerning first=266 second=344 amount=-1 +kerning first=120 second=261 amount=-1 +kerning first=202 second=72 amount=-1 +kerning first=346 second=192 amount=-2 +kerning first=352 second=260 amount=-2 +kerning first=194 second=316 amount=-1 +kerning first=103 second=291 amount=-1 +kerning first=377 second=336 amount=-1 +kerning first=283 second=311 amount=-1 +kerning first=363 second=361 amount=-1 +kerning first=230 second=316 amount=-1 +kerning first=67 second=291 amount=-1 +kerning first=313 second=362 amount=-1 +kerning first=266 second=316 amount=-1 +kerning first=78 second=337 amount=-1 +kerning first=72 second=367 amount=-1 +kerning first=253 second=382 amount=-1 +kerning first=338 second=316 amount=-1 +kerning first=313 second=331 amount=-1 +kerning first=327 second=337 amount=-1 +kerning first=289 second=382 amount=-1 +kerning first=106 second=311 amount=-1 +kerning first=291 second=337 amount=-1 +kerning first=325 second=382 amount=-1 +kerning first=67 second=267 amount=-1 +kerning first=66 second=226 amount=-1 +kerning first=255 second=337 amount=-1 +kerning first=103 second=267 amount=-1 +kerning first=277 second=331 amount=-1 +kerning first=84 second=286 amount=-1 +kerning first=102 second=226 amount=-1 +kerning first=78 second=361 amount=-1 +kerning first=260 second=221 amount=-3 +kerning first=8222 second=119 amount=-2 +kerning first=288 second=310 amount=-1 +kerning first=330 second=266 amount=-1 +kerning first=366 second=266 amount=-1 +kerning first=1114 second=1087 amount=-1 +kerning first=83 second=221 amount=-1 +kerning first=258 second=266 amount=-1 +kerning first=1042 second=1056 amount=-1 +kerning first=1070 second=1037 amount=-1 +kerning first=219 second=361 amount=-1 +kerning first=111 second=289 amount=-1 +kerning first=327 second=361 amount=-1 +kerning first=291 second=361 amount=-1 +kerning first=199 second=207 amount=-1 +kerning first=377 second=45 amount=-1 +kerning first=283 second=227 amount=-1 +kerning first=377 second=252 amount=-1 +kerning first=374 second=74 amount=-2 +kerning first=211 second=227 amount=-1 +kerning first=337 second=44 amount=-2 +kerning first=197 second=252 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=221 second=201 amount=-1 +kerning first=233 second=252 amount=-1 +kerning first=83 second=104 amount=-1 +kerning first=269 second=252 amount=-1 +kerning first=354 second=246 amount=-1 +kerning first=8216 second=234 amount=-1 +kerning first=305 second=252 amount=-1 +kerning first=80 second=201 amount=-1 +kerning first=213 second=381 amount=-1 +kerning first=382 second=103 amount=-1 +kerning first=112 second=382 amount=-1 +kerning first=213 second=90 amount=-1 +kerning first=207 second=226 amount=-1 +kerning first=346 second=103 amount=-1 +kerning first=8250 second=72 amount=-3 +kerning first=321 second=90 amount=-1 +kerning first=310 second=103 amount=-1 +kerning first=352 second=291 amount=-1 +kerning first=217 second=382 amount=-1 +kerning first=321 second=381 amount=-1 +kerning first=8250 second=363 amount=-1 +kerning first=274 second=103 amount=-1 +kerning first=316 second=291 amount=-1 +kerning first=197 second=336 amount=-1 +kerning first=216 second=317 amount=-1 +kerning first=266 second=84 amount=-1 +kerning first=374 second=109 amount=-1 +kerning first=280 second=291 amount=-1 +kerning first=354 second=103 amount=-2 +kerning first=379 second=207 amount=-1 +kerning first=106 second=227 amount=-1 +kerning first=197 second=45 amount=-2 +kerning first=351 second=226 amount=-1 +kerning first=202 second=103 amount=-1 +kerning first=244 second=291 amount=-1 +kerning first=70 second=227 amount=-1 +kerning first=305 second=45 amount=-1 +kerning first=194 second=84 amount=-3 +kerning first=208 second=291 amount=-1 +kerning first=269 second=45 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=242 second=122 amount=-1 +kerning first=374 second=288 amount=-1 +kerning first=268 second=243 amount=-1 +kerning first=66 second=198 amount=-3 +kerning first=111 second=314 amount=-1 +kerning first=304 second=243 amount=-1 +kerning first=344 second=213 amount=-1 +kerning first=1070 second=1065 amount=-1 +kerning first=75 second=314 amount=-1 +kerning first=83 second=193 amount=-2 +kerning first=266 second=288 amount=-2 +kerning first=282 second=218 amount=-1 +kerning first=338 second=288 amount=-1 +kerning first=316 second=263 amount=-1 +kerning first=328 second=249 amount=-1 +kerning first=302 second=288 amount=-1 +kerning first=252 second=314 amount=-1 +kerning first=196 second=243 amount=-1 +kerning first=8220 second=347 amount=-1 +kerning first=121 second=8249 amount=-2 +kerning first=67 second=263 amount=-1 +kerning first=327 second=365 amount=-1 +kerning first=324 second=314 amount=-1 +kerning first=307 second=115 amount=-1 +kerning first=227 second=120 amount=-1 +kerning first=103 second=263 amount=-1 +kerning first=291 second=365 amount=-1 +kerning first=118 second=316 amount=-1 +kerning first=288 second=78 amount=-1 +kerning first=277 second=303 amount=-1 +kerning first=199 second=115 amount=-1 +kerning first=263 second=120 amount=-1 +kerning first=70 second=224 amount=-1 +kerning first=368 second=193 amount=-2 +kerning first=115 second=331 amount=-1 +kerning first=313 second=303 amount=-1 +kerning first=235 second=115 amount=-1 +kerning first=219 second=365 amount=-1 +kerning first=216 second=78 amount=-1 +kerning first=376 second=243 amount=-2 +kerning first=344 second=269 amount=-1 +kerning first=321 second=353 amount=-1 +kerning first=106 second=224 amount=-1 +kerning first=86 second=120 amount=-1 +kerning first=377 second=73 amount=-1 +kerning first=78 second=365 amount=-1 +kerning first=200 second=213 amount=-1 +kerning first=379 second=115 amount=-1 +kerning first=122 second=120 amount=-1 +kerning first=211 second=224 amount=-1 +kerning first=210 second=83 amount=-1 +kerning first=315 second=198 amount=-1 +kerning first=274 second=75 amount=-1 +kerning first=313 second=324 amount=-1 +kerning first=283 second=224 amount=-1 +kerning first=321 second=118 amount=-1 +kerning first=370 second=8249 amount=-3 +kerning first=255 second=98 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=202 second=75 amount=-1 +kerning first=1045 second=1048 amount=-1 +kerning first=346 second=196 amount=-2 +kerning first=334 second=8249 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=377 second=221 amount=-1 +kerning first=371 second=120 amount=-1 +kerning first=226 second=8249 amount=-1 +kerning first=377 second=280 amount=-1 +kerning first=199 second=235 amount=-1 +kerning first=332 second=221 amount=-1 +kerning first=122 second=328 amount=-1 +kerning first=346 second=75 amount=-1 +kerning first=262 second=8249 amount=-2 +kerning first=1045 second=1076 amount=-1 +kerning first=249 second=118 amount=-1 +kerning first=86 second=328 amount=-1 +kerning first=260 second=101 amount=-1 +kerning first=8222 second=122 amount=-2 +kerning first=350 second=115 amount=-1 +kerning first=371 second=328 amount=-1 +kerning first=45 second=325 amount=-3 +kerning first=296 second=101 amount=-1 +kerning first=89 second=99 amount=-2 +kerning first=81 second=325 amount=-1 +kerning first=274 second=196 amount=-1 +kerning first=1056 second=1031 amount=-1 +kerning first=310 second=370 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=368 second=101 amount=-1 +kerning first=70 second=283 amount=-1 +kerning first=274 second=370 amount=-1 +kerning first=354 second=218 amount=-1 +kerning first=72 second=118 amount=-1 +kerning first=263 second=328 amount=-1 +kerning first=236 second=241 amount=-1 +kerning first=217 second=109 amount=-1 +kerning first=222 second=325 amount=-1 +kerning first=291 second=98 amount=-1 +kerning first=379 second=241 amount=-1 +kerning first=363 second=98 amount=-1 +kerning first=269 second=263 amount=-1 +kerning first=317 second=338 amount=-1 +kerning first=362 second=283 amount=-1 +kerning first=77 second=290 amount=-1 +kerning first=99 second=8220 amount=-1 +kerning first=1024 second=1045 amount=-1 +kerning first=278 second=108 amount=-1 +kerning first=366 second=241 amount=-1 +kerning first=317 second=85 amount=-1 +kerning first=1060 second=1045 amount=-1 +kerning first=242 second=108 amount=-1 +kerning first=1027 second=1114 amount=-1 +kerning first=209 second=338 amount=-1 +kerning first=350 second=108 amount=-1 +kerning first=314 second=289 amount=-1 +kerning first=75 second=335 amount=-1 +kerning first=72 second=363 amount=-1 +kerning first=314 second=108 amount=-1 +kerning first=8217 second=365 amount=-1 +kerning first=83 second=196 amount=-2 +kerning first=277 second=380 amount=-1 +kerning first=90 second=193 amount=-1 +kerning first=313 second=380 amount=-1 +kerning first=1060 second=1038 amount=-1 +kerning first=65 second=368 amount=-2 +kerning first=206 second=115 amount=-1 +kerning first=353 second=345 amount=-1 +kerning first=330 second=248 amount=-1 +kerning first=352 second=352 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=100 second=380 amount=-1 +kerning first=371 second=331 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=45 second=241 amount=-1 +kerning first=258 second=248 amount=-1 +kerning first=263 second=331 amount=-1 +kerning first=70 second=286 amount=-1 +kerning first=314 second=115 amount=-1 +kerning first=1046 second=1113 amount=-1 +kerning first=278 second=368 amount=-1 +kerning first=242 second=115 amount=-1 +kerning first=67 second=323 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=317 second=78 amount=-1 +kerning first=278 second=115 amount=-1 +kerning first=1024 second=1038 amount=-1 +kerning first=379 second=350 amount=-1 +kerning first=86 second=331 amount=-1 +kerning first=240 second=255 amount=-1 +kerning first=65 second=210 amount=-1 +kerning first=106 second=252 amount=-1 +kerning first=204 second=255 amount=-1 +kerning first=213 second=200 amount=-1 +kerning first=208 second=323 amount=-1 +kerning first=99 second=255 amount=-1 +kerning first=350 second=368 amount=-1 +kerning first=8217 second=324 amount=-1 +kerning first=1042 second=1052 amount=-1 +kerning first=280 second=323 amount=-1 +kerning first=321 second=200 amount=-1 +kerning first=352 second=323 amount=-1 +kerning first=119 second=122 amount=-1 +kerning first=70 second=231 amount=-1 +kerning first=8220 second=260 amount=-4 +kerning first=234 second=328 amount=-1 +kerning first=213 second=207 amount=-1 +kerning first=88 second=245 amount=-1 +kerning first=362 second=290 amount=-1 +kerning first=198 second=328 amount=-1 +kerning first=187 second=366 amount=-2 +kerning first=1072 second=1118 amount=-1 +kerning first=376 second=346 amount=-2 +kerning first=1036 second=1118 amount=-1 +kerning first=321 second=207 amount=-1 +kerning first=82 second=366 amount=-1 +kerning first=86 second=352 amount=-2 +kerning first=378 second=328 amount=-1 +kerning first=311 second=233 amount=-1 +kerning first=218 second=290 amount=-1 +kerning first=283 second=252 amount=-1 +kerning first=218 second=283 amount=-1 +kerning first=1038 second=1073 amount=-2 +kerning first=193 second=245 amount=-1 +kerning first=113 second=283 amount=-1 +kerning first=332 second=217 amount=-1 +kerning first=218 second=257 amount=-2 +kerning first=331 second=106 amount=-1 +kerning first=367 second=106 amount=-1 +kerning first=316 second=324 amount=-1 +kerning first=259 second=106 amount=-1 +kerning first=377 second=333 amount=-1 +kerning first=295 second=106 amount=-1 +kerning first=82 second=113 amount=-1 +kerning first=197 second=333 amount=-1 +kerning first=321 second=378 amount=-1 +kerning first=370 second=281 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=201 second=87 amount=-1 +kerning first=67 second=288 amount=-2 +kerning first=98 second=107 amount=-1 +kerning first=204 second=262 amount=-1 +kerning first=80 second=198 amount=-2 +kerning first=278 second=366 amount=-1 +kerning first=201 second=347 amount=-1 +kerning first=8218 second=374 amount=-3 +kerning first=262 second=281 amount=-1 +kerning first=1100 second=1078 amount=-1 +kerning first=83 second=217 amount=-1 +kerning first=298 second=281 amount=-1 +kerning first=221 second=198 amount=-3 +kerning first=278 second=210 amount=-1 +kerning first=354 second=243 amount=-2 +kerning first=85 second=281 amount=-1 +kerning first=206 second=210 amount=-1 +kerning first=99 second=361 amount=-1 +kerning first=287 second=326 amount=-1 +kerning first=121 second=281 amount=-1 +kerning first=262 second=274 amount=-1 +kerning first=325 second=230 amount=-1 +kerning first=277 second=120 amount=-1 +kerning first=350 second=203 amount=-1 +kerning first=313 second=120 amount=-1 +kerning first=278 second=203 amount=-1 +kerning first=205 second=99 amount=-1 +kerning first=100 second=120 amount=-1 +kerning first=366 second=248 amount=-1 +kerning first=334 second=274 amount=-1 +kerning first=87 second=229 amount=-2 +kerning first=198 second=377 amount=-1 +kerning first=307 second=118 amount=-1 +kerning first=316 second=267 amount=-1 +kerning first=336 second=229 amount=-1 +kerning first=288 second=75 amount=-1 +kerning first=379 second=118 amount=-1 +kerning first=264 second=229 amount=-1 +kerning first=216 second=75 amount=-1 +kerning first=187 second=106 amount=-1 +kerning first=1049 second=1077 amount=-1 +kerning first=223 second=106 amount=-1 +kerning first=235 second=118 amount=-1 +kerning first=82 second=106 amount=-1 +kerning first=381 second=87 amount=-1 +kerning first=209 second=332 amount=-1 +kerning first=198 second=68 amount=-1 +kerning first=199 second=118 amount=-1 +kerning first=321 second=316 amount=-1 +kerning first=240 second=8220 amount=-1 +kerning first=118 second=106 amount=-1 +kerning first=317 second=332 amount=-1 +kerning first=376 second=209 amount=-1 +kerning first=305 second=8217 amount=-1 +kerning first=106 second=287 amount=-1 +kerning first=249 second=365 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=90 second=199 amount=-1 +kerning first=70 second=287 amount=-1 +kerning first=304 second=264 amount=-1 +kerning first=211 second=287 amount=-1 +kerning first=66 second=219 amount=-2 +kerning first=268 second=264 amount=-2 +kerning first=195 second=199 amount=-1 +kerning first=268 second=209 amount=-1 +kerning first=283 second=287 amount=-1 +kerning first=196 second=264 amount=-1 +kerning first=352 second=224 amount=-1 +kerning first=377 second=347 amount=-1 +kerning first=362 second=234 amount=-1 +kerning first=233 second=8217 amount=-1 +kerning first=355 second=287 amount=-1 +kerning first=269 second=8217 amount=-1 +kerning first=258 second=242 amount=-1 +kerning first=77 second=289 amount=-1 +kerning first=65 second=374 amount=-3 +kerning first=274 second=82 amount=-1 +kerning first=347 second=314 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=330 second=242 amount=-1 +kerning first=65 second=121 amount=-1 +kerning first=195 second=364 amount=-2 +kerning first=218 second=289 amount=-2 +kerning first=346 second=82 amount=-1 +kerning first=310 second=44 amount=-1 +kerning first=254 second=289 amount=-1 +kerning first=88 second=244 amount=-1 +kerning first=352 second=223 amount=-1 +kerning first=366 second=242 amount=-1 +kerning first=76 second=119 amount=-1 +kerning first=290 second=289 amount=-1 +kerning first=112 second=119 amount=-1 +kerning first=326 second=289 amount=-1 +kerning first=290 second=73 amount=-1 +kerning first=366 second=67 amount=-1 +kerning first=278 second=197 amount=-1 +kerning first=257 second=254 amount=-1 +kerning first=362 second=289 amount=-2 +kerning first=8218 second=381 amount=-1 +kerning first=217 second=119 amount=-1 +kerning first=350 second=197 amount=-2 +kerning first=231 second=97 amount=-1 +kerning first=262 second=76 amount=-1 +kerning first=253 second=119 amount=-1 +kerning first=8217 second=99 amount=-2 +kerning first=201 second=354 amount=-1 +kerning first=90 second=97 amount=-1 +kerning first=283 second=230 amount=-1 +kerning first=289 second=119 amount=-1 +kerning first=378 second=117 amount=-1 +kerning first=350 second=121 amount=-1 +kerning first=339 second=97 amount=-1 +kerning first=211 second=230 amount=-1 +kerning first=317 second=72 amount=-1 +kerning first=344 second=275 amount=-1 +kerning first=314 second=121 amount=-1 +kerning first=219 second=74 amount=-1 +kerning first=84 second=205 amount=-1 +kerning first=286 second=250 amount=-1 +kerning first=380 second=275 amount=-1 +kerning first=267 second=97 amount=-1 +kerning first=106 second=230 amount=-1 +kerning first=381 second=354 amount=-1 +kerning first=242 second=121 amount=-1 +kerning first=303 second=97 amount=-1 +kerning first=206 second=121 amount=-1 +kerning first=232 second=311 amount=-1 +kerning first=260 second=107 amount=-1 +kerning first=109 second=250 amount=-1 +kerning first=108 second=378 amount=-1 +kerning first=311 second=240 amount=-1 +kerning first=334 second=366 amount=-1 +kerning first=250 second=250 amount=-1 +kerning first=249 second=378 amount=-1 +kerning first=346 second=72 amount=-1 +kerning first=213 second=378 amount=-1 +kerning first=198 second=117 amount=-1 +kerning first=83 second=107 amount=-1 +kerning first=315 second=219 amount=-1 +kerning first=202 second=89 amount=-1 +kerning first=73 second=250 amount=-1 +kerning first=72 second=378 amount=-1 +kerning first=334 second=76 amount=-1 +kerning first=234 second=117 amount=-1 +kerning first=119 second=107 amount=-1 +kerning first=75 second=116 amount=-1 +kerning first=274 second=363 amount=-1 +kerning first=99 second=318 amount=-1 +kerning first=338 second=302 amount=-1 +kerning first=8220 second=267 amount=-1 +kerning first=310 second=363 amount=-1 +kerning first=379 second=355 amount=-1 +kerning first=346 second=363 amount=-1 +kerning first=334 second=330 amount=-1 +kerning first=356 second=355 amount=-1 +kerning first=266 second=350 amount=-1 +kerning first=286 second=194 amount=-1 +kerning first=382 second=363 amount=-1 +kerning first=187 second=310 amount=-3 +kerning first=240 second=318 amount=-1 +kerning first=8222 second=221 amount=-3 +kerning first=214 second=194 amount=-2 +kerning first=201 second=298 amount=-1 +kerning first=314 second=375 amount=-1 +kerning first=76 second=214 amount=-1 +kerning first=272 second=220 amount=-1 +kerning first=269 second=259 amount=-1 +kerning first=217 second=214 amount=-1 +kerning first=242 second=375 amount=-1 +kerning first=332 second=122 amount=-1 +kerning first=206 second=375 amount=-1 +kerning first=200 second=220 amount=-1 +kerning first=89 second=369 amount=-1 +kerning first=296 second=122 amount=-1 +kerning first=71 second=296 amount=-1 +kerning first=262 second=330 amount=-1 +kerning first=334 second=77 amount=-1 +kerning first=1057 second=1075 amount=-1 +kerning first=233 second=259 amount=-1 +kerning first=262 second=77 amount=-1 +kerning first=350 second=375 amount=-1 +kerning first=344 second=220 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=365 second=253 amount=-1 +kerning first=374 second=369 amount=-1 +kerning first=222 second=304 amount=-1 +kerning first=73 second=251 amount=-1 +kerning first=89 second=76 amount=-1 +kerning first=338 second=369 amount=-1 +kerning first=1043 second=1100 amount=-1 +kerning first=352 second=344 amount=-1 +kerning first=212 second=296 amount=-1 +kerning first=307 second=228 amount=-1 +kerning first=323 second=351 amount=-1 +kerning first=220 second=260 amount=-2 +kerning first=277 second=324 amount=-1 +kerning first=278 second=374 amount=-1 +kerning first=235 second=228 amount=-1 +kerning first=230 second=369 amount=-1 +kerning first=199 second=228 amount=-1 +kerning first=101 second=375 amount=-1 +kerning first=194 second=369 amount=-1 +kerning first=119 second=245 amount=-1 +kerning first=208 second=344 amount=-1 +kerning first=8216 second=255 amount=-1 +kerning first=356 second=296 amount=-1 +kerning first=81 second=304 amount=-1 +kerning first=65 second=375 amount=-1 +kerning first=302 second=369 amount=-1 +kerning first=287 second=273 amount=-1 +kerning first=1052 second=1104 amount=-1 +kerning first=84 second=206 amount=-1 +kerning first=266 second=369 amount=-1 +kerning first=286 second=251 amount=-1 +kerning first=376 second=240 amount=-2 +kerning first=113 second=234 amount=-1 +kerning first=327 second=284 amount=-1 +kerning first=1078 second=1108 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=218 second=234 amount=-1 +kerning first=315 second=218 amount=-1 +kerning first=67 second=344 amount=-1 +kerning first=221 second=253 amount=-1 +kerning first=381 second=298 amount=-1 +kerning first=97 second=363 amount=-1 +kerning first=102 second=279 amount=-1 +kerning first=257 second=253 amount=-1 +kerning first=219 second=284 amount=-1 +kerning first=79 second=83 amount=-1 +kerning first=78 second=284 amount=-1 +kerning first=202 second=363 amount=-1 +kerning first=77 second=234 amount=-1 +kerning first=207 second=279 amount=-1 +kerning first=1057 second=1074 amount=-1 +kerning first=233 second=318 amount=-1 +kerning first=84 second=268 amount=-1 +kerning first=269 second=318 amount=-1 +kerning first=71 second=365 amount=-1 +kerning first=220 second=83 amount=-1 +kerning first=291 second=355 amount=-1 +kerning first=89 second=310 amount=-1 +kerning first=66 second=213 amount=-1 +kerning first=305 second=318 amount=-1 +kerning first=256 second=83 amount=-2 +kerning first=255 second=355 amount=-1 +kerning first=207 second=213 amount=-1 +kerning first=87 second=73 amount=-1 +kerning first=74 second=263 amount=-1 +kerning first=195 second=370 amount=-2 +kerning first=187 second=313 amount=-3 +kerning first=364 second=83 amount=-1 +kerning first=266 second=310 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=66 second=220 amount=-2 +kerning first=1078 second=1105 amount=-1 +kerning first=102 second=275 amount=-1 +kerning first=328 second=353 amount=-1 +kerning first=248 second=303 amount=-1 +kerning first=364 second=353 amount=-1 +kerning first=356 second=365 amount=-1 +kerning first=1070 second=1055 amount=-1 +kerning first=374 second=310 amount=-1 +kerning first=338 second=310 amount=-1 +kerning first=115 second=353 amount=-1 +kerning first=284 second=365 amount=-1 +kerning first=1053 second=1060 amount=-1 +kerning first=356 second=303 amount=-1 +kerning first=101 second=365 amount=-1 +kerning first=379 second=82 amount=-1 +kerning first=220 second=353 amount=-1 +kerning first=256 second=353 amount=-1 +kerning first=240 second=8250 amount=-1 +kerning first=334 second=280 amount=-1 +kerning first=192 second=235 amount=-1 +kerning first=379 second=225 amount=-1 +kerning first=1024 second=1095 amount=-1 +kerning first=71 second=102 amount=-1 +kerning first=264 second=235 amount=-1 +kerning first=1086 second=1093 amount=-1 +kerning first=1073 second=1083 amount=-1 +kerning first=336 second=228 amount=-1 +kerning first=303 second=361 amount=-1 +kerning first=199 second=225 amount=-1 +kerning first=107 second=98 amount=-1 +kerning first=235 second=225 amount=-1 +kerning first=264 second=228 amount=-1 +kerning first=8218 second=375 amount=-1 +kerning first=79 second=350 amount=-1 +kerning first=295 second=353 amount=-1 +kerning first=90 second=363 amount=-1 +kerning first=316 second=273 amount=-1 +kerning first=284 second=102 amount=-1 +kerning first=241 second=46 amount=-1 +kerning first=1114 second=1102 amount=-1 +kerning first=1046 second=1063 amount=-2 +kerning first=277 second=46 amount=-2 +kerning first=195 second=363 amount=-1 +kerning first=87 second=228 amount=-2 +kerning first=356 second=102 amount=-1 +kerning first=107 second=44 amount=-1 +kerning first=256 second=350 amount=-2 +kerning first=99 second=305 amount=-1 +kerning first=267 second=363 amount=-1 +kerning first=303 second=363 amount=-1 +kerning first=103 second=273 amount=-1 +kerning first=8249 second=84 amount=-2 +kerning first=1071 second=1108 amount=-1 +kerning first=339 second=363 amount=-1 +kerning first=8250 second=345 amount=-1 +kerning first=197 second=318 amount=-1 +kerning first=74 second=260 amount=-3 +kerning first=262 second=280 amount=-1 +kerning first=367 second=112 amount=-1 +kerning first=198 second=67 amount=-1 +kerning first=260 second=211 amount=-1 +kerning first=331 second=112 amount=-1 +kerning first=376 second=261 amount=-2 +kerning first=207 second=216 amount=-1 +kerning first=296 second=211 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=295 second=112 amount=-1 +kerning first=68 second=171 amount=-1 +kerning first=104 second=171 amount=-1 +kerning first=303 second=107 amount=-1 +kerning first=223 second=112 amount=-1 +kerning first=267 second=107 amount=-1 +kerning first=187 second=112 amount=-1 +kerning first=381 second=81 amount=-1 +kerning first=8220 second=287 amount=-2 +kerning first=232 second=261 amount=-1 +kerning first=256 second=86 amount=-3 +kerning first=375 second=107 amount=-1 +kerning first=118 second=112 amount=-1 +kerning first=268 second=261 amount=-1 +kerning first=66 second=216 amount=-1 +kerning first=339 second=107 amount=-1 +kerning first=82 second=112 amount=-1 +kerning first=304 second=261 amount=-1 +kerning first=368 second=211 amount=-1 +kerning first=317 second=171 amount=-1 +kerning first=354 second=232 amount=-1 +kerning first=278 second=204 amount=-1 +kerning first=353 second=171 amount=-1 +kerning first=313 second=105 amount=-1 +kerning first=350 second=204 amount=-1 +kerning first=84 second=209 amount=-1 +kerning first=198 second=327 amount=-1 +kerning first=315 second=216 amount=-1 +kerning first=8250 second=82 amount=-3 +kerning first=8218 second=108 amount=-1 +kerning first=375 second=100 amount=-1 +kerning first=277 second=105 amount=-1 +kerning first=209 second=171 amount=-2 +kerning first=201 second=81 amount=-1 +kerning first=1024 second=1098 amount=-1 +kerning first=1043 second=1103 amount=-2 +kerning first=195 second=100 amount=-1 +kerning first=231 second=100 amount=-1 +kerning first=113 second=230 amount=-1 +kerning first=267 second=100 amount=-1 +kerning first=86 second=346 amount=-2 +kerning first=303 second=100 amount=-1 +kerning first=204 second=249 amount=-1 +kerning first=77 second=230 amount=-1 +kerning first=1038 second=1079 amount=-1 +kerning first=90 second=100 amount=-1 +kerning first=207 second=275 amount=-1 +kerning first=1079 second=1103 amount=-1 +kerning first=231 second=107 amount=-1 +kerning first=195 second=107 amount=-1 +kerning first=209 second=339 amount=-1 +kerning first=362 second=230 amount=-2 +kerning first=1060 second=1039 amount=-1 +kerning first=99 second=249 amount=-1 +kerning first=290 second=230 amount=-1 +kerning first=200 second=223 amount=-1 +kerning first=1024 second=1039 amount=-1 +kerning first=83 second=325 amount=-1 +kerning first=67 second=69 amount=-1 +kerning first=317 second=79 amount=-1 +kerning first=375 second=104 amount=-1 +kerning first=201 second=84 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=256 second=89 amount=-3 +kerning first=339 second=104 amount=-1 +kerning first=288 second=201 amount=-1 +kerning first=1061 second=1104 amount=-1 +kerning first=381 second=84 amount=-1 +kerning first=187 second=109 amount=-1 +kerning first=118 second=314 amount=-1 +kerning first=79 second=89 amount=-1 +kerning first=82 second=314 amount=-1 +kerning first=90 second=192 amount=-1 +kerning first=283 second=237 amount=-1 +kerning first=223 second=314 amount=-1 +kerning first=330 second=44 amount=-1 +kerning first=377 second=262 amount=-1 +kerning first=290 second=72 amount=-1 +kerning first=187 second=314 amount=-1 +kerning first=327 second=8249 amount=-2 +kerning first=295 second=314 amount=-1 +kerning first=118 second=109 amount=-1 +kerning first=102 second=269 amount=-1 +kerning first=259 second=314 amount=-1 +kerning first=362 second=227 amount=-2 +kerning first=275 second=187 amount=-1 +kerning first=366 second=44 amount=-3 +kerning first=378 second=245 amount=-1 +kerning first=106 second=237 amount=-1 +kerning first=367 second=314 amount=-1 +kerning first=303 second=104 amount=-1 +kerning first=114 second=8249 amount=-1 +kerning first=370 second=277 amount=-1 +kerning first=331 second=314 amount=-1 +kerning first=192 second=232 amount=-1 +kerning first=267 second=104 amount=-1 +kerning first=272 second=282 amount=-1 +kerning first=356 second=99 amount=-2 +kerning first=117 second=44 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=231 second=104 amount=-1 +kerning first=98 second=380 amount=-1 +kerning first=264 second=232 amount=-1 +kerning first=195 second=104 amount=-1 +kerning first=200 second=282 amount=-1 +kerning first=98 second=187 amount=-1 +kerning first=222 second=44 amount=-1 +kerning first=262 second=277 amount=-1 +kerning first=214 second=344 amount=-1 +kerning first=284 second=302 amount=-1 +kerning first=113 second=224 amount=-1 +kerning first=74 second=326 amount=-1 +kerning first=201 second=351 amount=-1 +kerning first=1038 second=1076 amount=-3 +kerning first=298 second=277 amount=-1 +kerning first=212 second=302 amount=-1 +kerning first=73 second=257 amount=-1 +kerning first=87 second=232 amount=-1 +kerning first=381 second=347 amount=-1 +kerning first=72 second=257 amount=-1 +kerning first=71 second=361 amount=-1 +kerning first=108 second=371 amount=-1 +kerning first=290 second=224 amount=-1 +kerning first=71 second=302 amount=-1 +kerning first=363 second=8249 amount=-1 +kerning first=268 second=202 amount=-1 +kerning first=121 second=277 amount=-1 +kerning first=362 second=224 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=90 second=101 amount=-1 +kerning first=375 second=97 amount=-2 +kerning first=303 second=367 amount=-1 +kerning first=352 second=69 amount=-1 +kerning first=381 second=351 amount=-1 +kerning first=339 second=367 amount=-1 +kerning first=195 second=101 amount=-1 +kerning first=376 second=202 amount=-1 +kerning first=231 second=367 amount=-1 +kerning first=280 second=69 amount=-1 +kerning first=231 second=101 amount=-1 +kerning first=267 second=367 amount=-1 +kerning first=267 second=101 amount=-1 +kerning first=286 second=257 amount=-1 +kerning first=208 second=69 amount=-1 +kerning first=323 second=267 amount=-1 +kerning first=84 second=212 amount=-1 +kerning first=303 second=101 amount=-1 +kerning first=195 second=367 amount=-1 +kerning first=382 second=121 amount=-1 +kerning first=380 second=226 amount=-1 +kerning first=214 second=257 amount=-1 +kerning first=350 second=114 amount=-1 +kerning first=209 second=79 amount=-1 +kerning first=356 second=302 amount=-1 +kerning first=250 second=257 amount=-1 +kerning first=90 second=367 amount=-1 +kerning first=287 second=267 amount=-1 +kerning first=331 second=316 amount=-1 +kerning first=76 second=221 amount=-1 +kerning first=120 second=271 amount=-1 +kerning first=71 second=362 amount=-1 +kerning first=296 second=382 amount=-1 +kerning first=367 second=316 amount=-1 +kerning first=332 second=382 amount=-1 +kerning first=90 second=196 amount=-1 +kerning first=201 second=291 amount=-1 +kerning first=368 second=382 amount=-1 +kerning first=362 second=286 amount=-1 +kerning first=212 second=362 amount=-1 +kerning first=1053 second=1057 amount=-1 +kerning first=74 second=266 amount=-1 +kerning first=119 second=382 amount=-1 +kerning first=303 second=255 amount=-1 +kerning first=200 second=226 amount=-1 +kerning first=1024 second=1042 amount=-1 +kerning first=240 second=311 amount=-1 +kerning first=121 second=337 amount=-1 +kerning first=218 second=286 amount=-1 +kerning first=378 second=331 amount=-1 +kerning first=272 second=226 amount=-1 +kerning first=296 second=119 amount=-1 +kerning first=85 second=337 amount=-1 +kerning first=77 second=286 amount=-1 +kerning first=233 second=8221 amount=-1 +kerning first=203 second=331 amount=-1 +kerning first=109 second=289 amount=-1 +kerning first=82 second=316 amount=-1 +kerning first=198 second=331 amount=-1 +kerning first=298 second=337 amount=-1 +kerning first=197 second=8221 amount=-3 +kerning first=234 second=331 amount=-1 +kerning first=284 second=361 amount=-1 +kerning first=262 second=337 amount=-1 +kerning first=187 second=316 amount=-1 +kerning first=223 second=316 amount=-1 +kerning first=356 second=361 amount=-1 +kerning first=259 second=316 amount=-1 +kerning first=323 second=266 amount=-1 +kerning first=295 second=316 amount=-1 +kerning first=231 second=103 amount=-1 +kerning first=204 second=252 amount=-1 +kerning first=364 second=90 amount=-1 +kerning first=195 second=103 amount=-1 +kerning first=113 second=227 amount=-1 +kerning first=334 second=70 amount=-1 +kerning first=77 second=227 amount=-1 +kerning first=90 second=103 amount=-2 +kerning first=381 second=229 amount=-1 +kerning first=213 second=368 amount=-1 +kerning first=262 second=70 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=290 second=227 amount=-1 +kerning first=278 second=381 amount=-1 +kerning first=85 second=336 amount=-1 +kerning first=321 second=368 amount=-1 +kerning first=99 second=252 amount=-1 +kerning first=286 second=201 amount=-1 +kerning first=218 second=227 amount=-2 +kerning first=79 second=90 amount=-1 +kerning first=214 second=201 amount=-1 +kerning first=99 second=311 amount=-1 +kerning first=262 second=278 amount=-1 +kerning first=262 second=336 amount=-2 +kerning first=256 second=356 amount=-3 +kerning first=311 second=246 amount=-1 +kerning first=83 second=382 amount=-1 +kerning first=105 second=171 amount=-1 +kerning first=334 second=278 amount=-1 +kerning first=8250 second=85 amount=-2 +kerning first=351 second=223 amount=-1 +kerning first=339 second=103 amount=-1 +kerning first=370 second=336 amount=-1 +kerning first=284 second=362 amount=-1 +kerning first=278 second=207 amount=-1 +kerning first=303 second=103 amount=-1 +kerning first=79 second=356 amount=-1 +kerning first=187 second=317 amount=-3 +kerning first=345 second=291 amount=-1 +kerning first=8220 second=273 amount=-1 +kerning first=356 second=362 amount=-1 +kerning first=295 second=103 amount=-1 +kerning first=268 second=246 amount=-1 +kerning first=104 second=369 amount=-1 +kerning first=107 second=45 amount=-2 +kerning first=223 second=103 amount=-1 +kerning first=196 second=246 amount=-1 +kerning first=231 second=382 amount=-1 +kerning first=209 second=369 amount=-1 +kerning first=212 second=45 amount=-1 +kerning first=281 second=116 amount=-1 +kerning first=267 second=382 amount=-1 +kerning first=118 second=103 amount=-2 +kerning first=1070 second=1043 amount=-1 +kerning first=80 second=72 amount=-1 +kerning first=284 second=45 amount=-1 +kerning first=73 second=253 amount=-1 +kerning first=113 second=259 amount=-1 +kerning first=82 second=363 amount=-1 +kerning first=109 second=253 amount=-1 +kerning first=356 second=45 amount=-3 +kerning first=90 second=382 amount=-1 +kerning first=1046 second=1089 amount=-1 +kerning first=267 second=122 amount=-1 +kerning first=317 second=109 amount=-1 +kerning first=187 second=363 amount=-1 +kerning first=231 second=122 amount=-1 +kerning first=281 second=109 amount=-1 +kerning first=200 second=266 amount=-1 +kerning first=330 second=367 amount=-1 +kerning first=1118 second=1089 amount=-1 +kerning first=8250 second=364 amount=-2 +kerning first=8218 second=117 amount=-1 +kerning first=259 second=363 amount=-1 +kerning first=1024 second=1076 amount=-1 +kerning first=108 second=375 amount=-1 +kerning first=1082 second=1089 amount=-1 +kerning first=353 second=109 amount=-1 +kerning first=295 second=363 amount=-1 +kerning first=198 second=65 amount=-1 +kerning first=352 second=8250 amount=-1 +kerning first=317 second=369 amount=-1 +kerning first=331 second=363 amount=-1 +kerning first=377 second=226 amount=-1 +kerning first=356 second=364 amount=-1 +kerning first=303 second=382 amount=-1 +kerning first=86 second=362 amount=-1 +kerning first=375 second=122 amount=-1 +kerning first=353 second=116 amount=-1 +kerning first=313 second=356 amount=-1 +kerning first=367 second=363 amount=-1 +kerning first=315 second=67 amount=-1 +kerning first=8250 second=357 amount=-1 +kerning first=339 second=382 amount=-1 +kerning first=321 second=375 amount=-1 +kerning first=264 second=102 amount=-1 +kerning first=339 second=122 amount=-1 +kerning first=71 second=45 amount=-1 +kerning first=8250 second=104 amount=-1 +kerning first=375 second=382 amount=-1 +kerning first=353 second=369 amount=-1 +kerning first=331 second=103 amount=-1 +kerning first=249 second=375 amount=-1 +kerning first=82 second=370 amount=-1 +kerning first=263 second=355 amount=-1 +kerning first=321 second=115 amount=-1 +kerning first=83 second=76 amount=-1 +kerning first=8250 second=97 amount=-1 +kerning first=187 second=370 amount=-2 +kerning first=78 second=336 amount=-1 +kerning first=249 second=115 amount=-1 +kerning first=122 second=355 amount=-1 +kerning first=356 second=305 amount=-1 +kerning first=1070 second=1036 amount=-1 +kerning first=1042 second=1062 amount=-1 +kerning first=219 second=336 amount=-1 +kerning first=258 second=279 amount=-1 +kerning first=280 second=284 amount=-1 +kerning first=313 second=89 amount=-1 +kerning first=366 second=279 amount=-1 +kerning first=330 second=279 amount=-1 +kerning first=327 second=336 amount=-1 +kerning first=321 second=108 amount=-1 +kerning first=250 second=253 amount=-1 +kerning first=73 second=232 amount=-1 +kerning first=1042 second=1055 amount=-1 +kerning first=1100 second=1103 amount=-1 +kerning first=376 second=246 amount=-1 +kerning first=89 second=66 amount=-1 +kerning first=75 second=332 amount=-1 +kerning first=304 second=246 amount=-1 +kerning first=1024 second=1048 amount=-1 +kerning first=73 second=225 amount=-1 +kerning first=82 second=335 amount=-1 +kerning first=1053 second=1086 amount=-1 +kerning first=118 second=335 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=376 second=218 amount=-1 +kerning first=362 second=231 amount=-1 +kerning first=313 second=328 amount=-1 +kerning first=1071 second=1072 amount=-1 +kerning first=214 second=225 amount=-1 +kerning first=66 second=344 amount=-2 +kerning first=351 second=104 amount=-1 +kerning first=249 second=108 amount=-1 +kerning first=280 second=192 amount=-1 +kerning first=380 second=273 amount=-1 +kerning first=254 second=8217 amount=-1 +kerning first=86 second=102 amount=-1 +kerning first=88 second=242 amount=-1 +kerning first=290 second=8217 amount=-1 +kerning first=122 second=102 amount=-1 +kerning first=76 second=196 amount=-1 +kerning first=199 second=203 amount=-1 +kerning first=326 second=8217 amount=-2 +kerning first=193 second=242 amount=-1 +kerning first=77 second=231 amount=-1 +kerning first=262 second=46 amount=-1 +kerning first=86 second=355 amount=-1 +kerning first=268 second=218 amount=-1 +kerning first=106 second=8221 amount=-1 +kerning first=286 second=225 amount=-1 +kerning first=290 second=280 amount=-1 +kerning first=113 second=8217 amount=-1 +kerning first=218 second=231 amount=-1 +kerning first=72 second=115 amount=-1 +kerning first=196 second=218 amount=-2 +kerning first=370 second=46 amount=-3 +kerning first=204 second=286 amount=-1 +kerning first=108 second=115 amount=-1 +kerning first=73 second=279 amount=-1 +kerning first=1042 second=1083 amount=-1 +kerning first=85 second=46 amount=-3 +kerning first=371 second=102 amount=-1 +kerning first=262 second=67 amount=-2 +kerning first=196 second=211 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=121 second=46 amount=-3 +kerning first=199 second=210 amount=-2 +kerning first=283 second=8221 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=226 second=46 amount=-1 +kerning first=211 second=8221 amount=-1 +kerning first=90 second=122 amount=-1 +kerning first=224 second=119 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=260 second=119 amount=-2 +kerning first=317 second=81 amount=-1 +kerning first=1056 second=1049 amount=-1 +kerning first=344 second=266 amount=-1 +kerning first=263 second=102 amount=-1 +kerning first=376 second=211 amount=-1 +kerning first=380 second=245 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=268 second=211 amount=-2 +kerning first=344 second=245 amount=-1 +kerning first=304 second=211 amount=-1 +kerning first=368 second=119 amount=-1 +kerning first=230 second=311 amount=-1 +kerning first=214 second=204 amount=-1 +kerning first=326 second=252 amount=-1 +kerning first=362 second=252 amount=-1 +kerning first=286 second=204 amount=-1 +kerning first=362 second=259 amount=-2 +kerning first=277 second=328 amount=-1 +kerning first=77 second=252 amount=-1 +kerning first=113 second=252 amount=-1 +kerning first=45 second=307 amount=-1 +kerning first=74 second=269 amount=-1 +kerning first=1079 second=1118 amount=-1 +kerning first=218 second=252 amount=-1 +kerning first=298 second=67 amount=-1 +kerning first=364 second=378 amount=-1 +kerning first=84 second=262 amount=-1 +kerning first=382 second=113 amount=-1 +kerning first=287 second=269 amount=-1 +kerning first=274 second=366 amount=-1 +kerning first=378 second=365 amount=-1 +kerning first=74 second=288 amount=-1 +kerning first=66 second=250 amount=-1 +kerning first=310 second=113 amount=-1 +kerning first=378 second=353 amount=-1 +kerning first=120 second=249 amount=-1 +kerning first=202 second=366 amount=-1 +kerning first=88 second=263 amount=-1 +kerning first=323 second=269 amount=-1 +kerning first=275 second=378 amount=-1 +kerning first=220 second=378 amount=-1 +kerning first=260 second=171 amount=-2 +kerning first=324 second=112 amount=-1 +kerning first=338 second=87 amount=-1 +kerning first=198 second=353 amount=-1 +kerning first=234 second=365 amount=-1 +kerning first=332 second=171 amount=-1 +kerning first=252 second=112 amount=-1 +kerning first=234 second=353 amount=-1 +kerning first=198 second=365 amount=-1 +kerning first=368 second=171 amount=-3 +kerning first=346 second=366 amount=-1 +kerning first=75 second=100 amount=-1 +kerning first=323 second=288 amount=-1 +kerning first=272 second=366 amount=-1 +kerning first=194 second=87 amount=-3 +kerning first=1045 second=1054 amount=-1 +kerning first=212 second=352 amount=-1 +kerning first=193 second=275 amount=-1 +kerning first=379 second=210 amount=-1 +kerning first=76 second=192 amount=-1 +kerning first=284 second=352 amount=-1 +kerning first=194 second=354 amount=-3 +kerning first=88 second=275 amount=-1 +kerning first=328 second=121 amount=-1 +kerning first=356 second=352 amount=-2 +kerning first=8217 second=361 amount=-1 +kerning first=264 second=198 amount=-2 +kerning first=121 second=97 amount=-2 +kerning first=220 second=380 amount=-1 +kerning first=8217 second=193 amount=-3 +kerning first=106 second=249 amount=-1 +kerning first=288 second=379 amount=-1 +kerning first=70 second=8249 amount=-2 +kerning first=369 second=8220 amount=-2 +kerning first=102 second=248 amount=-1 +kerning first=336 second=198 amount=-2 +kerning first=221 second=223 amount=-1 +kerning first=1093 second=1105 amount=-1 +kerning first=333 second=8220 amount=-1 +kerning first=346 second=364 amount=-1 +kerning first=87 second=198 amount=-3 +kerning first=200 second=75 amount=-1 +kerning first=70 second=289 amount=-1 +kerning first=374 second=338 amount=-1 +kerning first=283 second=249 amount=-1 +kerning first=106 second=289 amount=-1 +kerning first=225 second=8220 amount=-1 +kerning first=79 second=380 amount=-1 +kerning first=354 second=361 amount=-1 +kerning first=115 second=380 amount=-1 +kerning first=211 second=289 amount=-1 +kerning first=352 second=313 amount=-1 +kerning first=120 second=8220 amount=-1 +kerning first=347 second=237 amount=-1 +kerning first=187 second=75 amount=-3 +kerning first=75 second=339 amount=-1 +kerning first=377 second=274 amount=-1 +kerning first=284 second=73 amount=-1 +kerning first=280 second=313 amount=-1 +kerning first=275 second=237 amount=-1 +kerning first=334 second=46 amount=-1 +kerning first=256 second=99 amount=-1 +kerning first=8216 second=256 amount=-4 +kerning first=356 second=73 amount=-1 +kerning first=220 second=99 amount=-1 +kerning first=208 second=313 amount=-1 +kerning first=71 second=73 amount=-1 +kerning first=211 second=8249 amount=-1 +kerning first=67 second=313 amount=-1 +kerning first=1057 second=1105 amount=-1 +kerning first=193 second=263 amount=-1 +kerning first=334 second=327 amount=-1 +kerning first=98 second=237 amount=-1 +kerning first=106 second=8249 amount=-1 +kerning first=268 second=206 amount=-1 +kerning first=216 second=379 amount=-1 +kerning first=212 second=73 amount=-1 +kerning first=364 second=99 amount=-1 +kerning first=83 second=187 amount=-1 +kerning first=260 second=199 amount=-1 +kerning first=198 second=381 amount=-1 +kerning first=203 second=209 amount=-1 +kerning first=69 second=212 amount=-1 +kerning first=296 second=199 amount=-1 +kerning first=120 second=234 amount=-1 +kerning first=377 second=302 amount=-1 +kerning first=368 second=199 amount=-1 +kerning first=236 second=227 amount=-1 +kerning first=187 second=323 amount=-3 +kerning first=1061 second=1113 amount=-1 +kerning first=380 second=339 amount=-1 +kerning first=288 second=72 amount=-1 +kerning first=283 second=289 amount=-1 +kerning first=8217 second=333 amount=-2 +kerning first=252 second=351 amount=-1 +kerning first=84 second=264 amount=-1 +kerning first=355 second=289 amount=-1 +kerning first=310 second=364 amount=-1 +kerning first=77 second=233 amount=-1 +kerning first=274 second=364 amount=-1 +kerning first=354 second=212 amount=-1 +kerning first=70 second=277 amount=-1 +kerning first=111 second=351 amount=-1 +kerning first=288 second=367 amount=-1 +kerning first=220 second=111 amount=-1 +kerning first=202 second=364 amount=-1 +kerning first=113 second=233 amount=-1 +kerning first=282 second=212 amount=-1 +kerning first=324 second=367 amount=-1 +kerning first=266 second=354 amount=-1 +kerning first=106 second=261 amount=-1 +kerning first=218 second=233 amount=-1 +kerning first=87 second=226 amount=-2 +kerning first=252 second=367 amount=-1 +kerning first=338 second=354 amount=-1 +kerning first=315 second=220 amount=-1 +kerning first=211 second=261 amount=-1 +kerning first=69 second=367 amount=-1 +kerning first=229 second=291 amount=-1 +kerning first=380 second=105 amount=-1 +kerning first=202 second=97 amount=-1 +kerning first=338 second=326 amount=-1 +kerning first=193 second=291 amount=-1 +kerning first=324 second=351 amount=-1 +kerning first=374 second=326 amount=-1 +kerning first=362 second=233 amount=-1 +kerning first=264 second=226 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=90 second=110 amount=-1 +kerning first=88 second=291 amount=-1 +kerning first=336 second=226 amount=-1 +kerning first=70 second=261 amount=-1 +kerning first=83 second=171 amount=-1 +kerning first=346 second=97 amount=-1 +kerning first=315 second=250 amount=-1 +kerning first=70 second=267 amount=-1 +kerning first=119 second=171 amount=-2 +kerning first=264 second=83 amount=-1 +kerning first=230 second=326 amount=-1 +kerning first=279 second=250 amount=-1 +kerning first=198 second=86 amount=-1 +kerning first=108 second=289 amount=-1 +kerning first=115 second=378 amount=-1 +kerning first=1042 second=1050 amount=-1 +kerning first=266 second=326 amount=-1 +kerning first=267 second=110 amount=-1 +kerning first=380 second=248 amount=-1 +kerning first=79 second=378 amount=-1 +kerning first=224 second=171 amount=-1 +kerning first=86 second=350 amount=-2 +kerning first=310 second=97 amount=-1 +kerning first=351 second=250 amount=-1 +kerning first=251 second=316 amount=-1 +kerning first=339 second=110 amount=-1 +kerning first=283 second=261 amount=-1 +kerning first=287 second=316 amount=-1 +kerning first=375 second=110 amount=-1 +kerning first=89 second=326 amount=-1 +kerning first=378 second=337 amount=-1 +kerning first=207 second=250 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=210 second=221 amount=-1 +kerning first=81 second=260 amount=-2 +kerning first=1024 second=1057 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=45 second=260 amount=-2 +kerning first=1070 second=1031 amount=-1 +kerning first=80 second=200 amount=-1 +kerning first=249 second=117 amount=-1 +kerning first=69 second=221 amount=-1 +kerning first=222 second=260 amount=-2 +kerning first=262 second=317 amount=-1 +kerning first=321 second=117 amount=-1 +kerning first=1114 second=1081 amount=-1 +kerning first=362 second=264 amount=-1 +kerning first=262 second=290 amount=-2 +kerning first=282 second=214 amount=-1 +kerning first=298 second=290 amount=-1 +kerning first=218 second=240 amount=-1 +kerning first=366 second=260 amount=-2 +kerning first=241 second=98 amount=-1 +kerning first=77 second=240 amount=-1 +kerning first=354 second=214 amount=-1 +kerning first=221 second=207 amount=-1 +kerning first=370 second=290 amount=-1 +kerning first=113 second=240 amount=-1 +kerning first=218 second=264 amount=-1 +kerning first=85 second=290 amount=-1 +kerning first=113 second=271 amount=-1 +kerning first=362 second=240 amount=-1 +kerning first=69 second=214 amount=-1 +kerning first=213 second=377 amount=-1 +kerning first=240 second=118 amount=-1 +kerning first=282 second=221 amount=-1 +kerning first=68 second=364 amount=-1 +kerning first=77 second=264 amount=-1 +kerning first=262 second=89 amount=-1 +kerning first=80 second=207 amount=-1 +kerning first=75 second=84 amount=-1 +kerning first=321 second=377 amount=-1 +kerning first=286 second=220 amount=-1 +kerning first=222 second=298 amount=-1 +kerning first=366 second=291 amount=-2 +kerning first=350 second=194 amount=-2 +kerning first=214 second=220 amount=-1 +kerning first=330 second=291 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=1056 second=1030 amount=-1 +kerning first=216 second=84 amount=-1 +kerning first=120 second=227 amount=-1 +kerning first=313 second=330 amount=-1 +kerning first=240 second=353 amount=-1 +kerning first=368 second=289 amount=-2 +kerning first=258 second=291 amount=-1 +kerning first=121 second=287 amount=-2 +kerning first=84 second=227 amount=-2 +kerning first=338 second=317 amount=-1 +kerning first=1064 second=1077 amount=-1 +kerning first=222 second=291 amount=-1 +kerning first=85 second=287 amount=-2 +kerning first=374 second=317 amount=-1 +kerning first=356 second=324 amount=-1 +kerning first=89 second=317 amount=-1 +kerning first=117 second=291 amount=-1 +kerning first=281 second=97 amount=-1 +kerning first=269 second=311 amount=-1 +kerning first=81 second=291 amount=-1 +kerning first=298 second=287 amount=-1 +kerning first=233 second=311 amount=-1 +kerning first=288 second=84 amount=-1 +kerning first=84 second=234 amount=-2 +kerning first=45 second=291 amount=-1 +kerning first=209 second=97 amount=-1 +kerning first=262 second=287 amount=-1 +kerning first=197 second=311 amount=-1 +kerning first=86 second=90 amount=-1 +kerning first=370 second=287 amount=-2 +kerning first=86 second=381 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=334 second=287 amount=-1 +kerning first=80 second=197 amount=-2 +kerning first=45 second=298 amount=-3 +kerning first=219 second=71 amount=-1 +kerning first=198 second=77 amount=-1 +kerning first=81 second=298 amount=-1 +kerning first=205 second=337 amount=-1 +kerning first=203 second=70 amount=-1 +kerning first=277 second=365 amount=-1 +kerning first=374 second=78 amount=-1 +kerning first=363 second=303 amount=-1 +kerning first=241 second=365 amount=-1 +kerning first=221 second=197 amount=-3 +kerning first=218 second=268 amount=-1 +kerning first=213 second=120 amount=-1 +kerning first=205 second=365 amount=-1 +kerning first=73 second=213 amount=-1 +kerning first=354 second=193 amount=-3 +kerning first=291 second=303 amount=-1 +kerning first=249 second=120 amount=-1 +kerning first=375 second=113 amount=-1 +kerning first=379 second=230 amount=-1 +kerning first=67 second=325 amount=-1 +kerning first=100 second=365 amount=-1 +kerning first=201 second=310 amount=-1 +kerning first=367 second=8217 amount=-2 +kerning first=77 second=268 amount=-1 +kerning first=266 second=78 amount=-1 +kerning first=335 second=353 amount=-1 +kerning first=362 second=243 amount=-1 +kerning first=208 second=325 amount=-1 +kerning first=371 second=353 amount=-1 +kerning first=108 second=120 amount=-1 +kerning first=338 second=85 amount=-1 +kerning first=195 second=113 amount=-1 +kerning first=371 second=118 amount=-1 +kerning first=45 second=270 amount=-3 +kerning first=122 second=353 amount=-1 +kerning first=335 second=118 amount=-1 +kerning first=89 second=78 amount=-1 +kerning first=266 second=85 amount=-1 +kerning first=90 second=113 amount=-1 +kerning first=198 second=74 amount=-1 +kerning first=313 second=70 amount=-1 +kerning first=379 second=201 amount=-1 +kerning first=350 second=227 amount=-1 +kerning first=1056 second=1065 amount=-1 +kerning first=81 second=270 amount=-1 +kerning first=263 second=353 amount=-1 +kerning first=194 second=85 amount=-2 +kerning first=227 second=118 amount=-1 +kerning first=230 second=314 amount=-1 +kerning first=219 second=303 amount=-1 +kerning first=321 second=120 amount=-1 +kerning first=1100 second=1080 amount=-1 +kerning first=303 second=113 amount=-1 +kerning first=194 second=314 amount=-1 +kerning first=255 second=303 amount=-1 +kerning first=89 second=345 amount=-1 +kerning first=89 second=85 amount=-1 +kerning first=267 second=113 amount=-1 +kerning first=8250 second=206 amount=-3 +kerning first=313 second=365 amount=-1 +kerning first=263 second=118 amount=-1 +kerning first=381 second=310 amount=-1 +kerning first=266 second=314 amount=-1 +kerning first=199 second=201 amount=-1 +kerning first=86 second=353 amount=-2 +kerning first=353 second=251 amount=-1 +kerning first=234 second=105 amount=-1 +kerning first=197 second=283 amount=-1 +kerning first=1057 second=1093 amount=-1 +kerning first=381 second=338 amount=-1 +kerning first=1064 second=1108 amount=-1 +kerning first=338 second=314 amount=-1 +kerning first=73 second=248 amount=-1 +kerning first=321 second=380 amount=-1 +kerning first=84 second=224 amount=-2 +kerning first=122 second=118 amount=-1 +kerning first=317 second=324 amount=-1 +kerning first=86 second=118 amount=-1 +kerning first=313 second=98 amount=-1 +kerning first=222 second=270 amount=-1 +kerning first=108 second=380 amount=-1 +kerning first=277 second=98 amount=-1 +kerning first=120 second=224 amount=-1 +kerning first=1100 second=1087 amount=-1 +kerning first=201 second=338 amount=-1 +kerning first=71 second=352 amount=-1 +kerning first=200 second=198 amount=-1 +kerning first=269 second=283 amount=-1 +kerning first=213 second=380 amount=-1 +kerning first=374 second=85 amount=-1 +kerning first=249 second=380 amount=-1 +kerning first=280 second=325 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=1057 second=1108 amount=-1 +kerning first=221 second=228 amount=-2 +kerning first=8250 second=369 amount=-1 +kerning first=75 second=112 amount=-1 +kerning first=352 second=325 amount=-1 +kerning first=69 second=193 amount=-1 +kerning first=377 second=283 amount=-1 +kerning first=72 second=380 amount=-1 +kerning first=282 second=193 amount=-1 +kerning first=226 second=318 amount=-1 +kerning first=80 second=235 amount=-1 +kerning first=262 second=318 amount=-1 +kerning first=330 second=263 amount=-1 +kerning first=255 second=331 amount=-1 +kerning first=210 second=193 amount=-2 +kerning first=366 second=263 amount=-1 +kerning first=291 second=331 amount=-1 +kerning first=221 second=235 amount=-1 +kerning first=377 second=281 amount=-1 +kerning first=378 second=237 amount=-1 +kerning first=73 second=216 amount=-1 +kerning first=310 second=101 amount=-1 +kerning first=347 second=230 amount=-1 +kerning first=369 second=255 amount=-1 +kerning first=211 second=256 amount=-2 +kerning first=1067 second=1072 amount=-1 +kerning first=89 second=82 amount=-1 +kerning first=382 second=101 amount=-1 +kerning first=333 second=255 amount=-1 +kerning first=1053 second=1073 amount=-1 +kerning first=275 second=230 amount=-1 +kerning first=311 second=230 amount=-1 +kerning first=269 second=281 amount=-1 +kerning first=289 second=224 amount=-1 +kerning first=261 second=255 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=286 second=76 amount=-1 +kerning first=115 second=108 amount=-1 +kerning first=225 second=255 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=338 second=347 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=120 second=255 amount=-1 +kerning first=99 second=8221 amount=-1 +kerning first=302 second=347 amount=-1 +kerning first=211 second=280 amount=-1 +kerning first=84 second=255 amount=-1 +kerning first=266 second=347 amount=-1 +kerning first=120 second=8217 amount=-1 +kerning first=229 second=251 amount=-1 +kerning first=76 second=205 amount=-1 +kerning first=230 second=347 amount=-1 +kerning first=240 second=8221 amount=-1 +kerning first=120 second=231 amount=-1 +kerning first=194 second=347 amount=-1 +kerning first=378 second=105 amount=-1 +kerning first=111 second=107 amount=-1 +kerning first=89 second=347 amount=-2 +kerning first=328 second=371 amount=-1 +kerning first=252 second=107 amount=-1 +kerning first=84 second=231 amount=-2 +kerning first=97 second=106 amount=-1 +kerning first=212 second=80 amount=-1 +kerning first=75 second=81 amount=-1 +kerning first=266 second=345 amount=-1 +kerning first=284 second=80 amount=-1 +kerning first=327 second=67 amount=-1 +kerning first=69 second=217 amount=-1 +kerning first=256 second=368 amount=-2 +kerning first=374 second=345 amount=-1 +kerning first=198 second=346 amount=-1 +kerning first=310 second=106 amount=-1 +kerning first=1045 second=1045 amount=-1 +kerning first=210 second=217 amount=-1 +kerning first=313 second=68 amount=-1 +kerning first=205 second=333 amount=-1 +kerning first=71 second=80 amount=-1 +kerning first=282 second=217 amount=-1 +kerning first=216 second=256 amount=-2 +kerning first=80 second=204 amount=-1 +kerning first=218 second=243 amount=-1 +kerning first=346 second=106 amount=-1 +kerning first=381 second=249 amount=-1 +kerning first=8217 second=328 amount=-1 +kerning first=382 second=106 amount=-1 +kerning first=356 second=80 amount=-1 +kerning first=362 second=268 amount=-1 +kerning first=221 second=204 amount=-1 +kerning first=70 second=256 amount=-2 +kerning first=251 second=307 amount=-1 +kerning first=334 second=374 amount=-1 +kerning first=77 second=243 amount=-1 +kerning first=8216 second=289 amount=-2 +kerning first=83 second=65 amount=-2 +kerning first=287 second=307 amount=-1 +kerning first=1056 second=1033 amount=-1 +kerning first=113 second=243 amount=-1 +kerning first=201 second=69 amount=-1 +kerning first=310 second=104 amount=-1 +kerning first=310 second=369 amount=-1 +kerning first=219 second=334 amount=-1 +kerning first=70 second=284 amount=-1 +kerning first=274 second=104 amount=-1 +kerning first=274 second=369 amount=-1 +kerning first=288 second=344 amount=-1 +kerning first=382 second=369 amount=-1 +kerning first=120 second=259 amount=-1 +kerning first=251 second=44 amount=-1 +kerning first=202 second=104 amount=-1 +kerning first=346 second=369 amount=-1 +kerning first=84 second=259 amount=-2 +kerning first=368 second=192 amount=-2 +kerning first=327 second=334 amount=-1 +kerning first=382 second=104 amount=-1 +kerning first=332 second=192 amount=-2 +kerning first=74 second=44 amount=-1 +kerning first=1070 second=1034 amount=-1 +kerning first=73 second=244 amount=-1 +kerning first=202 second=369 amount=-1 +kerning first=216 second=344 amount=-1 +kerning first=207 second=229 amount=-1 +kerning first=354 second=217 amount=-1 +kerning first=323 second=279 amount=-1 +kerning first=66 second=229 amount=-1 +kerning first=1100 second=1084 amount=-1 +kerning first=287 second=279 amount=-1 +kerning first=102 second=229 amount=-1 +kerning first=74 second=279 amount=-1 +kerning first=83 second=192 amount=-2 +kerning first=323 second=44 amount=-1 +kerning first=351 second=229 amount=-1 +kerning first=287 second=44 amount=-2 +kerning first=279 second=229 amount=-1 +kerning first=78 second=334 amount=-1 +kerning first=369 second=227 amount=-1 +kerning first=330 second=267 amount=-1 +kerning first=221 second=232 amount=-1 +kerning first=212 second=344 amount=-1 +kerning first=77 second=283 amount=-1 +kerning first=366 second=267 amount=-1 +kerning first=115 second=371 amount=-1 +kerning first=279 second=257 amount=-1 +kerning first=202 second=67 amount=-1 +kerning first=100 second=361 amount=-1 +kerning first=1057 second=1096 amount=-1 +kerning first=313 second=65 amount=-1 +kerning first=255 second=305 amount=-1 +kerning first=336 second=219 amount=-1 +kerning first=219 second=305 amount=-1 +kerning first=207 second=257 amount=-1 +kerning first=205 second=361 amount=-1 +kerning first=66 second=257 amount=-1 +kerning first=264 second=219 amount=-1 +kerning first=244 second=8250 amount=-1 +kerning first=203 second=202 amount=-1 +kerning first=291 second=305 amount=-1 +kerning first=102 second=257 amount=-1 +kerning first=277 second=361 amount=-1 +kerning first=203 second=324 amount=-1 +kerning first=266 second=230 amount=-1 +kerning first=192 second=219 amount=-2 +kerning first=241 second=361 amount=-1 +kerning first=374 second=347 amount=-2 +kerning first=80 second=232 amount=-1 +kerning first=229 second=254 amount=-1 +kerning first=199 second=206 amount=-1 +kerning first=371 second=121 amount=-1 +kerning first=87 second=219 amount=-1 +kerning first=335 second=121 amount=-1 +kerning first=338 second=82 amount=-1 +kerning first=374 second=82 amount=-1 +kerning first=263 second=121 amount=-1 +kerning first=381 second=69 amount=-1 +kerning first=88 second=254 amount=-1 +kerning first=122 second=121 amount=-1 +kerning first=197 second=8217 amount=-3 +kerning first=187 second=66 amount=-3 +kerning first=193 second=254 amount=-1 +kerning first=351 second=257 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=288 second=82 amount=-1 +kerning first=338 second=69 amount=-1 +kerning first=69 second=209 amount=-1 +kerning first=374 second=69 amount=-1 +kerning first=266 second=69 amount=-1 +kerning first=203 second=212 amount=-1 +kerning first=82 second=332 amount=-1 +kerning first=86 second=326 amount=-1 +kerning first=106 second=8217 amount=-1 +kerning first=82 second=79 amount=-1 +kerning first=282 second=209 amount=-1 +kerning first=208 second=230 amount=-1 +kerning first=103 second=316 amount=-1 +kerning first=210 second=209 amount=-1 +kerning first=216 second=82 amount=-1 +kerning first=89 second=69 amount=-1 +kerning first=201 second=66 amount=-1 +kerning first=187 second=72 amount=-3 +kerning first=284 second=76 amount=-1 +kerning first=198 second=89 amount=-1 +kerning first=87 second=216 amount=-1 +kerning first=76 second=199 amount=-1 +kerning first=8217 second=71 amount=-1 +kerning first=381 second=66 amount=-1 +kerning first=212 second=76 amount=-1 +kerning first=8216 second=281 amount=-1 +kerning first=192 second=216 amount=-1 +kerning first=203 second=205 amount=-1 +kerning first=217 second=199 amount=-1 +kerning first=211 second=8217 amount=-1 +kerning first=214 second=229 amount=-1 +kerning first=217 second=192 amount=-2 +kerning first=120 second=347 amount=-1 +kerning first=71 second=76 amount=-1 +kerning first=73 second=229 amount=-1 +kerning first=283 second=8217 amount=-1 +kerning first=202 second=70 amount=-1 +kerning first=1048 second=1077 amount=-1 +kerning first=370 second=67 amount=-1 +kerning first=325 second=199 amount=-1 +kerning first=77 second=287 amount=-1 +kerning first=381 second=326 amount=-1 +kerning first=221 second=226 amount=-2 +kerning first=113 second=8221 amount=-1 +kerning first=313 second=86 amount=-1 +kerning first=1100 second=1099 amount=-1 +kerning first=380 second=242 amount=-1 +kerning first=68 second=257 amount=-1 +kerning first=344 second=242 amount=-1 +kerning first=201 second=326 amount=-1 +kerning first=254 second=8221 amount=-1 +kerning first=365 second=226 amount=-1 +kerning first=290 second=8221 amount=-1 +kerning first=264 second=216 amount=-2 +kerning first=90 second=119 amount=-1 +kerning first=218 second=367 amount=-1 +kerning first=356 second=76 amount=-1 +kerning first=195 second=119 amount=-2 +kerning first=291 second=333 amount=-1 +kerning first=244 second=316 amount=-1 +kerning first=86 second=216 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=1082 second=1092 amount=-1 +kerning first=231 second=119 amount=-1 +kerning first=255 second=333 amount=-1 +kerning first=75 second=103 amount=-1 +kerning first=221 second=219 amount=-1 +kerning first=210 second=202 amount=-1 +kerning first=1118 second=1092 amount=-1 +kerning first=334 second=302 amount=-1 +kerning first=327 second=45 amount=-2 +kerning first=354 second=209 amount=-1 +kerning first=69 second=202 amount=-1 +kerning first=303 second=119 amount=-1 +kerning first=262 second=302 amount=-1 +kerning first=339 second=119 amount=-1 +kerning first=375 second=119 amount=-1 +kerning first=8250 second=367 amount=-1 +kerning first=1042 second=1059 amount=-1 +kerning first=219 second=333 amount=-1 +kerning first=337 second=291 amount=-1 +kerning first=282 second=202 amount=-1 +kerning first=1046 second=1092 amount=-1 +kerning first=382 second=116 amount=-1 +kerning first=364 second=375 amount=-1 +kerning first=346 second=116 amount=-1 +kerning first=382 second=122 amount=-1 +kerning first=66 second=253 amount=-1 +kerning first=328 second=375 amount=-1 +kerning first=283 second=259 amount=-1 +kerning first=346 second=122 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=114 second=45 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=324 second=103 amount=-1 +kerning first=78 second=45 amount=-2 +kerning first=198 second=356 amount=-1 +kerning first=288 second=103 amount=-1 +kerning first=207 second=253 amount=-1 +kerning first=261 second=252 amount=-1 +kerning first=219 second=45 amount=-3 +kerning first=258 second=269 amount=-1 +kerning first=252 second=103 amount=-1 +kerning first=243 second=253 amount=-1 +kerning first=310 second=116 amount=-1 +kerning first=366 second=269 amount=-1 +kerning first=216 second=103 amount=-1 +kerning first=120 second=246 amount=-1 +kerning first=279 second=253 amount=-1 +kerning first=291 second=45 amount=-1 +kerning first=330 second=269 amount=-1 +kerning first=252 second=363 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=315 second=253 amount=-1 +kerning first=369 second=252 amount=-1 +kerning first=211 second=259 amount=-1 +kerning first=288 second=363 amount=-1 +kerning first=1046 second=1086 amount=-1 +kerning first=324 second=369 amount=-1 +kerning first=324 second=363 amount=-1 +kerning first=346 second=382 amount=-1 +kerning first=288 second=369 amount=-1 +kerning first=382 second=382 amount=-1 +kerning first=70 second=259 amount=-1 +kerning first=198 second=362 amount=-1 +kerning first=274 second=122 amount=-1 +kerning first=1053 second=1089 amount=-1 +kerning first=193 second=266 amount=-1 +kerning first=202 second=382 amount=-1 +kerning first=274 second=109 amount=-1 +kerning first=8217 second=331 amount=-1 +kerning first=262 second=327 amount=-1 +kerning first=202 second=122 amount=-1 +kerning first=382 second=109 amount=-1 +kerning first=115 second=375 amount=-1 +kerning first=252 second=369 amount=-1 +kerning first=88 second=266 amount=-1 +kerning first=274 second=382 amount=-1 +kerning first=346 second=109 amount=-1 +kerning first=119 second=97 amount=-2 +kerning first=220 second=115 amount=-1 +kerning first=216 second=370 amount=-1 +kerning first=115 second=115 amount=-1 +kerning first=288 second=370 amount=-1 +kerning first=202 second=109 amount=-1 +kerning first=8217 second=352 amount=-1 +kerning first=328 second=115 amount=-1 +kerning first=364 second=115 amount=-1 +kerning first=88 second=279 amount=-1 +kerning first=234 second=355 amount=-1 +kerning first=356 second=336 amount=-1 +kerning first=256 second=115 amount=-1 +kerning first=1118 second=1086 amount=-1 +kerning first=1082 second=1086 amount=-1 +kerning first=193 second=279 amount=-1 +kerning first=207 second=232 amount=-1 +kerning first=351 second=253 amount=-1 +kerning first=262 second=296 amount=-1 +kerning first=378 second=355 amount=-1 +kerning first=334 second=296 amount=-1 +kerning first=356 second=353 amount=-2 +kerning first=256 second=108 amount=-1 +kerning first=75 second=370 amount=-1 +kerning first=328 second=108 amount=-1 +kerning first=263 second=8249 amount=-1 +kerning first=203 second=206 amount=-1 +kerning first=313 second=8221 amount=-2 +kerning first=334 second=315 amount=-1 +kerning first=187 second=85 amount=-2 +kerning first=262 second=303 amount=-1 +kerning first=82 second=338 amount=-1 +kerning first=1104 second=1113 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=201 second=325 amount=-1 +kerning first=266 second=75 amount=-1 +kerning first=282 second=196 amount=-1 +kerning first=204 second=290 amount=-1 +kerning first=356 second=328 amount=-1 +kerning first=262 second=315 amount=-1 +kerning first=354 second=196 amount=-3 +kerning first=268 second=221 amount=-1 +kerning first=381 second=325 amount=-1 +kerning first=370 second=303 amount=-1 +kerning first=374 second=75 amount=-1 +kerning first=198 second=83 amount=-1 +kerning first=89 second=323 amount=-1 +kerning first=8250 second=122 amount=-3 +kerning first=371 second=380 amount=-1 +kerning first=371 second=98 amount=-1 +kerning first=210 second=196 amount=-2 +kerning first=8217 second=65 amount=-3 +kerning first=365 second=225 amount=-1 +kerning first=85 second=303 amount=-1 +kerning first=263 second=98 amount=-1 +kerning first=363 second=46 amount=-1 +kerning first=1100 second=1093 amount=-1 +kerning first=377 second=286 amount=-1 +kerning first=266 second=323 amount=-1 +kerning first=121 second=303 amount=-1 +kerning first=227 second=98 amount=-1 +kerning first=374 second=323 amount=-1 +kerning first=263 second=380 amount=-1 +kerning first=338 second=323 amount=-1 +kerning first=221 second=225 amount=-2 +kerning first=262 second=226 amount=-1 +kerning first=255 second=311 amount=-1 +kerning first=219 second=46 amount=-3 +kerning first=212 second=77 amount=-1 +kerning first=1050 second=1118 amount=-1 +kerning first=255 second=46 amount=-3 +kerning first=264 second=210 amount=-2 +kerning first=208 second=317 amount=-1 +kerning first=291 second=46 amount=-2 +kerning first=313 second=71 amount=-1 +kerning first=120 second=233 amount=-1 +kerning first=327 second=46 amount=-1 +kerning first=71 second=77 amount=-1 +kerning first=197 second=286 amount=-1 +kerning first=356 second=77 amount=-1 +kerning first=1056 second=1040 amount=-2 +kerning first=1114 second=1080 amount=-1 +kerning first=205 second=71 amount=-1 +kerning first=87 second=210 amount=-1 +kerning first=114 second=46 amount=-2 +kerning first=284 second=77 amount=-1 +kerning first=1105 second=1078 amount=-1 +kerning first=203 second=211 amount=-1 +kerning first=67 second=317 amount=-1 +kerning first=79 second=197 amount=-2 +kerning first=205 second=352 amount=-1 +kerning first=73 second=235 amount=-1 +kerning first=84 second=252 amount=-1 +kerning first=317 second=112 amount=-1 +kerning first=196 second=221 amount=-3 +kerning first=120 second=252 amount=-1 +kerning first=281 second=112 amount=-1 +kerning first=199 second=200 amount=-1 +kerning first=245 second=112 amount=-1 +kerning first=225 second=252 amount=-1 +kerning first=209 second=112 amount=-1 +kerning first=202 second=110 amount=-1 +kerning first=378 second=102 amount=-1 +kerning first=379 second=200 amount=-1 +kerning first=1045 second=1042 amount=-1 +kerning first=363 second=311 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=88 second=228 amount=-1 +kerning first=274 second=110 amount=-1 +kerning first=291 second=311 amount=-1 +kerning first=81 second=196 amount=-2 +kerning first=346 second=110 amount=-1 +kerning first=205 second=353 amount=-1 +kerning first=267 second=171 amount=-1 +kerning first=218 second=262 amount=-1 +kerning first=382 second=110 amount=-1 +kerning first=241 second=353 amount=-1 +kerning first=209 second=113 amount=-1 +kerning first=236 second=250 amount=-1 +kerning first=277 second=353 amount=-1 +kerning first=68 second=366 amount=-1 +kerning first=223 second=291 amount=-1 +kerning first=122 second=249 amount=-1 +kerning first=200 second=250 amount=-1 +kerning first=263 second=378 amount=-1 +kerning first=313 second=353 amount=-1 +kerning first=375 second=171 amount=-2 +kerning first=317 second=366 amount=-1 +kerning first=362 second=262 amount=-1 +kerning first=371 second=365 amount=-1 +kerning first=253 second=289 amount=-2 +kerning first=122 second=378 amount=-1 +kerning first=100 second=353 amount=-1 +kerning first=195 second=171 amount=-2 +kerning first=86 second=378 amount=-2 +kerning first=231 second=171 amount=-1 +kerning first=353 second=112 amount=-1 +kerning first=82 second=354 amount=-1 +kerning first=313 second=352 amount=-1 +kerning first=1038 second=1054 amount=-1 +kerning first=258 second=288 amount=-1 +kerning first=187 second=354 amount=-2 +kerning first=218 second=249 amount=-1 +kerning first=330 second=275 amount=-1 +kerning first=351 second=103 amount=-1 +kerning first=1042 second=1078 amount=-1 +kerning first=366 second=275 amount=-1 +kerning first=187 second=87 amount=-2 +kerning first=77 second=262 amount=-1 +kerning first=1056 second=1052 amount=-1 +kerning first=326 second=249 amount=-1 +kerning first=1082 second=1091 amount=-1 +kerning first=209 second=100 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=344 second=248 amount=-1 +kerning first=1064 second=1105 amount=-1 +kerning first=317 second=364 amount=-1 +kerning first=99 second=289 amount=-1 +kerning first=220 second=377 amount=-1 +kerning first=86 second=380 amount=-2 +kerning first=79 second=377 amount=-1 +kerning first=199 second=198 amount=-2 +kerning first=204 second=289 amount=-1 +kerning first=8250 second=106 amount=-1 +kerning first=122 second=380 amount=-1 +kerning first=1071 second=1077 amount=-1 +kerning first=1042 second=1065 amount=-1 +kerning first=240 second=289 amount=-1 +kerning first=89 second=330 amount=-1 +kerning first=77 second=249 amount=-1 +kerning first=326 second=8220 amount=-2 +kerning first=113 second=249 amount=-1 +kerning first=364 second=377 amount=-1 +kerning first=290 second=8220 amount=-1 +kerning first=380 second=263 amount=-1 +kerning first=366 second=288 amount=-1 +kerning first=254 second=8220 amount=-1 +kerning first=1057 second=1103 amount=-1 +kerning first=86 second=114 amount=-1 +kerning first=381 second=313 amount=-1 +kerning first=68 second=379 amount=-1 +kerning first=227 second=365 amount=-1 +kerning first=1024 second=1064 amount=-1 +kerning first=86 second=99 amount=-2 +kerning first=8217 second=291 amount=-2 +kerning first=113 second=8220 amount=-1 +kerning first=8250 second=107 amount=-1 +kerning first=197 second=287 amount=-1 +kerning first=1060 second=1064 amount=-1 +kerning first=376 second=237 amount=-1 +kerning first=122 second=365 amount=-1 +kerning first=118 second=339 amount=-1 +kerning first=201 second=313 amount=-1 +kerning first=317 second=82 amount=-1 +kerning first=269 second=287 amount=-1 +kerning first=86 second=365 amount=-1 +kerning first=122 second=99 amount=-1 +kerning first=334 second=378 amount=-1 +kerning first=233 second=287 amount=-1 +kerning first=263 second=99 amount=-1 +kerning first=268 second=237 amount=-1 +kerning first=313 second=73 amount=-1 +kerning first=89 second=75 amount=-1 +kerning first=82 second=339 amount=-1 +kerning first=317 second=379 amount=-1 +kerning first=305 second=287 amount=-1 +kerning first=208 second=229 amount=-1 +kerning first=379 second=198 amount=-1 +kerning first=280 second=44 amount=-1 +kerning first=356 second=334 amount=-1 +kerning first=333 second=237 amount=-1 +kerning first=244 second=44 amount=-2 +kerning first=377 second=287 amount=-2 +kerning first=196 second=234 amount=-1 +kerning first=352 second=44 amount=-2 +kerning first=87 second=197 amount=-3 +kerning first=204 second=284 amount=-1 +kerning first=103 second=44 amount=-2 +kerning first=75 second=354 amount=-1 +kerning first=281 second=104 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=218 second=267 amount=-1 +kerning first=245 second=104 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=264 second=197 amount=-2 +kerning first=84 second=237 amount=-1 +kerning first=112 second=187 amount=-1 +kerning first=216 second=354 amount=-1 +kerning first=232 second=227 amount=-1 +kerning first=336 second=197 amount=-2 +kerning first=199 second=194 amount=-2 +kerning first=122 second=111 amount=-1 +kerning first=90 second=337 amount=-1 +kerning first=288 second=354 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=82 second=351 amount=-1 +kerning first=376 second=227 amount=-2 +kerning first=304 second=234 amount=-1 +kerning first=328 second=117 amount=-1 +kerning first=99 second=277 amount=-1 +kerning first=1031 second=1054 amount=-1 +kerning first=288 second=87 amount=-1 +kerning first=304 second=227 amount=-1 +kerning first=376 second=234 amount=-2 +kerning first=204 second=277 amount=-1 +kerning first=268 second=227 amount=-1 +kerning first=216 second=87 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=353 second=367 amount=-1 +kerning first=380 second=254 amount=-1 +kerning first=198 second=361 amount=-1 +kerning first=305 second=8249 amount=-1 +kerning first=71 second=327 amount=-1 +kerning first=313 second=74 amount=-1 +kerning first=367 second=351 amount=-1 +kerning first=380 second=257 amount=-1 +kerning first=331 second=351 amount=-1 +kerning first=201 second=314 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=281 second=367 amount=-1 +kerning first=88 second=267 amount=-1 +kerning first=115 second=121 amount=-1 +kerning first=75 second=364 amount=-1 +kerning first=70 second=264 amount=-1 +kerning first=113 second=261 amount=-1 +kerning first=317 second=367 amount=-1 +kerning first=234 second=361 amount=-1 +kerning first=269 second=8249 amount=-1 +kerning first=344 second=257 amount=-1 +kerning first=209 second=367 amount=-1 +kerning first=236 second=254 amount=-1 +kerning first=223 second=351 amount=-1 +kerning first=236 second=257 amount=-1 +kerning first=197 second=8249 amount=-2 +kerning first=284 second=327 amount=-1 +kerning first=288 second=364 amount=-1 +kerning first=187 second=351 amount=-1 +kerning first=272 second=257 amount=-1 +kerning first=104 second=367 amount=-1 +kerning first=8250 second=109 amount=-1 +kerning first=295 second=351 amount=-1 +kerning first=344 second=254 amount=-1 +kerning first=378 second=361 amount=-1 +kerning first=356 second=327 amount=-1 +kerning first=364 second=114 amount=-1 +kerning first=216 second=364 amount=-1 +kerning first=259 second=351 amount=-1 +kerning first=200 second=257 amount=-1 +kerning first=8250 second=116 amount=-1 +kerning first=232 second=224 amount=-1 +kerning first=362 second=261 amount=-2 +kerning first=1055 second=1108 amount=-1 +kerning first=256 second=117 amount=-1 +kerning first=304 second=224 amount=-1 +kerning first=353 second=104 amount=-1 +kerning first=200 second=254 amount=-1 +kerning first=220 second=114 amount=-1 +kerning first=1038 second=1051 amount=-3 +kerning first=268 second=224 amount=-1 +kerning first=364 second=121 amount=-1 +kerning first=1067 second=1057 amount=-1 +kerning first=376 second=224 amount=-2 +kerning first=218 second=261 amount=-2 +kerning first=115 second=114 amount=-1 +kerning first=1031 second=1057 amount=-1 +kerning first=380 second=250 amount=-1 +kerning first=377 second=8249 amount=-1 +kerning first=290 second=261 amount=-1 +kerning first=344 second=250 amount=-1 +kerning first=211 second=274 amount=-1 +kerning first=369 second=237 amount=-1 +kerning first=90 second=234 amount=-1 +kerning first=356 second=337 amount=-2 +kerning first=356 second=331 amount=-1 +kerning first=209 second=101 amount=-1 +kerning first=1045 second=1038 amount=-1 +kerning first=274 second=268 amount=-1 +kerning first=203 second=221 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=220 second=117 amount=-1 +kerning first=324 second=347 amount=-1 +kerning first=87 second=200 amount=-1 +kerning first=377 second=290 amount=-1 +kerning first=266 second=338 amount=-2 +kerning first=1024 second=1067 amount=-1 +kerning first=200 second=205 amount=-1 +kerning first=234 second=98 amount=-1 +kerning first=84 second=240 amount=-2 +kerning first=194 second=338 amount=-1 +kerning first=197 second=290 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=87 second=207 amount=-1 +kerning first=256 second=199 amount=-1 +kerning first=89 second=338 amount=-1 +kerning first=364 second=380 amount=-1 +kerning first=89 second=228 amount=-2 +kerning first=346 second=219 amount=-1 +kerning first=264 second=8249 amount=-2 +kerning first=198 second=98 amount=-1 +kerning first=120 second=240 amount=-1 +kerning first=236 second=251 amount=-1 +kerning first=1060 second=1067 amount=-1 +kerning first=344 second=251 amount=-1 +kerning first=336 second=207 amount=-1 +kerning first=313 second=77 amount=-1 +kerning first=264 second=201 amount=-1 +kerning first=381 second=317 amount=-1 +kerning first=380 second=251 amount=-1 +kerning first=198 second=90 amount=-1 +kerning first=86 second=368 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=1070 second=1024 amount=-1 +kerning first=352 second=304 amount=-1 +kerning first=284 second=330 amount=-1 +kerning first=87 second=201 amount=-1 +kerning first=221 second=220 amount=-1 +kerning first=201 second=317 amount=-1 +kerning first=280 second=304 amount=-1 +kerning first=264 second=207 amount=-1 +kerning first=323 second=291 amount=-1 +kerning first=219 second=324 amount=-1 +kerning first=79 second=381 amount=-1 +kerning first=75 second=97 amount=-1 +kerning first=336 second=200 amount=-1 +kerning first=8250 second=110 amount=-1 +kerning first=287 second=291 amount=-1 +kerning first=240 second=107 amount=-1 +kerning first=187 second=84 amount=-2 +kerning first=291 second=324 amount=-1 +kerning first=264 second=200 amount=-1 +kerning first=221 second=213 amount=-1 +kerning first=255 second=324 amount=-1 +kerning first=220 second=381 amount=-1 +kerning first=262 second=311 amount=-1 +kerning first=252 second=97 amount=-1 +kerning first=110 second=291 amount=-1 +kerning first=288 second=97 amount=-1 +kerning first=74 second=291 amount=-1 +kerning first=1046 second=1101 amount=-1 +kerning first=356 second=71 amount=-1 +kerning first=121 second=311 amount=-1 +kerning first=1082 second=1101 amount=-1 +kerning first=364 second=381 amount=-1 +kerning first=216 second=97 amount=-1 +kerning first=263 second=226 amount=-1 +kerning first=227 second=375 amount=-1 +kerning first=87 second=203 amount=-1 +kerning first=73 second=228 amount=-1 +kerning first=228 second=8220 amount=-1 +kerning first=217 second=193 amount=-2 +kerning first=236 second=253 amount=-1 +kerning first=8250 second=382 amount=-3 +kerning first=79 second=120 amount=-1 +kerning first=86 second=375 amount=-1 +kerning first=203 second=218 amount=-1 +kerning first=115 second=120 amount=-1 +kerning first=71 second=70 amount=-1 +kerning first=371 second=375 amount=-1 +kerning first=344 second=253 amount=-1 +kerning first=335 second=375 amount=-1 +kerning first=353 second=103 amount=-1 +kerning first=380 second=253 amount=-1 +kerning first=121 second=45 amount=-2 +kerning first=1031 second=1060 amount=-1 +kerning first=263 second=375 amount=-1 +kerning first=85 second=45 amount=-3 +kerning first=1067 second=1060 amount=-1 +kerning first=282 second=192 amount=-1 +kerning first=208 second=310 amount=-1 +kerning first=70 second=268 amount=-1 +kerning first=268 second=245 amount=-1 +kerning first=284 second=70 amount=-1 +kerning first=364 second=120 amount=-1 +kerning first=1082 second=1095 amount=-1 +kerning first=336 second=203 amount=-1 +kerning first=1046 second=1095 amount=-2 +kerning first=67 second=310 amount=-1 +kerning first=212 second=70 amount=-1 +kerning first=356 second=68 amount=-1 +kerning first=187 second=78 amount=-3 +kerning first=187 second=345 amount=-1 +kerning first=264 second=203 amount=-1 +kerning first=364 second=118 amount=-1 +kerning first=1100 second=1100 amount=-1 +kerning first=194 second=286 amount=-1 +kerning first=328 second=118 amount=-1 +kerning first=220 second=120 amount=-1 +kerning first=280 second=310 amount=-1 +kerning first=356 second=70 amount=-1 +kerning first=1056 second=1043 amount=-1 +kerning first=336 second=201 amount=-1 +kerning first=371 second=105 amount=-1 +kerning first=220 second=118 amount=-1 +kerning first=102 second=245 amount=-1 +kerning first=371 second=108 amount=-1 +kerning first=8250 second=112 amount=-1 +kerning first=121 second=305 amount=-1 +kerning first=85 second=305 amount=-1 +kerning first=335 second=105 amount=-1 +kerning first=199 second=304 amount=-1 +kerning first=256 second=118 amount=-2 +kerning first=204 second=283 amount=-1 +kerning first=8217 second=287 amount=-2 +kerning first=374 second=335 amount=-2 +kerning first=284 second=65 amount=-1 +kerning first=351 second=241 amount=-1 +kerning first=99 second=283 amount=-1 +kerning first=122 second=105 amount=-1 +kerning first=115 second=118 amount=-1 +kerning first=1107 second=1083 amount=-1 +kerning first=262 second=305 amount=-1 +kerning first=356 second=65 amount=-3 +kerning first=207 second=245 amount=-1 +kerning first=89 second=334 amount=-1 +kerning first=1060 second=1070 amount=-1 +kerning first=68 second=370 amount=-1 +kerning first=86 second=105 amount=-1 +kerning first=255 second=318 amount=-1 +kerning first=376 second=231 amount=-2 +kerning first=325 second=244 amount=-1 +kerning first=302 second=335 amount=-1 +kerning first=315 second=241 amount=-1 +kerning first=1024 second=1070 amount=-1 +kerning first=122 second=108 amount=-1 +kerning first=279 second=241 amount=-1 +kerning first=286 second=228 amount=-1 +kerning first=263 second=108 amount=-1 +kerning first=363 second=318 amount=-1 +kerning first=66 second=241 amount=-1 +kerning first=227 second=108 amount=-1 +kerning first=89 second=335 amount=-2 +kerning first=214 second=228 amount=-1 +kerning first=335 second=108 amount=-1 +kerning first=317 second=370 amount=-1 +kerning first=76 second=193 amount=-1 +kerning first=194 second=335 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=200 second=66 amount=-1 +kerning first=316 second=316 amount=-1 +kerning first=218 second=256 amount=-2 +kerning first=82 second=347 amount=-1 +kerning first=266 second=66 amount=-1 +kerning first=245 second=107 amount=-1 +kerning first=354 second=205 amount=-1 +kerning first=304 second=231 amount=-1 +kerning first=376 second=230 amount=-2 +kerning first=362 second=256 amount=-2 +kerning first=8250 second=379 amount=-2 +kerning first=362 second=380 amount=-1 +kerning first=99 second=281 amount=-1 +kerning first=1038 second=1047 amount=-1 +kerning first=362 second=255 amount=-1 +kerning first=374 second=66 amount=-1 +kerning first=304 second=230 amount=-1 +kerning first=89 second=332 amount=-1 +kerning first=290 second=256 amount=-1 +kerning first=326 second=255 amount=-1 +kerning first=268 second=231 amount=-1 +kerning first=204 second=281 amount=-1 +kerning first=338 second=66 amount=-1 +kerning first=210 second=205 amount=-1 +kerning first=221 second=216 amount=-1 +kerning first=194 second=332 amount=-1 +kerning first=263 second=371 amount=-1 +kerning first=254 second=255 amount=-1 +kerning first=8217 second=74 amount=-1 +kerning first=1046 second=1098 amount=-1 +kerning first=218 second=255 amount=-1 +kerning first=367 second=347 amount=-1 +kerning first=286 second=310 amount=-1 +kerning first=267 second=240 amount=-1 +kerning first=266 second=332 amount=-2 +kerning first=380 second=102 amount=-1 +kerning first=99 second=369 amount=-1 +kerning first=371 second=371 amount=-1 +kerning first=113 second=255 amount=-1 +kerning first=295 second=347 amount=-1 +kerning first=317 second=107 amount=-1 +kerning first=338 second=332 amount=-1 +kerning first=77 second=255 amount=-1 +kerning first=381 second=346 amount=-1 +kerning first=281 second=107 amount=-1 +kerning first=302 second=332 amount=-1 +kerning first=122 second=371 amount=-1 +kerning first=223 second=347 amount=-1 +kerning first=69 second=205 amount=-1 +kerning first=187 second=347 amount=-1 +kerning first=353 second=107 amount=-1 +kerning first=374 second=332 amount=-1 +kerning first=227 second=371 amount=-1 +kerning first=71 second=68 amount=-1 +kerning first=107 second=333 amount=-1 +kerning first=264 second=204 amount=-1 +kerning first=203 second=217 amount=-1 +kerning first=1027 second=1033 amount=-3 +kerning first=250 second=229 amount=-1 +kerning first=8216 second=277 amount=-1 +kerning first=336 second=204 amount=-1 +kerning first=207 second=242 amount=-1 +kerning first=286 second=229 amount=-1 +kerning first=356 second=67 amount=-1 +kerning first=104 second=106 amount=-1 +kerning first=82 second=81 amount=-1 +kerning first=252 second=289 amount=-1 +kerning first=284 second=68 amount=-1 +kerning first=222 second=282 amount=-1 +kerning first=68 second=106 amount=-1 +kerning first=212 second=68 amount=-1 +kerning first=281 second=106 amount=-1 +kerning first=232 second=230 amount=-1 +kerning first=81 second=282 amount=-1 +kerning first=84 second=243 amount=-2 +kerning first=205 second=346 amount=-1 +kerning first=317 second=106 amount=-1 +kerning first=268 second=230 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=45 second=282 amount=-3 +kerning first=120 second=243 amount=-1 +kerning first=244 second=307 amount=-1 +kerning first=245 second=106 amount=-1 +kerning first=202 second=119 amount=-1 +kerning first=316 second=307 amount=-1 +kerning first=87 second=204 amount=-1 +kerning first=274 second=119 amount=-1 +kerning first=313 second=346 amount=-1 +kerning first=353 second=106 amount=-1 +kerning first=310 second=119 amount=-1 +kerning first=356 second=333 amount=-2 +kerning first=203 second=214 amount=-1 +kerning first=346 second=119 amount=-1 +kerning first=103 second=230 amount=-1 +kerning first=213 second=327 amount=-1 +kerning first=89 second=353 amount=-2 +kerning first=310 second=199 amount=-1 +kerning first=378 second=249 amount=-1 +kerning first=269 second=275 amount=-1 +kerning first=67 second=230 amount=-1 +kerning first=321 second=327 amount=-1 +kerning first=197 second=275 amount=-1 +kerning first=84 second=45 amount=-3 +kerning first=8250 second=302 amount=-3 +kerning first=72 second=81 amount=-1 +kerning first=379 second=223 amount=-1 +kerning first=84 second=256 amount=-3 +kerning first=199 second=223 amount=-1 +kerning first=368 second=268 amount=-1 +kerning first=218 second=211 amount=-1 +kerning first=374 second=339 amount=-2 +kerning first=77 second=211 amount=-1 +kerning first=352 second=230 amount=-1 +kerning first=86 second=264 amount=-1 +kerning first=280 second=230 amount=-1 +kerning first=362 second=211 amount=-1 +kerning first=8250 second=368 amount=-2 +kerning first=296 second=268 amount=-1 +kerning first=198 second=249 amount=-1 +kerning first=377 second=275 amount=-1 +kerning first=246 second=318 amount=-1 +kerning first=264 second=378 amount=-1 +kerning first=260 second=268 amount=-1 +kerning first=234 second=249 amount=-1 +kerning first=68 second=204 amount=-1 +kerning first=86 second=209 amount=-1 +kerning first=233 second=289 amount=-1 +kerning first=379 second=237 amount=-1 +kerning first=68 second=218 amount=-1 +kerning first=269 second=289 amount=-1 +kerning first=194 second=339 amount=-1 +kerning first=119 second=380 amount=-1 +kerning first=67 second=244 amount=-1 +kerning first=378 second=263 amount=-1 +kerning first=214 second=315 amount=-1 +kerning first=305 second=289 amount=-1 +kerning first=307 second=237 amount=-1 +kerning first=1025 second=1091 amount=-1 +kerning first=103 second=244 amount=-1 +kerning first=220 second=248 amount=-1 +kerning first=213 second=313 amount=-1 +kerning first=89 second=339 amount=-2 +kerning first=1061 second=1091 amount=-1 +kerning first=68 second=259 amount=-1 +kerning first=377 second=289 amount=-2 +kerning first=235 second=237 amount=-1 +kerning first=199 second=237 amount=-1 +kerning first=78 second=199 amount=-1 +kerning first=332 second=282 amount=-1 +kerning first=266 second=339 amount=-1 +kerning first=316 second=244 amount=-1 +kerning first=338 second=353 amount=-1 +kerning first=66 second=8249 amount=-1 +kerning first=374 second=353 amount=-2 +kerning first=1036 second=1060 amount=-2 +kerning first=350 second=361 amount=-1 +kerning first=102 second=8249 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=1061 second=1105 amount=-1 +kerning first=204 second=334 amount=-1 +kerning first=113 second=225 amount=-1 +kerning first=229 second=365 amount=-1 +kerning first=286 second=315 amount=-1 +kerning first=194 second=353 amount=-1 +kerning first=83 second=282 amount=-1 +kerning first=193 second=365 amount=-1 +kerning first=230 second=353 amount=-1 +kerning first=203 second=346 amount=-1 +kerning first=266 second=353 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=197 second=289 amount=-1 +kerning first=199 second=251 amount=-1 +kerning first=332 second=296 amount=-1 +kerning first=352 second=202 amount=-1 +kerning first=193 second=351 amount=-1 +kerning first=307 second=251 amount=-1 +kerning first=203 second=374 amount=-1 +kerning first=224 second=254 amount=-1 +kerning first=193 second=231 amount=-1 +kerning first=230 second=121 amount=-1 +kerning first=280 second=202 amount=-1 +kerning first=260 second=254 amount=-1 +kerning first=210 second=206 amount=-1 +kerning first=379 second=251 amount=-1 +kerning first=194 second=121 amount=-1 +kerning first=229 second=351 amount=-1 +kerning first=282 second=206 amount=-1 +kerning first=89 second=121 amount=-1 +kerning first=194 second=79 amount=-1 +kerning first=286 second=205 amount=-1 +kerning first=83 second=254 amount=-1 +kerning first=338 second=367 amount=-1 +kerning first=354 second=206 amount=-1 +kerning first=1042 second=1103 amount=-1 +kerning first=89 second=381 amount=-1 +kerning first=119 second=254 amount=-1 +kerning first=286 second=69 amount=-1 +kerning first=374 second=367 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=266 second=367 amount=-1 +kerning first=302 second=79 amount=-1 +kerning first=228 second=117 amount=-1 +kerning first=274 second=344 amount=-1 +kerning first=214 second=69 amount=-1 +kerning first=302 second=367 amount=-1 +kerning first=338 second=79 amount=-1 +kerning first=219 second=199 amount=-1 +kerning first=347 second=114 amount=-1 +kerning first=192 second=117 amount=-1 +kerning first=194 second=367 amount=-1 +kerning first=8220 second=99 amount=-1 +kerning first=346 second=344 amount=-1 +kerning first=84 second=284 amount=-1 +kerning first=233 second=261 amount=-1 +kerning first=1056 second=1036 amount=-1 +kerning first=266 second=79 amount=-2 +kerning first=82 second=336 amount=-1 +kerning first=264 second=117 amount=-1 +kerning first=203 second=72 amount=-1 +kerning first=214 second=83 amount=-1 +kerning first=89 second=367 amount=-1 +kerning first=327 second=199 amount=-1 +kerning first=338 second=381 amount=-1 +kerning first=336 second=192 amount=-2 +kerning first=374 second=121 amount=-1 +kerning first=374 second=381 amount=-1 +kerning first=187 second=76 amount=-3 +kerning first=204 second=121 amount=-1 +kerning first=374 second=79 amount=-1 +kerning first=202 second=344 amount=-1 +kerning first=364 second=71 amount=-1 +kerning first=264 second=192 amount=-2 +kerning first=1027 second=1081 amount=-1 +kerning first=302 second=121 amount=-1 +kerning first=1078 second=1089 amount=-1 +kerning first=296 second=240 amount=-1 +kerning first=338 second=107 amount=-1 +kerning first=78 second=171 amount=-2 +kerning first=280 second=216 amount=-1 +kerning first=114 second=171 amount=-1 +kerning first=193 second=337 amount=-1 +kerning first=203 second=86 amount=-1 +kerning first=8220 second=113 amount=-1 +kerning first=260 second=240 amount=-1 +kerning first=269 second=261 amount=-1 +kerning first=230 second=107 amount=-1 +kerning first=67 second=216 amount=-2 +kerning first=194 second=107 amount=-1 +kerning first=362 second=382 amount=-1 +kerning first=368 second=240 amount=-1 +kerning first=377 second=261 amount=-1 +kerning first=266 second=107 amount=-1 +kerning first=1027 second=1095 amount=-1 +kerning first=363 second=171 amount=-1 +kerning first=67 second=202 amount=-1 +kerning first=346 second=330 amount=-1 +kerning first=8250 second=274 amount=-3 +kerning first=199 second=209 amount=-1 +kerning first=274 second=330 amount=-1 +kerning first=208 second=202 amount=-1 +kerning first=219 second=171 amount=-3 +kerning first=119 second=240 amount=-1 +kerning first=255 second=171 amount=-2 +kerning first=379 second=209 amount=-1 +kerning first=291 second=171 amount=-1 +kerning first=327 second=171 amount=-2 +kerning first=1027 second=1102 amount=-1 +kerning first=295 second=252 amount=-1 +kerning first=69 second=206 amount=-1 +kerning first=255 second=227 amount=-2 +kerning first=1073 second=1076 amount=-1 +kerning first=205 second=350 amount=-1 +kerning first=331 second=252 amount=-1 +kerning first=219 second=227 amount=-2 +kerning first=198 second=207 amount=-1 +kerning first=367 second=252 amount=-1 +kerning first=187 second=252 amount=-1 +kerning first=363 second=227 amount=-1 +kerning first=234 second=305 amount=-1 +kerning first=327 second=227 amount=-1 +kerning first=198 second=330 amount=-1 +kerning first=259 second=252 amount=-1 +kerning first=291 second=227 amount=-1 +kerning first=79 second=201 amount=-1 +kerning first=324 second=291 amount=-1 +kerning first=336 second=103 amount=-1 +kerning first=378 second=291 amount=-1 +kerning first=83 second=226 amount=-1 +kerning first=313 second=90 amount=-1 +kerning first=119 second=226 amount=-2 +kerning first=68 second=260 amount=-2 +kerning first=210 second=74 amount=-1 +kerning first=201 second=241 amount=-1 +kerning first=264 second=103 amount=-1 +kerning first=198 second=45 amount=-1 +kerning first=8250 second=344 amount=-3 +kerning first=78 second=227 amount=-1 +kerning first=192 second=103 amount=-1 +kerning first=234 second=291 amount=-1 +kerning first=88 second=337 amount=-1 +kerning first=198 second=291 amount=-1 +kerning first=296 second=226 amount=-1 +kerning first=270 second=45 amount=-1 +kerning first=87 second=103 amount=-2 +kerning first=332 second=226 amount=-1 +kerning first=378 second=45 amount=-2 +kerning first=235 second=230 amount=-1 +kerning first=368 second=226 amount=-2 +kerning first=317 second=260 amount=-1 +kerning first=346 second=84 amount=-1 +kerning first=327 second=213 amount=-1 +kerning first=310 second=84 amount=-1 +kerning first=274 second=84 amount=-1 +kerning first=192 second=89 amount=-3 +kerning first=321 second=109 amount=-1 +kerning first=209 second=115 amount=-1 +kerning first=368 second=212 amount=-1 +kerning first=245 second=115 amount=-1 +kerning first=104 second=115 amount=-1 +kerning first=208 second=196 amount=-2 +kerning first=296 second=212 amount=-1 +kerning first=275 second=44 amount=-2 +kerning first=353 second=115 amount=-1 +kerning first=332 second=84 amount=-1 +kerning first=332 second=78 amount=-1 +kerning first=100 second=104 amount=-1 +kerning first=1092 second=1076 amount=-1 +kerning first=347 second=44 amount=-1 +kerning first=281 second=115 amount=-1 +kerning first=78 second=213 amount=-1 +kerning first=311 second=44 amount=-1 +kerning first=317 second=115 amount=-1 +kerning first=8216 second=74 amount=-1 +kerning first=98 second=44 amount=-2 +kerning first=346 second=70 amount=-1 +kerning first=264 second=89 amount=-1 +kerning first=313 second=104 amount=-1 +kerning first=277 second=104 amount=-1 +kerning first=192 second=267 amount=-1 +kerning first=203 second=44 amount=-1 +kerning first=274 second=70 amount=-1 +kerning first=336 second=89 amount=-1 +kerning first=83 second=78 amount=-1 +kerning first=378 second=277 amount=-1 +kerning first=209 second=232 amount=-1 +kerning first=219 second=213 amount=-1 +kerning first=74 second=303 amount=-1 +kerning first=8218 second=355 amount=-1 +kerning first=284 second=325 amount=-1 +kerning first=202 second=98 amount=-1 +kerning first=310 second=98 amount=-1 +kerning first=315 second=8249 amount=-1 +kerning first=87 second=75 amount=-1 +kerning first=368 second=237 amount=-1 +kerning first=356 second=325 amount=-1 +kerning first=187 second=280 amount=-3 +kerning first=274 second=98 amount=-1 +kerning first=351 second=8249 amount=-1 +kerning first=107 second=283 amount=-1 +kerning first=251 second=303 amount=-1 +kerning first=277 second=118 amount=-1 +kerning first=289 second=120 amount=-1 +kerning first=379 second=289 amount=-2 +kerning first=374 second=196 amount=-3 +kerning first=336 second=75 amount=-1 +kerning first=287 second=303 amount=-1 +kerning first=1045 second=1025 amount=-1 +kerning first=241 second=118 amount=-1 +kerning first=255 second=328 amount=-1 +kerning first=8250 second=330 amount=-3 +kerning first=219 second=328 amount=-1 +kerning first=264 second=75 amount=-1 +kerning first=97 second=98 amount=-1 +kerning first=313 second=118 amount=-1 +kerning first=266 second=196 amount=-2 +kerning first=100 second=118 amount=-1 +kerning first=1098 second=1093 amount=-1 +kerning first=208 second=287 amount=-1 +kerning first=272 second=80 amount=-1 +kerning first=272 second=204 amount=-1 +kerning first=381 second=291 amount=-2 +kerning first=338 second=196 amount=-1 +kerning first=1098 second=1107 amount=-1 +kerning first=205 second=118 amount=-1 +kerning first=317 second=218 amount=-1 +kerning first=1037 second=1104 amount=-1 +kerning first=89 second=196 amount=-3 +kerning first=71 second=325 amount=-1 +kerning first=382 second=98 amount=-1 +kerning first=291 second=241 amount=-1 +kerning first=255 second=241 amount=-1 +kerning first=356 second=283 amount=-2 +kerning first=212 second=325 amount=-1 +kerning first=8218 second=369 amount=-1 +kerning first=280 second=286 amount=-1 +kerning first=82 second=266 amount=-1 +kerning first=1113 second=1087 amount=-1 +kerning first=219 second=241 amount=-1 +kerning first=121 second=314 amount=-1 +kerning first=374 second=210 amount=-1 +kerning first=262 second=314 amount=-1 +kerning first=102 second=8221 amount=1 +kerning first=226 second=314 amount=-1 +kerning first=287 second=331 amount=-1 +kerning first=266 second=210 amount=-2 +kerning first=83 second=353 amount=-1 +kerning first=66 second=8221 amount=-2 +kerning first=363 second=255 amount=-1 +kerning first=279 second=8221 amount=-1 +kerning first=194 second=210 amount=-1 +kerning first=327 second=255 amount=-1 +kerning first=67 second=286 amount=-2 +kerning first=315 second=8221 amount=-2 +kerning first=219 second=269 amount=-1 +kerning first=382 second=112 amount=-1 +kerning first=291 second=255 amount=-1 +kerning first=89 second=210 amount=-1 +kerning first=346 second=112 amount=-1 +kerning first=82 second=252 amount=-1 +kerning first=89 second=224 amount=-2 +kerning first=243 second=8221 amount=-1 +kerning first=291 second=269 amount=-1 +kerning first=310 second=112 amount=-1 +kerning first=321 second=81 amount=-1 +kerning first=219 second=255 amount=-1 +kerning first=230 second=224 amount=-1 +kerning first=378 second=235 amount=-1 +kerning first=208 second=378 amount=-1 +kerning first=274 second=112 amount=-1 +kerning first=72 second=67 amount=-1 +kerning first=74 second=331 amount=-1 +kerning first=198 second=221 amount=-1 +kerning first=302 second=224 amount=-1 +kerning first=351 second=8221 amount=-1 +kerning first=202 second=112 amount=-1 +kerning first=78 second=255 amount=-1 +kerning first=266 second=224 amount=-1 +kerning first=374 second=224 amount=-2 +kerning first=88 second=281 amount=-1 +kerning first=217 second=352 amount=-1 +kerning first=371 second=279 amount=-1 +kerning first=338 second=224 amount=-1 +kerning first=68 second=302 amount=-1 +kerning first=229 second=250 amount=-1 +kerning first=75 second=101 amount=-1 +kerning first=362 second=326 amount=-1 +kerning first=234 second=347 amount=-1 +kerning first=193 second=281 amount=-1 +kerning first=198 second=347 amount=-1 +kerning first=113 second=326 amount=-1 +kerning first=1060 second=1033 amount=-1 +kerning first=279 second=371 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=221 second=231 amount=-2 +kerning first=85 second=328 amount=-1 +kerning first=325 second=352 amount=-1 +kerning first=218 second=326 amount=-1 +kerning first=80 second=231 amount=-1 +kerning first=351 second=371 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=218 second=46 amount=-3 +kerning first=260 second=366 amount=-2 +kerning first=378 second=378 amount=-1 +kerning first=1073 second=1118 amount=-1 +kerning first=220 second=257 amount=-2 +kerning first=78 second=283 amount=-1 +kerning first=262 second=328 amount=-1 +kerning first=115 second=257 amount=-1 +kerning first=263 second=333 amount=-1 +kerning first=317 second=302 amount=-1 +kerning first=291 second=283 amount=-1 +kerning first=234 second=378 amount=-1 +kerning first=97 second=369 amount=-1 +kerning first=230 second=8220 amount=-1 +kerning first=255 second=283 amount=-1 +kerning first=198 second=378 amount=-1 +kerning first=1038 second=1092 amount=-2 +kerning first=1048 second=1073 amount=-1 +kerning first=79 second=257 amount=-1 +kerning first=122 second=333 amount=-1 +kerning first=332 second=366 amount=-1 +kerning first=378 second=347 amount=-1 +kerning first=370 second=328 amount=-1 +kerning first=86 second=333 amount=-2 +kerning first=76 second=352 amount=-1 +kerning first=268 second=217 amount=-1 +kerning first=103 second=113 amount=-1 +kerning first=310 second=288 amount=-1 +kerning first=67 second=113 amount=-1 +kerning first=332 second=106 amount=-1 +kerning first=83 second=198 amount=-2 +kerning first=376 second=217 amount=-1 +kerning first=371 second=333 amount=-1 +kerning first=202 second=288 amount=-1 +kerning first=83 second=366 amount=-1 +kerning first=67 second=345 amount=-1 +kerning first=113 second=245 amount=-1 +kerning first=274 second=288 amount=-1 +kerning first=72 second=243 amount=-1 +kerning first=45 second=69 amount=-3 +kerning first=108 second=243 amount=-1 +kerning first=112 second=120 amount=-1 +kerning first=202 second=370 amount=-1 +kerning first=368 second=198 amount=-2 +kerning first=203 second=262 amount=-1 +kerning first=217 second=120 amount=-1 +kerning first=352 second=345 amount=-1 +kerning first=356 second=255 amount=-1 +kerning first=84 second=368 amount=-1 +kerning first=253 second=120 amount=-1 +kerning first=8250 second=218 amount=-2 +kerning first=196 second=217 amount=-2 +kerning first=248 second=255 amount=-1 +kerning first=253 second=271 amount=-1 +kerning first=1057 second=1094 amount=-1 +kerning first=1047 second=1113 amount=-1 +kerning first=76 second=120 amount=-1 +kerning first=317 second=274 amount=-1 +kerning first=1051 second=1054 amount=-1 +kerning first=79 second=229 amount=-1 +kerning first=74 second=99 amount=-1 +kerning first=356 second=227 amount=-2 +kerning first=192 second=279 amount=-1 +kerning first=200 second=323 amount=-1 +kerning first=115 second=229 amount=-1 +kerning first=284 second=227 amount=-1 +kerning first=264 second=279 amount=-1 +kerning first=272 second=323 amount=-1 +kerning first=287 second=99 amount=-1 +kerning first=198 second=104 amount=-1 +kerning first=211 second=278 amount=-1 +kerning first=282 second=44 amount=-1 +kerning first=253 second=324 amount=-1 +kerning first=246 second=44 amount=-2 +kerning first=217 second=324 amount=-1 +kerning first=99 second=233 amount=-1 +kerning first=290 second=354 amount=-1 +kerning first=354 second=44 amount=-3 +kerning first=323 second=99 amount=-1 +kerning first=87 second=279 amount=-2 +kerning first=289 second=324 amount=-1 +kerning first=204 second=233 amount=-1 +kerning first=71 second=227 amount=-1 +kerning first=380 second=267 amount=-1 +kerning first=83 second=106 amount=-1 +kerning first=311 second=234 amount=-1 +kerning first=344 second=267 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=364 second=229 amount=-2 +kerning first=86 second=226 amount=-2 +kerning first=280 second=317 amount=-1 +kerning first=212 second=227 amount=-1 +kerning first=352 second=317 amount=-1 +kerning first=107 second=227 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=224 second=106 amount=-1 +kerning first=121 second=110 amount=-1 +kerning first=97 second=316 amount=-1 +kerning first=334 second=82 amount=-1 +kerning first=258 second=264 amount=-1 +kerning first=202 second=316 amount=-1 +kerning first=262 second=110 amount=-1 +kerning first=371 second=361 amount=-1 +kerning first=195 second=212 amount=-1 +kerning first=274 second=316 amount=-1 +kerning first=364 second=257 amount=-2 +kerning first=282 second=290 amount=-1 +kerning first=286 second=224 amount=-1 +kerning first=310 second=316 amount=-1 +kerning first=108 second=271 amount=-1 +kerning first=207 second=111 amount=-1 +kerning first=201 second=65 amount=-1 +kerning first=370 second=110 amount=-1 +kerning first=90 second=212 amount=-1 +kerning first=346 second=316 amount=-1 +kerning first=262 second=82 amount=-1 +kerning first=1058 second=1040 amount=-1 +kerning first=382 second=316 amount=-1 +kerning first=196 second=362 amount=-2 +kerning first=105 second=44 amount=-1 +kerning first=313 second=364 amount=-1 +kerning first=69 second=44 amount=-1 +kerning first=379 second=89 amount=-1 +kerning first=86 second=361 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=381 second=65 amount=-1 +kerning first=234 second=104 amount=-1 +kerning first=290 second=66 amount=-1 +kerning first=274 second=206 amount=-1 +kerning first=122 second=361 amount=-1 +kerning first=68 second=274 amount=-1 +kerning first=263 second=361 amount=-1 +kerning first=199 second=89 amount=-1 +kerning first=378 second=104 amount=-1 +kerning first=227 second=361 amount=-1 +kerning first=250 second=97 amount=-1 +kerning first=290 second=122 amount=-1 +kerning first=323 second=71 amount=-1 +kerning first=283 second=46 amount=-2 +kerning first=379 second=117 amount=-1 +kerning first=286 second=97 amount=-1 +kerning first=254 second=122 amount=-1 +kerning first=367 second=121 amount=-1 +kerning first=210 second=72 amount=-1 +kerning first=216 second=76 amount=-1 +kerning first=233 second=102 amount=-1 +kerning first=218 second=122 amount=-1 +kerning first=331 second=121 amount=-1 +kerning first=339 second=8250 amount=-1 +kerning first=269 second=102 amount=-1 +kerning first=214 second=97 amount=-1 +kerning first=295 second=121 amount=-1 +kerning first=282 second=72 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=259 second=121 amount=-1 +kerning first=8250 second=98 amount=-1 +kerning first=223 second=121 amount=-1 +kerning first=354 second=72 amount=-1 +kerning first=362 second=122 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=187 second=121 amount=-2 +kerning first=1050 second=1108 amount=-1 +kerning first=90 second=8250 amount=-1 +kerning first=210 second=325 amount=-1 +kerning first=356 second=199 amount=-1 +kerning first=199 second=377 amount=-1 +kerning first=375 second=240 amount=-1 +kerning first=66 second=200 amount=-2 +kerning first=70 second=46 amount=-2 +kerning first=69 second=332 amount=-1 +kerning first=316 second=243 amount=-1 +kerning first=113 second=122 amount=-1 +kerning first=235 second=117 amount=-1 +kerning first=69 second=72 amount=-1 +kerning first=315 second=200 amount=-1 +kerning first=77 second=122 amount=-1 +kerning first=199 second=117 amount=-1 +kerning first=87 second=363 amount=-1 +kerning first=116 second=287 amount=-1 +kerning first=8217 second=118 amount=-1 +kerning first=379 second=377 amount=-1 +kerning first=80 second=287 amount=-1 +kerning first=197 second=219 amount=-2 +kerning first=330 second=264 amount=-1 +kerning first=288 second=76 amount=-1 +kerning first=221 second=287 amount=-2 +kerning first=310 second=366 amount=-1 +kerning first=221 second=339 amount=-2 +kerning first=332 second=310 amount=-1 +kerning first=195 second=240 amount=-1 +kerning first=365 second=259 amount=-1 +kerning first=90 second=240 amount=-1 +kerning first=257 second=287 amount=-1 +kerning first=73 second=214 amount=-1 +kerning first=303 second=240 amount=-1 +kerning first=365 second=287 amount=-1 +kerning first=196 second=242 amount=-1 +kerning first=221 second=259 amount=-2 +kerning first=84 second=197 amount=-3 +kerning first=69 second=220 amount=-1 +kerning first=278 second=369 amount=-1 +kerning first=379 second=253 amount=-2 +kerning first=76 second=324 amount=-1 +kerning first=354 second=304 amount=-1 +kerning first=304 second=242 amount=-1 +kerning first=352 second=310 amount=-1 +kerning first=350 second=369 amount=-1 +kerning first=74 second=71 amount=-1 +kerning first=324 second=375 amount=-1 +kerning first=210 second=220 amount=-1 +kerning first=314 second=369 amount=-1 +kerning first=282 second=304 amount=-1 +kerning first=376 second=242 amount=-1 +kerning first=118 second=289 amount=-2 +kerning first=73 second=97 amount=-1 +kerning first=101 second=369 amount=-1 +kerning first=1042 second=1030 amount=-1 +kerning first=65 second=369 amount=-1 +kerning first=210 second=304 amount=-1 +kerning first=200 second=119 amount=-1 +kerning first=206 second=369 amount=-1 +kerning first=86 second=211 amount=-1 +kerning first=354 second=220 amount=-1 +kerning first=317 second=330 amount=-1 +kerning first=236 second=119 amount=-1 +kerning first=70 second=74 amount=-2 +kerning first=102 second=107 amount=2 +kerning first=75 second=375 amount=-2 +kerning first=350 second=223 amount=-1 +kerning first=350 second=89 amount=-1 +kerning first=344 second=119 amount=-1 +kerning first=8220 second=230 amount=-1 +kerning first=207 second=228 amount=-1 +kerning first=211 second=74 amount=-1 +kerning first=380 second=119 amount=-1 +kerning first=203 second=203 amount=-1 +kerning first=223 second=307 amount=-1 +kerning first=252 second=375 amount=-1 +kerning first=68 second=330 amount=-1 +kerning first=122 second=331 amount=-1 +kerning first=66 second=228 amount=-1 +kerning first=278 second=223 amount=-1 +kerning first=111 second=375 amount=-1 +kerning first=195 second=268 amount=-1 +kerning first=304 second=103 amount=-1 +kerning first=84 second=80 amount=-1 +kerning first=8217 second=216 amount=-1 +kerning first=108 second=355 amount=-1 +kerning first=290 second=298 amount=-1 +kerning first=106 second=253 amount=-1 +kerning first=83 second=310 amount=-1 +kerning first=90 second=268 amount=-1 +kerning first=283 second=253 amount=-1 +kerning first=222 second=381 amount=-1 +kerning first=71 second=8217 amount=-1 +kerning first=261 second=108 amount=-1 +kerning first=192 second=363 amount=-1 +kerning first=352 second=85 amount=-1 +kerning first=284 second=296 amount=-1 +kerning first=107 second=8217 amount=-1 +kerning first=225 second=108 amount=-1 +kerning first=228 second=363 amount=-1 +kerning first=333 second=108 amount=-1 +kerning first=264 second=363 amount=-1 +kerning first=280 second=85 amount=-1 +kerning first=98 second=318 amount=-1 +kerning first=8220 second=345 amount=-1 +kerning first=79 second=313 amount=-1 +kerning first=315 second=315 amount=-1 +kerning first=1025 second=1063 amount=-1 +kerning first=264 second=335 amount=-1 +kerning first=208 second=85 amount=-1 +kerning first=203 second=318 amount=-1 +kerning first=337 second=105 amount=-1 +kerning first=369 second=108 amount=-1 +kerning first=8250 second=70 amount=-3 +kerning first=66 second=315 amount=-2 +kerning first=1057 second=1038 amount=-1 +kerning first=73 second=245 amount=-1 +kerning first=275 second=318 amount=-1 +kerning first=1061 second=1063 amount=-2 +kerning first=67 second=85 amount=-1 +kerning first=203 second=290 amount=-1 +kerning first=211 second=225 amount=-1 +kerning first=87 second=335 amount=-2 +kerning first=347 second=318 amount=-1 +kerning first=253 second=380 amount=-1 +kerning first=1046 second=1083 amount=-1 +kerning first=289 second=380 amount=-1 +kerning first=283 second=225 amount=-1 +kerning first=192 second=335 amount=-1 +kerning first=347 second=228 amount=-1 +kerning first=90 second=296 amount=-1 +kerning first=325 second=380 amount=-1 +kerning first=116 second=8249 amount=-1 +kerning first=1065 second=1060 amount=-1 +kerning first=368 second=338 amount=-1 +kerning first=248 second=8217 amount=-1 +kerning first=345 second=45 amount=-1 +kerning first=76 second=380 amount=-1 +kerning first=284 second=8217 amount=-1 +kerning first=70 second=225 amount=-1 +kerning first=296 second=338 amount=-1 +kerning first=112 second=380 amount=-1 +kerning first=106 second=225 amount=-1 +kerning first=260 second=338 amount=-1 +kerning first=351 second=228 amount=-1 +kerning first=290 second=270 amount=-1 +kerning first=217 second=380 amount=-1 +kerning first=1107 second=1103 amount=-1 +kerning first=375 second=98 amount=-1 +kerning first=216 second=280 amount=-1 +kerning first=339 second=98 amount=-1 +kerning first=45 second=105 amount=-1 +kerning first=101 second=251 amount=-1 +kerning first=86 second=235 amount=-1 +kerning first=344 second=228 amount=-1 +kerning first=288 second=280 amount=-1 +kerning first=122 second=235 amount=-1 +kerning first=206 second=251 amount=-1 +kerning first=117 second=303 amount=-1 +kerning first=231 second=98 amount=-1 +kerning first=314 second=251 amount=-1 +kerning first=76 second=206 amount=-1 +kerning first=1105 second=1093 amount=-1 +kerning first=195 second=98 amount=-1 +kerning first=236 second=228 amount=-1 +kerning first=84 second=225 amount=-2 +kerning first=278 second=251 amount=-1 +kerning first=268 second=270 amount=-1 +kerning first=263 second=235 amount=-1 +kerning first=45 second=303 amount=-1 +kerning first=303 second=98 amount=-1 +kerning first=200 second=228 amount=-1 +kerning first=120 second=225 amount=-1 +kerning first=376 second=270 amount=-1 +kerning first=267 second=98 amount=-1 +kerning first=350 second=251 amount=-1 +kerning first=8217 second=255 amount=-1 +kerning first=284 second=370 amount=-1 +kerning first=288 second=218 amount=-1 +kerning first=305 second=46 amount=-1 +kerning first=356 second=370 amount=-1 +kerning first=216 second=218 amount=-1 +kerning first=283 second=102 amount=-1 +kerning first=321 second=289 amount=-1 +kerning first=256 second=355 amount=-1 +kerning first=102 second=273 amount=-1 +kerning first=369 second=225 amount=-1 +kerning first=313 second=325 amount=-1 +kerning first=1045 second=1070 amount=-1 +kerning first=106 second=102 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=233 second=46 amount=-2 +kerning first=115 second=355 amount=-1 +kerning first=275 second=303 amount=-1 +kerning first=221 second=83 amount=-2 +kerning first=364 second=81 amount=-1 +kerning first=365 second=363 amount=-1 +kerning first=267 second=112 amount=-1 +kerning first=65 second=67 amount=-1 +kerning first=232 second=318 amount=-1 +kerning first=231 second=112 amount=-1 +kerning first=268 second=318 amount=-1 +kerning first=295 second=8221 amount=-2 +kerning first=195 second=112 amount=-1 +kerning first=344 second=214 amount=-1 +kerning first=90 second=112 amount=-1 +kerning first=260 second=279 amount=-1 +kerning first=75 second=266 amount=-1 +kerning first=234 second=102 amount=-1 +kerning first=277 second=311 amount=-1 +kerning first=200 second=214 amount=-1 +kerning first=351 second=259 amount=-1 +kerning first=371 second=235 amount=-1 +kerning first=366 second=105 amount=-1 +kerning first=8250 second=370 amount=-2 +kerning first=203 second=117 amount=-1 +kerning first=220 second=81 amount=-1 +kerning first=278 second=67 amount=-1 +kerning first=207 second=259 amount=-1 +kerning first=375 second=112 amount=-1 +kerning first=8217 second=241 amount=-1 +kerning first=206 second=67 amount=-1 +kerning first=279 second=259 amount=-1 +kerning first=376 second=304 amount=-1 +kerning first=256 second=81 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=277 second=249 amount=-1 +kerning first=282 second=346 amount=-1 +kerning first=268 second=100 amount=-1 +kerning first=76 second=282 amount=-1 +kerning first=1059 second=1098 amount=-1 +kerning first=313 second=249 amount=-1 +kerning first=45 second=379 amount=-2 +kerning first=304 second=100 amount=-1 +kerning first=1045 second=1050 amount=-1 +kerning first=71 second=350 amount=-1 +kerning first=350 second=327 amount=-1 +kerning first=205 second=249 amount=-1 +kerning first=210 second=346 amount=-1 +kerning first=370 second=275 amount=-1 +kerning first=201 second=230 amount=-1 +kerning first=241 second=249 amount=-1 +kerning first=376 second=100 amount=-2 +kerning first=86 second=45 amount=-3 +kerning first=212 second=350 amount=-1 +kerning first=216 second=204 amount=-1 +kerning first=222 second=379 amount=-1 +kerning first=1043 second=1102 amount=-1 +kerning first=354 second=346 amount=-2 +kerning first=196 second=100 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=288 second=204 amount=-1 +kerning first=262 second=275 amount=-1 +kerning first=223 second=107 amount=-1 +kerning first=356 second=350 amount=-2 +kerning first=187 second=107 amount=-1 +kerning first=284 second=350 amount=-1 +kerning first=313 second=305 amount=-1 +kerning first=376 second=256 amount=-3 +kerning first=325 second=268 amount=-1 +kerning first=277 second=305 amount=-1 +kerning first=216 second=260 amount=-2 +kerning first=118 second=107 amount=-1 +kerning first=264 second=223 amount=-1 +kerning first=381 second=339 amount=-1 +kerning first=84 second=211 amount=-1 +kerning first=1070 second=1039 amount=-1 +kerning first=82 second=107 amount=-1 +kerning first=268 second=256 amount=-2 +kerning first=381 second=230 amount=-1 +kerning first=288 second=260 amount=-1 +kerning first=205 second=263 amount=-1 +kerning first=370 second=289 amount=-2 +kerning first=221 second=210 amount=-1 +kerning first=381 second=79 amount=-1 +kerning first=87 second=223 amount=-1 +kerning first=280 second=218 amount=-1 +kerning first=1059 second=1084 amount=-2 +kerning first=350 second=313 amount=-1 +kerning first=217 second=268 amount=-1 +kerning first=381 second=353 amount=-1 +kerning first=234 second=8217 amount=-1 +kerning first=221 second=192 amount=-3 +kerning first=45 second=365 amount=-1 +kerning first=75 second=218 amount=-1 +kerning first=278 second=313 amount=-1 +kerning first=270 second=8217 amount=-1 +kerning first=381 second=244 amount=-1 +kerning first=76 second=268 amount=-1 +kerning first=264 second=237 amount=-1 +kerning first=80 second=192 amount=-2 +kerning first=121 second=275 amount=-1 +kerning first=82 second=121 amount=-1 +kerning first=197 second=334 amount=-1 +kerning first=366 second=379 amount=-1 +kerning first=85 second=289 amount=-2 +kerning first=87 second=237 amount=-1 +kerning first=85 second=275 amount=-1 +kerning first=121 second=289 amount=-2 +kerning first=377 second=334 amount=-1 +kerning first=366 second=365 amount=-1 +kerning first=69 second=346 amount=-1 +kerning first=80 second=315 amount=-1 +kerning first=226 second=289 amount=-1 +kerning first=330 second=365 amount=-1 +kerning first=221 second=315 amount=-1 +kerning first=262 second=289 amount=-1 +kerning first=201 second=353 amount=-1 +kerning first=298 second=289 amount=-1 +kerning first=258 second=365 amount=-1 +kerning first=278 second=327 amount=-1 +kerning first=206 second=257 amount=-1 +kerning first=1069 second=1051 amount=-1 +kerning first=257 second=371 amount=-1 +kerning first=101 second=257 amount=-1 +kerning first=371 second=277 amount=-1 +kerning first=380 second=8249 amount=-2 +kerning first=364 second=347 amount=-1 +kerning first=187 second=381 amount=-2 +kerning first=328 second=347 amount=-1 +kerning first=90 second=302 amount=-1 +kerning first=324 second=251 amount=-1 +kerning first=344 second=8249 amount=-2 +kerning first=75 second=336 amount=-1 +kerning first=344 second=351 amount=-1 +kerning first=367 second=367 amount=-1 +kerning first=325 second=212 amount=-1 +kerning first=201 second=79 amount=-1 +kerning first=315 second=69 amount=-1 +kerning first=86 second=277 amount=-2 +kerning first=376 second=114 amount=-1 +kerning first=295 second=367 amount=-1 +kerning first=380 second=351 amount=-1 +kerning first=331 second=367 amount=-1 +kerning first=207 second=267 amount=-1 +kerning first=200 second=351 amount=-1 +kerning first=1058 second=1096 amount=-1 +kerning first=350 second=257 amount=-1 +kerning first=259 second=367 amount=-1 +kerning first=8217 second=378 amount=-1 +kerning first=217 second=212 amount=-1 +kerning first=8217 second=249 amount=-1 +kerning first=278 second=257 amount=-1 +kerning first=76 second=212 amount=-1 +kerning first=236 second=351 amount=-1 +kerning first=314 second=257 amount=-1 +kerning first=268 second=114 amount=-1 +kerning first=187 second=367 amount=-1 +kerning first=362 second=71 amount=-1 +kerning first=333 second=382 amount=-1 +kerning first=227 second=291 amount=-1 +kerning first=267 second=316 amount=-1 +kerning first=74 second=216 amount=-1 +kerning first=103 second=109 amount=-1 +kerning first=369 second=382 amount=-1 +kerning first=303 second=316 amount=-1 +kerning first=82 second=367 amount=-1 +kerning first=122 second=291 amount=-1 +kerning first=339 second=316 amount=-1 +kerning first=86 second=291 amount=-2 +kerning first=375 second=316 amount=-1 +kerning first=99 second=261 amount=-1 +kerning first=8217 second=263 amount=-2 +kerning first=366 second=113 amount=-1 +kerning first=102 second=267 amount=-1 +kerning first=8216 second=253 amount=-1 +kerning first=204 second=261 amount=-1 +kerning first=364 second=197 amount=-2 +kerning first=314 second=271 amount=-1 +kerning first=256 second=347 amount=-1 +kerning first=102 second=281 amount=-1 +kerning first=85 second=269 amount=-1 +kerning first=262 second=171 amount=-2 +kerning first=269 second=314 amount=-1 +kerning first=220 second=347 amount=-1 +kerning first=231 second=228 amount=-1 +kerning first=115 second=361 amount=-1 +kerning first=233 second=314 amount=-1 +kerning first=207 second=281 amount=-1 +kerning first=380 second=337 amount=-1 +kerning first=1058 second=1082 amount=-1 +kerning first=334 second=171 amount=-1 +kerning first=256 second=361 amount=-1 +kerning first=376 second=326 amount=-1 +kerning first=115 second=347 amount=-1 +kerning first=121 second=269 amount=-1 +kerning first=344 second=337 amount=-1 +kerning first=370 second=171 amount=-3 +kerning first=220 second=361 amount=-1 +kerning first=305 second=314 amount=-1 +kerning first=262 second=269 amount=-1 +kerning first=286 second=8221 amount=-1 +kerning first=85 second=171 amount=-3 +kerning first=328 second=361 amount=-1 +kerning first=365 second=371 amount=-1 +kerning first=121 second=171 amount=-2 +kerning first=195 second=316 amount=-1 +kerning first=323 second=216 amount=-1 +kerning first=302 second=67 amount=-1 +kerning first=232 second=326 amount=-1 +kerning first=298 second=269 amount=-1 +kerning first=231 second=316 amount=-1 +kerning first=1069 second=1037 amount=-1 +kerning first=250 second=8221 amount=-2 +kerning first=226 second=171 amount=-1 +kerning first=364 second=361 amount=-1 +kerning first=8218 second=251 amount=-1 +kerning first=268 second=326 amount=-1 +kerning first=313 second=45 amount=-1 +kerning first=116 second=103 amount=-1 +kerning first=1024 second=1060 amount=-1 +kerning first=201 second=224 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=67 second=331 amount=-1 +kerning first=230 second=252 amount=-1 +kerning first=76 second=78 amount=-1 +kerning first=266 second=252 amount=-1 +kerning first=317 second=70 amount=-1 +kerning first=381 second=224 amount=-1 +kerning first=1057 second=1051 amount=-1 +kerning first=262 second=227 amount=-1 +kerning first=344 second=226 amount=-1 +kerning first=275 second=46 amount=-2 +kerning first=82 second=101 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=213 second=201 amount=-1 +kerning first=89 second=252 amount=-1 +kerning first=121 second=227 amount=-2 +kerning first=382 second=246 amount=-1 +kerning first=217 second=226 amount=-2 +kerning first=8218 second=379 amount=-1 +kerning first=253 second=226 amount=-2 +kerning first=310 second=246 amount=-1 +kerning first=313 second=207 amount=-1 +kerning first=222 second=317 amount=-1 +kerning first=84 second=382 amount=-2 +kerning first=289 second=226 amount=-1 +kerning first=365 second=103 amount=-1 +kerning first=8216 second=248 amount=-1 +kerning first=325 second=226 amount=-1 +kerning first=284 second=356 amount=-1 +kerning first=100 second=311 amount=-1 +kerning first=211 second=362 amount=-1 +kerning first=371 second=291 amount=-1 +kerning first=302 second=252 amount=-1 +kerning first=284 second=90 amount=-1 +kerning first=335 second=291 amount=-1 +kerning first=338 second=252 amount=-1 +kerning first=257 second=103 amount=-1 +kerning first=45 second=317 amount=-3 +kerning first=374 second=252 amount=-1 +kerning first=221 second=103 amount=-2 +kerning first=81 second=317 amount=-1 +kerning first=356 second=90 amount=-1 +kerning first=263 second=291 amount=-1 +kerning first=1056 second=1067 amount=-1 +kerning first=298 second=213 amount=-1 +kerning first=8222 second=86 amount=-3 +kerning first=262 second=213 amount=-2 +kerning first=327 second=283 amount=-1 +kerning first=68 second=84 amount=-1 +kerning first=370 second=213 amount=-1 +kerning first=278 second=109 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=75 second=115 amount=-1 +kerning first=71 second=370 amount=-1 +kerning first=317 second=84 amount=-1 +kerning first=71 second=90 amount=-1 +kerning first=212 second=370 amount=-1 +kerning first=350 second=109 amount=-1 +kerning first=8222 second=220 amount=-2 +kerning first=314 second=109 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=252 second=115 amount=-1 +kerning first=68 second=70 amount=-1 +kerning first=272 second=8249 amount=-1 +kerning first=370 second=227 amount=-2 +kerning first=111 second=115 amount=-1 +kerning first=313 second=193 amount=-1 +kerning first=1090 second=1113 amount=-1 +kerning first=334 second=227 amount=-1 +kerning first=82 second=220 amount=-1 +kerning first=1054 second=1113 amount=-1 +kerning first=200 second=8249 amount=-1 +kerning first=298 second=227 amount=-1 +kerning first=203 second=334 amount=-1 +kerning first=310 second=232 amount=-1 +kerning first=232 second=44 amount=-2 +kerning first=248 second=104 amount=-1 +kerning first=196 second=368 amount=-2 +kerning first=72 second=339 amount=-1 +kerning first=382 second=232 amount=-1 +kerning first=304 second=44 amount=-1 +kerning first=366 second=303 amount=-1 +kerning first=324 second=115 amount=-1 +kerning first=85 second=213 amount=-1 +kerning first=268 second=44 amount=-1 +kerning first=216 second=70 amount=-1 +kerning first=66 second=323 amount=-2 +kerning first=1075 second=1113 amount=-1 +kerning first=282 second=78 amount=-1 +kerning first=295 second=115 amount=-1 +kerning first=368 second=120 amount=-1 +kerning first=102 second=318 amount=1 +kerning first=331 second=115 amount=-1 +kerning first=268 second=368 amount=-1 +kerning first=210 second=78 amount=-1 +kerning first=378 second=118 amount=-1 +kerning first=82 second=375 amount=-1 +kerning first=69 second=78 amount=-1 +kerning first=199 second=75 amount=-1 +kerning first=311 second=248 amount=-1 +kerning first=288 second=70 amount=-1 +kerning first=1057 second=1080 amount=-1 +kerning first=376 second=368 amount=-1 +kerning first=224 second=120 amount=-1 +kerning first=315 second=323 amount=-1 +kerning first=350 second=201 amount=-1 +kerning first=234 second=118 amount=-1 +kerning first=323 second=113 amount=-1 +kerning first=99 second=253 amount=-1 +kerning first=379 second=75 amount=-1 +kerning first=201 second=85 amount=-1 +kerning first=290 second=80 amount=-1 +kerning first=198 second=118 amount=-1 +kerning first=287 second=113 amount=-1 +kerning first=278 second=201 amount=-1 +kerning first=236 second=106 amount=-1 +kerning first=204 second=253 amount=-1 +kerning first=86 second=73 amount=-1 +kerning first=375 second=246 amount=-1 +kerning first=290 second=278 amount=-1 +kerning first=240 second=253 amount=-1 +kerning first=303 second=246 amount=-1 +kerning first=334 second=68 amount=-1 +kerning first=298 second=99 amount=-1 +kerning first=267 second=246 amount=-1 +kerning first=231 second=246 amount=-1 +kerning first=262 second=68 amount=-1 +kerning first=69 second=290 amount=-1 +kerning first=298 second=283 amount=-1 +kerning first=187 second=196 amount=-2 +kerning first=196 second=108 amount=-1 +kerning first=217 second=338 amount=-1 +kerning first=262 second=283 amount=-1 +kerning first=379 second=335 amount=-1 +kerning first=377 second=328 amount=-1 +kerning first=258 second=275 amount=-1 +kerning first=296 second=380 amount=-1 +kerning first=268 second=108 amount=-1 +kerning first=71 second=193 amount=-1 +kerning first=332 second=380 amount=-1 +kerning first=232 second=108 amount=-1 +kerning first=76 second=338 amount=-1 +kerning first=8216 second=362 amount=-1 +kerning first=381 second=286 amount=-1 +kerning first=193 second=103 amount=-1 +kerning first=199 second=335 amount=-1 +kerning first=332 second=120 amount=-1 +kerning first=233 second=110 amount=-1 +kerning first=370 second=283 amount=-1 +kerning first=269 second=110 amount=-1 +kerning first=192 second=231 amount=-1 +kerning first=363 second=105 amount=-1 +kerning first=205 second=287 amount=-1 +kerning first=1040 second=1118 amount=-1 +kerning first=201 second=286 amount=-1 +kerning first=352 second=331 amount=-1 +kerning first=82 second=115 amount=-1 +kerning first=284 second=193 amount=-1 +kerning first=87 second=231 amount=-2 +kerning first=324 second=255 amount=-1 +kerning first=1050 second=1038 amount=-1 +kerning first=208 second=65 amount=-2 +kerning first=280 second=331 amount=-1 +kerning first=212 second=193 amount=-2 +kerning first=316 second=331 amount=-1 +kerning first=223 second=115 amount=-1 +kerning first=280 second=65 amount=-1 +kerning first=259 second=115 amount=-1 +kerning first=264 second=231 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=352 second=65 amount=-2 +kerning first=1075 second=1083 amount=-1 +kerning first=103 second=331 amount=-1 +kerning first=83 second=380 amount=-1 +kerning first=187 second=115 amount=-1 +kerning first=325 second=338 amount=-1 +kerning first=354 second=78 amount=-1 +kerning first=356 second=193 amount=-3 +kerning first=274 second=302 amount=-1 +kerning first=313 second=255 amount=-1 +kerning first=371 second=347 amount=-1 +kerning first=75 second=210 amount=-1 +kerning first=1055 second=1073 amount=-1 +kerning first=366 second=250 amount=-1 +kerning first=277 second=255 amount=-1 +kerning first=335 second=347 amount=-1 +kerning first=1102 second=1076 amount=-1 +kerning first=202 second=302 amount=-1 +kerning first=241 second=255 amount=-1 +kerning first=354 second=352 amount=-2 +kerning first=205 second=255 amount=-1 +kerning first=263 second=347 amount=-1 +kerning first=1074 second=1078 amount=-1 +kerning first=258 second=250 amount=-1 +kerning first=227 second=347 amount=-1 +kerning first=100 second=255 amount=-1 +kerning first=196 second=262 amount=-1 +kerning first=365 second=307 amount=-1 +kerning first=250 second=371 amount=-1 +kerning first=346 second=8250 amount=-1 +kerning first=330 second=250 amount=-1 +kerning first=84 second=326 amount=-1 +kerning first=122 second=347 amount=-1 +kerning first=1038 second=1078 amount=-2 +kerning first=45 second=250 amount=-1 +kerning first=205 second=378 amount=-1 +kerning first=380 second=249 amount=-1 +kerning first=69 second=352 amount=-1 +kerning first=83 second=296 amount=-1 +kerning first=1039 second=1077 amount=-1 +kerning first=117 second=250 amount=-1 +kerning first=277 second=378 amount=-1 +kerning first=278 second=377 amount=-1 +kerning first=76 second=332 amount=-1 +kerning first=213 second=257 amount=-1 +kerning first=249 second=257 amount=-1 +kerning first=367 second=8220 amount=-2 +kerning first=121 second=283 amount=-1 +kerning first=193 second=267 amount=-1 +kerning first=269 second=328 amount=-1 +kerning first=331 second=8220 amount=-2 +kerning first=85 second=283 amount=-1 +kerning first=346 second=302 amount=-1 +kerning first=1060 second=1047 amount=-1 +kerning first=210 second=352 amount=-1 +kerning first=363 second=103 amount=-1 +kerning first=295 second=8220 amount=-2 +kerning first=100 second=378 amount=-1 +kerning first=195 second=366 amount=-2 +kerning first=378 second=333 amount=-1 +kerning first=259 second=8220 amount=-1 +kerning first=267 second=106 amount=-1 +kerning first=217 second=332 amount=-1 +kerning first=1070 second=1045 amount=-1 +kerning first=223 second=8220 amount=-1 +kerning first=203 second=66 amount=-1 +kerning first=303 second=106 amount=1 +kerning first=350 second=377 amount=-1 +kerning first=325 second=332 amount=-1 +kerning first=317 second=288 amount=-1 +kerning first=87 second=287 amount=-2 +kerning first=1067 second=1092 amount=-1 +kerning first=231 second=106 amount=-1 +kerning first=228 second=287 amount=-1 +kerning first=82 second=8220 amount=-3 +kerning first=192 second=287 amount=-1 +kerning first=46 second=8220 amount=-3 +kerning first=256 second=87 amount=-3 +kerning first=74 second=113 amount=-1 +kerning first=339 second=106 amount=-1 +kerning first=281 second=254 amount=-1 +kerning first=264 second=287 amount=-1 +kerning first=375 second=106 amount=-1 +kerning first=202 second=85 amount=-1 +kerning first=86 second=347 amount=-2 +kerning first=84 second=217 amount=-1 +kerning first=304 second=262 amount=-1 +kerning first=336 second=287 amount=-1 +kerning first=258 second=99 amount=-1 +kerning first=364 second=243 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=87 second=100 amount=-2 +kerning first=366 second=99 amount=-1 +kerning first=344 second=281 amount=-1 +kerning first=376 second=262 amount=-1 +kerning first=330 second=99 amount=-1 +kerning first=380 second=281 amount=-1 +kerning first=83 second=120 amount=-1 +kerning first=192 second=263 amount=-1 +kerning first=311 second=242 amount=-1 +kerning first=220 second=243 amount=-1 +kerning first=8217 second=199 amount=-1 +kerning first=256 second=243 amount=-1 +kerning first=268 second=197 amount=-2 +kerning first=90 second=198 amount=-1 +kerning first=66 second=119 amount=-2 +kerning first=211 second=354 amount=-1 +kerning first=8220 second=331 amount=-1 +kerning first=268 second=374 amount=-1 +kerning first=376 second=197 amount=-3 +kerning first=207 second=119 amount=-1 +kerning first=85 second=334 amount=-1 +kerning first=195 second=254 amount=-1 +kerning first=243 second=119 amount=-1 +kerning first=196 second=374 amount=-3 +kerning first=83 second=324 amount=-1 +kerning first=1044 second=1054 amount=-1 +kerning first=279 second=119 amount=-1 +kerning first=249 second=369 amount=-1 +kerning first=288 second=274 amount=-1 +kerning first=315 second=119 amount=-1 +kerning first=78 second=289 amount=-1 +kerning first=317 second=344 amount=-1 +kerning first=351 second=119 amount=-1 +kerning first=321 second=369 amount=-1 +kerning first=119 second=324 amount=-1 +kerning first=262 second=334 amount=-2 +kerning first=218 second=74 amount=-1 +kerning first=331 second=118 amount=-1 +kerning first=379 second=279 amount=-1 +kerning first=68 second=344 amount=-1 +kerning first=333 second=46 amount=-2 +kerning first=8216 second=375 amount=-1 +kerning first=67 second=339 amount=-1 +kerning first=263 second=229 amount=-1 +kerning first=103 second=339 amount=-1 +kerning first=218 second=284 amount=-1 +kerning first=316 second=339 amount=-1 +kerning first=77 second=284 amount=-1 +kerning first=368 second=324 amount=-1 +kerning first=371 second=229 amount=-1 +kerning first=1057 second=1024 amount=-1 +kerning first=8222 second=226 amount=-1 +kerning first=262 second=219 amount=-1 +kerning first=302 second=244 amount=-1 +kerning first=241 second=8217 amount=-2 +kerning first=69 second=86 amount=-1 +kerning first=277 second=8217 amount=-1 +kerning first=205 second=199 amount=-1 +kerning first=374 second=244 amount=-2 +kerning first=313 second=8217 amount=-2 +kerning first=350 second=209 amount=-1 +kerning first=323 second=264 amount=-1 +kerning first=354 second=234 amount=-2 +kerning first=367 second=107 amount=-1 +kerning first=282 second=86 amount=-1 +kerning first=84 second=66 amount=-1 +kerning first=313 second=199 amount=-1 +kerning first=338 second=254 amount=-1 +kerning first=100 second=8217 amount=-1 +kerning first=1049 second=1089 amount=-1 +kerning first=210 second=86 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=370 second=334 amount=-1 +kerning first=252 second=121 amount=-1 +kerning first=272 second=82 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=212 second=364 amount=-1 +kerning first=375 second=254 amount=-1 +kerning first=219 second=289 amount=-2 +kerning first=206 second=289 amount=-1 +kerning first=200 second=241 amount=-1 +kerning first=255 second=289 amount=-2 +kerning first=1024 second=1041 amount=-1 +kerning first=89 second=244 amount=-2 +kerning first=111 second=121 amount=-1 +kerning first=71 second=364 amount=-1 +kerning first=377 second=205 amount=-1 +kerning first=75 second=121 amount=-2 +kerning first=327 second=289 amount=-1 +kerning first=231 second=254 amount=-1 +kerning first=278 second=209 amount=-1 +kerning first=266 second=380 amount=-1 +kerning first=194 second=244 amount=-1 +kerning first=363 second=289 amount=-1 +kerning first=267 second=254 amount=-1 +kerning first=284 second=364 amount=-1 +kerning first=303 second=254 amount=-1 +kerning first=266 second=244 amount=-1 +kerning first=339 second=254 amount=-1 +kerning first=202 second=296 amount=-1 +kerning first=278 second=117 amount=-1 +kerning first=76 second=72 amount=-1 +kerning first=362 second=225 amount=-2 +kerning first=286 second=200 amount=-1 +kerning first=72 second=251 amount=-1 +kerning first=274 second=296 amount=-1 +kerning first=350 second=117 amount=-1 +kerning first=317 second=76 amount=-1 +kerning first=99 second=102 amount=-1 +kerning first=314 second=117 amount=-1 +kerning first=214 second=200 amount=-1 +kerning first=346 second=296 amount=-1 +kerning first=315 second=85 amount=-1 +kerning first=333 second=122 amount=-1 +kerning first=218 second=225 amount=-2 +kerning first=108 second=251 amount=-1 +kerning first=313 second=370 amount=-1 +kerning first=280 second=71 amount=-1 +kerning first=249 second=251 amount=-1 +kerning first=324 second=121 amount=-1 +kerning first=221 second=97 amount=-2 +kerning first=290 second=225 amount=-1 +kerning first=321 second=251 amount=-1 +kerning first=310 second=240 amount=-1 +kerning first=99 second=46 amount=-1 +kerning first=83 second=206 amount=-1 +kerning first=365 second=97 amount=-1 +kerning first=80 second=245 amount=-1 +kerning first=1054 second=1063 amount=-1 +kerning first=240 second=46 amount=-2 +kerning first=249 second=103 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=1043 second=1108 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=257 second=363 amount=-1 +kerning first=382 second=240 amount=-1 +kerning first=334 second=219 amount=-1 +kerning first=206 second=117 amount=-1 +kerning first=332 second=206 amount=-1 +kerning first=8250 second=84 amount=-2 +kerning first=221 second=245 amount=-2 +kerning first=87 second=83 amount=-2 +kerning first=219 second=337 amount=-1 +kerning first=315 second=214 amount=-1 +kerning first=288 second=330 amount=-1 +kerning first=192 second=83 amount=-2 +kerning first=222 second=194 amount=-2 +kerning first=90 second=310 amount=-1 +kerning first=207 second=214 amount=-1 +kerning first=81 second=194 amount=-2 +kerning first=211 second=298 amount=-1 +kerning first=77 second=250 amount=-1 +kerning first=8220 second=65 amount=-4 +kerning first=1069 second=1043 amount=-1 +kerning first=1038 second=1082 amount=-2 +kerning first=362 second=284 amount=-1 +kerning first=289 second=230 amount=-1 +kerning first=108 second=369 amount=-1 +kerning first=250 second=259 amount=-1 +kerning first=259 second=375 amount=-1 +kerning first=1058 second=1088 amount=-1 +kerning first=72 second=369 amount=-1 +kerning first=214 second=259 amount=-1 +kerning first=223 second=375 amount=-1 +kerning first=272 second=77 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=187 second=375 amount=-2 +kerning first=286 second=259 amount=-1 +kerning first=377 second=116 amount=-1 +kerning first=66 second=214 amount=-1 +kerning first=200 second=77 amount=-1 +kerning first=205 second=338 amount=-1 +kerning first=80 second=313 amount=-1 +kerning first=367 second=375 amount=-1 +kerning first=203 second=304 amount=-1 +kerning first=269 second=116 amount=-1 +kerning first=331 second=375 amount=-1 +kerning first=67 second=71 amount=-2 +kerning first=233 second=116 amount=-1 +kerning first=295 second=375 amount=-1 +kerning first=1025 second=1049 amount=-1 +kerning first=366 second=194 amount=-2 +kerning first=332 second=220 amount=-1 +kerning first=1036 second=1108 amount=-1 +kerning first=327 second=233 amount=-1 +kerning first=332 second=330 amount=-1 +kerning first=291 second=233 amount=-1 +kerning first=356 second=291 amount=-2 +kerning first=88 second=214 amount=-1 +kerning first=260 second=220 amount=-2 +kerning first=88 second=71 amount=-1 +kerning first=203 second=298 amount=-1 +kerning first=284 second=291 amount=-1 +kerning first=74 second=337 amount=-1 +kerning first=248 second=291 amount=-1 +kerning first=78 second=350 amount=-1 +kerning first=315 second=194 amount=-1 +kerning first=212 second=291 amount=-1 +kerning first=70 second=248 amount=-1 +kerning first=228 second=171 amount=-1 +kerning first=87 second=97 amount=-2 +kerning first=107 second=291 amount=-1 +kerning first=219 second=350 amount=-1 +kerning first=377 second=213 amount=-1 +kerning first=84 second=304 amount=-1 +kerning first=198 second=334 amount=-1 +kerning first=71 second=291 amount=-1 +kerning first=274 second=324 amount=-1 +kerning first=336 second=97 amount=-1 +kerning first=277 second=110 amount=-1 +kerning first=260 second=84 amount=-3 +kerning first=382 second=324 amount=-1 +kerning first=313 second=110 amount=-1 +kerning first=234 second=311 amount=-1 +kerning first=264 second=97 amount=-1 +kerning first=198 second=311 amount=-1 +kerning first=269 second=380 amount=-1 +kerning first=193 second=71 amount=-1 +kerning first=323 second=337 amount=-1 +kerning first=225 second=318 amount=-1 +kerning first=266 second=68 amount=-1 +kerning first=1027 second=1101 amount=-1 +kerning first=327 second=350 amount=-1 +kerning first=83 second=330 amount=-1 +kerning first=202 second=324 amount=-1 +kerning first=225 second=44 amount=-1 +kerning first=255 second=104 amount=-1 +kerning first=346 second=98 amount=-1 +kerning first=1113 second=1081 amount=-1 +kerning first=260 second=234 amount=-1 +kerning first=346 second=78 amount=-1 +kerning first=121 second=378 amount=-1 +kerning first=296 second=234 amount=-1 +kerning first=280 second=381 amount=-1 +kerning first=261 second=44 amount=-1 +kerning first=83 second=70 amount=-1 +kerning first=187 second=260 amount=-2 +kerning first=274 second=78 amount=-1 +kerning first=8218 second=363 amount=-1 +kerning first=234 second=187 amount=-1 +kerning first=352 second=381 amount=-1 +kerning first=356 second=277 amount=-2 +kerning first=197 second=213 amount=-1 +kerning first=363 second=104 amount=-1 +kerning first=202 second=78 amount=-1 +kerning first=202 second=310 amount=-1 +kerning first=120 second=44 amount=-1 +kerning first=119 second=234 amount=-1 +kerning first=83 second=344 amount=-1 +kerning first=84 second=44 amount=-3 +kerning first=198 second=325 amount=-1 +kerning first=291 second=104 amount=-1 +kerning first=192 second=111 amount=-1 +kerning first=110 second=351 amount=-1 +kerning first=269 second=227 amount=-1 +kerning first=346 second=310 amount=-1 +kerning first=74 second=351 amount=-1 +kerning first=233 second=227 amount=-1 +kerning first=264 second=111 amount=-1 +kerning first=193 second=85 amount=-2 +kerning first=66 second=194 amount=-3 +kerning first=198 second=81 amount=-1 +kerning first=274 second=310 amount=-1 +kerning first=214 second=377 amount=-1 +kerning first=369 second=44 amount=-1 +kerning first=266 second=257 amount=-1 +kerning first=88 second=85 amount=-1 +kerning first=333 second=44 amount=-2 +kerning first=337 second=303 amount=-1 +kerning first=198 second=201 amount=-1 +kerning first=211 second=70 amount=-1 +kerning first=377 second=227 amount=-1 +kerning first=87 second=111 amount=-2 +kerning first=83 second=220 amount=-1 +kerning first=107 second=277 amount=-1 +kerning first=352 second=367 amount=-1 +kerning first=119 second=248 amount=-1 +kerning first=80 second=8249 amount=-1 +kerning first=220 second=235 amount=-1 +kerning first=78 second=118 amount=-1 +kerning first=275 second=380 amount=-1 +kerning first=286 second=377 amount=-1 +kerning first=256 second=235 amount=-1 +kerning first=219 second=118 amount=-1 +kerning first=74 second=105 amount=-1 +kerning first=251 second=8220 amount=-2 +kerning first=44 second=8249 amount=-1 +kerning first=347 second=380 amount=-1 +kerning first=206 second=253 amount=-1 +kerning first=303 second=231 amount=-1 +kerning first=1027 second=1087 amount=-1 +kerning first=364 second=235 amount=-1 +kerning first=310 second=338 amount=-1 +kerning first=351 second=367 amount=-1 +kerning first=110 second=8220 amount=-2 +kerning first=378 second=283 amount=-1 +kerning first=236 second=287 amount=-1 +kerning first=290 second=361 amount=-1 +kerning first=200 second=287 amount=-1 +kerning first=377 second=241 amount=-1 +kerning first=203 second=380 amount=-1 +kerning first=203 second=270 amount=-1 +kerning first=204 second=287 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=272 second=287 amount=-1 +kerning first=233 second=108 amount=-1 +kerning first=220 second=193 amount=-2 +kerning first=335 second=120 amount=-1 +kerning first=380 second=287 amount=-1 +kerning first=317 second=249 amount=-1 +kerning first=269 second=241 amount=-1 +kerning first=79 second=193 amount=-2 +kerning first=344 second=287 amount=-1 +kerning first=365 second=8249 amount=-1 +kerning first=233 second=241 amount=-1 +kerning first=296 second=248 amount=-1 +kerning first=257 second=8249 amount=-1 +kerning first=364 second=193 amount=-2 +kerning first=260 second=248 amount=-1 +kerning first=221 second=8249 amount=-3 +kerning first=377 second=255 amount=-2 +kerning first=346 second=352 amount=-1 +kerning first=333 second=318 amount=-1 +kerning first=368 second=112 amount=-1 +kerning first=369 second=318 amount=-1 +kerning first=1027 second=1073 amount=-1 +kerning first=305 second=255 amount=-1 +kerning first=115 second=251 amount=-1 +kerning first=296 second=112 amount=-1 +kerning first=1063 second=1073 amount=-1 +kerning first=256 second=221 amount=-3 +kerning first=269 second=255 amount=-1 +kerning first=87 second=353 amount=-2 +kerning first=260 second=112 amount=-1 +kerning first=1051 second=1104 amount=-1 +kerning first=233 second=255 amount=-1 +kerning first=197 second=255 amount=-1 +kerning first=260 second=262 amount=-1 +kerning first=85 second=74 amount=-1 +kerning first=296 second=262 amount=-1 +kerning first=378 second=311 amount=-1 +kerning first=119 second=112 amount=-1 +kerning first=79 second=221 amount=-1 +kerning first=202 second=338 amount=-1 +kerning first=224 second=98 amount=-1 +kerning first=99 second=314 amount=-1 +kerning first=8218 second=377 amount=-1 +kerning first=79 second=207 amount=-1 +kerning first=240 second=314 amount=-1 +kerning first=262 second=74 amount=-1 +kerning first=260 second=98 amount=-1 +kerning first=193 second=214 amount=-1 +kerning first=79 second=379 amount=-1 +kerning first=334 second=74 amount=-1 +kerning first=202 second=352 amount=-1 +kerning first=370 second=74 amount=-1 +kerning first=203 second=366 amount=-1 +kerning first=310 second=352 amount=-1 +kerning first=119 second=98 amount=-1 +kerning first=251 second=105 amount=-1 +kerning first=274 second=352 amount=-1 +kerning first=83 second=98 amount=-1 +kerning first=287 second=105 amount=-1 +kerning first=368 second=81 amount=-1 +kerning first=250 second=307 amount=-1 +kerning first=103 second=224 amount=-1 +kerning first=210 second=282 amount=-1 +kerning first=365 second=8221 amount=-2 +kerning first=67 second=224 amount=-1 +kerning first=257 second=8221 amount=-1 +kerning first=72 second=242 amount=-1 +kerning first=98 second=106 amount=-1 +kerning first=208 second=224 amount=-1 +kerning first=199 second=81 amount=-2 +kerning first=69 second=282 amount=-1 +kerning first=347 second=106 amount=-1 +kerning first=280 second=224 amount=-1 +kerning first=233 second=98 amount=-1 +kerning first=235 second=355 amount=-1 +kerning first=217 second=346 amount=-1 +kerning first=108 second=333 amount=-1 +kerning first=86 second=67 amount=-1 +kerning first=379 second=81 amount=-1 +kerning first=275 second=106 amount=-1 +kerning first=72 second=333 amount=-1 +kerning first=222 second=230 amount=-1 +kerning first=289 second=232 amount=-1 +kerning first=81 second=230 amount=-1 +kerning first=199 second=243 amount=-1 +kerning first=89 second=101 amount=-2 +kerning first=117 second=230 amount=-1 +kerning first=325 second=346 amount=-1 +kerning first=8250 second=326 amount=-1 +kerning first=194 second=101 amount=-1 +kerning first=45 second=230 amount=-1 +kerning first=203 second=256 amount=-1 +kerning first=266 second=101 amount=-1 +kerning first=302 second=101 amount=-1 +kerning first=1050 second=1060 amount=-2 +kerning first=77 second=334 amount=-1 +kerning first=98 second=120 amount=-1 +kerning first=282 second=268 amount=-1 +kerning first=255 second=233 amount=-1 +kerning first=218 second=334 amount=-1 +kerning first=1057 second=1072 amount=-1 +kerning first=280 second=79 amount=-1 +kerning first=203 second=120 amount=-1 +kerning first=72 second=335 amount=-1 +kerning first=354 second=268 amount=-1 +kerning first=90 second=204 amount=-1 +kerning first=286 second=192 amount=-1 +kerning first=379 second=243 amount=-1 +kerning first=1038 second=1098 amount=-1 +kerning first=257 second=251 amount=-1 +kerning first=235 second=229 amount=-1 +kerning first=8216 second=354 amount=-1 +kerning first=214 second=192 amount=-2 +kerning first=221 second=251 amount=-1 +kerning first=290 second=217 amount=-1 +kerning first=69 second=268 amount=-1 +kerning first=290 second=203 amount=-1 +kerning first=199 second=229 amount=-1 +kerning first=8250 second=76 amount=-3 +kerning first=379 second=229 amount=-1 +kerning first=291 second=118 amount=-1 +kerning first=365 second=251 amount=-1 +kerning first=354 second=282 amount=-1 +kerning first=255 second=118 amount=-1 +kerning first=275 second=120 amount=-1 +kerning first=195 second=218 amount=-2 +kerning first=307 second=229 amount=-1 +kerning first=363 second=118 amount=-1 +kerning first=1038 second=1084 amount=-2 +kerning first=282 second=282 amount=-1 +kerning first=327 second=118 amount=-1 +kerning first=347 second=120 amount=-1 +kerning first=303 second=232 amount=-1 +kerning first=366 second=244 amount=-1 +kerning first=45 second=202 amount=-3 +kerning first=307 second=257 amount=-1 +kerning first=203 second=368 amount=-1 +kerning first=290 second=219 amount=-1 +kerning first=81 second=202 amount=-1 +kerning first=375 second=232 amount=-1 +kerning first=381 second=70 amount=-1 +kerning first=8217 second=110 amount=-1 +kerning first=108 second=361 amount=-1 +kerning first=222 second=202 amount=-1 +kerning first=72 second=361 amount=-1 +kerning first=90 second=232 amount=-1 +kerning first=199 second=257 amount=-1 +kerning first=231 second=232 amount=-1 +kerning first=209 second=336 amount=-1 +kerning first=195 second=232 amount=-1 +kerning first=111 second=8250 amount=-1 +kerning first=84 second=278 amount=-1 +kerning first=73 second=267 amount=-1 +kerning first=197 second=332 amount=-1 +kerning first=8218 second=103 amount=-1 +kerning first=67 second=79 amount=-2 +kerning first=317 second=336 amount=-1 +kerning first=244 second=121 amount=-1 +kerning first=282 second=254 amount=-1 +kerning first=76 second=374 amount=-1 +kerning first=332 second=344 amount=-1 +kerning first=272 second=69 amount=-1 +kerning first=1042 second=1036 amount=-1 +kerning first=258 second=244 amount=-1 +kerning first=103 second=121 amount=-1 +kerning first=69 second=254 amount=-1 +kerning first=379 second=257 amount=-1 +kerning first=200 second=69 amount=-1 +kerning first=8250 second=226 amount=-1 +kerning first=371 second=273 amount=-1 +kerning first=330 second=244 amount=-1 +kerning first=105 second=254 amount=-1 +kerning first=195 second=246 amount=-1 +kerning first=72 second=347 amount=-1 +kerning first=67 second=107 amount=-1 +kerning first=232 second=382 amount=-1 +kerning first=268 second=382 amount=-1 +kerning first=90 second=246 amount=-1 +kerning first=1061 second=1057 amount=-2 +kerning first=304 second=382 amount=-1 +kerning first=1025 second=1057 amount=-1 +kerning first=250 second=117 amount=-1 +kerning first=103 second=107 amount=-1 +kerning first=290 second=205 amount=-1 +kerning first=330 second=230 amount=-1 +kerning first=368 second=334 amount=-1 +kerning first=256 second=281 amount=-1 +kerning first=234 second=363 amount=-1 +kerning first=8220 second=339 amount=-1 +kerning first=8250 second=78 amount=-3 +kerning first=352 second=121 amount=-1 +kerning first=1046 second=1047 amount=-1 +kerning first=249 second=361 amount=-1 +kerning first=330 second=216 amount=-1 +kerning first=352 second=107 amount=-1 +kerning first=8250 second=198 amount=-2 +kerning first=321 second=347 amount=-1 +kerning first=73 second=281 amount=-1 +kerning first=8217 second=375 amount=-1 +kerning first=321 second=361 amount=-1 +kerning first=200 second=336 amount=-1 +kerning first=249 second=347 amount=-1 +kerning first=244 second=107 amount=-1 +kerning first=376 second=382 amount=-2 +kerning first=228 second=371 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=8220 second=353 amount=-1 +kerning first=354 second=240 amount=-2 +kerning first=8218 second=89 amount=-3 +kerning first=1049 second=1095 amount=-1 +kerning first=108 second=347 amount=-1 +kerning first=280 second=107 amount=-1 +kerning first=220 second=305 amount=-1 +kerning first=84 second=46 amount=-3 +kerning first=202 second=226 amount=-1 +kerning first=120 second=46 amount=-1 +kerning first=264 second=245 amount=-1 +kerning first=202 second=336 amount=-1 +kerning first=1104 second=1083 amount=-1 +kerning first=274 second=226 amount=-1 +kerning first=281 second=8250 amount=-1 +kerning first=83 second=72 amount=-1 +kerning first=346 second=76 amount=-1 +kerning first=310 second=226 amount=-1 +kerning first=274 second=336 amount=-1 +kerning first=364 second=305 amount=-1 +kerning first=346 second=226 amount=-1 +kerning first=274 second=76 amount=-1 +kerning first=310 second=336 amount=-1 +kerning first=363 second=102 amount=-1 +kerning first=211 second=219 amount=-1 +kerning first=382 second=226 amount=-1 +kerning first=245 second=8250 amount=-1 +kerning first=364 second=45 amount=-3 +kerning first=79 second=224 amount=-1 +kerning first=379 second=259 amount=-1 +kerning first=269 second=333 amount=-1 +kerning first=381 second=252 amount=-1 +kerning first=8216 second=197 amount=-4 +kerning first=1027 second=1103 amount=-2 +kerning first=287 second=347 amount=-1 +kerning first=267 second=257 amount=-1 +kerning first=192 second=245 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=201 second=252 amount=-1 +kerning first=314 second=335 amount=-1 +kerning first=235 second=259 amount=-1 +kerning first=346 second=304 amount=-1 +kerning first=87 second=245 amount=-2 +kerning first=255 second=269 amount=-1 +kerning first=79 second=45 amount=-1 +kerning first=228 second=369 amount=-1 +kerning first=350 second=103 amount=-1 +kerning first=121 second=116 amount=-1 +kerning first=374 second=375 amount=-1 +kerning first=296 second=246 amount=-1 +kerning first=98 second=382 amount=-1 +kerning first=192 second=369 amount=-1 +kerning first=314 second=103 amount=-1 +kerning first=8220 second=351 amount=-1 +kerning first=260 second=246 amount=-1 +kerning first=199 second=259 amount=-1 +kerning first=302 second=375 amount=-1 +kerning first=203 second=382 amount=-1 +kerning first=264 second=369 amount=-1 +kerning first=242 second=103 amount=-1 +kerning first=90 second=266 amount=-1 +kerning first=260 second=332 amount=-1 +kerning first=206 second=103 amount=-1 +kerning first=220 second=45 amount=-3 +kerning first=119 second=246 amount=-1 +kerning first=379 second=109 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=328 second=45 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=233 second=253 amount=-1 +kerning first=296 second=332 amount=-1 +kerning first=87 second=369 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=89 second=375 amount=-1 +kerning first=67 second=266 amount=-2 +kerning first=368 second=332 amount=-1 +kerning first=1027 second=1075 amount=-1 +kerning first=235 second=109 amount=-1 +kerning first=304 second=122 amount=-1 +kerning first=268 second=122 amount=-1 +kerning first=307 second=109 amount=-1 +kerning first=232 second=122 amount=-1 +kerning first=230 second=375 amount=-1 +kerning first=275 second=382 amount=-1 +kerning first=194 second=375 amount=-1 +kerning first=199 second=109 amount=-1 +kerning first=8220 second=224 amount=-1 +kerning first=347 second=382 amount=-1 +kerning first=376 second=122 amount=-2 +kerning first=354 second=242 amount=-1 +kerning first=266 second=115 amount=-1 +kerning first=197 second=370 amount=-2 +kerning first=302 second=115 amount=-1 +kerning first=346 second=198 amount=-2 +kerning first=211 second=80 amount=-1 +kerning first=220 second=345 amount=-1 +kerning first=194 second=115 amount=-1 +kerning first=115 second=223 amount=-1 +kerning first=230 second=115 amount=-1 +kerning first=73 second=119 amount=-1 +kerning first=375 second=289 amount=-2 +kerning first=109 second=119 amount=-1 +kerning first=334 second=8217 amount=-1 +kerning first=202 second=198 amount=-1 +kerning first=377 second=68 amount=-1 +kerning first=338 second=115 amount=-1 +kerning first=374 second=115 amount=-2 +kerning first=274 second=198 amount=-1 +kerning first=250 second=119 amount=-1 +kerning first=269 second=253 amount=-1 +kerning first=286 second=119 amount=-1 +kerning first=305 second=253 amount=-1 +kerning first=198 second=313 amount=-1 +kerning first=275 second=108 amount=-1 +kerning first=76 second=303 amount=-1 +kerning first=377 second=253 amount=-2 +kerning first=347 second=108 amount=-1 +kerning first=1070 second=1059 amount=-1 +kerning first=350 second=75 amount=-1 +kerning first=1040 second=1105 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=368 second=246 amount=-1 +kerning first=278 second=75 amount=-1 +kerning first=205 second=269 amount=-1 +kerning first=8250 second=310 amount=-3 +kerning first=379 second=231 amount=-1 +kerning first=233 second=225 amount=-1 +kerning first=206 second=335 amount=-1 +kerning first=269 second=225 amount=-1 +kerning first=288 second=196 amount=-1 +kerning first=187 second=105 amount=-1 +kerning first=65 second=363 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=101 second=363 amount=-1 +kerning first=374 second=286 amount=-1 +kerning first=203 second=108 amount=-1 +kerning first=65 second=335 amount=-1 +kerning first=302 second=286 amount=-1 +kerning first=261 second=249 amount=-1 +kerning first=338 second=286 amount=-1 +kerning first=44 second=8221 amount=-3 +kerning first=278 second=363 amount=-1 +kerning first=201 second=280 amount=-1 +kerning first=84 second=203 amount=-1 +kerning first=226 second=8217 amount=-1 +kerning first=219 second=102 amount=-1 +kerning first=314 second=363 amount=-1 +kerning first=266 second=286 amount=-2 +kerning first=83 second=218 amount=-1 +kerning first=350 second=363 amount=-1 +kerning first=89 second=115 amount=-2 +kerning first=225 second=46 amount=-1 +kerning first=332 second=218 amount=-1 +kerning first=261 second=46 amount=-1 +kerning first=377 second=225 amount=-1 +kerning first=89 second=286 amount=-1 +kerning first=1059 second=1076 amount=-3 +kerning first=260 second=218 amount=-2 +kerning first=199 second=231 amount=-1 +kerning first=212 second=261 amount=-1 +kerning first=110 second=367 amount=-1 +kerning first=209 second=210 amount=-1 +kerning first=284 second=261 amount=-1 +kerning first=352 second=8220 amount=-1 +kerning first=68 second=296 amount=-1 +kerning first=316 second=8220 amount=-2 +kerning first=1052 second=1092 amount=-1 +kerning first=193 second=366 amount=-2 +kerning first=71 second=261 amount=-1 +kerning first=86 second=327 amount=-1 +kerning first=107 second=261 amount=-1 +kerning first=244 second=8220 amount=-1 +kerning first=204 second=211 amount=-1 +kerning first=90 second=352 amount=-1 +kerning first=208 second=8220 amount=-1 +kerning first=251 second=250 amount=-1 +kerning first=198 second=171 amount=-1 +kerning first=253 second=112 amount=-1 +kerning first=71 second=378 amount=-1 +kerning first=217 second=112 amount=-1 +kerning first=317 second=296 amount=-1 +kerning first=212 second=378 amount=-1 +kerning first=1042 second=1025 amount=-1 +kerning first=323 second=250 amount=-1 +kerning first=270 second=171 amount=-1 +kerning first=90 second=206 amount=-1 +kerning first=72 second=235 amount=-1 +kerning first=287 second=250 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=108 second=235 amount=-1 +kerning first=356 second=261 amount=-2 +kerning first=76 second=112 amount=-1 +kerning first=99 second=326 amount=-1 +kerning first=99 second=328 amount=-1 +kerning first=110 second=250 amount=-1 +kerning first=75 second=288 amount=-1 +kerning first=108 second=237 amount=-1 +kerning first=193 second=113 amount=-1 +kerning first=217 second=262 amount=-1 +kerning first=323 second=365 amount=-1 +kerning first=210 second=366 amount=-1 +kerning first=374 second=113 amount=-2 +kerning first=287 second=365 amount=-1 +kerning first=1057 second=1081 amount=-1 +kerning first=251 second=365 amount=-1 +kerning first=284 second=378 amount=-1 +kerning first=244 second=353 amount=-1 +kerning first=325 second=262 amount=-1 +kerning first=232 second=98 amount=-1 +kerning first=248 second=378 amount=-1 +kerning first=280 second=353 amount=-1 +kerning first=378 second=171 amount=-2 +kerning first=356 second=378 amount=-2 +kerning first=316 second=353 amount=-1 +kerning first=1043 second=1094 amount=-1 +kerning first=325 second=112 amount=-1 +kerning first=199 second=83 amount=-1 +kerning first=352 second=353 amount=-1 +kerning first=296 second=100 amount=-1 +kerning first=282 second=366 amount=-1 +kerning first=321 second=87 amount=-1 +kerning first=67 second=353 amount=-1 +kerning first=327 second=249 amount=-1 +kerning first=213 second=87 amount=-1 +kerning first=327 second=275 amount=-1 +kerning first=103 second=353 amount=-1 +kerning first=364 second=223 amount=-1 +kerning first=195 second=352 amount=-2 +kerning first=89 second=113 amount=-2 +kerning first=219 second=275 amount=-1 +kerning first=1045 second=1078 amount=-1 +kerning first=255 second=275 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=291 second=249 amount=-1 +kerning first=379 second=83 amount=-1 +kerning first=302 second=113 amount=-1 +kerning first=69 second=366 amount=-1 +kerning first=220 second=223 amount=-1 +kerning first=266 second=113 amount=-1 +kerning first=76 second=262 amount=-1 +kerning first=85 second=233 amount=-1 +kerning first=78 second=275 amount=-1 +kerning first=317 second=210 amount=-1 +kerning first=194 second=113 amount=-1 +kerning first=333 second=307 amount=-1 +kerning first=268 second=304 amount=-1 +kerning first=90 second=324 amount=-1 +kerning first=321 second=89 amount=-1 +kerning first=121 second=233 amount=-1 +kerning first=352 second=379 amount=-1 +kerning first=76 second=84 amount=-1 +kerning first=71 second=289 amount=-1 +kerning first=287 second=339 amount=-1 +kerning first=262 second=233 amount=-1 +kerning first=107 second=289 amount=-1 +kerning first=323 second=339 amount=-1 +kerning first=217 second=114 amount=-1 +kerning first=212 second=289 amount=-1 +kerning first=219 second=249 amount=-1 +kerning first=187 second=274 amount=-3 +kerning first=1100 second=1082 amount=-1 +kerning first=78 second=249 amount=-1 +kerning first=370 second=233 amount=-1 +kerning first=213 second=89 amount=-1 +kerning first=67 second=379 amount=-1 +kerning first=74 second=339 amount=-1 +kerning first=375 second=324 amount=-1 +kerning first=321 second=237 amount=-1 +kerning first=267 second=324 amount=-1 +kerning first=262 second=350 amount=-1 +kerning first=231 second=324 amount=-1 +kerning first=208 second=379 amount=-1 +kerning first=249 second=237 amount=-1 +kerning first=277 second=187 amount=-1 +kerning first=339 second=324 amount=-1 +kerning first=303 second=324 amount=-1 +kerning first=280 second=379 amount=-1 +kerning first=356 second=110 amount=-1 +kerning first=370 second=350 amount=-1 +kerning first=321 second=209 amount=-1 +kerning first=346 second=8217 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=89 second=260 amount=-3 +kerning first=1093 second=1108 amount=-1 +kerning first=334 second=350 amount=-1 +kerning first=376 second=119 amount=-1 +kerning first=213 second=209 amount=-1 +kerning first=255 second=277 amount=-1 +kerning first=217 second=234 amount=-1 +kerning first=219 second=277 amount=-1 +kerning first=76 second=86 amount=-1 +kerning first=327 second=277 amount=-1 +kerning first=75 second=316 amount=-1 +kerning first=289 second=234 amount=-1 +kerning first=266 second=260 amount=-2 +kerning first=291 second=277 amount=-1 +kerning first=187 second=302 amount=-3 +kerning first=325 second=234 amount=-1 +kerning first=78 second=277 amount=-1 +kerning first=280 second=351 amount=-1 +kerning first=280 second=264 amount=-1 +kerning first=202 second=76 amount=-1 +kerning first=338 second=260 amount=-1 +kerning first=1037 second=1054 amount=-1 +kerning first=356 second=289 amount=-2 +kerning first=244 second=351 amount=-1 +kerning first=1056 second=1089 amount=-1 +kerning first=352 second=351 amount=-1 +kerning first=332 second=72 amount=-1 +kerning first=1037 second=1072 amount=-1 +kerning first=316 second=351 amount=-1 +kerning first=187 second=103 amount=-1 +kerning first=374 second=260 amount=-3 +kerning first=103 second=351 amount=-1 +kerning first=287 second=367 amount=-1 +kerning first=67 second=351 amount=-1 +kerning first=67 second=264 amount=-2 +kerning first=221 second=111 amount=-2 +kerning first=323 second=367 amount=-1 +kerning first=198 second=199 amount=-1 +kerning first=321 second=74 amount=-1 +kerning first=272 second=291 amount=-1 +kerning first=251 second=367 amount=-1 +kerning first=209 second=212 amount=-1 +kerning first=262 second=364 amount=-1 +kerning first=286 second=8249 amount=-1 +kerning first=65 second=361 amount=-1 +kerning first=258 second=351 amount=-1 +kerning first=206 second=361 amount=-1 +kerning first=366 second=351 amount=-1 +kerning first=381 second=367 amount=-1 +kerning first=221 second=377 amount=-1 +kerning first=354 second=114 amount=-1 +kerning first=73 second=8249 amount=-2 +kerning first=278 second=361 amount=-1 +kerning first=117 second=351 amount=-1 +kerning first=109 second=8249 amount=-1 +kerning first=336 second=257 amount=-1 +kerning first=201 second=367 amount=-1 +kerning first=334 second=364 amount=-1 +kerning first=253 second=254 amount=-1 +kerning first=66 second=287 amount=-2 +kerning first=314 second=361 amount=-1 +kerning first=289 second=254 amount=-1 +kerning first=264 second=257 amount=-1 +kerning first=262 second=261 amount=-1 +kerning first=365 second=117 amount=-1 +kerning first=298 second=261 amount=-1 +kerning first=102 second=287 amount=-1 +kerning first=334 second=261 amount=-1 +kerning first=287 second=244 amount=-1 +kerning first=381 second=121 amount=-2 +kerning first=76 second=254 amount=-1 +kerning first=282 second=374 amount=-1 +kerning first=113 second=44 amount=-1 +kerning first=243 second=287 amount=-1 +kerning first=370 second=261 amount=-2 +kerning first=77 second=44 amount=-1 +kerning first=207 second=287 amount=-1 +kerning first=85 second=261 amount=-2 +kerning first=8217 second=269 amount=-2 +kerning first=210 second=374 amount=-1 +kerning first=374 second=274 amount=-1 +kerning first=315 second=287 amount=-1 +kerning first=121 second=261 amount=-2 +kerning first=201 second=381 amount=-1 +kerning first=338 second=274 amount=-1 +kerning first=279 second=287 amount=-1 +kerning first=350 second=237 amount=-1 +kerning first=338 second=210 amount=-1 +kerning first=314 second=237 amount=-1 +kerning first=8216 second=219 amount=-1 +kerning first=266 second=274 amount=-1 +kerning first=381 second=250 amount=-1 +kerning first=212 second=171 amount=-1 +kerning first=1058 second=1104 amount=-1 +kerning first=242 second=347 amount=-1 +kerning first=70 second=197 amount=-2 +kerning first=201 second=250 amount=-1 +kerning first=206 second=347 amount=-1 +kerning first=221 second=281 amount=-2 +kerning first=201 second=107 amount=-1 +kerning first=366 second=337 amount=-1 +kerning first=379 second=97 amount=-1 +kerning first=284 second=171 amount=-1 +kerning first=330 second=337 amount=-1 +kerning first=1059 second=1078 amount=-2 +kerning first=101 second=347 amount=-1 +kerning first=211 second=197 amount=-2 +kerning first=221 second=117 amount=-1 +kerning first=65 second=347 amount=-1 +kerning first=71 second=171 amount=-1 +kerning first=282 second=220 amount=-1 +kerning first=107 second=171 amount=-2 +kerning first=80 second=281 amount=-1 +kerning first=350 second=207 amount=-1 +kerning first=257 second=117 amount=-1 +kerning first=89 second=288 amount=-1 +kerning first=197 second=354 amount=-3 +kerning first=381 second=264 amount=-1 +kerning first=235 second=371 amount=-1 +kerning first=194 second=288 amount=-1 +kerning first=212 second=327 amount=-1 +kerning first=354 second=100 amount=-2 +kerning first=8218 second=229 amount=-1 +kerning first=81 second=379 amount=-1 +kerning first=307 second=371 amount=-1 +kerning first=87 second=257 amount=-2 +kerning first=356 second=171 amount=-3 +kerning first=290 second=304 amount=-1 +kerning first=298 second=378 amount=-1 +kerning first=289 second=240 amount=-1 +kerning first=106 second=314 amount=-1 +kerning first=350 second=347 amount=-1 +kerning first=377 second=354 amount=-1 +kerning first=325 second=240 amount=-1 +kerning first=201 second=264 amount=-1 +kerning first=314 second=347 amount=-1 +kerning first=374 second=243 amount=-2 +kerning first=217 second=240 amount=-1 +kerning first=1030 second=1054 amount=-1 +kerning first=114 second=289 amount=-1 +kerning first=278 second=347 amount=-1 +kerning first=253 second=240 amount=-1 +kerning first=200 second=317 amount=-1 +kerning first=195 second=220 amount=-2 +kerning first=222 second=77 amount=-1 +kerning first=283 second=314 amount=-1 +kerning first=258 second=214 amount=-1 +kerning first=272 second=317 amount=-1 +kerning first=268 second=298 amount=-1 +kerning first=258 second=71 amount=-1 +kerning first=262 second=90 amount=-1 +kerning first=86 second=201 amount=-1 +kerning first=86 second=207 amount=-1 +kerning first=370 second=90 amount=-1 +kerning first=334 second=90 amount=-1 +kerning first=74 second=224 amount=-1 +kerning first=376 second=298 amount=-1 +kerning first=313 second=291 amount=-1 +kerning first=277 second=291 amount=-1 +kerning first=195 second=84 amount=-3 +kerning first=113 second=318 amount=-1 +kerning first=287 second=224 amount=-1 +kerning first=241 second=291 amount=-1 +kerning first=199 second=97 amount=-1 +kerning first=204 second=213 amount=-1 +kerning first=205 second=291 amount=-1 +kerning first=259 second=287 amount=-1 +kerning first=90 second=84 amount=-1 +kerning first=245 second=103 amount=-1 +kerning first=200 second=200 amount=-1 +kerning first=371 second=311 amount=-1 +kerning first=254 second=318 amount=-1 +kerning first=323 second=224 amount=-1 +kerning first=100 second=291 amount=-1 +kerning first=307 second=97 amount=-1 +kerning first=81 second=77 amount=-1 +kerning first=366 second=71 amount=-1 +kerning first=335 second=311 amount=-1 +kerning first=258 second=337 amount=-1 +kerning first=45 second=77 amount=-3 +kerning first=330 second=71 amount=-1 +kerning first=326 second=318 amount=-1 +kerning first=235 second=97 amount=-1 +kerning first=263 second=311 amount=-1 +kerning first=85 second=90 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=304 second=284 amount=-1 +kerning first=335 second=187 amount=-1 +kerning first=362 second=44 amount=-3 +kerning first=45 second=85 amount=-2 +kerning first=90 second=344 amount=-1 +kerning first=326 second=44 amount=-1 +kerning first=381 second=381 amount=-1 +kerning first=86 second=325 amount=-1 +kerning first=236 second=303 amount=-1 +kerning first=268 second=284 amount=-2 +kerning first=1060 second=1025 amount=-1 +kerning first=195 second=234 amount=-1 +kerning first=262 second=104 amount=-1 +kerning first=218 second=44 amount=-3 +kerning first=196 second=284 amount=-1 +kerning first=68 second=310 amount=-1 +kerning first=381 second=101 amount=-1 +kerning first=281 second=324 amount=-1 +kerning first=290 second=44 amount=-1 +kerning first=380 second=303 amount=-1 +kerning first=90 second=70 amount=-1 +kerning first=121 second=104 amount=-1 +kerning first=310 second=81 amount=-1 +kerning first=232 second=104 amount=-1 +kerning first=254 second=44 amount=-2 +kerning first=272 second=194 amount=-2 +kerning first=87 second=251 amount=-1 +kerning first=375 second=234 amount=-1 +kerning first=99 second=227 amount=-1 +kerning first=200 second=194 amount=-1 +kerning first=192 second=251 amount=-1 +kerning first=45 second=351 amount=-1 +kerning first=86 second=187 amount=-1 +kerning first=199 second=111 amount=-1 +kerning first=258 second=85 amount=-2 +kerning first=264 second=251 amount=-1 +kerning first=205 second=277 amount=-1 +kerning first=231 second=234 amount=-1 +kerning first=222 second=85 amount=-1 +kerning first=228 second=251 amount=-1 +kerning first=267 second=234 amount=-1 +kerning first=376 second=284 amount=-1 +kerning first=204 second=227 amount=-1 +kerning first=317 second=310 amount=-1 +kerning first=1047 second=1093 amount=-1 +kerning first=316 second=105 amount=-1 +kerning first=8218 second=87 amount=-3 +kerning first=284 second=118 amount=-1 +kerning first=334 second=370 amount=-1 +kerning first=65 second=245 amount=-1 +kerning first=89 second=114 amount=-1 +kerning first=335 second=303 amount=-1 +kerning first=248 second=118 amount=-1 +kerning first=69 second=368 amount=-1 +kerning first=244 second=105 amount=-1 +kerning first=356 second=118 amount=-1 +kerning first=366 second=345 amount=-1 +kerning first=210 second=270 amount=-1 +kerning first=1090 second=1083 amount=-1 +kerning first=89 second=280 amount=-1 +kerning first=107 second=118 amount=-1 +kerning first=210 second=368 amount=-1 +kerning first=364 second=335 amount=-1 +kerning first=71 second=118 amount=-1 +kerning first=206 second=245 amount=-1 +kerning first=67 second=105 amount=-1 +kerning first=69 second=270 amount=-1 +kerning first=205 second=283 amount=-1 +kerning first=103 second=105 amount=-1 +kerning first=88 second=351 amount=-1 +kerning first=366 second=228 amount=-1 +kerning first=354 second=368 amount=-1 +kerning first=330 second=228 amount=-1 +kerning first=220 second=335 amount=-1 +kerning first=262 second=241 amount=-1 +kerning first=105 second=108 amount=-1 +kerning first=256 second=335 amount=-1 +kerning first=370 second=241 amount=-1 +kerning first=246 second=108 amount=-1 +kerning first=282 second=368 amount=-1 +kerning first=1054 second=1083 amount=-1 +kerning first=222 second=228 amount=-1 +kerning first=121 second=241 amount=-1 +kerning first=282 second=270 amount=-1 +kerning first=85 second=241 amount=-1 +kerning first=282 second=108 amount=-1 +kerning first=86 second=193 amount=-3 +kerning first=262 second=370 amount=-1 +kerning first=81 second=228 amount=-1 +kerning first=354 second=270 amount=-1 +kerning first=354 second=122 amount=-2 +kerning first=366 second=331 amount=-1 +kerning first=268 second=278 amount=-1 +kerning first=282 second=256 amount=-1 +kerning first=334 second=356 amount=-1 +kerning first=282 second=122 amount=-1 +kerning first=210 second=256 amount=-2 +kerning first=246 second=122 amount=-1 +kerning first=206 second=231 amount=-1 +kerning first=262 second=356 amount=-1 +kerning first=289 second=104 amount=-1 +kerning first=197 second=362 amount=-2 +kerning first=376 second=278 amount=-1 +kerning first=298 second=255 amount=-1 +kerning first=8218 second=237 amount=-1 +kerning first=314 second=231 amount=-1 +kerning first=354 second=256 amount=-3 +kerning first=8222 second=98 amount=-1 +kerning first=226 second=255 amount=-1 +kerning first=45 second=331 amount=-1 +kerning first=338 second=266 amount=-1 +kerning first=256 second=334 amount=-1 +kerning first=223 second=8250 amount=-1 +kerning first=374 second=266 amount=-1 +kerning first=362 second=111 amount=-1 +kerning first=338 second=280 amount=-1 +kerning first=314 second=245 amount=-1 +kerning first=45 second=345 amount=-1 +kerning first=85 second=255 amount=-1 +kerning first=374 second=280 amount=-1 +kerning first=302 second=266 amount=-1 +kerning first=330 second=214 amount=-1 +kerning first=210 second=122 amount=-1 +kerning first=65 second=231 amount=-1 +kerning first=194 second=266 amount=-1 +kerning first=45 second=65 amount=-2 +kerning first=105 second=122 amount=-1 +kerning first=81 second=65 amount=-2 +kerning first=89 second=266 amount=-1 +kerning first=366 second=214 amount=-1 +kerning first=8250 second=196 amount=-2 +kerning first=86 second=305 amount=-1 +kerning first=377 second=80 amount=-1 +kerning first=222 second=65 amount=-2 +kerning first=364 second=67 amount=-1 +kerning first=314 second=229 amount=-1 +kerning first=350 second=229 amount=-1 +kerning first=211 second=217 amount=-1 +kerning first=210 second=106 amount=-1 +kerning first=263 second=305 amount=-1 +kerning first=203 second=282 amount=-1 +kerning first=246 second=106 amount=-1 +kerning first=256 second=67 amount=-1 +kerning first=83 second=346 amount=-1 +kerning first=366 second=65 amount=-2 +kerning first=211 second=68 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=220 second=67 amount=-1 +kerning first=206 second=81 amount=-1 +kerning first=8222 second=380 amount=-2 +kerning first=8216 second=328 amount=-1 +kerning first=323 second=230 amount=-1 +kerning first=296 second=346 amount=-1 +kerning first=364 second=333 amount=-1 +kerning first=235 second=353 amount=-1 +kerning first=302 second=346 amount=-1 +kerning first=371 second=305 amount=-1 +kerning first=251 second=230 amount=-1 +kerning first=303 second=109 amount=-1 +kerning first=287 second=230 amount=-1 +kerning first=260 second=289 amount=-1 +kerning first=65 second=243 amount=-1 +kerning first=381 second=82 amount=-1 +kerning first=202 second=204 amount=-1 +kerning first=243 second=307 amount=-1 +kerning first=220 second=333 amount=-1 +kerning first=8217 second=289 amount=-2 +kerning first=279 second=307 amount=-1 +kerning first=69 second=256 amount=-1 +kerning first=74 second=230 amount=-1 +kerning first=274 second=204 amount=-1 +kerning first=368 second=346 amount=-1 +kerning first=311 second=275 amount=-1 +kerning first=209 second=259 amount=-1 +kerning first=351 second=307 amount=-1 +kerning first=256 second=333 amount=-1 +kerning first=8216 second=225 amount=-1 +kerning first=202 second=218 amount=-1 +kerning first=314 second=243 amount=-1 +kerning first=346 second=104 amount=-1 +kerning first=90 second=332 amount=-1 +kerning first=74 second=244 amount=-1 +kerning first=1057 second=1060 amount=-1 +kerning first=195 second=332 amount=-1 +kerning first=310 second=218 amount=-1 +kerning first=206 second=243 amount=-1 +kerning first=313 second=334 amount=-1 +kerning first=8217 second=275 amount=-2 +kerning first=323 second=79 amount=-1 +kerning first=274 second=218 amount=-1 +kerning first=246 second=120 amount=-1 +kerning first=315 second=192 amount=-1 +kerning first=198 second=374 amount=-1 +kerning first=282 second=120 amount=-1 +kerning first=101 second=229 amount=-1 +kerning first=327 second=333 amount=-1 +kerning first=354 second=120 amount=-1 +kerning first=203 second=268 amount=-1 +kerning first=69 second=120 amount=-1 +kerning first=105 second=120 amount=-1 +kerning first=278 second=229 amount=-1 +kerning first=70 second=334 amount=-1 +kerning first=8222 second=366 amount=-2 +kerning first=66 second=192 amount=-3 +kerning first=210 second=120 amount=-1 +kerning first=206 second=229 amount=-1 +kerning first=117 second=257 amount=-1 +kerning first=253 second=242 amount=-1 +kerning first=249 second=229 amount=-1 +kerning first=205 second=289 amount=-1 +kerning first=258 second=339 amount=-1 +kerning first=368 second=232 amount=-1 +kerning first=217 second=242 amount=-1 +kerning first=241 second=289 amount=-1 +kerning first=325 second=242 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=277 second=289 amount=-1 +kerning first=289 second=242 amount=-1 +kerning first=213 second=229 amount=-1 +kerning first=316 second=99 amount=-1 +kerning first=313 second=289 amount=-1 +kerning first=366 second=339 amount=-1 +kerning first=260 second=232 amount=-1 +kerning first=221 second=279 amount=-2 +kerning first=76 second=106 amount=-1 +kerning first=278 second=89 amount=-1 +kerning first=268 second=282 amount=-1 +kerning first=330 second=339 amount=-1 +kerning first=116 second=119 amount=-1 +kerning first=296 second=232 amount=-1 +kerning first=201 second=379 amount=-1 +kerning first=253 second=106 amount=-1 +kerning first=221 second=119 amount=-1 +kerning first=90 second=346 amount=-1 +kerning first=112 second=106 amount=-1 +kerning first=257 second=119 amount=-1 +kerning first=1038 second=1072 amount=-2 +kerning first=119 second=232 amount=-1 +kerning first=8220 second=218 amount=-1 +kerning first=365 second=119 amount=-1 +kerning first=8222 second=254 amount=-1 +kerning first=67 second=99 amount=-1 +kerning first=377 second=82 amount=-1 +kerning first=1058 second=1116 amount=-1 +kerning first=203 second=344 amount=-1 +kerning first=100 second=289 amount=-1 +kerning first=381 second=379 amount=-1 +kerning first=368 second=275 amount=-1 +kerning first=195 second=346 amount=-2 +kerning first=376 second=115 amount=-2 +kerning first=107 second=267 amount=-1 +kerning first=274 second=212 amount=-1 +kerning first=79 second=209 amount=-1 +kerning first=107 second=269 amount=-1 +kerning first=104 second=316 amount=-1 +kerning first=1043 second=1072 amount=-1 +kerning first=258 second=79 amount=-1 +kerning first=222 second=69 amount=-1 +kerning first=245 second=316 amount=-1 +kerning first=90 second=72 amount=-1 +kerning first=81 second=69 amount=-1 +kerning first=366 second=79 amount=-1 +kerning first=86 second=199 amount=-1 +kerning first=193 second=216 amount=-1 +kerning first=356 second=269 amount=-2 +kerning first=1063 second=1089 amount=-1 +kerning first=1088 second=1076 amount=-1 +kerning first=363 second=8217 amount=-2 +kerning first=1027 second=1089 amount=-1 +kerning first=330 second=79 amount=-1 +kerning first=72 second=229 amount=-1 +kerning first=272 second=192 amount=-2 +kerning first=108 second=229 amount=-1 +kerning first=90 second=76 amount=-1 +kerning first=65 second=89 amount=-3 +kerning first=310 second=212 amount=-1 +kerning first=211 second=205 amount=-1 +kerning first=88 second=216 amount=-1 +kerning first=200 second=192 amount=-1 +kerning first=192 second=8221 amount=-3 +kerning first=267 second=226 amount=-1 +kerning first=8222 second=368 amount=-2 +kerning first=228 second=8221 amount=-1 +kerning first=199 second=245 amount=-1 +kerning first=303 second=226 amount=-1 +kerning first=254 second=46 amount=-2 +kerning first=8250 second=324 amount=-1 +kerning first=339 second=226 amount=-1 +kerning first=82 second=286 amount=-1 +kerning first=375 second=226 amount=-2 +kerning first=336 second=8221 amount=-1 +kerning first=379 second=245 amount=-1 +kerning first=77 second=46 amount=-1 +kerning first=1061 second=1083 amount=-1 +kerning first=113 second=46 amount=-1 +kerning first=216 second=296 amount=-1 +kerning first=281 second=316 amount=-1 +kerning first=317 second=316 amount=-1 +kerning first=263 second=45 amount=-1 +kerning first=288 second=296 amount=-1 +kerning first=353 second=316 amount=-1 +kerning first=371 second=45 amount=-1 +kerning first=280 second=252 amount=-1 +kerning first=272 second=202 amount=-1 +kerning first=84 second=290 amount=-1 +kerning first=108 second=335 amount=-1 +kerning first=90 second=226 amount=-1 +kerning first=200 second=202 amount=-1 +kerning first=67 second=252 amount=-1 +kerning first=231 second=226 amount=-1 +kerning first=202 second=206 amount=-1 +kerning first=264 second=259 amount=-1 +kerning first=291 second=116 amount=-1 +kerning first=85 second=253 amount=-1 +kerning first=255 second=116 amount=-1 +kerning first=197 second=356 amount=-3 +kerning first=336 second=259 amount=-1 +kerning first=379 second=103 amount=-2 +kerning first=325 second=246 amount=-1 +kerning first=226 second=253 amount=-1 +kerning first=1043 second=1082 amount=-1 +kerning first=289 second=246 amount=-1 +kerning first=87 second=259 amount=-2 +kerning first=316 second=252 amount=-1 +kerning first=307 second=103 amount=-1 +kerning first=334 second=362 amount=-1 +kerning first=253 second=246 amount=-1 +kerning first=298 second=253 amount=-1 +kerning first=352 second=252 amount=-1 +kerning first=217 second=246 amount=-1 +kerning first=381 second=375 amount=-2 +kerning first=65 second=83 amount=-2 +kerning first=235 second=103 amount=-1 +kerning first=352 second=316 amount=-1 +kerning first=212 second=323 amount=-1 +kerning first=203 second=122 amount=-1 +kerning first=246 second=382 amount=-1 +kerning first=379 second=369 amount=-1 +kerning first=282 second=382 amount=-1 +kerning first=206 second=83 amount=-1 +kerning first=98 second=122 amount=-1 +kerning first=201 second=266 amount=-1 +kerning first=262 second=362 amount=-1 +kerning first=354 second=382 amount=-2 +kerning first=80 second=279 amount=-1 +kerning first=278 second=83 amount=-1 +kerning first=347 second=122 amount=-1 +kerning first=69 second=382 amount=-1 +kerning first=235 second=369 amount=-1 +kerning first=377 second=356 amount=-1 +kerning first=105 second=382 amount=-1 +kerning first=199 second=369 amount=-1 +kerning first=90 second=336 amount=-1 +kerning first=350 second=83 amount=-1 +kerning first=275 second=122 amount=-1 +kerning first=307 second=369 amount=-1 +kerning first=264 second=109 amount=-1 +kerning first=210 second=382 amount=-1 +kerning first=195 second=336 amount=-1 +kerning first=253 second=248 amount=-1 +kerning first=69 second=380 amount=-1 +kerning first=289 second=248 amount=-1 +kerning first=105 second=380 amount=-1 +kerning first=317 second=198 amount=-1 +kerning first=217 second=248 amount=-1 +kerning first=210 second=380 amount=-1 +kerning first=197 second=233 amount=-1 +kerning first=68 second=198 amount=-2 +kerning first=202 second=330 amount=-1 +kerning first=269 second=233 amount=-1 +kerning first=201 second=115 amount=-1 +kerning first=101 second=355 amount=-1 +kerning first=65 second=355 amount=-1 +kerning first=219 second=263 amount=-1 +kerning first=321 second=73 amount=-1 +kerning first=350 second=355 amount=-1 +kerning first=255 second=263 amount=-1 +kerning first=103 second=365 amount=-1 +kerning first=314 second=355 amount=-1 +kerning first=291 second=263 amount=-1 +kerning first=67 second=365 amount=-1 +kerning first=84 second=298 amount=-1 +kerning first=200 second=315 amount=-1 +kerning first=327 second=263 amount=-1 +kerning first=381 second=115 amount=-1 +kerning first=1045 second=1090 amount=-1 +kerning first=78 second=263 amount=-1 +kerning first=213 second=73 amount=-1 +kerning first=213 second=75 amount=-1 +kerning first=219 second=110 amount=-1 +kerning first=325 second=248 amount=-1 +kerning first=255 second=110 amount=-1 +kerning first=86 second=313 amount=-1 +kerning first=291 second=110 amount=-1 +kerning first=376 second=290 amount=-1 +kerning first=1091 second=1108 amount=-1 +kerning first=99 second=225 amount=-1 +kerning first=66 second=303 amount=-1 +kerning first=197 second=350 amount=-2 +kerning first=106 second=328 amount=-1 +kerning first=76 second=98 amount=-1 +kerning first=321 second=75 amount=-1 +kerning first=199 second=363 amount=-1 +kerning first=235 second=363 amount=-1 +kerning first=272 second=315 amount=-1 +kerning first=268 second=290 amount=-2 +kerning first=321 second=221 amount=-1 +kerning first=351 second=303 amount=-1 +kerning first=307 second=363 amount=-1 +kerning first=78 second=214 amount=-1 +kerning first=317 second=196 amount=-1 +kerning first=243 second=303 amount=-1 +kerning first=283 second=328 amount=-1 +kerning first=1042 second=1031 amount=-1 +kerning first=279 second=303 amount=-1 +kerning first=377 second=350 amount=-1 +kerning first=68 second=196 amount=-2 +kerning first=201 second=260 amount=-1 +kerning first=85 second=102 amount=-1 +kerning first=196 second=290 amount=-1 +kerning first=326 second=46 amount=-1 +kerning first=204 second=225 amount=-1 +kerning first=246 second=380 amount=-1 +kerning first=310 second=267 amount=-1 +kerning first=362 second=46 amount=-3 +kerning first=282 second=380 amount=-1 +kerning first=289 second=98 amount=-1 +kerning first=316 second=237 amount=-1 +kerning first=79 second=325 amount=-1 +kerning first=90 second=338 amount=-1 +kerning first=253 second=98 amount=-1 +kerning first=354 second=380 amount=-2 +kerning first=381 second=260 amount=-1 +kerning first=69 second=112 amount=-1 +kerning first=87 second=377 amount=-1 +kerning first=8222 second=374 amount=-3 +kerning first=280 second=367 amount=-1 +kerning first=65 second=87 amount=-3 +kerning first=78 second=261 amount=-1 +kerning first=316 second=367 amount=-1 +kerning first=196 second=318 amount=-1 +kerning first=79 second=327 amount=-1 +kerning first=8217 second=283 amount=-2 +kerning first=332 second=86 amount=-1 +kerning first=83 second=352 amount=-1 +kerning first=310 second=210 amount=-1 +kerning first=264 second=377 amount=-1 +kerning first=287 second=351 amount=-1 +kerning first=274 second=210 amount=-1 +kerning first=283 second=326 amount=-1 +kerning first=251 second=351 amount=-1 +kerning first=70 second=211 amount=-1 +kerning first=296 second=352 amount=-1 +kerning first=202 second=210 amount=-1 +kerning first=260 second=352 amount=-2 +kerning first=67 second=367 amount=-1 +kerning first=288 second=302 amount=-1 +kerning first=363 second=261 amount=-1 +kerning first=354 second=112 amount=-1 +kerning first=352 second=250 amount=-1 +kerning first=206 second=235 amount=-1 +kerning first=106 second=326 amount=-1 +kerning first=216 second=302 amount=-1 +kerning first=336 second=377 amount=-1 +kerning first=73 second=287 amount=-1 +kerning first=100 second=171 amount=-1 +kerning first=282 second=112 amount=-1 +kerning first=246 second=112 amount=-1 +kerning first=8216 second=217 amount=-1 +kerning first=314 second=235 amount=-1 +kerning first=219 second=261 amount=-2 +kerning first=260 second=86 amount=-3 +kerning first=109 second=287 amount=-1 +kerning first=255 second=261 amount=-2 +kerning first=316 second=250 amount=-1 +kerning first=1092 second=1103 amount=-1 +kerning first=250 second=287 amount=-1 +kerning first=291 second=261 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=280 second=250 amount=-1 +kerning first=1056 second=1103 amount=-1 +kerning first=214 second=287 amount=-1 +kerning first=118 second=257 amount=-2 +kerning first=67 second=250 amount=-1 +kerning first=291 second=378 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=282 second=262 amount=-1 +kerning first=8220 second=244 amount=-1 +kerning first=255 second=378 amount=-1 +kerning first=242 second=237 amount=-1 +kerning first=286 second=287 amount=-1 +kerning first=107 second=275 amount=-1 +kerning first=287 second=353 amount=-1 +kerning first=363 second=378 amount=-1 +kerning first=354 second=262 amount=-1 +kerning first=323 second=353 amount=-1 +kerning first=103 second=250 amount=-1 +kerning first=327 second=378 amount=-1 +kerning first=352 second=365 amount=-1 +kerning first=325 second=100 amount=-1 +kerning first=352 second=369 amount=-1 +kerning first=316 second=365 amount=-1 +kerning first=101 second=237 amount=-1 +kerning first=74 second=353 amount=-1 +kerning first=1116 second=1095 amount=-1 +kerning first=78 second=378 amount=-1 +kerning first=280 second=365 amount=-1 +kerning first=83 second=45 amount=-1 +kerning first=199 second=277 amount=-1 +kerning first=110 second=353 amount=-1 +kerning first=241 second=171 amount=-1 +kerning first=219 second=378 amount=-1 +kerning first=381 second=113 amount=-1 +kerning first=8222 second=108 amount=-1 +kerning first=313 second=171 amount=-1 +kerning first=350 second=87 amount=-1 +kerning first=368 second=352 amount=-1 +kerning first=217 second=100 amount=-1 +kerning first=198 second=85 amount=-1 +kerning first=226 second=249 amount=-1 +kerning first=332 second=352 amount=-1 +kerning first=315 second=338 amount=-1 +kerning first=290 second=197 amount=-1 +kerning first=253 second=100 amount=-1 +kerning first=278 second=87 amount=-1 +kerning first=85 second=249 amount=-1 +kerning first=289 second=100 amount=-1 +kerning first=69 second=262 amount=-1 +kerning first=356 second=275 amount=-2 +kerning first=362 second=197 amount=-2 +kerning first=82 second=288 amount=-1 +kerning first=370 second=249 amount=-1 +kerning first=321 second=223 amount=-1 +kerning first=262 second=249 amount=-1 +kerning first=1088 second=1078 amount=-1 +kerning first=298 second=249 amount=-1 +kerning first=282 second=288 amount=-1 +kerning first=199 second=87 amount=-1 +kerning first=1100 second=1096 amount=-1 +kerning first=107 second=243 amount=-1 +kerning first=113 second=314 amount=-1 +kerning first=354 second=288 amount=-1 +kerning first=369 second=106 amount=-1 +kerning first=254 second=314 amount=-1 +kerning first=8216 second=114 amount=-1 +kerning first=1030 second=1092 amount=-1 +kerning first=231 second=363 amount=-1 +kerning first=326 second=314 amount=-1 +kerning first=69 second=288 amount=-1 +kerning first=207 second=113 amount=-1 +kerning first=366 second=210 amount=-1 +kerning first=379 second=333 amount=-1 +kerning first=84 second=366 amount=-1 +kerning first=256 second=269 amount=-1 +kerning first=330 second=210 amount=-1 +kerning first=1074 second=1118 amount=-1 +kerning first=102 second=113 amount=-1 +kerning first=220 second=269 amount=-1 +kerning first=258 second=210 amount=-1 +kerning first=263 second=307 amount=-1 +kerning first=364 second=255 amount=-1 +kerning first=8220 second=375 amount=-1 +kerning first=84 second=120 amount=-1 +kerning first=196 second=83 amount=-2 +kerning first=328 second=255 amount=-1 +kerning first=231 second=224 amount=-1 +kerning first=82 second=268 amount=-1 +kerning first=335 second=307 amount=-1 +kerning first=364 second=269 amount=-1 +kerning first=192 second=281 amount=-1 +kerning first=202 second=262 amount=-1 +kerning first=371 second=307 amount=-1 +kerning first=256 second=255 amount=-1 +kerning first=303 second=224 amount=-1 +kerning first=220 second=255 amount=-1 +kerning first=267 second=224 amount=-1 +kerning first=264 second=281 amount=-1 +kerning first=274 second=262 amount=-1 +kerning first=375 second=224 amount=-1 +kerning first=356 second=243 amount=-2 +kerning first=310 second=262 amount=-1 +kerning first=115 second=255 amount=-1 +kerning first=339 second=224 amount=-1 +kerning first=187 second=198 amount=-2 +kerning first=207 second=99 amount=-1 +kerning first=67 second=101 amount=-1 +kerning first=369 second=120 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=354 second=274 amount=-1 +kerning first=212 second=229 amount=-1 +kerning first=382 second=248 amount=-1 +kerning first=71 second=229 amount=-1 +kerning first=282 second=274 amount=-1 +kerning first=379 second=73 amount=-1 +kerning first=202 second=362 amount=-1 +kerning first=8216 second=100 amount=-1 +kerning first=310 second=248 amount=-1 +kerning first=225 second=120 amount=-1 +kerning first=272 second=75 amount=-1 +kerning first=305 second=118 amount=-1 +kerning first=261 second=120 amount=-1 +kerning first=356 second=229 amount=-2 +kerning first=316 second=101 amount=-1 +kerning first=199 second=73 amount=-1 +kerning first=377 second=118 amount=-1 +kerning first=333 second=120 amount=-1 +kerning first=284 second=229 amount=-1 +kerning first=346 second=8220 amount=-1 +kerning first=197 second=118 amount=-2 +kerning first=310 second=8220 amount=-1 +kerning first=269 second=118 amount=-1 +kerning first=366 second=196 amount=-2 +kerning first=233 second=118 amount=-1 +kerning first=364 second=241 amount=-1 +kerning first=69 second=196 amount=-1 +kerning first=333 second=106 amount=-1 +kerning first=379 second=87 amount=-1 +kerning first=102 second=99 amount=-1 +kerning first=290 second=68 amount=-1 +kerning first=225 second=106 amount=-1 +kerning first=261 second=106 amount=1 +kerning first=76 second=80 amount=-1 +kerning first=374 second=364 amount=-1 +kerning first=235 second=361 amount=-1 +kerning first=69 second=316 amount=-1 +kerning first=194 second=264 amount=-1 +kerning first=287 second=111 amount=-1 +kerning first=105 second=316 amount=-1 +kerning first=323 second=111 amount=-1 +kerning first=307 second=361 amount=-1 +kerning first=89 second=264 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=379 second=361 amount=-1 +kerning first=246 second=316 amount=-1 +kerning first=290 second=82 amount=-1 +kerning first=107 second=271 amount=-1 +kerning first=197 second=364 amount=-2 +kerning first=282 second=316 amount=-1 +kerning first=76 second=66 amount=-1 +kerning first=356 second=257 amount=-2 +kerning first=264 second=267 amount=-1 +kerning first=269 second=104 amount=-1 +kerning first=75 second=351 amount=-1 +kerning first=202 second=44 amount=-1 +kerning first=344 second=89 amount=-1 +kerning first=233 second=104 amount=-1 +kerning first=262 second=368 amount=-1 +kerning first=197 second=104 amount=-1 +kerning first=274 second=44 amount=-1 +kerning first=1048 second=1057 amount=-1 +kerning first=8216 second=346 amount=-1 +kerning first=313 second=205 amount=-1 +kerning first=200 second=89 amount=-1 +kerning first=87 second=323 amount=-1 +kerning first=210 second=274 amount=-1 +kerning first=199 second=361 amount=-1 +kerning first=97 second=44 amount=-1 +kerning first=272 second=89 amount=-1 +kerning first=8216 second=86 amount=-1 +kerning first=334 second=368 amount=-1 +kerning first=323 second=97 amount=-1 +kerning first=217 second=326 amount=-1 +kerning first=338 second=250 amount=-1 +kerning first=210 second=302 amount=-1 +kerning first=253 second=326 amount=-1 +kerning first=307 second=347 amount=-1 +kerning first=298 second=284 amount=-1 +kerning first=264 second=323 amount=-1 +kerning first=302 second=250 amount=-1 +kerning first=367 second=226 amount=-1 +kerning first=1050 second=1054 amount=-2 +kerning first=251 second=97 amount=-1 +kerning first=289 second=326 amount=-1 +kerning first=87 second=281 amount=-2 +kerning first=203 second=278 amount=-1 +kerning first=76 second=354 amount=-1 +kerning first=275 second=8250 amount=-1 +kerning first=287 second=97 amount=-1 +kerning first=235 second=347 amount=-1 +kerning first=283 second=375 amount=-1 +kerning first=336 second=323 amount=-1 +kerning first=374 second=250 amount=-1 +kerning first=69 second=302 amount=-1 +kerning first=103 second=97 amount=-1 +kerning first=199 second=347 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=76 second=326 amount=-1 +kerning first=251 second=371 amount=-1 +kerning first=8216 second=374 amount=-1 +kerning first=205 second=233 amount=-1 +kerning first=266 second=250 amount=-1 +kerning first=287 second=371 amount=-1 +kerning first=1102 second=1078 amount=-1 +kerning first=230 second=250 amount=-1 +kerning first=82 second=212 amount=-1 +kerning first=272 second=103 amount=-1 +kerning first=377 second=90 amount=-1 +kerning first=284 second=257 amount=-1 +kerning first=236 second=103 amount=-1 +kerning first=269 second=378 amount=-1 +kerning first=199 second=45 amount=-2 +kerning first=200 second=103 amount=-1 +kerning first=313 second=219 amount=-1 +kerning first=89 second=250 amount=-1 +kerning first=377 second=378 amount=-1 +kerning first=82 second=226 amount=-1 +kerning first=212 second=257 amount=-1 +kerning first=199 second=333 amount=-1 +kerning first=118 second=226 amount=-2 +kerning first=374 second=264 amount=-1 +kerning first=354 second=302 amount=-1 +kerning first=187 second=226 amount=-1 +kerning first=107 second=257 amount=-1 +kerning first=338 second=264 amount=-1 +kerning first=113 second=110 amount=-1 +kerning first=302 second=264 amount=-1 +kerning first=233 second=378 amount=-1 +kerning first=282 second=302 amount=-1 +kerning first=379 second=347 amount=-1 +kerning first=266 second=264 amount=-2 +kerning first=211 second=66 amount=-1 +kerning first=71 second=257 amount=-1 +kerning first=218 second=110 amount=-1 +kerning first=1069 second=1063 amount=-1 +kerning first=200 second=363 amount=-1 +kerning first=118 second=240 amount=-1 +kerning first=89 second=194 amount=-3 +kerning first=236 second=363 amount=-1 +kerning first=323 second=214 amount=-1 +kerning first=362 second=110 amount=-1 +kerning first=8216 second=351 amount=-1 +kerning first=202 second=220 amount=-1 +kerning first=206 second=275 amount=-1 +kerning first=74 second=214 amount=-1 +kerning first=8216 second=242 amount=-1 +kerning first=344 second=363 amount=-1 +kerning first=202 second=318 amount=-1 +kerning first=325 second=284 amount=-1 +kerning first=380 second=363 amount=-1 +kerning first=66 second=71 amount=-1 +kerning first=346 second=220 amount=-1 +kerning first=108 second=259 amount=-1 +kerning first=310 second=318 amount=-1 +kerning first=232 second=116 amount=-1 +kerning first=336 second=77 amount=-1 +kerning first=282 second=330 amount=-1 +kerning first=286 second=369 amount=-1 +kerning first=249 second=259 amount=-1 +kerning first=346 second=318 amount=-1 +kerning first=100 second=8221 amount=-1 +kerning first=274 second=220 amount=-1 +kerning first=84 second=324 amount=-1 +kerning first=250 second=369 amount=-1 +kerning first=213 second=259 amount=-1 +kerning first=382 second=318 amount=-1 +kerning first=264 second=77 amount=-1 +kerning first=352 second=375 amount=-1 +kerning first=310 second=220 amount=-1 +kerning first=210 second=330 amount=-1 +kerning first=338 second=194 amount=-1 +kerning first=82 second=240 amount=-1 +kerning first=374 second=194 amount=-3 +kerning first=274 second=304 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=109 second=369 amount=-1 +kerning first=72 second=259 amount=-1 +kerning first=196 second=116 amount=-1 +kerning first=266 second=194 amount=-2 +kerning first=73 second=369 amount=-1 +kerning first=202 second=304 amount=-1 +kerning first=354 second=330 amount=-1 +kerning first=122 second=279 amount=-1 +kerning first=118 second=254 amount=-1 +kerning first=86 second=279 amount=-2 +kerning first=291 second=253 amount=-1 +kerning first=103 second=375 amount=-1 +kerning first=187 second=254 amount=-1 +kerning first=327 second=253 amount=-1 +kerning first=1047 second=1055 amount=-1 +kerning first=363 second=253 amount=-1 +kerning first=74 second=228 amount=-1 +kerning first=259 second=254 amount=-1 +kerning first=200 second=377 amount=-1 +kerning first=194 second=81 amount=-1 +kerning first=316 second=375 amount=-1 +kerning first=69 second=330 amount=-1 +kerning first=354 second=344 amount=-1 +kerning first=244 second=375 amount=-1 +kerning first=108 second=273 amount=-1 +kerning first=364 second=117 amount=-1 +kerning first=82 second=254 amount=-1 +kerning first=217 second=284 amount=-1 +kerning first=316 second=253 amount=-1 +kerning first=76 second=298 amount=-1 +kerning first=310 second=234 amount=-1 +kerning first=210 second=344 amount=-1 +kerning first=84 second=310 amount=-1 +kerning first=315 second=251 amount=-1 +kerning first=70 second=332 amount=-1 +kerning first=1058 second=1108 amount=-1 +kerning first=272 second=377 amount=-1 +kerning first=1113 second=1103 amount=-1 +kerning first=382 second=234 amount=-1 +kerning first=282 second=344 amount=-1 +kerning first=325 second=210 amount=-1 +kerning first=371 second=378 amount=-1 +kerning first=108 second=287 amount=-1 +kerning first=78 second=253 amount=-1 +kerning first=263 second=279 amount=-1 +kerning first=76 second=284 amount=-1 +kerning first=72 second=287 amount=-1 +kerning first=69 second=344 amount=-1 +kerning first=213 second=287 amount=-1 +kerning first=198 second=8249 amount=-1 +kerning first=1098 second=1119 amount=-1 +kerning first=219 second=253 amount=-1 +kerning first=344 second=335 amount=-1 +kerning first=202 second=290 amount=-1 +kerning first=221 second=313 amount=-1 +kerning first=380 second=335 amount=-1 +kerning first=249 second=287 amount=-1 +kerning first=213 second=8217 amount=-1 +kerning first=76 second=270 amount=-1 +kerning first=278 second=315 amount=-1 +kerning first=249 second=8217 amount=-2 +kerning first=274 second=290 amount=-1 +kerning first=321 second=287 amount=-1 +kerning first=119 second=242 amount=-1 +kerning first=260 second=242 amount=-1 +kerning first=333 second=380 amount=-1 +kerning first=196 second=101 amount=-1 +kerning first=369 second=380 amount=-1 +kerning first=347 second=367 amount=-1 +kerning first=85 second=197 amount=-2 +kerning first=108 second=8217 amount=-2 +kerning first=296 second=242 amount=-1 +kerning first=367 second=103 amount=-1 +kerning first=1037 second=1060 amount=-1 +kerning first=1113 second=1117 amount=-1 +kerning first=76 second=353 amount=-1 +kerning first=368 second=242 amount=-1 +kerning first=219 second=225 amount=-2 +kerning first=262 second=197 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=350 second=315 amount=-1 +kerning first=201 second=119 amount=-1 +kerning first=1069 second=1049 amount=-1 +kerning first=321 second=8217 amount=-2 +kerning first=334 second=197 amount=-2 +kerning first=323 second=228 amount=-1 +kerning first=121 second=108 amount=-1 +kerning first=287 second=228 amount=-1 +kerning first=262 second=108 amount=-1 +kerning first=84 second=380 amount=-2 +kerning first=78 second=225 amount=-1 +kerning first=8220 second=101 amount=-1 +kerning first=1047 second=1083 amount=-1 +kerning first=226 second=108 amount=-1 +kerning first=120 second=380 amount=-1 +kerning first=45 second=221 amount=-2 +kerning first=72 second=231 amount=-1 +kerning first=347 second=46 amount=-1 +kerning first=203 second=74 amount=-1 +kerning first=381 second=119 amount=-1 +kerning first=76 second=256 amount=-1 +kerning first=84 second=352 amount=-2 +kerning first=121 second=122 amount=-1 +kerning first=85 second=122 amount=-1 +kerning first=232 second=102 amount=-1 +kerning first=69 second=289 amount=-1 +kerning first=291 second=225 amount=-1 +kerning first=370 second=122 amount=-1 +kerning first=203 second=46 amount=-1 +kerning first=327 second=225 amount=-1 +kerning first=334 second=122 amount=-1 +kerning first=207 second=71 amount=-1 +kerning first=376 second=116 amount=-1 +kerning first=334 second=313 amount=-1 +kerning first=363 second=225 amount=-1 +kerning first=298 second=122 amount=-1 +kerning first=307 second=117 amount=-1 +kerning first=315 second=71 amount=-1 +kerning first=122 second=307 amount=-1 +kerning first=217 second=256 amount=-2 +kerning first=262 second=122 amount=-1 +kerning first=311 second=46 amount=-1 +kerning first=87 second=77 amount=-1 +kerning first=98 second=46 amount=-2 +kerning first=219 second=211 amount=-1 +kerning first=83 second=379 amount=-1 +kerning first=209 second=44 amount=-1 +kerning first=253 second=101 amount=-1 +kerning first=108 second=245 amount=-1 +kerning first=310 second=290 amount=-1 +kerning first=268 second=102 amount=-1 +kerning first=219 second=347 amount=-1 +kerning first=1045 second=1098 amount=-1 +kerning first=327 second=211 amount=-1 +kerning first=376 second=102 amount=-1 +kerning first=106 second=171 amount=-1 +kerning first=203 second=112 amount=-1 +kerning first=1052 second=1086 amount=-1 +kerning first=211 second=171 amount=-1 +kerning first=98 second=112 amount=-1 +kerning first=370 second=211 amount=-1 +kerning first=337 second=107 amount=-1 +kerning first=204 second=382 amount=-1 +kerning first=209 second=216 amount=-1 +kerning first=88 second=107 amount=-1 +kerning first=235 second=8221 amount=-1 +kerning first=8220 second=115 amount=-1 +kerning first=70 second=171 amount=-2 +kerning first=193 second=107 amount=-1 +kerning first=365 second=105 amount=-1 +kerning first=377 second=257 amount=-1 +kerning first=298 second=235 amount=-1 +kerning first=67 second=70 amount=-1 +kerning first=1036 second=1072 amount=-1 +kerning first=1044 second=1098 amount=-1 +kerning first=370 second=235 amount=-1 +kerning first=307 second=8221 amount=-1 +kerning first=221 second=105 amount=-1 +kerning first=347 second=112 amount=-1 +kerning first=221 second=81 amount=-1 +kerning first=311 second=112 amount=-1 +kerning first=355 second=171 amount=-1 +kerning first=275 second=112 amount=-1 +kerning first=268 second=296 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=214 second=327 amount=-1 +kerning first=350 second=249 amount=-1 +kerning first=376 second=296 amount=-1 +kerning first=234 second=251 amount=-1 +kerning first=70 second=100 amount=-1 +kerning first=75 second=230 amount=-1 +kerning first=198 second=251 amount=-1 +kerning first=8217 second=233 amount=-2 +kerning first=195 second=117 amount=-1 +kerning first=208 second=204 amount=-1 +kerning first=314 second=249 amount=-1 +kerning first=205 second=275 amount=-1 +kerning first=111 second=380 amount=-1 +kerning first=211 second=346 amount=-1 +kerning first=378 second=251 amount=-1 +kerning first=280 second=204 amount=-1 +kerning first=83 second=256 amount=-2 +kerning first=352 second=204 amount=-1 +kerning first=221 second=379 amount=-1 +kerning first=45 second=353 amount=-1 +kerning first=85 second=211 amount=-1 +kerning first=377 second=259 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=45 second=83 amount=-2 +kerning first=288 second=230 amount=-1 +kerning first=198 second=223 amount=-1 +kerning first=81 second=83 amount=-1 +kerning first=206 second=249 amount=-1 +kerning first=262 second=211 amount=-2 +kerning first=216 second=230 amount=-1 +kerning first=298 second=211 amount=-1 +kerning first=252 second=230 amount=-1 +kerning first=67 second=204 amount=-1 +kerning first=222 second=83 amount=-1 +kerning first=101 second=249 amount=-1 +kerning first=368 second=256 amount=-2 +kerning first=332 second=256 amount=-2 +kerning first=1113 second=1075 amount=-1 +kerning first=221 second=109 amount=-1 +kerning first=368 second=284 amount=-1 +kerning first=330 second=83 amount=-1 +kerning first=88 second=339 amount=-1 +kerning first=8217 second=271 amount=-2 +kerning first=366 second=83 amount=-1 +kerning first=371 second=237 amount=-1 +kerning first=296 second=284 amount=-1 +kerning first=209 second=244 amount=-1 +kerning first=335 second=237 amount=-1 +kerning first=378 second=289 amount=-1 +kerning first=70 second=199 amount=-1 +kerning first=263 second=237 amount=-1 +kerning first=260 second=284 amount=-1 +kerning first=203 second=362 amount=-1 +kerning first=193 second=339 amount=-1 +kerning first=1072 second=1095 amount=-1 +kerning first=122 second=237 amount=-1 +kerning first=196 second=334 amount=-1 +kerning first=86 second=237 amount=-1 +kerning first=346 second=274 amount=-1 +kerning first=288 second=282 amount=-1 +kerning first=381 second=194 amount=-1 +kerning first=313 second=378 amount=-1 +kerning first=316 second=232 amount=-1 +kerning first=268 second=334 amount=-2 +kerning first=84 second=345 amount=-1 +kerning first=216 second=282 amount=-1 +kerning first=67 second=232 amount=-1 +kerning first=201 second=194 amount=-1 +kerning first=304 second=334 amount=-1 +kerning first=272 second=289 amount=-1 +kerning first=198 second=289 amount=-1 +kerning first=71 second=198 amount=-1 +kerning first=70 second=346 amount=-1 +kerning first=314 second=277 amount=-1 +kerning first=103 second=232 amount=-1 +kerning first=376 second=334 amount=-1 +kerning first=352 second=209 amount=-1 +kerning first=252 second=254 amount=-1 +kerning first=257 second=351 amount=-1 +kerning first=330 second=121 amount=-1 +kerning first=221 second=351 amount=-2 +kerning first=286 second=327 amount=-1 +kerning first=324 second=254 amount=-1 +kerning first=206 second=277 amount=-1 +kerning first=258 second=121 amount=-1 +kerning first=1038 second=1090 amount=-1 +kerning first=75 second=254 amount=-1 +kerning first=80 second=351 amount=-1 +kerning first=88 second=79 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=1098 second=1095 amount=-1 +kerning first=204 second=350 amount=-1 +kerning first=1062 second=1095 amount=-1 +kerning first=350 second=69 amount=-1 +kerning first=45 second=121 amount=-2 +kerning first=198 second=261 amount=-1 +kerning first=193 second=367 amount=-1 +kerning first=234 second=261 amount=-1 +kerning first=229 second=367 amount=-1 +kerning first=278 second=69 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=314 second=305 amount=-1 +kerning first=196 second=245 amount=-1 +kerning first=236 second=117 amount=-1 +kerning first=193 second=79 amount=-1 +kerning first=8217 second=243 amount=-2 +kerning first=76 second=260 amount=-1 +kerning first=200 second=117 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=255 second=8249 amount=-2 +kerning first=8216 second=224 amount=-1 +kerning first=217 second=260 amount=-2 +kerning first=332 second=76 amount=-1 +kerning first=350 second=305 amount=-1 +kerning first=365 second=351 amount=-1 +kerning first=305 second=8221 amount=-1 +kerning first=211 second=72 amount=-1 +kerning first=211 second=374 amount=-1 +kerning first=380 second=117 amount=-1 +kerning first=203 second=316 amount=-1 +kerning first=66 second=317 amount=-2 +kerning first=368 second=336 amount=-1 +kerning first=192 second=337 amount=-1 +kerning first=268 second=362 amount=-1 +kerning first=275 second=316 amount=-1 +kerning first=256 second=311 amount=-1 +kerning first=122 second=241 amount=-1 +kerning first=87 second=337 amount=-2 +kerning first=86 second=241 amount=-1 +kerning first=370 second=378 amount=-1 +kerning first=347 second=316 amount=-1 +kerning first=262 second=382 amount=-1 +kerning first=290 second=356 amount=-1 +kerning first=298 second=382 amount=-1 +kerning first=115 second=311 amount=-1 +kerning first=199 second=267 amount=-1 +kerning first=334 second=382 amount=-1 +kerning first=75 second=226 amount=-1 +kerning first=264 second=337 amount=-1 +kerning first=370 second=382 amount=-1 +kerning first=75 second=286 amount=-1 +kerning first=1055 second=1057 amount=-1 +kerning first=1059 second=1082 amount=-2 +kerning first=87 second=361 amount=-1 +kerning first=197 second=221 amount=-3 +kerning first=192 second=361 amount=-1 +kerning first=83 second=252 amount=-1 +kerning first=1025 second=1037 amount=-1 +kerning first=264 second=361 amount=-1 +kerning first=228 second=361 amount=-1 +kerning first=98 second=316 amount=-1 +kerning first=195 second=266 amount=-1 +kerning first=107 second=263 amount=-1 +kerning first=198 second=229 amount=-1 +kerning first=84 second=78 amount=-1 +kerning first=366 second=121 amount=-1 +kerning first=368 second=252 amount=-1 +kerning first=262 second=207 amount=-1 +kerning first=354 second=70 amount=-1 +kerning first=356 second=201 amount=-1 +kerning first=307 second=316 amount=-1 +kerning first=220 second=227 amount=-2 +kerning first=45 second=381 amount=-2 +kerning first=346 second=44 amount=-2 +kerning first=284 second=201 amount=-1 +kerning first=81 second=381 amount=-1 +kerning first=381 second=246 amount=-1 +kerning first=224 second=252 amount=-1 +kerning first=212 second=201 amount=-1 +kerning first=289 second=365 amount=-1 +kerning first=364 second=227 amount=-2 +kerning first=382 second=44 amount=-1 +kerning first=296 second=252 amount=-1 +kerning first=8220 second=111 amount=-1 +kerning first=85 second=382 amount=-1 +kerning first=65 second=45 amount=-2 +kerning first=1057 second=1036 amount=-1 +kerning first=121 second=382 amount=-1 +kerning first=216 second=226 amount=-1 +kerning first=337 second=103 amount=-1 +kerning first=71 second=201 amount=-1 +kerning first=379 second=291 amount=-2 +kerning first=252 second=226 amount=-1 +kerning first=288 second=226 amount=-1 +kerning first=366 second=381 amount=-1 +kerning first=307 second=291 amount=-1 +kerning first=263 second=259 amount=-1 +kerning first=229 second=103 amount=-1 +kerning first=115 second=227 amount=-1 +kerning first=206 second=45 amount=-2 +kerning first=260 second=336 amount=-1 +kerning first=79 second=227 amount=-1 +kerning first=203 second=84 amount=-1 +kerning first=314 second=45 amount=-1 +kerning first=296 second=336 amount=-1 +kerning first=199 second=291 amount=-1 +kerning first=278 second=45 amount=-1 +kerning first=201 second=218 amount=-1 +kerning first=1039 second=1092 amount=-1 +kerning first=1100 second=1094 amount=-1 +kerning first=8250 second=220 amount=-2 +kerning first=1065 second=1090 amount=-1 +kerning first=103 second=115 amount=-1 +kerning first=66 second=345 amount=-1 +kerning first=213 second=192 amount=-2 +kerning first=261 second=314 amount=-1 +kerning first=67 second=115 amount=-1 +kerning first=205 second=243 amount=-1 +kerning first=225 second=314 amount=-1 +kerning first=280 second=115 amount=-1 +kerning first=333 second=314 amount=-1 +kerning first=316 second=115 amount=-1 +kerning first=218 second=120 amount=-1 +kerning first=264 second=365 amount=-1 +kerning first=199 second=8249 amount=-2 +kerning first=122 second=269 amount=-1 +kerning first=377 second=193 amount=-1 +kerning first=254 second=120 amount=-1 +kerning first=228 second=365 amount=-1 +kerning first=263 second=269 amount=-1 +kerning first=244 second=115 amount=-1 +kerning first=199 second=263 amount=-1 +kerning first=192 second=365 amount=-1 +kerning first=350 second=278 amount=-1 +kerning first=196 second=338 amount=-1 +kerning first=69 second=70 amount=-1 +kerning first=369 second=314 amount=-1 +kerning first=216 second=198 amount=-2 +kerning first=258 second=353 amount=-1 +kerning first=282 second=70 amount=-1 +kerning first=86 second=213 amount=-1 +kerning first=350 second=73 amount=-1 +kerning first=87 second=365 amount=-1 +kerning first=352 second=115 amount=-1 +kerning first=352 second=45 amount=-1 +kerning first=330 second=353 amount=-1 +kerning first=210 second=70 amount=-1 +kerning first=113 second=120 amount=-1 +kerning first=202 second=224 amount=-1 +kerning first=366 second=353 amount=-1 +kerning first=371 second=269 amount=-1 +kerning first=321 second=325 amount=-1 +kerning first=310 second=224 amount=-1 +kerning first=274 second=224 amount=-1 +kerning first=105 second=98 amount=-1 +kerning first=382 second=224 amount=-1 +kerning first=379 second=8249 amount=-1 +kerning first=278 second=73 amount=-1 +kerning first=346 second=224 amount=-1 +kerning first=85 second=235 amount=-1 +kerning first=90 second=278 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=121 second=235 amount=-1 +kerning first=218 second=328 amount=-1 +kerning first=307 second=8249 amount=-1 +kerning first=362 second=120 amount=-1 +kerning first=219 second=331 amount=-1 +kerning first=250 second=303 amount=-1 +kerning first=332 second=280 amount=-1 +kerning first=346 second=367 amount=-1 +kerning first=113 second=328 amount=-1 +kerning first=69 second=98 amount=-1 +kerning first=262 second=235 amount=-1 +kerning first=220 second=283 amount=-1 +kerning first=211 second=370 amount=-1 +kerning first=362 second=328 amount=-1 +kerning first=371 second=241 amount=-1 +kerning first=287 second=101 amount=-1 +kerning first=323 second=101 amount=-1 +kerning first=1046 second=1118 amount=-1 +kerning first=1047 second=1031 amount=-1 +kerning first=99 second=118 amount=-1 +kerning first=195 second=243 amount=-1 +kerning first=1040 second=1073 amount=-1 +kerning first=364 second=283 amount=-1 +kerning first=113 second=109 amount=-1 +kerning first=213 second=325 amount=-1 +kerning first=282 second=98 amount=-1 +kerning first=200 second=378 amount=-1 +kerning first=256 second=283 amount=-1 +kerning first=263 second=241 amount=-1 +kerning first=83 second=280 amount=-1 +kerning first=207 second=335 amount=-1 +kerning first=197 second=108 amount=-1 +kerning first=376 second=380 amount=-2 +kerning first=371 second=283 amount=-1 +kerning first=195 second=8220 amount=-3 +kerning first=321 second=241 amount=-1 +kerning first=344 second=85 amount=-1 +kerning first=374 second=362 amount=-1 +kerning first=263 second=283 amount=-1 +kerning first=1069 second=1045 amount=-1 +kerning first=232 second=380 amount=-1 +kerning first=272 second=85 amount=-1 +kerning first=305 second=108 amount=-1 +kerning first=268 second=380 amount=-1 +kerning first=102 second=335 amount=-1 +kerning first=310 second=286 amount=-1 +kerning first=304 second=380 amount=-1 +kerning first=200 second=85 amount=-1 +kerning first=77 second=338 amount=-1 +kerning first=303 second=248 amount=-1 +kerning first=256 second=231 amount=-1 +kerning first=110 second=115 amount=-1 +kerning first=77 second=351 amount=-1 +kerning first=8250 second=230 amount=-1 +kerning first=231 second=248 amount=-1 +kerning first=108 second=241 amount=-1 +kerning first=315 second=249 amount=-1 +kerning first=267 second=248 amount=-1 +kerning first=202 second=286 amount=-1 +kerning first=220 second=231 amount=-1 +kerning first=74 second=115 amount=-1 +kerning first=380 second=331 amount=-1 +kerning first=287 second=115 amount=-1 +kerning first=1091 second=1113 amount=-1 +kerning first=195 second=248 amount=-1 +kerning first=323 second=115 amount=-1 +kerning first=200 second=331 amount=-1 +kerning first=90 second=248 amount=-1 +kerning first=364 second=231 amount=-1 +kerning first=251 second=115 amount=-1 +kerning first=76 second=70 amount=-1 +kerning first=290 second=78 amount=-1 +kerning first=197 second=368 amount=-2 +kerning first=236 second=331 amount=-1 +kerning first=74 second=210 amount=-1 +kerning first=249 second=255 amount=-1 +kerning first=218 second=352 amount=-1 +kerning first=97 second=252 amount=-1 +kerning first=222 second=200 amount=-1 +kerning first=337 second=351 amount=-1 +kerning first=364 second=245 amount=-1 +kerning first=69 second=278 amount=-1 +kerning first=115 second=307 amount=-1 +kerning first=8216 second=350 amount=-1 +kerning first=260 second=113 amount=-1 +kerning first=376 second=366 amount=-1 +kerning first=202 second=252 amount=-1 +kerning first=199 second=323 amount=-1 +kerning first=108 second=255 amount=-1 +kerning first=84 second=328 amount=-1 +kerning first=354 second=8250 amount=-1 +kerning first=269 second=122 amount=-1 +kerning first=72 second=255 amount=-1 +kerning first=362 second=352 amount=-1 +kerning first=8218 second=305 amount=-1 +kerning first=233 second=122 amount=-1 +kerning first=344 second=71 amount=-1 +kerning first=90 second=262 amount=-1 +kerning first=379 second=323 amount=-1 +kerning first=210 second=278 amount=-1 +kerning first=107 second=233 amount=-1 +kerning first=196 second=366 amount=-2 +kerning first=317 second=290 amount=-1 +kerning first=382 second=252 amount=-1 +kerning first=282 second=278 amount=-1 +kerning first=354 second=278 amount=-1 +kerning first=1045 second=1118 amount=-1 +kerning first=77 second=352 amount=-1 +kerning first=81 second=200 amount=-1 +kerning first=256 second=245 amount=-1 +kerning first=209 second=290 amount=-1 +kerning first=274 second=252 amount=-1 +kerning first=45 second=200 amount=-3 +kerning first=356 second=233 amount=-2 +kerning first=220 second=245 amount=-1 +kerning first=122 second=283 amount=-1 +kerning first=310 second=252 amount=-1 +kerning first=1113 second=1085 amount=-1 +kerning first=346 second=252 amount=-1 +kerning first=314 second=333 amount=-1 +kerning first=1059 second=1092 amount=-2 +kerning first=336 second=87 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=268 second=106 amount=-1 +kerning first=264 second=87 amount=-1 +kerning first=217 second=288 amount=-1 +kerning first=193 second=81 amount=-1 +kerning first=379 second=281 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=192 second=87 amount=-3 +kerning first=280 second=84 amount=-1 +kerning first=76 second=288 amount=-1 +kerning first=192 second=347 amount=-1 +kerning first=199 second=281 amount=-1 +kerning first=200 second=65 amount=-1 +kerning first=255 second=243 amount=-1 +kerning first=195 second=262 amount=-1 +kerning first=368 second=326 amount=-1 +kerning first=8222 second=375 amount=-1 +kerning first=89 second=198 amount=-3 +kerning first=291 second=243 amount=-1 +kerning first=217 second=196 amount=-2 +kerning first=87 second=347 amount=-2 +kerning first=272 second=65 amount=-2 +kerning first=82 second=104 amount=-1 +kerning first=323 second=210 amount=-1 +kerning first=116 second=291 amount=-1 +kerning first=197 second=217 amount=-2 +kerning first=78 second=243 amount=-1 +kerning first=325 second=288 amount=-1 +kerning first=1058 second=1076 amount=-1 +kerning first=1054 second=1039 amount=-1 +kerning first=321 second=255 amount=-1 +kerning first=69 second=354 amount=-1 +kerning first=219 second=243 amount=-1 +kerning first=374 second=198 amount=-3 +kerning first=78 second=229 amount=-1 +kerning first=1050 second=1047 amount=-1 +kerning first=1069 second=1031 amount=-1 +kerning first=378 second=275 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=69 second=80 amount=-1 +kerning first=219 second=229 amount=-2 +kerning first=264 second=73 amount=-1 +kerning first=8217 second=351 amount=-1 +kerning first=66 second=377 amount=-2 +kerning first=266 second=198 amount=-2 +kerning first=375 second=248 amount=-1 +kerning first=199 second=103 amount=-1 +kerning first=66 second=75 amount=-2 +kerning first=338 second=198 amount=-1 +kerning first=298 second=118 amount=-1 +kerning first=363 second=229 amount=-1 +kerning first=8218 second=249 amount=-1 +kerning first=315 second=75 amount=-1 +kerning first=354 second=80 amount=-1 +kerning first=262 second=118 amount=-1 +kerning first=84 second=68 amount=-1 +kerning first=370 second=118 amount=-1 +kerning first=374 second=380 amount=-2 +kerning first=327 second=229 amount=-1 +kerning first=121 second=118 amount=-1 +kerning first=339 second=8220 amount=-1 +kerning first=376 second=120 amount=-1 +kerning first=210 second=80 amount=-1 +kerning first=85 second=118 amount=-1 +kerning first=1040 second=1077 amount=-1 +kerning first=232 second=106 amount=-1 +kerning first=77 second=332 amount=-1 +kerning first=226 second=118 amount=-1 +kerning first=267 second=8220 amount=-1 +kerning first=218 second=332 amount=-1 +kerning first=282 second=80 amount=-1 +kerning first=315 second=377 amount=-1 +kerning first=231 second=8220 amount=-1 +kerning first=115 second=287 amount=-1 +kerning first=198 second=219 amount=-1 +kerning first=79 second=287 amount=-1 +kerning first=350 second=8217 amount=-1 +kerning first=288 second=256 amount=-1 +kerning first=220 second=287 amount=-2 +kerning first=310 second=244 amount=-1 +kerning first=362 second=332 amount=-1 +kerning first=90 second=242 amount=-1 +kerning first=382 second=244 amount=-1 +kerning first=1037 second=1108 amount=-1 +kerning first=256 second=287 amount=-1 +kerning first=195 second=242 amount=-1 +kerning first=364 second=287 amount=-2 +kerning first=242 second=8217 amount=-1 +kerning first=328 second=287 amount=-1 +kerning first=82 second=264 amount=-1 +kerning first=1027 second=1040 amount=-2 +kerning first=267 second=242 amount=-1 +kerning first=86 second=289 amount=-2 +kerning first=231 second=242 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=122 second=289 amount=-1 +kerning first=8250 second=224 amount=-1 +kerning first=83 second=66 amount=-1 +kerning first=192 second=99 amount=-1 +kerning first=227 second=289 amount=-1 +kerning first=258 second=111 amount=-1 +kerning first=263 second=289 amount=-1 +kerning first=375 second=242 amount=-1 +kerning first=67 second=119 amount=-1 +kerning first=194 second=254 amount=-1 +kerning first=103 second=119 amount=-1 +kerning first=330 second=111 amount=-1 +kerning first=230 second=254 amount=-1 +kerning first=335 second=289 amount=-1 +kerning first=211 second=82 amount=-1 +kerning first=366 second=111 amount=-1 +kerning first=266 second=254 amount=-1 +kerning first=371 second=289 amount=-1 +kerning first=346 second=230 amount=-1 +kerning first=377 second=197 amount=-1 +kerning first=315 second=117 amount=-1 +kerning first=382 second=230 amount=-1 +kerning first=244 second=119 amount=-1 +kerning first=222 second=97 amount=-1 +kerning first=279 second=117 amount=-1 +kerning first=274 second=230 amount=-1 +kerning first=280 second=119 amount=-1 +kerning first=69 second=74 amount=-1 +kerning first=210 second=354 amount=-1 +kerning first=310 second=230 amount=-1 +kerning first=316 second=119 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=85 second=361 amount=-1 +kerning first=371 second=275 amount=-1 +kerning first=202 second=230 amount=-1 +kerning first=330 second=97 amount=-1 +kerning first=282 second=354 amount=-1 +kerning first=331 second=250 amount=-1 +kerning first=323 second=121 amount=-1 +kerning first=366 second=97 amount=-2 +kerning first=1073 second=1078 amount=-1 +kerning first=295 second=250 amount=-1 +kerning first=1113 second=1099 amount=-1 +kerning first=287 second=121 amount=-1 +kerning first=1043 second=1054 amount=-1 +kerning first=251 second=121 amount=-1 +kerning first=198 second=205 amount=-1 +kerning first=282 second=74 amount=-1 +kerning first=367 second=250 amount=-1 +kerning first=204 second=378 amount=-1 +kerning first=374 second=240 amount=-2 +kerning first=187 second=250 amount=-1 +kerning first=251 second=107 amount=-1 +kerning first=354 second=74 amount=-2 +kerning first=302 second=240 amount=-1 +kerning first=65 second=333 amount=-1 +kerning first=259 second=250 amount=-1 +kerning first=290 second=86 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=199 second=338 amount=-2 +kerning first=240 second=378 amount=-1 +kerning first=327 second=287 amount=-1 +kerning first=101 second=8217 amount=-1 +kerning first=370 second=269 amount=-1 +kerning first=99 second=378 amount=-1 +kerning first=82 second=250 amount=-1 +kerning first=207 second=117 amount=-1 +kerning first=8216 second=370 amount=-1 +kerning first=84 second=116 amount=-1 +kerning first=89 second=240 amount=-2 +kerning first=268 second=310 amount=-1 +kerning first=195 second=318 amount=-1 +kerning first=231 second=318 amount=-1 +kerning first=68 second=220 amount=-1 +kerning first=69 second=298 amount=-1 +kerning first=267 second=318 amount=-1 +kerning first=280 second=214 amount=-1 +kerning first=266 second=240 amount=-1 +kerning first=187 second=194 amount=-2 +kerning first=303 second=318 amount=-1 +kerning first=376 second=310 amount=-1 +kerning first=339 second=318 amount=-1 +kerning first=210 second=298 amount=-1 +kerning first=1048 second=1089 amount=-1 +kerning first=375 second=318 amount=-1 +kerning first=314 second=259 amount=-1 +kerning first=323 second=375 amount=-1 +kerning first=278 second=259 amount=-1 +kerning first=199 second=77 amount=-1 +kerning first=287 second=375 amount=-1 +kerning first=200 second=71 amount=-1 +kerning first=67 second=214 amount=-2 +kerning first=251 second=375 amount=-1 +kerning first=1025 second=1041 amount=-1 +kerning first=76 second=330 amount=-1 +kerning first=350 second=259 amount=-1 +kerning first=379 second=77 amount=-1 +kerning first=108 second=231 amount=-1 +kerning first=101 second=259 amount=-1 +kerning first=45 second=97 amount=-1 +kerning first=317 second=220 amount=-1 +kerning first=203 second=296 amount=-1 +kerning first=206 second=259 amount=-1 +kerning first=1059 second=1086 amount=-2 +kerning first=365 second=369 amount=-1 +kerning first=356 second=253 amount=-1 +kerning first=352 second=228 amount=-1 +kerning first=111 second=105 amount=-1 +kerning first=377 second=374 amount=-1 +kerning first=316 second=228 amount=-1 +kerning first=90 second=304 amount=-1 +kerning first=268 second=324 amount=-1 +kerning first=100 second=251 amount=-1 +kerning first=232 second=324 amount=-1 +kerning first=8216 second=356 amount=-1 +kerning first=241 second=251 amount=-1 +kerning first=221 second=369 amount=-1 +kerning first=208 second=228 amount=-1 +kerning first=280 second=226 amount=-1 +kerning first=205 second=251 amount=-1 +kerning first=314 second=273 amount=-1 +kerning first=110 second=375 amount=-1 +kerning first=382 second=281 amount=-1 +kerning first=313 second=251 amount=-1 +kerning first=1054 second=1055 amount=-1 +kerning first=103 second=228 amount=-1 +kerning first=277 second=251 amount=-1 +kerning first=257 second=369 amount=-1 +kerning first=67 second=228 amount=-1 +kerning first=216 second=206 amount=-1 +kerning first=8217 second=261 amount=-3 +kerning first=282 second=298 amount=-1 +kerning first=66 second=70 amount=-2 +kerning first=354 second=284 amount=-1 +kerning first=288 second=206 amount=-1 +kerning first=209 second=234 amount=-1 +kerning first=187 second=217 amount=-2 +kerning first=354 second=298 amount=-1 +kerning first=378 second=279 amount=-1 +kerning first=282 second=284 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=87 second=290 amount=-1 +kerning first=248 second=253 amount=-1 +kerning first=193 second=363 amount=-1 +kerning first=8218 second=311 amount=-1 +kerning first=353 second=45 amount=-1 +kerning first=1051 second=1108 amount=-1 +kerning first=69 second=284 amount=-1 +kerning first=229 second=363 amount=-1 +kerning first=221 second=355 amount=-1 +kerning first=88 second=83 amount=-1 +kerning first=224 second=318 amount=-1 +kerning first=336 second=220 amount=-1 +kerning first=260 second=318 amount=-1 +kerning first=75 second=268 amount=-1 +kerning first=193 second=83 amount=-2 +kerning first=314 second=263 amount=-1 +kerning first=198 second=213 amount=-1 +kerning first=286 second=313 amount=-1 +kerning first=65 second=263 amount=-1 +kerning first=208 second=218 amount=-1 +kerning first=214 second=313 amount=-1 +kerning first=206 second=263 amount=-1 +kerning first=67 second=218 amount=-1 +kerning first=69 second=218 amount=-1 +kerning first=203 second=310 amount=-1 +kerning first=221 second=303 amount=-1 +kerning first=75 second=220 amount=-1 +kerning first=317 second=255 amount=-1 +kerning first=337 second=353 amount=-1 +kerning first=321 second=315 amount=-1 +kerning first=365 second=365 amount=-1 +kerning first=85 second=225 amount=-2 +kerning first=365 second=303 amount=-1 +kerning first=213 second=315 amount=-1 +kerning first=257 second=365 amount=-1 +kerning first=288 second=220 amount=-1 +kerning first=193 second=353 amount=-1 +kerning first=85 second=114 amount=-1 +kerning first=221 second=365 amount=-1 +kerning first=229 second=353 amount=-1 +kerning first=216 second=220 amount=-1 +kerning first=1044 second=1060 amount=-1 +kerning first=83 second=270 amount=-1 +kerning first=78 second=235 amount=-1 +kerning first=298 second=225 amount=-1 +kerning first=354 second=45 amount=-3 +kerning first=275 second=98 amount=-1 +kerning first=334 second=225 amount=-1 +kerning first=381 second=228 amount=-1 +kerning first=370 second=225 amount=-2 +kerning first=219 second=235 amount=-1 +kerning first=1113 second=1093 amount=-1 +kerning first=347 second=98 amount=-1 +kerning first=255 second=235 amount=-1 +kerning first=121 second=225 amount=-2 +kerning first=291 second=235 amount=-1 +kerning first=1059 second=1100 amount=-2 +kerning first=332 second=270 amount=-1 +kerning first=327 second=235 amount=-1 +kerning first=70 second=350 amount=-1 +kerning first=201 second=228 amount=-1 +kerning first=203 second=98 amount=-1 +kerning first=45 second=363 amount=-1 +kerning first=262 second=225 amount=-1 +kerning first=352 second=218 amount=-1 +kerning first=275 second=102 amount=-1 +kerning first=117 second=363 amount=-1 +kerning first=232 second=46 amount=-2 +kerning first=278 second=317 amount=-1 +kerning first=211 second=350 amount=-1 +kerning first=347 second=102 amount=-1 +kerning first=268 second=46 amount=-1 +kerning first=108 second=305 amount=-1 +kerning first=278 second=325 amount=-1 +kerning first=76 second=280 amount=-1 +kerning first=304 second=46 amount=-1 +kerning first=192 second=355 amount=-1 +kerning first=1116 second=1108 amount=-1 +kerning first=258 second=363 amount=-1 +kerning first=83 second=318 amount=-1 +kerning first=310 second=356 amount=-1 +kerning first=119 second=318 amount=-1 +kerning first=87 second=355 amount=-1 +kerning first=286 second=270 amount=-1 +kerning first=203 second=102 amount=-1 +kerning first=330 second=363 amount=-1 +kerning first=83 second=260 amount=-2 +kerning first=71 second=200 amount=-1 +kerning first=366 second=363 amount=-1 +kerning first=207 second=67 amount=-1 +kerning first=211 second=86 amount=-1 +kerning first=310 second=117 amount=-1 +kerning first=1027 second=1117 amount=-1 +kerning first=249 second=316 amount=-1 +kerning first=264 second=81 amount=-2 +kerning first=8216 second=193 amount=-4 +kerning first=268 second=112 amount=-1 +kerning first=197 second=211 amount=-1 +kerning first=77 second=171 amount=-2 +kerning first=232 second=112 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=113 second=171 amount=-1 +kerning first=368 second=260 amount=-2 +kerning first=205 second=261 amount=-1 +kerning first=196 second=112 amount=-1 +kerning first=290 second=365 amount=-1 +kerning first=332 second=260 amount=-2 +kerning first=381 second=283 amount=-1 +kerning first=258 second=107 amount=-1 +kerning first=352 second=280 amount=-1 +kerning first=277 second=261 amount=-1 +kerning first=75 second=216 amount=-1 +kerning first=377 second=211 amount=-1 +kerning first=317 second=253 amount=-1 +kerning first=326 second=171 amount=-1 +kerning first=198 second=209 amount=-1 +kerning first=66 second=327 amount=-2 +kerning first=362 second=171 amount=-3 +kerning first=250 second=105 amount=-1 +kerning first=295 second=254 amount=-1 +kerning first=87 second=81 amount=-1 +kerning first=218 second=171 amount=-3 +kerning first=331 second=254 amount=-1 +kerning first=367 second=254 amount=-1 +kerning first=315 second=327 amount=-1 +kerning first=376 second=112 amount=-1 +kerning first=192 second=81 amount=-1 +kerning first=290 second=171 amount=-1 +kerning first=218 second=346 amount=-1 +kerning first=204 second=100 amount=-1 +kerning first=209 second=230 amount=-1 +kerning first=249 second=249 amount=-1 +kerning first=108 second=249 amount=-1 +kerning first=8217 second=257 amount=-3 +kerning first=68 second=282 amount=-1 +kerning first=77 second=346 amount=-1 +kerning first=88 second=353 amount=-1 +kerning first=78 second=333 amount=-1 +kerning first=362 second=346 amount=-1 +kerning first=1036 second=1058 amount=-1 +kerning first=84 second=334 amount=-1 +kerning first=286 second=379 amount=-1 +kerning first=1047 second=1079 amount=-1 +kerning first=68 second=230 amount=-1 +kerning first=290 second=346 amount=-1 +kerning first=99 second=100 amount=-1 +kerning first=321 second=249 amount=-1 +kerning first=1070 second=1103 amount=-1 +kerning first=364 second=350 amount=-1 +kerning first=272 second=325 amount=-1 +kerning first=117 second=107 amount=-1 +kerning first=1040 second=1091 amount=-1 +kerning first=90 second=256 amount=-1 +kerning first=86 second=223 amount=-1 +kerning first=1069 second=1039 amount=-1 +kerning first=353 second=230 amount=-1 +kerning first=72 second=249 amount=-1 +kerning first=45 second=107 amount=-1 +kerning first=281 second=230 amount=-1 +kerning first=344 second=339 amount=-1 +kerning first=282 second=84 amount=-1 +kerning first=1054 second=1059 amount=-1 +kerning first=193 second=89 amount=-3 +kerning first=1098 second=1094 amount=-1 +kerning first=210 second=84 amount=-1 +kerning first=74 second=240 amount=-1 +kerning first=344 second=79 amount=-1 +kerning first=366 second=192 amount=-2 +kerning first=8218 second=357 amount=-1 +kerning first=356 second=187 amount=-1 +kerning first=362 second=237 amount=-1 +kerning first=381 second=281 amount=-1 +kerning first=364 second=237 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=222 second=192 amount=-2 +kerning first=232 second=314 amount=-1 +kerning first=339 second=44 amount=-2 +kerning first=381 second=232 amount=-1 +kerning first=274 second=200 amount=-1 +kerning first=196 second=314 amount=-1 +kerning first=221 second=99 amount=-2 +kerning first=336 second=8249 amount=-1 +kerning first=338 second=118 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=315 second=378 amount=-1 +kerning first=220 second=237 amount=-1 +kerning first=228 second=8249 amount=-1 +kerning first=262 second=217 amount=-1 +kerning first=45 second=192 amount=-2 +kerning first=268 second=314 amount=-1 +kerning first=371 second=227 amount=-1 +kerning first=248 second=187 amount=-1 +kerning first=375 second=44 amount=-3 +kerning first=115 second=237 amount=-1 +kerning first=317 second=282 amount=-1 +kerning first=334 second=217 amount=-1 +kerning first=379 second=277 amount=-1 +kerning first=192 second=8249 amount=-2 +kerning first=68 second=224 amount=-1 +kerning first=267 second=44 amount=-1 +kerning first=240 second=104 amount=-1 +kerning first=108 second=261 amount=-1 +kerning first=8220 second=121 amount=-1 +kerning first=87 second=8249 amount=-3 +kerning first=87 second=351 amount=-2 +kerning first=8217 second=251 amount=-1 +kerning first=187 second=202 amount=-3 +kerning first=1101 second=1076 amount=-1 +kerning first=83 second=326 amount=-1 +kerning first=192 second=351 amount=-1 +kerning first=119 second=326 amount=-1 +kerning first=203 second=302 amount=-1 +kerning first=378 second=269 amount=-1 +kerning first=209 second=224 amount=-1 +kerning first=80 second=99 amount=-1 +kerning first=117 second=371 amount=-1 +kerning first=281 second=224 amount=-1 +kerning first=264 second=347 amount=-1 +kerning first=260 second=253 amount=-1 +kerning first=228 second=347 amount=-1 +kerning first=353 second=224 amount=-1 +kerning first=325 second=44 amount=-1 +kerning first=216 second=196 amount=-2 +kerning first=206 second=267 amount=-1 +kerning first=366 second=367 amount=-1 +kerning first=119 second=275 amount=-1 +kerning first=379 second=69 amount=-1 +kerning first=65 second=267 amount=-1 +kerning first=258 second=367 amount=-1 +kerning first=45 second=371 amount=-1 +kerning first=314 second=267 amount=-1 +kerning first=75 second=212 amount=-1 +kerning first=277 second=257 amount=-1 +kerning first=199 second=69 amount=-1 +kerning first=258 second=101 amount=-1 +kerning first=228 second=351 amount=-1 +kerning first=1061 second=1047 amount=-1 +kerning first=208 second=374 amount=-1 +kerning first=205 second=257 amount=-1 +kerning first=330 second=101 amount=-1 +kerning first=200 second=79 amount=-1 +kerning first=117 second=367 amount=-1 +kerning first=1059 second=1096 amount=-2 +kerning first=366 second=101 amount=-1 +kerning first=220 second=241 amount=-1 +kerning first=269 second=382 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=264 second=291 amount=-1 +kerning first=296 second=266 amount=-1 +kerning first=228 second=291 amount=-1 +kerning first=192 second=291 amount=-1 +kerning first=377 second=382 amount=-1 +kerning first=68 second=226 amount=-1 +kerning first=1062 second=1057 amount=-1 +kerning first=8217 second=253 amount=-1 +kerning first=321 second=311 amount=-1 +kerning first=87 second=291 amount=-2 +kerning first=199 second=337 amount=-1 +kerning first=65 second=8221 amount=-3 +kerning first=317 second=286 amount=-1 +kerning first=115 second=241 amount=-1 +kerning first=351 second=331 amount=-1 +kerning first=209 second=226 amount=-1 +kerning first=8216 second=364 amount=-1 +kerning first=209 second=286 amount=-1 +kerning first=249 second=311 amount=-1 +kerning first=378 second=271 amount=-1 +kerning first=233 second=382 amount=-1 +kerning first=221 second=361 amount=-1 +kerning first=379 second=337 amount=-1 +kerning first=279 second=331 amount=-1 +kerning first=315 second=331 amount=-1 +kerning first=242 second=8221 amount=-1 +kerning first=103 second=241 amount=-1 +kerning first=101 second=8221 amount=-1 +kerning first=257 second=361 amount=-1 +kerning first=334 second=221 amount=-1 +kerning first=365 second=361 amount=-1 +kerning first=196 second=316 amount=-1 +kerning first=350 second=8221 amount=-1 +kerning first=232 second=316 amount=-1 +kerning first=8222 second=104 amount=-1 +kerning first=262 second=221 amount=-1 +kerning first=268 second=316 amount=-1 +kerning first=66 second=331 amount=-1 +kerning first=368 second=266 amount=-1 +kerning first=314 second=8221 amount=-2 +kerning first=231 second=252 amount=-1 +kerning first=249 second=45 amount=-1 +kerning first=222 second=103 amount=-1 +kerning first=267 second=252 amount=-1 +kerning first=122 second=227 amount=-1 +kerning first=213 second=45 amount=-1 +kerning first=303 second=252 amount=-1 +kerning first=86 second=227 amount=-2 +kerning first=321 second=45 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=66 second=210 amount=-1 +kerning first=339 second=252 amount=-1 +kerning first=81 second=103 amount=-1 +kerning first=216 second=86 amount=-1 +kerning first=45 second=103 amount=-1 +kerning first=310 second=229 amount=-1 +kerning first=90 second=252 amount=-1 +kerning first=76 second=278 amount=-1 +kerning first=278 second=323 amount=-1 +kerning first=76 second=336 amount=-1 +kerning first=263 second=227 amount=-1 +kerning first=195 second=252 amount=-1 +kerning first=350 second=323 amount=-1 +kerning first=281 second=226 amount=-1 +kerning first=217 second=336 amount=-1 +kerning first=374 second=246 amount=-1 +kerning first=377 second=207 amount=-1 +kerning first=286 second=317 amount=-1 +kerning first=269 second=46 amount=-1 +kerning first=353 second=226 amount=-1 +kerning first=78 second=233 amount=-1 +kerning first=302 second=246 amount=-1 +kerning first=211 second=356 amount=-1 +kerning first=325 second=336 amount=-1 +kerning first=266 second=246 amount=-1 +kerning first=366 second=103 amount=-2 +kerning first=211 second=90 amount=-1 +kerning first=69 second=84 amount=-1 +kerning first=330 second=103 amount=-1 +kerning first=194 second=246 amount=-1 +kerning first=336 second=291 amount=-1 +kerning first=219 second=233 amount=-1 +kerning first=80 second=339 amount=-1 +kerning first=258 second=103 amount=-1 +kerning first=1098 second=1098 amount=-1 +kerning first=286 second=103 amount=-1 +kerning first=116 second=45 amount=-1 +kerning first=196 second=356 amount=-3 +kerning first=122 second=259 amount=-1 +kerning first=279 second=347 amount=-1 +kerning first=257 second=45 amount=-1 +kerning first=236 second=369 amount=-1 +kerning first=214 second=103 amount=-1 +kerning first=118 second=246 amount=-1 +kerning first=366 second=375 amount=-1 +kerning first=221 second=45 amount=-3 +kerning first=200 second=369 amount=-1 +kerning first=82 second=246 amount=-1 +kerning first=1039 second=1086 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=8216 second=347 amount=-1 +kerning first=73 second=103 amount=-1 +kerning first=100 second=253 amount=-1 +kerning first=73 second=363 amount=-1 +kerning first=86 second=259 amount=-2 +kerning first=113 second=116 amount=-1 +kerning first=365 second=45 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=1055 second=1089 amount=-1 +kerning first=108 second=279 amount=-1 +kerning first=66 second=65 amount=-3 +kerning first=117 second=375 amount=-1 +kerning first=381 second=226 amount=-1 +kerning first=1059 second=1102 amount=-2 +kerning first=72 second=279 amount=-1 +kerning first=240 second=122 amount=-1 +kerning first=380 second=109 amount=-1 +kerning first=290 second=362 amount=-1 +kerning first=250 second=363 amount=-1 +kerning first=204 second=122 amount=-1 +kerning first=45 second=375 amount=-2 +kerning first=1091 second=1089 amount=-1 +kerning first=286 second=363 amount=-1 +kerning first=330 second=375 amount=-1 +kerning first=199 second=119 amount=-1 +kerning first=236 second=109 amount=-1 +kerning first=258 second=375 amount=-1 +kerning first=80 second=45 amount=-1 +kerning first=315 second=65 amount=-1 +kerning first=380 second=369 amount=-1 +kerning first=221 second=305 amount=-1 +kerning first=200 second=109 amount=-1 +kerning first=44 second=45 amount=-1 +kerning first=1047 second=1063 amount=-1 +kerning first=1113 second=1095 amount=-1 +kerning first=344 second=369 amount=-1 +kerning first=330 second=115 amount=-1 +kerning first=1038 second=1094 amount=-2 +kerning first=236 second=355 amount=-1 +kerning first=366 second=115 amount=-1 +kerning first=196 second=370 amount=-2 +kerning first=69 second=336 amount=-1 +kerning first=258 second=115 amount=-1 +kerning first=268 second=370 amount=-1 +kerning first=371 second=8217 amount=-2 +kerning first=380 second=355 amount=-1 +kerning first=214 second=89 amount=-1 +kerning first=200 second=364 amount=-1 +kerning first=1056 second=1053 amount=-1 +kerning first=344 second=355 amount=-1 +kerning first=282 second=336 amount=-1 +kerning first=212 second=196 amount=-2 +kerning first=205 second=253 amount=-1 +kerning first=8217 second=197 amount=-3 +kerning first=354 second=336 amount=-1 +kerning first=277 second=253 amount=-1 +kerning first=118 second=232 amount=-1 +kerning first=313 second=253 amount=-1 +kerning first=82 second=232 amount=-1 +kerning first=1091 second=1103 amount=-2 +kerning first=8250 second=254 amount=-1 +kerning first=84 second=332 amount=-1 +kerning first=376 second=82 amount=-1 +kerning first=376 second=328 amount=-1 +kerning first=73 second=335 amount=-1 +kerning first=280 second=196 amount=-1 +kerning first=99 second=108 amount=-1 +kerning first=371 second=231 amount=-1 +kerning first=1039 second=1104 amount=-1 +kerning first=205 second=225 amount=-1 +kerning first=352 second=196 amount=-2 +kerning first=336 second=315 amount=-1 +kerning first=279 second=228 amount=-1 +kerning first=339 second=116 amount=-1 +kerning first=240 second=108 amount=-1 +kerning first=262 second=203 amount=-1 +kerning first=122 second=231 amount=-1 +kerning first=376 second=370 amount=-1 +kerning first=68 second=280 amount=-1 +kerning first=82 second=218 amount=-1 +kerning first=263 second=8217 amount=-1 +kerning first=113 second=102 amount=-1 +kerning first=321 second=374 amount=-1 +kerning first=67 second=196 amount=-2 +kerning first=86 second=231 amount=-2 +kerning first=79 second=8221 amount=-1 +kerning first=263 second=273 amount=-1 +kerning first=115 second=8221 amount=-1 +kerning first=277 second=225 amount=-1 +kerning first=325 second=46 amount=-1 +kerning first=310 second=350 amount=-1 +kerning first=361 second=46 amount=-1 +kerning first=317 second=280 amount=-1 +kerning first=195 second=286 amount=-1 +kerning first=310 second=242 amount=-1 +kerning first=122 second=273 amount=-1 +kerning first=187 second=218 amount=-2 +kerning first=263 second=231 amount=-1 +kerning first=256 second=8221 amount=-3 +kerning first=362 second=102 amount=-1 +kerning first=205 second=211 amount=-1 +kerning first=112 second=46 amount=-2 +kerning first=1069 second=1083 amount=-1 +kerning first=90 second=286 amount=-1 +kerning first=382 second=242 amount=-1 +kerning first=263 second=245 amount=-1 +kerning first=234 second=371 amount=-1 +kerning first=200 second=81 amount=-1 +kerning first=74 second=119 amount=-1 +kerning first=1105 second=1083 amount=-1 +kerning first=199 second=67 amount=-2 +kerning first=110 second=119 amount=-1 +kerning first=246 second=314 amount=-1 +kerning first=217 second=46 amount=-3 +kerning first=67 second=210 amount=-2 +kerning first=317 second=266 amount=-1 +kerning first=218 second=102 amount=-1 +kerning first=99 second=122 amount=-1 +kerning first=1047 second=1049 amount=-1 +kerning first=344 second=81 amount=-1 +kerning first=251 second=119 amount=-1 +kerning first=8250 second=282 amount=-3 +kerning first=290 second=102 amount=-1 +kerning first=371 second=245 amount=-1 +kerning first=287 second=119 amount=-1 +kerning first=313 second=211 amount=-1 +kerning first=314 second=255 amount=-1 +kerning first=323 second=119 amount=-1 +kerning first=354 second=187 amount=-1 +kerning first=281 second=252 amount=-1 +kerning first=317 second=252 amount=-1 +kerning first=353 second=252 amount=-1 +kerning first=268 second=328 amount=-1 +kerning first=122 second=245 amount=-1 +kerning first=65 second=269 amount=-1 +kerning first=86 second=245 amount=-2 +kerning first=379 second=67 amount=-1 +kerning first=104 second=252 amount=-1 +kerning first=216 second=68 amount=-1 +kerning first=108 second=307 amount=-1 +kerning first=206 second=269 amount=-1 +kerning first=209 second=252 amount=-1 +kerning first=371 second=259 amount=-1 +kerning first=75 second=262 amount=-1 +kerning first=198 second=109 amount=-1 +kerning first=355 second=378 amount=-1 +kerning first=315 second=353 amount=-1 +kerning first=351 second=353 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=351 second=365 amount=-1 +kerning first=314 second=269 amount=-1 +kerning first=315 second=365 amount=-1 +kerning first=369 second=112 amount=-1 +kerning first=211 second=366 amount=-1 +kerning first=211 second=378 amount=-1 +kerning first=279 second=365 amount=-1 +kerning first=333 second=112 amount=-1 +kerning first=269 second=171 amount=-1 +kerning first=207 second=353 amount=-1 +kerning first=305 second=171 amount=-1 +kerning first=283 second=378 amount=-1 +kerning first=207 second=365 amount=-1 +kerning first=243 second=353 amount=-1 +kerning first=279 second=353 amount=-1 +kerning first=377 second=171 amount=-1 +kerning first=84 second=100 amount=-2 +kerning first=120 second=100 amount=-1 +kerning first=296 second=288 amount=-1 +kerning first=364 second=275 amount=-1 +kerning first=1036 second=1054 amount=-2 +kerning first=256 second=275 amount=-1 +kerning first=66 second=353 amount=-1 +kerning first=203 second=352 amount=-1 +kerning first=368 second=288 amount=-1 +kerning first=364 second=249 amount=-1 +kerning first=102 second=353 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=1030 second=1086 amount=-1 +kerning first=220 second=275 amount=-1 +kerning first=203 second=354 amount=-1 +kerning first=280 second=210 amount=-1 +kerning first=260 second=288 amount=-1 +kerning first=356 second=223 amount=-1 +kerning first=8216 second=368 amount=-1 +kerning first=88 second=113 amount=-1 +kerning first=83 second=365 amount=-1 +kerning first=83 second=274 amount=-1 +kerning first=315 second=379 amount=-1 +kerning first=69 second=296 amount=-1 +kerning first=196 second=231 amount=-1 +kerning first=211 second=380 amount=-1 +kerning first=79 second=8249 amount=-1 +kerning first=115 second=249 amount=-1 +kerning first=210 second=296 amount=-1 +kerning first=324 second=8220 amount=-2 +kerning first=230 second=367 amount=-1 +kerning first=381 second=198 amount=-1 +kerning first=283 second=380 amount=-1 +kerning first=288 second=8220 amount=-1 +kerning first=79 second=289 amount=-1 +kerning first=282 second=296 amount=-1 +kerning first=379 second=313 amount=-1 +kerning first=252 second=8220 amount=-2 +kerning first=256 second=249 amount=-1 +kerning first=115 second=289 amount=-1 +kerning first=192 second=217 amount=-2 +kerning first=75 second=248 amount=-1 +kerning first=216 second=8220 amount=-1 +kerning first=354 second=296 amount=-1 +kerning first=201 second=198 amount=-1 +kerning first=70 second=380 amount=-1 +kerning first=8216 second=122 amount=-1 +kerning first=220 second=289 amount=-2 +kerning first=84 second=114 amount=-1 +kerning first=106 second=380 amount=-1 +kerning first=111 second=8220 amount=-1 +kerning first=220 second=249 amount=-1 +kerning first=103 second=328 amount=-1 +kerning first=102 second=339 amount=-1 +kerning first=193 second=99 amount=-1 +kerning first=364 second=8249 amount=-3 +kerning first=75 second=8220 amount=-1 +kerning first=66 second=365 amount=-1 +kerning first=199 second=327 amount=-1 +kerning first=364 second=263 amount=-1 +kerning first=264 second=315 amount=-1 +kerning first=187 second=206 amount=-3 +kerning first=66 second=379 amount=-2 +kerning first=248 second=237 amount=-1 +kerning first=328 second=8249 amount=-1 +kerning first=199 second=313 amount=-1 +kerning first=1048 second=1105 amount=-1 +kerning first=80 second=73 amount=-1 +kerning first=220 second=8249 amount=-3 +kerning first=256 second=8249 amount=-2 +kerning first=286 second=75 amount=-1 +kerning first=207 second=339 amount=-1 +kerning first=220 second=263 amount=-1 +kerning first=115 second=8249 amount=-1 +kerning first=87 second=315 amount=-1 +kerning first=379 second=327 amount=-1 +kerning first=221 second=73 amount=-1 +kerning first=256 second=263 amount=-1 +kerning first=214 second=75 amount=-1 +kerning first=212 second=209 amount=-1 +kerning first=201 second=212 amount=-1 +kerning first=371 second=111 amount=-1 +kerning first=200 second=83 amount=-1 +kerning first=377 second=199 amount=-1 +kerning first=356 second=209 amount=-1 +kerning first=256 second=277 amount=-1 +kerning first=315 second=381 amount=-1 +kerning first=214 second=323 amount=-1 +kerning first=88 second=99 amount=-1 +kerning first=272 second=83 amount=-1 +kerning first=364 second=277 amount=-1 +kerning first=367 second=115 amount=-1 +kerning first=1070 second=1113 amount=-1 +kerning first=284 second=209 amount=-1 +kerning first=256 second=289 amount=-1 +kerning first=286 second=323 amount=-1 +kerning first=344 second=83 amount=-1 +kerning first=207 second=351 amount=-1 +kerning first=69 second=76 amount=-1 +kerning first=1100 second=1118 amount=-1 +kerning first=328 second=289 amount=-1 +kerning first=220 second=277 amount=-1 +kerning first=279 second=351 amount=-1 +kerning first=381 second=212 amount=-1 +kerning first=364 second=289 amount=-2 +kerning first=75 second=264 amount=-1 +kerning first=243 second=351 amount=-1 +kerning first=8220 second=194 amount=-4 +kerning first=88 second=111 amount=-1 +kerning first=71 second=209 amount=-1 +kerning first=86 second=233 amount=-2 +kerning first=193 second=111 amount=-1 +kerning first=279 second=367 amount=-1 +kerning first=102 second=351 amount=-1 +kerning first=211 second=364 amount=-1 +kerning first=315 second=367 amount=-1 +kerning first=122 second=233 amount=-1 +kerning first=66 second=351 amount=-1 +kerning first=364 second=291 amount=-2 +kerning first=115 second=261 amount=-1 +kerning first=207 second=367 amount=-1 +kerning first=263 second=233 amount=-1 +kerning first=328 second=291 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=354 second=76 amount=-1 +kerning first=84 second=72 amount=-1 +kerning first=256 second=291 amount=-1 +kerning first=220 second=291 amount=-2 +kerning first=201 second=226 amount=-1 +kerning first=351 second=351 amount=-1 +kerning first=102 second=337 amount=-1 +kerning first=1116 second=1092 amount=-1 +kerning first=66 second=367 amount=-1 +kerning first=347 second=326 amount=-1 +kerning first=371 second=233 amount=-1 +kerning first=315 second=351 amount=-1 +kerning first=115 second=291 amount=-1 +kerning first=210 second=76 amount=-1 +kerning first=79 second=291 amount=-1 +kerning first=79 second=261 amount=-1 +kerning first=99 second=110 amount=-1 +kerning first=83 second=316 amount=-1 +kerning first=324 second=250 amount=-1 +kerning first=119 second=316 amount=-1 +kerning first=288 second=250 amount=-1 +kerning first=203 second=326 amount=-1 +kerning first=8250 second=119 amount=-2 +kerning first=106 second=378 amount=-1 +kerning first=197 second=171 amount=-2 +kerning first=77 second=350 amount=-1 +kerning first=224 second=316 amount=-1 +kerning first=250 second=103 amount=-1 +kerning first=70 second=378 amount=-1 +kerning first=83 second=302 amount=-1 +kerning first=275 second=326 amount=-1 +kerning first=290 second=350 amount=-1 +kerning first=260 second=316 amount=-1 +kerning first=205 second=380 amount=-1 +kerning first=218 second=350 amount=-1 +kerning first=252 second=250 amount=-1 +kerning first=364 second=261 amount=-2 +kerning first=66 second=381 amount=-2 +kerning first=1059 second=1116 amount=-2 +kerning first=353 second=8217 amount=-1 +kerning first=117 second=117 amount=-1 +kerning first=272 second=381 amount=-1 +kerning first=1113 second=1107 amount=-1 +kerning first=362 second=350 amount=-1 +kerning first=371 second=271 amount=-1 +kerning first=89 second=200 amount=-1 +kerning first=87 second=331 amount=-1 +kerning first=90 second=260 amount=-1 +kerning first=338 second=200 amount=-1 +kerning first=381 second=214 amount=-1 +kerning first=258 second=117 amount=-1 +kerning first=78 second=248 amount=-1 +kerning first=350 second=311 amount=-1 +kerning first=366 second=117 amount=-1 +kerning first=266 second=200 amount=-1 +kerning first=187 second=77 amount=-3 +kerning first=330 second=117 amount=-1 +kerning first=211 second=196 amount=-2 +kerning first=209 second=240 amount=-1 +kerning first=69 second=338 amount=-1 +kerning first=317 second=264 amount=-1 +kerning first=325 second=290 amount=-1 +kerning first=212 second=207 amount=-1 +kerning first=196 second=98 amount=-1 +kerning first=8220 second=196 amount=-4 +kerning first=122 second=271 amount=-1 +kerning first=76 second=290 amount=-1 +kerning first=209 second=264 amount=-1 +kerning first=84 second=375 amount=-1 +kerning first=203 second=259 amount=-1 +kerning first=45 second=377 amount=-2 +kerning first=201 second=214 amount=-1 +kerning first=45 second=117 amount=-1 +kerning first=81 second=377 amount=-1 +kerning first=263 second=271 amount=-1 +kerning first=217 second=290 amount=-1 +kerning first=71 second=207 amount=-1 +kerning first=290 second=90 amount=-1 +kerning first=268 second=330 amount=-1 +kerning first=256 second=111 amount=-1 +kerning first=222 second=377 amount=-1 +kerning first=187 second=220 amount=-2 +kerning first=362 second=90 amount=-1 +kerning first=8217 second=230 amount=-3 +kerning first=84 second=122 amount=-2 +kerning first=362 second=334 amount=-1 +kerning first=1038 second=1086 amount=-2 +kerning first=376 second=330 amount=-1 +kerning first=284 second=207 amount=-1 +kerning first=198 second=227 amount=-1 +kerning first=321 second=291 amount=-1 +kerning first=122 second=305 amount=-1 +kerning first=1047 second=1037 amount=-1 +kerning first=366 second=377 amount=-1 +kerning first=83 second=304 amount=-1 +kerning first=356 second=207 amount=-1 +kerning first=249 second=291 amount=-1 +kerning first=1055 second=1077 amount=-1 +kerning first=213 second=291 amount=-1 +kerning first=278 second=311 amount=-1 +kerning first=80 second=317 amount=-1 +kerning first=347 second=324 amount=-1 +kerning first=1059 second=1114 amount=-2 +kerning first=236 second=97 amount=-1 +kerning first=235 second=287 amount=-1 +kerning first=242 second=311 amount=-1 +kerning first=377 second=187 amount=-1 +kerning first=108 second=291 amount=-1 +kerning first=272 second=97 amount=-1 +kerning first=199 second=287 amount=-1 +kerning first=66 second=77 amount=-2 +kerning first=72 second=291 amount=-1 +kerning first=73 second=337 amount=-1 +kerning first=307 second=287 amount=-1 +kerning first=221 second=317 amount=-1 +kerning first=75 second=234 amount=-1 +kerning first=374 second=200 amount=-1 +kerning first=200 second=97 amount=-1 +kerning first=101 second=311 amount=-1 +kerning first=315 second=77 amount=-1 +kerning first=8222 second=365 amount=-1 +kerning first=380 second=97 amount=-1 +kerning first=379 second=287 amount=-2 +kerning first=89 second=290 amount=-1 +kerning first=65 second=311 amount=-1 +kerning first=233 second=187 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=71 second=197 amount=-1 +kerning first=275 second=324 amount=-1 +kerning first=218 second=90 amount=-1 +kerning first=90 second=298 amount=-1 +kerning first=1024 second=1040 amount=-1 +kerning first=192 second=71 amount=-1 +kerning first=344 second=97 amount=-1 +kerning first=108 second=263 amount=-1 +kerning first=286 second=365 amount=-1 +kerning first=212 second=197 amount=-2 +kerning first=250 second=365 amount=-1 +kerning first=209 second=268 amount=-1 +kerning first=240 second=120 amount=-1 +kerning first=1059 second=1104 amount=-2 +kerning first=315 second=356 amount=-1 +kerning first=284 second=197 amount=-1 +kerning first=109 second=365 amount=-1 +kerning first=344 second=353 amount=-1 +kerning first=268 second=70 amount=-1 +kerning first=356 second=197 amount=-3 +kerning first=371 second=243 amount=-1 +kerning first=73 second=365 amount=-1 +kerning first=8216 second=382 amount=-1 +kerning first=380 second=353 amount=-1 +kerning first=69 second=310 amount=-1 +kerning first=199 second=325 amount=-1 +kerning first=205 second=213 amount=-1 +kerning first=84 second=74 amount=-2 +kerning first=99 second=120 amount=-1 +kerning first=72 second=263 amount=-1 +kerning first=203 second=78 amount=-1 +kerning first=376 second=70 amount=-1 +kerning first=264 second=46 amount=-1 +kerning first=263 second=275 amount=-1 +kerning first=200 second=353 amount=-1 +kerning first=282 second=310 amount=-1 +kerning first=87 second=303 amount=-1 +kerning first=122 second=275 amount=-1 +kerning first=236 second=353 amount=-1 +kerning first=1047 second=1065 amount=-1 +kerning first=98 second=314 amount=-1 +kerning first=334 second=201 amount=-1 +kerning first=90 second=270 amount=-1 +kerning first=210 second=310 amount=-1 +kerning first=221 second=85 amount=-1 +kerning first=218 second=118 amount=-1 +kerning first=86 second=275 amount=-2 +kerning first=203 second=314 amount=-1 +kerning first=262 second=201 amount=-1 +kerning first=330 second=113 amount=-1 +kerning first=264 second=303 amount=-1 +kerning first=290 second=118 amount=-1 +kerning first=254 second=118 amount=-1 +kerning first=258 second=113 amount=-1 +kerning first=354 second=310 amount=-1 +kerning first=243 second=105 amount=-1 +kerning first=8250 second=252 amount=-1 +kerning first=206 second=283 amount=-1 +kerning first=82 second=248 amount=-1 +kerning first=213 second=8249 amount=-1 +kerning first=279 second=105 amount=-1 +kerning first=113 second=118 amount=-2 +kerning first=354 second=338 amount=-1 +kerning first=72 second=8249 amount=-2 +kerning first=260 second=275 amount=-1 +kerning first=77 second=118 amount=-1 +kerning first=108 second=8249 amount=-1 +kerning first=279 second=104 amount=-1 +kerning first=75 second=224 amount=-1 +kerning first=282 second=338 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=197 second=99 amount=-1 +kerning first=216 second=224 amount=-1 +kerning first=280 second=228 amount=-1 +kerning first=204 second=380 amount=-1 +kerning first=268 second=98 amount=-1 +kerning first=314 second=283 amount=-1 +kerning first=374 second=228 amount=-2 +kerning first=240 second=380 amount=-1 +kerning first=1069 second=1053 amount=-1 +kerning first=288 second=224 amount=-1 +kerning first=338 second=228 amount=-1 +kerning first=313 second=241 amount=-1 +kerning first=302 second=228 amount=-1 +kerning first=209 second=283 amount=-1 +kerning first=266 second=228 amount=-1 +kerning first=76 second=318 amount=-1 +kerning first=120 second=112 amount=-1 +kerning first=8218 second=307 amount=-1 +kerning first=230 second=228 amount=-1 +kerning first=112 second=318 amount=-1 +kerning first=84 second=112 amount=-1 +kerning first=99 second=380 amount=-1 +kerning first=379 second=325 amount=-1 +kerning first=321 second=8249 amount=-1 +kerning first=88 second=101 amount=-1 +kerning first=1025 second=1031 amount=-1 +kerning first=107 second=235 amount=-1 +kerning first=253 second=318 amount=-1 +kerning first=118 second=248 amount=-1 +kerning first=289 second=318 amount=-1 +kerning first=249 second=8249 amount=-1 +kerning first=193 second=101 amount=-1 +kerning first=264 second=331 amount=-1 +kerning first=219 second=193 amount=-2 +kerning first=82 second=365 amount=-1 +kerning first=346 second=256 amount=-2 +kerning first=1058 second=1072 amount=-1 +kerning first=334 second=205 amount=-1 +kerning first=1054 second=1047 amount=-1 +kerning first=376 second=66 amount=-1 +kerning first=338 second=230 amount=-1 +kerning first=378 second=255 amount=-1 +kerning first=82 second=216 amount=-1 +kerning first=274 second=256 amount=-1 +kerning first=374 second=230 amount=-2 +kerning first=66 second=107 amount=-1 +kerning first=225 second=98 amount=-1 +kerning first=8217 second=213 amount=-1 +kerning first=279 second=226 amount=-1 +kerning first=1062 second=1073 amount=-1 +kerning first=302 second=230 amount=-1 +kerning first=234 second=255 amount=-1 +kerning first=378 second=231 amount=-1 +kerning first=314 second=281 amount=-1 +kerning first=262 second=205 amount=-1 +kerning first=230 second=230 amount=-1 +kerning first=106 second=108 amount=-1 +kerning first=76 second=104 amount=-1 +kerning first=351 second=107 amount=-1 +kerning first=202 second=280 amount=-1 +kerning first=65 second=281 amount=-1 +kerning first=315 second=107 amount=-1 +kerning first=256 second=251 amount=-1 +kerning first=257 second=347 amount=-1 +kerning first=325 second=289 amount=-1 +kerning first=221 second=347 amount=-2 +kerning first=206 second=281 amount=-1 +kerning first=249 second=8221 amount=-2 +kerning first=346 second=280 amount=-1 +kerning first=279 second=107 amount=-1 +kerning first=315 second=105 amount=-1 +kerning first=80 second=347 amount=-1 +kerning first=243 second=107 amount=-1 +kerning first=213 second=8221 amount=-1 +kerning first=351 second=105 amount=-1 +kerning first=71 second=86 amount=-1 +kerning first=221 second=345 amount=-1 +kerning first=66 second=81 amount=-1 +kerning first=106 second=106 amount=-1 +kerning first=274 second=282 amount=-1 +kerning first=374 second=204 amount=-1 +kerning first=97 second=318 amount=-1 +kerning first=268 second=68 amount=-1 +kerning first=321 second=8221 amount=-2 +kerning first=378 second=229 amount=-1 +kerning first=381 second=196 amount=-1 +kerning first=202 second=282 amount=-1 +kerning first=264 second=67 amount=-2 +kerning first=73 second=333 amount=-1 +kerning first=376 second=68 amount=-1 +kerning first=283 second=106 amount=-1 +kerning first=192 second=67 amount=-1 +kerning first=207 second=81 amount=-1 +kerning first=334 second=203 amount=-1 +kerning first=315 second=81 amount=-1 +kerning first=211 second=106 amount=-1 +kerning first=211 second=368 amount=-1 +kerning first=84 second=346 amount=-2 +kerning first=89 second=230 amount=-2 +kerning first=89 second=204 amount=-1 +kerning first=1003 second=1007 amount=-1 +kerning first=8216 second=380 amount=-1 +kerning first=263 second=243 amount=-1 +kerning first=83 second=278 amount=-1 +kerning first=101 second=307 amount=-1 +kerning first=266 second=204 amount=-1 +kerning first=202 second=256 amount=-1 +kerning first=256 second=121 amount=-1 +kerning first=338 second=204 amount=-1 +kerning first=86 second=243 amount=-2 +kerning first=242 second=307 amount=-1 +kerning first=1047 second=1033 amount=-1 +kerning first=122 second=243 amount=-1 +kerning first=119 second=44 amount=-3 +kerning first=332 second=278 amount=-1 +kerning first=83 second=44 amount=-2 +kerning first=89 second=274 amount=-1 +kerning first=283 second=104 amount=-1 +kerning first=315 second=79 amount=-1 +kerning first=219 second=90 amount=-1 +kerning first=282 second=334 amount=-1 +kerning first=224 second=44 amount=-1 +kerning first=362 second=81 amount=-1 +kerning first=207 second=79 amount=-1 +kerning first=87 second=69 amount=-1 +kerning first=351 second=109 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=315 second=109 amount=-1 +kerning first=229 second=369 amount=-1 +kerning first=82 second=244 amount=-1 +kerning first=74 second=194 amount=-3 +kerning first=272 second=200 amount=-1 +kerning first=221 second=234 amount=-2 +kerning first=279 second=109 amount=-1 +kerning first=310 second=284 amount=-1 +kerning first=234 second=227 amount=-1 +kerning first=314 second=279 amount=-1 +kerning first=374 second=232 amount=-1 +kerning first=74 second=192 amount=-3 +kerning first=8217 second=211 amount=-1 +kerning first=252 second=8249 amount=-1 +kerning first=1048 second=1095 amount=-1 +kerning first=106 second=104 amount=-1 +kerning first=65 second=279 amount=-1 +kerning first=274 second=284 amount=-1 +kerning first=368 second=44 amount=-3 +kerning first=234 second=229 amount=-1 +kerning first=87 second=305 amount=-1 +kerning first=206 second=279 amount=-1 +kerning first=346 second=282 amount=-1 +kerning first=69 second=334 amount=-1 +kerning first=332 second=44 amount=-1 +kerning first=378 second=227 amount=-1 +kerning first=66 second=109 amount=-1 +kerning first=214 second=65 amount=-2 +kerning first=194 second=232 amount=-1 +kerning first=286 second=65 amount=-1 +kerning first=302 second=232 amount=-1 +kerning first=109 second=361 amount=-1 +kerning first=198 second=257 amount=-1 +kerning first=264 second=305 amount=-1 +kerning first=76 second=331 amount=-1 +kerning first=266 second=232 amount=-1 +kerning first=73 second=361 amount=-1 +kerning first=234 second=257 amount=-1 +kerning first=382 second=254 amount=-1 +kerning first=112 second=8250 amount=-1 +kerning first=286 second=361 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=250 second=361 amount=-1 +kerning first=89 second=202 amount=-1 +kerning first=365 second=347 amount=-1 +kerning first=118 second=244 amount=-1 +kerning first=380 second=121 amount=-1 +kerning first=344 second=121 amount=-1 +kerning first=338 second=202 amount=-1 +kerning first=274 second=254 amount=-1 +kerning first=310 second=254 amount=-1 +kerning first=221 second=325 amount=-1 +kerning first=266 second=202 amount=-1 +kerning first=346 second=254 amount=-1 +kerning first=8216 second=378 amount=-1 +kerning first=236 second=121 amount=-1 +kerning first=336 second=69 amount=-1 +kerning first=268 second=66 amount=-1 +kerning first=203 second=82 amount=-1 +kerning first=97 second=254 amount=-1 +kerning first=1098 second=1099 amount=-1 +kerning first=72 second=267 amount=-1 +kerning first=374 second=202 amount=-1 +kerning first=264 second=69 amount=-1 +kerning first=108 second=267 amount=-1 +kerning first=378 second=257 amount=-1 +kerning first=202 second=254 amount=-1 +kerning first=302 second=212 amount=-1 +kerning first=8222 second=357 amount=-1 +kerning first=370 second=199 amount=-1 +kerning first=338 second=212 amount=-1 +kerning first=79 second=8217 amount=-1 +kerning first=69 second=66 amount=-1 +kerning first=381 second=202 amount=-1 +kerning first=115 second=8217 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=266 second=212 amount=-2 +kerning first=196 second=99 amount=-1 +kerning first=196 second=332 amount=-1 +kerning first=84 second=82 amount=-1 +kerning first=221 second=69 amount=-1 +kerning first=1113 second=1119 amount=-1 +kerning first=282 second=66 amount=-1 +kerning first=194 second=212 amount=-1 +kerning first=76 second=316 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=268 second=332 amount=-2 +kerning first=307 second=225 amount=-1 +kerning first=89 second=212 amount=-1 +kerning first=356 second=205 amount=-1 +kerning first=304 second=332 amount=-1 +kerning first=352 second=192 amount=-2 +kerning first=332 second=82 amount=-1 +kerning first=203 second=76 amount=-1 +kerning first=85 second=199 amount=-1 +kerning first=268 second=72 amount=-1 +kerning first=201 second=216 amount=-1 +kerning first=8217 second=102 amount=-1 +kerning first=376 second=332 amount=-1 +kerning first=354 second=66 amount=-1 +kerning first=212 second=205 amount=-1 +kerning first=208 second=192 amount=-2 +kerning first=205 second=229 amount=-1 +kerning first=256 second=8217 amount=-3 +kerning first=262 second=199 amount=-2 +kerning first=284 second=205 amount=-1 +kerning first=374 second=212 amount=-1 +kerning first=298 second=199 amount=-1 +kerning first=376 second=72 amount=-1 +kerning first=209 second=242 amount=-1 +kerning first=194 second=235 amount=-1 +kerning first=381 second=216 amount=-1 +kerning first=354 second=326 amount=-1 +kerning first=230 second=226 amount=-1 +kerning first=266 second=226 amount=-1 +kerning first=268 second=86 amount=-1 +kerning first=302 second=226 amount=-1 +kerning first=71 second=205 amount=-1 +kerning first=207 second=380 amount=-1 +kerning first=338 second=226 amount=-1 +kerning first=45 second=119 amount=-2 +kerning first=263 second=8221 amount=-1 +kerning first=374 second=226 amount=-2 +kerning first=356 second=219 amount=-1 +kerning first=8220 second=198 amount=-4 +kerning first=282 second=326 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=284 second=219 amount=-1 +kerning first=336 second=45 amount=-1 +kerning first=66 second=103 amount=-2 +kerning first=69 second=326 amount=-1 +kerning first=258 second=119 amount=-2 +kerning first=212 second=219 amount=-1 +kerning first=201 second=202 amount=-1 +kerning first=105 second=326 amount=-1 +kerning first=289 second=316 amount=-1 +kerning first=66 second=305 amount=-1 +kerning first=330 second=119 amount=-1 +kerning first=371 second=8221 amount=-2 +kerning first=366 second=119 amount=-1 +kerning first=71 second=219 amount=-1 +kerning first=196 second=86 amount=-3 +kerning first=87 second=333 amount=-2 +kerning first=89 second=226 amount=-2 +kerning first=8218 second=291 amount=-1 +kerning first=192 second=333 amount=-1 +kerning first=1037 second=1092 amount=-1 +kerning first=84 second=365 amount=-1 +kerning first=108 second=269 amount=-1 +kerning first=72 second=269 amount=-1 +kerning first=337 second=375 amount=-1 +kerning first=355 second=122 amount=-1 +kerning first=87 second=45 amount=-3 +kerning first=66 second=363 amount=-1 +kerning first=66 second=369 amount=-1 +kerning first=70 second=382 amount=-1 +kerning first=315 second=103 amount=-1 +kerning first=106 second=382 amount=-1 +kerning first=1040 second=1063 amount=-3 +kerning first=192 second=45 amount=-2 +kerning first=252 second=252 amount=-1 +kerning first=243 second=103 amount=-1 +kerning first=207 second=363 amount=-1 +kerning first=115 second=259 amount=-1 +kerning first=1098 second=1075 amount=-1 +kerning first=234 second=253 amount=-1 +kerning first=1037 second=1086 amount=-1 +kerning first=264 second=45 amount=-2 +kerning first=283 second=116 amount=-1 +kerning first=324 second=252 amount=-1 +kerning first=228 second=45 amount=-1 +kerning first=279 second=363 amount=-1 +kerning first=220 second=259 amount=-2 +kerning first=8217 second=235 amount=-2 +kerning first=106 second=122 amount=-1 +kerning first=75 second=246 amount=-1 +kerning first=315 second=363 amount=-1 +kerning first=315 second=369 amount=-1 +kerning first=274 second=266 amount=-1 +kerning first=70 second=122 amount=-1 +kerning first=351 second=363 amount=-1 +kerning first=279 second=369 amount=-1 +kerning first=355 second=382 amount=-1 +kerning first=310 second=266 amount=-1 +kerning first=376 second=378 amount=-2 +kerning first=202 second=266 amount=-1 +kerning first=351 second=369 amount=-1 +kerning first=283 second=122 amount=-1 +kerning first=229 second=375 amount=-1 +kerning first=211 second=382 amount=-1 +kerning first=193 second=375 amount=-1 +kerning first=211 second=122 amount=-1 +kerning first=370 second=352 amount=-1 +kerning first=207 second=369 amount=-1 +kerning first=283 second=382 amount=-1 +kerning first=88 second=375 amount=-2 +kerning first=68 second=206 amount=-1 +kerning first=193 second=115 amount=-1 +kerning first=256 second=279 amount=-1 +kerning first=66 second=355 amount=-1 +kerning first=203 second=336 amount=-1 +kerning first=229 second=115 amount=-1 +kerning first=364 second=279 amount=-1 +kerning first=198 second=350 amount=-1 +kerning first=88 second=115 amount=-1 +kerning first=8222 second=318 amount=-1 +kerning first=279 second=355 amount=-1 +kerning first=337 second=115 amount=-1 +kerning first=76 second=296 amount=-1 +kerning first=220 second=279 amount=-1 +kerning first=378 second=253 amount=-1 +kerning first=351 second=355 amount=-1 +kerning first=106 second=116 amount=-1 +kerning first=283 second=108 amount=-1 +kerning first=89 second=206 amount=-1 +kerning first=302 second=71 amount=-1 +kerning first=84 second=370 amount=-1 +kerning first=45 second=89 amount=-2 +kerning first=75 second=232 amount=-1 +kerning first=266 second=206 amount=-1 +kerning first=87 second=325 amount=-1 +kerning first=235 second=303 amount=-1 +kerning first=275 second=328 amount=-1 +kerning first=87 second=313 amount=-1 +kerning first=338 second=206 amount=-1 +kerning first=203 second=328 amount=-1 +kerning first=214 second=73 amount=-1 +kerning first=282 second=104 amount=-1 +kerning first=71 second=225 amount=-1 +kerning first=199 second=303 amount=-1 +kerning first=113 second=98 amount=-1 +kerning first=199 second=352 amount=-1 +kerning first=379 second=315 amount=-1 +kerning first=264 second=325 amount=-1 +kerning first=379 second=303 amount=-1 +kerning first=374 second=206 amount=-1 +kerning first=195 second=290 amount=-1 +kerning first=66 second=83 amount=-2 +kerning first=336 second=325 amount=-1 +kerning first=307 second=303 amount=-1 +kerning first=1025 second=1025 amount=-1 +kerning first=347 second=328 amount=-1 +kerning first=313 second=221 amount=-1 +kerning first=284 second=225 amount=-1 +kerning first=207 second=83 amount=-1 +kerning first=80 second=323 amount=-1 +kerning first=376 second=338 amount=-1 +kerning first=356 second=225 amount=-2 +kerning first=201 second=196 amount=-1 +kerning first=90 second=290 amount=-1 +kerning first=315 second=83 amount=-1 +kerning first=107 second=225 amount=-1 +kerning first=368 second=286 amount=-1 +kerning first=268 second=338 amount=-2 +kerning first=286 second=85 amount=-1 +kerning first=218 second=380 amount=-1 +kerning first=258 second=263 amount=-1 +kerning first=212 second=225 amount=-1 +kerning first=296 second=286 amount=-1 +kerning first=254 second=380 amount=-1 +kerning first=326 second=98 amount=-1 +kerning first=214 second=85 amount=-1 +kerning first=221 second=8250 amount=-1 +kerning first=290 second=380 amount=-1 +kerning first=246 second=46 amount=-2 +kerning first=264 second=311 amount=-1 +kerning first=221 second=77 amount=-1 +kerning first=282 second=46 amount=-1 +kerning first=8220 second=192 amount=-4 +kerning first=260 second=286 amount=-1 +kerning first=199 second=317 amount=-1 +kerning first=192 second=311 amount=-1 +kerning first=354 second=46 amount=-3 +kerning first=244 second=314 amount=-1 +kerning first=80 second=77 amount=-1 +kerning first=201 second=210 amount=-1 +kerning first=69 second=46 amount=-1 +kerning first=84 second=102 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=105 second=46 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=196 second=352 amount=-2 +kerning first=326 second=112 amount=-1 +kerning first=356 second=211 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=208 second=200 amount=-1 +kerning first=378 second=233 amount=-1 +kerning first=254 second=112 amount=-1 +kerning first=106 second=110 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=218 second=112 amount=-1 +kerning first=205 second=235 amount=-1 +kerning first=369 second=102 amount=-1 +kerning first=352 second=200 amount=-1 +kerning first=77 second=112 amount=-1 +kerning first=1044 second=1090 amount=-1 +kerning first=283 second=110 amount=-1 +kerning first=280 second=200 amount=-1 +kerning first=218 second=378 amount=-1 +kerning first=104 second=250 amount=-1 +kerning first=317 second=262 amount=-1 +kerning first=72 second=275 amount=-1 +kerning first=250 second=353 amount=-1 +kerning first=209 second=250 amount=-1 +kerning first=108 second=275 amount=-1 +kerning first=380 second=113 amount=-1 +kerning first=99 second=171 amount=-1 +kerning first=380 second=365 amount=-1 +kerning first=362 second=100 amount=-1 +kerning first=344 second=113 amount=-1 +kerning first=344 second=365 amount=-1 +kerning first=290 second=366 amount=-1 +kerning first=200 second=251 amount=-1 +kerning first=113 second=378 amount=-1 +kerning first=73 second=353 amount=-1 +kerning first=362 second=112 amount=-1 +kerning first=77 second=378 amount=-1 +kerning first=109 second=353 amount=-1 +kerning first=286 second=87 amount=-1 +kerning first=195 second=288 amount=-1 +kerning first=263 second=249 amount=-1 +kerning first=274 second=260 amount=-1 +kerning first=304 second=352 amount=-1 +kerning first=218 second=100 amount=-1 +kerning first=268 second=352 amount=-1 +kerning first=1065 second=1054 amount=-1 +kerning first=220 second=228 amount=-1 +kerning first=214 second=87 amount=-1 +kerning first=346 second=260 amount=-2 +kerning first=376 second=352 amount=-2 +kerning first=196 second=354 amount=-3 +kerning first=1069 second=1065 amount=-1 +kerning first=362 second=378 amount=-1 +kerning first=268 second=354 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=90 second=288 amount=-1 +kerning first=113 second=100 amount=-1 +kerning first=381 second=210 amount=-1 +kerning first=209 second=262 amount=-1 +kerning first=371 second=249 amount=-1 +kerning first=1055 second=1105 amount=-1 +kerning first=72 second=289 amount=-1 +kerning first=344 second=99 amount=-1 +kerning first=1091 second=1105 amount=-1 +kerning first=290 second=364 amount=-1 +kerning first=362 second=114 amount=-1 +kerning first=208 second=198 amount=-2 +kerning first=213 second=289 amount=-1 +kerning first=313 second=223 amount=-1 +kerning first=113 second=380 amount=-1 +kerning first=380 second=99 amount=-1 +kerning first=1054 second=1053 amount=-1 +kerning first=87 second=327 amount=-1 +kerning first=86 second=249 amount=-1 +kerning first=209 second=248 amount=-1 +kerning first=90 second=274 amount=-1 +kerning first=353 second=8220 amount=-1 +kerning first=218 second=114 amount=-1 +kerning first=371 second=263 amount=-1 +kerning first=101 second=328 amount=-1 +kerning first=317 second=8220 amount=-2 +kerning first=67 second=198 amount=-2 +kerning first=281 second=8220 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=122 second=263 amount=-1 +kerning first=236 second=365 amount=-1 +kerning first=264 second=327 amount=-1 +kerning first=65 second=287 amount=-1 +kerning first=245 second=8220 amount=-1 +kerning first=314 second=253 amount=-1 +kerning first=200 second=365 amount=-1 +kerning first=336 second=327 amount=-1 +kerning first=1091 second=1078 amount=-1 +kerning first=263 second=263 amount=-1 +kerning first=200 second=379 amount=-1 +kerning first=101 second=287 amount=-1 +kerning first=336 second=313 amount=-1 +kerning first=104 second=8220 amount=-2 +kerning first=280 second=198 amount=-1 +kerning first=221 second=75 amount=-1 +kerning first=242 second=287 amount=-1 +kerning first=68 second=8220 amount=-1 +kerning first=286 second=73 amount=-1 +kerning first=272 second=379 amount=-1 +kerning first=206 second=287 amount=-1 +kerning first=202 second=259 amount=-1 +kerning first=313 second=237 amount=-1 +kerning first=264 second=313 amount=-1 +kerning first=352 second=198 amount=-2 +kerning first=314 second=287 amount=-1 +kerning first=277 second=237 amount=-1 +kerning first=80 second=75 amount=-1 +kerning first=86 second=263 amount=-2 +kerning first=73 second=339 amount=-1 +kerning first=278 second=287 amount=-1 +kerning first=289 second=44 amount=-2 +kerning first=8222 second=316 amount=-1 +kerning first=118 second=234 amount=-1 +kerning first=253 second=44 amount=-3 +kerning first=113 second=104 amount=-1 +kerning first=350 second=287 amount=-1 +kerning first=361 second=44 amount=-1 +kerning first=1098 second=1091 amount=-1 +kerning first=234 second=237 amount=-1 +kerning first=195 second=284 amount=-1 +kerning first=75 second=244 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=219 second=197 amount=-2 +kerning first=354 second=324 amount=-1 +kerning first=217 second=44 amount=-3 +kerning first=254 second=104 amount=-1 +kerning first=82 second=234 amount=-1 +kerning first=192 second=332 amount=-1 +kerning first=369 second=115 amount=-1 +kerning first=208 second=194 amount=-2 +kerning first=205 second=227 amount=-1 +kerning first=109 second=351 amount=-1 +kerning first=202 second=368 amount=-1 +kerning first=266 second=46 amount=-1 +kerning first=73 second=351 amount=-1 +kerning first=1058 second=1054 amount=-1 +kerning first=108 second=277 amount=-1 +kerning first=69 second=314 amount=-1 +kerning first=67 second=194 amount=-2 +kerning first=315 second=87 amount=-1 +kerning first=72 second=277 amount=-1 +kerning first=250 second=8249 amount=-1 +kerning first=277 second=227 amount=-1 +kerning first=1030 second=1104 amount=-1 +kerning first=105 second=314 amount=-1 +kerning first=268 second=74 amount=-1 +kerning first=314 second=8249 amount=-1 +kerning first=229 second=121 amount=-1 +kerning first=207 second=361 amount=-1 +kerning first=220 second=267 amount=-1 +kerning first=80 second=327 amount=-1 +kerning first=371 second=257 amount=-1 +kerning first=344 second=367 amount=-1 +kerning first=350 second=8249 amount=-1 +kerning first=193 second=121 amount=-1 +kerning first=220 second=90 amount=-1 +kerning first=256 second=267 amount=-1 +kerning first=380 second=367 amount=-1 +kerning first=84 second=364 amount=-1 +kerning first=376 second=74 amount=-2 +kerning first=278 second=8249 amount=-1 +kerning first=88 second=121 amount=-2 +kerning first=221 second=327 amount=-1 +kerning first=86 second=261 amount=-2 +kerning first=351 second=361 amount=-1 +kerning first=364 second=267 amount=-1 +kerning first=200 second=367 amount=-1 +kerning first=206 second=8249 amount=-2 +kerning first=315 second=361 amount=-1 +kerning first=263 second=257 amount=-1 +kerning first=236 second=367 amount=-1 +kerning first=344 second=111 amount=-1 +kerning first=317 second=254 amount=-1 +kerning first=118 second=224 amount=-1 +kerning first=380 second=111 amount=-1 +kerning first=353 second=254 amount=-1 +kerning first=250 second=351 amount=-1 +kerning first=82 second=224 amount=-1 +kerning first=1093 second=1086 amount=-1 +kerning first=1047 second=1051 amount=-1 +kerning first=290 second=374 amount=-1 +kerning first=104 second=254 amount=-1 +kerning first=187 second=224 amount=-1 +kerning first=371 second=261 amount=-1 +kerning first=195 second=338 amount=-1 +kerning first=268 second=344 amount=-1 +kerning first=281 second=250 amount=-1 +kerning first=1040 second=1057 amount=-2 +kerning first=337 second=121 amount=-1 +kerning first=90 second=284 amount=-1 +kerning first=369 second=249 amount=-1 +kerning first=1031 second=1072 amount=-1 +kerning first=274 second=274 amount=-1 +kerning first=1054 second=1031 amount=-1 +kerning first=353 second=250 amount=-1 +kerning first=66 second=361 amount=-1 +kerning first=376 second=344 amount=-1 +kerning first=225 second=347 amount=-1 +kerning first=202 second=274 amount=-1 +kerning first=317 second=250 amount=-1 +kerning first=1003 second=997 amount=-1 +kerning first=284 second=221 amount=-1 +kerning first=1047 second=1041 amount=-1 +kerning first=351 second=97 amount=-1 +kerning first=221 second=337 amount=-2 +kerning first=296 second=290 amount=-1 +kerning first=212 second=221 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=344 second=101 amount=-1 +kerning first=201 second=200 amount=-1 +kerning first=221 second=331 amount=-1 +kerning first=370 second=255 amount=-1 +kerning first=229 second=117 amount=-1 +kerning first=380 second=101 amount=-1 +kerning first=368 second=290 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=1098 second=1087 amount=-1 +kerning first=261 second=98 amount=-1 +kerning first=1054 second=1037 amount=-1 +kerning first=374 second=214 amount=-1 +kerning first=75 second=240 amount=-1 +kerning first=8217 second=229 amount=-3 +kerning first=369 second=98 amount=-1 +kerning first=122 second=251 amount=-1 +kerning first=203 second=338 amount=-1 +kerning first=260 second=290 amount=-1 +kerning first=86 second=251 amount=-1 +kerning first=120 second=98 amount=-1 +kerning first=66 second=196 amount=-3 +kerning first=266 second=214 amount=-2 +kerning first=227 second=251 amount=-1 +kerning first=310 second=264 amount=-1 +kerning first=355 second=380 amount=-1 +kerning first=274 second=264 amount=-1 +kerning first=375 second=273 amount=-1 +kerning first=338 second=214 amount=-1 +kerning first=1069 second=1067 amount=-1 +kerning first=302 second=214 amount=-1 +kerning first=263 second=251 amount=-1 +kerning first=202 second=264 amount=-1 +kerning first=272 second=68 amount=-1 +kerning first=89 second=214 amount=-1 +kerning first=264 second=317 amount=-1 +kerning first=371 second=251 amount=-1 +kerning first=89 second=220 amount=-1 +kerning first=286 second=77 amount=-1 +kerning first=194 second=231 amount=-1 +kerning first=221 second=71 amount=-1 +kerning first=70 second=210 amount=-1 +kerning first=194 second=214 amount=-1 +kerning first=336 second=317 amount=-1 +kerning first=332 second=298 amount=-1 +kerning first=214 second=77 amount=-1 +kerning first=352 second=194 amount=-2 +kerning first=87 second=317 amount=-1 +kerning first=266 second=220 amount=-1 +kerning first=280 second=194 amount=-1 +kerning first=1056 second=1059 amount=-1 +kerning first=194 second=220 amount=-2 +kerning first=350 second=291 amount=-1 +kerning first=203 second=330 amount=-1 +kerning first=268 second=84 amount=-1 +kerning first=66 second=97 amount=-1 +kerning first=381 second=200 amount=-1 +kerning first=314 second=291 amount=-1 +kerning first=102 second=97 amount=-1 +kerning first=278 second=291 amount=-1 +kerning first=1069 second=1103 amount=-1 +kerning first=242 second=291 amount=-1 +kerning first=338 second=220 amount=-1 +kerning first=307 second=311 amount=-1 +kerning first=1098 second=1081 amount=-1 +kerning first=206 second=291 amount=-1 +kerning first=282 second=324 amount=-1 +kerning first=374 second=220 amount=-1 +kerning first=69 second=324 amount=-1 +kerning first=83 second=298 amount=-1 +kerning first=279 second=97 amount=-1 +kerning first=235 second=311 amount=-1 +kerning first=101 second=291 amount=-1 +kerning first=199 second=311 amount=-1 +kerning first=65 second=291 amount=-1 +kerning first=80 second=337 amount=-1 +kerning first=207 second=97 amount=-1 +kerning first=356 second=213 amount=-1 +kerning first=105 second=324 amount=-1 +kerning first=236 second=375 amount=-1 +kerning first=118 second=228 amount=-1 +kerning first=334 second=193 amount=-2 +kerning first=227 second=253 amount=-1 +kerning first=266 second=218 amount=-1 +kerning first=82 second=228 amount=-1 +kerning first=378 second=243 amount=-1 +kerning first=70 second=120 amount=-1 +kerning first=263 second=253 amount=-1 +kerning first=262 second=193 amount=-2 +kerning first=106 second=120 amount=-1 +kerning first=194 second=218 amount=-2 +kerning first=376 second=78 amount=-1 +kerning first=335 second=253 amount=-1 +kerning first=380 second=375 amount=-1 +kerning first=1098 second=1085 amount=-1 +kerning first=380 second=103 amount=-1 +kerning first=8250 second=260 amount=-2 +kerning first=371 second=253 amount=-1 +kerning first=344 second=375 amount=-1 +kerning first=370 second=193 amount=-2 +kerning first=344 second=103 amount=-1 +kerning first=310 second=268 amount=-1 +kerning first=374 second=218 amount=-1 +kerning first=8217 second=225 amount=-3 +kerning first=338 second=218 amount=-1 +kerning first=1047 second=1045 amount=-1 +kerning first=268 second=78 amount=-1 +kerning first=1055 second=1095 amount=-1 +kerning first=355 second=120 amount=-1 +kerning first=370 second=253 amount=-1 +kerning first=76 second=310 amount=-1 +kerning first=1047 second=1043 amount=-1 +kerning first=355 second=118 amount=-1 +kerning first=211 second=120 amount=-1 +kerning first=89 second=218 amount=-1 +kerning first=350 second=45 amount=-1 +kerning first=86 second=253 amount=-1 +kerning first=283 second=120 amount=-1 +kerning first=122 second=253 amount=-1 +kerning first=80 second=65 amount=-2 +kerning first=202 second=270 amount=-1 +kerning first=283 second=118 amount=-1 +kerning first=1054 second=1051 amount=-1 +kerning first=221 second=65 amount=-3 +kerning first=274 second=270 amount=-1 +kerning first=90 second=280 amount=-1 +kerning first=236 second=105 amount=-1 +kerning first=199 second=305 amount=-1 +kerning first=378 second=241 amount=-1 +kerning first=109 second=251 amount=-1 +kerning first=8217 second=227 amount=-3 +kerning first=83 second=8250 amount=-1 +kerning first=1030 second=1108 amount=-1 +kerning first=69 second=318 amount=-1 +kerning first=106 second=118 amount=-1 +kerning first=105 second=318 amount=-1 +kerning first=108 second=283 amount=-1 +kerning first=70 second=118 amount=-1 +kerning first=235 second=305 amount=-1 +kerning first=72 second=283 amount=-1 +kerning first=221 second=335 amount=-2 +kerning first=234 second=241 amount=-1 +kerning first=307 second=305 amount=-1 +kerning first=198 second=241 amount=-1 +kerning first=8218 second=287 amount=-1 +kerning first=380 second=291 amount=-1 +kerning first=8217 second=100 amount=-2 +kerning first=8217 second=223 amount=-1 +kerning first=379 second=305 amount=-1 +kerning first=113 second=108 amount=-1 +kerning first=254 second=108 amount=-1 +kerning first=346 second=270 amount=-1 +kerning first=80 second=335 amount=-1 +kerning first=67 second=200 amount=-1 +kerning first=326 second=108 amount=-1 +kerning first=85 second=193 amount=-2 +kerning first=290 second=370 amount=-1 +kerning first=8216 second=232 amount=-1 +kerning first=205 second=231 amount=-1 +kerning first=109 second=347 amount=-1 +kerning first=73 second=347 amount=-1 +kerning first=236 second=107 amount=-1 +kerning first=268 second=82 amount=-1 +kerning first=68 second=256 amount=-2 +kerning first=83 second=122 amount=-1 +kerning first=200 second=107 amount=-1 +kerning first=72 second=281 amount=-1 +kerning first=108 second=281 amount=-1 +kerning first=317 second=256 amount=-1 +kerning first=371 second=255 amount=-1 +kerning first=315 second=364 amount=-1 +kerning first=1051 second=1072 amount=-1 +kerning first=367 second=230 amount=-1 +kerning first=335 second=255 amount=-1 +kerning first=221 second=67 amount=-1 +kerning first=203 second=332 amount=-1 +kerning first=266 second=216 amount=-2 +kerning first=263 second=255 amount=-1 +kerning first=302 second=216 amount=-1 +kerning first=227 second=255 amount=-1 +kerning first=227 second=353 amount=-1 +kerning first=310 second=346 amount=-1 +kerning first=338 second=216 amount=-1 +kerning first=380 second=371 amount=-1 +kerning first=122 second=255 amount=-1 +kerning first=89 second=216 amount=-1 +kerning first=86 second=255 amount=-1 +kerning first=8222 second=314 amount=-1 +kerning first=250 second=347 amount=-1 +kerning first=75 second=242 amount=-1 +kerning first=262 second=378 amount=-1 +kerning first=194 second=216 amount=-1 +kerning first=236 second=371 amount=-1 +kerning first=344 second=107 amount=-1 +kerning first=67 second=192 amount=-2 +kerning first=80 second=333 amount=-1 +kerning first=212 second=217 amount=-1 +kerning first=221 second=333 amount=-2 +kerning first=1054 second=1033 amount=-1 +kerning first=376 second=80 amount=-1 +kerning first=277 second=229 amount=-1 +kerning first=73 second=81 amount=-1 +kerning first=113 second=106 amount=2 +kerning first=284 second=217 amount=-1 +kerning first=374 second=216 amount=-1 +kerning first=70 second=212 amount=-1 +kerning first=381 second=204 amount=-1 +kerning first=356 second=217 amount=-1 +kerning first=268 second=80 amount=-1 +kerning first=203 second=68 amount=-1 +kerning first=290 second=106 amount=-1 +kerning first=88 second=119 amount=-1 +kerning first=90 second=282 amount=-1 +kerning first=326 second=106 amount=-1 +kerning first=196 second=346 amount=-2 +kerning first=187 second=230 amount=-1 +kerning first=193 second=119 amount=-2 +kerning first=235 second=307 amount=-1 +kerning first=254 second=106 amount=-1 +kerning first=229 second=119 amount=-1 +kerning first=8218 second=289 amount=-1 +kerning first=307 second=307 amount=-1 +kerning first=118 second=230 amount=-2 +kerning first=337 second=119 amount=-1 +kerning first=304 second=346 amount=-1 +kerning first=201 second=204 amount=-1 +kerning first=71 second=217 amount=-1 +kerning first=268 second=346 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif321.png b/jme3-examples/src/main/resources/jme3test/font/FreeSerif321.png new file mode 100644 index 000000000..f516ba320 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif321.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif322.png b/jme3-examples/src/main/resources/jme3test/font/FreeSerif322.png new file mode 100644 index 000000000..c9cb692d8 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif322.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I.fnt b/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I.fnt new file mode 100644 index 000000000..cddcf233f --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I.fnt @@ -0,0 +1,27837 @@ +info face="Free Serif" size=64 bold=0 italic=1 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=-2,-2 +common lineHeight=82 base=61 scaleW=1024 scaleH=1024 pages=2 packed=0 +page id=0 file="FreeSerif64I1.png" +page id=1 file="FreeSerif64I2.png" +chars count=821 +char id=13 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=-2 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=33 x=1006 y=580 width=15 height=45 xoffset=8 yoffset=17 xadvance=19 page=0 chnl=0 +char id=36 x=741 y=473 width=33 height=53 xoffset=3 yoffset=14 xadvance=30 page=0 chnl=0 +char id=37 x=334 y=632 width=45 height=45 xoffset=8 yoffset=17 xadvance=51 page=0 chnl=0 +char id=38 x=379 y=632 width=47 height=45 xoffset=4 yoffset=17 xadvance=48 page=0 chnl=0 +char id=39 x=1013 y=903 width=10 height=17 xoffset=9 yoffset=17 xadvance=10 page=0 chnl=0 +char id=40 x=243 y=307 width=27 height=56 xoffset=5 yoffset=17 xadvance=19 page=0 chnl=0 +char id=41 x=270 y=307 width=23 height=56 xoffset=-1 yoffset=17 xadvance=19 page=0 chnl=0 +char id=44 x=1013 y=679 width=10 height=16 xoffset=3 yoffset=54 xadvance=14 page=0 chnl=0 +char id=46 x=1012 y=473 width=9 height=8 xoffset=4 yoffset=54 xadvance=14 page=0 chnl=0 +char id=47 x=426 y=632 width=34 height=45 xoffset=-1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=48 x=460 y=632 width=34 height=45 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=49 x=702 y=814 width=20 height=44 xoffset=7 yoffset=17 xadvance=30 page=0 chnl=0 +char id=50 x=722 y=814 width=33 height=44 xoffset=1 yoffset=17 xadvance=30 page=0 chnl=0 +char id=51 x=494 y=632 width=29 height=45 xoffset=3 yoffset=17 xadvance=30 page=0 chnl=0 +char id=52 x=755 y=814 width=31 height=44 xoffset=2 yoffset=17 xadvance=30 page=0 chnl=0 +char id=53 x=106 y=632 width=37 height=46 xoffset=2 yoffset=16 xadvance=30 page=0 chnl=0 +char id=54 x=523 y=632 width=37 height=45 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=55 x=786 y=814 width=34 height=44 xoffset=7 yoffset=18 xadvance=30 page=0 chnl=0 +char id=56 x=560 y=632 width=30 height=45 xoffset=5 yoffset=17 xadvance=30 page=0 chnl=0 +char id=57 x=143 y=632 width=35 height=46 xoffset=3 yoffset=17 xadvance=30 page=0 chnl=0 +char id=58 x=191 y=991 width=13 height=31 xoffset=5 yoffset=31 xadvance=16 page=0 chnl=0 +char id=59 x=1009 y=632 width=13 height=39 xoffset=5 yoffset=31 xadvance=16 page=0 chnl=0 +char id=63 x=590 y=632 width=28 height=45 xoffset=10 yoffset=17 xadvance=26 page=0 chnl=0 +char id=64 x=618 y=632 width=47 height=45 xoffset=10 yoffset=17 xadvance=57 page=0 chnl=0 +char id=65 x=820 y=814 width=46 height=44 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 +char id=67 x=665 y=632 width=46 height=45 xoffset=4 yoffset=17 xadvance=41 page=0 chnl=0 +char id=71 x=711 y=632 width=48 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=74 x=866 y=814 width=37 height=44 xoffset=1 yoffset=18 xadvance=23 page=0 chnl=0 +char id=78 x=903 y=814 width=59 height=44 xoffset=0 yoffset=18 xadvance=44 page=0 chnl=0 +char id=79 x=759 y=632 width=47 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=81 x=293 y=307 width=47 height=56 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=83 x=806 y=632 width=33 height=45 xoffset=4 yoffset=17 xadvance=34 page=0 chnl=0 +char id=85 x=962 y=814 width=51 height=44 xoffset=8 yoffset=18 xadvance=44 page=0 chnl=0 +char id=86 x=0 y=859 width=50 height=44 xoffset=8 yoffset=18 xadvance=44 page=0 chnl=0 +char id=87 x=50 y=859 width=68 height=44 xoffset=7 yoffset=18 xadvance=58 page=0 chnl=0 +char id=91 x=774 y=473 width=29 height=53 xoffset=3 yoffset=18 xadvance=19 page=0 chnl=0 +char id=92 x=1008 y=134 width=12 height=45 xoffset=7 yoffset=17 xadvance=17 page=0 chnl=0 +char id=93 x=803 y=473 width=24 height=53 xoffset=0 yoffset=19 xadvance=19 page=0 chnl=0 +char id=97 x=204 y=991 width=28 height=31 xoffset=3 yoffset=31 xadvance=26 page=0 chnl=0 +char id=98 x=839 y=632 width=29 height=45 xoffset=5 yoffset=17 xadvance=30 page=0 chnl=0 +char id=99 x=232 y=991 width=28 height=31 xoffset=3 yoffset=31 xadvance=26 page=0 chnl=0 +char id=100 x=868 y=632 width=34 height=45 xoffset=3 yoffset=17 xadvance=30 page=0 chnl=0 +char id=101 x=260 y=991 width=28 height=31 xoffset=3 yoffset=31 xadvance=26 page=0 chnl=0 +char id=102 x=118 y=859 width=41 height=44 xoffset=1 yoffset=17 xadvance=19 page=0 chnl=0 +char id=103 x=159 y=859 width=37 height=44 xoffset=0 yoffset=31 xadvance=30 page=0 chnl=0 +char id=104 x=196 y=859 width=32 height=44 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=105 x=228 y=859 width=18 height=44 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=106 x=429 y=75 width=34 height=58 xoffset=-7 yoffset=17 xadvance=16 page=0 chnl=0 +char id=107 x=246 y=859 width=39 height=44 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=108 x=285 y=859 width=20 height=44 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=111 x=288 y=991 width=30 height=31 xoffset=4 yoffset=31 xadvance=30 page=0 chnl=0 +char id=112 x=305 y=859 width=40 height=44 xoffset=-3 yoffset=31 xadvance=30 page=0 chnl=0 +char id=113 x=345 y=859 width=30 height=44 xoffset=3 yoffset=31 xadvance=30 page=0 chnl=0 +char id=115 x=318 y=991 width=22 height=31 xoffset=3 yoffset=31 xadvance=23 page=0 chnl=0 +char id=123 x=340 y=307 width=22 height=56 xoffset=9 yoffset=17 xadvance=29 page=0 chnl=0 +char id=124 x=902 y=632 width=16 height=45 xoffset=4 yoffset=17 xadvance=11 page=0 chnl=0 +char id=125 x=362 y=307 width=22 height=56 xoffset=6 yoffset=17 xadvance=29 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=161 x=918 y=632 width=14 height=45 xoffset=4 yoffset=31 xadvance=19 page=0 chnl=0 +char id=162 x=978 y=580 width=28 height=47 xoffset=5 yoffset=23 xadvance=30 page=0 chnl=0 +char id=163 x=932 y=632 width=38 height=45 xoffset=1 yoffset=17 xadvance=30 page=0 chnl=0 +char id=166 x=970 y=632 width=16 height=45 xoffset=4 yoffset=17 xadvance=11 page=0 chnl=0 +char id=167 x=959 y=364 width=25 height=54 xoffset=6 yoffset=17 xadvance=30 page=0 chnl=0 +char id=169 x=653 y=580 width=52 height=48 xoffset=5 yoffset=15 xadvance=49 page=0 chnl=0 +char id=174 x=705 y=580 width=52 height=48 xoffset=5 yoffset=15 xadvance=49 page=0 chnl=0 +char id=182 x=827 y=473 width=41 height=53 xoffset=5 yoffset=18 xadvance=29 page=0 chnl=0 +char id=183 x=1014 y=250 width=7 height=8 xoffset=7 yoffset=42 xadvance=14 page=0 chnl=0 +char id=188 x=0 y=679 width=44 height=45 xoffset=5 yoffset=17 xadvance=46 page=0 chnl=0 +char id=189 x=44 y=679 width=48 height=45 xoffset=5 yoffset=17 xadvance=46 page=0 chnl=0 +char id=190 x=92 y=679 width=45 height=45 xoffset=4 yoffset=17 xadvance=46 page=0 chnl=0 +char id=191 x=986 y=632 width=23 height=45 xoffset=0 yoffset=31 xadvance=26 page=0 chnl=0 +char id=192 x=925 y=192 width=46 height=57 xoffset=0 yoffset=4 xadvance=44 page=0 chnl=0 +char id=193 x=0 y=250 width=54 height=57 xoffset=0 yoffset=4 xadvance=44 page=0 chnl=0 +char id=194 x=971 y=192 width=46 height=57 xoffset=0 yoffset=4 xadvance=44 page=0 chnl=0 +char id=195 x=0 y=419 width=46 height=54 xoffset=0 yoffset=7 xadvance=44 page=0 chnl=0 +char id=196 x=46 y=419 width=50 height=54 xoffset=0 yoffset=7 xadvance=44 page=0 chnl=0 +char id=197 x=463 y=75 width=46 height=58 xoffset=0 yoffset=3 xadvance=44 page=0 chnl=0 +char id=199 x=509 y=75 width=45 height=58 xoffset=5 yoffset=17 xadvance=41 page=0 chnl=0 +char id=200 x=54 y=250 width=46 height=57 xoffset=0 yoffset=4 xadvance=37 page=0 chnl=0 +char id=201 x=100 y=250 width=54 height=57 xoffset=0 yoffset=4 xadvance=37 page=0 chnl=0 +char id=202 x=154 y=250 width=46 height=57 xoffset=0 yoffset=4 xadvance=37 page=0 chnl=0 +char id=203 x=96 y=419 width=50 height=54 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 +char id=204 x=200 y=250 width=37 height=57 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=205 x=237 y=250 width=53 height=57 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=206 x=290 y=250 width=35 height=57 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=207 x=146 y=419 width=49 height=54 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=209 x=0 y=364 width=59 height=55 xoffset=0 yoffset=7 xadvance=44 page=0 chnl=0 +char id=210 x=554 y=75 width=47 height=58 xoffset=5 yoffset=4 xadvance=44 page=0 chnl=0 +char id=211 x=601 y=75 width=49 height=58 xoffset=5 yoffset=4 xadvance=44 page=0 chnl=0 +char id=212 x=650 y=75 width=47 height=58 xoffset=5 yoffset=4 xadvance=44 page=0 chnl=0 +char id=213 x=59 y=364 width=47 height=55 xoffset=5 yoffset=7 xadvance=44 page=0 chnl=0 +char id=214 x=106 y=364 width=47 height=55 xoffset=5 yoffset=7 xadvance=44 page=0 chnl=0 +char id=215 x=0 y=991 width=38 height=32 xoffset=3 yoffset=29 xadvance=34 page=0 chnl=0 +char id=216 x=868 y=473 width=53 height=53 xoffset=2 yoffset=14 xadvance=44 page=0 chnl=0 +char id=217 x=697 y=75 width=51 height=58 xoffset=8 yoffset=4 xadvance=44 page=0 chnl=0 +char id=218 x=748 y=75 width=51 height=58 xoffset=8 yoffset=4 xadvance=44 page=0 chnl=0 +char id=219 x=799 y=75 width=51 height=58 xoffset=8 yoffset=4 xadvance=44 page=0 chnl=0 +char id=220 x=153 y=364 width=51 height=55 xoffset=8 yoffset=7 xadvance=44 page=0 chnl=0 +char id=221 x=325 y=250 width=51 height=57 xoffset=8 yoffset=4 xadvance=44 page=0 chnl=0 +char id=223 x=137 y=679 width=35 height=45 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=224 x=172 y=679 width=30 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=225 x=202 y=679 width=46 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=226 x=248 y=679 width=28 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=229 x=757 y=580 width=28 height=48 xoffset=3 yoffset=14 xadvance=26 page=0 chnl=0 +char id=230 x=340 y=991 width=41 height=31 xoffset=3 yoffset=31 xadvance=40 page=0 chnl=0 +char id=231 x=375 y=859 width=28 height=44 xoffset=3 yoffset=31 xadvance=26 page=0 chnl=0 +char id=232 x=276 y=679 width=30 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=233 x=306 y=679 width=46 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=234 x=352 y=679 width=28 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=236 x=403 y=859 width=32 height=44 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=237 x=435 y=859 width=46 height=44 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=238 x=481 y=859 width=30 height=44 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=240 x=380 y=679 width=35 height=45 xoffset=3 yoffset=17 xadvance=30 page=0 chnl=0 +char id=242 x=415 y=679 width=30 height=45 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=243 x=445 y=679 width=45 height=45 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=244 x=490 y=679 width=30 height=45 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=248 x=511 y=859 width=35 height=44 xoffset=2 yoffset=25 xadvance=30 page=0 chnl=0 +char id=249 x=520 y=679 width=27 height=45 xoffset=5 yoffset=17 xadvance=30 page=0 chnl=0 +char id=250 x=547 y=679 width=44 height=45 xoffset=5 yoffset=17 xadvance=30 page=0 chnl=0 +char id=251 x=591 y=679 width=27 height=45 xoffset=5 yoffset=17 xadvance=30 page=0 chnl=0 +char id=253 x=850 y=75 width=49 height=58 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=254 x=899 y=75 width=39 height=58 xoffset=-3 yoffset=17 xadvance=30 page=0 chnl=0 +char id=255 x=195 y=419 width=47 height=54 xoffset=0 yoffset=21 xadvance=30 page=0 chnl=0 +char id=256 x=38 y=580 width=51 height=51 xoffset=0 yoffset=10 xadvance=44 page=0 chnl=0 +char id=258 x=938 y=75 width=46 height=58 xoffset=0 yoffset=3 xadvance=44 page=0 chnl=0 +char id=259 x=546 y=859 width=30 height=44 xoffset=3 yoffset=18 xadvance=26 page=0 chnl=0 +char id=260 x=204 y=364 width=53 height=55 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 +char id=262 x=0 y=134 width=57 height=58 xoffset=4 yoffset=4 xadvance=41 page=0 chnl=0 +char id=263 x=618 y=679 width=49 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=264 x=57 y=134 width=46 height=58 xoffset=4 yoffset=4 xadvance=41 page=0 chnl=0 +char id=265 x=667 y=679 width=30 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=266 x=257 y=364 width=46 height=55 xoffset=4 yoffset=7 xadvance=41 page=0 chnl=0 +char id=268 x=103 y=134 width=46 height=58 xoffset=4 yoffset=4 xadvance=41 page=0 chnl=0 +char id=269 x=697 y=679 width=35 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=270 x=376 y=250 width=49 height=57 xoffset=1 yoffset=4 xadvance=44 page=0 chnl=0 +char id=271 x=732 y=679 width=65 height=45 xoffset=3 yoffset=17 xadvance=38 page=0 chnl=0 +char id=273 x=797 y=679 width=42 height=45 xoffset=3 yoffset=17 xadvance=30 page=0 chnl=0 +char id=274 x=89 y=580 width=48 height=51 xoffset=0 yoffset=10 xadvance=37 page=0 chnl=0 +char id=276 x=425 y=250 width=46 height=57 xoffset=0 yoffset=4 xadvance=37 page=0 chnl=0 +char id=277 x=576 y=859 width=32 height=44 xoffset=3 yoffset=18 xadvance=26 page=0 chnl=0 +char id=278 x=242 y=419 width=46 height=54 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 +char id=280 x=288 y=419 width=46 height=54 xoffset=0 yoffset=18 xadvance=37 page=0 chnl=0 +char id=282 x=471 y=250 width=46 height=57 xoffset=0 yoffset=4 xadvance=37 page=0 chnl=0 +char id=283 x=839 y=679 width=32 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=284 x=149 y=134 width=48 height=58 xoffset=5 yoffset=4 xadvance=44 page=0 chnl=0 +char id=285 x=984 y=75 width=37 height=58 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=286 x=197 y=134 width=48 height=58 xoffset=5 yoffset=4 xadvance=44 page=0 chnl=0 +char id=287 x=517 y=250 width=37 height=57 xoffset=0 yoffset=18 xadvance=30 page=0 chnl=0 +char id=288 x=303 y=364 width=48 height=55 xoffset=5 yoffset=7 xadvance=44 page=0 chnl=0 +char id=289 x=984 y=364 width=37 height=54 xoffset=0 yoffset=21 xadvance=30 page=0 chnl=0 +char id=290 x=280 y=0 width=48 height=64 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=291 x=753 y=0 width=37 height=62 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0 +char id=292 x=245 y=134 width=58 height=58 xoffset=1 yoffset=3 xadvance=44 page=0 chnl=0 +char id=293 x=554 y=250 width=35 height=57 xoffset=0 yoffset=4 xadvance=30 page=0 chnl=0 +char id=295 x=608 y=859 width=32 height=44 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=296 x=334 y=419 width=39 height=54 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=298 x=137 y=580 width=51 height=51 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=300 x=303 y=134 width=37 height=58 xoffset=1 yoffset=3 xadvance=19 page=0 chnl=0 +char id=302 x=373 y=419 width=33 height=54 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=303 x=351 y=364 width=18 height=55 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=304 x=406 y=419 width=33 height=54 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=306 x=640 y=859 width=57 height=44 xoffset=1 yoffset=18 xadvance=43 page=0 chnl=0 +char id=307 x=340 y=134 width=36 height=58 xoffset=1 yoffset=17 xadvance=32 page=0 chnl=0 +char id=308 x=870 y=0 width=39 height=59 xoffset=1 yoffset=3 xadvance=23 page=0 chnl=0 +char id=309 x=376 y=134 width=46 height=58 xoffset=-7 yoffset=17 xadvance=16 page=0 chnl=0 +char id=310 x=557 y=0 width=53 height=63 xoffset=2 yoffset=18 xadvance=44 page=0 chnl=0 +char id=311 x=328 y=0 width=39 height=64 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=313 x=422 y=134 width=42 height=58 xoffset=0 yoffset=3 xadvance=37 page=0 chnl=0 +char id=314 x=464 y=134 width=53 height=58 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=315 x=610 y=0 width=42 height=63 xoffset=0 yoffset=18 xadvance=37 page=0 chnl=0 +char id=316 x=367 y=0 width=20 height=64 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=317 x=697 y=859 width=55 height=44 xoffset=0 yoffset=17 xadvance=37 page=0 chnl=0 +char id=318 x=752 y=859 width=52 height=44 xoffset=1 yoffset=17 xadvance=23 page=0 chnl=0 +char id=320 x=804 y=859 width=27 height=44 xoffset=1 yoffset=17 xadvance=26 page=0 chnl=0 +char id=322 x=831 y=859 width=24 height=44 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=323 x=909 y=0 width=59 height=59 xoffset=0 yoffset=3 xadvance=44 page=0 chnl=0 +char id=324 x=855 y=859 width=48 height=44 xoffset=1 yoffset=17 xadvance=30 page=0 chnl=0 +char id=325 x=652 y=0 width=59 height=63 xoffset=0 yoffset=18 xadvance=44 page=0 chnl=0 +char id=326 x=329 y=580 width=31 height=50 xoffset=1 yoffset=31 xadvance=30 page=0 chnl=0 +char id=327 x=517 y=134 width=59 height=58 xoffset=0 yoffset=4 xadvance=44 page=0 chnl=0 +char id=328 x=903 y=859 width=34 height=44 xoffset=1 yoffset=17 xadvance=30 page=0 chnl=0 +char id=329 x=937 y=859 width=31 height=44 xoffset=4 yoffset=17 xadvance=34 page=0 chnl=0 +char id=330 x=871 y=679 width=47 height=45 xoffset=2 yoffset=17 xadvance=44 page=0 chnl=0 +char id=331 x=968 y=859 width=30 height=44 xoffset=1 yoffset=31 xadvance=30 page=0 chnl=0 +char id=332 x=452 y=527 width=47 height=52 xoffset=5 yoffset=10 xadvance=44 page=0 chnl=0 +char id=334 x=968 y=0 width=47 height=59 xoffset=5 yoffset=3 xadvance=44 page=0 chnl=0 +char id=335 x=0 y=903 width=30 height=44 xoffset=4 yoffset=18 xadvance=30 page=0 chnl=0 +char id=336 x=576 y=134 width=77 height=58 xoffset=5 yoffset=4 xadvance=44 page=0 chnl=0 +char id=337 x=918 y=679 width=68 height=45 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=338 x=30 y=903 width=61 height=44 xoffset=5 yoffset=18 xadvance=55 page=0 chnl=0 +char id=339 x=381 y=991 width=45 height=31 xoffset=4 yoffset=31 xadvance=43 page=0 chnl=0 +char id=340 x=653 y=134 width=42 height=58 xoffset=1 yoffset=3 xadvance=41 page=0 chnl=0 +char id=341 x=91 y=903 width=49 height=44 xoffset=0 yoffset=17 xadvance=19 page=0 chnl=0 +char id=342 x=711 y=0 width=42 height=63 xoffset=1 yoffset=18 xadvance=41 page=0 chnl=0 +char id=343 x=360 y=580 width=32 height=50 xoffset=0 yoffset=31 xadvance=19 page=0 chnl=0 +char id=344 x=589 y=250 width=42 height=57 xoffset=1 yoffset=4 xadvance=41 page=0 chnl=0 +char id=345 x=140 y=903 width=36 height=44 xoffset=0 yoffset=17 xadvance=19 page=0 chnl=0 +char id=346 x=0 y=75 width=50 height=59 xoffset=4 yoffset=3 xadvance=34 page=0 chnl=0 +char id=347 x=0 y=724 width=49 height=45 xoffset=3 yoffset=17 xadvance=23 page=0 chnl=0 +char id=348 x=695 y=134 width=33 height=58 xoffset=4 yoffset=4 xadvance=34 page=0 chnl=0 +char id=349 x=986 y=679 width=27 height=45 xoffset=3 yoffset=17 xadvance=23 page=0 chnl=0 +char id=350 x=728 y=134 width=33 height=58 xoffset=4 yoffset=17 xadvance=34 page=0 chnl=0 +char id=351 x=998 y=859 width=22 height=44 xoffset=3 yoffset=31 xadvance=23 page=0 chnl=0 +char id=352 x=761 y=134 width=35 height=58 xoffset=4 yoffset=4 xadvance=34 page=0 chnl=0 +char id=353 x=49 y=724 width=31 height=45 xoffset=3 yoffset=17 xadvance=23 page=0 chnl=0 +char id=354 x=631 y=250 width=44 height=57 xoffset=6 yoffset=18 xadvance=37 page=0 chnl=0 +char id=355 x=997 y=527 width=24 height=51 xoffset=1 yoffset=24 xadvance=16 page=0 chnl=0 +char id=356 x=675 y=250 width=44 height=57 xoffset=6 yoffset=4 xadvance=37 page=0 chnl=0 +char id=357 x=80 y=724 width=50 height=45 xoffset=5 yoffset=17 xadvance=25 page=0 chnl=0 +char id=360 x=369 y=364 width=51 height=55 xoffset=8 yoffset=7 xadvance=44 page=0 chnl=0 +char id=362 x=499 y=527 width=51 height=52 xoffset=8 yoffset=10 xadvance=44 page=0 chnl=0 +char id=364 x=50 y=75 width=51 height=59 xoffset=8 yoffset=3 xadvance=44 page=0 chnl=0 +char id=365 x=176 y=903 width=28 height=44 xoffset=5 yoffset=18 xadvance=30 page=0 chnl=0 +char id=366 x=101 y=75 width=51 height=59 xoffset=8 yoffset=3 xadvance=44 page=0 chnl=0 +char id=367 x=785 y=580 width=27 height=48 xoffset=5 yoffset=14 xadvance=30 page=0 chnl=0 +char id=368 x=152 y=75 width=74 height=59 xoffset=8 yoffset=3 xadvance=44 page=0 chnl=0 +char id=369 x=130 y=724 width=67 height=45 xoffset=5 yoffset=17 xadvance=30 page=0 chnl=0 +char id=370 x=439 y=419 width=51 height=54 xoffset=8 yoffset=18 xadvance=44 page=0 chnl=0 +char id=372 x=796 y=134 width=68 height=58 xoffset=7 yoffset=4 xadvance=58 page=0 chnl=0 +char id=373 x=197 y=724 width=47 height=45 xoffset=6 yoffset=17 xadvance=44 page=0 chnl=0 +char id=374 x=719 y=250 width=51 height=57 xoffset=8 yoffset=4 xadvance=44 page=0 chnl=0 +char id=375 x=864 y=134 width=39 height=58 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=376 x=490 y=419 width=51 height=54 xoffset=8 yoffset=7 xadvance=44 page=0 chnl=0 +char id=377 x=903 y=134 width=54 height=58 xoffset=0 yoffset=3 xadvance=37 page=0 chnl=0 +char id=378 x=204 y=903 width=49 height=44 xoffset=1 yoffset=17 xadvance=26 page=0 chnl=0 +char id=379 x=541 y=419 width=50 height=54 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 +char id=381 x=770 y=250 width=50 height=57 xoffset=0 yoffset=4 xadvance=37 page=0 chnl=0 +char id=382 x=253 y=903 width=34 height=44 xoffset=1 yoffset=17 xadvance=26 page=0 chnl=0 +char id=383 x=287 y=903 width=41 height=44 xoffset=1 yoffset=17 xadvance=19 page=0 chnl=0 +char id=902 x=328 y=903 width=45 height=44 xoffset=1 yoffset=17 xadvance=44 page=0 chnl=0 +char id=903 x=1013 y=814 width=9 height=9 xoffset=8 yoffset=30 xadvance=14 page=0 chnl=0 +char id=904 x=373 y=903 width=65 height=44 xoffset=7 yoffset=17 xadvance=49 page=0 chnl=0 +char id=905 x=244 y=724 width=78 height=45 xoffset=7 yoffset=16 xadvance=56 page=0 chnl=0 +char id=906 x=322 y=724 width=54 height=45 xoffset=7 yoffset=16 xadvance=30 page=0 chnl=0 +char id=908 x=178 y=632 width=61 height=46 xoffset=7 yoffset=16 xadvance=50 page=0 chnl=0 +char id=910 x=376 y=724 width=59 height=45 xoffset=7 yoffset=16 xadvance=53 page=0 chnl=0 +char id=911 x=435 y=724 width=51 height=45 xoffset=7 yoffset=16 xadvance=54 page=0 chnl=0 +char id=912 x=392 y=580 width=26 height=50 xoffset=3 yoffset=12 xadvance=16 page=0 chnl=0 +char id=913 x=438 y=903 width=46 height=44 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 +char id=916 x=484 y=903 width=41 height=44 xoffset=0 yoffset=17 xadvance=40 page=0 chnl=0 +char id=920 x=486 y=724 width=50 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=923 x=525 y=903 width=46 height=44 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 +char id=925 x=571 y=903 width=59 height=44 xoffset=0 yoffset=18 xadvance=44 page=0 chnl=0 +char id=927 x=536 y=724 width=47 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=933 x=630 y=903 width=46 height=44 xoffset=9 yoffset=17 xadvance=43 page=0 chnl=0 +char id=937 x=676 y=903 width=48 height=44 xoffset=2 yoffset=17 xadvance=46 page=0 chnl=0 +char id=938 x=591 y=419 width=49 height=54 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=939 x=640 y=419 width=45 height=54 xoffset=9 yoffset=7 xadvance=44 page=0 chnl=0 +char id=940 x=188 y=580 width=35 height=51 xoffset=4 yoffset=11 xadvance=35 page=0 chnl=0 +char id=941 x=223 y=580 width=28 height=51 xoffset=3 yoffset=11 xadvance=25 page=0 chnl=0 +char id=942 x=250 y=0 width=30 height=65 xoffset=4 yoffset=11 xadvance=32 page=0 chnl=0 +char id=943 x=251 y=580 width=20 height=51 xoffset=5 yoffset=11 xadvance=16 page=0 chnl=0 +char id=944 x=506 y=580 width=34 height=49 xoffset=4 yoffset=13 xadvance=31 page=0 chnl=0 +char id=945 x=426 y=991 width=35 height=31 xoffset=4 yoffset=31 xadvance=35 page=0 chnl=0 +char id=946 x=820 y=250 width=34 height=57 xoffset=1 yoffset=17 xadvance=32 page=0 chnl=0 +char id=947 x=583 y=724 width=34 height=45 xoffset=4 yoffset=31 xadvance=29 page=0 chnl=0 +char id=948 x=617 y=724 width=31 height=45 xoffset=4 yoffset=17 xadvance=32 page=0 chnl=0 +char id=949 x=461 y=991 width=27 height=31 xoffset=3 yoffset=31 xadvance=25 page=0 chnl=0 +char id=950 x=957 y=134 width=29 height=58 xoffset=5 yoffset=16 xadvance=28 page=0 chnl=0 +char id=951 x=648 y=724 width=30 height=45 xoffset=4 yoffset=31 xadvance=32 page=0 chnl=0 +char id=952 x=678 y=724 width=31 height=45 xoffset=6 yoffset=17 xadvance=32 page=0 chnl=0 +char id=954 x=488 y=991 width=36 height=31 xoffset=6 yoffset=30 xadvance=33 page=0 chnl=0 +char id=955 x=709 y=724 width=30 height=45 xoffset=1 yoffset=17 xadvance=28 page=0 chnl=0 +char id=956 x=724 y=903 width=33 height=44 xoffset=2 yoffset=32 xadvance=32 page=0 chnl=0 +char id=958 x=790 y=0 width=35 height=60 xoffset=3 yoffset=13 xadvance=31 page=0 chnl=0 +char id=959 x=524 y=991 width=30 height=31 xoffset=4 yoffset=31 xadvance=30 page=0 chnl=0 +char id=960 x=38 y=991 width=40 height=32 xoffset=3 yoffset=30 xadvance=36 page=0 chnl=0 +char id=961 x=739 y=724 width=35 height=45 xoffset=0 yoffset=31 xadvance=32 page=0 chnl=0 +char id=962 x=774 y=724 width=30 height=45 xoffset=4 yoffset=31 xadvance=27 page=0 chnl=0 +char id=963 x=78 y=991 width=39 height=32 xoffset=4 yoffset=30 xadvance=32 page=0 chnl=0 +char id=964 x=554 y=991 width=32 height=31 xoffset=4 yoffset=31 xadvance=25 page=0 chnl=0 +char id=965 x=586 y=991 width=31 height=31 xoffset=4 yoffset=31 xadvance=31 page=0 chnl=0 +char id=966 x=804 y=724 width=37 height=45 xoffset=5 yoffset=31 xadvance=39 page=0 chnl=0 +char id=967 x=757 y=903 width=37 height=44 xoffset=-1 yoffset=31 xadvance=29 page=0 chnl=0 +char id=968 x=921 y=473 width=41 height=53 xoffset=5 yoffset=23 xadvance=42 page=0 chnl=0 +char id=969 x=617 y=991 width=42 height=31 xoffset=4 yoffset=31 xadvance=42 page=0 chnl=0 +char id=972 x=418 y=580 width=37 height=50 xoffset=5 yoffset=12 xadvance=30 page=0 chnl=0 +char id=973 x=540 y=580 width=31 height=49 xoffset=4 yoffset=13 xadvance=31 page=0 chnl=0 +char id=974 x=571 y=580 width=42 height=49 xoffset=4 yoffset=13 xadvance=42 page=0 chnl=0 +char id=976 x=0 y=632 width=32 height=47 xoffset=5 yoffset=15 xadvance=32 page=0 chnl=0 +char id=977 x=32 y=632 width=39 height=47 xoffset=4 yoffset=15 xadvance=36 page=0 chnl=0 +char id=978 x=794 y=903 width=44 height=44 xoffset=7 yoffset=17 xadvance=38 page=0 chnl=0 +char id=979 x=239 y=632 width=56 height=46 xoffset=7 yoffset=15 xadvance=50 page=0 chnl=0 +char id=980 x=685 y=419 width=44 height=54 xoffset=7 yoffset=7 xadvance=38 page=0 chnl=0 +char id=981 x=550 y=527 width=37 height=52 xoffset=4 yoffset=24 xadvance=39 page=0 chnl=0 +char id=985 x=841 y=724 width=30 height=45 xoffset=4 yoffset=31 xadvance=30 page=0 chnl=0 +char id=986 x=838 y=903 width=40 height=44 xoffset=6 yoffset=17 xadvance=36 page=0 chnl=0 +char id=989 x=878 y=903 width=42 height=44 xoffset=-2 yoffset=31 xadvance=26 page=0 chnl=0 +char id=990 x=871 y=724 width=36 height=45 xoffset=6 yoffset=18 xadvance=40 page=0 chnl=0 +char id=991 x=986 y=134 width=22 height=58 xoffset=5 yoffset=15 xadvance=24 page=0 chnl=0 +char id=992 x=920 y=903 width=46 height=44 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 +char id=993 x=0 y=192 width=38 height=58 xoffset=1 yoffset=15 xadvance=34 page=0 chnl=0 +char id=994 x=226 y=75 width=65 height=59 xoffset=2 yoffset=17 xadvance=59 page=0 chnl=0 +char id=995 x=907 y=724 width=46 height=45 xoffset=1 yoffset=31 xadvance=41 page=0 chnl=0 +char id=996 x=384 y=307 width=38 height=56 xoffset=6 yoffset=17 xadvance=36 page=0 chnl=0 +char id=997 x=953 y=724 width=35 height=45 xoffset=3 yoffset=31 xadvance=31 page=0 chnl=0 +char id=998 x=422 y=307 width=39 height=56 xoffset=0 yoffset=17 xadvance=35 page=0 chnl=0 +char id=1000 x=587 y=527 width=38 height=52 xoffset=2 yoffset=17 xadvance=30 page=0 chnl=0 +char id=1002 x=812 y=580 width=51 height=48 xoffset=2 yoffset=17 xadvance=52 page=0 chnl=0 +char id=1004 x=962 y=473 width=50 height=53 xoffset=5 yoffset=9 xadvance=34 page=0 chnl=0 +char id=1006 x=387 y=0 width=40 height=64 xoffset=6 yoffset=9 xadvance=39 page=0 chnl=0 +char id=1007 x=271 y=580 width=28 height=51 xoffset=4 yoffset=24 xadvance=27 page=0 chnl=0 +char id=1008 x=659 y=991 width=29 height=31 xoffset=5 yoffset=31 xadvance=32 page=0 chnl=0 +char id=1009 x=988 y=724 width=31 height=45 xoffset=3 yoffset=31 xadvance=32 page=0 chnl=0 +char id=1010 x=688 y=991 width=28 height=31 xoffset=4 yoffset=31 xadvance=29 page=0 chnl=0 +char id=1011 x=38 y=192 width=34 height=58 xoffset=-7 yoffset=17 xadvance=16 page=0 chnl=0 +char id=1012 x=0 y=769 width=47 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=1013 x=716 y=991 width=26 height=31 xoffset=4 yoffset=31 xadvance=21 page=0 chnl=0 +char id=1014 x=742 y=991 width=24 height=31 xoffset=2 yoffset=31 xadvance=21 page=0 chnl=0 +char id=1016 x=461 y=307 width=32 height=56 xoffset=5 yoffset=19 xadvance=33 page=0 chnl=0 +char id=1017 x=47 y=769 width=45 height=45 xoffset=5 yoffset=17 xadvance=41 page=0 chnl=0 +char id=1019 x=966 y=903 width=47 height=44 xoffset=1 yoffset=31 xadvance=43 page=0 chnl=0 +char id=1020 x=0 y=947 width=45 height=44 xoffset=-6 yoffset=31 xadvance=32 page=0 chnl=0 +char id=1021 x=92 y=769 width=44 height=45 xoffset=3 yoffset=17 xadvance=41 page=0 chnl=0 +char id=1022 x=136 y=769 width=42 height=45 xoffset=5 yoffset=17 xadvance=62 page=0 chnl=0 +char id=1023 x=178 y=769 width=42 height=45 xoffset=3 yoffset=17 xadvance=62 page=0 chnl=0 +char id=1024 x=72 y=192 width=61 height=58 xoffset=1 yoffset=3 xadvance=37 page=0 chnl=0 +char id=1025 x=420 y=364 width=61 height=55 xoffset=1 yoffset=6 xadvance=37 page=0 chnl=0 +char id=1026 x=45 y=947 width=44 height=44 xoffset=6 yoffset=18 xadvance=46 page=0 chnl=0 +char id=1027 x=133 y=192 width=54 height=58 xoffset=1 yoffset=3 xadvance=34 page=0 chnl=0 +char id=1028 x=220 y=769 width=48 height=45 xoffset=5 yoffset=17 xadvance=40 page=0 chnl=0 +char id=1029 x=268 y=769 width=36 height=45 xoffset=2 yoffset=17 xadvance=29 page=0 chnl=0 +char id=1031 x=481 y=364 width=49 height=55 xoffset=1 yoffset=6 xadvance=20 page=0 chnl=0 +char id=1032 x=89 y=947 width=36 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 +char id=1033 x=125 y=947 width=61 height=44 xoffset=0 yoffset=18 xadvance=58 page=0 chnl=0 +char id=1035 x=186 y=947 width=46 height=44 xoffset=6 yoffset=18 xadvance=51 page=0 chnl=0 +char id=1036 x=187 y=192 width=55 height=58 xoffset=1 yoffset=3 xadvance=41 page=0 chnl=0 +char id=1037 x=242 y=192 width=58 height=58 xoffset=1 yoffset=3 xadvance=44 page=0 chnl=0 +char id=1038 x=854 y=250 width=53 height=57 xoffset=7 yoffset=5 xadvance=43 page=0 chnl=0 +char id=1039 x=729 y=419 width=58 height=54 xoffset=1 yoffset=18 xadvance=44 page=0 chnl=0 +char id=1040 x=232 y=947 width=46 height=44 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 +char id=1044 x=787 y=419 width=57 height=54 xoffset=-2 yoffset=18 xadvance=39 page=0 chnl=0 +char id=1047 x=304 y=769 width=41 height=45 xoffset=2 yoffset=17 xadvance=35 page=0 chnl=0 +char id=1049 x=493 y=307 width=58 height=56 xoffset=1 yoffset=5 xadvance=44 page=0 chnl=0 +char id=1051 x=278 y=947 width=54 height=44 xoffset=1 yoffset=18 xadvance=42 page=0 chnl=0 +char id=1054 x=345 y=769 width=47 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=1057 x=392 y=769 width=47 height=45 xoffset=4 yoffset=17 xadvance=40 page=0 chnl=0 +char id=1059 x=332 y=947 width=53 height=44 xoffset=7 yoffset=18 xadvance=43 page=0 chnl=0 +char id=1062 x=844 y=419 width=57 height=54 xoffset=1 yoffset=18 xadvance=45 page=0 chnl=0 +char id=1065 x=901 y=419 width=75 height=54 xoffset=1 yoffset=18 xadvance=61 page=0 chnl=0 +char id=1069 x=439 y=769 width=45 height=45 xoffset=2 yoffset=17 xadvance=40 page=0 chnl=0 +char id=1070 x=484 y=769 width=66 height=45 xoffset=1 yoffset=17 xadvance=60 page=0 chnl=0 +char id=1072 x=766 y=991 width=27 height=31 xoffset=2 yoffset=31 xadvance=26 page=0 chnl=0 +char id=1073 x=71 y=632 width=35 height=47 xoffset=4 yoffset=15 xadvance=30 page=0 chnl=0 +char id=1077 x=793 y=991 width=28 height=31 xoffset=3 yoffset=31 xadvance=26 page=0 chnl=0 +char id=1079 x=821 y=991 width=27 height=31 xoffset=1 yoffset=31 xadvance=24 page=0 chnl=0 +char id=1081 x=385 y=947 width=40 height=44 xoffset=1 yoffset=17 xadvance=32 page=0 chnl=0 +char id=1086 x=848 y=991 width=31 height=31 xoffset=4 yoffset=31 xadvance=29 page=0 chnl=0 +char id=1088 x=425 y=947 width=40 height=44 xoffset=-3 yoffset=31 xadvance=30 page=0 chnl=0 +char id=1089 x=879 y=991 width=29 height=31 xoffset=3 yoffset=31 xadvance=25 page=0 chnl=0 +char id=1092 x=300 y=192 width=45 height=58 xoffset=3 yoffset=17 xadvance=42 page=0 chnl=0 +char id=1101 x=908 y=991 width=29 height=31 xoffset=1 yoffset=31 xadvance=26 page=0 chnl=0 +char id=1102 x=937 y=991 width=44 height=31 xoffset=1 yoffset=31 xadvance=41 page=0 chnl=0 +char id=1104 x=550 y=769 width=33 height=45 xoffset=5 yoffset=17 xadvance=26 page=0 chnl=0 +char id=1106 x=907 y=250 width=32 height=57 xoffset=1 yoffset=17 xadvance=29 page=0 chnl=0 +char id=1107 x=465 y=947 width=50 height=44 xoffset=1 yoffset=17 xadvance=23 page=0 chnl=0 +char id=1108 x=981 y=991 width=32 height=31 xoffset=3 yoffset=31 xadvance=26 page=0 chnl=0 +char id=1110 x=515 y=947 width=19 height=44 xoffset=1 yoffset=17 xadvance=15 page=0 chnl=0 +char id=1111 x=534 y=947 width=45 height=44 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=1112 x=345 y=192 width=34 height=58 xoffset=-7 yoffset=17 xadvance=16 page=0 chnl=0 +char id=1115 x=579 y=947 width=32 height=44 xoffset=1 yoffset=17 xadvance=31 page=0 chnl=0 +char id=1116 x=611 y=947 width=43 height=44 xoffset=1 yoffset=17 xadvance=30 page=0 chnl=0 +char id=1117 x=654 y=947 width=40 height=44 xoffset=1 yoffset=17 xadvance=32 page=0 chnl=0 +char id=1118 x=379 y=192 width=55 height=58 xoffset=-3 yoffset=17 xadvance=28 page=0 chnl=0 +char id=1120 x=583 y=769 width=62 height=45 xoffset=5 yoffset=17 xadvance=61 page=0 chnl=0 +char id=1123 x=694 y=947 width=29 height=44 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=1124 x=645 y=769 width=69 height=45 xoffset=1 yoffset=17 xadvance=59 page=0 chnl=0 +char id=1126 x=723 y=947 width=58 height=44 xoffset=0 yoffset=17 xadvance=56 page=0 chnl=0 +char id=1128 x=781 y=947 width=80 height=44 xoffset=0 yoffset=17 xadvance=78 page=0 chnl=0 +char id=1134 x=148 y=0 width=45 height=69 xoffset=1 yoffset=6 xadvance=31 page=0 chnl=0 +char id=1135 x=299 y=580 width=30 height=51 xoffset=3 yoffset=22 xadvance=23 page=0 chnl=0 +char id=1137 x=434 y=192 width=46 height=58 xoffset=5 yoffset=17 xadvance=42 page=0 chnl=0 +char id=1138 x=714 y=769 width=47 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=1140 x=861 y=947 width=53 height=44 xoffset=8 yoffset=18 xadvance=48 page=0 chnl=0 +char id=1142 x=480 y=192 width=57 height=58 xoffset=8 yoffset=4 xadvance=48 page=0 chnl=0 +char id=1143 x=761 y=769 width=51 height=45 xoffset=5 yoffset=17 xadvance=33 page=0 chnl=0 +char id=1144 x=537 y=192 width=81 height=58 xoffset=5 yoffset=17 xadvance=75 page=0 chnl=0 +char id=1145 x=914 y=947 width=65 height=44 xoffset=3 yoffset=31 xadvance=59 page=0 chnl=0 +char id=1146 x=625 y=527 width=56 height=52 xoffset=5 yoffset=14 xadvance=54 page=0 chnl=0 +char id=1148 x=291 y=75 width=62 height=59 xoffset=5 yoffset=3 xadvance=61 page=0 chnl=0 +char id=1149 x=863 y=580 width=51 height=48 xoffset=3 yoffset=14 xadvance=41 page=0 chnl=0 +char id=1150 x=551 y=307 width=62 height=56 xoffset=5 yoffset=6 xadvance=61 page=0 chnl=0 +char id=1152 x=979 y=947 width=40 height=44 xoffset=6 yoffset=17 xadvance=36 page=0 chnl=0 +char id=1160 x=427 y=0 width=130 height=64 xoffset=-44 yoffset=6 xadvance=-2 page=0 chnl=0 +char id=1161 x=0 y=0 width=148 height=75 xoffset=-48 yoffset=3 xadvance=-2 page=0 chnl=0 +char id=1162 x=193 y=0 width=57 height=66 xoffset=0 yoffset=5 xadvance=44 page=0 chnl=0 +char id=1163 x=976 y=419 width=42 height=54 xoffset=0 yoffset=17 xadvance=31 page=0 chnl=0 +char id=1168 x=455 y=580 width=51 height=50 xoffset=0 yoffset=11 xadvance=34 page=0 chnl=0 +char id=1172 x=939 y=250 width=44 height=57 xoffset=1 yoffset=18 xadvance=38 page=0 chnl=0 +char id=1174 x=0 y=473 width=63 height=54 xoffset=1 yoffset=18 xadvance=62 page=0 chnl=0 +char id=1176 x=618 y=192 width=41 height=58 xoffset=2 yoffset=17 xadvance=35 page=0 chnl=0 +char id=1178 x=63 y=473 width=45 height=54 xoffset=1 yoffset=18 xadvance=43 page=0 chnl=0 +char id=1186 x=108 y=473 width=57 height=54 xoffset=1 yoffset=18 xadvance=45 page=0 chnl=0 +char id=1190 x=0 y=307 width=65 height=57 xoffset=1 yoffset=18 xadvance=64 page=0 chnl=0 +char id=1192 x=812 y=769 width=47 height=45 xoffset=5 yoffset=17 xadvance=46 page=0 chnl=0 +char id=1194 x=659 y=192 width=48 height=58 xoffset=5 yoffset=17 xadvance=40 page=0 chnl=0 +char id=1196 x=681 y=527 width=44 height=52 xoffset=6 yoffset=18 xadvance=37 page=0 chnl=0 +char id=1202 x=165 y=473 width=54 height=54 xoffset=0 yoffset=18 xadvance=47 page=0 chnl=0 +char id=1204 x=725 y=527 width=67 height=52 xoffset=6 yoffset=18 xadvance=60 page=0 chnl=0 +char id=1206 x=219 y=473 width=48 height=54 xoffset=7 yoffset=18 xadvance=42 page=0 chnl=0 +char id=1212 x=859 y=769 width=53 height=45 xoffset=7 yoffset=17 xadvance=53 page=0 chnl=0 +char id=1214 x=0 y=527 width=53 height=53 xoffset=7 yoffset=17 xadvance=53 page=0 chnl=0 +char id=1217 x=613 y=307 width=65 height=56 xoffset=0 yoffset=5 xadvance=58 page=0 chnl=0 +char id=1219 x=65 y=307 width=50 height=57 xoffset=1 yoffset=18 xadvance=38 page=0 chnl=0 +char id=1221 x=53 y=527 width=56 height=53 xoffset=2 yoffset=18 xadvance=43 page=0 chnl=0 +char id=1223 x=530 y=364 width=58 height=55 xoffset=1 yoffset=18 xadvance=44 page=0 chnl=0 +char id=1225 x=109 y=527 width=58 height=53 xoffset=1 yoffset=18 xadvance=44 page=0 chnl=0 +char id=1227 x=792 y=527 width=47 height=52 xoffset=8 yoffset=18 xadvance=42 page=0 chnl=0 +char id=1229 x=167 y=527 width=69 height=53 xoffset=1 yoffset=18 xadvance=55 page=0 chnl=0 +char id=1232 x=678 y=307 width=45 height=56 xoffset=1 yoffset=5 xadvance=44 page=0 chnl=0 +char id=1233 x=912 y=769 width=32 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=1234 x=588 y=364 width=51 height=55 xoffset=1 yoffset=6 xadvance=44 page=0 chnl=0 +char id=1238 x=723 y=307 width=60 height=56 xoffset=1 yoffset=5 xadvance=38 page=0 chnl=0 +char id=1239 x=944 y=769 width=34 height=45 xoffset=3 yoffset=17 xadvance=26 page=0 chnl=0 +char id=1240 x=0 y=814 width=47 height=45 xoffset=4 yoffset=17 xadvance=43 page=0 chnl=0 +char id=1242 x=639 y=364 width=47 height=55 xoffset=4 yoffset=7 xadvance=43 page=0 chnl=0 +char id=1244 x=686 y=364 width=65 height=55 xoffset=0 yoffset=6 xadvance=58 page=0 chnl=0 +char id=1246 x=751 y=364 width=48 height=55 xoffset=2 yoffset=7 xadvance=35 page=0 chnl=0 +char id=1250 x=839 y=527 width=58 height=52 xoffset=1 yoffset=9 xadvance=44 page=0 chnl=0 +char id=1252 x=267 y=473 width=58 height=54 xoffset=1 yoffset=7 xadvance=44 page=0 chnl=0 +char id=1254 x=783 y=307 width=55 height=56 xoffset=7 yoffset=6 xadvance=44 page=0 chnl=0 +char id=1256 x=47 y=814 width=47 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=1258 x=799 y=364 width=47 height=55 xoffset=5 yoffset=7 xadvance=44 page=0 chnl=0 +char id=1260 x=838 y=307 width=45 height=56 xoffset=2 yoffset=6 xadvance=40 page=0 chnl=0 +char id=1262 x=236 y=527 width=53 height=53 xoffset=7 yoffset=9 xadvance=43 page=0 chnl=0 +char id=1263 x=289 y=527 width=55 height=53 xoffset=-3 yoffset=22 xadvance=28 page=0 chnl=0 +char id=1264 x=883 y=307 width=53 height=56 xoffset=7 yoffset=6 xadvance=43 page=0 chnl=0 +char id=1265 x=325 y=473 width=55 height=54 xoffset=-3 yoffset=21 xadvance=28 page=0 chnl=0 +char id=1266 x=353 y=75 width=76 height=59 xoffset=7 yoffset=3 xadvance=43 page=0 chnl=0 +char id=1267 x=707 y=192 width=84 height=58 xoffset=-3 yoffset=17 xadvance=28 page=0 chnl=0 +char id=1268 x=380 y=473 width=47 height=54 xoffset=8 yoffset=7 xadvance=42 page=0 chnl=0 +char id=1270 x=897 y=527 width=47 height=52 xoffset=1 yoffset=18 xadvance=35 page=0 chnl=0 +char id=1272 x=427 y=473 width=97 height=54 xoffset=1 yoffset=7 xadvance=53 page=0 chnl=0 +char id=1274 x=791 y=192 width=47 height=58 xoffset=1 yoffset=18 xadvance=35 page=0 chnl=0 +char id=1276 x=846 y=364 width=57 height=55 xoffset=0 yoffset=18 xadvance=44 page=0 chnl=0 +char id=1281 x=978 y=769 width=34 height=45 xoffset=3 yoffset=17 xadvance=30 page=0 chnl=0 +char id=1283 x=295 y=632 width=39 height=46 xoffset=3 yoffset=17 xadvance=39 page=0 chnl=0 +char id=1284 x=94 y=814 width=52 height=45 xoffset=6 yoffset=17 xadvance=49 page=0 chnl=0 +char id=1285 x=117 y=991 width=32 height=32 xoffset=4 yoffset=31 xadvance=31 page=0 chnl=0 +char id=1286 x=344 y=527 width=29 height=53 xoffset=6 yoffset=17 xadvance=33 page=0 chnl=0 +char id=1289 x=149 y=991 width=42 height=32 xoffset=0 yoffset=32 xadvance=39 page=0 chnl=0 +char id=1292 x=146 y=814 width=48 height=45 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=1296 x=194 y=814 width=37 height=45 xoffset=4 yoffset=17 xadvance=32 page=0 chnl=0 +char id=1298 x=903 y=364 width=56 height=55 xoffset=2 yoffset=18 xadvance=43 page=0 chnl=0 +char id=1306 x=936 y=307 width=47 height=56 xoffset=5 yoffset=17 xadvance=44 page=0 chnl=0 +char id=1312 x=115 y=307 width=63 height=57 xoffset=1 yoffset=18 xadvance=61 page=0 chnl=0 +char id=1314 x=178 y=307 width=65 height=57 xoffset=1 yoffset=18 xadvance=64 page=0 chnl=0 +char id=8192 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=30 page=0 chnl=0 +char id=8193 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=62 page=0 chnl=0 +char id=8194 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=30 page=0 chnl=0 +char id=8195 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=62 page=0 chnl=0 +char id=8196 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=0 +char id=8197 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=8198 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=8199 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=30 page=0 chnl=0 +char id=8200 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=8201 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8202 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8203 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=-2 page=0 chnl=0 +char id=8204 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=-2 page=0 chnl=0 +char id=8218 x=1012 y=769 width=10 height=16 xoffset=3 yoffset=54 xadvance=14 page=0 chnl=0 +char id=8224 x=524 y=473 width=27 height=54 xoffset=8 yoffset=17 xadvance=30 page=0 chnl=0 +char id=8225 x=551 y=473 width=31 height=54 xoffset=4 yoffset=17 xadvance=30 page=0 chnl=0 +char id=8239 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=8240 x=914 y=580 width=64 height=48 xoffset=5 yoffset=15 xadvance=62 page=0 chnl=0 +char id=8252 x=231 y=814 width=37 height=45 xoffset=8 yoffset=17 xadvance=41 page=0 chnl=0 +char id=8260 x=268 y=814 width=67 height=45 xoffset=-11 yoffset=17 xadvance=9 page=0 chnl=0 +char id=8286 x=944 y=527 width=21 height=52 xoffset=3 yoffset=10 xadvance=9 page=0 chnl=0 +char id=8352 x=335 y=814 width=36 height=45 xoffset=8 yoffset=16 xadvance=43 page=0 chnl=0 +char id=8353 x=825 y=0 width=45 height=60 xoffset=5 yoffset=10 xadvance=41 page=0 chnl=0 +char id=8354 x=371 y=814 width=45 height=45 xoffset=5 yoffset=17 xadvance=41 page=0 chnl=0 +char id=8356 x=416 y=814 width=38 height=45 xoffset=1 yoffset=17 xadvance=30 page=0 chnl=0 +char id=8357 x=454 y=814 width=49 height=45 xoffset=1 yoffset=24 xadvance=48 page=0 chnl=0 +char id=8363 x=373 y=527 width=42 height=53 xoffset=4 yoffset=9 xadvance=31 page=0 chnl=0 +char id=8364 x=503 y=814 width=51 height=45 xoffset=5 yoffset=17 xadvance=45 page=0 chnl=0 +char id=8367 x=838 y=192 width=87 height=58 xoffset=0 yoffset=17 xadvance=84 page=0 chnl=0 +char id=8368 x=983 y=250 width=31 height=57 xoffset=0 yoffset=17 xadvance=29 page=0 chnl=0 +char id=8370 x=613 y=580 width=40 height=49 xoffset=5 yoffset=15 xadvance=38 page=0 chnl=0 +char id=8372 x=554 y=814 width=32 height=45 xoffset=4 yoffset=17 xadvance=34 page=0 chnl=0 +char id=8373 x=415 y=527 width=37 height=53 xoffset=5 yoffset=14 xadvance=37 page=0 chnl=0 +char id=11364 x=983 y=307 width=37 height=56 xoffset=6 yoffset=18 xadvance=41 page=0 chnl=0 +char id=11367 x=582 y=473 width=57 height=54 xoffset=1 yoffset=18 xadvance=45 page=0 chnl=0 +char id=11368 x=965 y=527 width=32 height=52 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 +char id=11369 x=639 y=473 width=52 height=54 xoffset=2 yoffset=18 xadvance=45 page=0 chnl=0 +char id=11370 x=0 y=580 width=38 height=52 xoffset=0 yoffset=17 xadvance=31 page=0 chnl=0 +char id=11371 x=691 y=473 width=50 height=54 xoffset=0 yoffset=18 xadvance=37 page=0 chnl=0 +char id=11373 x=586 y=814 width=42 height=45 xoffset=5 yoffset=17 xadvance=42 page=0 chnl=0 +char id=11378 x=628 y=814 width=74 height=45 xoffset=7 yoffset=17 xadvance=67 page=0 chnl=0 +char id=0 x=946 y=0 width=43 height=43 xoffset=5 yoffset=18 xadvance=43 page=1 chnl=0 +char id=34 x=163 y=476 width=20 height=17 xoffset=11 yoffset=17 xadvance=24 page=1 chnl=0 +char id=35 x=0 y=44 width=39 height=43 xoffset=2 yoffset=18 xadvance=30 page=1 chnl=0 +char id=42 x=653 y=447 width=27 height=28 xoffset=8 yoffset=17 xadvance=30 page=1 chnl=0 +char id=43 x=220 y=382 width=35 height=33 xoffset=4 yoffset=28 xadvance=34 page=1 chnl=0 +char id=45 x=781 y=476 width=18 height=5 xoffset=4 yoffset=44 xadvance=19 page=1 chnl=0 +char id=60 x=109 y=382 width=41 height=34 xoffset=4 yoffset=28 xadvance=34 page=1 chnl=0 +char id=61 x=105 y=476 width=38 height=18 xoffset=3 yoffset=36 xadvance=34 page=1 chnl=0 +char id=62 x=150 y=382 width=38 height=34 xoffset=1 yoffset=28 xadvance=34 page=1 chnl=0 +char id=66 x=39 y=44 width=41 height=43 xoffset=1 yoffset=18 xadvance=41 page=1 chnl=0 +char id=68 x=80 y=44 width=49 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=69 x=129 y=44 width=46 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=70 x=175 y=44 width=49 height=43 xoffset=0 yoffset=18 xadvance=34 page=1 chnl=0 +char id=72 x=224 y=44 width=58 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=73 x=989 y=0 width=33 height=43 xoffset=1 yoffset=18 xadvance=19 page=1 chnl=0 +char id=75 x=282 y=44 width=53 height=43 xoffset=2 yoffset=18 xadvance=44 page=1 chnl=0 +char id=76 x=335 y=44 width=42 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=77 x=377 y=44 width=68 height=43 xoffset=0 yoffset=18 xadvance=55 page=1 chnl=0 +char id=80 x=445 y=44 width=44 height=43 xoffset=1 yoffset=18 xadvance=34 page=1 chnl=0 +char id=82 x=489 y=44 width=42 height=43 xoffset=1 yoffset=18 xadvance=41 page=1 chnl=0 +char id=84 x=531 y=44 width=44 height=43 xoffset=6 yoffset=18 xadvance=37 page=1 chnl=0 +char id=88 x=575 y=44 width=57 height=43 xoffset=0 yoffset=18 xadvance=44 page=1 chnl=0 +char id=89 x=632 y=44 width=51 height=43 xoffset=8 yoffset=18 xadvance=44 page=1 chnl=0 +char id=90 x=683 y=44 width=50 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=94 x=852 y=447 width=29 height=24 xoffset=4 yoffset=18 xadvance=28 page=1 chnl=0 +char id=95 x=919 y=476 width=35 height=4 xoffset=-2 yoffset=65 xadvance=30 page=1 chnl=0 +char id=96 x=450 y=476 width=14 height=12 xoffset=8 yoffset=17 xadvance=19 page=1 chnl=0 +char id=109 x=943 y=382 width=49 height=30 xoffset=1 yoffset=31 xadvance=48 page=1 chnl=0 +char id=110 x=992 y=382 width=31 height=30 xoffset=1 yoffset=31 xadvance=30 page=1 chnl=0 +char id=114 x=0 y=417 width=32 height=30 xoffset=0 yoffset=31 xadvance=19 page=1 chnl=0 +char id=116 x=1003 y=302 width=20 height=38 xoffset=5 yoffset=24 xadvance=16 page=1 chnl=0 +char id=117 x=32 y=417 width=27 height=30 xoffset=5 yoffset=32 xadvance=30 page=1 chnl=0 +char id=118 x=59 y=417 width=33 height=30 xoffset=6 yoffset=32 xadvance=30 page=1 chnl=0 +char id=119 x=92 y=417 width=47 height=30 xoffset=6 yoffset=32 xadvance=44 page=1 chnl=0 +char id=120 x=684 y=417 width=32 height=29 xoffset=1 yoffset=32 xadvance=30 page=1 chnl=0 +char id=121 x=733 y=44 width=39 height=43 xoffset=0 yoffset=32 xadvance=30 page=1 chnl=0 +char id=122 x=716 y=417 width=32 height=29 xoffset=1 yoffset=32 xadvance=26 page=1 chnl=0 +char id=126 x=623 y=476 width=30 height=10 xoffset=5 yoffset=40 xadvance=33 page=1 chnl=0 +char id=164 x=695 y=343 width=48 height=36 xoffset=-1 yoffset=22 xadvance=30 page=1 chnl=0 +char id=165 x=772 y=44 width=46 height=43 xoffset=3 yoffset=18 xadvance=30 page=1 chnl=0 +char id=168 x=756 y=476 width=25 height=7 xoffset=7 yoffset=21 xadvance=19 page=1 chnl=0 +char id=170 x=921 y=447 width=22 height=19 xoffset=5 yoffset=17 xadvance=16 page=1 chnl=0 +char id=171 x=746 y=447 width=32 height=25 xoffset=3 yoffset=34 xadvance=26 page=1 chnl=0 +char id=172 x=943 y=447 width=36 height=19 xoffset=5 yoffset=36 xadvance=34 page=1 chnl=0 +char id=173 x=799 y=476 width=18 height=5 xoffset=4 yoffset=44 xadvance=19 page=1 chnl=0 +char id=175 x=954 y=476 width=28 height=4 xoffset=6 yoffset=22 xadvance=19 page=1 chnl=0 +char id=176 x=899 y=447 width=22 height=20 xoffset=9 yoffset=17 xadvance=24 page=1 chnl=0 +char id=177 x=719 y=259 width=40 height=41 xoffset=1 yoffset=20 xadvance=34 page=1 chnl=0 +char id=178 x=705 y=447 width=27 height=27 xoffset=4 yoffset=17 xadvance=18 page=1 chnl=0 +char id=179 x=680 y=447 width=25 height=28 xoffset=4 yoffset=17 xadvance=18 page=1 chnl=0 +char id=180 x=464 y=476 width=23 height=12 xoffset=11 yoffset=17 xadvance=19 page=1 chnl=0 +char id=181 x=818 y=44 width=35 height=43 xoffset=0 yoffset=32 xadvance=30 page=1 chnl=0 +char id=184 x=309 y=476 width=15 height=15 xoffset=1 yoffset=60 xadvance=19 page=1 chnl=0 +char id=185 x=732 y=447 width=14 height=27 xoffset=7 yoffset=17 xadvance=18 page=1 chnl=0 +char id=186 x=979 y=447 width=26 height=19 xoffset=6 yoffset=17 xadvance=18 page=1 chnl=0 +char id=187 x=778 y=447 width=36 height=25 xoffset=1 yoffset=34 xadvance=26 page=1 chnl=0 +char id=198 x=853 y=44 width=62 height=43 xoffset=0 yoffset=18 xadvance=55 page=1 chnl=0 +char id=208 x=915 y=44 width=49 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=222 x=964 y=44 width=40 height=43 xoffset=1 yoffset=18 xadvance=35 page=1 chnl=0 +char id=227 x=583 y=259 width=32 height=42 xoffset=3 yoffset=20 xadvance=26 page=1 chnl=0 +char id=228 x=759 y=259 width=43 height=41 xoffset=3 yoffset=21 xadvance=26 page=1 chnl=0 +char id=235 x=802 y=259 width=43 height=41 xoffset=3 yoffset=21 xadvance=26 page=1 chnl=0 +char id=239 x=449 y=302 width=28 height=40 xoffset=1 yoffset=21 xadvance=16 page=1 chnl=0 +char id=241 x=845 y=259 width=34 height=41 xoffset=1 yoffset=20 xadvance=30 page=1 chnl=0 +char id=245 x=615 y=259 width=31 height=42 xoffset=4 yoffset=20 xadvance=30 page=1 chnl=0 +char id=246 x=879 y=259 width=41 height=41 xoffset=4 yoffset=21 xadvance=30 page=1 chnl=0 +char id=247 x=917 y=343 width=35 height=35 xoffset=4 yoffset=27 xadvance=34 page=1 chnl=0 +char id=252 x=920 y=259 width=40 height=41 xoffset=5 yoffset=21 xadvance=30 page=1 chnl=0 +char id=257 x=790 y=302 width=44 height=39 xoffset=3 yoffset=23 xadvance=26 page=1 chnl=0 +char id=261 x=960 y=259 width=28 height=41 xoffset=3 yoffset=31 xadvance=26 page=1 chnl=0 +char id=267 x=988 y=259 width=28 height=41 xoffset=3 yoffset=21 xadvance=26 page=1 chnl=0 +char id=272 x=0 y=87 width=49 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=275 x=834 y=302 width=46 height=39 xoffset=3 yoffset=23 xadvance=26 page=1 chnl=0 +char id=279 x=0 y=302 width=28 height=41 xoffset=3 yoffset=21 xadvance=26 page=1 chnl=0 +char id=281 x=28 y=302 width=28 height=41 xoffset=3 yoffset=31 xadvance=26 page=1 chnl=0 +char id=294 x=49 y=87 width=58 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=297 x=477 y=302 width=34 height=40 xoffset=1 yoffset=21 xadvance=16 page=1 chnl=0 +char id=299 x=121 y=343 width=44 height=38 xoffset=1 yoffset=23 xadvance=16 page=1 chnl=0 +char id=301 x=107 y=87 width=32 height=43 xoffset=1 yoffset=18 xadvance=16 page=1 chnl=0 +char id=305 x=1002 y=87 width=16 height=30 xoffset=1 yoffset=31 xadvance=16 page=1 chnl=0 +char id=312 x=139 y=417 width=37 height=30 xoffset=0 yoffset=31 xadvance=30 page=1 chnl=0 +char id=319 x=139 y=87 width=42 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=321 x=181 y=87 width=42 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=333 x=880 y=302 width=43 height=39 xoffset=4 yoffset=23 xadvance=30 page=1 chnl=0 +char id=358 x=223 y=87 width=44 height=43 xoffset=6 yoffset=18 xadvance=37 page=1 chnl=0 +char id=359 x=165 y=343 width=22 height=38 xoffset=3 yoffset=24 xadvance=16 page=1 chnl=0 +char id=361 x=56 y=302 width=28 height=41 xoffset=5 yoffset=21 xadvance=30 page=1 chnl=0 +char id=363 x=923 y=302 width=40 height=39 xoffset=5 yoffset=23 xadvance=30 page=1 chnl=0 +char id=371 x=511 y=302 width=27 height=40 xoffset=5 yoffset=32 xadvance=30 page=1 chnl=0 +char id=380 x=538 y=302 width=32 height=40 xoffset=1 yoffset=21 xadvance=26 page=1 chnl=0 +char id=884 x=324 y=476 width=18 height=15 xoffset=6 yoffset=11 xadvance=11 page=1 chnl=0 +char id=885 x=1010 y=216 width=13 height=15 xoffset=0 yoffset=61 xadvance=11 page=1 chnl=0 +char id=890 x=653 y=476 width=12 height=10 xoffset=6 yoffset=64 xadvance=19 page=1 chnl=0 +char id=894 x=999 y=130 width=22 height=40 xoffset=4 yoffset=31 xadvance=16 page=1 chnl=0 +char id=900 x=342 y=476 width=15 height=15 xoffset=10 yoffset=11 xadvance=15 page=1 chnl=0 +char id=901 x=357 y=476 width=25 height=15 xoffset=7 yoffset=14 xadvance=19 page=1 chnl=0 +char id=914 x=267 y=87 width=41 height=43 xoffset=1 yoffset=18 xadvance=41 page=1 chnl=0 +char id=915 x=308 y=87 width=47 height=43 xoffset=0 yoffset=18 xadvance=36 page=1 chnl=0 +char id=917 x=355 y=87 width=46 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=918 x=401 y=87 width=50 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=919 x=451 y=87 width=58 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=921 x=509 y=87 width=33 height=43 xoffset=1 yoffset=18 xadvance=19 page=1 chnl=0 +char id=922 x=542 y=87 width=53 height=43 xoffset=2 yoffset=18 xadvance=44 page=1 chnl=0 +char id=924 x=595 y=87 width=68 height=43 xoffset=0 yoffset=18 xadvance=55 page=1 chnl=0 +char id=926 x=663 y=87 width=44 height=43 xoffset=3 yoffset=18 xadvance=38 page=1 chnl=0 +char id=928 x=707 y=87 width=58 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=929 x=765 y=87 width=44 height=43 xoffset=1 yoffset=18 xadvance=34 page=1 chnl=0 +char id=931 x=809 y=87 width=44 height=43 xoffset=1 yoffset=18 xadvance=38 page=1 chnl=0 +char id=932 x=853 y=87 width=44 height=43 xoffset=6 yoffset=18 xadvance=37 page=1 chnl=0 +char id=934 x=897 y=87 width=48 height=43 xoffset=5 yoffset=18 xadvance=45 page=1 chnl=0 +char id=935 x=945 y=87 width=57 height=43 xoffset=0 yoffset=18 xadvance=44 page=1 chnl=0 +char id=936 x=0 y=130 width=54 height=43 xoffset=7 yoffset=18 xadvance=50 page=1 chnl=0 +char id=953 x=176 y=417 width=14 height=30 xoffset=5 yoffset=32 xadvance=16 page=1 chnl=0 +char id=957 x=190 y=417 width=33 height=30 xoffset=4 yoffset=31 xadvance=29 page=1 chnl=0 +char id=970 x=54 y=130 width=36 height=43 xoffset=5 yoffset=19 xadvance=16 page=1 chnl=0 +char id=971 x=90 y=130 width=42 height=43 xoffset=4 yoffset=19 xadvance=31 page=1 chnl=0 +char id=982 x=952 y=343 width=47 height=35 xoffset=4 yoffset=27 xadvance=42 page=1 chnl=0 +char id=983 x=84 y=302 width=29 height=41 xoffset=5 yoffset=31 xadvance=32 page=1 chnl=0 +char id=984 x=132 y=130 width=43 height=43 xoffset=6 yoffset=18 xadvance=34 page=1 chnl=0 +char id=987 x=175 y=130 width=35 height=43 xoffset=1 yoffset=31 xadvance=25 page=1 chnl=0 +char id=988 x=210 y=130 width=49 height=43 xoffset=0 yoffset=18 xadvance=34 page=1 chnl=0 +char id=999 x=188 y=382 width=32 height=34 xoffset=1 yoffset=28 xadvance=27 page=1 chnl=0 +char id=1001 x=743 y=343 width=26 height=36 xoffset=1 yoffset=31 xadvance=20 page=1 chnl=0 +char id=1003 x=255 y=382 width=36 height=33 xoffset=1 yoffset=31 xadvance=36 page=1 chnl=0 +char id=1005 x=347 y=343 width=36 height=37 xoffset=3 yoffset=25 xadvance=24 page=1 chnl=0 +char id=1015 x=259 y=130 width=40 height=43 xoffset=1 yoffset=18 xadvance=35 page=1 chnl=0 +char id=1018 x=299 y=130 width=68 height=43 xoffset=0 yoffset=18 xadvance=55 page=1 chnl=0 +char id=1030 x=367 y=130 width=32 height=43 xoffset=1 yoffset=18 xadvance=20 page=1 chnl=0 +char id=1034 x=399 y=130 width=63 height=43 xoffset=1 yoffset=18 xadvance=61 page=1 chnl=0 +char id=1041 x=462 y=130 width=43 height=43 xoffset=1 yoffset=18 xadvance=35 page=1 chnl=0 +char id=1042 x=505 y=130 width=44 height=43 xoffset=1 yoffset=18 xadvance=38 page=1 chnl=0 +char id=1043 x=549 y=130 width=48 height=43 xoffset=1 yoffset=18 xadvance=34 page=1 chnl=0 +char id=1045 x=597 y=130 width=47 height=43 xoffset=1 yoffset=18 xadvance=37 page=1 chnl=0 +char id=1046 x=644 y=130 width=65 height=43 xoffset=0 yoffset=18 xadvance=58 page=1 chnl=0 +char id=1048 x=709 y=130 width=58 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1050 x=767 y=130 width=47 height=43 xoffset=1 yoffset=18 xadvance=41 page=1 chnl=0 +char id=1052 x=814 y=130 width=69 height=43 xoffset=1 yoffset=18 xadvance=55 page=1 chnl=0 +char id=1053 x=883 y=130 width=58 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1055 x=941 y=130 width=58 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1056 x=0 y=173 width=43 height=43 xoffset=1 yoffset=18 xadvance=35 page=1 chnl=0 +char id=1058 x=43 y=173 width=44 height=43 xoffset=6 yoffset=18 xadvance=37 page=1 chnl=0 +char id=1060 x=87 y=173 width=47 height=43 xoffset=5 yoffset=18 xadvance=46 page=1 chnl=0 +char id=1061 x=134 y=173 width=57 height=43 xoffset=0 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1063 x=191 y=173 width=47 height=43 xoffset=8 yoffset=18 xadvance=42 page=1 chnl=0 +char id=1064 x=238 y=173 width=75 height=43 xoffset=1 yoffset=18 xadvance=61 page=1 chnl=0 +char id=1066 x=313 y=173 width=41 height=43 xoffset=6 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1067 x=354 y=173 width=83 height=43 xoffset=1 yoffset=18 xadvance=53 page=1 chnl=0 +char id=1068 x=437 y=173 width=37 height=43 xoffset=1 yoffset=18 xadvance=35 page=1 chnl=0 +char id=1071 x=474 y=173 width=54 height=43 xoffset=0 yoffset=18 xadvance=39 page=1 chnl=0 +char id=1074 x=748 y=417 width=31 height=29 xoffset=1 yoffset=32 xadvance=28 page=1 chnl=0 +char id=1075 x=779 y=417 width=31 height=29 xoffset=1 yoffset=32 xadvance=23 page=1 chnl=0 +char id=1076 x=383 y=343 width=41 height=37 xoffset=-1 yoffset=32 xadvance=29 page=1 chnl=0 +char id=1078 x=223 y=417 width=47 height=30 xoffset=0 yoffset=31 xadvance=40 page=1 chnl=0 +char id=1080 x=810 y=417 width=40 height=29 xoffset=1 yoffset=32 xadvance=32 page=1 chnl=0 +char id=1082 x=270 y=417 width=32 height=30 xoffset=1 yoffset=31 xadvance=30 page=1 chnl=0 +char id=1083 x=302 y=417 width=40 height=30 xoffset=0 yoffset=32 xadvance=29 page=1 chnl=0 +char id=1084 x=342 y=417 width=48 height=30 xoffset=1 yoffset=32 xadvance=38 page=1 chnl=0 +char id=1085 x=850 y=417 width=40 height=29 xoffset=1 yoffset=32 xadvance=32 page=1 chnl=0 +char id=1087 x=890 y=417 width=40 height=29 xoffset=1 yoffset=32 xadvance=32 page=1 chnl=0 +char id=1090 x=930 y=417 width=30 height=29 xoffset=4 yoffset=32 xadvance=25 page=1 chnl=0 +char id=1091 x=528 y=173 width=41 height=43 xoffset=-1 yoffset=32 xadvance=28 page=1 chnl=0 +char id=1093 x=960 y=417 width=33 height=29 xoffset=1 yoffset=32 xadvance=29 page=1 chnl=0 +char id=1094 x=424 y=343 width=40 height=37 xoffset=1 yoffset=32 xadvance=32 page=1 chnl=0 +char id=1095 x=0 y=447 width=36 height=29 xoffset=5 yoffset=32 xadvance=30 page=1 chnl=0 +char id=1096 x=36 y=447 width=56 height=29 xoffset=1 yoffset=32 xadvance=46 page=1 chnl=0 +char id=1097 x=464 y=343 width=56 height=37 xoffset=1 yoffset=32 xadvance=46 page=1 chnl=0 +char id=1098 x=993 y=417 width=29 height=29 xoffset=4 yoffset=32 xadvance=30 page=1 chnl=0 +char id=1099 x=92 y=447 width=48 height=29 xoffset=1 yoffset=32 xadvance=38 page=1 chnl=0 +char id=1100 x=140 y=447 width=27 height=29 xoffset=1 yoffset=32 xadvance=26 page=1 chnl=0 +char id=1103 x=167 y=447 width=40 height=29 xoffset=0 yoffset=32 xadvance=29 page=1 chnl=0 +char id=1105 x=569 y=173 width=42 height=43 xoffset=5 yoffset=19 xadvance=26 page=1 chnl=0 +char id=1109 x=999 y=343 width=24 height=31 xoffset=1 yoffset=31 xadvance=20 page=1 chnl=0 +char id=1113 x=390 y=417 width=44 height=30 xoffset=0 yoffset=32 xadvance=41 page=1 chnl=0 +char id=1114 x=207 y=447 width=45 height=29 xoffset=1 yoffset=32 xadvance=44 page=1 chnl=0 +char id=1119 x=187 y=343 width=40 height=38 xoffset=1 yoffset=32 xadvance=32 page=1 chnl=0 +char id=1121 x=401 y=382 width=42 height=31 xoffset=3 yoffset=31 xadvance=41 page=1 chnl=0 +char id=1122 x=611 y=173 width=42 height=43 xoffset=5 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1125 x=443 y=382 width=48 height=31 xoffset=0 yoffset=31 xadvance=39 page=1 chnl=0 +char id=1127 x=252 y=447 width=41 height=29 xoffset=0 yoffset=32 xadvance=39 page=1 chnl=0 +char id=1129 x=293 y=447 width=57 height=29 xoffset=0 yoffset=32 xadvance=55 page=1 chnl=0 +char id=1130 x=653 y=173 width=60 height=43 xoffset=0 yoffset=18 xadvance=58 page=1 chnl=0 +char id=1131 x=350 y=447 width=42 height=29 xoffset=0 yoffset=32 xadvance=40 page=1 chnl=0 +char id=1132 x=713 y=173 width=82 height=43 xoffset=0 yoffset=18 xadvance=80 page=1 chnl=0 +char id=1133 x=392 y=447 width=58 height=29 xoffset=0 yoffset=32 xadvance=56 page=1 chnl=0 +char id=1136 x=795 y=173 width=60 height=43 xoffset=7 yoffset=18 xadvance=54 page=1 chnl=0 +char id=1139 x=491 y=382 width=32 height=31 xoffset=3 yoffset=31 xadvance=29 page=1 chnl=0 +char id=1141 x=523 y=382 width=39 height=31 xoffset=5 yoffset=31 xadvance=33 page=1 chnl=0 +char id=1147 x=0 y=382 width=39 height=35 xoffset=3 yoffset=29 xadvance=37 page=1 chnl=0 +char id=1151 x=646 y=259 width=45 height=42 xoffset=3 yoffset=20 xadvance=41 page=1 chnl=0 +char id=1153 x=113 y=302 width=29 height=41 xoffset=3 yoffset=31 xadvance=25 page=1 chnl=0 +char id=1154 x=881 y=447 width=18 height=22 xoffset=-1 yoffset=53 xadvance=13 page=1 chnl=0 +char id=1155 x=665 y=476 width=42 height=10 xoffset=-15 yoffset=19 xadvance=-2 page=1 chnl=0 +char id=1156 x=487 y=476 width=56 height=12 xoffset=-23 yoffset=17 xadvance=-2 page=1 chnl=0 +char id=1157 x=543 y=476 width=28 height=12 xoffset=-9 yoffset=17 xadvance=-2 page=1 chnl=0 +char id=1158 x=571 y=476 width=28 height=12 xoffset=-9 yoffset=17 xadvance=-2 page=1 chnl=0 +char id=1159 x=382 y=476 width=68 height=14 xoffset=-23 yoffset=7 xadvance=-2 page=1 chnl=0 +char id=1164 x=855 y=173 width=37 height=43 xoffset=0 yoffset=18 xadvance=34 page=1 chnl=0 +char id=1165 x=450 y=447 width=28 height=29 xoffset=0 yoffset=32 xadvance=26 page=1 chnl=0 +char id=1166 x=892 y=173 width=44 height=43 xoffset=1 yoffset=18 xadvance=34 page=1 chnl=0 +char id=1167 x=0 y=0 width=38 height=44 xoffset=-2 yoffset=31 xadvance=31 page=1 chnl=0 +char id=1169 x=39 y=382 width=35 height=35 xoffset=1 yoffset=26 xadvance=23 page=1 chnl=0 +char id=1170 x=936 y=173 width=47 height=43 xoffset=0 yoffset=18 xadvance=36 page=1 chnl=0 +char id=1171 x=478 y=447 width=31 height=29 xoffset=1 yoffset=32 xadvance=23 page=1 chnl=0 +char id=1173 x=983 y=173 width=29 height=43 xoffset=1 yoffset=32 xadvance=28 page=1 chnl=0 +char id=1175 x=227 y=343 width=44 height=38 xoffset=1 yoffset=31 xadvance=42 page=1 chnl=0 +char id=1177 x=142 y=302 width=27 height=41 xoffset=1 yoffset=31 xadvance=24 page=1 chnl=0 +char id=1179 x=271 y=343 width=32 height=38 xoffset=1 yoffset=31 xadvance=31 page=1 chnl=0 +char id=1180 x=0 y=216 width=50 height=43 xoffset=1 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1181 x=434 y=417 width=34 height=30 xoffset=1 yoffset=31 xadvance=32 page=1 chnl=0 +char id=1182 x=50 y=216 width=47 height=43 xoffset=1 yoffset=18 xadvance=41 page=1 chnl=0 +char id=1183 x=468 y=417 width=32 height=30 xoffset=1 yoffset=31 xadvance=30 page=1 chnl=0 +char id=1184 x=97 y=216 width=51 height=43 xoffset=6 yoffset=18 xadvance=50 page=1 chnl=0 +char id=1185 x=500 y=417 width=34 height=30 xoffset=4 yoffset=31 xadvance=35 page=1 chnl=0 +char id=1187 x=520 y=343 width=40 height=37 xoffset=1 yoffset=32 xadvance=32 page=1 chnl=0 +char id=1188 x=148 y=216 width=70 height=43 xoffset=1 yoffset=18 xadvance=58 page=1 chnl=0 +char id=1189 x=509 y=447 width=48 height=29 xoffset=1 yoffset=32 xadvance=40 page=1 chnl=0 +char id=1191 x=218 y=216 width=45 height=43 xoffset=1 yoffset=32 xadvance=44 page=1 chnl=0 +char id=1193 x=562 y=382 width=32 height=31 xoffset=3 yoffset=31 xadvance=31 page=1 chnl=0 +char id=1195 x=169 y=302 width=29 height=41 xoffset=3 yoffset=31 xadvance=25 page=1 chnl=0 +char id=1197 x=769 y=343 width=32 height=36 xoffset=4 yoffset=32 xadvance=27 page=1 chnl=0 +char id=1198 x=263 y=216 width=51 height=43 xoffset=8 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1199 x=314 y=216 width=40 height=43 xoffset=5 yoffset=32 xadvance=34 page=1 chnl=0 +char id=1200 x=354 y=216 width=51 height=43 xoffset=8 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1201 x=405 y=216 width=41 height=43 xoffset=4 yoffset=32 xadvance=34 page=1 chnl=0 +char id=1203 x=560 y=343 width=32 height=37 xoffset=1 yoffset=32 xadvance=31 page=1 chnl=0 +char id=1205 x=801 y=343 width=49 height=36 xoffset=4 yoffset=32 xadvance=42 page=1 chnl=0 +char id=1207 x=592 y=343 width=36 height=37 xoffset=5 yoffset=32 xadvance=30 page=1 chnl=0 +char id=1208 x=446 y=216 width=51 height=43 xoffset=8 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1209 x=557 y=447 width=37 height=29 xoffset=5 yoffset=32 xadvance=33 page=1 chnl=0 +char id=1210 x=497 y=216 width=42 height=43 xoffset=1 yoffset=18 xadvance=42 page=1 chnl=0 +char id=1211 x=38 y=0 width=32 height=44 xoffset=0 yoffset=17 xadvance=31 page=1 chnl=0 +char id=1213 x=291 y=382 width=34 height=33 xoffset=5 yoffset=29 xadvance=33 page=1 chnl=0 +char id=1215 x=198 y=302 width=34 height=41 xoffset=5 yoffset=29 xadvance=33 page=1 chnl=0 +char id=1216 x=539 y=216 width=33 height=43 xoffset=1 yoffset=18 xadvance=19 page=1 chnl=0 +char id=1218 x=70 y=0 width=47 height=44 xoffset=0 yoffset=17 xadvance=40 page=1 chnl=0 +char id=1220 x=117 y=0 width=35 height=44 xoffset=1 yoffset=31 xadvance=27 page=1 chnl=0 +char id=1222 x=963 y=302 width=40 height=39 xoffset=0 yoffset=32 xadvance=29 page=1 chnl=0 +char id=1224 x=572 y=216 width=38 height=43 xoffset=1 yoffset=32 xadvance=30 page=1 chnl=0 +char id=1226 x=570 y=302 width=43 height=40 xoffset=1 yoffset=31 xadvance=33 page=1 chnl=0 +char id=1228 x=850 y=343 width=36 height=36 xoffset=5 yoffset=32 xadvance=30 page=1 chnl=0 +char id=1230 x=0 y=343 width=48 height=39 xoffset=1 yoffset=32 xadvance=38 page=1 chnl=0 +char id=1231 x=610 y=216 width=47 height=43 xoffset=1 yoffset=18 xadvance=20 page=1 chnl=0 +char id=1235 x=232 y=302 width=42 height=41 xoffset=3 yoffset=21 xadvance=26 page=1 chnl=0 +char id=1236 x=657 y=216 width=64 height=43 xoffset=0 yoffset=18 xadvance=55 page=1 chnl=0 +char id=1237 x=594 y=382 width=42 height=31 xoffset=2 yoffset=31 xadvance=38 page=1 chnl=0 +char id=1241 x=636 y=382 width=28 height=31 xoffset=0 yoffset=31 xadvance=26 page=1 chnl=0 +char id=1243 x=274 y=302 width=46 height=41 xoffset=1 yoffset=21 xadvance=26 page=1 chnl=0 +char id=1245 x=48 y=343 width=47 height=39 xoffset=0 yoffset=22 xadvance=40 page=1 chnl=0 +char id=1247 x=320 y=302 width=44 height=41 xoffset=1 yoffset=21 xadvance=24 page=1 chnl=0 +char id=1248 x=152 y=0 width=41 height=44 xoffset=2 yoffset=18 xadvance=32 page=1 chnl=0 +char id=1249 x=534 y=417 width=26 height=30 xoffset=2 yoffset=32 xadvance=21 page=1 chnl=0 +char id=1251 x=303 y=343 width=44 height=38 xoffset=1 yoffset=23 xadvance=32 page=1 chnl=0 +char id=1253 x=613 y=302 width=44 height=40 xoffset=1 yoffset=21 xadvance=32 page=1 chnl=0 +char id=1255 x=364 y=302 width=43 height=41 xoffset=5 yoffset=21 xadvance=29 page=1 chnl=0 +char id=1257 x=664 y=382 width=32 height=31 xoffset=3 yoffset=31 xadvance=29 page=1 chnl=0 +char id=1259 x=657 y=302 width=43 height=40 xoffset=3 yoffset=22 xadvance=29 page=1 chnl=0 +char id=1261 x=407 y=302 width=42 height=41 xoffset=1 yoffset=21 xadvance=26 page=1 chnl=0 +char id=1269 x=700 y=302 width=42 height=40 xoffset=5 yoffset=21 xadvance=30 page=1 chnl=0 +char id=1271 x=886 y=343 width=31 height=36 xoffset=1 yoffset=32 xadvance=23 page=1 chnl=0 +char id=1273 x=742 y=302 width=48 height=40 xoffset=1 yoffset=21 xadvance=38 page=1 chnl=0 +char id=1275 x=193 y=0 width=31 height=44 xoffset=1 yoffset=32 xadvance=23 page=1 chnl=0 +char id=1277 x=721 y=216 width=37 height=43 xoffset=0 yoffset=32 xadvance=26 page=1 chnl=0 +char id=1278 x=758 y=216 width=57 height=43 xoffset=0 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1279 x=594 y=447 width=33 height=29 xoffset=0 yoffset=32 xadvance=30 page=1 chnl=0 +char id=1280 x=815 y=216 width=47 height=43 xoffset=2 yoffset=18 xadvance=34 page=1 chnl=0 +char id=1282 x=862 y=216 width=61 height=43 xoffset=2 yoffset=18 xadvance=56 page=1 chnl=0 +char id=1287 x=95 y=343 width=26 height=39 xoffset=4 yoffset=31 xadvance=28 page=1 chnl=0 +char id=1288 x=224 y=0 width=65 height=44 xoffset=2 yoffset=18 xadvance=60 page=1 chnl=0 +char id=1290 x=289 y=0 width=68 height=44 xoffset=1 yoffset=18 xadvance=60 page=1 chnl=0 +char id=1291 x=325 y=382 width=45 height=33 xoffset=0 yoffset=31 xadvance=42 page=1 chnl=0 +char id=1293 x=696 y=382 width=28 height=31 xoffset=3 yoffset=31 xadvance=26 page=1 chnl=0 +char id=1294 x=357 y=0 width=47 height=44 xoffset=6 yoffset=18 xadvance=44 page=1 chnl=0 +char id=1295 x=370 y=382 width=31 height=33 xoffset=4 yoffset=31 xadvance=30 page=1 chnl=0 +char id=1297 x=724 y=382 width=29 height=31 xoffset=2 yoffset=31 xadvance=24 page=1 chnl=0 +char id=1299 x=923 y=216 width=40 height=43 xoffset=0 yoffset=32 xadvance=29 page=1 chnl=0 +char id=1300 x=404 y=0 width=73 height=44 xoffset=1 yoffset=18 xadvance=59 page=1 chnl=0 +char id=1301 x=560 y=417 width=44 height=30 xoffset=0 yoffset=32 xadvance=39 page=1 chnl=0 +char id=1302 x=0 y=259 width=64 height=43 xoffset=0 yoffset=18 xadvance=51 page=1 chnl=0 +char id=1303 x=477 y=0 width=51 height=44 xoffset=-2 yoffset=31 xadvance=43 page=1 chnl=0 +char id=1304 x=64 y=259 width=66 height=43 xoffset=1 yoffset=18 xadvance=60 page=1 chnl=0 +char id=1305 x=753 y=382 width=51 height=31 xoffset=0 yoffset=31 xadvance=46 page=1 chnl=0 +char id=1307 x=528 y=0 width=30 height=44 xoffset=3 yoffset=31 xadvance=30 page=1 chnl=0 +char id=1308 x=558 y=0 width=67 height=44 xoffset=7 yoffset=18 xadvance=59 page=1 chnl=0 +char id=1309 x=604 y=417 width=48 height=30 xoffset=5 yoffset=32 xadvance=42 page=1 chnl=0 +char id=1310 x=963 y=216 width=47 height=43 xoffset=1 yoffset=18 xadvance=41 page=1 chnl=0 +char id=1311 x=652 y=417 width=32 height=30 xoffset=1 yoffset=31 xadvance=30 page=1 chnl=0 +char id=1313 x=130 y=259 width=46 height=43 xoffset=0 yoffset=32 xadvance=43 page=1 chnl=0 +char id=1315 x=176 y=259 width=47 height=43 xoffset=1 yoffset=32 xadvance=45 page=1 chnl=0 +char id=8210 x=817 y=476 width=35 height=5 xoffset=2 yoffset=44 xadvance=30 page=1 chnl=0 +char id=8211 x=817 y=476 width=35 height=5 xoffset=2 yoffset=44 xadvance=30 page=1 chnl=0 +char id=8212 x=852 y=476 width=67 height=5 xoffset=2 yoffset=44 xadvance=62 page=1 chnl=0 +char id=8213 x=852 y=476 width=67 height=5 xoffset=2 yoffset=44 xadvance=62 page=1 chnl=0 +char id=8214 x=1004 y=44 width=18 height=41 xoffset=4 yoffset=25 xadvance=17 page=1 chnl=0 +char id=8215 x=599 y=476 width=24 height=11 xoffset=1 yoffset=63 xadvance=29 page=1 chnl=0 +char id=8216 x=1005 y=447 width=12 height=17 xoffset=9 yoffset=17 xadvance=14 page=1 chnl=0 +char id=8217 x=183 y=476 width=14 height=17 xoffset=9 yoffset=17 xadvance=14 page=1 chnl=0 +char id=8219 x=197 y=476 width=14 height=17 xoffset=9 yoffset=17 xadvance=14 page=1 chnl=0 +char id=8220 x=211 y=476 width=24 height=17 xoffset=9 yoffset=17 xadvance=26 page=1 chnl=0 +char id=8221 x=235 y=476 width=26 height=17 xoffset=9 yoffset=17 xadvance=26 page=1 chnl=0 +char id=8222 x=287 y=476 width=22 height=16 xoffset=3 yoffset=54 xadvance=26 page=1 chnl=0 +char id=8223 x=261 y=476 width=26 height=17 xoffset=9 yoffset=17 xadvance=26 page=1 chnl=0 +char id=8226 x=143 y=476 width=20 height=18 xoffset=6 yoffset=31 xadvance=20 page=1 chnl=0 +char id=8230 x=707 y=476 width=49 height=8 xoffset=8 yoffset=54 xadvance=62 page=1 chnl=0 +char id=8242 x=0 y=476 width=22 height=19 xoffset=7 yoffset=13 xadvance=14 page=1 chnl=0 +char id=8243 x=22 y=476 width=36 height=19 xoffset=7 yoffset=13 xadvance=24 page=1 chnl=0 +char id=8244 x=58 y=476 width=47 height=19 xoffset=7 yoffset=13 xadvance=37 page=1 chnl=0 +char id=8249 x=814 y=447 width=20 height=25 xoffset=3 yoffset=34 xadvance=14 page=1 chnl=0 +char id=8250 x=834 y=447 width=18 height=25 xoffset=1 yoffset=34 xadvance=14 page=1 chnl=0 +char id=8254 x=982 y=476 width=39 height=4 xoffset=6 yoffset=22 xadvance=30 page=1 chnl=0 +char id=8355 x=223 y=259 width=49 height=43 xoffset=0 yoffset=18 xadvance=34 page=1 chnl=0 +char id=8358 x=625 y=0 width=59 height=44 xoffset=0 yoffset=18 xadvance=44 page=1 chnl=0 +char id=8359 x=684 y=0 width=63 height=44 xoffset=0 yoffset=18 xadvance=58 page=1 chnl=0 +char id=8360 x=747 y=0 width=65 height=44 xoffset=1 yoffset=18 xadvance=64 page=1 chnl=0 +char id=8361 x=812 y=0 width=61 height=44 xoffset=4 yoffset=18 xadvance=50 page=1 chnl=0 +char id=8365 x=272 y=259 width=53 height=43 xoffset=2 yoffset=18 xadvance=44 page=1 chnl=0 +char id=8366 x=325 y=259 width=44 height=43 xoffset=6 yoffset=18 xadvance=37 page=1 chnl=0 +char id=8369 x=369 y=259 width=48 height=43 xoffset=1 yoffset=18 xadvance=36 page=1 chnl=0 +char id=8371 x=873 y=0 width=46 height=44 xoffset=0 yoffset=17 xadvance=44 page=1 chnl=0 +char id=11360 x=417 y=259 width=42 height=43 xoffset=0 yoffset=18 xadvance=37 page=1 chnl=0 +char id=11361 x=919 y=0 width=27 height=44 xoffset=1 yoffset=17 xadvance=17 page=1 chnl=0 +char id=11362 x=459 y=259 width=42 height=43 xoffset=1 yoffset=18 xadvance=38 page=1 chnl=0 +char id=11363 x=501 y=259 width=44 height=43 xoffset=1 yoffset=18 xadvance=34 page=1 chnl=0 +char id=11365 x=628 y=343 width=35 height=37 xoffset=3 yoffset=27 xadvance=27 page=1 chnl=0 +char id=11366 x=691 y=259 width=28 height=42 xoffset=0 yoffset=24 xadvance=17 page=1 chnl=0 +char id=11372 x=663 y=343 width=32 height=37 xoffset=1 yoffset=32 xadvance=26 page=1 chnl=0 +char id=11377 x=804 y=382 width=43 height=31 xoffset=6 yoffset=31 xadvance=40 page=1 chnl=0 +char id=11379 x=847 y=382 width=58 height=31 xoffset=6 yoffset=31 xadvance=54 page=1 chnl=0 +char id=11380 x=74 y=382 width=35 height=35 xoffset=4 yoffset=27 xadvance=30 page=1 chnl=0 +char id=11381 x=545 y=259 width=38 height=43 xoffset=1 yoffset=18 xadvance=34 page=1 chnl=0 +char id=11382 x=627 y=447 width=26 height=29 xoffset=0 yoffset=32 xadvance=23 page=1 chnl=0 +char id=11383 x=905 y=382 width=38 height=31 xoffset=4 yoffset=31 xadvance=39 page=1 chnl=0 +kernings count=27010 +kerning first=107 second=100 amount=-3 +kerning first=8216 second=257 amount=-3 +kerning first=85 second=46 amount=-5 +kerning first=199 second=230 amount=-2 +kerning first=369 second=367 amount=-1 +kerning first=222 second=327 amount=-2 +kerning first=338 second=346 amount=-2 +kerning first=8220 second=380 amount=-1 +kerning first=280 second=65 amount=-2 +kerning first=354 second=66 amount=-1 +kerning first=200 second=67 amount=-1 +kerning first=208 second=68 amount=-2 +kerning first=45 second=69 amount=-5 +kerning first=352 second=70 amount=-3 +kerning first=370 second=71 amount=-1 +kerning first=346 second=72 amount=-3 +kerning first=67 second=73 amount=-3 +kerning first=356 second=74 amount=-4 +kerning first=374 second=75 amount=-1 +kerning first=198 second=76 amount=-2 +kerning first=350 second=77 amount=-3 +kerning first=336 second=78 amount=-2 +kerning first=304 second=79 amount=-2 +kerning first=262 second=80 amount=-3 +kerning first=370 second=81 amount=-1 +kerning first=81 second=82 amount=-2 +kerning first=290 second=83 amount=-2 +kerning first=83 second=84 amount=-3 +kerning first=8222 second=85 amount=-3 +kerning first=336 second=86 amount=-2 +kerning first=274 second=87 amount=-1 +kerning first=286 second=89 amount=-3 +kerning first=286 second=90 amount=-2 +kerning first=274 second=97 amount=-1 +kerning first=366 second=99 amount=-2 +kerning first=382 second=100 amount=-1 +kerning first=220 second=101 amount=-2 +kerning first=83 second=102 amount=-3 +kerning first=246 second=103 amount=-2 +kerning first=194 second=104 amount=-2 +kerning first=354 second=105 amount=-2 +kerning first=113 second=108 amount=-2 +kerning first=316 second=109 amount=-1 +kerning first=364 second=110 amount=-2 +kerning first=350 second=111 amount=-1 +kerning first=75 second=112 amount=-1 +kerning first=260 second=113 amount=-1 +kerning first=352 second=114 amount=-2 +kerning first=376 second=115 amount=-3 +kerning first=77 second=119 amount=-2 +kerning first=346 second=120 amount=-3 +kerning first=382 second=121 amount=-2 +kerning first=362 second=122 amount=-3 +kerning first=220 second=379 amount=-1 +kerning first=83 second=275 amount=-1 +kerning first=346 second=187 amount=-1 +kerning first=87 second=192 amount=-6 +kerning first=282 second=193 amount=-2 +kerning first=282 second=194 amount=-2 +kerning first=45 second=195 amount=-4 +kerning first=202 second=196 amount=-2 +kerning first=81 second=197 amount=-4 +kerning first=339 second=365 amount=-2 +kerning first=194 second=199 amount=-3 +kerning first=332 second=200 amount=-2 +kerning first=79 second=201 amount=-2 +kerning first=216 second=202 amount=-2 +kerning first=212 second=203 amount=-2 +kerning first=290 second=204 amount=-1 +kerning first=336 second=205 amount=-2 +kerning first=374 second=206 amount=-1 +kerning first=334 second=207 amount=-2 +kerning first=79 second=209 amount=-2 +kerning first=258 second=210 amount=-3 +kerning first=362 second=211 amount=-1 +kerning first=362 second=212 amount=-1 +kerning first=198 second=213 amount=-1 +kerning first=262 second=214 amount=-3 +kerning first=354 second=216 amount=-3 +kerning first=208 second=217 amount=-1 +kerning first=288 second=218 amount=-1 +kerning first=8250 second=219 amount=-4 +kerning first=350 second=220 amount=-3 +kerning first=350 second=221 amount=-3 +kerning first=8216 second=223 amount=-1 +kerning first=250 second=224 amount=-1 +kerning first=220 second=225 amount=-3 +kerning first=366 second=226 amount=-3 +kerning first=111 second=227 amount=-1 +kerning first=89 second=228 amount=-4 +kerning first=304 second=229 amount=-2 +kerning first=364 second=231 amount=-2 +kerning first=250 second=232 amount=-1 +kerning first=366 second=233 amount=-2 +kerning first=87 second=235 amount=-3 +kerning first=87 second=237 amount=-2 +kerning first=218 second=240 amount=-2 +kerning first=8220 second=241 amount=-1 +kerning first=75 second=242 amount=-2 +kerning first=250 second=244 amount=-1 +kerning first=67 second=245 amount=-2 +kerning first=73 second=246 amount=-2 +kerning first=69 second=249 amount=-2 +kerning first=378 second=250 amount=-2 +kerning first=368 second=251 amount=-1 +kerning first=8218 second=252 amount=-1 +kerning first=370 second=253 amount=-1 +kerning first=113 second=254 amount=-2 +kerning first=370 second=255 amount=-1 +kerning first=278 second=256 amount=-2 +kerning first=107 second=257 amount=-2 +kerning first=232 second=259 amount=-2 +kerning first=352 second=260 amount=-4 +kerning first=324 second=261 amount=-1 +kerning first=65 second=262 amount=-3 +kerning first=119 second=263 amount=-3 +kerning first=204 second=264 amount=-2 +kerning first=356 second=266 amount=-3 +kerning first=310 second=267 amount=-2 +kerning first=85 second=268 amount=-1 +kerning first=192 second=269 amount=-1 +kerning first=8250 second=270 amount=-5 +kerning first=226 second=271 amount=-1 +kerning first=107 second=273 amount=-3 +kerning first=67 second=275 amount=-2 +kerning first=117 second=277 amount=-1 +kerning first=79 second=278 amount=-2 +kerning first=105 second=279 amount=-1 +kerning first=198 second=280 amount=-2 +kerning first=204 second=281 amount=-2 +kerning first=352 second=282 amount=-3 +kerning first=264 second=284 amount=-3 +kerning first=67 second=286 amount=-3 +kerning first=8216 second=287 amount=-4 +kerning first=65 second=288 amount=-3 +kerning first=364 second=290 amount=-1 +kerning first=45 second=291 amount=-3 +kerning first=207 second=249 amount=-1 +kerning first=286 second=296 amount=-1 +kerning first=212 second=298 amount=-2 +kerning first=85 second=223 amount=-2 +kerning first=280 second=302 amount=-2 +kerning first=111 second=303 amount=-1 +kerning first=268 second=304 amount=-3 +kerning first=45 second=307 amount=-1 +kerning first=196 second=311 amount=-2 +kerning first=336 second=313 amount=-2 +kerning first=282 second=314 amount=-1 +kerning first=286 second=315 amount=-1 +kerning first=278 second=317 amount=-2 +kerning first=246 second=318 amount=-2 +kerning first=304 second=8249 amount=-4 +kerning first=352 second=323 amount=-3 +kerning first=220 second=324 amount=-2 +kerning first=71 second=325 amount=-1 +kerning first=8216 second=326 amount=-1 +kerning first=71 second=327 amount=-1 +kerning first=362 second=328 amount=-2 +kerning first=278 second=330 amount=-2 +kerning first=248 second=331 amount=-1 +kerning first=202 second=332 amount=-1 +kerning first=220 second=333 amount=-2 +kerning first=256 second=334 amount=-3 +kerning first=368 second=335 amount=-2 +kerning first=274 second=336 amount=-1 +kerning first=376 second=338 amount=-3 +kerning first=380 second=339 amount=-1 +kerning first=242 second=289 amount=-2 +kerning first=278 second=344 amount=-2 +kerning first=346 second=345 amount=-2 +kerning first=350 second=346 amount=-1 +kerning first=354 second=350 amount=-3 +kerning first=226 second=351 amount=-1 +kerning first=262 second=352 amount=-3 +kerning first=107 second=353 amount=-2 +kerning first=214 second=354 amount=-2 +kerning first=83 second=355 amount=-1 +kerning first=8220 second=356 amount=-1 +kerning first=45 second=357 amount=-1 +kerning first=278 second=289 amount=-3 +kerning first=236 second=361 amount=-1 +kerning first=334 second=362 amount=-1 +kerning first=350 second=364 amount=-3 +kerning first=97 second=365 amount=-1 +kerning first=338 second=366 amount=-2 +kerning first=362 second=367 amount=-1 +kerning first=262 second=368 amount=-2 +kerning first=368 second=369 amount=-1 +kerning first=332 second=370 amount=-1 +kerning first=74 second=268 amount=-2 +kerning first=310 second=374 amount=-2 +kerning first=105 second=375 amount=-3 +kerning first=370 second=377 amount=-1 +kerning first=210 second=378 amount=-2 +kerning first=374 second=379 amount=-3 +kerning first=288 second=380 amount=-1 +kerning first=374 second=381 amount=-3 +kerning first=240 second=382 amount=-2 +kerning first=244 second=237 amount=-1 +kerning first=208 second=379 amount=-2 +kerning first=272 second=218 amount=-1 +kerning first=350 second=289 amount=-3 +kerning first=217 second=244 amount=-2 +kerning first=208 second=237 amount=-1 +kerning first=377 second=282 amount=-1 +kerning first=253 second=244 amount=-3 +kerning first=225 second=263 amount=-1 +kerning first=200 second=218 amount=-2 +kerning first=289 second=244 amount=-2 +kerning first=87 second=199 amount=-3 +kerning first=261 second=263 amount=-1 +kerning first=103 second=237 amount=-2 +kerning first=112 second=371 amount=-1 +kerning first=223 second=380 amount=-2 +kerning first=67 second=237 amount=-1 +kerning first=1038 second=1117 amount=-4 +kerning first=75 second=8249 amount=-4 +kerning first=347 second=353 amount=-3 +kerning first=68 second=225 amount=-1 +kerning first=346 second=365 amount=-1 +kerning first=1027 second=1060 amount=-1 +kerning first=219 second=228 amount=-3 +kerning first=195 second=334 amount=-3 +kerning first=364 second=379 amount=-1 +kerning first=104 second=225 amount=-1 +kerning first=84 second=263 amount=-3 +kerning first=310 second=365 amount=-3 +kerning first=279 second=361 amount=-2 +kerning first=350 second=324 amount=-1 +kerning first=120 second=263 amount=-2 +kerning first=274 second=365 amount=-2 +kerning first=266 second=346 amount=-3 +kerning first=1043 second=1098 amount=-1 +kerning first=121 second=251 amount=-1 +kerning first=65 second=289 amount=-3 +kerning first=85 second=251 amount=-1 +kerning first=298 second=275 amount=-2 +kerning first=194 second=346 amount=-3 +kerning first=198 second=270 amount=-2 +kerning first=101 second=289 amount=-3 +kerning first=226 second=251 amount=-1 +kerning first=81 second=327 amount=-2 +kerning first=1063 second=1060 amount=-1 +kerning first=1051 second=1117 amount=-1 +kerning first=1071 second=1079 amount=-1 +kerning first=1079 second=1098 amount=-1 +kerning first=311 second=353 amount=-2 +kerning first=207 second=277 amount=-2 +kerning first=356 second=72 amount=-1 +kerning first=197 second=254 amount=-2 +kerning first=194 second=374 amount=-6 +kerning first=275 second=121 amount=-2 +kerning first=298 second=251 amount=-2 +kerning first=115 second=351 amount=-3 +kerning first=379 second=202 amount=-1 +kerning first=233 second=254 amount=-2 +kerning first=262 second=251 amount=-2 +kerning first=279 second=277 amount=-1 +kerning first=256 second=351 amount=-2 +kerning first=201 second=206 amount=-2 +kerning first=269 second=254 amount=-2 +kerning first=370 second=251 amount=-1 +kerning first=313 second=69 amount=-2 +kerning first=339 second=112 amount=-1 +kerning first=1105 second=1103 amount=-2 +kerning first=98 second=121 amount=-3 +kerning first=1045 second=1074 amount=-1 +kerning first=70 second=100 amount=-1 +kerning first=67 second=209 amount=-3 +kerning first=102 second=277 amount=-1 +kerning first=102 second=230 amount=-2 +kerning first=66 second=277 amount=-1 +kerning first=365 second=367 amount=-1 +kerning first=101 second=261 amount=-2 +kerning first=257 second=367 amount=-1 +kerning first=192 second=199 amount=-3 +kerning first=1024 second=1096 amount=-1 +kerning first=374 second=114 amount=-1 +kerning first=201 second=117 amount=-2 +kerning first=381 second=206 amount=-1 +kerning first=82 second=83 amount=-3 +kerning first=206 second=261 amount=-2 +kerning first=221 second=79 amount=-3 +kerning first=264 second=199 amount=-3 +kerning first=242 second=261 amount=-1 +kerning first=221 second=367 amount=-2 +kerning first=71 second=72 amount=-1 +kerning first=286 second=76 amount=-1 +kerning first=73 second=336 amount=-2 +kerning first=187 second=83 amount=-3 +kerning first=328 second=351 amount=-1 +kerning first=381 second=117 amount=-3 +kerning first=212 second=72 amount=-2 +kerning first=338 second=374 amount=-1 +kerning first=1057 second=1050 amount=-1 +kerning first=230 second=114 amount=-1 +kerning first=116 second=367 amount=-1 +kerning first=8222 second=356 amount=-6 +kerning first=214 second=76 amount=-2 +kerning first=339 second=255 amount=-2 +kerning first=284 second=72 amount=-1 +kerning first=266 second=374 amount=-1 +kerning first=347 second=121 amount=-3 +kerning first=364 second=351 amount=-2 +kerning first=211 second=344 amount=-2 +kerning first=311 second=121 amount=-1 +kerning first=376 second=193 amount=-6 +kerning first=317 second=318 amount=-2 +kerning first=287 second=240 amount=-2 +kerning first=266 second=86 amount=-1 +kerning first=365 second=107 amount=-2 +kerning first=1051 second=1089 amount=-1 +kerning first=323 second=240 amount=-2 +kerning first=8249 second=89 amount=-3 +kerning first=325 second=216 amount=-2 +kerning first=194 second=86 amount=-6 +kerning first=1052 second=1080 amount=-1 +kerning first=1027 second=1088 amount=-2 +kerning first=192 second=171 amount=-4 +kerning first=251 second=240 amount=-1 +kerning first=1063 second=1088 amount=-1 +kerning first=278 second=261 amount=-1 +kerning first=76 second=216 amount=-1 +kerning first=335 second=382 amount=-2 +kerning first=314 second=261 amount=-2 +kerning first=113 second=46 amount=-2 +kerning first=371 second=382 amount=-1 +kerning first=382 second=337 amount=-1 +kerning first=350 second=261 amount=-2 +kerning first=371 second=223 amount=-1 +kerning first=338 second=86 amount=-1 +kerning first=217 second=216 amount=-1 +kerning first=257 second=107 amount=-1 +kerning first=310 second=337 amount=-2 +kerning first=8217 second=380 amount=-1 +kerning first=280 second=209 amount=-2 +kerning first=1006 second=995 amount=-1 +kerning first=1006 second=996 amount=-1 +kerning first=1006 second=1005 amount=-1 +kerning first=1006 second=1006 amount=-1 +kerning first=208 second=209 amount=-2 +kerning first=81 second=221 amount=-2 +kerning first=1054 second=1024 amount=-1 +kerning first=1054 second=1025 amount=-1 +kerning first=1054 second=1030 amount=-1 +kerning first=1054 second=1031 amount=-1 +kerning first=1040 second=1033 amount=-1 +kerning first=1054 second=1034 amount=-1 +kerning first=1054 second=1036 amount=-1 +kerning first=1054 second=1037 amount=-1 +kerning first=1036 second=1038 amount=-3 +kerning first=1054 second=1039 amount=-1 +kerning first=1038 second=1040 amount=-6 +kerning first=228 second=171 amount=-2 +kerning first=1054 second=1042 amount=-1 +kerning first=199 second=202 amount=-3 +kerning first=1054 second=1045 amount=-1 +kerning first=1040 second=1047 amount=-2 +kerning first=1054 second=1048 amount=-1 +kerning first=1054 second=1049 amount=-1 +kerning first=1040 second=1051 amount=-1 +kerning first=1054 second=1052 amount=-1 +kerning first=1042 second=1053 amount=-2 +kerning first=1048 second=1054 amount=-1 +kerning first=1054 second=1055 amount=-1 +kerning first=1054 second=1056 amount=-1 +kerning first=264 second=171 amount=-4 +kerning first=1040 second=1058 amount=-3 +kerning first=1040 second=1059 amount=-4 +kerning first=1040 second=1060 amount=-3 +kerning first=1054 second=1062 amount=-1 +kerning first=1060 second=1063 amount=-2 +kerning first=1054 second=1064 amount=-1 +kerning first=1054 second=1065 amount=-1 +kerning first=1054 second=1067 amount=-1 +kerning first=1054 second=1070 amount=-1 +kerning first=1096 second=1072 amount=-1 +kerning first=1040 second=1073 amount=-2 +kerning first=356 second=100 amount=-3 +kerning first=1038 second=1075 amount=-4 +kerning first=1038 second=1076 amount=-5 +kerning first=1040 second=1077 amount=-2 +kerning first=1038 second=1078 amount=-3 +kerning first=352 second=209 amount=-3 +kerning first=1024 second=1080 amount=-1 +kerning first=1048 second=1081 amount=-1 +kerning first=1038 second=1083 amount=-5 +kerning first=1038 second=1084 amount=-4 +kerning first=1038 second=1085 amount=-4 +kerning first=1040 second=1086 amount=-2 +kerning first=1092 second=1087 amount=-1 +kerning first=1038 second=1088 amount=-4 +kerning first=1118 second=1089 amount=-2 +kerning first=1040 second=1090 amount=-2 +kerning first=1040 second=1091 amount=-3 +kerning first=74 second=240 amount=-2 +kerning first=1038 second=1093 amount=-3 +kerning first=1038 second=1094 amount=-4 +kerning first=1062 second=1095 amount=-3 +kerning first=1038 second=1096 amount=-4 +kerning first=1038 second=1097 amount=-4 +kerning first=1038 second=1100 amount=-4 +kerning first=8216 second=229 amount=-3 +kerning first=1038 second=1102 amount=-4 +kerning first=1038 second=1103 amount=-5 +kerning first=264 second=227 amount=-2 +kerning first=1040 second=1105 amount=-2 +kerning first=1074 second=1107 amount=-1 +kerning first=377 second=226 amount=-1 +kerning first=286 second=252 amount=-1 +kerning first=196 second=350 amount=-3 +kerning first=39 second=1111 amount=3 +kerning first=1038 second=1113 amount=-5 +kerning first=1038 second=1114 amount=-4 +kerning first=84 second=207 amount=-1 +kerning first=1038 second=1116 amount=-4 +kerning first=1114 second=1117 amount=-1 +kerning first=1116 second=1118 amount=-2 +kerning first=1038 second=1119 amount=-4 +kerning first=228 second=227 amount=-1 +kerning first=287 second=335 amount=-2 +kerning first=291 second=339 amount=-2 +kerning first=1025 second=1056 amount=-1 +kerning first=1047 second=1050 amount=-2 +kerning first=336 second=380 amount=-2 +kerning first=380 second=246 amount=-1 +kerning first=109 second=252 amount=-1 +kerning first=102 second=305 amount=-1 +kerning first=211 second=201 amount=-2 +kerning first=79 second=274 amount=-2 +kerning first=344 second=246 amount=-3 +kerning first=356 second=44 amount=-5 +kerning first=376 second=350 amount=-3 +kerning first=336 second=227 amount=-1 +kerning first=1108 second=1095 amount=-1 +kerning first=268 second=350 amount=-3 +kerning first=1050 second=1101 amount=-1 +kerning first=250 second=252 amount=-1 +kerning first=304 second=350 amount=-2 +kerning first=1100 second=1076 amount=-2 +kerning first=327 second=103 amount=-3 +kerning first=279 second=305 amount=-2 +kerning first=369 second=291 amount=-3 +kerning first=268 second=90 amount=-2 +kerning first=210 second=356 amount=-2 +kerning first=291 second=103 amount=-2 +kerning first=243 second=305 amount=-1 +kerning first=227 second=382 amount=-1 +kerning first=333 second=291 amount=-2 +kerning first=350 second=317 amount=-3 +kerning first=376 second=90 amount=-3 +kerning first=255 second=103 amount=-3 +kerning first=351 second=305 amount=-2 +kerning first=218 second=260 amount=-4 +kerning first=263 second=382 amount=-2 +kerning first=221 second=323 amount=-1 +kerning first=8250 second=253 amount=-3 +kerning first=8217 second=273 amount=-3 +kerning first=315 second=305 amount=-2 +kerning first=261 second=337 amount=-1 +kerning first=261 second=291 amount=-1 +kerning first=211 second=84 amount=-2 +kerning first=233 second=226 amount=-2 +kerning first=290 second=260 amount=-3 +kerning first=225 second=291 amount=-2 +kerning first=97 second=337 amount=-1 +kerning first=315 second=45 amount=-1 +kerning first=114 second=103 amount=-2 +kerning first=269 second=226 amount=-2 +kerning first=78 second=103 amount=-3 +kerning first=305 second=226 amount=-1 +kerning first=362 second=260 amount=-4 +kerning first=86 second=382 amount=-3 +kerning first=120 second=291 amount=-2 +kerning first=122 second=382 amount=-2 +kerning first=84 second=291 amount=-4 +kerning first=351 second=45 amount=-1 +kerning first=354 second=213 amount=-3 +kerning first=240 second=109 amount=-1 +kerning first=77 second=115 amount=-2 +kerning first=201 second=89 amount=-1 +kerning first=99 second=109 amount=-2 +kerning first=323 second=212 amount=-2 +kerning first=218 second=115 amount=-2 +kerning first=254 second=115 amount=-2 +kerning first=377 second=78 amount=-1 +kerning first=113 second=115 amount=-2 +kerning first=66 second=45 amount=-3 +kerning first=363 second=103 amount=-3 +kerning first=315 second=193 amount=-2 +kerning first=248 second=44 amount=-3 +kerning first=362 second=115 amount=-2 +kerning first=212 second=44 amount=-3 +kerning first=381 second=89 amount=-2 +kerning first=364 second=268 amount=-1 +kerning first=362 second=232 amount=-2 +kerning first=69 second=213 amount=-1 +kerning first=284 second=44 amount=-3 +kerning first=326 second=115 amount=-1 +kerning first=69 second=353 amount=-1 +kerning first=368 second=303 amount=-2 +kerning first=71 second=44 amount=-3 +kerning first=113 second=232 amount=-1 +kerning first=8250 second=105 amount=-1 +kerning first=282 second=213 amount=-1 +kerning first=286 second=104 amount=-1 +kerning first=218 second=232 amount=-2 +kerning first=250 second=104 amount=-2 +kerning first=105 second=328 amount=-2 +kerning first=83 second=303 amount=-3 +kerning first=229 second=98 amount=-1 +kerning first=8250 second=77 amount=-5 +kerning first=376 second=118 amount=-3 +kerning first=69 second=328 amount=-1 +kerning first=119 second=303 amount=-2 +kerning first=337 second=98 amount=-1 +kerning first=324 second=8249 amount=-3 +kerning first=214 second=280 amount=-2 +kerning first=1092 second=1094 amount=-1 +kerning first=315 second=73 amount=-2 +kerning first=88 second=98 amount=-1 +kerning first=275 second=228 amount=-2 +kerning first=268 second=118 amount=-1 +kerning first=280 second=120 amount=-1 +kerning first=310 second=291 amount=-2 +kerning first=260 second=303 amount=-1 +kerning first=286 second=280 amount=-1 +kerning first=232 second=118 amount=-2 +kerning first=246 second=328 amount=-1 +kerning first=84 second=235 amount=-3 +kerning first=344 second=44 amount=-2 +kerning first=296 second=303 amount=-1 +kerning first=193 second=98 amount=-2 +kerning first=339 second=8221 amount=-2 +kerning first=352 second=120 amount=-3 +kerning first=120 second=235 amount=-2 +kerning first=304 second=118 amount=-2 +kerning first=224 second=303 amount=-1 +kerning first=87 second=370 amount=-1 +kerning first=257 second=283 amount=-1 +kerning first=196 second=118 amount=-3 +kerning first=354 second=328 amount=-3 +kerning first=221 second=283 amount=-3 +kerning first=192 second=370 amount=-3 +kerning first=1071 second=1107 amount=-1 +kerning first=316 second=261 amount=-2 +kerning first=1064 second=1104 amount=-1 +kerning first=316 second=371 amount=-2 +kerning first=282 second=241 amount=-1 +kerning first=8220 second=352 amount=-1 +kerning first=264 second=370 amount=-2 +kerning first=66 second=193 amount=-5 +kerning first=246 second=241 amount=-1 +kerning first=354 second=241 amount=-3 +kerning first=365 second=283 amount=-1 +kerning first=336 second=370 amount=-1 +kerning first=203 second=325 amount=-2 +kerning first=195 second=362 amount=-3 +kerning first=196 second=266 amount=-3 +kerning first=105 second=241 amount=-2 +kerning first=106 second=112 amount=-1 +kerning first=379 second=286 amount=-1 +kerning first=69 second=241 amount=-1 +kerning first=365 second=311 amount=-2 +kerning first=70 second=112 amount=-1 +kerning first=199 second=314 amount=-1 +kerning first=1104 second=1087 amount=-1 +kerning first=1046 second=1090 amount=-3 +kerning first=111 second=8221 amount=-2 +kerning first=199 second=286 amount=-3 +kerning first=246 second=355 amount=-1 +kerning first=257 second=311 amount=-1 +kerning first=368 second=331 amount=-2 +kerning first=120 second=307 amount=-1 +kerning first=235 second=314 amount=-3 +kerning first=75 second=8221 amount=-2 +kerning first=282 second=356 amount=-1 +kerning first=307 second=314 amount=-2 +kerning first=315 second=221 amount=-3 +kerning first=204 second=81 amount=-2 +kerning first=203 second=210 amount=-1 +kerning first=225 second=235 amount=-1 +kerning first=101 second=345 amount=-1 +kerning first=324 second=8221 amount=-4 +kerning first=8220 second=324 amount=-1 +kerning first=1064 second=1096 amount=-1 +kerning first=88 second=339 amount=-2 +kerning first=216 second=8221 amount=-2 +kerning first=116 second=224 amount=-1 +kerning first=377 second=250 amount=-3 +kerning first=119 second=331 amount=-2 +kerning first=252 second=8221 amount=-3 +kerning first=80 second=224 amount=-1 +kerning first=73 second=252 amount=-1 +kerning first=228 second=255 amount=-3 +kerning first=242 second=345 amount=-1 +kerning first=171 second=221 amount=-3 +kerning first=221 second=224 amount=-4 +kerning first=192 second=255 amount=-3 +kerning first=369 second=235 amount=-1 +kerning first=354 second=269 amount=-3 +kerning first=283 second=112 amount=-1 +kerning first=376 second=266 amount=-3 +kerning first=1082 second=1090 amount=-1 +kerning first=83 second=331 amount=-1 +kerning first=66 second=221 amount=-3 +kerning first=268 second=266 amount=-3 +kerning first=87 second=255 amount=-3 +kerning first=350 second=345 amount=-2 +kerning first=257 second=224 amount=-1 +kerning first=211 second=112 amount=-1 +kerning first=304 second=266 amount=-2 +kerning first=305 second=8249 amount=-3 +kerning first=365 second=224 amount=-1 +kerning first=263 second=326 amount=-2 +kerning first=274 second=250 amount=-2 +kerning first=97 second=281 amount=-1 +kerning first=65 second=8220 amount=-5 +kerning first=76 second=289 amount=-3 +kerning first=261 second=347 amount=-1 +kerning first=116 second=255 amount=-1 +kerning first=261 second=318 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=376 second=69 amount=-1 +kerning first=335 second=326 amount=-1 +kerning first=346 second=250 amount=-1 +kerning first=225 second=347 amount=-1 +kerning first=102 second=101 amount=-1 +kerning first=78 second=365 amount=-2 +kerning first=371 second=326 amount=-2 +kerning first=84 second=378 amount=-3 +kerning first=201 second=118 amount=-1 +kerning first=207 second=101 amount=-2 +kerning first=267 second=273 amount=-1 +kerning first=112 second=328 amount=-1 +kerning first=324 second=371 amount=-1 +kerning first=230 second=231 amount=-1 +kerning first=84 second=347 amount=-3 +kerning first=76 second=328 amount=-1 +kerning first=202 second=250 amount=-2 +kerning first=330 second=281 amount=-2 +kerning first=279 second=101 amount=-1 +kerning first=255 second=307 amount=-2 +kerning first=227 second=326 amount=-1 +kerning first=1048 second=1097 amount=-1 +kerning first=111 second=371 amount=-1 +kerning first=211 second=257 amount=-1 +kerning first=369 second=378 amount=-2 +kerning first=1082 second=1118 amount=-2 +kerning first=87 second=283 amount=-3 +kerning first=289 second=328 amount=-1 +kerning first=333 second=378 amount=-2 +kerning first=1105 second=1076 amount=-2 +kerning first=253 second=328 amount=-2 +kerning first=197 second=366 amount=-3 +kerning first=106 second=257 amount=-2 +kerning first=365 second=8220 amount=-3 +kerning first=70 second=288 amount=-1 +kerning first=217 second=328 amount=-2 +kerning first=252 second=371 amount=-1 +kerning first=272 second=302 amount=-2 +kerning first=225 second=378 amount=-1 +kerning first=289 second=101 amount=-2 +kerning first=1057 second=1073 amount=-1 +kerning first=264 second=283 amount=-2 +kerning first=70 second=257 amount=-2 +kerning first=257 second=8220 amount=-3 +kerning first=1093 second=1073 amount=-1 +kerning first=228 second=283 amount=-1 +kerning first=200 second=302 amount=-2 +kerning first=369 second=347 amount=-2 +kerning first=1065 second=1092 amount=-1 +kerning first=192 second=283 amount=-1 +kerning first=67 second=352 amount=-3 +kerning first=333 second=347 amount=-2 +kerning first=1024 second=1063 amount=-2 +kerning first=117 second=243 amount=-1 +kerning first=218 second=338 amount=-1 +kerning first=290 second=87 amount=-3 +kerning first=8217 second=361 amount=-1 +kerning first=305 second=106 amount=-2 +kerning first=44 second=8220 amount=-5 +kerning first=258 second=243 amount=-1 +kerning first=307 second=113 amount=-1 +kerning first=380 second=333 amount=-1 +kerning first=105 second=253 amount=-3 +kerning first=288 second=80 amount=-1 +kerning first=1092 second=1116 amount=-1 +kerning first=344 second=333 amount=-3 +kerning first=235 second=113 amount=-1 +kerning first=376 second=210 amount=-3 +kerning first=1039 second=1090 amount=-1 +kerning first=199 second=345 amount=-1 +kerning first=199 second=113 amount=-2 +kerning first=235 second=345 amount=-1 +kerning first=304 second=210 amount=-2 +kerning first=89 second=262 amount=-3 +kerning first=291 second=307 amount=-2 +kerning first=103 second=120 amount=-2 +kerning first=268 second=210 amount=-3 +kerning first=193 second=87 amount=-6 +kerning first=307 second=345 amount=-1 +kerning first=377 second=198 amount=-1 +kerning first=194 second=262 amount=-3 +kerning first=363 second=307 amount=-2 +kerning first=208 second=120 amount=-1 +kerning first=196 second=210 amount=-3 +kerning first=75 second=368 amount=-2 +kerning first=244 second=120 amount=-3 +kerning first=365 second=255 amount=-3 +kerning first=288 second=368 amount=-1 +kerning first=266 second=262 amount=-3 +kerning first=1092 second=1113 amount=-2 +kerning first=302 second=262 amount=-2 +kerning first=310 second=281 amount=-2 +kerning first=8250 second=225 amount=-1 +kerning first=330 second=243 amount=-2 +kerning first=1056 second=1113 amount=-2 +kerning first=216 second=368 amount=-1 +kerning first=338 second=262 amount=-1 +kerning first=346 second=281 amount=-1 +kerning first=257 second=255 amount=-3 +kerning first=366 second=243 amount=-2 +kerning first=374 second=262 amount=-3 +kerning first=86 second=323 amount=-1 +kerning first=221 second=255 amount=-3 +kerning first=219 second=279 amount=-2 +kerning first=106 second=229 amount=-2 +kerning first=119 second=99 amount=-3 +kerning first=365 second=227 amount=-1 +kerning first=352 second=324 amount=-1 +kerning first=272 second=274 amount=-2 +kerning first=83 second=99 amount=-1 +kerning first=89 second=234 amount=-3 +kerning first=291 second=279 amount=-2 +kerning first=1057 second=1101 amount=-1 +kerning first=224 second=99 amount=-1 +kerning first=255 second=279 amount=-3 +kerning first=70 second=229 amount=-2 +kerning first=200 second=274 amount=-2 +kerning first=1093 second=1101 amount=-1 +kerning first=257 second=227 amount=-1 +kerning first=283 second=229 amount=-2 +kerning first=228 second=259 amount=-1 +kerning first=291 second=44 amount=-3 +kerning first=296 second=99 amount=-2 +kerning first=1031 second=1099 amount=-1 +kerning first=377 second=369 amount=-3 +kerning first=202 second=278 amount=-2 +kerning first=255 second=44 amount=-5 +kerning first=260 second=99 amount=-1 +kerning first=211 second=229 amount=-1 +kerning first=108 second=233 amount=-1 +kerning first=363 second=44 amount=-2 +kerning first=368 second=99 amount=-2 +kerning first=78 second=279 amount=-2 +kerning first=280 second=324 amount=-1 +kerning first=72 second=233 amount=-2 +kerning first=66 second=104 amount=-3 +kerning first=371 second=99 amount=-3 +kerning first=254 second=382 amount=-2 +kerning first=371 second=267 amount=-3 +kerning first=374 second=234 amount=-3 +kerning first=206 second=122 amount=-1 +kerning first=346 second=278 amount=-3 +kerning first=370 second=223 amount=-2 +kerning first=355 second=229 amount=-1 +kerning first=1049 second=1114 amount=-1 +kerning first=249 second=233 amount=-1 +kerning first=212 second=330 amount=-2 +kerning first=194 second=234 amount=-1 +kerning first=233 second=106 amount=-2 +kerning first=368 second=114 amount=-1 +kerning first=221 second=227 amount=-5 +kerning first=230 second=234 amount=-1 +kerning first=327 second=279 amount=-2 +kerning first=269 second=106 amount=-2 +kerning first=266 second=234 amount=-2 +kerning first=379 second=317 amount=-1 +kerning first=67 second=296 amount=-3 +kerning first=217 second=81 amount=-1 +kerning first=116 second=227 amount=-1 +kerning first=302 second=234 amount=-2 +kerning first=70 second=281 amount=-1 +kerning first=80 second=227 amount=-1 +kerning first=86 second=66 amount=-1 +kerning first=106 second=316 amount=-2 +kerning first=321 second=264 amount=-1 +kerning first=366 second=212 amount=-1 +kerning first=344 second=361 amount=-2 +kerning first=199 second=110 amount=-1 +kerning first=83 second=219 amount=-3 +kerning first=86 second=267 amount=-3 +kerning first=235 second=110 amount=-2 +kerning first=1092 second=1085 amount=-1 +kerning first=330 second=212 amount=-2 +kerning first=8250 second=194 amount=-4 +kerning first=380 second=361 amount=-2 +kerning first=69 second=65 amount=-2 +kerning first=214 second=364 amount=-1 +kerning first=283 second=316 amount=-3 +kerning first=307 second=110 amount=-2 +kerning first=355 second=257 amount=-1 +kerning first=227 second=267 amount=-1 +kerning first=216 second=205 amount=-2 +kerning first=258 second=212 amount=-3 +kerning first=263 second=267 amount=-1 +kerning first=117 second=271 amount=-1 +kerning first=86 second=210 amount=-3 +kerning first=355 second=316 amount=-1 +kerning first=72 second=264 amount=-2 +kerning first=283 second=257 amount=-2 +kerning first=122 second=267 amount=-1 +kerning first=210 second=65 amount=-4 +kerning first=252 second=111 amount=-1 +kerning first=351 second=104 amount=-1 +kerning first=72 second=266 amount=-2 +kerning first=282 second=65 amount=-2 +kerning first=280 second=89 amount=-1 +kerning first=315 second=104 amount=-2 +kerning first=8216 second=109 amount=-1 +kerning first=286 second=364 amount=-1 +kerning first=354 second=65 amount=-6 +kerning first=352 second=89 amount=-3 +kerning first=243 second=104 amount=-1 +kerning first=335 second=8217 amount=-2 +kerning first=200 second=361 amount=-2 +kerning first=213 second=205 amount=-2 +kerning first=382 second=250 amount=-2 +kerning first=321 second=205 amount=-2 +kerning first=208 second=89 amount=-2 +kerning first=310 second=46 amount=-1 +kerning first=277 second=97 amount=-2 +kerning first=263 second=122 amount=-2 +kerning first=346 second=46 amount=-4 +kerning first=376 second=121 amount=-3 +kerning first=296 second=71 amount=-2 +kerning first=224 second=102 amount=-1 +kerning first=352 second=117 amount=-1 +kerning first=227 second=122 amount=-1 +kerning first=382 second=46 amount=-1 +kerning first=205 second=97 amount=-2 +kerning first=260 second=102 amount=-1 +kerning first=304 second=121 amount=-2 +kerning first=368 second=71 amount=-1 +kerning first=8216 second=84 amount=-1 +kerning first=66 second=76 amount=-4 +kerning first=346 second=225 amount=-2 +kerning first=202 second=46 amount=-1 +kerning first=232 second=121 amount=-2 +kerning first=382 second=225 amount=-1 +kerning first=371 second=122 amount=-1 +kerning first=196 second=121 amount=-3 +kerning first=260 second=71 amount=-3 +kerning first=335 second=122 amount=-2 +kerning first=274 second=46 amount=-1 +kerning first=67 second=377 amount=-2 +kerning first=280 second=377 amount=-1 +kerning first=1059 second=1108 amount=-4 +kerning first=67 second=117 amount=-2 +kerning first=90 second=90 amount=-1 +kerning first=277 second=245 amount=-1 +kerning first=366 second=240 amount=-2 +kerning first=208 second=377 amount=-2 +kerning first=97 second=46 amount=-1 +kerning first=78 second=332 amount=-2 +kerning first=332 second=219 amount=-1 +kerning first=205 second=245 amount=-2 +kerning first=374 second=290 amount=-3 +kerning first=122 second=122 amount=-2 +kerning first=87 second=267 amount=-3 +kerning first=219 second=332 amount=-1 +kerning first=244 second=117 amount=-1 +kerning first=288 second=200 amount=-1 +kerning first=86 second=122 amount=-3 +kerning first=78 second=363 amount=-2 +kerning first=260 second=219 amount=-3 +kerning first=368 second=102 amount=-1 +kerning first=1079 second=1097 amount=-1 +kerning first=315 second=76 amount=-2 +kerning first=352 second=377 amount=-1 +kerning first=89 second=287 amount=-4 +kerning first=316 second=117 amount=-2 +kerning first=216 second=200 amount=-2 +kerning first=350 second=381 amount=-1 +kerning first=280 second=117 amount=-2 +kerning first=231 second=44 amount=-3 +kerning first=377 second=310 amount=-1 +kerning first=194 second=287 amount=-3 +kerning first=302 second=83 amount=-2 +kerning first=205 second=214 amount=-2 +kerning first=374 second=259 amount=-5 +kerning first=327 second=332 amount=-2 +kerning first=313 second=214 amount=-1 +kerning first=1037 second=1114 amount=-1 +kerning first=100 second=242 amount=-1 +kerning first=266 second=287 amount=-3 +kerning first=1073 second=1114 amount=-1 +kerning first=230 second=287 amount=-3 +kerning first=266 second=259 amount=-2 +kerning first=205 second=242 amount=-2 +kerning first=338 second=287 amount=-3 +kerning first=330 second=240 amount=-2 +kerning first=230 second=259 amount=-2 +kerning first=302 second=287 amount=-3 +kerning first=86 second=298 amount=-1 +kerning first=338 second=259 amount=-1 +kerning first=277 second=242 amount=-1 +kerning first=258 second=240 amount=-1 +kerning first=302 second=259 amount=-2 +kerning first=374 second=287 amount=-4 +kerning first=314 second=8217 amount=-3 +kerning first=71 second=8220 amount=-1 +kerning first=89 second=259 amount=-5 +kerning first=200 second=330 amount=-2 +kerning first=233 second=369 amount=-2 +kerning first=368 second=8249 amount=-5 +kerning first=87 second=8250 amount=-3 +kerning first=346 second=77 amount=-3 +kerning first=216 second=197 amount=-4 +kerning first=346 second=194 amount=-4 +kerning first=333 second=375 amount=-3 +kerning first=305 second=369 amount=-1 +kerning first=103 second=324 amount=-1 +kerning first=249 second=116 amount=-1 +kerning first=8217 second=357 amount=-1 +kerning first=288 second=197 amount=-3 +kerning first=100 second=97 amount=-1 +kerning first=274 second=194 amount=-2 +kerning first=86 second=119 amount=-3 +kerning first=336 second=89 amount=-2 +kerning first=122 second=119 amount=-2 +kerning first=253 second=110 amount=-2 +kerning first=272 second=330 amount=-2 +kerning first=202 second=194 amount=-2 +kerning first=227 second=119 amount=-3 +kerning first=288 second=228 amount=-1 +kerning first=310 second=253 amount=-3 +kerning first=84 second=375 amount=-3 +kerning first=266 second=203 amount=-3 +kerning first=252 second=228 amount=-1 +kerning first=253 second=234 amount=-3 +kerning first=1098 second=1100 amount=-1 +kerning first=346 second=253 amount=-2 +kerning first=327 second=248 amount=-2 +kerning first=216 second=228 amount=-1 +kerning first=382 second=253 amount=-2 +kerning first=335 second=119 amount=-2 +kerning first=67 second=380 amount=-2 +kerning first=202 second=74 amount=-1 +kerning first=381 second=197 amount=-1 +kerning first=78 second=100 amount=-2 +kerning first=377 second=223 amount=-1 +kerning first=371 second=119 amount=-3 +kerning first=255 second=248 amount=-3 +kerning first=111 second=228 amount=-1 +kerning first=366 second=268 amount=-1 +kerning first=45 second=355 amount=-1 +kerning first=261 second=375 amount=-2 +kerning first=89 second=203 amount=-1 +kerning first=274 second=74 amount=-1 +kerning first=75 second=228 amount=-1 +kerning first=330 second=268 amount=-2 +kerning first=8250 second=250 amount=-1 +kerning first=225 second=375 amount=-3 +kerning first=269 second=223 amount=-1 +kerning first=219 second=248 amount=-2 +kerning first=346 second=74 amount=-2 +kerning first=233 second=223 amount=-1 +kerning first=1081 second=1105 amount=-1 +kerning first=282 second=68 amount=-2 +kerning first=100 second=273 amount=-1 +kerning first=210 second=68 amount=-2 +kerning first=379 second=113 amount=-1 +kerning first=375 second=103 amount=-3 +kerning first=117 second=355 amount=-1 +kerning first=216 second=80 amount=-2 +kerning first=90 second=214 amount=-1 +kerning first=258 second=268 amount=-3 +kerning first=374 second=203 amount=-1 +kerning first=354 second=68 amount=-1 +kerning first=1059 second=1088 amount=-4 +kerning first=211 second=313 amount=-2 +kerning first=338 second=203 amount=-2 +kerning first=252 second=108 amount=-2 +kerning first=219 second=363 amount=-1 +kerning first=86 second=270 amount=-1 +kerning first=288 second=315 amount=-1 +kerning first=1087 second=1086 amount=-1 +kerning first=8250 second=365 amount=-1 +kerning first=266 second=290 amount=-3 +kerning first=255 second=363 amount=-1 +kerning first=1051 second=1086 amount=-1 +kerning first=302 second=290 amount=-2 +kerning first=324 second=108 amount=-1 +kerning first=291 second=363 amount=-1 +kerning first=338 second=290 amount=-1 +kerning first=288 second=108 amount=-1 +kerning first=327 second=363 amount=-2 +kerning first=255 second=335 amount=-3 +kerning first=194 second=318 amount=-2 +kerning first=346 second=105 amount=-3 +kerning first=291 second=335 amount=-2 +kerning first=199 second=85 amount=-2 +kerning first=230 second=318 amount=-3 +kerning first=382 second=105 amount=-1 +kerning first=100 second=245 amount=-1 +kerning first=327 second=335 amount=-2 +kerning first=8216 second=112 amount=-1 +kerning first=274 second=105 amount=-1 +kerning first=216 second=315 amount=-2 +kerning first=363 second=335 amount=-1 +kerning first=353 second=237 amount=-2 +kerning first=1070 second=1063 amount=-2 +kerning first=78 second=335 amount=-2 +kerning first=280 second=380 amount=-2 +kerning first=338 second=318 amount=-1 +kerning first=202 second=105 amount=-1 +kerning first=202 second=225 amount=-1 +kerning first=316 second=380 amount=-1 +kerning first=99 second=45 amount=-2 +kerning first=374 second=231 amount=-3 +kerning first=8216 second=89 amount=-1 +kerning first=81 second=296 amount=-2 +kerning first=282 second=198 amount=-2 +kerning first=377 second=338 amount=-1 +kerning first=97 second=105 amount=-1 +kerning first=266 second=231 amount=-2 +kerning first=274 second=225 amount=-1 +kerning first=219 second=335 amount=-2 +kerning first=45 second=296 amount=-5 +kerning first=302 second=231 amount=-2 +kerning first=310 second=225 amount=-1 +kerning first=362 second=192 amount=-4 +kerning first=103 second=380 amount=-3 +kerning first=75 second=108 amount=-1 +kerning first=257 second=8217 amount=-3 +kerning first=74 second=194 amount=-5 +kerning first=212 second=8220 amount=-2 +kerning first=208 second=380 amount=-2 +kerning first=97 second=225 amount=-1 +kerning first=222 second=296 amount=-2 +kerning first=111 second=108 amount=-2 +kerning first=197 second=338 amount=-3 +kerning first=8250 second=278 amount=-5 +kerning first=252 second=225 amount=-1 +kerning first=376 second=325 amount=-1 +kerning first=353 second=228 amount=-1 +kerning first=288 second=225 amount=-1 +kerning first=77 second=235 amount=-2 +kerning first=8218 second=361 amount=-1 +kerning first=8250 second=80 amount=-5 +kerning first=233 second=251 amount=-2 +kerning first=324 second=225 amount=-1 +kerning first=113 second=235 amount=-1 +kerning first=197 second=251 amount=-3 +kerning first=281 second=228 amount=-2 +kerning first=315 second=280 amount=-2 +kerning first=1105 second=1100 amount=-1 +kerning first=305 second=251 amount=-1 +kerning first=245 second=228 amount=-1 +kerning first=75 second=225 amount=-1 +kerning first=218 second=235 amount=-2 +kerning first=90 second=303 amount=-1 +kerning first=67 second=206 amount=-3 +kerning first=269 second=251 amount=-2 +kerning first=378 second=273 amount=-1 +kerning first=209 second=228 amount=-2 +kerning first=111 second=225 amount=-1 +kerning first=208 second=206 amount=-2 +kerning first=377 second=251 amount=-3 +kerning first=1060 second=1093 amount=-1 +kerning first=313 second=270 amount=-2 +kerning first=69 second=171 amount=-2 +kerning first=104 second=228 amount=-1 +kerning first=216 second=225 amount=-1 +kerning first=1024 second=1093 amount=-2 +kerning first=258 second=98 amount=-2 +kerning first=280 second=206 amount=-2 +kerning first=88 second=355 amount=-1 +kerning first=68 second=228 amount=-1 +kerning first=234 second=273 amount=-1 +kerning first=1047 second=1025 amount=-2 +kerning first=100 second=45 amount=-2 +kerning first=352 second=206 amount=-3 +kerning first=274 second=102 amount=-2 +kerning first=332 second=46 amount=-3 +kerning first=368 second=46 amount=-5 +kerning first=1090 second=1113 amount=-3 +kerning first=83 second=46 amount=-4 +kerning first=89 second=83 amount=-3 +kerning first=376 second=263 amount=-3 +kerning first=268 second=325 amount=-3 +kerning first=66 second=280 amount=-4 +kerning first=119 second=46 amount=-5 +kerning first=193 second=355 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=1114 second=1107 amount=-1 +kerning first=194 second=83 amount=-3 +kerning first=99 second=8249 amount=-2 +kerning first=102 second=121 amount=-1 +kerning first=224 second=46 amount=-1 +kerning first=1036 second=1098 amount=-3 +kerning first=311 second=363 amount=-1 +kerning first=8217 second=248 amount=-3 +kerning first=187 second=318 amount=-1 +kerning first=266 second=83 amount=-3 +kerning first=356 second=363 amount=-2 +kerning first=75 second=289 amount=-2 +kerning first=240 second=112 amount=-1 +kerning first=74 second=67 amount=-2 +kerning first=223 second=318 amount=-2 +kerning first=200 second=221 amount=-1 +kerning first=281 second=8217 amount=-2 +kerning first=204 second=112 amount=-1 +kerning first=259 second=318 amount=-1 +kerning first=338 second=83 amount=-2 +kerning first=295 second=318 amount=-1 +kerning first=374 second=83 amount=-3 +kerning first=346 second=102 amount=-3 +kerning first=99 second=112 amount=-1 +kerning first=331 second=318 amount=-1 +kerning first=382 second=102 amount=-2 +kerning first=367 second=318 amount=-2 +kerning first=115 second=46 amount=-2 +kerning first=286 second=311 amount=-1 +kerning first=84 second=266 amount=-3 +kerning first=250 second=311 amount=-2 +kerning first=202 second=84 amount=-1 +kerning first=339 second=105 amount=-2 +kerning first=1105 second=1114 amount=-1 +kerning first=362 second=235 amount=-2 +kerning first=45 second=98 amount=-1 +kerning first=76 second=304 amount=-2 +kerning first=375 second=105 amount=-2 +kerning first=324 second=259 amount=-1 +kerning first=267 second=105 amount=-2 +kerning first=117 second=98 amount=-2 +kerning first=303 second=105 amount=-1 +kerning first=323 second=67 amount=-2 +kerning first=70 second=81 amount=-1 +kerning first=195 second=105 amount=-1 +kerning first=216 second=259 amount=-1 +kerning first=231 second=105 amount=-2 +kerning first=344 second=221 amount=-3 +kerning first=72 second=262 amount=-2 +kerning first=90 second=105 amount=-1 +kerning first=86 second=214 amount=-3 +kerning first=288 second=259 amount=-1 +kerning first=252 second=259 amount=-1 +kerning first=272 second=221 amount=-2 +kerning first=277 second=100 amount=-1 +kerning first=80 second=240 amount=-1 +kerning first=286 second=249 amount=-1 +kerning first=264 second=230 amount=-2 +kerning first=1050 second=1098 amount=-3 +kerning first=1054 second=1050 amount=-1 +kerning first=335 second=104 amount=-1 +kerning first=98 second=351 amount=-2 +kerning first=201 second=346 amount=-2 +kerning first=250 second=249 amount=-1 +kerning first=228 second=230 amount=-1 +kerning first=84 second=204 amount=-1 +kerning first=100 second=100 amount=-1 +kerning first=117 second=375 amount=-3 +kerning first=203 second=350 amount=-2 +kerning first=379 second=171 amount=-3 +kerning first=289 second=275 amount=-2 +kerning first=87 second=230 amount=-5 +kerning first=213 second=379 amount=-2 +kerning first=325 second=275 amount=-2 +kerning first=1025 second=1053 amount=-1 +kerning first=205 second=100 amount=-2 +kerning first=73 second=305 amount=-1 +kerning first=321 second=379 amount=-3 +kerning first=217 second=275 amount=-2 +kerning first=1088 second=1102 amount=-1 +kerning first=350 second=267 amount=-1 +kerning first=253 second=275 amount=-3 +kerning first=305 second=102 amount=-1 +kerning first=1113 second=1091 amount=-2 +kerning first=291 second=223 amount=-1 +kerning first=187 second=256 amount=-4 +kerning first=109 second=305 amount=-1 +kerning first=250 second=305 amount=-1 +kerning first=286 second=107 amount=-1 +kerning first=228 second=339 amount=-1 +kerning first=363 second=223 amount=-1 +kerning first=214 second=305 amount=-1 +kerning first=250 second=107 amount=-2 +kerning first=264 second=339 amount=-2 +kerning first=286 second=221 amount=-3 +kerning first=109 second=249 amount=-1 +kerning first=198 second=211 amount=-1 +kerning first=255 second=223 amount=-1 +kerning first=336 second=230 amount=-1 +kerning first=219 second=223 amount=-2 +kerning first=73 second=249 amount=-1 +kerning first=338 second=274 amount=-2 +kerning first=377 second=313 amount=-1 +kerning first=351 second=8217 amount=-2 +kerning first=196 second=263 amount=-1 +kerning first=231 second=365 amount=-2 +kerning first=8217 second=242 amount=-3 +kerning first=118 second=114 amount=-1 +kerning first=232 second=263 amount=-1 +kerning first=195 second=365 amount=-3 +kerning first=379 second=289 amount=-3 +kerning first=1104 second=1084 amount=-1 +kerning first=280 second=268 amount=-1 +kerning first=284 second=192 amount=-3 +kerning first=268 second=263 amount=-2 +kerning first=304 second=263 amount=-2 +kerning first=90 second=365 amount=-3 +kerning first=212 second=192 amount=-4 +kerning first=354 second=353 amount=-3 +kerning first=381 second=237 amount=-1 +kerning first=243 second=8217 amount=-2 +kerning first=354 second=244 amount=-3 +kerning first=66 second=218 amount=-3 +kerning first=192 second=339 amount=-1 +kerning first=221 second=199 amount=-3 +kerning first=279 second=8217 amount=-2 +kerning first=67 second=268 amount=-3 +kerning first=204 second=118 amount=-2 +kerning first=315 second=8217 amount=-4 +kerning first=71 second=192 amount=-3 +kerning first=362 second=102 amount=-1 +kerning first=87 second=339 amount=-3 +kerning first=260 second=334 amount=-3 +kerning first=1059 second=1105 amount=-4 +kerning first=1091 second=1072 amount=-2 +kerning first=246 second=353 amount=-2 +kerning first=201 second=237 amount=-1 +kerning first=334 second=282 amount=-2 +kerning first=374 second=315 amount=-1 +kerning first=282 second=353 amount=-1 +kerning first=1048 second=1114 amount=-1 +kerning first=338 second=315 amount=-2 +kerning first=296 second=334 amount=-2 +kerning first=1051 second=1099 amount=-1 +kerning first=262 second=282 amount=-3 +kerning first=85 second=44 amount=-5 +kerning first=375 second=365 amount=-1 +kerning first=199 second=289 amount=-3 +kerning first=89 second=315 amount=-1 +kerning first=1055 second=1072 amount=-1 +kerning first=105 second=353 amount=-2 +kerning first=105 second=244 amount=-1 +kerning first=307 second=289 amount=-3 +kerning first=8250 second=74 amount=-4 +kerning first=1042 second=1051 amount=-1 +kerning first=230 second=371 amount=-2 +kerning first=233 second=257 amount=-2 +kerning first=106 second=232 amount=-1 +kerning first=346 second=339 amount=-1 +kerning first=380 second=277 amount=-1 +kerning first=86 second=351 amount=-3 +kerning first=118 second=345 amount=-1 +kerning first=100 second=326 amount=-1 +kerning first=344 second=277 amount=-3 +kerning first=353 second=8249 amount=-1 +kerning first=350 second=202 amount=-3 +kerning first=90 second=99 amount=-1 +kerning first=355 second=347 amount=-1 +kerning first=284 second=346 amount=-2 +kerning first=206 second=337 amount=-2 +kerning first=231 second=99 amount=-1 +kerning first=70 second=232 amount=-1 +kerning first=207 second=375 amount=-2 +kerning first=278 second=202 amount=-2 +kerning first=236 second=277 amount=-1 +kerning first=195 second=99 amount=-1 +kerning first=283 second=347 amount=-2 +kerning first=317 second=8249 amount=-1 +kerning first=268 second=381 amount=-2 +kerning first=66 second=336 amount=-3 +kerning first=234 second=267 amount=-1 +kerning first=335 second=351 amount=-2 +kerning first=192 second=79 amount=-3 +kerning first=376 second=381 amount=-3 +kerning first=207 second=336 amount=-2 +kerning first=367 second=114 amount=-1 +kerning first=87 second=79 amount=-3 +kerning first=280 second=212 amount=-1 +kerning first=72 second=261 amount=-2 +kerning first=371 second=351 amount=-2 +kerning first=378 second=267 amount=-1 +kerning first=1031 second=1096 amount=-1 +kerning first=198 second=69 amount=-2 +kerning first=286 second=367 amount=-1 +kerning first=314 second=371 amount=-2 +kerning first=1067 second=1096 amount=-1 +kerning first=315 second=336 amount=-1 +kerning first=122 second=351 amount=-2 +kerning first=313 second=80 amount=-2 +kerning first=67 second=212 amount=-3 +kerning first=269 second=257 amount=-2 +kerning first=1024 second=1059 amount=-3 +kerning first=223 second=114 amount=-1 +kerning first=263 second=351 amount=-2 +kerning first=264 second=79 amount=-3 +kerning first=305 second=257 amount=-1 +kerning first=227 second=351 amount=-1 +kerning first=73 second=367 amount=-2 +kerning first=1087 second=1092 amount=-1 +kerning first=218 second=291 amount=-4 +kerning first=109 second=367 amount=-1 +kerning first=378 second=382 amount=-2 +kerning first=1046 second=1059 amount=-3 +kerning first=77 second=291 amount=-3 +kerning first=1062 second=1047 amount=-1 +kerning first=251 second=271 amount=-1 +kerning first=198 second=382 amount=-2 +kerning first=281 second=337 amount=-1 +kerning first=101 second=314 amount=-3 +kerning first=85 second=226 amount=-3 +kerning first=287 second=271 amount=-2 +kerning first=199 second=99 amount=-2 +kerning first=234 second=382 amount=-2 +kerning first=65 second=314 amount=-2 +kerning first=1063 second=1057 amount=-1 +kerning first=86 second=229 amount=-5 +kerning first=121 second=226 amount=-3 +kerning first=213 second=261 amount=-1 +kerning first=209 second=337 amount=-2 +kerning first=1107 second=1104 amount=-1 +kerning first=1027 second=1057 amount=-1 +kerning first=249 second=261 amount=-1 +kerning first=1051 second=1092 amount=-1 +kerning first=1071 second=1104 amount=-1 +kerning first=313 second=326 amount=-1 +kerning first=278 second=314 amount=-1 +kerning first=8218 second=255 amount=-1 +kerning first=81 second=302 amount=-2 +kerning first=242 second=314 amount=-2 +kerning first=229 second=361 amount=-1 +kerning first=379 second=250 amount=-3 +kerning first=307 second=171 amount=-3 +kerning first=350 second=314 amount=-2 +kerning first=338 second=361 amount=-2 +kerning first=46 second=8221 amount=-5 +kerning first=193 second=361 amount=-3 +kerning first=106 second=347 amount=-2 +kerning first=252 second=281 amount=-1 +kerning first=314 second=314 amount=-2 +kerning first=82 second=8221 amount=-5 +kerning first=99 second=316 amount=-3 +kerning first=70 second=347 amount=-2 +kerning first=253 second=269 amount=-3 +kerning first=1057 second=1076 amount=-1 +kerning first=260 second=216 amount=-3 +kerning first=87 second=224 amount=-4 +kerning first=8216 second=198 amount=-8 +kerning first=217 second=269 amount=-2 +kerning first=1114 second=1103 amount=-2 +kerning first=1024 second=1037 amount=-1 +kerning first=296 second=216 amount=-2 +kerning first=241 second=326 amount=-1 +kerning first=325 second=269 amount=-2 +kerning first=1060 second=1037 amount=-1 +kerning first=223 second=8221 amount=-2 +kerning first=337 second=361 amount=-1 +kerning first=240 second=316 amount=-2 +kerning first=277 second=326 amount=-2 +kerning first=75 second=281 amount=-2 +kerning first=289 second=269 amount=-2 +kerning first=199 second=171 amount=-4 +kerning first=368 second=216 amount=-1 +kerning first=116 second=252 amount=-1 +kerning first=264 second=224 amount=-2 +kerning first=107 second=103 amount=-2 +kerning first=76 second=331 amount=-1 +kerning first=228 second=224 amount=-1 +kerning first=272 second=70 amount=-2 +kerning first=71 second=103 amount=-3 +kerning first=221 second=252 amount=-1 +kerning first=367 second=8221 amount=-3 +kerning first=336 second=224 amount=-1 +kerning first=257 second=252 amount=-1 +kerning first=1079 second=1101 amount=-1 +kerning first=321 second=317 amount=-2 +kerning first=235 second=227 amount=-2 +kerning first=1092 second=1075 amount=-1 +kerning first=199 second=227 amount=-2 +kerning first=73 second=101 amount=-2 +kerning first=289 second=44 amount=-3 +kerning first=226 second=226 amount=-1 +kerning first=346 second=362 amount=-3 +kerning first=268 second=207 amount=-3 +kerning first=213 second=317 amount=-2 +kerning first=298 second=226 amount=-2 +kerning first=73 second=45 amount=-4 +kerning first=250 second=101 amount=-1 +kerning first=1043 second=1101 amount=-1 +kerning first=334 second=226 amount=-1 +kerning first=203 second=90 amount=-1 +kerning first=356 second=103 amount=-4 +kerning first=229 second=246 amount=-1 +kerning first=376 second=207 amount=-1 +kerning first=370 second=226 amount=-3 +kerning first=193 second=246 amount=-1 +kerning first=284 second=103 amount=-3 +kerning first=326 second=291 amount=-2 +kerning first=109 second=45 amount=-3 +kerning first=203 second=356 amount=-1 +kerning first=274 second=362 amount=-2 +kerning first=248 second=103 amount=-2 +kerning first=290 second=291 amount=-3 +kerning first=250 second=45 amount=-2 +kerning first=310 second=362 amount=-2 +kerning first=212 second=103 amount=-1 +kerning first=254 second=291 amount=-2 +kerning first=214 second=45 amount=-1 +kerning first=365 second=104 amount=-2 +kerning first=217 second=213 amount=-1 +kerning first=266 second=89 amount=-1 +kerning first=8249 second=86 amount=-3 +kerning first=377 second=109 amount=-1 +kerning first=220 second=338 amount=-1 +kerning first=338 second=89 amount=-1 +kerning first=257 second=104 amount=-1 +kerning first=269 second=109 amount=-2 +kerning first=286 second=193 amount=-3 +kerning first=325 second=213 amount=-2 +kerning first=84 second=115 amount=-3 +kerning first=194 second=89 amount=-6 +kerning first=290 second=84 amount=-3 +kerning first=221 second=370 amount=-1 +kerning first=214 second=193 amount=-4 +kerning first=197 second=234 amount=-1 +kerning first=209 second=8249 amount=-4 +kerning first=267 second=303 amount=-2 +kerning first=225 second=115 amount=-1 +kerning first=379 second=227 amount=-1 +kerning first=303 second=303 amount=-1 +kerning first=261 second=115 amount=-1 +kerning first=104 second=8249 amount=-3 +kerning first=334 second=78 amount=-2 +kerning first=195 second=303 amount=-1 +kerning first=120 second=115 amount=-3 +kerning first=307 second=227 amount=-2 +kerning first=376 second=103 amount=-4 +kerning first=231 second=303 amount=-2 +kerning first=241 second=44 amount=-1 +kerning first=200 second=70 amount=-2 +kerning first=369 second=115 amount=-2 +kerning first=187 second=368 amount=-4 +kerning first=283 second=232 amount=-1 +kerning first=68 second=8249 amount=-1 +kerning first=8217 second=97 amount=-6 +kerning first=339 second=303 amount=-2 +kerning first=277 second=44 amount=-3 +kerning first=82 second=368 amount=-3 +kerning first=76 second=213 amount=-1 +kerning first=375 second=303 amount=-2 +kerning first=333 second=115 amount=-2 +kerning first=287 second=120 amount=-2 +kerning first=304 second=115 amount=-2 +kerning first=198 second=323 amount=-2 +kerning first=226 second=259 amount=-1 +kerning first=68 second=278 amount=-2 +kerning first=110 second=120 amount=-1 +kerning first=200 second=73 amount=-2 +kerning first=369 second=118 amount=-3 +kerning first=377 second=201 amount=-1 +kerning first=225 second=361 amount=-1 +kerning first=1030 second=1080 amount=-1 +kerning first=272 second=73 amount=-2 +kerning first=315 second=70 amount=-2 +kerning first=356 second=248 amount=-3 +kerning first=251 second=120 amount=-2 +kerning first=192 second=85 amount=-3 +kerning first=1102 second=1080 amount=-1 +kerning first=261 second=118 amount=-3 +kerning first=314 second=113 amount=-1 +kerning first=195 second=253 amount=-3 +kerning first=225 second=118 amount=-3 +kerning first=334 second=75 amount=-2 +kerning first=317 second=278 amount=-2 +kerning first=87 second=85 amount=-1 +kerning first=231 second=253 amount=-2 +kerning first=333 second=118 amount=-2 +kerning first=76 second=68 amount=-2 +kerning first=267 second=253 amount=-2 +kerning first=317 second=80 amount=-2 +kerning first=366 second=246 amount=-2 +kerning first=262 second=75 amount=-3 +kerning first=220 second=233 amount=-2 +kerning first=303 second=253 amount=-2 +kerning first=330 second=246 amount=-2 +kerning first=84 second=118 amount=-3 +kerning first=214 second=196 amount=-4 +kerning first=339 second=253 amount=-2 +kerning first=68 second=80 amount=-2 +kerning first=356 second=317 amount=-1 +kerning first=256 second=233 amount=-1 +kerning first=1049 second=1085 amount=-1 +kerning first=286 second=196 amount=-3 +kerning first=120 second=118 amount=-3 +kerning first=364 second=233 amount=-2 +kerning first=298 second=338 amount=-2 +kerning first=307 second=283 amount=-1 +kerning first=118 second=108 amount=-2 +kerning first=262 second=335 amount=-2 +kerning first=262 second=338 amount=-3 +kerning first=82 second=108 amount=-3 +kerning first=298 second=335 amount=-2 +kerning first=235 second=283 amount=-1 +kerning first=223 second=108 amount=-2 +kerning first=347 second=241 amount=-2 +kerning first=368 second=328 amount=-2 +kerning first=101 second=110 amount=-2 +kerning first=201 second=290 amount=-1 +kerning first=199 second=283 amount=-2 +kerning first=187 second=108 amount=-1 +kerning first=370 second=335 amount=-2 +kerning first=80 second=193 amount=-4 +kerning first=1047 second=1038 amount=-3 +kerning first=287 second=380 amount=-3 +kerning first=336 second=85 amount=-1 +kerning first=295 second=108 amount=-1 +kerning first=85 second=335 amount=-2 +kerning first=98 second=241 amount=-1 +kerning first=8250 second=367 amount=-1 +kerning first=85 second=338 amount=-1 +kerning first=323 second=380 amount=-1 +kerning first=259 second=108 amount=-1 +kerning first=121 second=335 amount=-3 +kerning first=242 second=110 amount=-1 +kerning first=379 second=283 amount=-1 +kerning first=264 second=85 amount=-2 +kerning first=264 second=286 amount=-3 +kerning first=367 second=108 amount=-2 +kerning first=203 second=241 amount=-1 +kerning first=76 second=65 amount=-2 +kerning first=278 second=110 amount=-1 +kerning first=331 second=108 amount=-1 +kerning first=226 second=335 amount=-1 +kerning first=314 second=110 amount=-1 +kerning first=110 second=380 amount=-1 +kerning first=192 second=286 amount=-3 +kerning first=350 second=110 amount=-1 +kerning first=217 second=65 amount=-4 +kerning first=87 second=286 amount=-3 +kerning first=289 second=331 amount=-1 +kerning first=221 second=193 amount=-6 +kerning first=251 second=380 amount=-2 +kerning first=232 second=115 amount=-2 +kerning first=337 second=8217 amount=-2 +kerning first=217 second=331 amount=-2 +kerning first=268 second=115 amount=-2 +kerning first=107 second=248 amount=-3 +kerning first=253 second=331 amount=-2 +kerning first=370 second=338 amount=-1 +kerning first=112 second=331 amount=-1 +kerning first=196 second=115 amount=-2 +kerning first=74 second=380 amount=-1 +kerning first=313 second=367 amount=-2 +kerning first=260 second=356 amount=-6 +kerning first=283 second=8250 amount=-2 +kerning first=295 second=371 amount=-1 +kerning first=84 second=210 amount=-3 +kerning first=198 second=326 amount=-1 +kerning first=375 second=250 amount=-1 +kerning first=1064 second=1073 amount=-1 +kerning first=331 second=371 amount=-1 +kerning first=250 second=255 amount=-3 +kerning first=234 second=326 amount=-2 +kerning first=362 second=347 amount=-2 +kerning first=367 second=371 amount=-1 +kerning first=278 second=205 amount=-2 +kerning first=248 second=307 amount=-1 +kerning first=326 second=347 amount=-1 +kerning first=381 second=352 amount=-1 +kerning first=267 second=250 amount=-2 +kerning first=82 second=262 amount=-3 +kerning first=118 second=371 amount=-1 +kerning first=109 second=255 amount=-2 +kerning first=231 second=250 amount=-2 +kerning first=254 second=347 amount=-2 +kerning first=187 second=371 amount=-1 +kerning first=73 second=255 amount=-2 +kerning first=339 second=250 amount=-2 +kerning first=218 second=347 amount=-2 +kerning first=223 second=371 amount=-1 +kerning first=303 second=250 amount=-1 +kerning first=224 second=380 amount=-1 +kerning first=259 second=371 amount=-1 +kerning first=66 second=333 amount=-1 +kerning first=90 second=250 amount=-3 +kerning first=1104 second=1114 amount=-1 +kerning first=232 second=378 amount=-2 +kerning first=119 second=328 amount=-2 +kerning first=295 second=305 amount=-1 +kerning first=345 second=229 amount=-1 +kerning first=74 second=212 amount=-2 +kerning first=195 second=250 amount=-3 +kerning first=1113 second=1097 amount=-1 +kerning first=102 second=333 amount=-1 +kerning first=1030 second=1077 amount=-1 +kerning first=86 second=44 amount=-5 +kerning first=204 second=257 amount=-2 +kerning first=8218 second=379 amount=-1 +kerning first=1077 second=1097 amount=-1 +kerning first=89 second=267 amount=-3 +kerning first=99 second=257 amount=-2 +kerning first=224 second=328 amount=-1 +kerning first=286 second=8220 amount=-1 +kerning first=1069 second=1047 amount=-2 +kerning first=331 second=119 amount=-3 +kerning first=218 second=288 amount=-1 +kerning first=250 second=8220 amount=-3 +kerning first=303 second=283 amount=-3 +kerning first=214 second=8220 amount=-2 +kerning first=87 second=345 amount=-1 +kerning first=97 second=351 amount=-1 +kerning first=88 second=243 amount=-2 +kerning first=120 second=250 amount=-3 +kerning first=298 second=332 amount=-2 +kerning first=109 second=8220 amount=-4 +kerning first=240 second=106 amount=-2 +kerning first=262 second=332 amount=-3 +kerning first=206 second=113 amount=-2 +kerning first=370 second=332 amount=-1 +kerning first=207 second=333 amount=-2 +kerning first=264 second=345 amount=-1 +kerning first=101 second=113 amount=-1 +kerning first=107 second=242 amount=-3 +kerning first=1063 second=1116 amount=-1 +kerning first=279 second=333 amount=-1 +kerning first=77 second=288 amount=-2 +kerning first=1104 second=1090 amount=-1 +kerning first=211 second=87 amount=-2 +kerning first=65 second=113 amount=-1 +kerning first=1027 second=1116 amount=-2 +kerning first=303 second=99 amount=-3 +kerning first=1058 second=1033 amount=-4 +kerning first=381 second=287 amount=-3 +kerning first=113 second=347 amount=-2 +kerning first=281 second=281 amount=-1 +kerning first=267 second=99 amount=-1 +kerning first=345 second=287 amount=-2 +kerning first=77 second=347 amount=-2 +kerning first=375 second=99 amount=-3 +kerning first=198 second=217 amount=-2 +kerning first=339 second=99 amount=-1 +kerning first=219 second=232 amount=-2 +kerning first=362 second=288 amount=-1 +kerning first=193 second=243 amount=-1 +kerning first=8217 second=192 amount=-6 +kerning first=356 second=242 amount=-3 +kerning first=229 second=243 amount=-1 +kerning first=187 second=197 amount=-4 +kerning first=378 second=326 amount=-2 +kerning first=209 second=281 amount=-2 +kerning first=83 second=82 amount=-3 +kerning first=116 second=249 amount=-1 +kerning first=251 second=324 amount=-1 +kerning first=85 second=279 amount=-2 +kerning first=256 second=354 amount=-6 +kerning first=99 second=254 amount=-2 +kerning first=198 second=119 amount=-1 +kerning first=76 second=334 amount=-1 +kerning first=278 second=379 amount=-1 +kerning first=71 second=304 amount=-1 +kerning first=287 second=324 amount=-1 +kerning first=68 second=74 amount=-2 +kerning first=234 second=119 amount=-2 +kerning first=121 second=279 amount=-3 +kerning first=217 second=334 amount=-1 +kerning first=113 second=229 amount=-2 +kerning first=187 second=374 amount=-4 +kerning first=1093 second=1079 amount=-1 +kerning first=290 second=344 amount=-1 +kerning first=315 second=274 amount=-2 +kerning first=240 second=369 amount=-1 +kerning first=87 second=289 amount=-4 +kerning first=209 second=74 amount=-1 +kerning first=82 second=374 amount=-3 +kerning first=257 second=249 amount=-1 +kerning first=79 second=259 amount=-1 +kerning first=77 second=229 amount=-2 +kerning first=378 second=119 amount=-2 +kerning first=1057 second=1079 amount=-1 +kerning first=199 second=339 amount=-2 +kerning first=290 second=229 amount=-1 +kerning first=1038 second=1074 amount=-4 +kerning first=235 second=339 amount=-1 +kerning first=317 second=284 amount=-1 +kerning first=326 second=229 amount=-1 +kerning first=317 second=74 amount=-1 +kerning first=1074 second=1074 amount=-1 +kerning first=370 second=279 amount=-2 +kerning first=339 second=361 amount=-2 +kerning first=209 second=284 amount=-2 +kerning first=8216 second=366 amount=-1 +kerning first=258 second=246 amount=-1 +kerning first=218 second=229 amount=-3 +kerning first=254 second=229 amount=-1 +kerning first=366 second=114 amount=-1 +kerning first=1027 second=1119 amount=-2 +kerning first=262 second=279 amount=-2 +kerning first=379 second=339 amount=-1 +kerning first=1063 second=1119 amount=-1 +kerning first=226 second=279 amount=-1 +kerning first=8218 second=261 amount=-2 +kerning first=362 second=229 amount=-3 +kerning first=307 second=339 amount=-1 +kerning first=298 second=279 amount=-2 +kerning first=311 second=244 amount=-3 +kerning first=1039 second=1084 amount=-1 +kerning first=250 second=8217 amount=-3 +kerning first=286 second=8217 amount=-1 +kerning first=259 second=111 amount=-1 +kerning first=1094 second=1089 amount=-1 +kerning first=336 second=82 amount=-2 +kerning first=1058 second=1089 amount=-1 +kerning first=381 second=234 amount=-1 +kerning first=76 second=219 amount=-3 +kerning first=201 second=86 amount=-1 +kerning first=206 second=264 amount=-2 +kerning first=82 second=111 amount=-3 +kerning first=118 second=111 amount=-3 +kerning first=192 second=289 amount=-3 +kerning first=261 second=121 amount=-2 +kerning first=221 second=364 amount=-1 +kerning first=228 second=289 amount=-2 +kerning first=225 second=121 amount=-3 +kerning first=275 second=119 amount=-2 +kerning first=8218 second=89 amount=-6 +kerning first=65 second=264 amount=-3 +kerning first=1024 second=1099 amount=-1 +kerning first=264 second=289 amount=-3 +kerning first=264 second=82 amount=-3 +kerning first=198 second=66 amount=-2 +kerning first=222 second=323 amount=-2 +kerning first=120 second=121 amount=-3 +kerning first=1024 second=1082 amount=-1 +kerning first=8220 second=271 amount=-3 +kerning first=336 second=289 amount=-1 +kerning first=84 second=121 amount=-3 +kerning first=77 second=251 amount=-2 +kerning first=350 second=205 amount=-3 +kerning first=240 second=254 amount=-1 +kerning first=1058 second=1086 amount=-1 +kerning first=367 second=111 amount=-1 +kerning first=79 second=354 amount=-2 +kerning first=87 second=82 amount=-1 +kerning first=365 second=249 amount=-1 +kerning first=275 second=244 amount=-1 +kerning first=73 second=199 amount=-2 +kerning first=353 second=225 amount=-1 +kerning first=251 second=117 amount=-1 +kerning first=107 second=97 amount=-2 +kerning first=69 second=85 amount=-2 +kerning first=90 second=102 amount=-3 +kerning first=323 second=117 amount=-2 +kerning first=287 second=117 amount=-1 +kerning first=71 second=97 amount=-1 +kerning first=272 second=76 amount=-2 +kerning first=325 second=71 amount=-2 +kerning first=267 second=46 amount=-3 +kerning first=209 second=225 amount=-2 +kerning first=262 second=72 amount=-3 +kerning first=284 second=97 amount=-1 +kerning first=369 second=121 amount=-3 +kerning first=99 second=251 amount=-2 +kerning first=245 second=225 amount=-1 +kerning first=200 second=76 amount=-2 +kerning first=333 second=121 amount=-3 +kerning first=240 second=251 amount=-1 +kerning first=379 second=111 amount=-1 +kerning first=339 second=46 amount=-3 +kerning first=281 second=225 amount=-2 +kerning first=8217 second=103 amount=-4 +kerning first=334 second=72 amount=-2 +kerning first=212 second=97 amount=-1 +kerning first=68 second=77 amount=-2 +kerning first=204 second=251 amount=-2 +kerning first=198 second=122 amount=-2 +kerning first=375 second=46 amount=-5 +kerning first=280 second=112 amount=-2 +kerning first=248 second=97 amount=-1 +kerning first=381 second=290 amount=-1 +kerning first=339 second=102 amount=-2 +kerning first=107 second=245 amount=-3 +kerning first=71 second=363 amount=-1 +kerning first=356 second=97 amount=-5 +kerning first=107 second=363 amount=-1 +kerning first=231 second=46 amount=-3 +kerning first=356 second=245 amount=-3 +kerning first=195 second=102 amount=-1 +kerning first=187 second=200 amount=-5 +kerning first=231 second=102 amount=-2 +kerning first=248 second=363 amount=-1 +kerning first=66 second=73 amount=-4 +kerning first=267 second=102 amount=-2 +kerning first=82 second=318 amount=-3 +kerning first=284 second=363 amount=-1 +kerning first=303 second=102 amount=-2 +kerning first=110 second=117 amount=-1 +kerning first=118 second=318 amount=-2 +kerning first=272 second=220 amount=-1 +kerning first=352 second=90 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=337 second=355 amount=-1 +kerning first=65 second=116 amount=-1 +kerning first=201 second=83 amount=-2 +kerning first=315 second=330 amount=-2 +kerning first=79 second=298 amount=-2 +kerning first=193 second=240 amount=-1 +kerning first=367 second=259 amount=-1 +kerning first=298 second=237 amount=-1 +kerning first=198 second=214 amount=-1 +kerning first=90 second=194 amount=-1 +kerning first=229 second=240 amount=-1 +kerning first=331 second=259 amount=-1 +kerning first=1060 second=1043 amount=-1 +kerning first=88 second=240 amount=-2 +kerning first=110 second=371 amount=-1 +kerning first=90 second=253 amount=-3 +kerning first=1024 second=1043 amount=-1 +kerning first=350 second=116 amount=-1 +kerning first=381 second=83 amount=-1 +kerning first=1049 second=1088 amount=-1 +kerning first=268 second=375 amount=-1 +kerning first=99 second=369 amount=-2 +kerning first=223 second=259 amount=-1 +kerning first=1113 second=1094 amount=-1 +kerning first=66 second=330 amount=-4 +kerning first=232 second=375 amount=-2 +kerning first=187 second=259 amount=-1 +kerning first=1077 second=1094 amount=-1 +kerning first=356 second=304 amount=-1 +kerning first=378 second=122 amount=-2 +kerning first=196 second=375 amount=-3 +kerning first=204 second=369 amount=-2 +kerning first=295 second=259 amount=-1 +kerning first=217 second=71 amount=-1 +kerning first=122 second=311 amount=-2 +kerning first=259 second=259 amount=-1 +kerning first=284 second=304 amount=-1 +kerning first=376 second=375 amount=-3 +kerning first=334 second=220 amount=-1 +kerning first=76 second=71 amount=-1 +kerning first=212 second=304 amount=-2 +kerning first=118 second=259 amount=-3 +kerning first=242 second=116 amount=-1 +kerning first=304 second=375 amount=-2 +kerning first=262 second=220 amount=-2 +kerning first=82 second=259 amount=-2 +kerning first=354 second=90 amount=-3 +kerning first=264 second=233 amount=-2 +kerning first=71 second=298 amount=-1 +kerning first=347 second=291 amount=-3 +kerning first=1081 second=1108 amount=-1 +kerning first=332 second=77 amount=-2 +kerning first=311 second=291 amount=-2 +kerning first=114 second=97 amount=-1 +kerning first=288 second=194 amount=-3 +kerning first=275 second=291 amount=-3 +kerning first=83 second=337 amount=-1 +kerning first=101 second=227 amount=-2 +kerning first=69 second=350 amount=-2 +kerning first=109 second=110 amount=-1 +kerning first=284 second=82 amount=-1 +kerning first=216 second=194 amount=-4 +kerning first=203 second=291 amount=-3 +kerning first=354 second=233 amount=-3 +kerning first=198 second=304 amount=-2 +kerning first=284 second=298 amount=-1 +kerning first=78 second=97 amount=-2 +kerning first=67 second=235 amount=-2 +kerning first=210 second=350 amount=-1 +kerning first=291 second=97 amount=-3 +kerning first=250 second=110 amount=-1 +kerning first=98 second=291 amount=-2 +kerning first=260 second=337 amount=-1 +kerning first=351 second=311 amount=-1 +kerning first=1113 second=1088 amount=-1 +kerning first=83 second=77 amount=-3 +kerning first=1072 second=1101 amount=-1 +kerning first=327 second=97 amount=-2 +kerning first=224 second=337 amount=-1 +kerning first=315 second=311 amount=-2 +kerning first=222 second=66 amount=-2 +kerning first=279 second=311 amount=-2 +kerning first=79 second=317 amount=-2 +kerning first=346 second=200 amount=-3 +kerning first=75 second=318 amount=-1 +kerning first=255 second=97 amount=-3 +kerning first=119 second=337 amount=-3 +kerning first=243 second=311 amount=-1 +kerning first=1077 second=1088 amount=-1 +kerning first=69 second=90 amount=-1 +kerning first=197 second=84 amount=-6 +kerning first=337 second=324 amount=-1 +kerning first=111 second=318 amount=-2 +kerning first=1025 second=1050 amount=-1 +kerning first=210 second=90 amount=-2 +kerning first=8218 second=370 amount=-3 +kerning first=202 second=71 amount=-1 +kerning first=368 second=337 amount=-2 +kerning first=370 second=382 amount=-3 +kerning first=282 second=350 amount=-2 +kerning first=102 second=311 amount=3 +kerning first=282 second=90 amount=-1 +kerning first=377 second=84 amount=-2 +kerning first=229 second=324 amount=-1 +kerning first=252 second=318 amount=-2 +kerning first=274 second=71 amount=-1 +kerning first=296 second=337 amount=-2 +kerning first=66 second=311 amount=-3 +kerning first=1036 second=1101 amount=-1 +kerning first=227 second=335 amount=-1 +kerning first=264 second=104 amount=-1 +kerning first=1049 second=1107 amount=-1 +kerning first=217 second=381 amount=-1 +kerning first=251 second=234 amount=-1 +kerning first=228 second=104 amount=-1 +kerning first=194 second=284 amount=-3 +kerning first=382 second=303 amount=-1 +kerning first=279 second=187 amount=-2 +kerning first=287 second=234 amount=-2 +kerning first=192 second=104 amount=-2 +kerning first=243 second=187 amount=-2 +kerning first=323 second=234 amount=-2 +kerning first=270 second=44 amount=-3 +kerning first=89 second=284 amount=-3 +kerning first=8217 second=382 amount=-1 +kerning first=365 second=277 amount=-1 +kerning first=268 second=260 amount=-3 +kerning first=84 second=325 amount=-1 +kerning first=211 second=78 amount=-2 +kerning first=211 second=310 amount=-2 +kerning first=8220 second=86 amount=-1 +kerning first=376 second=260 amount=-6 +kerning first=8216 second=195 amount=-8 +kerning first=296 second=213 amount=-2 +kerning first=1104 second=1081 amount=-1 +kerning first=280 second=374 amount=-1 +kerning first=208 second=356 amount=-2 +kerning first=346 second=116 amount=-1 +kerning first=221 second=277 amount=-3 +kerning first=101 second=351 amount=-2 +kerning first=278 second=227 amount=-1 +kerning first=356 second=298 amount=-1 +kerning first=65 second=269 amount=-1 +kerning first=1060 second=1058 amount=-1 +kerning first=202 second=284 amount=-1 +kerning first=65 second=351 amount=-2 +kerning first=242 second=227 amount=-1 +kerning first=1038 second=1077 amount=-4 +kerning first=206 second=351 amount=-2 +kerning first=206 second=227 amount=-2 +kerning first=374 second=284 amount=-3 +kerning first=97 second=303 amount=-1 +kerning first=257 second=277 amount=-1 +kerning first=197 second=220 amount=-3 +kerning first=100 second=98 amount=-1 +kerning first=1059 second=1074 amount=-4 +kerning first=79 second=85 amount=-1 +kerning first=378 second=44 amount=-1 +kerning first=302 second=284 amount=-2 +kerning first=346 second=303 amount=-3 +kerning first=338 second=284 amount=-1 +kerning first=85 second=350 amount=-3 +kerning first=84 second=201 amount=-1 +kerning first=274 second=303 amount=-1 +kerning first=80 second=277 amount=-1 +kerning first=379 second=367 amount=-3 +kerning first=314 second=227 amount=-2 +kerning first=266 second=284 amount=-3 +kerning first=382 second=269 amount=-1 +kerning first=105 second=118 amount=-3 +kerning first=314 second=8220 amount=-3 +kerning first=115 second=345 amount=-1 +kerning first=8217 second=122 amount=-1 +kerning first=230 second=380 amount=-2 +kerning first=69 second=118 amount=-1 +kerning first=224 second=105 amount=-1 +kerning first=207 second=283 amount=-2 +kerning first=266 second=380 amount=-2 +kerning first=284 second=270 amount=-1 +kerning first=83 second=105 amount=-3 +kerning first=242 second=8220 amount=-2 +kerning first=8222 second=362 amount=-3 +kerning first=68 second=287 amount=-1 +kerning first=302 second=380 amount=-1 +kerning first=119 second=105 amount=-2 +kerning first=214 second=171 amount=-1 +kerning first=283 second=235 amount=-1 +kerning first=102 second=283 amount=-1 +kerning first=338 second=380 amount=-2 +kerning first=356 second=270 amount=-1 +kerning first=382 second=228 amount=-1 +kerning first=1088 second=1094 amount=-1 +kerning first=346 second=228 amount=-1 +kerning first=101 second=8220 amount=-2 +kerning first=275 second=232 amount=-1 +kerning first=104 second=287 amount=-2 +kerning first=310 second=228 amount=-1 +kerning first=245 second=287 amount=-2 +kerning first=274 second=228 amount=-1 +kerning first=368 second=241 amount=-2 +kerning first=279 second=283 amount=-1 +kerning first=209 second=287 amount=-3 +kerning first=212 second=270 amount=-2 +kerning first=317 second=287 amount=-3 +kerning first=202 second=228 amount=-1 +kerning first=119 second=241 amount=-2 +kerning first=281 second=287 amount=-3 +kerning first=338 second=8249 amount=-2 +kerning first=100 second=287 amount=-2 +kerning first=97 second=228 amount=-1 +kerning first=224 second=241 amount=-1 +kerning first=353 second=287 amount=-3 +kerning first=377 second=248 amount=-1 +kerning first=266 second=8249 amount=-4 +kerning first=382 second=331 amount=-2 +kerning first=269 second=248 amount=-1 +kerning first=88 second=354 amount=-2 +kerning first=90 second=197 amount=-1 +kerning first=194 second=8249 amount=-4 +kerning first=83 second=241 amount=-1 +kerning first=275 second=263 amount=-1 +kerning first=70 second=235 amount=-1 +kerning first=197 second=248 amount=-1 +kerning first=311 second=263 amount=-3 +kerning first=106 second=235 amount=-1 +kerning first=346 second=331 amount=-1 +kerning first=233 second=248 amount=-1 +kerning first=288 second=318 amount=-1 +kerning first=356 second=366 amount=-1 +kerning first=324 second=318 amount=-1 +kerning first=350 second=255 amount=-2 +kerning first=274 second=331 amount=-1 +kerning first=1063 second=1094 amount=-1 +kerning first=377 second=112 amount=-1 +kerning first=374 second=256 amount=-6 +kerning first=284 second=366 amount=-1 +kerning first=1027 second=1094 amount=-2 +kerning first=74 second=262 amount=-2 +kerning first=1036 second=1073 amount=-3 +kerning first=338 second=256 amount=-2 +kerning first=1078 second=1104 amount=-2 +kerning first=305 second=112 amount=-1 +kerning first=1072 second=1073 amount=-1 +kerning first=242 second=255 amount=-3 +kerning first=274 second=200 amount=-2 +kerning first=269 second=112 amount=-1 +kerning first=206 second=255 amount=-2 +kerning first=336 second=8221 amount=-2 +kerning first=97 second=331 amount=-1 +kerning first=193 second=221 amount=-6 +kerning first=233 second=112 amount=-1 +kerning first=202 second=200 amount=-2 +kerning first=197 second=112 amount=-3 +kerning first=101 second=255 amount=-2 +kerning first=88 second=221 amount=-2 +kerning first=65 second=255 amount=-3 +kerning first=217 second=74 amount=-3 +kerning first=108 second=314 amount=-2 +kerning first=88 second=352 amount=-2 +kerning first=105 second=367 amount=-1 +kerning first=287 second=98 amount=-1 +kerning first=193 second=352 amount=-3 +kerning first=211 second=207 amount=-2 +kerning first=251 second=98 amount=-2 +kerning first=325 second=74 amount=-1 +kerning first=84 second=105 amount=-2 +kerning first=70 second=338 amount=-1 +kerning first=332 second=105 amount=-1 +kerning first=212 second=366 amount=-1 +kerning first=66 second=283 amount=-1 +kerning first=8217 second=279 amount=-3 +kerning first=374 second=380 amount=-3 +kerning first=368 second=105 amount=-2 +kerning first=1045 second=1080 amount=-1 +kerning first=75 second=290 amount=-3 +kerning first=1058 second=1092 amount=-1 +kerning first=249 second=314 amount=-2 +kerning first=260 second=105 amount=-1 +kerning first=84 second=339 amount=-3 +kerning first=296 second=105 amount=-1 +kerning first=71 second=366 amount=-1 +kerning first=220 second=214 amount=-1 +kerning first=321 second=314 amount=-2 +kerning first=277 second=307 amount=-2 +kerning first=212 second=106 amount=-1 +kerning first=197 second=268 amount=-3 +kerning first=85 second=81 amount=-1 +kerning first=116 second=261 amount=-1 +kerning first=117 second=333 amount=-1 +kerning first=90 second=113 amount=-1 +kerning first=67 second=346 amount=-3 +kerning first=248 second=106 amount=-2 +kerning first=258 second=333 amount=-1 +kerning first=230 second=8221 amount=-2 +kerning first=107 second=106 amount=-1 +kerning first=199 second=224 amount=-2 +kerning first=90 second=68 amount=-1 +kerning first=298 second=81 amount=-2 +kerning first=280 second=346 amount=-2 +kerning first=105 second=114 amount=-1 +kerning first=262 second=81 amount=-3 +kerning first=235 second=224 amount=-2 +kerning first=208 second=346 amount=-1 +kerning first=284 second=106 amount=-1 +kerning first=307 second=224 amount=-2 +kerning first=103 second=243 amount=-2 +kerning first=89 second=256 amount=-6 +kerning first=116 second=118 amount=-1 +kerning first=379 second=224 amount=-1 +kerning first=1088 second=1099 amount=-1 +kerning first=213 second=230 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=352 second=346 amount=-1 +kerning first=72 second=230 amount=-2 +kerning first=353 second=324 amount=-2 +kerning first=108 second=230 amount=-2 +kerning first=100 second=307 amount=-1 +kerning first=8250 second=315 amount=-5 +kerning first=330 second=333 amount=-2 +kerning first=266 second=256 amount=-3 +kerning first=362 second=253 amount=-1 +kerning first=67 second=326 amount=-1 +kerning first=221 second=101 amount=-3 +kerning first=257 second=101 amount=-1 +kerning first=1052 second=1099 amount=-1 +kerning first=241 second=307 amount=-1 +kerning first=366 second=333 amount=-2 +kerning first=344 second=67 amount=-3 +kerning first=67 second=243 amount=-2 +kerning first=86 second=69 amount=-1 +kerning first=89 second=120 amount=-2 +kerning first=1060 second=1034 amount=-1 +kerning first=365 second=101 amount=-1 +kerning first=8250 second=200 amount=-5 +kerning first=379 second=79 amount=-1 +kerning first=209 second=334 amount=-2 +kerning first=1048 second=1072 amount=-1 +kerning first=87 second=187 amount=-3 +kerning first=381 second=268 amount=-1 +kerning first=264 second=318 amount=-1 +kerning first=258 second=218 amount=-3 +kerning first=71 second=251 amount=-1 +kerning first=85 second=229 amount=-3 +kerning first=313 second=192 amount=-2 +kerning first=1113 second=1080 amount=-1 +kerning first=1101 second=1098 amount=-1 +kerning first=1050 second=1072 amount=-2 +kerning first=1024 second=1034 amount=-1 +kerning first=352 second=243 amount=-1 +kerning first=317 second=334 amount=-1 +kerning first=107 second=251 amount=-1 +kerning first=201 second=268 amount=-1 +kerning first=317 second=203 amount=-2 +kerning first=248 second=251 amount=-1 +kerning first=226 second=229 amount=-1 +kerning first=109 second=371 amount=-1 +kerning first=45 second=218 amount=-4 +kerning first=262 second=229 amount=-2 +kerning first=121 second=229 amount=-3 +kerning first=71 second=270 amount=-1 +kerning first=284 second=251 amount=-1 +kerning first=282 second=118 amount=-1 +kerning first=230 second=120 amount=-2 +kerning first=370 second=229 amount=-3 +kerning first=222 second=218 amount=-1 +kerning first=246 second=118 amount=-2 +kerning first=356 second=251 amount=-2 +kerning first=1084 second=1072 amount=-1 +kerning first=302 second=249 amount=-1 +kerning first=71 second=106 amount=-1 +kerning first=354 second=118 amount=-3 +kerning first=86 second=305 amount=-2 +kerning first=68 second=203 amount=-2 +kerning first=8222 second=102 amount=-1 +kerning first=1079 second=1074 amount=-1 +kerning first=338 second=120 amount=-1 +kerning first=1101 second=1083 amount=-2 +kerning first=81 second=218 amount=-1 +kerning first=375 second=244 amount=-3 +kerning first=1074 second=1096 amount=-1 +kerning first=334 second=257 amount=-1 +kerning first=194 second=368 amount=-3 +kerning first=370 second=257 amount=-3 +kerning first=317 second=219 amount=-3 +kerning first=45 second=361 amount=-1 +kerning first=262 second=257 amount=-2 +kerning first=89 second=368 amount=-1 +kerning first=298 second=257 amount=-2 +kerning first=117 second=361 amount=-1 +kerning first=99 second=232 amount=-1 +kerning first=213 second=202 amount=-2 +kerning first=338 second=368 amount=-2 +kerning first=226 second=257 amount=-1 +kerning first=363 second=254 amount=-2 +kerning first=374 second=368 amount=-1 +kerning first=266 second=122 amount=-2 +kerning first=85 second=257 amount=-3 +kerning first=204 second=232 amount=-2 +kerning first=266 second=368 amount=-2 +kerning first=84 second=8250 amount=-3 +kerning first=121 second=257 amount=-3 +kerning first=68 second=219 amount=-1 +kerning first=325 second=121 amount=-2 +kerning first=208 second=374 amount=-2 +kerning first=289 second=121 amount=-1 +kerning first=254 second=378 amount=-2 +kerning first=100 second=267 amount=-1 +kerning first=255 second=254 amount=-1 +kerning first=344 second=336 amount=-3 +kerning first=195 second=244 amount=-1 +kerning first=217 second=121 amount=-1 +kerning first=321 second=202 amount=-2 +kerning first=291 second=254 amount=-1 +kerning first=231 second=244 amount=-1 +kerning first=216 second=330 amount=-2 +kerning first=199 second=79 amount=-3 +kerning first=213 second=66 amount=-2 +kerning first=213 second=82 amount=-2 +kerning first=267 second=244 amount=-1 +kerning first=112 second=121 amount=-3 +kerning first=305 second=110 amount=-1 +kerning first=277 second=267 amount=-1 +kerning first=216 second=278 amount=-2 +kerning first=303 second=244 amount=-3 +kerning first=76 second=121 amount=-3 +kerning first=346 second=240 amount=-1 +kerning first=1078 second=1108 amount=-2 +kerning first=339 second=244 amount=-1 +kerning first=205 second=267 amount=-2 +kerning first=99 second=106 amount=-2 +kerning first=288 second=278 amount=-1 +kerning first=321 second=82 amount=-2 +kerning first=205 second=382 amount=-1 +kerning first=187 second=117 amount=-1 +kerning first=222 second=8221 amount=-2 +kerning first=241 second=382 amount=-1 +kerning first=321 second=66 amount=-2 +kerning first=117 second=246 amount=-1 +kerning first=367 second=281 amount=-1 +kerning first=199 second=107 amount=-1 +kerning first=277 second=382 amount=-2 +kerning first=316 second=271 amount=-1 +kerning first=259 second=117 amount=-1 +kerning first=313 second=382 amount=-3 +kerning first=223 second=117 amount=-1 +kerning first=118 second=281 amount=-3 +kerning first=331 second=117 amount=-1 +kerning first=295 second=117 amount=-1 +kerning first=100 second=382 amount=-1 +kerning first=249 second=230 amount=-1 +kerning first=259 second=281 amount=-1 +kerning first=367 second=117 amount=-1 +kerning first=1055 second=1047 amount=-1 +kerning first=266 second=201 amount=-3 +kerning first=333 second=8250 amount=-2 +kerning first=258 second=361 amount=-3 +kerning first=86 second=205 amount=-1 +kerning first=366 second=361 amount=-1 +kerning first=82 second=281 amount=-3 +kerning first=330 second=361 amount=-2 +kerning first=212 second=315 amount=-2 +kerning first=240 second=347 amount=-2 +kerning first=90 second=216 amount=-1 +kerning first=204 second=347 amount=-2 +kerning first=235 second=107 amount=-2 +kerning first=103 second=271 amount=-2 +kerning first=193 second=305 amount=-1 +kerning first=1092 second=1082 amount=-1 +kerning first=45 second=344 amount=-5 +kerning first=195 second=216 amount=-3 +kerning first=99 second=347 amount=-2 +kerning first=307 second=107 amount=-1 +kerning first=381 second=240 amount=-1 +kerning first=1058 second=1095 amount=-2 +kerning first=363 second=245 amount=-1 +kerning first=106 second=226 amount=-2 +kerning first=229 second=305 amount=-1 +kerning first=88 second=336 amount=-3 +kerning first=332 second=65 amount=-4 +kerning first=327 second=245 amount=-2 +kerning first=337 second=305 amount=-1 +kerning first=325 second=266 amount=-2 +kerning first=368 second=65 amount=-4 +kerning first=291 second=245 amount=-2 +kerning first=1025 second=1062 amount=-1 +kerning first=1059 second=1083 amount=-5 +kerning first=75 second=46 amount=-1 +kerning first=211 second=226 amount=-1 +kerning first=193 second=336 amount=-3 +kerning first=69 second=362 amount=-2 +kerning first=263 second=111 amount=-1 +kerning first=255 second=245 amount=-3 +kerning first=111 second=46 amount=-3 +kerning first=87 second=252 amount=-1 +kerning first=79 second=202 amount=-2 +kerning first=310 second=219 amount=-2 +kerning first=282 second=102 amount=-2 +kerning first=205 second=122 amount=-1 +kerning first=283 second=226 amount=-2 +kerning first=274 second=219 amount=-2 +kerning first=8222 second=118 amount=-3 +kerning first=354 second=102 amount=-1 +kerning first=1031 second=1086 amount=-1 +kerning first=100 second=122 amount=-1 +kerning first=355 second=226 amount=-1 +kerning first=217 second=266 amount=-1 +kerning first=202 second=219 amount=-2 +kerning first=254 second=8250 amount=-2 +kerning first=1057 second=1042 amount=-1 +kerning first=8220 second=234 amount=-3 +kerning first=120 second=316 amount=-1 +kerning first=225 second=316 amount=-1 +kerning first=8217 second=267 amount=-3 +kerning first=261 second=316 amount=-1 +kerning first=219 second=245 amount=-2 +kerning first=269 second=335 amount=-1 +kerning first=280 second=259 amount=-1 +kerning first=65 second=79 amount=-3 +kerning first=244 second=259 amount=-1 +kerning first=333 second=316 amount=-2 +kerning first=192 second=252 amount=-3 +kerning first=352 second=259 amount=-2 +kerning first=369 second=316 amount=-2 +kerning first=333 second=119 amount=-2 +kerning first=78 second=245 amount=-2 +kerning first=377 second=335 amount=-1 +kerning first=316 second=259 amount=-2 +kerning first=70 second=226 amount=-2 +kerning first=264 second=252 amount=-2 +kerning first=323 second=246 amount=-2 +kerning first=1027 second=1082 amount=-2 +kerning first=88 second=45 amount=-4 +kerning first=268 second=224 amount=-2 +kerning first=219 second=369 amount=-1 +kerning first=103 second=259 amount=-3 +kerning first=71 second=382 amount=-1 +kerning first=287 second=246 amount=-2 +kerning first=1063 second=1082 amount=-1 +kerning first=305 second=103 amount=-2 +kerning first=90 second=356 amount=-2 +kerning first=251 second=246 amount=-1 +kerning first=347 second=375 amount=-3 +kerning first=291 second=369 amount=-1 +kerning first=208 second=259 amount=-1 +kerning first=235 second=116 amount=-1 +kerning first=311 second=375 amount=-1 +kerning first=255 second=369 amount=-1 +kerning first=233 second=103 amount=-3 +kerning first=1054 second=1103 amount=-1 +kerning first=212 second=382 amount=-2 +kerning first=83 second=253 amount=-2 +kerning first=8250 second=331 amount=-2 +kerning first=197 second=103 amount=-3 +kerning first=229 second=45 amount=-2 +kerning first=370 second=109 amount=-2 +kerning first=74 second=246 amount=-1 +kerning first=305 second=117 amount=-1 +kerning first=224 second=253 amount=-3 +kerning first=78 second=369 amount=-2 +kerning first=76 second=266 amount=-1 +kerning first=100 second=249 amount=-1 +kerning first=98 second=375 amount=-3 +kerning first=205 second=279 amount=-2 +kerning first=377 second=332 amount=-1 +kerning first=226 second=109 amount=-1 +kerning first=313 second=122 amount=-3 +kerning first=354 second=362 amount=-1 +kerning first=277 second=279 amount=-1 +kerning first=277 second=122 amount=-2 +kerning first=78 second=242 amount=-2 +kerning first=241 second=122 amount=-1 +kerning first=219 second=242 amount=-2 +kerning first=275 second=375 amount=-2 +kerning first=85 second=109 amount=-2 +kerning first=363 second=369 amount=-1 +kerning first=248 second=382 amount=-2 +kerning first=327 second=369 amount=-2 +kerning first=284 second=382 amount=-1 +kerning first=291 second=242 amount=-2 +kerning first=210 second=362 amount=-1 +kerning first=100 second=279 amount=-1 +kerning first=379 second=116 amount=-1 +kerning first=255 second=242 amount=-3 +kerning first=121 second=109 amount=-2 +kerning first=377 second=103 amount=-3 +kerning first=356 second=382 amount=-3 +kerning first=70 second=223 amount=-1 +kerning first=363 second=242 amount=-1 +kerning first=201 second=227 amount=-1 +kerning first=327 second=242 amount=-2 +kerning first=275 second=115 amount=-2 +kerning first=332 second=68 amount=-2 +kerning first=103 second=355 amount=-1 +kerning first=278 second=370 amount=-2 +kerning first=202 second=80 amount=-2 +kerning first=106 second=223 amount=-1 +kerning first=203 second=115 amount=-1 +kerning first=100 second=119 amount=-2 +kerning first=352 second=355 amount=-1 +kerning first=356 second=237 amount=-2 +kerning first=350 second=370 amount=-3 +kerning first=363 second=363 amount=-1 +kerning first=316 second=355 amount=-1 +kerning first=205 second=119 amount=-2 +kerning first=1057 second=1070 amount=-1 +kerning first=211 second=198 amount=-4 +kerning first=311 second=115 amount=-2 +kerning first=241 second=119 amount=-3 +kerning first=288 second=203 amount=-1 +kerning first=347 second=115 amount=-3 +kerning first=244 second=355 amount=-1 +kerning first=277 second=119 amount=-2 +kerning first=1060 second=1103 amount=-1 +kerning first=313 second=119 amount=-3 +kerning first=8222 second=90 amount=-1 +kerning first=8216 second=235 amount=-3 +kerning first=1025 second=1090 amount=-3 +kerning first=203 second=284 amount=-1 +kerning first=296 second=253 amount=-2 +kerning first=350 second=113 amount=-1 +kerning first=266 second=108 amount=-1 +kerning first=84 second=313 amount=-1 +kerning first=274 second=315 amount=-2 +kerning first=368 second=253 amount=-1 +kerning first=338 second=108 amount=-1 +kerning first=1103 second=1105 amount=-1 +kerning first=1061 second=1059 amount=-3 +kerning first=274 second=80 amount=-2 +kerning first=377 second=75 amount=-1 +kerning first=1031 second=1105 amount=-1 +kerning first=346 second=80 amount=-3 +kerning first=1067 second=1105 amount=-1 +kerning first=65 second=370 amount=-3 +kerning first=83 second=68 amount=-3 +kerning first=1025 second=1059 amount=-3 +kerning first=352 second=231 amount=-1 +kerning first=232 second=269 amount=-1 +kerning first=224 second=225 amount=-1 +kerning first=356 second=45 amount=-5 +kerning first=196 second=269 amount=-1 +kerning first=303 second=328 amount=-2 +kerning first=315 second=196 amount=-2 +kerning first=197 second=335 amount=-1 +kerning first=304 second=269 amount=-2 +kerning first=379 second=356 amount=-2 +kerning first=316 second=231 amount=-1 +kerning first=296 second=225 amount=-2 +kerning first=233 second=335 amount=-1 +kerning first=268 second=269 amount=-2 +kerning first=231 second=328 amount=-2 +kerning first=376 second=269 amount=-3 +kerning first=346 second=315 amount=-3 +kerning first=83 second=225 amount=-2 +kerning first=230 second=108 amount=-3 +kerning first=197 second=363 amount=-3 +kerning first=119 second=225 amount=-3 +kerning first=375 second=328 amount=-2 +kerning first=233 second=363 amount=-2 +kerning first=105 second=102 amount=-2 +kerning first=216 second=203 amount=-2 +kerning first=122 second=277 amount=-1 +kerning first=324 second=46 amount=-1 +kerning first=87 second=280 amount=-1 +kerning first=269 second=363 amount=-2 +kerning first=257 second=46 amount=-1 +kerning first=67 second=231 amount=-2 +kerning first=278 second=198 amount=-2 +kerning first=305 second=363 amount=-1 +kerning first=8250 second=303 amount=-1 +kerning first=235 second=8217 amount=-2 +kerning first=246 second=102 amount=-1 +kerning first=363 second=273 amount=-1 +kerning first=377 second=363 amount=-3 +kerning first=332 second=225 amount=-1 +kerning first=264 second=280 amount=-3 +kerning first=291 second=273 amount=-2 +kerning first=194 second=8221 amount=-5 +kerning first=113 second=231 amount=-1 +kerning first=103 second=231 amount=-2 +kerning first=1086 second=1076 amount=-2 +kerning first=255 second=273 amount=-3 +kerning first=252 second=46 amount=-2 +kerning first=336 second=280 amount=-2 +kerning first=69 second=102 amount=-2 +kerning first=1050 second=1076 amount=-1 +kerning first=288 second=46 amount=-3 +kerning first=362 second=245 amount=-2 +kerning first=221 second=261 amount=-5 +kerning first=257 second=261 amount=-1 +kerning first=206 second=367 amount=-2 +kerning first=1060 second=1118 amount=-1 +kerning first=1057 second=1067 amount=-1 +kerning first=65 second=367 amount=-3 +kerning first=218 second=210 amount=-1 +kerning first=101 second=367 amount=-2 +kerning first=72 second=211 amount=-2 +kerning first=45 second=352 amount=-3 +kerning first=307 second=8220 amount=-2 +kerning first=200 second=296 amount=-2 +kerning first=368 second=250 amount=-1 +kerning first=80 second=261 amount=-1 +kerning first=1043 second=1092 amount=-3 +kerning first=321 second=211 amount=-1 +kerning first=379 second=351 amount=-2 +kerning first=77 second=210 amount=-2 +kerning first=354 second=275 amount=-3 +kerning first=235 second=8220 amount=-2 +kerning first=272 second=296 amount=-2 +kerning first=81 second=352 amount=-1 +kerning first=262 second=112 amount=-3 +kerning first=260 second=250 amount=-3 +kerning first=98 second=378 amount=-2 +kerning first=200 second=327 amount=-2 +kerning first=224 second=250 amount=-1 +kerning first=208 second=86 amount=-2 +kerning first=321 second=326 amount=-1 +kerning first=203 second=378 amount=-2 +kerning first=272 second=327 amount=-2 +kerning first=120 second=122 amount=-2 +kerning first=8216 second=232 amount=-3 +kerning first=325 second=212 amount=-2 +kerning first=121 second=112 amount=-2 +kerning first=99 second=235 amount=-1 +kerning first=296 second=250 amount=-2 +kerning first=8250 second=325 amount=-5 +kerning first=85 second=112 amount=-2 +kerning first=83 second=250 amount=-1 +kerning first=365 second=261 amount=-1 +kerning first=204 second=235 amount=-2 +kerning first=108 second=326 amount=-1 +kerning first=352 second=86 amount=-3 +kerning first=1024 second=1118 amount=-1 +kerning first=90 second=328 amount=-1 +kerning first=119 second=250 amount=-1 +kerning first=102 second=171 amount=-3 +kerning first=222 second=206 amount=-2 +kerning first=117 second=237 amount=-2 +kerning first=84 second=288 amount=-3 +kerning first=296 second=365 amount=-2 +kerning first=81 second=237 amount=-1 +kerning first=260 second=365 amount=-3 +kerning first=45 second=237 amount=-1 +kerning first=365 second=113 amount=-1 +kerning first=280 second=262 amount=-1 +kerning first=224 second=365 amount=-1 +kerning first=67 second=83 amount=-3 +kerning first=197 second=100 amount=-1 +kerning first=307 second=355 amount=-1 +kerning first=253 second=353 amount=-3 +kerning first=315 second=171 amount=-1 +kerning first=1114 second=1113 amount=-1 +kerning first=370 second=112 amount=-2 +kerning first=111 second=382 amount=-2 +kerning first=289 second=353 amount=-3 +kerning first=351 second=171 amount=-1 +kerning first=269 second=100 amount=-1 +kerning first=347 second=378 amount=-2 +kerning first=1042 second=1113 amount=-1 +kerning first=208 second=83 amount=-1 +kerning first=89 second=113 amount=-3 +kerning first=298 second=112 amount=-1 +kerning first=222 second=352 amount=-1 +kerning first=213 second=323 amount=-2 +kerning first=280 second=83 amount=-2 +kerning first=200 second=46 amount=-1 +kerning first=112 second=353 amount=-2 +kerning first=332 second=289 amount=-1 +kerning first=80 second=113 amount=-1 +kerning first=352 second=83 amount=-1 +kerning first=264 second=249 amount=-2 +kerning first=70 second=198 amount=-3 +kerning first=258 second=352 amount=-3 +kerning first=217 second=353 amount=-2 +kerning first=1054 second=1078 amount=-1 +kerning first=366 second=352 amount=-3 +kerning first=105 second=275 amount=-1 +kerning first=370 second=337 amount=-2 +kerning first=330 second=352 amount=-2 +kerning first=321 second=323 amount=-2 +kerning first=1006 second=997 amount=-2 +kerning first=257 second=113 amount=-1 +kerning first=1092 second=1091 amount=-1 +kerning first=67 second=262 amount=-3 +kerning first=221 second=113 amount=-3 +kerning first=275 second=353 amount=-2 +kerning first=283 second=223 amount=-1 +kerning first=354 second=332 amount=-3 +kerning first=111 second=291 amount=-2 +kerning first=350 second=339 amount=-1 +kerning first=117 second=324 amount=-1 +kerning first=199 second=233 amount=-2 +kerning first=379 second=379 amount=-1 +kerning first=354 second=99 amount=-3 +kerning first=313 second=304 amount=-2 +kerning first=336 second=364 amount=-1 +kerning first=80 second=289 amount=-3 +kerning first=8220 second=346 amount=-1 +kerning first=8222 second=121 amount=-1 +kerning first=116 second=289 amount=-2 +kerning first=314 second=339 amount=-1 +kerning first=264 second=364 amount=-2 +kerning first=1045 second=1102 amount=-1 +kerning first=192 second=249 amount=-3 +kerning first=214 second=274 amount=-2 +kerning first=221 second=289 amount=-4 +kerning first=262 second=84 amount=-1 +kerning first=228 second=249 amount=-1 +kerning first=257 second=289 amount=-2 +kerning first=258 second=89 amount=-6 +kerning first=103 second=114 amount=-1 +kerning first=45 second=324 amount=-2 +kerning first=87 second=249 amount=-1 +kerning first=222 second=89 amount=-2 +kerning first=1057 second=1039 amount=-1 +kerning first=379 second=233 amount=-1 +kerning first=76 second=350 amount=-1 +kerning first=65 second=339 amount=-1 +kerning first=67 second=234 amount=-2 +kerning first=103 second=234 amount=-2 +kerning first=366 second=237 amount=-2 +kerning first=1051 second=1114 amount=-1 +kerning first=286 second=274 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=334 second=84 amount=-2 +kerning first=330 second=237 amount=-1 +kerning first=221 second=110 amount=-3 +kerning first=268 second=212 amount=-3 +kerning first=1114 second=1116 amount=-1 +kerning first=206 second=339 amount=-2 +kerning first=257 second=110 amount=-1 +kerning first=192 second=121 amount=-3 +kerning first=332 second=8217 amount=-2 +kerning first=258 second=237 amount=-1 +kerning first=199 second=379 amount=-2 +kerning first=101 second=339 amount=-1 +kerning first=222 second=237 amount=-1 +kerning first=366 second=324 amount=-2 +kerning first=217 second=350 amount=-3 +kerning first=365 second=110 amount=-1 +kerning first=88 second=362 amount=-2 +kerning first=352 second=234 amount=-1 +kerning first=315 second=199 amount=-1 +kerning first=1058 second=1084 amount=-2 +kerning first=89 second=111 amount=-3 +kerning first=325 second=350 amount=-2 +kerning first=1092 second=1119 amount=-1 +kerning first=222 second=209 amount=-2 +kerning first=120 second=375 amount=-3 +kerning first=228 second=277 amount=-1 +kerning first=67 second=86 amount=-1 +kerning first=258 second=103 amount=-3 +kerning first=192 second=277 amount=-1 +kerning first=286 second=302 amount=-1 +kerning first=379 second=264 amount=-1 +kerning first=8220 second=259 amount=-3 +kerning first=203 second=260 amount=-2 +kerning first=316 second=234 amount=-1 +kerning first=264 second=277 amount=-2 +kerning first=214 second=302 amount=-2 +kerning first=365 second=289 amount=-3 +kerning first=374 second=111 amount=-3 +kerning first=235 second=351 amount=-2 +kerning first=81 second=89 amount=-2 +kerning first=8218 second=259 amount=-2 +kerning first=199 second=264 amount=-3 +kerning first=344 second=212 amount=-3 +kerning first=66 second=199 amount=-3 +kerning first=1064 second=1054 amount=-1 +kerning first=87 second=277 amount=-3 +kerning first=307 second=351 amount=-2 +kerning first=314 second=367 amount=-2 +kerning first=194 second=111 amount=-1 +kerning first=213 second=354 amount=-2 +kerning first=89 second=377 amount=-3 +kerning first=350 second=367 amount=-1 +kerning first=296 second=275 amount=-2 +kerning first=377 second=72 amount=-1 +kerning first=230 second=111 amount=-1 +kerning first=192 second=364 amount=-3 +kerning first=81 second=209 amount=-2 +kerning first=242 second=367 amount=-1 +kerning first=207 second=199 amount=-2 +kerning first=266 second=111 amount=-2 +kerning first=199 second=351 amount=-2 +kerning first=45 second=209 amount=-5 +kerning first=200 second=212 amount=-1 +kerning first=278 second=367 amount=-2 +kerning first=302 second=111 amount=-2 +kerning first=321 second=354 amount=-3 +kerning first=87 second=364 amount=-1 +kerning first=352 second=111 amount=-1 +kerning first=89 second=362 amount=-1 +kerning first=87 second=264 amount=-3 +kerning first=321 second=351 amount=-1 +kerning first=110 second=361 amount=-1 +kerning first=259 second=8249 amount=-2 +kerning first=105 second=121 amount=-3 +kerning first=266 second=377 amount=-2 +kerning first=1088 second=1074 amount=-1 +kerning first=8217 second=119 amount=-1 +kerning first=67 second=85 amount=-2 +kerning first=233 second=244 amount=-1 +kerning first=295 second=8249 amount=-3 +kerning first=199 second=364 amount=-2 +kerning first=1117 second=1077 amount=-1 +kerning first=363 second=257 amount=-1 +kerning first=73 second=277 amount=-2 +kerning first=230 second=97 amount=-2 +kerning first=374 second=377 amount=-3 +kerning first=287 second=361 amount=-1 +kerning first=291 second=257 amount=-3 +kerning first=264 second=367 amount=-2 +kerning first=117 second=311 amount=-2 +kerning first=1081 second=1077 amount=-1 +kerning first=108 second=351 amount=-2 +kerning first=251 second=361 amount=-1 +kerning first=226 second=254 amount=-1 +kerning first=327 second=257 amount=-2 +kerning first=118 second=8249 amount=-4 +kerning first=75 second=287 amount=-2 +kerning first=356 second=267 amount=-3 +kerning first=262 second=254 amount=-1 +kerning first=219 second=257 amount=-3 +kerning first=192 second=367 amount=-3 +kerning first=338 second=377 amount=-1 +kerning first=316 second=111 amount=-1 +kerning first=323 second=361 amount=-2 +kerning first=255 second=257 amount=-3 +kerning first=46 second=8249 amount=-3 +kerning first=221 second=274 amount=-1 +kerning first=381 second=374 amount=-2 +kerning first=374 second=117 amount=-2 +kerning first=235 second=261 amount=-2 +kerning first=87 second=367 amount=-2 +kerning first=111 second=287 amount=-2 +kerning first=338 second=117 amount=-2 +kerning first=260 second=244 amount=-1 +kerning first=69 second=381 amount=-1 +kerning first=252 second=287 amount=-3 +kerning first=122 second=44 amount=-1 +kerning first=8216 second=226 amount=-3 +kerning first=307 second=261 amount=-2 +kerning first=296 second=244 amount=-2 +kerning first=354 second=121 amount=-3 +kerning first=80 second=274 amount=-1 +kerning first=216 second=287 amount=-1 +kerning first=307 second=104 amount=-1 +kerning first=121 second=254 amount=-1 +kerning first=324 second=287 amount=-2 +kerning first=354 second=250 amount=-2 +kerning first=368 second=244 amount=-2 +kerning first=210 second=381 amount=-2 +kerning first=288 second=287 amount=-3 +kerning first=201 second=374 amount=-1 +kerning first=246 second=121 amount=-3 +kerning first=323 second=237 amount=-1 +kerning first=331 second=8249 amount=-3 +kerning first=282 second=381 amount=-1 +kerning first=287 second=237 amount=-2 +kerning first=307 second=114 amount=-1 +kerning first=367 second=8249 amount=-2 +kerning first=1049 second=1104 amount=-1 +kerning first=112 second=378 amount=-2 +kerning first=194 second=281 amount=-1 +kerning first=228 second=107 amount=-1 +kerning first=221 second=171 amount=-5 +kerning first=375 second=337 amount=-3 +kerning first=197 second=347 amount=-2 +kerning first=230 second=281 amount=-1 +kerning first=192 second=107 amount=-2 +kerning first=257 second=171 amount=-2 +kerning first=339 second=337 amount=-1 +kerning first=370 second=97 amount=-3 +kerning first=352 second=240 amount=-1 +kerning first=282 second=250 amount=-2 +kerning first=217 second=378 amount=-3 +kerning first=266 second=281 amount=-2 +kerning first=8220 second=89 amount=-1 +kerning first=303 second=337 amount=-3 +kerning first=1104 second=1078 amount=-1 +kerning first=89 second=117 amount=-2 +kerning first=246 second=250 amount=-1 +kerning first=302 second=281 amount=-2 +kerning first=264 second=107 amount=-1 +kerning first=1048 second=1047 amount=-1 +kerning first=230 second=117 amount=-2 +kerning first=379 second=261 amount=-1 +kerning first=44 second=171 amount=-3 +kerning first=194 second=117 amount=-3 +kerning first=274 second=197 amount=-2 +kerning first=80 second=171 amount=-3 +kerning first=65 second=354 amount=-6 +kerning first=302 second=117 amount=-2 +kerning first=105 second=250 amount=-1 +kerning first=89 second=281 amount=-3 +kerning first=116 second=171 amount=-1 +kerning first=266 second=117 amount=-2 +kerning first=69 second=250 amount=-2 +kerning first=346 second=197 amount=-4 +kerning first=291 second=100 amount=-2 +kerning first=103 second=240 amount=-2 +kerning first=114 second=257 amount=-1 +kerning first=327 second=100 amount=-2 +kerning first=244 second=371 amount=-1 +kerning first=83 second=74 amount=-2 +kerning first=203 second=288 amount=-1 +kerning first=363 second=100 amount=-1 +kerning first=8220 second=246 amount=-3 +kerning first=278 second=354 amount=-1 +kerning first=67 second=240 amount=-2 +kerning first=78 second=257 amount=-2 +kerning first=264 second=264 amount=-3 +kerning first=289 second=378 amount=-3 +kerning first=365 second=171 amount=-2 +kerning first=115 second=314 amount=-2 +kerning first=350 second=354 amount=-3 +kerning first=316 second=240 amount=-1 +kerning first=253 second=378 amount=-3 +kerning first=256 second=314 amount=-2 +kerning first=192 second=264 amount=-3 +kerning first=219 second=100 amount=-2 +kerning first=103 second=371 amount=-1 +kerning first=305 second=347 amount=-1 +kerning first=296 second=74 amount=-1 +kerning first=274 second=338 amount=-1 +kerning first=1085 second=1104 amount=-1 +kerning first=255 second=100 amount=-3 +kerning first=325 second=378 amount=-1 +kerning first=332 second=74 amount=-2 +kerning first=328 second=314 amount=-1 +kerning first=220 second=255 amount=-1 +kerning first=195 second=71 amount=-3 +kerning first=200 second=311 amount=-1 +kerning first=217 second=90 amount=-1 +kerning first=290 second=207 amount=-1 +kerning first=1101 second=1114 amount=-1 +kerning first=45 second=330 amount=-5 +kerning first=313 second=298 amount=-2 +kerning first=81 second=330 amount=-2 +kerning first=101 second=224 amount=-2 +kerning first=8249 second=84 amount=-3 +kerning first=376 second=291 amount=-4 +kerning first=86 second=317 amount=-1 +kerning first=72 second=214 amount=-2 +kerning first=206 second=224 amount=-2 +kerning first=90 second=71 amount=-1 +kerning first=257 second=234 amount=-1 +kerning first=222 second=330 amount=-2 +kerning first=304 second=291 amount=-3 +kerning first=1038 second=1108 amount=-4 +kerning first=268 second=291 amount=-3 +kerning first=104 second=318 amount=-1 +kerning first=317 second=200 amount=-2 +kerning first=278 second=224 amount=-1 +kerning first=232 second=291 amount=-3 +kerning first=242 second=224 amount=-1 +kerning first=195 second=213 amount=-3 +kerning first=196 second=291 amount=-3 +kerning first=236 second=324 amount=-2 +kerning first=350 second=224 amount=-1 +kerning first=200 second=324 amount=-1 +kerning first=245 second=318 amount=-2 +kerning first=85 second=97 amount=-3 +kerning first=84 second=346 amount=-3 +kerning first=314 second=224 amount=-2 +kerning first=380 second=311 amount=-2 +kerning first=267 second=337 amount=-1 +kerning first=281 second=318 amount=-3 +kerning first=298 second=97 amount=-2 +kerning first=90 second=77 amount=-1 +kerning first=344 second=311 amount=-3 +kerning first=86 second=304 amount=-1 +kerning first=231 second=337 amount=-1 +kerning first=87 second=101 amount=-3 +kerning first=334 second=97 amount=-1 +kerning first=195 second=337 amount=-1 +kerning first=353 second=318 amount=-2 +kerning first=226 second=97 amount=-1 +kerning first=192 second=101 amount=-1 +kerning first=262 second=97 amount=-2 +kerning first=236 second=311 amount=-1 +kerning first=76 second=90 amount=-3 +kerning first=317 second=303 amount=-2 +kerning first=228 second=101 amount=-1 +kerning first=371 second=44 amount=-2 +kerning first=117 second=234 amount=-1 +kerning first=354 second=381 amount=-3 +kerning first=353 second=303 amount=-2 +kerning first=264 second=101 amount=-2 +kerning first=335 second=44 amount=-3 +kerning first=45 second=70 amount=-5 +kerning first=8220 second=83 amount=-1 +kerning first=272 second=193 amount=-4 +kerning first=1089 second=1098 amount=-1 +kerning first=281 second=303 amount=-2 +kerning first=1092 second=1107 amount=-1 +kerning first=235 second=104 amount=-2 +kerning first=222 second=70 amount=-2 +kerning first=290 second=325 amount=-1 +kerning first=380 second=324 amount=-2 +kerning first=199 second=104 amount=-1 +kerning first=81 second=70 amount=-2 +kerning first=101 second=249 amount=-2 +kerning first=263 second=44 amount=-3 +kerning first=82 second=284 amount=-3 +kerning first=90 second=213 amount=-1 +kerning first=108 second=227 amount=-2 +kerning first=67 second=111 amount=-2 +kerning first=282 second=316 amount=-1 +kerning first=78 second=251 amount=-2 +kerning first=72 second=227 amount=-2 +kerning first=317 second=194 amount=-2 +kerning first=103 second=111 amount=-2 +kerning first=72 second=351 amount=-2 +kerning first=219 second=251 amount=-1 +kerning first=321 second=85 amount=-3 +kerning first=258 second=234 amount=-1 +kerning first=291 second=251 amount=-1 +kerning first=209 second=303 amount=-1 +kerning first=255 second=251 amount=-1 +kerning first=213 second=85 amount=-1 +kerning first=249 second=227 amount=-1 +kerning first=330 second=234 amount=-2 +kerning first=68 second=303 amount=-1 +kerning first=290 second=201 amount=-1 +kerning first=363 second=251 amount=-1 +kerning first=310 second=211 amount=-3 +kerning first=213 second=227 amount=-1 +kerning first=366 second=234 amount=-2 +kerning first=1074 second=1093 amount=-1 +kerning first=104 second=303 amount=-1 +kerning first=250 second=277 amount=-1 +kerning first=356 second=90 amount=-3 +kerning first=327 second=251 amount=-2 +kerning first=290 second=310 amount=-1 +kerning first=344 second=97 amount=-2 +kerning first=275 second=118 amount=-2 +kerning first=289 second=105 amount=-2 +kerning first=73 second=283 amount=-2 +kerning first=258 second=231 amount=-1 +kerning first=325 second=105 amount=-1 +kerning first=347 second=118 amount=-3 +kerning first=217 second=105 amount=-2 +kerning first=311 second=118 amount=-1 +kerning first=253 second=105 amount=-2 +kerning first=80 second=280 amount=-1 +kerning first=98 second=118 amount=-2 +kerning first=201 second=368 amount=-2 +kerning first=112 second=105 amount=-1 +kerning first=233 second=245 amount=-1 +kerning first=250 second=283 amount=-1 +kerning first=197 second=245 amount=-1 +kerning first=203 second=118 amount=-1 +kerning first=221 second=280 amount=-1 +kerning first=356 second=8249 amount=-5 +kerning first=76 second=105 amount=-2 +kerning first=375 second=228 amount=-3 +kerning first=199 second=84 amount=-1 +kerning first=316 second=337 amount=-1 +kerning first=289 second=241 amount=-1 +kerning first=339 second=228 amount=-2 +kerning first=303 second=228 amount=-2 +kerning first=283 second=335 amount=-1 +kerning first=201 second=108 amount=-1 +kerning first=1045 second=1083 amount=-1 +kerning first=122 second=326 amount=-2 +kerning first=200 second=193 amount=-2 +kerning first=112 second=241 amount=-1 +kerning first=221 second=353 amount=-3 +kerning first=70 second=335 amount=-1 +kerning first=1116 second=1092 amount=-2 +kerning first=253 second=241 amount=-2 +kerning first=106 second=335 amount=-1 +kerning first=199 second=370 amount=-2 +kerning first=90 second=228 amount=-1 +kerning first=363 second=122 amount=-2 +kerning first=375 second=331 amount=-2 +kerning first=1063 second=1085 amount=-1 +kerning first=251 second=231 amount=-1 +kerning first=327 second=122 amount=-1 +kerning first=332 second=362 amount=-1 +kerning first=287 second=231 amount=-2 +kerning first=1063 second=1097 amount=-1 +kerning first=291 second=122 amount=-3 +kerning first=303 second=331 amount=-2 +kerning first=76 second=241 amount=-1 +kerning first=201 second=256 amount=-2 +kerning first=255 second=122 amount=-3 +kerning first=339 second=331 amount=-2 +kerning first=231 second=331 amount=-2 +kerning first=1050 second=1057 amount=-4 +kerning first=379 second=255 amount=-3 +kerning first=1027 second=1097 amount=-2 +kerning first=267 second=331 amount=-2 +kerning first=365 second=116 amount=-1 +kerning first=307 second=255 amount=-3 +kerning first=1043 second=1073 amount=-1 +kerning first=323 second=231 amount=-2 +kerning first=260 second=362 amount=-3 +kerning first=381 second=77 amount=-1 +kerning first=235 second=255 amount=-2 +kerning first=1025 second=1087 amount=-1 +kerning first=377 second=245 amount=-1 +kerning first=88 second=67 amount=-3 +kerning first=90 second=331 amount=-1 +kerning first=199 second=255 amount=-1 +kerning first=232 second=8250 amount=-2 +kerning first=377 second=81 amount=-1 +kerning first=1101 second=1095 amount=-1 +kerning first=378 second=261 amount=-1 +kerning first=1065 second=1095 amount=-3 +kerning first=83 second=362 amount=-3 +kerning first=269 second=245 amount=-1 +kerning first=321 second=214 amount=-1 +kerning first=219 second=122 amount=-3 +kerning first=203 second=266 amount=-1 +kerning first=74 second=231 amount=-2 +kerning first=90 second=65 amount=-1 +kerning first=78 second=122 amount=-1 +kerning first=249 second=345 amount=-1 +kerning first=356 second=282 amount=-1 +kerning first=377 second=229 amount=-1 +kerning first=378 second=307 amount=-1 +kerning first=79 second=217 amount=-1 +kerning first=1047 second=1053 amount=-2 +kerning first=1045 second=1099 amount=-1 +kerning first=284 second=282 amount=-1 +kerning first=305 second=229 amount=-1 +kerning first=200 second=305 amount=-1 +kerning first=88 second=333 amount=-2 +kerning first=1114 second=1084 amount=-1 +kerning first=202 second=68 amount=-2 +kerning first=310 second=216 amount=-3 +kerning first=321 second=122 amount=-3 +kerning first=212 second=282 amount=-2 +kerning first=272 second=305 amount=-1 +kerning first=256 second=217 amount=-3 +kerning first=76 second=74 amount=-1 +kerning first=236 second=305 amount=-2 +kerning first=74 second=346 amount=-1 +kerning first=255 second=106 amount=-2 +kerning first=332 second=80 amount=-2 +kerning first=193 second=67 amount=-3 +kerning first=197 second=81 amount=-3 +kerning first=71 second=282 amount=-1 +kerning first=314 second=230 amount=-2 +kerning first=363 second=106 amount=-2 +kerning first=350 second=230 amount=-2 +kerning first=380 second=305 amount=-2 +kerning first=242 second=230 amount=-1 +kerning first=278 second=230 amount=-1 +kerning first=74 second=243 amount=-2 +kerning first=211 second=204 amount=-2 +kerning first=229 second=333 amount=-1 +kerning first=234 second=307 amount=-2 +kerning first=206 second=230 amount=-2 +kerning first=193 second=333 amount=-1 +kerning first=374 second=281 amount=-3 +kerning first=199 second=378 amount=-2 +kerning first=101 second=230 amount=-2 +kerning first=113 second=242 amount=-1 +kerning first=323 second=346 amount=-2 +kerning first=274 second=334 amount=-1 +kerning first=206 second=79 amount=-2 +kerning first=287 second=243 amount=-2 +kerning first=8250 second=197 amount=-4 +kerning first=202 second=203 amount=-2 +kerning first=323 second=243 amount=-2 +kerning first=193 second=218 amount=-3 +kerning first=275 second=104 amount=-2 +kerning first=8222 second=225 amount=-2 +kerning first=310 second=334 amount=-3 +kerning first=266 second=318 amount=-1 +kerning first=302 second=268 amount=-2 +kerning first=8222 second=250 amount=-1 +kerning first=79 second=69 amount=-2 +kerning first=208 second=73 amount=-2 +kerning first=334 second=112 amount=-1 +kerning first=8218 second=354 amount=-6 +kerning first=266 second=268 amount=-3 +kerning first=83 second=244 amount=-1 +kerning first=204 second=332 amount=-2 +kerning first=278 second=79 amount=-1 +kerning first=277 second=8221 amount=-2 +kerning first=374 second=268 amount=-3 +kerning first=1052 second=1072 amount=-1 +kerning first=119 second=244 amount=-3 +kerning first=338 second=268 amount=-1 +kerning first=251 second=243 amount=-1 +kerning first=346 second=68 amount=-3 +kerning first=245 second=98 amount=-1 +kerning first=83 second=80 amount=-3 +kerning first=89 second=268 amount=-3 +kerning first=274 second=68 amount=-2 +kerning first=1108 second=1098 amount=-1 +kerning first=1072 second=1098 amount=-1 +kerning first=194 second=268 amount=-3 +kerning first=88 second=218 amount=-2 +kerning first=1059 second=1058 amount=-1 +kerning first=233 second=229 amount=-2 +kerning first=198 second=192 amount=-2 +kerning first=346 second=203 amount=-3 +kerning first=269 second=229 amount=-2 +kerning first=202 second=334 amount=-1 +kerning first=121 second=242 amount=-3 +kerning first=201 second=120 amount=-1 +kerning first=274 second=203 amount=-2 +kerning first=85 second=242 amount=-2 +kerning first=1074 second=1099 amount=-1 +kerning first=356 second=279 amount=-3 +kerning first=226 second=242 amount=-1 +kerning first=289 second=99 amount=-2 +kerning first=240 second=229 amount=-1 +kerning first=86 second=192 amount=-6 +kerning first=1038 second=1099 amount=-4 +kerning first=253 second=99 amount=-3 +kerning first=249 second=339 amount=-1 +kerning first=377 second=232 amount=-1 +kerning first=298 second=242 amount=-2 +kerning first=8218 second=224 amount=-2 +kerning first=214 second=289 amount=-1 +kerning first=108 second=339 amount=-1 +kerning first=262 second=242 amount=-2 +kerning first=325 second=99 amount=-2 +kerning first=204 second=229 amount=-2 +kerning first=370 second=242 amount=-2 +kerning first=286 second=289 amount=-3 +kerning first=269 second=232 amount=-1 +kerning first=313 second=282 amount=-2 +kerning first=45 second=249 amount=-1 +kerning first=233 second=232 amount=-1 +kerning first=71 second=119 amount=-1 +kerning first=1045 second=1096 amount=-1 +kerning first=107 second=119 amount=-1 +kerning first=269 second=326 amount=-2 +kerning first=226 second=106 amount=-1 +kerning first=262 second=106 amount=-1 +kerning first=81 second=346 amount=-1 +kerning first=121 second=106 amount=-2 +kerning first=248 second=119 amount=-2 +kerning first=197 second=232 amount=-1 +kerning first=45 second=346 amount=-3 +kerning first=284 second=119 amount=-1 +kerning first=264 second=379 amount=-2 +kerning first=330 second=346 amount=-2 +kerning first=1043 second=1079 amount=-1 +kerning first=350 second=82 amount=-3 +kerning first=356 second=119 amount=-3 +kerning first=336 second=379 amount=-2 +kerning first=258 second=346 amount=-3 +kerning first=1049 second=1116 amount=-1 +kerning first=217 second=99 amount=-2 +kerning first=222 second=346 amount=-1 +kerning first=334 second=106 amount=-1 +kerning first=73 second=289 amount=-3 +kerning first=379 second=73 amount=-1 +kerning first=1102 second=1095 amount=-1 +kerning first=72 second=79 amount=-2 +kerning first=321 second=69 amount=-2 +kerning first=278 second=82 amount=-2 +kerning first=193 second=212 amount=-3 +kerning first=79 second=66 amount=-2 +kerning first=113 second=316 amount=-2 +kerning first=1049 second=1119 amount=-1 +kerning first=1045 second=1042 amount=-1 +kerning first=88 second=212 amount=-3 +kerning first=45 second=196 amount=-4 +kerning first=311 second=269 amount=-3 +kerning first=213 second=69 amount=-2 +kerning first=315 second=302 amount=-2 +kerning first=244 second=98 amount=-1 +kerning first=254 second=316 amount=-2 +kerning first=346 second=350 amount=-1 +kerning first=275 second=269 amount=-1 +kerning first=202 second=216 amount=-1 +kerning first=336 second=8217 amount=-2 +kerning first=1036 second=1089 amount=-2 +kerning first=200 second=199 amount=-1 +kerning first=321 second=79 amount=-1 +kerning first=274 second=216 amount=-1 +kerning first=79 second=205 amount=-2 +kerning first=99 second=229 amount=-2 +kerning first=74 second=89 amount=-1 +kerning first=81 second=76 amount=-2 +kerning first=344 second=199 amount=-3 +kerning first=228 second=8217 amount=-3 +kerning first=100 second=106 amount=-1 +kerning first=45 second=76 amount=-5 +kerning first=304 second=245 amount=-2 +kerning first=289 second=102 amount=-1 +kerning first=226 second=245 amount=-1 +kerning first=209 second=46 amount=-1 +kerning first=220 second=251 amount=-1 +kerning first=258 second=336 amount=-3 +kerning first=245 second=46 amount=-3 +kerning first=1036 second=1060 amount=-4 +kerning first=121 second=245 amount=-3 +kerning first=73 second=286 amount=-2 +kerning first=1088 second=1098 amount=-1 +kerning first=8250 second=318 amount=-1 +kerning first=85 second=245 amount=-2 +kerning first=112 second=102 amount=-1 +kerning first=366 second=336 amount=-1 +kerning first=370 second=245 amount=-2 +kerning first=354 second=266 amount=-3 +kerning first=335 second=8221 amount=-2 +kerning first=112 second=46 amount=-3 +kerning first=1036 second=1086 amount=-2 +kerning first=217 second=102 amount=-1 +kerning first=8218 second=227 amount=-2 +kerning first=298 second=245 amount=-2 +kerning first=282 second=266 amount=-1 +kerning first=104 second=46 amount=-1 +kerning first=1088 second=1083 amount=-2 +kerning first=262 second=245 amount=-2 +kerning first=199 second=252 amount=-2 +kerning first=86 second=202 amount=-1 +kerning first=236 second=45 amount=-3 +kerning first=281 second=316 amount=-3 +kerning first=326 second=316 amount=-1 +kerning first=121 second=103 amount=-3 +kerning first=344 second=45 amount=-4 +kerning first=315 second=296 amount=-2 +kerning first=246 second=347 amount=-2 +kerning first=85 second=103 amount=-4 +kerning first=195 second=219 amount=-3 +kerning first=307 second=252 amount=-1 +kerning first=208 second=364 amount=-1 +kerning first=99 second=226 amount=-2 +kerning first=380 second=45 amount=-3 +kerning first=204 second=335 amount=-2 +kerning first=381 second=259 amount=-1 +kerning first=204 second=226 amount=-2 +kerning first=240 second=226 amount=-1 +kerning first=76 second=253 amount=-3 +kerning first=85 second=369 amount=-1 +kerning first=112 second=253 amount=-3 +kerning first=246 second=375 amount=-3 +kerning first=66 second=85 amount=-3 +kerning first=345 second=259 amount=-1 +kerning first=1067 second=1073 amount=-1 +kerning first=217 second=253 amount=-1 +kerning first=352 second=246 amount=-1 +kerning first=121 second=369 amount=-1 +kerning first=370 second=103 amount=-4 +kerning first=187 second=287 amount=-3 +kerning first=316 second=246 amount=-1 +kerning first=334 second=103 amount=-1 +kerning first=8218 second=85 amount=-3 +kerning first=289 second=253 amount=-1 +kerning first=379 second=252 amount=-3 +kerning first=87 second=116 amount=-1 +kerning first=83 second=356 amount=-3 +kerning first=298 second=103 amount=-3 +kerning first=325 second=253 amount=-2 +kerning first=354 second=375 amount=-3 +kerning first=201 second=259 amount=-1 +kerning first=262 second=103 amount=-3 +kerning first=192 second=116 amount=-1 +kerning first=74 second=83 amount=-1 +kerning first=226 second=103 amount=-2 +kerning first=296 second=267 amount=-2 +kerning first=255 second=382 amount=-3 +kerning first=212 second=122 amount=-2 +kerning first=103 second=246 amount=-2 +kerning first=370 second=369 amount=-1 +kerning first=291 second=382 amount=-3 +kerning first=363 second=109 amount=-1 +kerning first=67 second=246 amount=-2 +kerning first=107 second=279 amount=-3 +kerning first=8220 second=240 amount=-3 +kerning first=327 second=382 amount=-1 +kerning first=79 second=323 amount=-2 +kerning first=363 second=382 amount=-2 +kerning first=71 second=122 amount=-1 +kerning first=262 second=369 amount=-2 +kerning first=65 second=81 amount=-3 +kerning first=255 second=109 amount=-2 +kerning first=356 second=122 amount=-3 +kerning first=226 second=369 amount=-1 +kerning first=323 second=83 amount=-2 +kerning first=69 second=266 amount=-1 +kerning first=284 second=122 amount=-1 +kerning first=298 second=369 amount=-2 +kerning first=76 second=362 amount=-3 +kerning first=332 second=356 amount=-2 +kerning first=219 second=382 amount=-3 +kerning first=291 second=109 amount=-1 +kerning first=248 second=122 amount=-2 +kerning first=1088 second=1080 amount=-1 +kerning first=240 second=223 amount=-1 +kerning first=105 second=115 amount=-2 +kerning first=8218 second=230 amount=-2 +kerning first=218 second=198 amount=-4 +kerning first=298 second=248 amount=-2 +kerning first=101 second=233 amount=-1 +kerning first=1038 second=1105 amount=-4 +kerning first=83 second=90 amount=-1 +kerning first=69 second=115 amount=-1 +kerning first=290 second=198 amount=-3 +kerning first=226 second=248 amount=-1 +kerning first=201 second=380 amount=-2 +kerning first=354 second=263 amount=-3 +kerning first=86 second=109 amount=-3 +kerning first=363 second=117 amount=-1 +kerning first=206 second=233 amount=-2 +kerning first=85 second=248 amount=-2 +kerning first=376 second=288 amount=-3 +kerning first=121 second=248 amount=-3 +kerning first=171 second=89 amount=-3 +kerning first=117 second=307 amount=-2 +kerning first=99 second=223 amount=-1 +kerning first=246 second=115 amount=-2 +kerning first=290 second=313 amount=-1 +kerning first=68 second=315 amount=-2 +kerning first=350 second=233 amount=-1 +kerning first=112 second=365 amount=-1 +kerning first=314 second=233 amount=-1 +kerning first=76 second=365 amount=-2 +kerning first=202 second=213 amount=-1 +kerning first=354 second=115 amount=-3 +kerning first=287 second=355 amount=-1 +kerning first=248 second=249 amount=-1 +kerning first=251 second=355 amount=-1 +kerning first=274 second=213 amount=-1 +kerning first=198 second=298 amount=-2 +kerning first=83 second=350 amount=-1 +kerning first=87 second=110 amount=-3 +kerning first=222 second=73 amount=-2 +kerning first=362 second=198 amount=-4 +kerning first=105 second=263 amount=-1 +kerning first=310 second=213 amount=-3 +kerning first=228 second=110 amount=-1 +kerning first=354 second=377 amount=-3 +kerning first=260 second=350 amount=-3 +kerning first=202 second=328 amount=-1 +kerning first=264 second=110 amount=-1 +kerning first=45 second=73 amount=-5 +kerning first=296 second=350 amount=-2 +kerning first=85 second=363 amount=-1 +kerning first=211 second=325 amount=-2 +kerning first=216 second=303 amount=-1 +kerning first=8250 second=203 amount=-5 +kerning first=90 second=225 amount=-1 +kerning first=81 second=73 amount=-2 +kerning first=103 second=98 amount=-1 +kerning first=97 second=328 amount=-1 +kerning first=121 second=363 amount=-1 +kerning first=67 second=98 amount=-1 +kerning first=65 second=85 amount=-3 +kerning first=258 second=221 amount=-6 +kerning first=346 second=328 amount=-1 +kerning first=226 second=363 amount=-1 +kerning first=324 second=303 amount=-1 +kerning first=262 second=363 amount=-2 +kerning first=200 second=196 amount=-2 +kerning first=222 second=205 amount=-2 +kerning first=68 second=200 amount=-2 +kerning first=286 second=44 amount=-3 +kerning first=317 second=315 amount=-2 +kerning first=332 second=350 amount=-1 +kerning first=274 second=328 amount=-1 +kerning first=298 second=363 amount=-2 +kerning first=252 second=303 amount=-2 +kerning first=222 second=221 amount=-2 +kerning first=368 second=350 amount=-3 +kerning first=69 second=260 amount=-2 +kerning first=272 second=196 amount=-4 +kerning first=339 second=225 amount=-2 +kerning first=352 second=98 amount=-2 +kerning first=366 second=264 amount=-1 +kerning first=210 second=260 amount=-4 +kerning first=370 second=363 amount=-1 +kerning first=381 second=380 amount=-3 +kerning first=375 second=225 amount=-3 +kerning first=316 second=98 amount=-1 +kerning first=82 second=290 amount=-3 +kerning first=282 second=260 amount=-2 +kerning first=382 second=328 amount=-2 +kerning first=1045 second=1093 amount=-2 +kerning first=354 second=260 amount=-6 +kerning first=103 second=117 amount=-1 +kerning first=350 second=85 amount=-3 +kerning first=231 second=225 amount=-2 +kerning first=267 second=225 amount=-2 +kerning first=8222 second=375 amount=-1 +kerning first=280 second=98 amount=-1 +kerning first=278 second=85 amount=-2 +kerning first=303 second=225 amount=-2 +kerning first=1074 second=1102 amount=-1 +kerning first=78 second=112 amount=-1 +kerning first=8249 second=374 amount=-3 +kerning first=1052 second=1077 amount=-1 +kerning first=8250 second=382 amount=-5 +kerning first=261 second=107 amount=-1 +kerning first=87 second=261 amount=-5 +kerning first=307 second=367 amount=-1 +kerning first=45 second=302 amount=-5 +kerning first=199 second=367 amount=-2 +kerning first=74 second=352 amount=-1 +kerning first=235 second=367 amount=-2 +kerning first=278 second=351 amount=-1 +kerning first=381 second=111 amount=-1 +kerning first=242 second=351 amount=-2 +kerning first=266 second=315 amount=-3 +kerning first=350 second=351 amount=-1 +kerning first=201 second=377 amount=-1 +kerning first=328 second=326 amount=-1 +kerning first=314 second=351 amount=-2 +kerning first=336 second=8220 amount=-2 +kerning first=364 second=326 amount=-2 +kerning first=1036 second=1092 amount=-2 +kerning first=363 second=112 amount=-2 +kerning first=338 second=78 amount=-2 +kerning first=88 second=252 amount=-3 +kerning first=73 second=171 amount=-4 +kerning first=197 second=235 amount=-1 +kerning first=115 second=326 amount=-2 +kerning first=327 second=112 amount=-1 +kerning first=109 second=171 amount=-3 +kerning first=74 second=86 amount=-1 +kerning first=233 second=235 amount=-1 +kerning first=220 second=211 amount=-1 +kerning first=82 second=287 amount=-3 +kerning first=291 second=112 amount=-1 +kerning first=291 second=113 amount=-2 +kerning first=192 second=8220 amount=-5 +kerning first=381 second=377 amount=-1 +kerning first=269 second=235 amount=-1 +kerning first=256 second=211 amount=-3 +kerning first=255 second=112 amount=-2 +kerning first=228 second=261 amount=-1 +kerning first=217 second=250 amount=-1 +kerning first=66 second=302 amount=-4 +kerning first=219 second=112 amount=-2 +kerning first=264 second=261 amount=-2 +kerning first=118 second=287 amount=-3 +kerning first=8220 second=243 amount=-3 +kerning first=377 second=235 amount=-1 +kerning first=364 second=211 amount=-1 +kerning first=104 second=121 amount=-2 +kerning first=1047 second=1103 amount=-2 +kerning first=114 second=112 amount=1 +kerning first=194 second=363 amount=-3 +kerning first=253 second=250 amount=-1 +kerning first=260 second=353 amount=-2 +kerning first=251 second=237 amount=-2 +kerning first=282 second=378 amount=-2 +kerning first=331 second=287 amount=-2 +kerning first=264 second=113 amount=-2 +kerning first=296 second=353 amount=-2 +kerning first=8216 second=335 amount=-3 +kerning first=246 second=378 amount=-2 +kerning first=295 second=287 amount=-2 +kerning first=228 second=113 amount=-1 +kerning first=381 second=262 amount=-1 +kerning first=119 second=261 amount=-3 +kerning first=354 second=378 amount=-3 +kerning first=112 second=250 amount=-1 +kerning first=192 second=113 amount=-1 +kerning first=368 second=353 amount=-2 +kerning first=110 second=237 amount=-1 +kerning first=367 second=287 amount=-3 +kerning first=325 second=365 amount=-2 +kerning first=74 second=237 amount=-2 +kerning first=105 second=378 amount=-1 +kerning first=262 second=366 amount=-2 +kerning first=289 second=365 amount=-1 +kerning first=69 second=378 amount=-2 +kerning first=250 second=171 amount=-2 +kerning first=253 second=365 amount=-1 +kerning first=374 second=242 amount=-3 +kerning first=281 second=369 amount=-2 +kerning first=286 second=171 amount=-3 +kerning first=370 second=100 amount=-2 +kerning first=224 second=353 amount=-1 +kerning first=87 second=379 amount=-3 +kerning first=66 second=171 amount=-3 +kerning first=199 second=249 amount=-2 +kerning first=268 second=288 amount=-3 +kerning first=233 second=109 amount=-2 +kerning first=317 second=197 amount=-2 +kerning first=1025 second=1078 amount=-2 +kerning first=323 second=352 amount=-2 +kerning first=235 second=249 amount=-2 +kerning first=377 second=87 amount=-2 +kerning first=73 second=112 amount=-1 +kerning first=226 second=100 amount=-1 +kerning first=381 second=216 amount=-1 +kerning first=304 second=288 amount=-2 +kerning first=262 second=100 amount=-2 +kerning first=275 second=275 amount=-1 +kerning first=197 second=87 amount=-6 +kerning first=87 second=113 amount=-3 +kerning first=201 second=262 amount=-1 +kerning first=221 second=202 amount=-1 +kerning first=1056 second=1104 amount=-1 +kerning first=196 second=288 amount=-3 +kerning first=307 second=249 amount=-1 +kerning first=85 second=100 amount=-2 +kerning first=80 second=243 amount=-1 +kerning first=90 second=117 amount=-3 +kerning first=213 second=217 amount=-1 +kerning first=122 second=314 amount=-2 +kerning first=377 second=115 amount=-2 +kerning first=378 second=106 amount=-2 +kerning first=346 second=218 amount=-3 +kerning first=70 second=269 amount=-1 +kerning first=327 second=288 amount=-2 +kerning first=227 second=314 amount=-1 +kerning first=321 second=217 amount=-3 +kerning first=198 second=366 amount=-2 +kerning first=316 second=333 amount=-1 +kerning first=78 second=288 amount=-2 +kerning first=68 second=68 amount=-2 +kerning first=234 second=113 amount=-1 +kerning first=106 second=269 amount=-1 +kerning first=1047 second=1118 amount=-1 +kerning first=219 second=288 amount=-1 +kerning first=371 second=314 amount=-2 +kerning first=352 second=333 amount=-1 +kerning first=117 second=224 amount=-1 +kerning first=45 second=367 amount=-1 +kerning first=268 second=198 amount=-3 +kerning first=88 second=262 amount=-3 +kerning first=81 second=224 amount=-1 +kerning first=381 second=281 amount=-1 +kerning first=254 second=307 amount=-1 +kerning first=283 second=269 amount=-1 +kerning first=222 second=224 amount=-1 +kerning first=195 second=210 amount=-3 +kerning first=337 second=255 amount=-3 +kerning first=193 second=262 amount=-3 +kerning first=326 second=307 amount=-1 +kerning first=257 second=243 amount=-1 +kerning first=370 second=326 amount=-2 +kerning first=90 second=210 amount=-1 +kerning first=45 second=257 amount=-1 +kerning first=229 second=255 amount=-3 +kerning first=202 second=197 amount=-2 +kerning first=366 second=224 amount=-3 +kerning first=193 second=255 amount=-3 +kerning first=330 second=224 amount=-2 +kerning first=381 second=274 amount=-1 +kerning first=203 second=229 amount=-1 +kerning first=280 second=73 amount=-2 +kerning first=86 second=75 amount=-1 +kerning first=98 second=229 amount=-1 +kerning first=8220 second=256 amount=-8 +kerning first=352 second=73 amount=-3 +kerning first=199 second=101 amount=-2 +kerning first=252 second=99 amount=-1 +kerning first=235 second=101 amount=-1 +kerning first=376 second=198 amount=-6 +kerning first=347 second=229 amount=-1 +kerning first=216 second=120 amount=-1 +kerning first=8217 second=81 amount=-2 +kerning first=296 second=118 amount=-2 +kerning first=252 second=120 amount=-2 +kerning first=307 second=101 amount=-1 +kerning first=275 second=229 amount=-2 +kerning first=283 second=248 amount=-1 +kerning first=311 second=229 amount=-2 +kerning first=368 second=118 amount=-2 +kerning first=324 second=120 amount=-1 +kerning first=90 second=203 amount=-1 +kerning first=379 second=101 amount=-1 +kerning first=69 second=108 amount=-1 +kerning first=208 second=80 amount=-2 +kerning first=378 second=113 amount=-1 +kerning first=119 second=118 amount=-1 +kerning first=321 second=196 amount=-2 +kerning first=233 second=347 amount=-2 +kerning first=337 second=8220 amount=-2 +kerning first=260 second=118 amount=-3 +kerning first=352 second=226 amount=-2 +kerning first=280 second=80 amount=-2 +kerning first=224 second=118 amount=-3 +kerning first=334 second=87 amount=-2 +kerning first=67 second=80 amount=-3 +kerning first=213 second=196 amount=-4 +kerning first=288 second=198 amount=-3 +kerning first=229 second=8220 amount=-3 +kerning first=234 second=106 amount=-2 +kerning first=262 second=87 amount=-1 +kerning first=83 second=118 amount=-3 +kerning first=317 second=68 amount=-2 +kerning first=75 second=99 amount=-2 +kerning first=88 second=8220 amount=-2 +kerning first=356 second=249 amount=-1 +kerning first=224 second=111 amount=-1 +kerning first=1057 second=1113 amount=-1 +kerning first=280 second=361 amount=-2 +kerning first=260 second=111 amount=-1 +kerning first=65 second=364 amount=-3 +kerning first=221 second=264 amount=-3 +kerning first=244 second=361 amount=-1 +kerning first=296 second=111 amount=-2 +kerning first=8217 second=116 amount=-1 +kerning first=352 second=361 amount=-1 +kerning first=68 second=89 amount=-2 +kerning first=316 second=361 amount=-2 +kerning first=78 second=267 amount=-2 +kerning first=278 second=364 amount=-2 +kerning first=1064 second=1116 amount=-1 +kerning first=291 second=267 amount=-2 +kerning first=83 second=111 amount=-1 +kerning first=255 second=316 amount=-2 +kerning first=76 second=368 amount=-3 +kerning first=327 second=267 amount=-2 +kerning first=119 second=111 amount=-3 +kerning first=291 second=316 amount=-3 +kerning first=347 second=257 amount=-1 +kerning first=219 second=267 amount=-2 +kerning first=230 second=233 amount=-1 +kerning first=1100 second=1116 amount=-1 +kerning first=255 second=267 amount=-3 +kerning first=278 second=104 amount=-1 +kerning first=334 second=66 amount=-2 +kerning first=211 second=44 amount=-3 +kerning first=242 second=104 amount=-1 +kerning first=381 second=337 amount=-1 +kerning first=317 second=89 amount=-3 +kerning first=262 second=66 amount=-3 +kerning first=283 second=44 amount=-3 +kerning first=1057 second=1057 amount=-1 +kerning first=368 second=111 amount=-2 +kerning first=119 second=353 amount=-3 +kerning first=1057 second=1114 amount=-1 +kerning first=103 second=361 amount=-1 +kerning first=286 second=205 amount=-1 +kerning first=201 second=274 amount=-2 +kerning first=1088 second=1117 amount=-1 +kerning first=67 second=361 amount=-2 +kerning first=350 second=104 amount=-2 +kerning first=106 second=44 amount=-2 +kerning first=314 second=104 amount=-1 +kerning first=70 second=44 amount=-3 +kerning first=314 second=97 amount=-2 +kerning first=226 second=326 amount=-1 +kerning first=347 second=250 amount=-1 +kerning first=370 second=347 amount=-2 +kerning first=201 second=302 amount=-2 +kerning first=89 second=278 amount=-1 +kerning first=350 second=97 amount=-2 +kerning first=262 second=326 amount=-1 +kerning first=311 second=250 amount=-1 +kerning first=376 second=226 amount=-5 +kerning first=83 second=378 amount=-2 +kerning first=346 second=346 amount=-1 +kerning first=242 second=97 amount=-1 +kerning first=298 second=347 amount=-2 +kerning first=214 second=205 amount=-2 +kerning first=278 second=97 amount=-1 +kerning first=262 second=347 amount=-2 +kerning first=1057 second=1095 amount=-2 +kerning first=226 second=347 amount=-1 +kerning first=224 second=371 amount=-1 +kerning first=266 second=278 amount=-3 +kerning first=85 second=326 amount=-2 +kerning first=73 second=233 amount=-2 +kerning first=8220 second=277 amount=-3 +kerning first=298 second=229 amount=-2 +kerning first=374 second=278 amount=-1 +kerning first=121 second=326 amount=-2 +kerning first=275 second=250 amount=-2 +kerning first=1030 second=1116 amount=-1 +kerning first=1039 second=1099 amount=-1 +kerning first=338 second=278 amount=-2 +kerning first=262 second=354 amount=-1 +kerning first=85 second=347 amount=-2 +kerning first=332 second=378 amount=-2 +kerning first=368 second=90 amount=-1 +kerning first=263 second=103 amount=-3 +kerning first=363 second=316 amount=-2 +kerning first=275 second=257 amount=-2 +kerning first=376 second=219 amount=-1 +kerning first=296 second=378 amount=-1 +kerning first=332 second=90 amount=-2 +kerning first=227 second=103 amount=-2 +kerning first=334 second=354 amount=-2 +kerning first=250 second=233 amount=-1 +kerning first=311 second=257 amount=-2 +kerning first=103 second=333 amount=-2 +kerning first=280 second=45 amount=-2 +kerning first=98 second=250 amount=-1 +kerning first=119 second=371 amount=-1 +kerning first=203 second=257 amount=-1 +kerning first=368 second=378 amount=-3 +kerning first=122 second=103 amount=-2 +kerning first=381 second=302 amount=-1 +kerning first=73 second=212 amount=-2 +kerning first=268 second=219 amount=-2 +kerning first=8222 second=253 amount=-1 +kerning first=86 second=103 amount=-4 +kerning first=98 second=257 amount=-1 +kerning first=1057 second=1092 amount=-1 +kerning first=119 second=378 amount=-3 +kerning first=316 second=45 amount=-3 +kerning first=1057 second=1085 amount=-1 +kerning first=86 second=110 amount=-3 +kerning first=232 second=226 amount=-2 +kerning first=365 second=271 amount=-1 +kerning first=196 second=219 amount=-3 +kerning first=1093 second=1092 amount=-2 +kerning first=248 second=8250 amount=-2 +kerning first=122 second=110 amount=-2 +kerning first=268 second=226 amount=-2 +kerning first=67 second=333 amount=-2 +kerning first=224 second=378 amount=-1 +kerning first=304 second=226 amount=-2 +kerning first=227 second=110 amount=-1 +kerning first=122 second=363 amount=-2 +kerning first=250 second=240 amount=-1 +kerning first=278 second=214 amount=-1 +kerning first=1031 second=1098 amount=-1 +kerning first=1072 second=1114 amount=-1 +kerning first=1064 second=1088 amount=-1 +kerning first=227 second=363 amount=-1 +kerning first=284 second=86 amount=-3 +kerning first=1050 second=1089 amount=-2 +kerning first=1100 second=1088 amount=-1 +kerning first=335 second=110 amount=-1 +kerning first=263 second=363 amount=-2 +kerning first=330 second=259 amount=-2 +kerning first=88 second=318 amount=-1 +kerning first=371 second=110 amount=-2 +kerning first=211 second=220 amount=-1 +kerning first=202 second=65 amount=-2 +kerning first=379 second=353 amount=-2 +kerning first=335 second=363 amount=-1 +kerning first=1103 second=1108 amount=-1 +kerning first=193 second=318 amount=-2 +kerning first=280 second=284 amount=-1 +kerning first=1108 second=1114 amount=-1 +kerning first=274 second=65 amount=-2 +kerning first=366 second=259 amount=-3 +kerning first=229 second=318 amount=-1 +kerning first=206 second=214 amount=-2 +kerning first=205 second=369 amount=-2 +kerning first=277 second=116 amount=-1 +kerning first=75 second=71 amount=-3 +kerning first=346 second=65 amount=-4 +kerning first=117 second=259 amount=-1 +kerning first=201 second=330 amount=-2 +kerning first=277 second=369 amount=-2 +kerning first=337 second=318 amount=-2 +kerning first=65 second=214 amount=-3 +kerning first=241 second=369 amount=-1 +kerning first=222 second=259 amount=-1 +kerning first=1057 second=1096 amount=-1 +kerning first=211 second=304 amount=-2 +kerning first=100 second=116 amount=-1 +kerning first=73 second=240 amount=-2 +kerning first=206 second=97 amount=-2 +kerning first=351 second=225 amount=-1 +kerning first=100 second=369 amount=-1 +kerning first=81 second=259 amount=-1 +kerning first=381 second=330 amount=-1 +kerning first=45 second=259 amount=-1 +kerning first=101 second=97 amount=-2 +kerning first=324 second=324 amount=-1 +kerning first=1104 second=1075 amount=-1 +kerning first=224 second=228 amount=-1 +kerning first=246 second=253 amount=-3 +kerning first=68 second=377 amount=-2 +kerning first=113 second=279 amount=-1 +kerning first=112 second=375 amount=-3 +kerning first=119 second=228 amount=-3 +kerning first=195 second=374 amount=-6 +kerning first=76 second=375 amount=-3 +kerning first=232 second=254 amount=-2 +kerning first=83 second=228 amount=-1 +kerning first=218 second=279 amount=-2 +kerning first=354 second=253 amount=-3 +kerning first=66 second=209 amount=-4 +kerning first=118 second=355 amount=-1 +kerning first=90 second=374 amount=-2 +kerning first=325 second=375 amount=-2 +kerning first=313 second=369 amount=-2 +kerning first=111 second=324 amount=-1 +kerning first=268 second=337 amount=-2 +kerning first=82 second=355 amount=-3 +kerning first=289 second=375 amount=-1 +kerning first=252 second=324 amount=-1 +kerning first=99 second=273 amount=-1 +kerning first=77 second=279 amount=-2 +kerning first=346 second=8221 amount=-2 +kerning first=217 second=375 amount=-1 +kerning first=220 second=332 amount=-1 +kerning first=223 second=355 amount=-1 +kerning first=1067 second=1108 amount=-1 +kerning first=105 second=45 amount=-3 +kerning first=1104 second=1103 amount=-2 +kerning first=187 second=355 amount=-1 +kerning first=201 second=287 amount=-3 +kerning first=317 second=377 amount=-3 +kerning first=1031 second=1108 amount=-1 +kerning first=88 second=234 amount=-2 +kerning first=262 second=298 amount=-3 +kerning first=81 second=287 amount=-1 +kerning first=256 second=332 amount=-3 +kerning first=67 second=284 amount=-3 +kerning first=45 second=287 amount=-3 +kerning first=8250 second=356 amount=-4 +kerning first=193 second=234 amount=-1 +kerning first=364 second=332 amount=-1 +kerning first=334 second=298 amount=-2 +kerning first=367 second=355 amount=-1 +kerning first=198 second=310 amount=-2 +kerning first=229 second=234 amount=-1 +kerning first=1096 second=1077 amount=-1 +kerning first=86 second=363 amount=-2 +kerning first=1071 second=1119 amount=-1 +kerning first=117 second=287 amount=-3 +kerning first=362 second=279 amount=-2 +kerning first=1051 second=1088 amount=-1 +kerning first=258 second=287 amount=-3 +kerning first=212 second=313 amount=-2 +kerning first=371 second=335 amount=-3 +kerning first=289 second=108 amount=-3 +kerning first=198 second=338 amount=-1 +kerning first=193 second=290 amount=-3 +kerning first=222 second=8217 amount=-2 +kerning first=222 second=287 amount=-1 +kerning first=258 second=8217 amount=-5 +kerning first=197 second=242 amount=-1 +kerning first=330 second=287 amount=-3 +kerning first=380 second=118 amount=-2 +kerning first=381 second=105 amount=-1 +kerning first=99 second=245 amount=-1 +kerning first=269 second=242 amount=-1 +kerning first=76 second=197 amount=-2 +kerning first=233 second=242 amount=-1 +kerning first=366 second=287 amount=-4 +kerning first=71 second=313 amount=-1 +kerning first=201 second=105 amount=-1 +kerning first=88 second=290 amount=-3 +kerning first=117 second=8217 amount=-3 +kerning first=1074 second=1083 amount=-1 +kerning first=217 second=197 amount=-4 +kerning first=216 second=380 amount=-2 +kerning first=334 second=270 amount=-2 +kerning first=1064 second=1060 amount=-1 +kerning first=105 second=225 amount=-2 +kerning first=1049 second=1094 amount=-1 +kerning first=252 second=380 amount=-2 +kerning first=1086 second=1117 amount=-1 +kerning first=377 second=242 amount=-1 +kerning first=86 second=335 amount=-3 +kerning first=76 second=108 amount=-2 +kerning first=87 second=119 amount=-3 +kerning first=1077 second=1085 amount=-1 +kerning first=330 second=231 amount=-2 +kerning first=210 second=225 amount=-1 +kerning first=122 second=335 amount=-1 +kerning first=324 second=380 amount=-1 +kerning first=84 second=90 amount=-3 +kerning first=366 second=231 amount=-2 +kerning first=246 second=225 amount=-1 +kerning first=192 second=119 amount=-3 +kerning first=1060 second=1049 amount=-1 +kerning first=368 second=228 amount=-3 +kerning first=112 second=108 amount=-2 +kerning first=228 second=119 amount=-3 +kerning first=1024 second=1049 amount=-1 +kerning first=332 second=228 amount=-1 +kerning first=1061 second=1118 amount=-2 +kerning first=253 second=108 amount=-2 +kerning first=264 second=119 amount=-1 +kerning first=262 second=270 amount=-3 +kerning first=296 second=228 amount=-2 +kerning first=89 second=74 amount=-4 +kerning first=69 second=225 amount=-1 +kerning first=235 second=122 amount=-2 +kerning first=374 second=46 amount=-5 +kerning first=199 second=122 amount=-2 +kerning first=296 second=83 amount=-2 +kerning first=67 second=256 amount=-3 +kerning first=117 second=231 amount=-1 +kerning first=85 second=328 amount=-2 +kerning first=187 second=102 amount=-1 +kerning first=216 second=352 amount=-1 +kerning first=376 second=201 amount=-1 +kerning first=266 second=74 amount=-2 +kerning first=223 second=102 amount=-1 +kerning first=8250 second=328 amount=-2 +kerning first=379 second=122 amount=-3 +kerning first=302 second=74 amount=-1 +kerning first=280 second=256 amount=-2 +kerning first=288 second=352 amount=-2 +kerning first=1031 second=1080 amount=-1 +kerning first=282 second=225 amount=-1 +kerning first=338 second=74 amount=-1 +kerning first=87 second=211 amount=-3 +kerning first=208 second=352 amount=-1 +kerning first=374 second=74 amount=-4 +kerning first=208 second=256 amount=-4 +kerning first=113 second=307 amount=-1 +kerning first=354 second=225 amount=-5 +kerning first=1092 second=1097 amount=-1 +kerning first=338 second=46 amount=-1 +kerning first=1067 second=1080 amount=-1 +kerning first=83 second=200 amount=-3 +kerning first=89 second=46 amount=-5 +kerning first=264 second=211 amount=-3 +kerning first=204 second=245 amount=-2 +kerning first=352 second=256 amount=-4 +kerning first=192 second=211 amount=-3 +kerning first=259 second=102 amount=-1 +kerning first=295 second=102 amount=-1 +kerning first=331 second=102 amount=-1 +kerning first=367 second=102 amount=-1 +kerning first=115 second=171 amount=-1 +kerning first=212 second=112 amount=-1 +kerning first=8250 second=68 amount=-5 +kerning first=362 second=216 amount=-1 +kerning first=256 second=107 amount=-2 +kerning first=220 second=171 amount=-5 +kerning first=77 second=44 amount=-1 +kerning first=107 second=112 amount=-1 +kerning first=379 second=211 amount=-1 +kerning first=256 second=171 amount=-4 +kerning first=71 second=112 amount=-1 +kerning first=1043 second=1086 amount=-3 +kerning first=208 second=8221 amount=-2 +kerning first=115 second=107 amount=-1 +kerning first=244 second=8221 amount=-2 +kerning first=218 second=216 amount=-1 +kerning first=232 second=237 amount=-2 +kerning first=280 second=205 amount=-2 +kerning first=351 second=261 amount=-1 +kerning first=328 second=251 amount=-1 +kerning first=338 second=105 amount=-1 +kerning first=79 second=171 amount=-1 +kerning first=81 second=323 amount=-2 +kerning first=374 second=105 amount=-2 +kerning first=352 second=8221 amount=-2 +kerning first=1063 second=1072 amount=-1 +kerning first=364 second=100 amount=-2 +kerning first=266 second=105 amount=-1 +kerning first=8218 second=217 amount=-3 +kerning first=289 second=235 amount=-2 +kerning first=1027 second=1072 amount=-3 +kerning first=302 second=105 amount=-1 +kerning first=325 second=235 amount=-2 +kerning first=187 second=296 amount=-5 +kerning first=272 second=209 amount=-2 +kerning first=194 second=105 amount=-1 +kerning first=303 second=110 amount=-2 +kerning first=316 second=8221 amount=-3 +kerning first=1099 second=1072 amount=-1 +kerning first=230 second=105 amount=-2 +kerning first=119 second=119 amount=-1 +kerning first=220 second=100 amount=-2 +kerning first=1079 second=1117 amount=-1 +kerning first=356 second=112 amount=-2 +kerning first=89 second=105 amount=-2 +kerning first=195 second=86 amount=-6 +kerning first=1027 second=1113 amount=-3 +kerning first=328 second=171 amount=-3 +kerning first=256 second=100 amount=-1 +kerning first=1043 second=1117 amount=-2 +kerning first=1071 second=1098 amount=-1 +kerning first=120 second=251 amount=-3 +kerning first=364 second=171 amount=-5 +kerning first=211 second=85 amount=-1 +kerning first=284 second=112 amount=-1 +kerning first=356 second=81 amount=-3 +kerning first=90 second=86 amount=-2 +kerning first=84 second=251 amount=-2 +kerning first=187 second=327 amount=-5 +kerning first=83 second=305 amount=-3 +kerning first=364 second=279 amount=-2 +kerning first=248 second=112 amount=-1 +kerning first=82 second=67 amount=-3 +kerning first=225 second=251 amount=-1 +kerning first=66 second=230 amount=-3 +kerning first=1027 second=1079 amount=-1 +kerning first=232 second=275 amount=-1 +kerning first=90 second=353 amount=-2 +kerning first=282 second=210 amount=-1 +kerning first=1063 second=1079 amount=-1 +kerning first=369 second=223 amount=-1 +kerning first=268 second=275 amount=-2 +kerning first=274 second=346 amount=-2 +kerning first=84 second=233 amount=-3 +kerning first=197 second=318 amount=-2 +kerning first=287 second=249 amount=-1 +kerning first=323 second=249 amount=-1 +kerning first=71 second=379 amount=-2 +kerning first=196 second=275 amount=-1 +kerning first=231 second=353 amount=-2 +kerning first=200 second=206 amount=-2 +kerning first=369 second=251 amount=-1 +kerning first=212 second=379 amount=-2 +kerning first=1053 second=1105 amount=-1 +kerning first=333 second=251 amount=-1 +kerning first=74 second=256 amount=-5 +kerning first=272 second=206 amount=-2 +kerning first=381 second=365 amount=-3 +kerning first=82 second=334 amount=-3 +kerning first=333 second=223 amount=-1 +kerning first=84 second=223 amount=-3 +kerning first=364 second=339 amount=-2 +kerning first=1113 second=1114 amount=-1 +kerning first=351 second=230 amount=-1 +kerning first=90 second=83 amount=-1 +kerning first=243 second=230 amount=-1 +kerning first=243 second=249 amount=-1 +kerning first=356 second=313 amount=-1 +kerning first=279 second=230 amount=-2 +kerning first=251 second=249 amount=-1 +kerning first=73 second=268 amount=-2 +kerning first=195 second=83 amount=-3 +kerning first=199 second=211 amount=-3 +kerning first=110 second=249 amount=-1 +kerning first=304 second=275 amount=-2 +kerning first=284 second=313 amount=-1 +kerning first=207 second=230 amount=-2 +kerning first=77 second=244 amount=-2 +kerning first=279 second=289 amount=-3 +kerning first=269 second=103 amount=-3 +kerning first=113 second=244 amount=-1 +kerning first=69 second=194 amount=-2 +kerning first=315 second=289 amount=-3 +kerning first=8250 second=65 amount=-4 +kerning first=380 second=237 amount=-1 +kerning first=220 second=192 amount=-4 +kerning first=351 second=289 amount=-3 +kerning first=248 second=109 amount=-1 +kerning first=218 second=244 amount=-2 +kerning first=71 second=344 amount=-1 +kerning first=323 second=284 amount=-2 +kerning first=1042 second=1091 amount=-1 +kerning first=220 second=339 amount=-2 +kerning first=272 second=237 amount=-1 +kerning first=1078 second=1091 amount=-2 +kerning first=79 second=192 amount=-4 +kerning first=235 second=98 amount=-2 +kerning first=256 second=339 amount=-1 +kerning first=1024 second=1084 amount=-1 +kerning first=236 second=237 amount=-1 +kerning first=1031 second=1116 amount=-1 +kerning first=1114 second=1091 amount=-2 +kerning first=200 second=237 amount=-1 +kerning first=362 second=244 amount=-2 +kerning first=220 second=199 amount=-1 +kerning first=253 second=45 amount=-4 +kerning first=107 second=116 amount=-1 +kerning first=354 second=194 amount=-6 +kerning first=253 second=232 amount=-3 +kerning first=217 second=232 amount=-2 +kerning first=325 second=232 amount=-2 +kerning first=374 second=77 amount=-1 +kerning first=66 second=289 amount=-4 +kerning first=287 second=277 amount=-2 +kerning first=202 second=346 amount=-2 +kerning first=210 second=194 amount=-4 +kerning first=102 second=289 amount=-2 +kerning first=251 second=277 amount=-1 +kerning first=84 second=282 amount=-1 +kerning first=207 second=289 amount=-3 +kerning first=323 second=277 amount=-2 +kerning first=8218 second=221 amount=-6 +kerning first=243 second=289 amount=-2 +kerning first=217 second=111 amount=-2 +kerning first=248 second=351 amount=-2 +kerning first=90 second=350 amount=-1 +kerning first=261 second=254 amount=-1 +kerning first=74 second=277 amount=-2 +kerning first=315 second=202 amount=-2 +kerning first=303 second=121 amount=-2 +kerning first=333 second=254 amount=-1 +kerning first=267 second=121 amount=-2 +kerning first=214 second=379 amount=-2 +kerning first=369 second=254 amount=-2 +kerning first=231 second=121 amount=-2 +kerning first=234 second=8221 amount=-2 +kerning first=1053 second=1102 amount=-1 +kerning first=377 second=69 amount=-1 +kerning first=200 second=209 amount=-2 +kerning first=195 second=121 amount=-3 +kerning first=328 second=367 amount=-1 +kerning first=1089 second=1102 amount=-1 +kerning first=1071 second=1095 amount=-1 +kerning first=120 second=254 amount=-3 +kerning first=364 second=367 amount=-1 +kerning first=195 second=350 amount=-3 +kerning first=110 second=305 amount=-1 +kerning first=90 second=121 amount=-3 +kerning first=256 second=367 amount=-3 +kerning first=1053 second=1074 amount=-1 +kerning first=107 second=351 amount=-2 +kerning first=225 second=254 amount=-1 +kerning first=74 second=305 amount=-2 +kerning first=1089 second=1074 amount=-1 +kerning first=284 second=344 amount=-1 +kerning first=375 second=114 amount=-1 +kerning first=256 second=79 amount=-3 +kerning first=104 second=117 amount=-1 +kerning first=74 second=284 amount=-2 +kerning first=207 second=261 amount=-2 +kerning first=220 second=367 amount=-1 +kerning first=1025 second=1096 amount=-1 +kerning first=245 second=117 amount=-1 +kerning first=77 second=216 amount=-2 +kerning first=287 second=305 amount=-1 +kerning first=346 second=374 amount=-3 +kerning first=303 second=114 amount=-1 +kerning first=244 second=252 amount=-1 +kerning first=1114 second=1119 amount=-1 +kerning first=351 second=117 amount=-1 +kerning first=251 second=305 amount=-1 +kerning first=85 second=260 amount=-4 +kerning first=364 second=199 amount=-1 +kerning first=339 second=114 amount=-1 +kerning first=115 second=367 amount=-1 +kerning first=220 second=79 amount=-1 +kerning first=118 second=353 amount=-3 +kerning first=317 second=117 amount=-2 +kerning first=274 second=374 amount=-1 +kerning first=231 second=114 amount=-1 +kerning first=356 second=351 amount=-3 +kerning first=281 second=117 amount=-2 +kerning first=79 second=72 amount=-2 +kerning first=323 second=305 amount=-1 +kerning first=267 second=114 amount=-1 +kerning first=364 second=192 amount=-4 +kerning first=202 second=374 amount=-1 +kerning first=66 second=261 amount=-3 +kerning first=353 second=117 amount=-1 +kerning first=1043 second=1089 amount=-3 +kerning first=1027 second=1051 amount=-5 +kerning first=262 second=260 amount=-3 +kerning first=102 second=261 amount=-2 +kerning first=364 second=79 amount=-1 +kerning first=381 second=361 amount=-3 +kerning first=121 second=291 amount=-3 +kerning first=370 second=260 amount=-4 +kerning first=337 second=311 amount=-1 +kerning first=248 second=316 amount=-2 +kerning first=315 second=286 amount=-1 +kerning first=85 second=291 amount=-4 +kerning first=334 second=260 amount=-4 +kerning first=207 second=352 amount=-2 +kerning first=284 second=316 amount=-1 +kerning first=367 second=331 amount=-1 +kerning first=8218 second=364 amount=-3 +kerning first=207 second=286 amount=-2 +kerning first=113 second=241 amount=-2 +kerning first=229 second=311 amount=-1 +kerning first=198 second=317 amount=-2 +kerning first=82 second=362 amount=-3 +kerning first=121 second=267 amount=-3 +kerning first=295 second=331 amount=-1 +kerning first=317 second=356 amount=-3 +kerning first=193 second=311 amount=-2 +kerning first=331 second=331 amount=-1 +kerning first=307 second=382 amount=-1 +kerning first=187 second=362 amount=-4 +kerning first=223 second=331 amount=-1 +kerning first=88 second=311 amount=-1 +kerning first=250 second=271 amount=-1 +kerning first=1064 second=1057 amount=-1 +kerning first=85 second=267 amount=-2 +kerning first=259 second=331 amount=-1 +kerning first=66 second=286 amount=-3 +kerning first=84 second=226 amount=-5 +kerning first=379 second=382 amount=-3 +kerning first=118 second=331 amount=-2 +kerning first=187 second=331 amount=-2 +kerning first=278 second=221 amount=-1 +kerning first=1086 second=1082 amount=-1 +kerning first=110 second=252 amount=-1 +kerning first=65 second=221 amount=-6 +kerning first=1024 second=1056 amount=-1 +kerning first=201 second=361 amount=-2 +kerning first=71 second=316 amount=-1 +kerning first=1060 second=1056 amount=-1 +kerning first=328 second=380 amount=-1 +kerning first=204 second=266 amount=-2 +kerning first=1024 second=1087 amount=-1 +kerning first=1053 second=1092 amount=-1 +kerning first=66 second=202 amount=-4 +kerning first=79 second=103 amount=-1 +kerning first=1049 second=1101 amount=-1 +kerning first=229 second=227 amount=-1 +kerning first=101 second=104 amount=-2 +kerning first=303 second=113 amount=-3 +kerning first=251 second=252 amount=-1 +kerning first=65 second=104 amount=-2 +kerning first=90 second=381 amount=-1 +kerning first=287 second=252 amount=-1 +kerning first=203 second=201 amount=-2 +kerning first=76 second=207 amount=-2 +kerning first=323 second=252 amount=-1 +kerning first=355 second=8249 amount=-1 +kerning first=337 second=227 amount=-1 +kerning first=1108 second=1107 amount=-1 +kerning first=120 second=226 amount=-2 +kerning first=74 second=45 amount=-4 +kerning first=71 second=84 amount=-3 +kerning first=1072 second=1107 amount=-1 +kerning first=264 second=246 amount=-2 +kerning first=364 second=103 amount=-4 +kerning first=74 second=336 amount=-2 +kerning first=228 second=246 amount=-1 +kerning first=68 second=356 amount=-2 +kerning first=328 second=103 amount=-2 +kerning first=370 second=291 amount=-4 +kerning first=87 second=346 amount=-3 +kerning first=199 second=382 amount=-2 +kerning first=1036 second=1104 amount=-2 +kerning first=192 second=246 amount=-1 +kerning first=261 second=226 amount=-1 +kerning first=334 second=291 amount=-1 +kerning first=235 second=382 amount=-2 +kerning first=110 second=45 amount=-3 +kerning first=284 second=84 amount=-3 +kerning first=356 second=109 amount=-3 +kerning first=256 second=103 amount=-3 +kerning first=298 second=291 amount=-3 +kerning first=251 second=45 amount=-2 +kerning first=87 second=246 amount=-3 +kerning first=333 second=226 amount=-1 +kerning first=220 second=103 amount=-4 +kerning first=262 second=291 amount=-3 +kerning first=88 second=227 amount=-1 +kerning first=212 second=84 amount=-2 +kerning first=369 second=226 amount=-1 +kerning first=226 second=291 amount=-2 +kerning first=334 second=259 amount=-1 +kerning first=323 second=45 amount=-4 +kerning first=87 second=78 amount=-1 +kerning first=115 second=103 amount=-3 +kerning first=323 second=336 amount=-2 +kerning first=287 second=45 amount=-3 +kerning first=370 second=263 amount=-2 +kerning first=192 second=218 amount=-3 +kerning first=250 second=243 amount=-1 +kerning first=362 second=213 amount=-1 +kerning first=121 second=100 amount=-3 +kerning first=89 second=313 amount=-1 +kerning first=1074 second=1090 amount=-1 +kerning first=226 second=263 amount=-1 +kerning first=336 second=218 amount=-1 +kerning first=198 second=314 amount=-1 +kerning first=112 second=115 amount=-2 +kerning first=262 second=263 amount=-2 +kerning first=350 second=193 amount=-4 +kerning first=73 second=243 amount=-2 +kerning first=298 second=263 amount=-2 +kerning first=77 second=269 amount=-2 +kerning first=264 second=218 amount=-2 +kerning first=356 second=288 amount=-3 +kerning first=229 second=8217 amount=-3 +kerning first=79 second=370 amount=-1 +kerning first=278 second=193 amount=-2 +kerning first=234 second=314 amount=-3 +kerning first=76 second=115 amount=-1 +kerning first=331 second=303 amount=-1 +kerning first=289 second=115 amount=-3 +kerning first=85 second=263 amount=-2 +kerning first=113 second=269 amount=-1 +kerning first=8218 second=97 amount=-2 +kerning first=1059 second=1100 amount=-4 +kerning first=208 second=8249 amount=-1 +kerning first=325 second=115 amount=-2 +kerning first=245 second=120 amount=-3 +kerning first=234 second=345 amount=-1 +kerning first=121 second=263 amount=-3 +kerning first=67 second=8249 amount=-4 +kerning first=259 second=303 amount=-1 +kerning first=217 second=115 amount=-2 +kerning first=281 second=120 amount=-2 +kerning first=201 second=365 amount=-2 +kerning first=218 second=269 amount=-2 +kerning first=103 second=8249 amount=-3 +kerning first=378 second=314 amount=-2 +kerning first=295 second=303 amount=-1 +kerning first=253 second=115 amount=-3 +kerning first=317 second=120 amount=-1 +kerning first=198 second=78 amount=-2 +kerning first=267 second=353 amount=-2 +kerning first=77 second=213 amount=-2 +kerning first=88 second=224 amount=-1 +kerning first=79 second=75 amount=-2 +kerning first=303 second=353 amount=-2 +kerning first=68 second=120 amount=-1 +kerning first=218 second=213 amount=-1 +kerning first=229 second=224 amount=-1 +kerning first=201 second=70 amount=-2 +kerning first=339 second=353 amount=-2 +kerning first=104 second=120 amount=-1 +kerning first=362 second=269 amount=-2 +kerning first=375 second=353 amount=-3 +kerning first=201 second=98 amount=-1 +kerning first=339 second=118 amount=-2 +kerning first=374 second=197 amount=-6 +kerning first=303 second=118 amount=-3 +kerning first=337 second=224 amount=-1 +kerning first=375 second=118 amount=-1 +kerning first=195 second=118 amount=-3 +kerning first=245 second=328 amount=-1 +kerning first=316 second=8249 amount=-3 +kerning first=187 second=303 amount=-1 +kerning first=65 second=101 amount=-1 +kerning first=364 second=196 amount=-4 +kerning first=74 second=259 amount=-3 +kerning first=352 second=8249 amount=-3 +kerning first=223 second=303 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=267 second=118 amount=-2 +kerning first=217 second=235 amount=-2 +kerning first=112 second=307 amount=-1 +kerning first=231 second=118 amount=-2 +kerning first=104 second=328 amount=-1 +kerning first=280 second=8249 amount=-2 +kerning first=118 second=303 amount=-2 +kerning first=206 second=101 amount=-2 +kerning first=253 second=235 amount=-3 +kerning first=362 second=241 amount=-2 +kerning first=220 second=196 amount=-4 +kerning first=353 second=328 amount=-2 +kerning first=326 second=241 amount=-1 +kerning first=266 second=243 amount=-2 +kerning first=193 second=283 amount=-1 +kerning first=90 second=118 amount=-2 +kerning first=317 second=328 amount=-1 +kerning first=1049 second=1073 amount=-1 +kerning first=256 second=370 amount=-3 +kerning first=281 second=328 amount=-2 +kerning first=350 second=101 amount=-1 +kerning first=88 second=283 amount=-2 +kerning first=1025 second=1093 amount=-2 +kerning first=218 second=241 amount=-2 +kerning first=253 second=46 amount=-5 +kerning first=254 second=241 amount=-1 +kerning first=79 second=196 amount=-4 +kerning first=380 second=283 amount=-1 +kerning first=367 second=380 amount=-2 +kerning first=1038 second=1087 amount=-4 +kerning first=344 second=283 amount=-3 +kerning first=117 second=8220 amount=-3 +kerning first=119 second=108 amount=-2 +kerning first=234 second=335 amount=-1 +kerning first=81 second=8220 amount=-2 +kerning first=1042 second=1045 amount=-2 +kerning first=260 second=108 amount=-2 +kerning first=76 second=118 amount=-3 +kerning first=231 second=8221 amount=-2 +kerning first=86 second=345 amount=-1 +kerning first=224 second=108 amount=-1 +kerning first=90 second=244 amount=-1 +kerning first=355 second=121 amount=-1 +kerning first=1031 second=1090 amount=-1 +kerning first=213 second=193 amount=-4 +kerning first=259 second=380 amount=-1 +kerning first=88 second=347 amount=-1 +kerning first=1074 second=1087 amount=-1 +kerning first=295 second=380 amount=-1 +kerning first=240 second=241 amount=-1 +kerning first=263 second=345 amount=-1 +kerning first=331 second=380 amount=-1 +kerning first=1067 second=1090 amount=-1 +kerning first=86 second=338 amount=-3 +kerning first=119 second=115 amount=-3 +kerning first=321 second=193 amount=-2 +kerning first=1042 second=1038 amount=-3 +kerning first=217 second=361 amount=-1 +kerning first=335 second=345 amount=-1 +kerning first=83 second=368 amount=-3 +kerning first=377 second=99 amount=-1 +kerning first=99 second=241 amount=-2 +kerning first=371 second=345 amount=-1 +kerning first=193 second=231 amount=-1 +kerning first=353 second=331 amount=-2 +kerning first=193 second=286 amount=-3 +kerning first=83 second=115 amount=-1 +kerning first=338 second=44 amount=-1 +kerning first=229 second=231 amount=-1 +kerning first=83 second=203 amount=-3 +kerning first=296 second=115 amount=-2 +kerning first=281 second=331 amount=-2 +kerning first=88 second=286 amount=-3 +kerning first=325 second=119 amount=-2 +kerning first=204 second=248 amount=-2 +kerning first=260 second=368 amount=-3 +kerning first=317 second=331 amount=-1 +kerning first=224 second=115 amount=-1 +kerning first=83 second=108 amount=-2 +kerning first=304 second=290 amount=-2 +kerning first=260 second=115 amount=-2 +kerning first=99 second=248 amount=-1 +kerning first=245 second=331 amount=-1 +kerning first=90 second=78 amount=-1 +kerning first=258 second=255 amount=-3 +kerning first=104 second=331 amount=-1 +kerning first=327 second=269 amount=-2 +kerning first=262 second=323 amount=-3 +kerning first=106 second=307 amount=-1 +kerning first=117 second=255 amount=-3 +kerning first=332 second=368 amount=-1 +kerning first=67 second=338 amount=-3 +kerning first=193 second=252 amount=-3 +kerning first=317 second=352 amount=-1 +kerning first=334 second=323 amount=-2 +kerning first=242 second=122 amount=-2 +kerning first=88 second=231 amount=-2 +kerning first=1060 second=1052 amount=-1 +kerning first=67 second=77 amount=-3 +kerning first=45 second=255 amount=-3 +kerning first=1024 second=1052 amount=-1 +kerning first=283 second=307 amount=-2 +kerning first=201 second=278 amount=-2 +kerning first=101 second=122 amount=-2 +kerning first=1086 second=1085 amount=-1 +kerning first=252 second=328 amount=-1 +kerning first=106 second=245 amount=-1 +kerning first=344 second=290 amount=-3 +kerning first=1038 second=1080 amount=-4 +kerning first=80 second=233 amount=-1 +kerning first=70 second=245 amount=-1 +kerning first=381 second=278 amount=-1 +kerning first=221 second=233 amount=-3 +kerning first=1049 second=1097 amount=-1 +kerning first=111 second=328 amount=-1 +kerning first=1074 second=1080 amount=-1 +kerning first=1054 second=1118 amount=-1 +kerning first=236 second=283 amount=-1 +kerning first=283 second=245 amount=-1 +kerning first=200 second=290 amount=-1 +kerning first=197 second=303 amount=-1 +kerning first=229 second=252 amount=-1 +kerning first=257 second=233 amount=-1 +kerning first=90 second=207 amount=-1 +kerning first=313 second=366 amount=-3 +kerning first=378 second=335 amount=-1 +kerning first=68 second=352 amount=-1 +kerning first=250 second=367 amount=-1 +kerning first=324 second=328 amount=-1 +kerning first=365 second=233 amount=-1 +kerning first=209 second=352 amount=-2 +kerning first=337 second=252 amount=-1 +kerning first=323 second=333 amount=-2 +kerning first=1052 second=1087 amount=-1 +kerning first=313 second=106 amount=-2 +kerning first=1050 second=1092 amount=-2 +kerning first=350 second=217 amount=-3 +kerning first=287 second=333 amount=-2 +kerning first=85 second=288 amount=-1 +kerning first=288 second=8221 amount=-1 +kerning first=241 second=106 amount=-2 +kerning first=344 second=218 amount=-3 +kerning first=198 second=110 amount=-1 +kerning first=277 second=106 amount=-2 +kerning first=234 second=110 amount=-2 +kerning first=339 second=378 amount=-2 +kerning first=352 second=281 amount=-1 +kerning first=100 second=113 amount=-1 +kerning first=68 second=65 amount=-4 +kerning first=303 second=378 amount=-1 +kerning first=8218 second=367 amount=-1 +kerning first=243 second=109 amount=-1 +kerning first=251 second=333 amount=-1 +kerning first=375 second=378 amount=-3 +kerning first=1043 second=1080 amount=-2 +kerning first=268 second=262 amount=-3 +kerning first=367 second=99 amount=-1 +kerning first=378 second=110 amount=-2 +kerning first=264 second=243 amount=-2 +kerning first=355 second=307 amount=-1 +kerning first=114 second=347 amount=-1 +kerning first=65 second=217 amount=-3 +kerning first=78 second=347 amount=-2 +kerning first=296 second=210 amount=-2 +kerning first=187 second=377 amount=-4 +kerning first=258 second=262 amount=-3 +kerning first=317 second=65 amount=-2 +kerning first=316 second=281 amount=-1 +kerning first=260 second=210 amount=-3 +kerning first=1118 second=1078 amount=-1 +kerning first=203 second=198 amount=-2 +kerning first=298 second=288 amount=-2 +kerning first=233 second=326 amount=-2 +kerning first=87 second=243 amount=-3 +kerning first=330 second=262 amount=-2 +kerning first=375 second=371 amount=-1 +kerning first=262 second=288 amount=-3 +kerning first=366 second=255 amount=-1 +kerning first=67 second=281 amount=-2 +kerning first=366 second=262 amount=-1 +kerning first=370 second=288 amount=-1 +kerning first=330 second=255 amount=-2 +kerning first=103 second=281 amount=-2 +kerning first=192 second=243 amount=-1 +kerning first=278 second=217 amount=-2 +kerning first=262 second=314 amount=-1 +kerning first=228 second=243 amount=-1 +kerning first=223 second=120 amount=-3 +kerning first=87 second=74 amount=-4 +kerning first=208 second=274 amount=-2 +kerning first=259 second=120 amount=-1 +kerning first=69 second=229 amount=-1 +kerning first=1060 second=1031 amount=-1 +kerning first=362 second=291 amount=-4 +kerning first=118 second=99 amount=-3 +kerning first=78 second=44 amount=-1 +kerning first=295 second=120 amount=-1 +kerning first=1024 second=1031 amount=-1 +kerning first=288 second=68 amount=-1 +kerning first=82 second=99 amount=-3 +kerning first=210 second=229 amount=-1 +kerning first=352 second=274 amount=-3 +kerning first=246 second=229 amount=-1 +kerning first=332 second=203 amount=-2 +kerning first=220 second=365 amount=-1 +kerning first=118 second=120 amount=-1 +kerning first=105 second=229 amount=-2 +kerning first=350 second=78 amount=-3 +kerning first=259 second=99 amount=-1 +kerning first=280 second=274 amount=-2 +kerning first=187 second=120 amount=-3 +kerning first=381 second=73 amount=-1 +kerning first=87 second=240 amount=-3 +kerning first=298 second=267 amount=-2 +kerning first=354 second=229 amount=-5 +kerning first=216 second=377 amount=-2 +kerning first=67 second=108 amount=-1 +kerning first=325 second=118 amount=-2 +kerning first=289 second=118 amount=-1 +kerning first=226 second=267 amount=-1 +kerning first=282 second=229 amount=-1 +kerning first=1067 second=1077 amount=-1 +kerning first=205 second=113 amount=-2 +kerning first=262 second=267 amount=-2 +kerning first=1103 second=1077 amount=-1 +kerning first=381 second=80 amount=-1 +kerning first=198 second=75 amount=-2 +kerning first=367 second=120 amount=-2 +kerning first=201 second=80 amount=-2 +kerning first=381 second=224 amount=-1 +kerning first=112 second=8220 amount=-2 +kerning first=278 second=196 amount=-2 +kerning first=1031 second=1077 amount=-1 +kerning first=112 second=118 amount=-2 +kerning first=370 second=267 amount=-2 +kerning first=288 second=377 amount=-2 +kerning first=253 second=118 amount=-1 +kerning first=222 second=8220 amount=-2 +kerning first=350 second=196 amount=-4 +kerning first=217 second=118 amount=-2 +kerning first=90 second=111 amount=-1 +kerning first=72 second=199 amount=-2 +kerning first=283 second=244 amount=-1 +kerning first=88 second=287 amount=-2 +kerning first=229 second=287 amount=-2 +kerning first=195 second=111 amount=-1 +kerning first=286 second=209 amount=-1 +kerning first=193 second=287 amount=-3 +kerning first=84 second=219 amount=-1 +kerning first=1086 second=1098 amount=-1 +kerning first=231 second=111 amount=-1 +kerning first=1064 second=1119 amount=-1 +kerning first=86 second=339 amount=-3 +kerning first=110 second=8217 amount=-4 +kerning first=99 second=242 amount=-1 +kerning first=122 second=339 amount=-1 +kerning first=344 second=234 amount=-3 +kerning first=8217 second=113 amount=-3 +kerning first=204 second=242 amount=-2 +kerning first=321 second=199 amount=-1 +kerning first=337 second=287 amount=-2 +kerning first=380 second=234 amount=-1 +kerning first=73 second=264 amount=-2 +kerning first=83 second=374 amount=-3 +kerning first=311 second=254 amount=-1 +kerning first=367 second=303 amount=-2 +kerning first=83 second=197 amount=-4 +kerning first=347 second=254 amount=-2 +kerning first=200 second=289 amount=-3 +kerning first=83 second=121 amount=-2 +kerning first=213 second=364 amount=-1 +kerning first=236 second=289 amount=-3 +kerning first=1114 second=1094 amount=-1 +kerning first=272 second=289 amount=-1 +kerning first=70 second=244 amount=-1 +kerning first=79 second=82 amount=-2 +kerning first=8220 second=281 amount=-3 +kerning first=267 second=111 amount=-1 +kerning first=106 second=244 amount=-1 +kerning first=303 second=111 amount=-3 +kerning first=203 second=254 amount=-1 +kerning first=344 second=289 amount=-3 +kerning first=254 second=46 amount=-3 +kerning first=339 second=111 amount=-1 +kerning first=380 second=289 amount=-2 +kerning first=8250 second=346 amount=-3 +kerning first=332 second=197 amount=-4 +kerning first=321 second=364 amount=-3 +kerning first=375 second=111 amount=-3 +kerning first=275 second=254 amount=-2 +kerning first=368 second=197 amount=-4 +kerning first=213 second=97 amount=-1 +kerning first=315 second=205 amount=-2 +kerning first=337 second=230 amount=-1 +kerning first=324 second=117 amount=-1 +kerning first=86 second=72 amount=-1 +kerning first=249 second=97 amount=-1 +kerning first=280 second=76 amount=-2 +kerning first=235 second=119 amount=-2 +kerning first=380 second=228 amount=-1 +kerning first=261 second=307 amount=-1 +kerning first=108 second=97 amount=-2 +kerning first=213 second=103 amount=-1 +kerning first=274 second=380 amount=-2 +kerning first=368 second=121 amount=-1 +kerning first=377 second=66 amount=-1 +kerning first=208 second=76 amount=-2 +kerning first=307 second=119 amount=-3 +kerning first=362 second=275 amount=-2 +kerning first=201 second=74 amount=-1 +kerning first=192 second=366 amount=-3 +kerning first=304 second=250 amount=-2 +kerning first=296 second=121 amount=-2 +kerning first=1104 second=1099 amount=-1 +kerning first=229 second=230 amount=-1 +kerning first=379 second=119 amount=-2 +kerning first=260 second=121 amount=-3 +kerning first=88 second=230 amount=-1 +kerning first=67 second=76 amount=-3 +kerning first=1069 second=1036 amount=-1 +kerning first=376 second=250 amount=-2 +kerning first=196 second=250 amount=-3 +kerning first=206 second=242 amount=-2 +kerning first=317 second=86 amount=-3 +kerning first=242 second=107 amount=-1 +kerning first=74 second=333 amount=-2 +kerning first=268 second=250 amount=-2 +kerning first=350 second=107 amount=-2 +kerning first=66 second=205 amount=-4 +kerning first=75 second=117 amount=-3 +kerning first=232 second=250 amount=-2 +kerning first=231 second=378 amount=-2 +kerning first=314 second=107 amount=-1 +kerning first=365 second=240 amount=-1 +kerning first=101 second=107 amount=-2 +kerning first=65 second=107 amount=-2 +kerning first=111 second=117 amount=-1 +kerning first=90 second=378 amount=-3 +kerning first=252 second=117 amount=-1 +kerning first=352 second=76 amount=-3 +kerning first=256 second=363 amount=-3 +kerning first=313 second=310 amount=-2 +kerning first=117 second=318 amount=-2 +kerning first=379 second=214 amount=-1 +kerning first=328 second=363 amount=-1 +kerning first=352 second=330 amount=-3 +kerning first=336 second=171 amount=-1 +kerning first=374 second=355 amount=-1 +kerning first=268 second=194 amount=-3 +kerning first=364 second=363 amount=-1 +kerning first=323 second=227 amount=-2 +kerning first=258 second=318 amount=-2 +kerning first=1043 second=1114 amount=-2 +kerning first=257 second=240 amount=-1 +kerning first=120 second=333 amount=-2 +kerning first=73 second=259 amount=-2 +kerning first=290 second=74 amount=-1 +kerning first=1057 second=1088 amount=-1 +kerning first=1093 second=1089 amount=-2 +kerning first=381 second=8250 amount=-1 +kerning first=246 second=257 amount=-1 +kerning first=1057 second=1089 amount=-1 +kerning first=221 second=240 amount=-3 +kerning first=8216 second=241 amount=-1 +kerning first=287 second=259 amount=-3 +kerning first=209 second=71 amount=-2 +kerning first=378 second=116 amount=-1 +kerning first=350 second=122 amount=-2 +kerning first=208 second=77 amount=-2 +kerning first=296 second=375 amount=-2 +kerning first=317 second=71 amount=-1 +kerning first=88 second=346 amount=-2 +kerning first=199 second=214 amount=-3 +kerning first=260 second=375 amount=-3 +kerning first=187 second=249 amount=-1 +kerning first=107 second=369 amount=-1 +kerning first=67 second=330 amount=-3 +kerning first=278 second=122 amount=-2 +kerning first=224 second=375 amount=-3 +kerning first=1070 second=1041 amount=-1 +kerning first=71 second=369 amount=-1 +kerning first=323 second=259 amount=-2 +kerning first=89 second=296 amount=-1 +kerning first=280 second=330 amount=-2 +kerning first=110 second=259 amount=-1 +kerning first=234 second=116 amount=-1 +kerning first=72 second=97 amount=-2 +kerning first=352 second=77 amount=-3 +kerning first=187 second=106 amount=-2 +kerning first=246 second=114 amount=-1 +kerning first=264 second=220 amount=-2 +kerning first=209 second=246 amount=-2 +kerning first=376 second=194 amount=-6 +kerning first=208 second=330 amount=-2 +kerning first=1039 second=1075 amount=-1 +kerning first=290 second=220 amount=-1 +kerning first=1050 second=1086 amount=-2 +kerning first=280 second=77 amount=-2 +kerning first=368 second=375 amount=-1 +kerning first=1025 second=1100 amount=-1 +kerning first=334 second=344 amount=-2 +kerning first=266 second=296 amount=-3 +kerning first=325 second=228 amount=-2 +kerning first=187 second=324 amount=-2 +kerning first=356 second=369 amount=-2 +kerning first=289 second=228 amount=-3 +kerning first=118 second=324 amount=-2 +kerning first=332 second=374 amount=-2 +kerning first=377 second=315 amount=-1 +kerning first=338 second=296 amount=-2 +kerning first=253 second=228 amount=-3 +kerning first=259 second=324 amount=-1 +kerning first=84 second=279 amount=-3 +kerning first=217 second=228 amount=-3 +kerning first=223 second=324 amount=-1 +kerning first=98 second=254 amount=-1 +kerning first=260 second=374 amount=-6 +kerning first=232 second=251 amount=-2 +kerning first=66 second=206 amount=-4 +kerning first=374 second=296 amount=-1 +kerning first=1045 second=1055 amount=-1 +kerning first=196 second=251 amount=-3 +kerning first=262 second=344 amount=-3 +kerning first=304 second=251 amount=-2 +kerning first=83 second=375 amount=-2 +kerning first=284 second=369 amount=-1 +kerning first=269 second=273 amount=-1 +kerning first=268 second=251 amount=-2 +kerning first=45 second=260 amount=-4 +kerning first=88 second=79 amount=-3 +kerning first=248 second=369 amount=-1 +kerning first=233 second=273 amount=-1 +kerning first=376 second=251 amount=-2 +kerning first=8217 second=112 amount=-1 +kerning first=381 second=284 amount=-1 +kerning first=1096 second=1108 amount=-1 +kerning first=98 second=253 amount=-3 +kerning first=89 second=355 amount=-1 +kerning first=98 second=382 amount=-2 +kerning first=107 second=45 amount=-3 +kerning first=369 second=279 amount=-1 +kerning first=201 second=284 amount=-1 +kerning first=331 second=324 amount=-1 +kerning first=1100 second=1119 amount=-1 +kerning first=115 second=363 amount=-1 +kerning first=295 second=324 amount=-1 +kerning first=120 second=279 amount=-2 +kerning first=275 second=253 amount=-2 +kerning first=201 second=197 amount=-2 +kerning first=261 second=279 amount=-1 +kerning first=311 second=253 amount=-1 +kerning first=230 second=355 amount=-1 +kerning first=220 second=363 amount=-1 +kerning first=367 second=324 amount=-1 +kerning first=45 second=318 amount=-1 +kerning first=225 second=279 amount=-1 +kerning first=347 second=253 amount=-3 +kerning first=194 second=355 amount=-1 +kerning first=232 second=331 amount=-2 +kerning first=313 second=313 amount=-2 +kerning first=45 second=315 amount=-5 +kerning first=251 second=318 amount=-2 +kerning first=202 second=83 amount=-2 +kerning first=8220 second=337 amount=-3 +kerning first=66 second=268 amount=-3 +kerning first=287 second=318 amount=-3 +kerning first=89 second=365 amount=-2 +kerning first=71 second=310 amount=-1 +kerning first=207 second=268 amount=-2 +kerning first=274 second=83 amount=-2 +kerning first=81 second=315 amount=-2 +kerning first=377 second=263 amount=-1 +kerning first=310 second=83 amount=-2 +kerning first=199 second=218 amount=-2 +kerning first=213 second=370 amount=-1 +kerning first=346 second=83 amount=-1 +kerning first=284 second=310 amount=-1 +kerning first=8216 second=245 amount=-3 +kerning first=1045 second=1065 amount=-1 +kerning first=197 second=263 amount=-1 +kerning first=381 second=355 amount=-1 +kerning first=212 second=310 amount=-2 +kerning first=233 second=263 amount=-1 +kerning first=84 second=220 amount=-1 +kerning first=1096 second=1105 amount=-1 +kerning first=230 second=303 amount=-2 +kerning first=274 second=353 amount=-1 +kerning first=1083 second=1089 amount=-1 +kerning first=266 second=303 amount=-1 +kerning first=84 second=275 amount=-3 +kerning first=310 second=353 amount=-1 +kerning first=346 second=353 amount=-1 +kerning first=374 second=365 amount=-2 +kerning first=194 second=303 amount=-1 +kerning first=382 second=353 amount=-2 +kerning first=108 second=45 amount=-3 +kerning first=338 second=365 amount=-2 +kerning first=222 second=315 amount=-2 +kerning first=374 second=303 amount=-2 +kerning first=380 second=224 amount=-1 +kerning first=302 second=365 amount=-2 +kerning first=1071 second=1060 amount=-1 +kerning first=266 second=365 amount=-2 +kerning first=302 second=303 amount=-1 +kerning first=202 second=353 amount=-1 +kerning first=253 second=303 amount=-2 +kerning first=230 second=365 amount=-2 +kerning first=338 second=303 amount=-1 +kerning first=194 second=365 amount=-3 +kerning first=1070 second=1048 amount=-1 +kerning first=105 second=235 amount=-1 +kerning first=289 second=225 amount=-3 +kerning first=1114 second=1098 amount=-1 +kerning first=280 second=280 amount=-2 +kerning first=118 second=105 amount=-2 +kerning first=325 second=225 amount=-2 +kerning first=266 second=98 amount=-1 +kerning first=1114 second=1095 amount=-2 +kerning first=352 second=280 amount=-3 +kerning first=354 second=228 amount=-4 +kerning first=381 second=356 amount=-2 +kerning first=1104 second=1093 amount=-1 +kerning first=338 second=98 amount=-1 +kerning first=1042 second=1095 amount=-2 +kerning first=109 second=318 amount=-1 +kerning first=112 second=225 amount=-1 +kerning first=282 second=228 amount=-1 +kerning first=89 second=303 amount=-2 +kerning first=367 second=46 amount=-2 +kerning first=246 second=228 amount=-1 +kerning first=1104 second=1100 amount=-1 +kerning first=354 second=235 amount=-3 +kerning first=217 second=225 amount=-3 +kerning first=1024 second=1102 amount=-1 +kerning first=230 second=98 amount=-2 +kerning first=210 second=228 amount=-1 +kerning first=377 second=270 amount=-1 +kerning first=253 second=225 amount=-3 +kerning first=194 second=98 amount=-2 +kerning first=274 second=350 amount=-2 +kerning first=8250 second=352 amount=-3 +kerning first=81 second=305 amount=-1 +kerning first=266 second=102 amount=-2 +kerning first=108 second=363 amount=-2 +kerning first=105 second=228 amount=-2 +kerning first=45 second=305 amount=-1 +kerning first=223 second=46 amount=-3 +kerning first=321 second=370 amount=-3 +kerning first=202 second=350 amount=-2 +kerning first=69 second=228 amount=-1 +kerning first=338 second=102 amount=-2 +kerning first=224 second=277 amount=-1 +kerning first=259 second=46 amount=-1 +kerning first=226 second=273 amount=-1 +kerning first=117 second=305 amount=-1 +kerning first=374 second=102 amount=-1 +kerning first=295 second=46 amount=-1 +kerning first=67 second=280 amount=-3 +kerning first=249 second=363 amount=-1 +kerning first=258 second=305 amount=-1 +kerning first=89 second=102 amount=-1 +kerning first=90 second=245 amount=-1 +kerning first=83 second=86 amount=-3 +kerning first=369 second=46 amount=-2 +kerning first=121 second=273 amount=-3 +kerning first=222 second=305 amount=-1 +kerning first=1053 second=1108 amount=-1 +kerning first=110 second=318 amount=-1 +kerning first=321 second=363 amount=-2 +kerning first=330 second=305 amount=-1 +kerning first=194 second=102 amount=-1 +kerning first=377 second=325 amount=-1 +kerning first=82 second=46 amount=-2 +kerning first=208 second=280 amount=-2 +kerning first=230 second=102 amount=-2 +kerning first=118 second=46 amount=-5 +kerning first=1072 second=1117 amount=-1 +kerning first=278 second=211 amount=-1 +kerning first=202 second=86 amount=-1 +kerning first=366 second=305 amount=-2 +kerning first=313 second=112 amount=-2 +kerning first=75 second=67 amount=-3 +kerning first=206 second=211 amount=-2 +kerning first=122 second=261 amount=-1 +kerning first=277 second=112 amount=-1 +kerning first=1108 second=1117 amount=-1 +kerning first=86 second=171 amount=-5 +kerning first=201 second=192 amount=-2 +kerning first=327 second=81 amount=-2 +kerning first=366 second=256 amount=-4 +kerning first=214 second=261 amount=-1 +kerning first=346 second=86 amount=-3 +kerning first=1102 second=1084 amount=-1 +kerning first=205 second=112 amount=-1 +kerning first=377 second=260 amount=-1 +kerning first=250 second=261 amount=-1 +kerning first=310 second=86 amount=-2 +kerning first=249 second=107 amount=-2 +kerning first=286 second=261 amount=-1 +kerning first=84 second=216 amount=-3 +kerning first=1043 second=1076 amount=-3 +kerning first=274 second=86 amount=-1 +kerning first=100 second=112 amount=-1 +kerning first=327 second=266 amount=-2 +kerning first=8250 second=89 amount=-4 +kerning first=321 second=107 amount=-2 +kerning first=332 second=204 amount=-2 +kerning first=370 second=216 amount=-1 +kerning first=331 second=105 amount=-1 +kerning first=367 second=105 amount=-2 +kerning first=268 second=254 amount=-1 +kerning first=216 second=327 amount=-2 +kerning first=122 second=171 amount=-3 +kerning first=295 second=105 amount=-1 +kerning first=78 second=81 amount=-2 +kerning first=315 second=209 amount=-2 +kerning first=288 second=327 amount=-1 +kerning first=1042 second=1098 amount=-1 +kerning first=219 second=81 amount=-1 +kerning first=223 second=105 amount=-1 +kerning first=209 second=346 amount=-2 +kerning first=1053 second=1087 amount=-1 +kerning first=369 second=275 amount=-1 +kerning first=200 second=230 amount=-1 +kerning first=249 second=100 amount=-1 +kerning first=258 second=249 amount=-3 +kerning first=236 second=230 amount=-2 +kerning first=83 second=204 amount=-3 +kerning first=106 second=303 amount=-1 +kerning first=117 second=249 amount=-1 +kerning first=199 second=318 amount=-1 +kerning first=68 second=346 amount=-1 +kerning first=379 second=223 amount=-1 +kerning first=366 second=249 amount=-1 +kerning first=313 second=379 amount=-3 +kerning first=225 second=275 amount=-1 +kerning first=1045 second=1058 amount=-1 +kerning first=72 second=100 amount=-2 +kerning first=317 second=346 amount=-1 +kerning first=378 second=242 amount=-1 +kerning first=261 second=275 amount=-1 +kerning first=362 second=223 amount=-2 +kerning first=108 second=100 amount=-1 +kerning first=120 second=275 amount=-2 +kerning first=330 second=249 amount=-1 +kerning first=263 second=339 amount=-1 +kerning first=325 second=334 amount=-2 +kerning first=108 second=107 amount=-1 +kerning first=254 second=223 amount=-1 +kerning first=218 second=223 amount=-2 +kerning first=231 second=305 amount=-2 +kerning first=81 second=256 amount=-4 +kerning first=227 second=339 amount=-1 +kerning first=45 second=256 amount=-4 +kerning first=1108 second=1103 amount=-1 +kerning first=344 second=230 amount=-2 +kerning first=380 second=230 amount=-1 +kerning first=1042 second=1039 amount=-2 +kerning first=272 second=230 amount=-1 +kerning first=371 second=339 amount=-3 +kerning first=65 second=211 amount=-3 +kerning first=113 second=223 amount=-1 +kerning first=222 second=256 amount=-4 +kerning first=324 second=228 amount=-1 +kerning first=1045 second=1059 amount=-3 +kerning first=313 second=109 amount=-1 +kerning first=274 second=89 amount=-1 +kerning first=119 second=114 amount=-1 +kerning first=321 second=104 amount=-2 +kerning first=8250 second=86 amount=-4 +kerning first=321 second=192 amount=-2 +kerning first=83 second=114 amount=-2 +kerning first=315 second=212 amount=-1 +kerning first=213 second=192 amount=-4 +kerning first=100 second=314 amount=-1 +kerning first=337 second=237 amount=-1 +kerning first=108 second=104 amount=-1 +kerning first=221 second=187 amount=-3 +kerning first=230 second=99 amount=-1 +kerning first=323 second=262 amount=-2 +kerning first=1071 second=1116 amount=-1 +kerning first=199 second=217 amount=-2 +kerning first=194 second=99 amount=-1 +kerning first=302 second=99 amount=-2 +kerning first=100 second=109 amount=-1 +kerning first=84 second=269 amount=-3 +kerning first=229 second=237 amount=-1 +kerning first=277 second=314 amount=-3 +kerning first=380 second=227 amount=-1 +kerning first=266 second=99 amount=-2 +kerning first=244 second=378 amount=-2 +kerning first=193 second=237 amount=-1 +kerning first=241 second=314 amount=-1 +kerning first=374 second=99 amount=-3 +kerning first=346 second=89 amount=-3 +kerning first=249 second=104 amount=-2 +kerning first=290 second=282 amount=-1 +kerning first=99 second=44 amount=-3 +kerning first=120 second=269 amount=-2 +kerning first=353 second=120 amount=-3 +kerning first=352 second=277 amount=-1 +kerning first=313 second=314 amount=-2 +kerning first=240 second=44 amount=-3 +kerning first=261 second=269 amount=-1 +kerning first=1102 second=1083 amount=-2 +kerning first=225 second=269 amount=-1 +kerning first=8222 second=229 amount=-2 +kerning first=78 second=351 amount=-2 +kerning first=231 second=371 amount=-2 +kerning first=200 second=224 amount=-1 +kerning first=240 second=121 amount=-3 +kerning first=267 second=371 amount=-2 +kerning first=377 second=267 amount=-1 +kerning first=316 second=277 amount=-1 +kerning first=266 second=302 amount=-3 +kerning first=303 second=371 amount=-1 +kerning first=272 second=224 amount=-1 +kerning first=105 second=232 amount=-1 +kerning first=363 second=347 amount=-2 +kerning first=369 second=269 amount=-1 +kerning first=8250 second=353 amount=-1 +kerning first=1070 second=1051 amount=-3 +kerning first=114 second=351 amount=-1 +kerning first=339 second=371 amount=-2 +kerning first=236 second=224 amount=-2 +kerning first=327 second=347 amount=-2 +kerning first=286 second=202 amount=-1 +kerning first=67 second=277 amount=-2 +kerning first=356 second=344 amount=-1 +kerning first=344 second=224 amount=-2 +kerning first=291 second=347 amount=-3 +kerning first=255 second=347 amount=-3 +kerning first=345 second=8249 amount=-1 +kerning first=214 second=202 amount=-2 +kerning first=89 second=302 amount=-1 +kerning first=89 second=99 amount=-3 +kerning first=381 second=8249 amount=-3 +kerning first=1073 second=1081 amount=-1 +kerning first=103 second=277 amount=-2 +kerning first=321 second=367 amount=-2 +kerning first=72 second=101 amount=-2 +kerning first=86 second=79 amount=-3 +kerning first=73 second=261 amount=-2 +kerning first=197 second=267 amount=-1 +kerning first=8217 second=106 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=363 second=351 amount=-2 +kerning first=109 second=261 amount=-1 +kerning first=249 second=367 amount=-1 +kerning first=334 second=69 amount=-2 +kerning first=207 second=212 amount=-2 +kerning first=376 second=257 amount=-5 +kerning first=66 second=212 amount=-3 +kerning first=249 second=101 amount=-1 +kerning first=255 second=351 amount=-3 +kerning first=233 second=97 amount=-2 +kerning first=268 second=257 amount=-2 +kerning first=262 second=69 amount=-3 +kerning first=1070 second=1047 amount=-2 +kerning first=219 second=351 amount=-2 +kerning first=304 second=257 amount=-2 +kerning first=72 second=367 amount=-2 +kerning first=233 second=267 amount=-1 +kerning first=327 second=351 amount=-2 +kerning first=108 second=367 amount=-2 +kerning first=269 second=267 amount=-1 +kerning first=8220 second=333 amount=-3 +kerning first=291 second=351 amount=-3 +kerning first=232 second=257 amount=-2 +kerning first=67 second=337 amount=-2 +kerning first=278 second=382 amount=-2 +kerning first=80 second=246 amount=-1 +kerning first=313 second=316 amount=-2 +kerning first=255 second=291 amount=-3 +kerning first=314 second=382 amount=-1 +kerning first=1045 second=1062 amount=-1 +kerning first=197 second=266 amount=-3 +kerning first=194 second=362 amount=-3 +kerning first=1067 second=1087 amount=-1 +kerning first=376 second=315 amount=-1 +kerning first=350 second=382 amount=-2 +kerning first=344 second=286 amount=-3 +kerning first=79 second=206 amount=-2 +kerning first=283 second=241 amount=-2 +kerning first=279 second=271 amount=-1 +kerning first=1071 second=1057 amount=-1 +kerning first=113 second=226 amount=-2 +kerning first=101 second=382 amount=-2 +kerning first=282 second=205 amount=-2 +kerning first=258 second=311 amount=-2 +kerning first=255 second=287 amount=-3 +kerning first=78 second=291 amount=-3 +kerning first=196 second=279 amount=-1 +kerning first=218 second=226 amount=-3 +kerning first=267 second=228 amount=-2 +kerning first=206 second=382 amount=-1 +kerning first=200 second=286 amount=-1 +kerning first=1042 second=1042 amount=-2 +kerning first=106 second=241 amount=-2 +kerning first=346 second=356 amount=-3 +kerning first=103 second=337 amount=-2 +kerning first=242 second=382 amount=-2 +kerning first=70 second=241 amount=-1 +kerning first=379 second=221 amount=-2 +kerning first=230 second=361 amount=-2 +kerning first=1107 second=1113 amount=-3 +kerning first=194 second=361 amount=-3 +kerning first=251 second=8221 amount=-3 +kerning first=324 second=331 amount=-1 +kerning first=99 second=382 amount=-2 +kerning first=302 second=361 amount=-2 +kerning first=192 second=290 amount=-3 +kerning first=110 second=8221 amount=-4 +kerning first=266 second=361 amount=-2 +kerning first=1100 second=1075 amount=-1 +kerning first=100 second=316 amount=-1 +kerning first=252 second=331 amount=-1 +kerning first=8217 second=369 amount=-1 +kerning first=374 second=361 amount=-2 +kerning first=1057 second=1082 amount=-1 +kerning first=111 second=331 amount=-1 +kerning first=381 second=333 amount=-1 +kerning first=241 second=316 amount=-1 +kerning first=216 second=274 amount=-2 +kerning first=199 second=221 amount=-1 +kerning first=102 second=271 amount=-1 +kerning first=277 second=316 amount=-3 +kerning first=200 second=227 amount=-1 +kerning first=280 second=70 amount=-2 +kerning first=1039 second=1081 amount=-1 +kerning first=258 second=252 amount=-3 +kerning first=83 second=381 amount=-1 +kerning first=222 second=45 amount=-1 +kerning first=368 second=115 amount=-2 +kerning first=208 second=70 amount=-2 +kerning first=368 second=45 amount=-5 +kerning first=83 second=207 amount=-3 +kerning first=108 second=103 amount=-3 +kerning first=86 second=78 amount=-1 +kerning first=195 second=368 amount=-3 +kerning first=330 second=252 amount=-1 +kerning first=72 second=103 amount=-3 +kerning first=344 second=227 amount=-2 +kerning first=45 second=252 amount=-1 +kerning first=1042 second=1101 amount=-2 +kerning first=366 second=45 amount=-5 +kerning first=67 second=336 amount=-3 +kerning first=272 second=227 amount=-1 +kerning first=1078 second=1101 amount=-1 +kerning first=117 second=252 amount=-1 +kerning first=67 second=278 amount=-3 +kerning first=8250 second=350 amount=-3 +kerning first=332 second=381 amount=-2 +kerning first=290 second=226 amount=-1 +kerning first=332 second=207 amount=-2 +kerning first=268 second=201 amount=-3 +kerning first=326 second=226 amount=-1 +kerning first=365 second=246 amount=-1 +kerning first=89 second=346 amount=-3 +kerning first=313 second=317 amount=-2 +kerning first=1043 second=1107 amount=-2 +kerning first=202 second=90 amount=-1 +kerning first=280 second=336 amount=-1 +kerning first=202 second=356 amount=-1 +kerning first=377 second=323 amount=-1 +kerning first=208 second=278 amount=-2 +kerning first=266 second=362 amount=-2 +kerning first=366 second=252 amount=-1 +kerning first=257 second=246 amount=-1 +kerning first=274 second=90 amount=-1 +kerning first=87 second=233 amount=-3 +kerning first=1079 second=1107 amount=-1 +kerning first=221 second=246 amount=-3 +kerning first=321 second=103 amount=-3 +kerning first=280 second=278 amount=-2 +kerning first=228 second=233 amount=-1 +kerning first=338 second=362 amount=-2 +kerning first=346 second=90 amount=-1 +kerning first=192 second=233 amount=-1 +kerning first=327 second=291 amount=-3 +kerning first=117 second=45 amount=-2 +kerning first=352 second=278 amount=-3 +kerning first=108 second=382 amount=-1 +kerning first=122 second=369 amount=-2 +kerning first=277 second=103 amount=-3 +kerning first=250 second=246 amount=-1 +kerning first=1086 second=1095 amount=-1 +kerning first=86 second=369 amount=-2 +kerning first=241 second=103 amount=-2 +kerning first=218 second=259 amount=-3 +kerning first=187 second=356 amount=-4 +kerning first=1050 second=1095 amount=-3 +kerning first=213 second=382 amount=-2 +kerning first=227 second=369 amount=-1 +kerning first=205 second=103 amount=-3 +kerning first=249 second=382 amount=-2 +kerning first=236 second=259 amount=-2 +kerning first=263 second=116 amount=-1 +kerning first=82 second=356 amount=-3 +kerning first=338 second=45 amount=-2 +kerning first=380 second=252 amount=-2 +kerning first=122 second=116 amount=-1 +kerning first=100 second=363 amount=-1 +kerning first=72 second=382 amount=-1 +kerning first=374 second=45 amount=-5 +kerning first=86 second=116 amount=-1 +kerning first=354 second=226 amount=-5 +kerning first=99 second=279 amount=-1 +kerning first=1071 second=1054 amount=-1 +kerning first=195 second=375 amount=-3 +kerning first=205 second=363 amount=-2 +kerning first=1042 second=1076 amount=-2 +kerning first=249 second=122 amount=-2 +kerning first=1057 second=1100 amount=-1 +kerning first=241 second=363 amount=-1 +kerning first=89 second=305 amount=-2 +kerning first=204 second=279 amount=-2 +kerning first=90 second=375 amount=-3 +kerning first=213 second=122 amount=-2 +kerning first=1104 second=1102 amount=-1 +kerning first=277 second=363 amount=-2 +kerning first=317 second=362 amount=-3 +kerning first=1064 second=1089 amount=-1 +kerning first=371 second=109 amount=-2 +kerning first=77 second=266 amount=-2 +kerning first=313 second=363 amount=-2 +kerning first=194 second=305 amount=-1 +kerning first=216 second=65 amount=-4 +kerning first=339 second=375 amount=-2 +kerning first=371 second=116 amount=-1 +kerning first=321 second=382 amount=-3 +kerning first=303 second=375 amount=-2 +kerning first=68 second=362 amount=-1 +kerning first=263 second=369 amount=-2 +kerning first=122 second=109 amount=-2 +kerning first=266 second=305 amount=-1 +kerning first=288 second=65 amount=-3 +kerning first=267 second=375 amount=-2 +kerning first=371 second=369 amount=-1 +kerning first=89 second=45 amount=-5 +kerning first=263 second=109 amount=-2 +kerning first=1064 second=1082 amount=-1 +kerning first=230 second=305 amount=-2 +kerning first=231 second=375 amount=-2 +kerning first=335 second=369 amount=-1 +kerning first=313 second=103 amount=-3 +kerning first=227 second=109 amount=-1 +kerning first=1056 second=1063 amount=-1 +kerning first=281 second=355 amount=-1 +kerning first=338 second=305 amount=-1 +kerning first=381 second=231 amount=-1 +kerning first=245 second=355 amount=-1 +kerning first=339 second=115 amount=-2 +kerning first=304 second=232 amount=-2 +kerning first=231 second=115 amount=-2 +kerning first=362 second=45 amount=-5 +kerning first=374 second=305 amount=-2 +kerning first=84 second=202 amount=-1 +kerning first=344 second=8217 amount=-5 +kerning first=1060 second=1062 amount=-1 +kerning first=196 second=232 amount=-1 +kerning first=219 second=44 amount=-5 +kerning first=201 second=336 amount=-1 +kerning first=1024 second=1062 amount=-1 +kerning first=353 second=355 amount=-2 +kerning first=375 second=115 amount=-3 +kerning first=268 second=232 amount=-2 +kerning first=8250 second=371 amount=-1 +kerning first=232 second=232 amount=-1 +kerning first=226 second=8217 amount=-3 +kerning first=196 second=253 amount=-3 +kerning first=375 second=108 amount=-2 +kerning first=232 second=253 amount=-2 +kerning first=8250 second=90 amount=-4 +kerning first=339 second=108 amount=-3 +kerning first=1024 second=1055 amount=-1 +kerning first=381 second=336 amount=-1 +kerning first=268 second=253 amount=-1 +kerning first=1060 second=1055 amount=-1 +kerning first=304 second=253 amount=-2 +kerning first=8250 second=378 amount=-5 +kerning first=333 second=380 amount=-2 +kerning first=376 second=253 amount=-3 +kerning first=262 second=325 amount=-3 +kerning first=71 second=66 amount=-1 +kerning first=1042 second=1048 amount=-2 +kerning first=65 second=251 amount=-3 +kerning first=367 second=328 amount=-1 +kerning first=379 second=196 amount=-1 +kerning first=324 second=115 amount=-1 +kerning first=100 second=335 amount=-1 +kerning first=331 second=328 amount=-1 +kerning first=380 second=231 amount=-1 +kerning first=232 second=225 amount=-2 +kerning first=198 second=332 amount=-1 +kerning first=295 second=328 amount=-1 +kerning first=231 second=108 amount=-3 +kerning first=195 second=108 amount=-2 +kerning first=381 second=315 amount=-1 +kerning first=303 second=108 amount=-2 +kerning first=199 second=196 amount=-3 +kerning first=267 second=108 amount=-3 +kerning first=366 second=286 amount=-1 +kerning first=106 second=242 amount=-1 +kerning first=102 second=45 amount=-3 +kerning first=236 second=8217 amount=-2 +kerning first=70 second=242 amount=-1 +kerning first=264 second=84 amount=-1 +kerning first=272 second=8217 amount=-2 +kerning first=104 second=102 amount=-1 +kerning first=330 second=286 amount=-2 +kerning first=283 second=242 amount=-1 +kerning first=76 second=203 amount=-2 +kerning first=88 second=8221 amount=-2 +kerning first=268 second=225 amount=-2 +kerning first=286 second=218 amount=-1 +kerning first=244 second=46 amount=-3 +kerning first=200 second=280 amount=-2 +kerning first=258 second=286 amount=-3 +kerning first=195 second=115 amount=-2 +kerning first=304 second=225 amount=-2 +kerning first=280 second=46 amount=-1 +kerning first=214 second=218 amount=-1 +kerning first=272 second=280 amount=-2 +kerning first=1057 second=1118 amount=-1 +kerning first=236 second=231 amount=-1 +kerning first=90 second=115 amount=-2 +kerning first=376 second=225 amount=-5 +kerning first=352 second=46 amount=-4 +kerning first=353 second=102 amount=-2 +kerning first=217 second=210 amount=-1 +kerning first=1060 second=1083 amount=-2 +kerning first=67 second=46 amount=-1 +kerning first=240 second=307 amount=-1 +kerning first=65 second=119 amount=-3 +kerning first=103 second=46 amount=-3 +kerning first=193 second=8221 amount=-5 +kerning first=101 second=119 amount=-2 +kerning first=362 second=266 amount=-1 +kerning first=262 second=224 amount=-2 +kerning first=76 second=210 amount=-1 +kerning first=229 second=8221 amount=-3 +kerning first=202 second=303 amount=-1 +kerning first=207 second=337 amount=-2 +kerning first=67 second=67 amount=-3 +kerning first=108 second=122 amount=-1 +kerning first=206 second=119 amount=-2 +kerning first=245 second=102 amount=-1 +kerning first=72 second=122 amount=-1 +kerning first=242 second=119 amount=-2 +kerning first=281 second=102 amount=-2 +kerning first=337 second=8221 amount=-2 +kerning first=278 second=119 amount=-1 +kerning first=218 second=266 amount=-1 +kerning first=8250 second=118 amount=-3 +kerning first=314 second=119 amount=-3 +kerning first=268 second=204 amount=-3 +kerning first=350 second=119 amount=-3 +kerning first=236 second=252 amount=-1 +kerning first=381 second=250 amount=-3 +kerning first=1024 second=1090 amount=-3 +kerning first=296 second=351 amount=-2 +kerning first=344 second=252 amount=-2 +kerning first=267 second=115 amount=-2 +kerning first=205 second=335 amount=-2 +kerning first=344 second=259 amount=-2 +kerning first=1114 second=1097 amount=-1 +kerning first=259 second=328 amount=-1 +kerning first=376 second=204 amount=-1 +kerning first=77 second=245 amount=-2 +kerning first=223 second=328 amount=-1 +kerning first=1056 second=1042 amount=-1 +kerning first=99 second=307 amount=-2 +kerning first=197 second=269 amount=-1 +kerning first=277 second=335 amount=-1 +kerning first=187 second=328 amount=-2 +kerning first=368 second=196 amount=-4 +kerning first=249 second=46 amount=-2 +kerning first=280 second=67 amount=-1 +kerning first=380 second=259 amount=-1 +kerning first=86 second=81 amount=-3 +kerning first=118 second=328 amount=-2 +kerning first=200 second=252 amount=-2 +kerning first=364 second=113 amount=-2 +kerning first=324 second=353 amount=-1 +kerning first=269 second=269 amount=-1 +kerning first=8217 second=335 amount=-3 +kerning first=66 second=262 amount=-3 +kerning first=313 second=73 amount=-2 +kerning first=70 second=275 amount=-1 +kerning first=256 second=366 amount=-3 +kerning first=233 second=269 amount=-1 +kerning first=363 second=291 amount=-3 +kerning first=71 second=368 amount=-1 +kerning first=324 second=365 amount=-1 +kerning first=256 second=113 amount=-1 +kerning first=70 second=263 amount=-1 +kerning first=288 second=365 amount=-1 +kerning first=382 second=378 amount=-2 +kerning first=65 second=99 amount=-1 +kerning first=207 second=262 amount=-2 +kerning first=252 second=365 amount=-1 +kerning first=202 second=378 amount=-2 +kerning first=284 second=87 amount=-3 +kerning first=234 second=100 amount=-1 +kerning first=71 second=259 amount=-1 +kerning first=314 second=171 amount=-3 +kerning first=252 second=353 amount=-2 +kerning first=274 second=378 amount=-2 +kerning first=212 second=87 amount=-2 +kerning first=315 second=262 amount=-1 +kerning first=379 second=8250 amount=-1 +kerning first=234 second=112 amount=-1 +kerning first=290 second=316 amount=-1 +kerning first=111 second=365 amount=-1 +kerning first=79 second=305 amount=-1 +kerning first=89 second=352 amount=-3 +kerning first=283 second=275 amount=-1 +kerning first=75 second=353 amount=-1 +kerning first=1027 second=1054 amount=-1 +kerning first=1057 second=1091 amount=-1 +kerning first=337 second=249 amount=-1 +kerning first=194 second=352 amount=-3 +kerning first=1057 second=1086 amount=-1 +kerning first=1093 second=1091 amount=-2 +kerning first=71 second=87 amount=-3 +kerning first=377 second=288 amount=-1 +kerning first=71 second=354 amount=-3 +kerning first=220 second=113 amount=-2 +kerning first=302 second=352 amount=-2 +kerning first=197 second=288 amount=-3 +kerning first=275 second=223 amount=-1 +kerning first=325 second=210 amount=-2 +kerning first=266 second=352 amount=-3 +kerning first=73 second=211 amount=-2 +kerning first=106 second=275 amount=-1 +kerning first=374 second=352 amount=-3 +kerning first=1089 second=1080 amount=-1 +kerning first=212 second=354 amount=-2 +kerning first=347 second=223 amount=-1 +kerning first=8220 second=283 amount=-3 +kerning first=338 second=352 amount=-2 +kerning first=1053 second=1080 amount=-1 +kerning first=88 second=249 amount=-3 +kerning first=1100 second=1117 amount=-1 +kerning first=351 second=8220 amount=-2 +kerning first=225 second=248 amount=-1 +kerning first=112 second=303 amount=-1 +kerning first=202 second=380 amount=-2 +kerning first=315 second=8220 amount=-4 +kerning first=84 second=248 amount=-3 +kerning first=201 second=296 amount=-2 +kerning first=203 second=223 amount=-1 +kerning first=1088 second=1113 amount=-2 +kerning first=378 second=339 amount=-1 +kerning first=279 second=8220 amount=-2 +kerning first=252 second=114 amount=-1 +kerning first=354 second=198 amount=-6 +kerning first=229 second=249 amount=-1 +kerning first=88 second=289 amount=-2 +kerning first=243 second=8220 amount=-2 +kerning first=111 second=114 amount=-1 +kerning first=69 second=198 amount=-2 +kerning first=1064 second=1117 amount=-1 +kerning first=193 second=289 amount=-3 +kerning first=356 second=338 amount=-3 +kerning first=193 second=249 amount=-3 +kerning first=67 second=327 amount=-3 +kerning first=102 second=8220 amount=3 +kerning first=75 second=114 amount=1 +kerning first=210 second=198 amount=-4 +kerning first=97 second=380 amount=-1 +kerning first=266 second=73 amount=-3 +kerning first=283 second=263 amount=-1 +kerning first=75 second=365 amount=-3 +kerning first=66 second=8220 amount=-4 +kerning first=1043 second=1113 amount=-3 +kerning first=365 second=237 amount=-2 +kerning first=8222 second=219 amount=-3 +kerning first=262 second=313 amount=-3 +kerning first=381 second=296 amount=-1 +kerning first=338 second=73 amount=-2 +kerning first=208 second=327 amount=-2 +kerning first=374 second=73 amount=-1 +kerning first=201 second=315 amount=-2 +kerning first=257 second=237 amount=-1 +kerning first=1039 second=1105 amount=-1 +kerning first=89 second=73 amount=-1 +kerning first=106 second=263 amount=-1 +kerning first=193 second=8249 amount=-4 +kerning first=280 second=327 amount=-2 +kerning first=221 second=237 amount=-2 +kerning first=302 second=275 amount=-2 +kerning first=1075 second=1105 amount=-1 +kerning first=313 second=75 amount=-2 +kerning first=229 second=8249 amount=-2 +kerning first=214 second=206 amount=-2 +kerning first=382 second=99 amount=-1 +kerning first=88 second=8249 amount=-4 +kerning first=352 second=327 amount=-3 +kerning first=261 second=248 amount=-1 +kerning first=355 second=253 amount=-1 +kerning first=116 second=237 amount=-1 +kerning first=198 second=379 amount=-1 +kerning first=346 second=99 amount=-1 +kerning first=234 second=339 amount=-1 +kerning first=286 second=206 amount=-1 +kerning first=206 second=199 amount=-2 +kerning first=279 second=234 amount=-1 +kerning first=101 second=187 amount=-2 +kerning first=192 second=212 amount=-3 +kerning first=1067 second=1081 amount=-1 +kerning first=221 second=209 amount=-1 +kerning first=68 second=83 amount=-1 +kerning first=216 second=381 amount=-2 +kerning first=87 second=212 amount=-3 +kerning first=1108 second=1102 amount=-1 +kerning first=1118 second=1103 amount=-4 +kerning first=288 second=381 amount=-2 +kerning first=102 second=234 amount=-1 +kerning first=8217 second=363 amount=-1 +kerning first=209 second=83 amount=-2 +kerning first=315 second=264 amount=-1 +kerning first=1031 second=1081 amount=-1 +kerning first=207 second=234 amount=-2 +kerning first=1079 second=1113 amount=-1 +kerning first=82 second=89 amount=-3 +kerning first=317 second=83 amount=-1 +kerning first=198 second=351 amount=-1 +kerning first=207 second=264 amount=-2 +kerning first=88 second=277 amount=-2 +kerning first=315 second=211 amount=-1 +kerning first=79 second=364 amount=-1 +kerning first=187 second=89 amount=-4 +kerning first=337 second=289 amount=-2 +kerning first=346 second=111 amount=-1 +kerning first=193 second=277 amount=-1 +kerning first=234 second=351 amount=-2 +kerning first=66 second=264 amount=-3 +kerning first=378 second=367 amount=-2 +kerning first=327 second=119 amount=-2 +kerning first=97 second=111 amount=-1 +kerning first=80 second=209 amount=-1 +kerning first=65 second=199 amount=-3 +kerning first=256 second=364 amount=-3 +kerning first=264 second=212 amount=-3 +kerning first=236 second=233 amount=-1 +kerning first=355 second=291 amount=-2 +kerning first=234 second=367 amount=-2 +kerning first=284 second=354 amount=-3 +kerning first=69 second=226 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=105 second=226 amount=-2 +kerning first=229 second=261 amount=-1 +kerning first=381 second=76 amount=-1 +kerning first=305 second=45 amount=-3 +kerning first=353 second=97 amount=-1 +kerning first=198 second=367 amount=-2 +kerning first=65 second=242 amount=-1 +kerning first=380 second=233 amount=-1 +kerning first=210 second=226 amount=-1 +kerning first=211 second=291 amount=-1 +kerning first=1071 second=1092 amount=-1 +kerning first=198 second=72 amount=-2 +kerning first=220 second=97 amount=-3 +kerning first=344 second=233 amount=-3 +kerning first=246 second=226 amount=-1 +kerning first=1063 second=1054 amount=-1 +kerning first=1107 second=1092 amount=-1 +kerning first=356 second=326 amount=-3 +kerning first=282 second=226 amount=-1 +kerning first=75 second=337 amount=-2 +kerning first=1046 second=1076 amount=-1 +kerning first=115 second=97 amount=-1 +kerning first=70 second=291 amount=-3 +kerning first=378 second=351 amount=-2 +kerning first=201 second=76 amount=-2 +kerning first=108 second=110 amount=-1 +kerning first=216 second=86 amount=-2 +kerning first=364 second=97 amount=-3 +kerning first=209 second=350 amount=-2 +kerning first=261 second=250 amount=-1 +kerning first=252 second=337 amount=-1 +kerning first=97 second=378 amount=-1 +kerning first=1024 second=1050 amount=-1 +kerning first=206 second=171 amount=-4 +kerning first=68 second=350 amount=-1 +kerning first=241 second=109 amount=-1 +kerning first=249 second=110 amount=-1 +kerning first=75 second=86 amount=-2 +kerning first=202 second=77 amount=-2 +kerning first=1060 second=1050 amount=-1 +kerning first=328 second=97 amount=-1 +kerning first=333 second=250 amount=-1 +kerning first=317 second=350 amount=-1 +kerning first=233 second=316 amount=-3 +kerning first=321 second=110 amount=-1 +kerning first=298 second=253 amount=-2 +kerning first=337 second=261 amount=-1 +kerning first=269 second=316 amount=-3 +kerning first=84 second=250 amount=-2 +kerning first=288 second=86 amount=-3 +kerning first=305 second=316 amount=-1 +kerning first=225 second=250 amount=-1 +kerning first=1086 second=1116 amount=-1 +kerning first=65 second=171 amount=-4 +kerning first=377 second=234 amount=-1 +kerning first=201 second=331 amount=-1 +kerning first=203 second=200 amount=-2 +kerning first=1086 second=1107 amount=-1 +kerning first=264 second=221 amount=-1 +kerning first=317 second=381 amount=-3 +kerning first=380 second=271 amount=-1 +kerning first=367 second=337 amount=-1 +kerning first=192 second=221 amount=-6 +kerning first=267 second=117 amount=-2 +kerning first=81 second=206 amount=-2 +kerning first=231 second=117 amount=-2 +kerning first=339 second=117 amount=-2 +kerning first=303 second=117 amount=-1 +kerning first=344 second=264 amount=-3 +kerning first=280 second=290 amount=-1 +kerning first=264 second=214 amount=-3 +kerning first=203 second=207 amount=-2 +kerning first=331 second=361 amount=-1 +kerning first=236 second=240 amount=-1 +kerning first=78 second=338 amount=-2 +kerning first=223 second=98 amount=-1 +kerning first=187 second=98 amount=-1 +kerning first=194 second=291 amount=-3 +kerning first=200 second=264 amount=-1 +kerning first=344 second=240 amount=-3 +kerning first=87 second=214 amount=-3 +kerning first=380 second=240 amount=-1 +kerning first=86 second=364 amount=-1 +kerning first=236 second=271 amount=-1 +kerning first=192 second=214 amount=-3 +kerning first=90 second=377 amount=-1 +kerning first=244 second=114 amount=-1 +kerning first=336 second=221 amount=-2 +kerning first=1079 second=1093 amount=-1 +kerning first=368 second=194 amount=-4 +kerning first=268 second=220 amount=-2 +kerning first=1045 second=1024 amount=-1 +kerning first=8218 second=119 amount=-3 +kerning first=259 second=311 amount=-1 +kerning first=76 second=201 amount=-2 +kerning first=353 second=249 amount=-1 +kerning first=377 second=304 amount=-1 +kerning first=196 second=220 amount=-3 +kerning first=99 second=275 amount=-1 +kerning first=332 second=194 amount=-4 +kerning first=187 second=330 amount=-5 +kerning first=89 second=324 amount=-3 +kerning first=317 second=90 amount=-3 +kerning first=67 second=287 amount=-3 +kerning first=207 second=227 amount=-2 +kerning first=1082 second=1077 amount=-2 +kerning first=86 second=97 amount=-5 +kerning first=284 second=317 amount=-1 +kerning first=198 second=84 amount=-1 +kerning first=1118 second=1077 amount=-2 +kerning first=102 second=227 amount=-2 +kerning first=240 second=291 amount=-2 +kerning first=103 second=287 amount=-2 +kerning first=376 second=220 amount=-1 +kerning first=66 second=227 amount=-3 +kerning first=1038 second=1058 amount=-1 +kerning first=1046 second=1077 amount=-2 +kerning first=204 second=291 amount=-3 +kerning first=227 second=97 amount=-1 +kerning first=244 second=287 amount=-2 +kerning first=287 second=311 amount=-2 +kerning first=71 second=317 amount=-1 +kerning first=304 second=213 amount=-2 +kerning first=374 second=324 amount=-3 +kerning first=118 second=337 amount=-3 +kerning first=251 second=311 amount=-2 +kerning first=268 second=213 amount=-3 +kerning first=338 second=324 amount=-1 +kerning first=99 second=291 amount=-3 +kerning first=82 second=337 amount=-3 +kerning first=316 second=287 amount=-3 +kerning first=376 second=213 amount=-3 +kerning first=1114 second=1088 amount=-1 +kerning first=1024 second=1081 amount=-1 +kerning first=280 second=287 amount=-3 +kerning first=212 second=317 amount=-2 +kerning first=66 second=234 amount=-1 +kerning first=371 second=97 amount=-2 +kerning first=351 second=347 amount=-3 +kerning first=230 second=324 amount=-2 +kerning first=352 second=287 amount=-3 +kerning first=288 second=77 amount=-1 +kerning first=327 second=261 amount=-2 +kerning first=371 second=318 amount=-2 +kerning first=242 second=187 amount=-2 +kerning first=259 second=337 amount=-1 +kerning first=315 second=303 amount=-2 +kerning first=187 second=367 amount=-1 +kerning first=350 second=187 amount=-1 +kerning first=201 second=71 amount=-1 +kerning first=335 second=97 amount=-1 +kerning first=216 second=77 amount=-2 +kerning first=266 second=324 amount=-1 +kerning first=352 second=318 amount=-2 +kerning first=225 second=8217 amount=-3 +kerning first=381 second=303 amount=-1 +kerning first=99 second=263 amount=-1 +kerning first=295 second=365 amount=-1 +kerning first=259 second=365 amount=-1 +kerning first=203 second=197 amount=-2 +kerning first=187 second=114 amount=-2 +kerning first=344 second=268 amount=-3 +kerning first=377 second=326 amount=-1 +kerning first=231 second=120 amount=-2 +kerning first=204 second=263 amount=-2 +kerning first=223 second=365 amount=-1 +kerning first=336 second=193 amount=-4 +kerning first=356 second=78 amount=-1 +kerning first=363 second=45 amount=-2 +kerning first=267 second=120 amount=-2 +kerning first=187 second=365 amount=-1 +kerning first=317 second=353 amount=-1 +kerning first=344 second=243 amount=-3 +kerning first=118 second=365 amount=-1 +kerning first=284 second=78 amount=-1 +kerning first=353 second=353 amount=-3 +kerning first=380 second=243 amount=-1 +kerning first=200 second=268 amount=-1 +kerning first=187 second=70 amount=-5 +kerning first=212 second=78 amount=-2 +kerning first=267 second=232 amount=-1 +kerning first=1071 second=1094 amount=-1 +kerning first=71 second=314 amount=-1 +kerning first=218 second=275 amount=-2 +kerning first=1039 second=1100 amount=-1 +kerning first=69 second=356 amount=-1 +kerning first=209 second=353 amount=-2 +kerning first=284 second=85 amount=-1 +kerning first=353 second=118 amount=-3 +kerning first=113 second=275 amount=-1 +kerning first=245 second=353 amount=-2 +kerning first=108 second=113 amount=-1 +kerning first=281 second=353 amount=-2 +kerning first=212 second=85 amount=-1 +kerning first=72 second=113 amount=-2 +kerning first=248 second=314 amount=-2 +kerning first=303 second=120 amount=-1 +kerning first=1049 second=1079 amount=-1 +kerning first=288 second=74 amount=-1 +kerning first=77 second=275 amount=-2 +kerning first=8250 second=102 amount=-1 +kerning first=339 second=120 amount=-2 +kerning first=209 second=118 amount=-2 +kerning first=375 second=120 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=367 second=365 amount=-1 +kerning first=317 second=118 amount=-3 +kerning first=284 second=314 amount=-1 +kerning first=201 second=303 amount=-1 +kerning first=104 second=353 amount=-1 +kerning first=331 second=365 amount=-1 +kerning first=249 second=113 amount=-1 +kerning first=281 second=118 amount=-2 +kerning first=1082 second=1108 amount=-2 +kerning first=252 second=105 amount=-2 +kerning first=303 second=380 amount=-1 +kerning first=222 second=8249 amount=-1 +kerning first=376 second=241 amount=-3 +kerning first=8250 second=362 amount=-4 +kerning first=275 second=235 amount=-1 +kerning first=8218 second=122 amount=-3 +kerning first=339 second=380 amount=-2 +kerning first=352 second=248 amount=-1 +kerning first=81 second=8249 amount=-1 +kerning first=311 second=235 amount=-3 +kerning first=74 second=283 amount=-2 +kerning first=375 second=380 amount=-3 +kerning first=117 second=8249 amount=-2 +kerning first=216 second=105 amount=-1 +kerning first=325 second=353 amount=-2 +kerning first=66 second=224 amount=-3 +kerning first=104 second=118 amount=-3 +kerning first=327 second=338 amount=-2 +kerning first=268 second=241 amount=-1 +kerning first=323 second=283 amount=-2 +kerning first=295 second=98 amount=-2 +kerning first=207 second=224 amount=-2 +kerning first=287 second=283 amount=-2 +kerning first=259 second=98 amount=-1 +kerning first=1079 second=1081 amount=-1 +kerning first=251 second=283 amount=-1 +kerning first=231 second=380 amount=-2 +kerning first=367 second=98 amount=-2 +kerning first=279 second=224 amount=-2 +kerning first=219 second=338 amount=-1 +kerning first=330 second=375 amount=-2 +kerning first=344 second=8221 amount=-5 +kerning first=267 second=380 amount=-2 +kerning first=356 second=85 amount=-1 +kerning first=243 second=224 amount=-1 +kerning first=1024 second=1053 amount=-1 +kerning first=198 second=112 amount=-2 +kerning first=376 second=248 amount=-3 +kerning first=103 second=45 amount=-3 +kerning first=198 second=204 amount=-2 +kerning first=351 second=224 amount=-1 +kerning first=87 second=193 amount=-6 +kerning first=67 second=318 amount=-1 +kerning first=334 second=325 amount=-2 +kerning first=236 second=226 amount=-2 +kerning first=103 second=318 amount=-3 +kerning first=304 second=248 amount=-2 +kerning first=90 second=380 amount=-3 +kerning first=203 second=228 amount=-1 +kerning first=232 second=248 amount=-1 +kerning first=264 second=193 amount=-3 +kerning first=244 second=318 amount=-2 +kerning first=366 second=8249 amount=-5 +kerning first=268 second=248 amount=-2 +kerning first=381 second=331 amount=-1 +kerning first=98 second=228 amount=-1 +kerning first=280 second=318 amount=-1 +kerning first=258 second=8249 amount=-4 +kerning first=316 second=318 amount=-2 +kerning first=256 second=101 amount=-1 +kerning first=1070 second=1038 amount=-3 +kerning first=1071 second=1097 amount=-1 +kerning first=1049 second=1072 amount=-1 +kerning first=379 second=205 amount=-1 +kerning first=1027 second=1047 amount=-1 +kerning first=1063 second=1047 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=364 second=101 amount=-2 +kerning first=313 second=66 amount=-2 +kerning first=365 second=230 amount=-1 +kerning first=279 second=231 amount=-1 +kerning first=1093 second=1098 amount=-1 +kerning first=315 second=255 amount=-3 +kerning first=257 second=230 amount=-1 +kerning first=251 second=281 amount=-1 +kerning first=279 second=255 amount=-2 +kerning first=1071 second=1073 amount=-1 +kerning first=199 second=205 amount=-3 +kerning first=287 second=281 amount=-2 +kerning first=243 second=255 amount=-3 +kerning first=106 second=251 amount=-1 +kerning first=323 second=281 amount=-2 +kerning first=207 second=255 amount=-2 +kerning first=70 second=251 amount=-1 +kerning first=221 second=230 amount=-5 +kerning first=97 second=108 amount=-1 +kerning first=1102 second=1075 amount=-1 +kerning first=74 second=281 amount=-2 +kerning first=66 second=8217 amount=-4 +kerning first=102 second=255 amount=-1 +kerning first=81 second=8221 amount=-2 +kerning first=376 second=216 amount=-3 +kerning first=248 second=347 amount=-2 +kerning first=102 second=8217 amount=3 +kerning first=334 second=44 amount=-3 +kerning first=283 second=251 amount=-2 +kerning first=381 second=99 amount=-1 +kerning first=378 second=107 amount=-2 +kerning first=198 second=107 amount=-1 +kerning first=355 second=251 amount=-1 +kerning first=67 second=364 amount=-2 +kerning first=196 second=216 amount=-3 +kerning first=107 second=347 amount=-2 +kerning first=258 second=8221 amount=-5 +kerning first=207 second=231 amount=-2 +kerning first=324 second=105 amount=-1 +kerning first=117 second=8221 amount=-3 +kerning first=268 second=216 amount=-3 +kerning first=66 second=231 amount=-1 +kerning first=382 second=371 amount=-2 +kerning first=234 second=107 amount=-2 +kerning first=325 second=250 amount=-2 +kerning first=304 second=216 amount=-2 +kerning first=102 second=231 amount=-1 +kerning first=259 second=333 amount=-1 +kerning first=381 second=67 amount=-1 +kerning first=115 second=106 amount=-1 +kerning first=248 second=345 amount=-1 +kerning first=369 second=229 amount=-1 +kerning first=211 second=282 amount=-2 +kerning first=266 second=80 amount=-3 +kerning first=278 second=171 amount=-2 +kerning first=87 second=217 amount=-1 +kerning first=79 second=106 amount=-1 +kerning first=187 second=68 amount=-5 +kerning first=82 second=333 amount=-3 +kerning first=356 second=345 amount=-1 +kerning first=216 second=346 amount=-1 +kerning first=274 second=368 amount=-2 +kerning first=201 second=67 amount=-1 +kerning first=328 second=106 amount=-2 +kerning first=1052 second=1102 amount=-1 +kerning first=310 second=368 amount=-2 +kerning first=89 second=80 amount=-1 +kerning first=118 second=333 amount=-3 +kerning first=264 second=217 amount=-2 +kerning first=75 second=346 amount=-2 +kerning first=80 second=230 amount=-1 +kerning first=236 second=243 amount=-1 +kerning first=116 second=230 amount=-1 +kerning first=203 second=204 amount=-2 +kerning first=288 second=346 amount=-2 +kerning first=1045 second=1049 amount=-1 +kerning first=346 second=368 amount=-3 +kerning first=207 second=338 amount=-2 +kerning first=338 second=80 amount=-2 +kerning first=367 second=333 amount=-1 +kerning first=233 second=307 amount=-2 +kerning first=269 second=307 amount=-2 +kerning first=305 second=307 amount=-1 +kerning first=1038 second=1033 amount=-5 +kerning first=374 second=80 amount=-1 +kerning first=201 second=334 amount=-1 +kerning first=88 second=284 amount=-3 +kerning first=1073 second=1074 amount=-1 +kerning first=8216 second=260 amount=-8 +kerning first=8217 second=326 amount=-2 +kerning first=256 second=369 amount=-3 +kerning first=233 second=44 amount=-3 +kerning first=198 second=79 amount=-1 +kerning first=256 second=104 amount=-2 +kerning first=364 second=369 amount=-1 +kerning first=102 second=259 amount=-2 +kerning first=201 second=77 amount=-2 +kerning first=115 second=369 amount=-1 +kerning first=288 second=374 amount=-3 +kerning first=198 second=344 amount=-2 +kerning first=220 second=369 amount=-1 +kerning first=350 second=192 amount=-4 +kerning first=381 second=334 amount=-1 +kerning first=216 second=374 amount=-2 +kerning first=378 second=109 amount=-2 +kerning first=351 second=227 amount=-1 +kerning first=198 second=109 amount=-1 +kerning first=327 second=246 amount=-2 +kerning first=120 second=229 amount=-2 +kerning first=1114 second=1085 amount=-1 +kerning first=83 second=194 amount=-4 +kerning first=336 second=217 amount=-1 +kerning first=258 second=8220 amount=-5 +kerning first=233 second=279 amount=-1 +kerning first=279 second=227 amount=-2 +kerning first=1080 second=1086 amount=-1 +kerning first=243 second=227 amount=-1 +kerning first=234 second=109 amount=-2 +kerning first=84 second=229 amount=-5 +kerning first=120 second=232 amount=-2 +kerning first=305 second=44 amount=-2 +kerning first=1093 second=1095 amount=-1 +kerning first=90 second=226 amount=-1 +kerning first=1031 second=1074 amount=-1 +kerning first=333 second=229 amount=-1 +kerning first=115 second=104 amount=-1 +kerning first=377 second=44 amount=-1 +kerning first=193 second=284 amount=-3 +kerning first=1067 second=1074 amount=-1 +kerning first=197 second=279 amount=-1 +kerning first=187 second=65 amount=-4 +kerning first=225 second=229 amount=-1 +kerning first=339 second=289 amount=-3 +kerning first=201 second=305 amount=-1 +kerning first=97 second=371 amount=-1 +kerning first=261 second=257 amount=-1 +kerning first=354 second=219 amount=-1 +kerning first=121 second=99 amount=-3 +kerning first=218 second=379 amount=-1 +kerning first=311 second=232 amount=-3 +kerning first=118 second=361 amount=-1 +kerning first=1039 second=1096 amount=-1 +kerning first=225 second=257 amount=-1 +kerning first=282 second=219 amount=-2 +kerning first=82 second=361 amount=-2 +kerning first=84 second=257 amount=-5 +kerning first=223 second=361 amount=-1 +kerning first=326 second=118 amount=-3 +kerning first=120 second=257 amount=-2 +kerning first=210 second=219 amount=-1 +kerning first=187 second=361 amount=-1 +kerning first=377 second=279 amount=-1 +kerning first=295 second=361 amount=-1 +kerning first=356 second=347 amount=-3 +kerning first=82 second=210 amount=-3 +kerning first=259 second=361 amount=-1 +kerning first=80 second=202 amount=-1 +kerning first=69 second=219 amount=-2 +kerning first=353 second=121 amount=-3 +kerning first=356 second=82 amount=-1 +kerning first=375 second=117 amount=-1 +kerning first=196 second=244 amount=-1 +kerning first=283 second=254 amount=-2 +kerning first=75 second=374 amount=-2 +kerning first=317 second=121 amount=-3 +kerning first=232 second=244 amount=-1 +kerning first=281 second=121 amount=-2 +kerning first=268 second=244 amount=-2 +kerning first=355 second=254 amount=-1 +kerning first=8216 second=291 amount=-4 +kerning first=245 second=121 amount=-3 +kerning first=1053 second=1099 amount=-1 +kerning first=204 second=267 amount=-2 +kerning first=304 second=244 amount=-2 +kerning first=209 second=121 amount=-2 +kerning first=212 second=82 amount=-2 +kerning first=106 second=254 amount=-1 +kerning first=333 second=257 amount=-1 +kerning first=99 second=267 amount=-1 +kerning first=376 second=244 amount=-3 +kerning first=296 second=249 amount=-1 +kerning first=369 second=257 amount=-1 +kerning first=1089 second=1099 amount=-1 +kerning first=1057 second=1116 amount=-1 +kerning first=87 second=209 amount=-1 +kerning first=379 second=199 amount=-1 +kerning first=356 second=69 amount=-1 +kerning first=88 second=8217 amount=-2 +kerning first=221 second=212 amount=-3 +kerning first=284 second=69 amount=-1 +kerning first=205 second=332 amount=-2 +kerning first=1086 second=1119 amount=-1 +kerning first=264 second=209 amount=-3 +kerning first=313 second=79 amount=-1 +kerning first=212 second=69 amount=-2 +kerning first=205 second=79 amount=-2 +kerning first=121 second=316 amount=-2 +kerning first=198 second=82 amount=-2 +kerning first=71 second=69 amount=-1 +kerning first=371 second=303 amount=-1 +kerning first=379 second=192 amount=-1 +kerning first=69 second=216 amount=-1 +kerning first=266 second=76 amount=-3 +kerning first=366 second=289 amount=-4 +kerning first=216 second=89 amount=-2 +kerning first=313 second=332 amount=-1 +kerning first=1089 second=1096 amount=-1 +kerning first=248 second=378 amount=-2 +kerning first=288 second=89 amount=-3 +kerning first=194 second=290 amount=-3 +kerning first=356 second=113 amount=-3 +kerning first=206 second=333 amount=-2 +kerning first=89 second=76 amount=-1 +kerning first=199 second=199 amount=-3 +kerning first=193 second=8217 amount=-5 +kerning first=240 second=110 amount=-1 +kerning first=199 second=192 amount=-3 +kerning first=77 second=242 amount=-2 +kerning first=313 second=72 amount=-2 +kerning first=218 second=242 amount=-2 +kerning first=86 second=82 amount=-1 +kerning first=221 second=205 amount=-1 +kerning first=89 second=336 amount=-3 +kerning first=75 second=89 amount=-2 +kerning first=203 second=226 amount=-1 +kerning first=8250 second=374 amount=-4 +kerning first=363 second=326 amount=-1 +kerning first=80 second=205 amount=-1 +kerning first=362 second=242 amount=-2 +kerning first=275 second=226 amount=-2 +kerning first=84 second=75 amount=-1 +kerning first=272 second=8221 amount=-2 +kerning first=72 second=119 amount=-2 +kerning first=347 second=226 amount=-1 +kerning first=307 second=45 amount=-3 +kerning first=282 second=216 amount=-1 +kerning first=374 second=76 amount=-1 +kerning first=108 second=119 amount=-3 +kerning first=219 second=326 amount=-2 +kerning first=338 second=76 amount=-2 +kerning first=255 second=326 amount=-2 +kerning first=97 second=253 amount=-3 +kerning first=236 second=8221 amount=-2 +kerning first=291 second=326 amount=-1 +kerning first=8250 second=381 amount=-4 +kerning first=1064 second=1092 amount=-1 +kerning first=352 second=302 amount=-3 +kerning first=226 second=316 amount=-1 +kerning first=82 second=86 amount=-3 +kerning first=203 second=219 amount=-2 +kerning first=262 second=316 amount=-1 +kerning first=87 second=202 amount=-1 +kerning first=378 second=100 amount=-1 +kerning first=321 second=119 amount=-3 +kerning first=336 second=209 amount=-2 +kerning first=381 second=45 amount=-3 +kerning first=336 second=202 amount=-2 +kerning first=208 second=302 amount=-2 +kerning first=1060 second=1059 amount=-3 +kerning first=264 second=202 amount=-3 +kerning first=45 second=374 amount=-4 +kerning first=187 second=86 amount=-4 +kerning first=98 second=226 amount=-1 +kerning first=363 second=279 amount=-1 +kerning first=67 second=302 amount=-3 +kerning first=346 second=375 amount=-2 +kerning first=337 second=259 amount=-1 +kerning first=310 second=375 amount=-3 +kerning first=8217 second=338 amount=-2 +kerning first=1100 second=1085 amount=-1 +kerning first=99 second=269 amount=-1 +kerning first=374 second=325 amount=-1 +kerning first=378 second=103 amount=-2 +kerning first=84 second=253 amount=-3 +kerning first=1064 second=1085 amount=-1 +kerning first=288 second=356 amount=-3 +kerning first=364 second=122 amount=-3 +kerning first=1025 second=1098 amount=-3 +kerning first=279 second=246 amount=-1 +kerning first=120 second=253 amount=-3 +kerning first=1071 second=1082 amount=-1 +kerning first=204 second=269 amount=-2 +kerning first=328 second=122 amount=-1 +kerning first=115 second=382 amount=-2 +kerning first=279 second=252 amount=-2 +kerning first=305 second=378 amount=-1 +kerning first=216 second=356 amount=-2 +kerning first=216 second=362 amount=-1 +kerning first=207 second=246 amount=-2 +kerning first=225 second=253 amount=-3 +kerning first=315 second=252 amount=-2 +kerning first=198 second=363 amount=-2 +kerning first=234 second=103 amount=-3 +kerning first=1089 second=1075 amount=-1 +kerning first=261 second=253 amount=-2 +kerning first=351 second=252 amount=-1 +kerning first=288 second=362 amount=-1 +kerning first=198 second=103 amount=-3 +kerning first=1053 second=1075 amount=-1 +kerning first=382 second=375 amount=-2 +kerning first=229 second=259 amount=-1 +kerning first=256 second=116 amount=-1 +kerning first=75 second=356 amount=-2 +kerning first=1059 second=1119 amount=-4 +kerning first=66 second=246 amount=-1 +kerning first=1045 second=1043 amount=-1 +kerning first=8217 second=345 amount=-2 +kerning first=115 second=122 amount=-2 +kerning first=328 second=382 amount=-1 +kerning first=84 second=213 amount=-3 +kerning first=75 second=362 amount=-2 +kerning first=79 second=122 amount=-2 +kerning first=364 second=382 amount=-3 +kerning first=88 second=259 amount=-1 +kerning first=378 second=363 amount=-2 +kerning first=369 second=245 amount=-1 +kerning first=378 second=369 amount=-2 +kerning first=1069 second=1058 amount=-1 +kerning first=1071 second=1089 amount=-1 +kerning first=198 second=369 amount=-2 +kerning first=314 second=307 amount=-1 +kerning first=220 second=382 amount=-3 +kerning first=364 second=109 amount=-2 +kerning first=97 second=375 amount=-3 +kerning first=220 second=122 amount=-3 +kerning first=328 second=109 amount=-1 +kerning first=1107 second=1089 amount=-1 +kerning first=234 second=369 amount=-2 +kerning first=70 second=266 amount=-1 +kerning first=283 second=279 amount=-1 +kerning first=111 second=355 amount=-1 +kerning first=202 second=115 amount=-1 +kerning first=75 second=355 amount=-1 +kerning first=194 second=336 amount=-3 +kerning first=220 second=109 amount=-2 +kerning first=97 second=115 amount=-1 +kerning first=356 second=256 amount=-6 +kerning first=335 second=380 amount=-2 +kerning first=106 second=279 amount=-1 +kerning first=302 second=336 amount=-2 +kerning first=346 second=115 amount=-1 +kerning first=70 second=279 amount=-1 +kerning first=252 second=355 amount=-1 +kerning first=338 second=336 amount=-1 +kerning first=382 second=115 amount=-2 +kerning first=1045 second=1036 amount=-1 +kerning first=374 second=336 amount=-3 +kerning first=274 second=115 amount=-1 +kerning first=208 second=296 amount=-2 +kerning first=1064 second=1086 amount=-1 +kerning first=310 second=115 amount=-1 +kerning first=369 second=232 amount=-1 +kerning first=333 second=253 amount=-3 +kerning first=280 second=296 amount=-2 +kerning first=369 second=253 amount=-3 +kerning first=241 second=351 amount=-1 +kerning first=202 second=108 amount=-1 +kerning first=8250 second=196 amount=-4 +kerning first=115 second=116 amount=-2 +kerning first=352 second=296 amount=-3 +kerning first=261 second=232 amount=-1 +kerning first=225 second=232 amount=-1 +kerning first=81 second=8217 amount=-2 +kerning first=274 second=108 amount=-1 +kerning first=80 second=206 amount=-1 +kerning first=1052 second=1096 amount=-1 +kerning first=382 second=108 amount=-2 +kerning first=346 second=108 amount=-2 +kerning first=198 second=370 amount=-2 +kerning first=84 second=232 amount=-3 +kerning first=104 second=98 amount=-2 +kerning first=356 second=75 amount=-1 +kerning first=266 second=328 amount=-1 +kerning first=352 second=315 amount=-3 +kerning first=244 second=303 amount=-1 +kerning first=330 second=290 amount=-2 +kerning first=221 second=206 amount=-1 +kerning first=230 second=328 amount=-2 +kerning first=280 second=303 amount=-1 +kerning first=366 second=290 amount=-1 +kerning first=284 second=75 amount=-1 +kerning first=1086 second=1113 amount=-2 +kerning first=208 second=303 amount=-1 +kerning first=76 second=200 amount=-2 +kerning first=1050 second=1113 amount=-2 +kerning first=208 second=315 amount=-2 +kerning first=75 second=83 amount=-2 +kerning first=374 second=328 amount=-3 +kerning first=264 second=196 amount=-3 +kerning first=1100 second=1107 amount=-1 +kerning first=338 second=328 amount=-1 +kerning first=280 second=315 amount=-2 +kerning first=316 second=303 amount=-1 +kerning first=258 second=290 amount=-3 +kerning first=1064 second=1107 amount=-1 +kerning first=317 second=77 amount=-2 +kerning first=352 second=303 amount=-3 +kerning first=317 second=211 amount=-1 +kerning first=275 second=225 amount=-2 +kerning first=216 second=83 amount=-1 +kerning first=317 second=380 amount=-3 +kerning first=217 second=365 amount=-1 +kerning first=311 second=225 amount=-2 +kerning first=71 second=323 amount=-1 +kerning first=87 second=196 amount=-6 +kerning first=353 second=380 amount=-2 +kerning first=347 second=225 amount=-1 +kerning first=288 second=83 amount=-2 +kerning first=1057 second=1117 amount=-1 +kerning first=281 second=98 amount=-2 +kerning first=381 second=46 amount=-1 +kerning first=98 second=225 amount=-1 +kerning first=284 second=323 amount=-1 +kerning first=313 second=85 amount=-3 +kerning first=240 second=249 amount=-1 +kerning first=209 second=380 amount=-1 +kerning first=353 second=98 amount=-2 +kerning first=203 second=225 amount=-1 +kerning first=356 second=323 amount=-1 +kerning first=245 second=380 amount=-2 +kerning first=317 second=98 amount=-2 +kerning first=8250 second=375 amount=-3 +kerning first=323 second=286 amount=-2 +kerning first=283 second=273 amount=-1 +kerning first=281 second=380 amount=-2 +kerning first=376 second=235 amount=-3 +kerning first=102 second=233 amount=-1 +kerning first=252 second=102 amount=-1 +kerning first=354 second=210 amount=-3 +kerning first=66 second=233 amount=-1 +kerning first=288 second=102 amount=-2 +kerning first=89 second=77 amount=-1 +kerning first=1104 second=1118 amount=-1 +kerning first=207 second=233 amount=-2 +kerning first=324 second=102 amount=-1 +kerning first=201 second=311 amount=-1 +kerning first=345 second=46 amount=-4 +kerning first=1025 second=1097 amount=-1 +kerning first=338 second=77 amount=-2 +kerning first=82 second=71 amount=-3 +kerning first=221 second=211 amount=-3 +kerning first=279 second=233 amount=-1 +kerning first=74 second=286 amount=-2 +kerning first=323 second=103 amount=-3 +kerning first=82 second=352 amount=-3 +kerning first=111 second=102 amount=-1 +kerning first=266 second=77 amount=-3 +kerning first=268 second=345 amount=-1 +kerning first=193 second=45 amount=-4 +kerning first=201 second=46 amount=-1 +kerning first=187 second=352 amount=-3 +kerning first=69 second=210 amount=-1 +kerning first=335 second=112 amount=-1 +kerning first=1089 second=1090 amount=-1 +kerning first=214 second=221 amount=-2 +kerning first=207 second=252 amount=-1 +kerning first=263 second=112 amount=-1 +kerning first=87 second=218 amount=-1 +kerning first=196 second=235 amount=-1 +kerning first=243 second=252 amount=-1 +kerning first=115 second=110 amount=-2 +kerning first=232 second=235 amount=-1 +kerning first=89 second=328 amount=-3 +kerning first=268 second=235 amount=-2 +kerning first=122 second=112 amount=-3 +kerning first=216 second=350 amount=-1 +kerning first=220 second=110 amount=-2 +kerning first=304 second=235 amount=-2 +kerning first=1053 second=1090 amount=-1 +kerning first=86 second=112 amount=-2 +kerning first=80 second=194 amount=-4 +kerning first=66 second=252 amount=-3 +kerning first=8217 second=332 amount=-2 +kerning first=227 second=113 amount=-1 +kerning first=214 second=237 amount=-1 +kerning first=113 second=250 amount=-2 +kerning first=209 second=378 amount=-1 +kerning first=187 second=353 amount=-1 +kerning first=77 second=250 amount=-2 +kerning first=204 second=275 amount=-2 +kerning first=223 second=353 amount=-2 +kerning first=321 second=171 amount=-1 +kerning first=8250 second=120 amount=-3 +kerning first=122 second=113 amount=-1 +kerning first=109 second=237 amount=-1 +kerning first=218 second=250 amount=-1 +kerning first=281 second=378 amount=-2 +kerning first=259 second=353 amount=-1 +kerning first=75 second=44 amount=-1 +kerning first=86 second=366 amount=-1 +kerning first=344 second=262 amount=-3 +kerning first=86 second=113 amount=-3 +kerning first=288 second=350 amount=-2 +kerning first=73 second=237 amount=-1 +kerning first=245 second=378 amount=-2 +kerning first=295 second=353 amount=-1 +kerning first=327 second=352 amount=-2 +kerning first=298 second=117 amount=-2 +kerning first=371 second=113 amount=-3 +kerning first=70 second=260 amount=-3 +kerning first=371 second=100 amount=-3 +kerning first=201 second=73 amount=-2 +kerning first=8250 second=108 amount=-1 +kerning first=108 second=171 amount=-3 +kerning first=353 second=365 amount=-1 +kerning first=203 second=315 amount=-2 +kerning first=317 second=365 amount=-2 +kerning first=104 second=378 amount=-1 +kerning first=82 second=353 amount=-2 +kerning first=213 second=171 amount=-1 +kerning first=281 second=365 amount=-2 +kerning first=263 second=113 amount=-1 +kerning first=352 second=237 amount=-3 +kerning first=277 second=273 amount=-1 +kerning first=68 second=378 amount=-2 +kerning first=249 second=171 amount=-2 +kerning first=227 second=100 amount=-1 +kerning first=204 second=288 amount=-2 +kerning first=211 second=260 amount=-4 +kerning first=263 second=100 amount=-1 +kerning first=313 second=87 amount=-3 +kerning first=374 second=220 amount=-1 +kerning first=200 second=249 amount=-2 +kerning first=1107 second=1076 amount=-2 +kerning first=298 second=350 amount=-2 +kerning first=236 second=249 amount=-1 +kerning first=1060 second=1078 amount=-1 +kerning first=1060 second=1065 amount=-1 +kerning first=353 second=378 amount=-2 +kerning first=86 second=100 amount=-3 +kerning first=313 second=354 amount=-3 +kerning first=317 second=378 amount=-3 +kerning first=122 second=100 amount=-1 +kerning first=344 second=249 amount=-2 +kerning first=200 second=262 amount=-1 +kerning first=1024 second=1078 amount=-2 +kerning first=380 second=249 amount=-2 +kerning first=1100 second=1091 amount=-2 +kerning first=45 second=289 amount=-3 +kerning first=277 second=339 amount=-1 +kerning first=1046 second=1105 amount=-2 +kerning first=202 second=377 amount=-1 +kerning first=268 second=223 amount=-1 +kerning first=81 second=289 amount=-1 +kerning first=76 second=282 amount=-2 +kerning first=362 second=248 amount=-2 +kerning first=1082 second=1105 amount=-2 +kerning first=1053 second=1077 amount=-1 +kerning first=353 second=114 amount=-1 +kerning first=376 second=223 amount=-3 +kerning first=217 second=198 amount=-4 +kerning first=117 second=289 amount=-3 +kerning first=84 second=71 amount=-3 +kerning first=68 second=380 amount=-2 +kerning first=1024 second=1065 amount=-1 +kerning first=8250 second=121 amount=-3 +kerning first=250 second=279 amount=-1 +kerning first=281 second=114 amount=-1 +kerning first=222 second=289 amount=-1 +kerning first=346 second=377 amount=-1 +kerning first=258 second=289 amount=-3 +kerning first=344 second=8220 amount=-5 +kerning first=218 second=248 amount=-2 +kerning first=81 second=274 amount=-2 +kerning first=362 second=263 amount=-2 +kerning first=232 second=223 amount=-1 +kerning first=1056 second=1039 amount=-1 +kerning first=201 second=327 amount=-2 +kerning first=77 second=248 amount=-2 +kerning first=45 second=274 amount=-5 +kerning first=274 second=377 amount=-1 +kerning first=245 second=114 amount=-1 +kerning first=76 second=198 amount=-2 +kerning first=330 second=289 amount=-3 +kerning first=272 second=8220 amount=-2 +kerning first=113 second=248 amount=-1 +kerning first=113 second=263 amount=-1 +kerning first=245 second=365 amount=-1 +kerning first=236 second=8220 amount=-2 +kerning first=66 second=356 amount=-3 +kerning first=74 second=287 amount=-3 +kerning first=209 second=365 amount=-2 +kerning first=1042 second=1064 amount=-2 +kerning first=353 second=110 amount=-2 +kerning first=86 second=379 amount=-3 +kerning first=218 second=263 amount=-2 +kerning first=1042 second=1079 amount=-2 +kerning first=222 second=274 amount=-2 +kerning first=104 second=365 amount=-1 +kerning first=1078 second=1079 amount=-1 +kerning first=381 second=327 amount=-1 +kerning first=67 second=315 amount=-3 +kerning first=110 second=287 amount=-2 +kerning first=212 second=75 amount=-2 +kerning first=209 second=99 amount=-2 +kerning first=100 second=339 amount=-1 +kerning first=331 second=353 amount=-1 +kerning first=251 second=287 amount=-3 +kerning first=367 second=353 amount=-2 +kerning first=281 second=99 amount=-1 +kerning first=8250 second=204 amount=-5 +kerning first=323 second=287 amount=-3 +kerning first=77 second=263 amount=-2 +kerning first=71 second=75 amount=-1 +kerning first=250 second=237 amount=-2 +kerning first=287 second=287 amount=-2 +kerning first=338 second=334 amount=-1 +kerning first=315 second=237 amount=-2 +kerning first=302 second=334 amount=-2 +kerning first=279 second=237 amount=-2 +kerning first=122 second=104 amount=-2 +kerning first=235 second=187 amount=-2 +kerning first=262 second=44 amount=-1 +kerning first=258 second=284 amount=-3 +kerning first=250 second=234 amount=-1 +kerning first=243 second=237 amount=-1 +kerning first=262 second=223 amount=-1 +kerning first=69 second=197 amount=-2 +kerning first=374 second=334 amount=-3 +kerning first=207 second=237 amount=-1 +kerning first=84 second=244 amount=-3 +kerning first=198 second=193 amount=-2 +kerning first=1064 second=1094 amount=-1 +kerning first=1049 second=1084 amount=-1 +kerning first=120 second=244 amount=-2 +kerning first=45 second=382 amount=-5 +kerning first=121 second=44 amount=-5 +kerning first=381 second=324 amount=-1 +kerning first=210 second=197 amount=-4 +kerning first=73 second=234 amount=-2 +kerning first=66 second=237 amount=-3 +kerning first=263 second=104 amount=-2 +kerning first=226 second=44 amount=-1 +kerning first=198 second=354 amount=-1 +kerning first=227 second=104 amount=-1 +kerning first=1089 second=1084 amount=-1 +kerning first=282 second=197 amount=-2 +kerning first=214 second=227 amount=-1 +kerning first=1053 second=1084 amount=-1 +kerning first=217 second=194 amount=-4 +kerning first=258 second=277 amount=-1 +kerning first=106 second=291 amount=-3 +kerning first=354 second=197 amount=-6 +kerning first=366 second=277 amount=-2 +kerning first=209 second=111 amount=-2 +kerning first=109 second=227 amount=-1 +kerning first=1045 second=1034 amount=-1 +kerning first=330 second=277 amount=-2 +kerning first=100 second=351 amount=-1 +kerning first=73 second=227 amount=-2 +kerning first=86 second=217 amount=-1 +kerning first=194 second=334 amount=-3 +kerning first=366 second=284 amount=-1 +kerning first=1053 second=1096 amount=-1 +kerning first=187 second=74 amount=-4 +kerning first=1093 second=1104 amount=-2 +kerning first=89 second=331 amount=-3 +kerning first=1049 second=1054 amount=-1 +kerning first=76 second=194 amount=-2 +kerning first=198 second=87 amount=-1 +kerning first=266 second=334 amount=-3 +kerning first=286 second=227 amount=-1 +kerning first=250 second=227 amount=-1 +kerning first=330 second=284 amount=-2 +kerning first=198 second=364 amount=-2 +kerning first=255 second=314 amount=-2 +kerning first=193 second=264 amount=-3 +kerning first=335 second=367 amount=-1 +kerning first=323 second=8249 amount=-4 +kerning first=89 second=327 amount=-1 +kerning first=382 second=111 amount=-1 +kerning first=1024 second=1074 amount=-1 +kerning first=354 second=248 amount=-3 +kerning first=371 second=367 amount=-1 +kerning first=326 second=257 amount=-1 +kerning first=263 second=367 amount=-2 +kerning first=288 second=361 amount=-1 +kerning first=251 second=8249 amount=-2 +kerning first=97 second=121 amount=-3 +kerning first=291 second=314 amount=-3 +kerning first=362 second=257 amount=-3 +kerning first=252 second=361 amount=-1 +kerning first=287 second=8249 amount=-3 +kerning first=352 second=102 amount=-3 +kerning first=281 second=111 amount=-1 +kerning first=337 second=187 amount=-2 +kerning first=254 second=257 amount=-1 +kerning first=254 second=254 amount=-1 +kerning first=304 second=378 amount=-1 +kerning first=266 second=327 amount=-3 +kerning first=205 second=351 amount=-2 +kerning first=363 second=314 amount=-2 +kerning first=227 second=367 amount=-1 +kerning first=290 second=254 amount=-1 +kerning first=324 second=361 amount=-1 +kerning first=202 second=315 amount=-2 +kerning first=346 second=114 amount=-2 +kerning first=313 second=351 amount=-1 +kerning first=109 second=224 amount=-1 +kerning first=86 second=367 amount=-2 +kerning first=326 second=254 amount=-2 +kerning first=283 second=267 amount=-1 +kerning first=338 second=327 amount=-2 +kerning first=277 second=351 amount=-2 +kerning first=122 second=367 amount=-2 +kerning first=110 second=8249 amount=-3 +kerning first=374 second=327 amount=-1 +kerning first=1056 second=1051 amount=-2 +kerning first=317 second=374 amount=-3 +kerning first=214 second=224 amount=-1 +kerning first=310 second=114 amount=1 +kerning first=274 second=117 amount=-2 +kerning first=344 second=261 amount=-2 +kerning first=382 second=117 amount=-2 +kerning first=380 second=261 amount=-1 +kerning first=369 second=244 amount=-1 +kerning first=346 second=117 amount=-1 +kerning first=371 second=104 amount=-1 +kerning first=72 second=171 amount=-4 +kerning first=1058 second=1114 amount=-2 +kerning first=290 second=250 amount=-1 +kerning first=346 second=121 amount=-2 +kerning first=266 second=338 amount=-3 +kerning first=1049 second=1057 amount=-1 +kerning first=200 second=261 amount=-1 +kerning first=254 second=250 amount=-1 +kerning first=313 second=344 amount=-2 +kerning first=236 second=261 amount=-2 +kerning first=8217 second=339 amount=-3 +kerning first=362 second=250 amount=-1 +kerning first=111 second=361 amount=-1 +kerning first=86 second=101 amount=-3 +kerning first=351 second=237 amount=-2 +kerning first=272 second=261 amount=-1 +kerning first=326 second=250 amount=-1 +kerning first=75 second=361 amount=-3 +kerning first=1045 second=1031 amount=-1 +kerning first=122 second=101 amount=-1 +kerning first=378 second=97 amount=-1 +kerning first=338 second=331 amount=-1 +kerning first=302 second=337 amount=-2 +kerning first=1071 second=1088 amount=-1 +kerning first=227 second=101 amount=-1 +kerning first=8217 second=79 amount=-2 +kerning first=279 second=240 amount=-1 +kerning first=230 second=331 amount=-2 +kerning first=266 second=337 amount=-2 +kerning first=1057 second=1107 amount=-1 +kerning first=263 second=101 amount=-1 +kerning first=1056 second=1041 amount=-1 +kerning first=266 second=331 amount=-1 +kerning first=230 second=337 amount=-1 +kerning first=210 second=200 amount=-2 +kerning first=121 second=108 amount=-2 +kerning first=97 second=117 amount=-1 +kerning first=323 second=290 amount=-2 +kerning first=371 second=101 amount=-3 +kerning first=202 second=117 amount=-2 +kerning first=69 second=200 amount=-2 +kerning first=374 second=337 amount=-3 +kerning first=288 second=98 amount=-1 +kerning first=374 second=330 amount=-1 +kerning first=1042 second=1067 amount=-2 +kerning first=252 second=98 amount=-2 +kerning first=66 second=240 amount=-1 +kerning first=1045 second=1037 amount=-1 +kerning first=69 second=207 amount=-2 +kerning first=113 second=251 amount=-2 +kerning first=324 second=98 amount=-2 +kerning first=290 second=323 amount=-1 +kerning first=229 second=271 amount=-1 +kerning first=338 second=330 amount=-2 +kerning first=111 second=98 amount=-1 +kerning first=207 second=240 amount=-2 +kerning first=218 second=251 amount=-1 +kerning first=221 second=214 amount=-3 +kerning first=75 second=98 amount=-1 +kerning first=89 second=8249 amount=-5 +kerning first=8216 second=279 amount=-3 +kerning first=102 second=240 amount=-1 +kerning first=382 second=380 amount=-2 +kerning first=79 second=194 amount=-4 +kerning first=290 second=251 amount=-1 +kerning first=74 second=290 amount=-2 +kerning first=254 second=251 amount=-1 +kerning first=282 second=201 amount=-2 +kerning first=103 second=311 amount=-2 +kerning first=362 second=251 amount=-1 +kerning first=1045 second=1030 amount=-1 +kerning first=89 second=71 amount=-3 +kerning first=67 second=311 amount=-1 +kerning first=326 second=251 amount=-1 +kerning first=216 second=90 amount=-2 +kerning first=210 second=201 amount=-2 +kerning first=194 second=71 amount=-3 +kerning first=377 second=298 amount=-1 +kerning first=288 second=90 amount=-2 +kerning first=334 second=304 amount=-2 +kerning first=210 second=207 amount=-2 +kerning first=69 second=201 amount=-2 +kerning first=266 second=330 amount=-3 +kerning first=203 second=220 amount=-2 +kerning first=262 second=304 amount=-3 +kerning first=282 second=207 amount=-2 +kerning first=68 second=368 amount=-1 +kerning first=354 second=200 amount=-1 +kerning first=8216 second=273 amount=-3 +kerning first=305 second=291 amount=-2 +kerning first=80 second=221 amount=-1 +kerning first=317 second=368 amount=-3 +kerning first=269 second=291 amount=-3 +kerning first=201 second=324 amount=-1 +kerning first=282 second=200 amount=-2 +kerning first=352 second=311 amount=-2 +kerning first=233 second=291 amount=-3 +kerning first=202 second=381 amount=-1 +kerning first=1089 second=1081 amount=-1 +kerning first=316 second=311 amount=-1 +kerning first=197 second=291 amount=-3 +kerning first=203 second=213 amount=-1 +kerning first=302 second=71 amount=-2 +kerning first=234 second=97 amount=-2 +kerning first=187 second=77 amount=-5 +kerning first=280 second=311 amount=-1 +kerning first=194 second=337 amount=-1 +kerning first=274 second=381 amount=-1 +kerning first=266 second=71 amount=-3 +kerning first=202 second=212 amount=-1 +kerning first=244 second=311 amount=-1 +kerning first=379 second=187 amount=-1 +kerning first=374 second=71 amount=-3 +kerning first=313 second=84 amount=-3 +kerning first=89 second=337 amount=-3 +kerning first=346 second=381 amount=-1 +kerning first=81 second=278 amount=-2 +kerning first=198 second=97 amount=-1 +kerning first=69 second=203 amount=-2 +kerning first=222 second=278 amount=-2 +kerning first=245 second=375 amount=-3 +kerning first=218 second=253 amount=-1 +kerning first=209 second=375 amount=-2 +kerning first=8250 second=117 amount=-1 +kerning first=199 second=193 amount=-3 +kerning first=254 second=253 amount=-3 +kerning first=221 second=218 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=104 second=375 amount=-2 +kerning first=1024 second=1075 amount=-1 +kerning first=207 second=243 amount=-2 +kerning first=89 second=70 amount=-1 +kerning first=326 second=253 amount=-2 +kerning first=371 second=103 amount=-1 +kerning first=8216 second=275 amount=-3 +kerning first=193 second=268 amount=-3 +kerning first=353 second=375 amount=-3 +kerning first=335 second=103 amount=-2 +kerning first=313 second=78 amount=-2 +kerning first=279 second=243 amount=-1 +kerning first=1071 second=1085 amount=-1 +kerning first=317 second=375 amount=-3 +kerning first=67 second=45 amount=-4 +kerning first=267 second=103 amount=-3 +kerning first=1049 second=1060 amount=-1 +kerning first=379 second=193 amount=-1 +kerning first=281 second=375 amount=-2 +kerning first=1100 second=1095 amount=-2 +kerning first=266 second=70 amount=-3 +kerning first=1064 second=1095 amount=-1 +kerning first=382 second=120 amount=-1 +kerning first=338 second=68 amount=-2 +kerning first=1056 second=1045 amount=-1 +kerning first=354 second=203 amount=-1 +kerning first=374 second=68 amount=-1 +kerning first=88 second=268 amount=-3 +kerning first=346 second=118 amount=-3 +kerning first=334 second=310 amount=-2 +kerning first=282 second=203 amount=-2 +kerning first=310 second=118 amount=-3 +kerning first=202 second=120 amount=-1 +kerning first=354 second=201 amount=-1 +kerning first=262 second=310 amount=-3 +kerning first=338 second=70 amount=-2 +kerning first=77 second=253 amount=-2 +kerning first=210 second=203 amount=-2 +kerning first=382 second=118 amount=-2 +kerning first=274 second=120 amount=-1 +kerning first=374 second=70 amount=-1 +kerning first=113 second=253 amount=-1 +kerning first=202 second=118 amount=-1 +kerning first=353 second=105 amount=-2 +kerning first=120 second=245 amount=-2 +kerning first=353 second=108 amount=-2 +kerning first=45 second=280 amount=-5 +kerning first=211 second=270 amount=-2 +kerning first=84 second=245 amount=-3 +kerning first=8250 second=377 amount=-4 +kerning first=274 second=118 amount=-1 +kerning first=81 second=280 amount=-2 +kerning first=103 second=305 amount=-1 +kerning first=281 second=105 amount=-2 +kerning first=67 second=305 amount=-1 +kerning first=317 second=105 amount=-2 +kerning first=202 second=73 amount=-2 +kerning first=208 second=305 amount=-1 +kerning first=1075 second=1108 amount=-1 +kerning first=209 second=105 amount=-1 +kerning first=369 second=241 amount=-1 +kerning first=222 second=280 amount=-2 +kerning first=245 second=105 amount=-1 +kerning first=261 second=245 amount=-1 +kerning first=97 second=118 amount=-3 +kerning first=1089 second=1083 amount=-1 +kerning first=117 second=283 amount=-1 +kerning first=280 second=305 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=225 second=245 amount=-1 +kerning first=244 second=305 amount=-1 +kerning first=374 second=65 amount=-6 +kerning first=200 second=204 amount=-2 +kerning first=201 second=318 amount=-1 +kerning first=1078 second=1073 amount=-1 +kerning first=261 second=241 amount=-1 +kerning first=366 second=283 amount=-2 +kerning first=352 second=305 amount=-3 +kerning first=225 second=241 amount=-1 +kerning first=330 second=283 amount=-2 +kerning first=316 second=305 amount=-1 +kerning first=68 second=105 amount=-1 +kerning first=333 second=241 amount=-1 +kerning first=376 second=228 amount=-4 +kerning first=264 second=334 amount=-3 +kerning first=104 second=108 amount=-1 +kerning first=356 second=335 amount=-3 +kerning first=86 second=370 amount=-1 +kerning first=258 second=283 amount=-1 +kerning first=1042 second=1070 amount=-2 +kerning first=245 second=108 amount=-2 +kerning first=84 second=241 amount=-3 +kerning first=304 second=228 amount=-2 +kerning first=8222 second=305 amount=-1 +kerning first=107 second=335 amount=-3 +kerning first=268 second=228 amount=-2 +kerning first=317 second=108 amount=-2 +kerning first=374 second=331 amount=-3 +kerning first=232 second=228 amount=-2 +kerning first=281 second=108 amount=-3 +kerning first=120 second=241 amount=-1 +kerning first=200 second=256 amount=-2 +kerning first=365 second=287 amount=-3 +kerning first=258 second=281 amount=-1 +kerning first=284 second=66 amount=-1 +kerning first=122 second=107 amount=-2 +kerning first=236 second=8249 amount=-3 +kerning first=100 second=347 amount=-1 +kerning first=263 second=107 amount=-2 +kerning first=73 second=231 amount=-2 +kerning first=212 second=66 amount=-2 +kerning first=227 second=107 amount=-1 +kerning first=366 second=281 amount=-2 +kerning first=1064 second=1097 amount=-1 +kerning first=380 second=255 amount=-2 +kerning first=117 second=281 amount=-1 +kerning first=1056 second=1047 amount=-1 +kerning first=272 second=256 amount=-4 +kerning first=344 second=255 amount=-3 +kerning first=250 second=231 amount=-1 +kerning first=356 second=66 amount=-1 +kerning first=1078 second=1072 amount=-1 +kerning first=233 second=8250 amount=-2 +kerning first=1100 second=1098 amount=-1 +kerning first=281 second=371 amount=-2 +kerning first=77 second=257 amount=-2 +kerning first=203 second=216 amount=-1 +kerning first=194 second=45 amount=-4 +kerning first=1064 second=1098 amount=-1 +kerning first=205 second=81 amount=-2 +kerning first=113 second=257 amount=-2 +kerning first=236 second=255 amount=-3 +kerning first=194 second=67 amount=-3 +kerning first=313 second=81 amount=-1 +kerning first=353 second=371 amount=-1 +kerning first=264 second=205 amount=-3 +kerning first=89 second=67 amount=-3 +kerning first=335 second=107 amount=-1 +kerning first=377 second=8250 amount=-1 +kerning first=356 second=332 amount=-3 +kerning first=104 second=371 amount=-1 +kerning first=313 second=347 amount=-1 +kerning first=8250 second=115 amount=-1 +kerning first=277 second=347 amount=-2 +kerning first=84 second=242 amount=-3 +kerning first=241 second=347 amount=-1 +kerning first=290 second=221 amount=-3 +kerning first=371 second=107 amount=-1 +kerning first=272 second=259 amount=-1 +kerning first=245 second=371 amount=-1 +kerning first=87 second=205 amount=-1 +kerning first=205 second=347 amount=-2 +kerning first=89 second=68 amount=-1 +kerning first=89 second=333 amount=-3 +kerning first=282 second=204 amount=-2 +kerning first=120 second=242 amount=-2 +kerning first=194 second=333 amount=-1 +kerning first=221 second=217 amount=-1 +kerning first=261 second=242 amount=-1 +kerning first=232 second=229 amount=-2 +kerning first=313 second=201 amount=-2 +kerning first=122 second=246 amount=-1 +kerning first=268 second=229 amount=-2 +kerning first=266 second=68 amount=-3 +kerning first=374 second=67 amount=-3 +kerning first=122 second=106 amount=-2 +kerning first=1048 second=1080 amount=-1 +kerning first=338 second=67 amount=-1 +kerning first=8250 second=380 amount=-5 +kerning first=376 second=229 amount=-5 +kerning first=369 second=242 amount=-1 +kerning first=266 second=67 amount=-3 +kerning first=250 second=230 amount=-1 +kerning first=121 second=307 amount=-2 +kerning first=286 second=230 amount=-1 +kerning first=115 second=119 amount=-3 +kerning first=374 second=333 amount=-3 +kerning first=321 second=334 amount=-1 +kerning first=66 second=243 amount=-1 +kerning first=187 second=346 amount=-3 +kerning first=335 second=106 amount=-2 +kerning first=102 second=243 amount=-1 +kerning first=226 second=307 amount=-1 +kerning first=227 second=106 amount=-1 +kerning first=214 second=230 amount=-1 +kerning first=220 second=119 amount=-2 +kerning first=82 second=346 amount=-3 +kerning first=263 second=106 amount=-2 +kerning first=73 second=230 amount=-2 +kerning first=256 second=119 amount=-3 +kerning first=266 second=333 amount=-2 +kerning first=109 second=230 amount=-1 +kerning first=230 second=333 amount=-1 +kerning first=69 second=204 amount=-2 +kerning first=202 second=314 amount=-1 +kerning first=328 second=119 amount=-3 +kerning first=1083 second=1104 amount=-1 +kerning first=210 second=204 amount=-2 +kerning first=291 second=328 amount=-1 +kerning first=371 second=106 amount=3 +kerning first=8250 second=114 amount=-2 +kerning first=364 second=119 amount=-2 +kerning first=302 second=333 amount=-2 +kerning first=323 second=275 amount=-2 +kerning first=121 second=230 amount=-3 +kerning first=222 second=74 amount=-2 +kerning first=1045 second=1053 amount=-1 +kerning first=251 second=275 amount=-1 +kerning first=8216 second=324 amount=-1 +kerning first=257 second=100 amount=-1 +kerning first=85 second=230 amount=-3 +kerning first=330 second=74 amount=-1 +kerning first=86 second=121 amount=-3 +kerning first=366 second=74 amount=-3 +kerning first=1043 second=1105 amount=-3 +kerning first=289 second=223 amount=-1 +kerning first=74 second=275 amount=-2 +kerning first=1055 second=1102 amount=-1 +kerning first=211 second=379 amount=-2 +kerning first=80 second=100 amount=-1 +kerning first=66 second=256 amount=-5 +kerning first=111 second=249 amount=-1 +kerning first=315 second=256 amount=-2 +kerning first=259 second=45 amount=-2 +kerning first=112 second=223 amount=-1 +kerning first=200 second=211 amount=-1 +kerning first=370 second=230 amount=-3 +kerning first=253 second=223 amount=-1 +kerning first=356 second=339 amount=-3 +kerning first=71 second=318 amount=-1 +kerning first=282 second=328 amount=-1 +kerning first=217 second=223 amount=-2 +kerning first=75 second=249 amount=-3 +kerning first=71 second=107 amount=-1 +kerning first=298 second=230 amount=-2 +kerning first=1056 second=1030 amount=-1 +kerning first=206 second=268 amount=-2 +kerning first=288 second=249 amount=-1 +kerning first=334 second=230 amount=-1 +kerning first=324 second=249 amount=-1 +kerning first=344 second=211 amount=-3 +kerning first=226 second=230 amount=-1 +kerning first=8216 second=269 amount=-3 +kerning first=76 second=223 amount=-1 +kerning first=278 second=268 amount=-1 +kerning first=262 second=230 amount=-2 +kerning first=86 second=204 amount=-1 +kerning first=102 second=248 amount=-1 +kerning first=252 second=249 amount=-1 +kerning first=86 second=218 amount=-1 +kerning first=70 second=365 amount=-1 +kerning first=107 second=339 amount=-3 +kerning first=366 second=334 amount=-1 +kerning first=251 second=289 amount=-3 +kerning first=210 second=192 amount=-4 +kerning first=85 second=244 amount=-2 +kerning first=1045 second=1039 amount=-1 +kerning first=287 second=289 amount=-2 +kerning first=325 second=237 amount=-1 +kerning first=1079 second=1091 amount=-2 +kerning first=121 second=244 amount=-3 +kerning first=65 second=268 amount=-3 +kerning first=323 second=289 amount=-3 +kerning first=289 second=237 amount=-2 +kerning first=90 second=313 amount=-1 +kerning first=1071 second=1086 amount=-1 +kerning first=253 second=237 amount=-2 +kerning first=69 second=192 amount=-2 +kerning first=8220 second=366 amount=-1 +kerning first=226 second=244 amount=-1 +kerning first=217 second=237 amount=-2 +kerning first=350 second=282 amount=-3 +kerning first=262 second=244 amount=-2 +kerning first=252 second=263 amount=-1 +kerning first=8218 second=226 amount=-2 +kerning first=298 second=244 amount=-2 +kerning first=112 second=237 amount=-1 +kerning first=71 second=65 amount=-3 +kerning first=278 second=282 amount=-2 +kerning first=76 second=237 amount=-2 +kerning first=75 second=107 amount=-1 +kerning first=84 second=8249 amount=-5 +kerning first=355 second=365 amount=-1 +kerning first=75 second=263 amount=-2 +kerning first=8217 second=252 amount=-1 +kerning first=99 second=244 amount=-1 +kerning first=200 second=225 amount=-1 +kerning first=283 second=365 amount=-2 +kerning first=315 second=270 amount=-2 +kerning first=112 second=251 amount=-1 +kerning first=1116 second=1079 amount=-1 +kerning first=248 second=353 amount=-2 +kerning first=278 second=296 amount=-2 +kerning first=221 second=346 amount=-3 +kerning first=66 second=270 amount=-4 +kerning first=268 second=315 amount=-3 +kerning first=74 second=289 amount=-3 +kerning first=217 second=251 amount=-1 +kerning first=330 second=334 amount=-2 +kerning first=1044 second=1079 amount=-1 +kerning first=110 second=289 amount=-2 +kerning first=90 second=327 amount=-1 +kerning first=350 second=296 amount=-3 +kerning first=106 second=365 amount=-1 +kerning first=87 second=206 amount=-1 +kerning first=289 second=251 amount=-1 +kerning first=334 second=202 amount=-2 +kerning first=253 second=251 amount=-1 +kerning first=248 second=121 amount=-3 +kerning first=242 second=254 amount=-1 +kerning first=106 second=351 amount=-2 +kerning first=86 second=232 amount=-3 +kerning first=262 second=202 amount=-3 +kerning first=278 second=254 amount=-1 +kerning first=252 second=277 amount=-1 +kerning first=325 second=251 amount=-2 +kerning first=80 second=374 amount=-1 +kerning first=314 second=254 amount=-1 +kerning first=264 second=206 amount=-3 +kerning first=107 second=121 amount=-1 +kerning first=65 second=254 amount=-2 +kerning first=76 second=209 amount=-2 +kerning first=336 second=206 amount=-2 +kerning first=71 second=381 amount=-2 +kerning first=101 second=254 amount=-2 +kerning first=75 second=277 amount=-2 +kerning first=70 second=351 amount=-2 +kerning first=1078 second=1077 amount=-2 +kerning first=1024 second=1103 amount=-2 +kerning first=268 second=69 amount=-3 +kerning first=364 second=214 amount=-1 +kerning first=246 second=117 amount=-1 +kerning first=1043 second=1119 amount=-2 +kerning first=248 second=367 amount=-1 +kerning first=201 second=199 amount=-1 +kerning first=365 second=114 amount=-1 +kerning first=370 second=244 amount=-2 +kerning first=212 second=381 amount=-2 +kerning first=1079 second=1119 amount=-1 +kerning first=110 second=261 amount=-1 +kerning first=284 second=367 amount=-1 +kerning first=356 second=79 amount=-3 +kerning first=282 second=117 amount=-2 +kerning first=80 second=72 amount=-1 +kerning first=284 second=381 amount=-2 +kerning first=313 second=76 amount=-2 +kerning first=220 second=105 amount=-2 +kerning first=8249 second=356 amount=-3 +kerning first=221 second=72 amount=-1 +kerning first=8222 second=363 amount=-1 +kerning first=71 second=367 amount=-1 +kerning first=221 second=114 amount=-1 +kerning first=354 second=117 amount=-2 +kerning first=356 second=381 amount=-3 +kerning first=107 second=367 amount=-1 +kerning first=354 second=192 amount=-6 +kerning first=1105 second=1096 amount=-1 +kerning first=356 second=121 amount=-3 +kerning first=304 second=83 amount=-2 +kerning first=355 second=351 amount=-1 +kerning first=282 second=192 amount=-2 +kerning first=75 second=291 amount=-2 +kerning first=283 second=337 amount=-1 +kerning first=262 second=216 amount=-3 +kerning first=376 second=83 amount=-3 +kerning first=314 second=240 amount=-1 +kerning first=298 second=216 amount=-2 +kerning first=206 second=240 amount=-2 +kerning first=90 second=196 amount=-1 +kerning first=212 second=219 amount=-1 +kerning first=1096 second=1089 amount=-1 +kerning first=201 second=171 amount=-2 +kerning first=85 second=216 amount=-1 +kerning first=69 second=117 amount=-2 +kerning first=251 second=261 amount=-1 +kerning first=287 second=261 amount=-3 +kerning first=380 second=382 amount=-2 +kerning first=350 second=240 amount=-1 +kerning first=8222 second=89 amount=-6 +kerning first=323 second=261 amount=-2 +kerning first=284 second=107 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=248 second=107 amount=-1 +kerning first=1045 second=1095 amount=-2 +kerning first=1105 second=1082 amount=-1 +kerning first=381 second=171 amount=-3 +kerning first=74 second=267 amount=-2 +kerning first=228 second=115 amount=-1 +kerning first=220 second=229 amount=-3 +kerning first=101 second=240 amount=-1 +kerning first=80 second=86 amount=-1 +kerning first=252 second=307 amount=-2 +kerning first=350 second=254 amount=-2 +kerning first=244 second=44 amount=-3 +kerning first=365 second=100 amount=-1 +kerning first=1051 second=1060 amount=-1 +kerning first=65 second=240 amount=-1 +kerning first=345 second=171 amount=-1 +kerning first=187 second=350 amount=-3 +kerning first=346 second=201 amount=-3 +kerning first=277 second=252 amount=-2 +kerning first=261 second=228 amount=-1 +kerning first=313 second=252 amount=-2 +kerning first=82 second=350 amount=-3 +kerning first=213 second=221 amount=-2 +kerning first=274 second=201 amount=-2 +kerning first=1056 second=1050 amount=-1 +kerning first=8222 second=377 amount=-1 +kerning first=216 second=207 amount=-2 +kerning first=371 second=246 amount=-3 +kerning first=202 second=201 amount=-2 +kerning first=8218 second=254 amount=-1 +kerning first=100 second=252 amount=-1 +kerning first=111 second=305 amount=-1 +kerning first=381 second=227 amount=-1 +kerning first=365 second=44 amount=-2 +kerning first=236 second=378 amount=-1 +kerning first=345 second=227 amount=-1 +kerning first=205 second=252 amount=-1 +kerning first=216 second=305 amount=-1 +kerning first=263 second=246 amount=-1 +kerning first=1059 second=1101 amount=-3 +kerning first=1091 second=1076 amount=-3 +kerning first=241 second=252 amount=-1 +kerning first=1057 second=1104 amount=-1 +kerning first=227 second=246 amount=-1 +kerning first=267 second=271 amount=-1 +kerning first=86 second=260 amount=-6 +kerning first=200 second=382 amount=-2 +kerning first=101 second=226 amount=-2 +kerning first=303 second=271 amount=-3 +kerning first=201 second=356 amount=-1 +kerning first=252 second=305 amount=-1 +kerning first=282 second=103 amount=-3 +kerning first=324 second=291 amount=-2 +kerning first=216 second=45 amount=-1 +kerning first=272 second=382 amount=-2 +kerning first=86 second=246 amount=-3 +kerning first=206 second=226 amount=-2 +kerning first=375 second=271 amount=-3 +kerning first=324 second=305 amount=-1 +kerning first=210 second=103 amount=-1 +kerning first=252 second=291 amount=-3 +kerning first=106 second=337 amount=-1 +kerning first=242 second=226 amount=-1 +kerning first=288 second=45 amount=-3 +kerning first=1101 second=1107 amount=-1 +kerning first=278 second=107 amount=-1 +kerning first=216 second=291 amount=-1 +kerning first=70 second=337 amount=-1 +kerning first=278 second=226 amount=-1 +kerning first=252 second=45 amount=-2 +kerning first=288 second=207 amount=-1 +kerning first=105 second=103 amount=-3 +kerning first=314 second=226 amount=-2 +kerning first=187 second=80 amount=-5 +kerning first=69 second=103 amount=-3 +kerning first=79 second=84 amount=-2 +kerning first=350 second=226 amount=-2 +kerning first=324 second=45 amount=-3 +kerning first=382 second=365 amount=-2 +kerning first=1087 second=1089 amount=-1 +kerning first=216 second=193 amount=-4 +kerning first=313 second=336 amount=-1 +kerning first=245 second=118 amount=-2 +kerning first=1098 second=1103 amount=-2 +kerning first=267 second=109 amount=-2 +kerning first=210 second=89 amount=-2 +kerning first=375 second=109 amount=-2 +kerning first=1045 second=1052 amount=-1 +kerning first=256 second=84 amount=-6 +kerning first=381 second=213 amount=-1 +kerning first=339 second=109 amount=-2 +kerning first=227 second=115 amount=-1 +kerning first=8222 second=117 amount=-1 +kerning first=101 second=8250 amount=-2 +kerning first=90 second=109 amount=-1 +kerning first=86 second=115 amount=-3 +kerning first=278 second=212 amount=-1 +kerning first=8216 second=194 amount=-8 +kerning first=122 second=115 amount=-2 +kerning first=187 second=90 amount=-4 +kerning first=354 second=103 amount=-4 +kerning first=257 second=44 amount=-1 +kerning first=335 second=115 amount=-2 +kerning first=223 second=104 amount=-1 +kerning first=278 second=78 amount=-2 +kerning first=221 second=44 amount=-5 +kerning first=282 second=364 amount=-2 +kerning first=371 second=115 amount=-2 +kerning first=187 second=104 amount=-1 +kerning first=79 second=70 amount=-2 +kerning first=118 second=104 amount=-2 +kerning first=286 second=117 amount=-1 +kerning first=371 second=232 amount=-3 +kerning first=82 second=104 amount=-3 +kerning first=80 second=44 amount=-4 +kerning first=201 second=213 amount=-1 +kerning first=282 second=89 amount=-1 +kerning first=367 second=104 amount=-2 +kerning first=122 second=232 amount=-1 +kerning first=263 second=232 amount=-1 +kerning first=1027 second=1085 amount=-2 +kerning first=227 second=232 amount=-1 +kerning first=259 second=104 amount=-1 +kerning first=266 second=325 amount=-3 +kerning first=256 second=98 amount=-2 +kerning first=369 second=8249 amount=-2 +kerning first=216 second=73 amount=-2 +kerning first=210 second=75 amount=-2 +kerning first=367 second=118 amount=-3 +kerning first=338 second=325 amount=-2 +kerning first=328 second=98 amount=-2 +kerning first=288 second=73 amount=-1 +kerning first=8222 second=307 amount=-1 +kerning first=218 second=103 amount=-4 +kerning first=69 second=75 amount=-2 +kerning first=269 second=303 amount=-2 +kerning first=259 second=118 amount=-3 +kerning first=365 second=252 amount=-1 +kerning first=354 second=75 amount=-1 +kerning first=75 second=235 amount=-2 +kerning first=305 second=303 amount=-1 +kerning first=223 second=118 amount=-2 +kerning first=307 second=120 amount=-1 +kerning first=89 second=283 amount=-3 +kerning first=366 second=216 amount=-1 +kerning first=363 second=250 amount=-1 +kerning first=313 second=280 amount=-2 +kerning first=331 second=118 amount=-3 +kerning first=282 second=75 amount=-2 +kerning first=274 second=354 amount=-1 +kerning first=233 second=303 amount=-2 +kerning first=115 second=98 amount=-2 +kerning first=295 second=118 amount=-3 +kerning first=201 second=328 amount=-1 +kerning first=82 second=118 amount=-3 +kerning first=302 second=283 amount=-2 +kerning first=1117 second=1108 amount=-1 +kerning first=284 second=196 amount=-3 +kerning first=266 second=283 amount=-2 +kerning first=187 second=118 amount=-3 +kerning first=381 second=328 amount=-1 +kerning first=1091 second=1104 amount=-2 +kerning first=1070 second=1070 amount=-1 +kerning first=356 second=196 amount=-6 +kerning first=202 second=45 amount=-2 +kerning first=118 second=118 amount=-1 +kerning first=194 second=283 amount=-1 +kerning first=1055 second=1104 amount=-1 +kerning first=201 second=370 amount=-2 +kerning first=369 second=311 amount=-2 +kerning first=71 second=196 amount=-3 +kerning first=381 second=241 amount=-1 +kerning first=374 second=283 amount=-3 +kerning first=212 second=196 amount=-4 +kerning first=103 second=314 amount=-3 +kerning first=205 second=266 amount=-2 +kerning first=115 second=112 amount=-3 +kerning first=75 second=87 amount=-2 +kerning first=370 second=286 amount=-1 +kerning first=338 second=311 amount=-1 +kerning first=222 second=362 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=1070 second=1042 amount=-1 +kerning first=262 second=286 amount=-3 +kerning first=258 second=362 amount=-3 +kerning first=1055 second=1090 amount=-1 +kerning first=298 second=286 amount=-2 +kerning first=266 second=311 amount=-1 +kerning first=1092 second=1095 amount=-1 +kerning first=356 second=210 amount=-3 +kerning first=1036 second=1059 amount=-3 +kerning first=280 second=314 amount=-1 +kerning first=120 second=8221 amount=-2 +kerning first=377 second=331 amount=-1 +kerning first=65 second=365 amount=-3 +kerning first=244 second=314 amount=-2 +kerning first=45 second=362 amount=-4 +kerning first=86 second=85 amount=-1 +kerning first=85 second=286 amount=-1 +kerning first=352 second=314 amount=-2 +kerning first=81 second=362 amount=-1 +kerning first=305 second=331 amount=-1 +kerning first=316 second=314 amount=-2 +kerning first=339 second=273 amount=-1 +kerning first=67 second=314 amount=-1 +kerning first=379 second=270 amount=-1 +kerning first=381 second=255 amount=-3 +kerning first=65 second=112 amount=-3 +kerning first=233 second=331 amount=-2 +kerning first=195 second=81 amount=-3 +kerning first=71 second=224 amount=-1 +kerning first=252 second=235 amount=-1 +kerning first=333 second=8221 amount=-2 +kerning first=269 second=331 amount=-2 +kerning first=328 second=369 amount=-1 +kerning first=225 second=8221 amount=-3 +kerning first=364 second=112 amount=-2 +kerning first=261 second=8221 amount=-3 +kerning first=328 second=112 amount=-1 +kerning first=195 second=67 amount=-3 +kerning first=233 second=345 amount=-1 +kerning first=288 second=221 amount=-3 +kerning first=107 second=224 amount=-2 +kerning first=1070 second=1056 amount=-1 +kerning first=1059 second=1087 amount=-4 +kerning first=381 second=269 amount=-1 +kerning first=1050 second=1058 amount=-3 +kerning first=269 second=345 amount=-1 +kerning first=248 second=224 amount=-1 +kerning first=266 second=363 amount=-2 +kerning first=90 second=67 amount=-1 +kerning first=216 second=221 amount=-2 +kerning first=368 second=256 amount=-4 +kerning first=212 second=224 amount=-1 +kerning first=369 second=8221 amount=-3 +kerning first=220 second=112 amount=-2 +kerning first=75 second=221 amount=-2 +kerning first=334 second=229 amount=-1 +kerning first=313 second=266 amount=-1 +kerning first=284 second=224 amount=-1 +kerning first=81 second=205 amount=-2 +kerning first=86 second=302 amount=-1 +kerning first=194 second=255 amount=-3 +kerning first=283 second=250 amount=-2 +kerning first=187 second=116 amount=-1 +kerning first=252 second=347 amount=-2 +kerning first=106 second=281 amount=-1 +kerning first=356 second=224 amount=-4 +kerning first=89 second=255 amount=-3 +kerning first=355 second=250 amount=-1 +kerning first=111 second=378 amount=-2 +kerning first=380 second=326 amount=-2 +kerning first=111 second=347 amount=-2 +kerning first=1042 second=1033 amount=-1 +kerning first=8217 second=353 amount=-2 +kerning first=105 second=307 amount=-1 +kerning first=75 second=347 amount=-1 +kerning first=187 second=204 amount=-5 +kerning first=333 second=371 amount=-1 +kerning first=70 second=250 amount=-1 +kerning first=67 second=328 amount=-1 +kerning first=369 second=371 amount=-1 +kerning first=363 second=248 amount=-1 +kerning first=234 second=101 amount=-1 +kerning first=200 second=326 amount=-1 +kerning first=379 second=352 amount=-1 +kerning first=246 second=307 amount=-1 +kerning first=236 second=326 amount=-2 +kerning first=316 second=328 amount=-1 +kerning first=120 second=371 amount=-3 +kerning first=1057 second=1097 amount=-1 +kerning first=278 second=366 amount=-2 +kerning first=280 second=328 amount=-1 +kerning first=274 second=257 amount=-1 +kerning first=209 second=333 amount=-2 +kerning first=72 second=212 amount=-2 +kerning first=244 second=328 amount=-1 +kerning first=378 second=101 amount=-1 +kerning first=326 second=8221 amount=-4 +kerning first=261 second=371 amount=-1 +kerning first=202 second=257 amount=-1 +kerning first=281 second=333 amount=-1 +kerning first=252 second=378 amount=-2 +kerning first=1030 second=1073 amount=-1 +kerning first=284 second=8220 amount=-1 +kerning first=216 second=378 amount=-2 +kerning first=97 second=257 amount=-1 +kerning first=248 second=8220 amount=-2 +kerning first=324 second=378 amount=-1 +kerning first=1056 second=1092 amount=-1 +kerning first=350 second=366 amount=-3 +kerning first=324 second=347 amount=-1 +kerning first=352 second=328 amount=-1 +kerning first=194 second=252 amount=-3 +kerning first=364 second=288 amount=-1 +kerning first=107 second=8220 amount=-2 +kerning first=286 second=217 amount=-1 +kerning first=1048 second=1090 amount=-1 +kerning first=121 second=113 amount=-3 +kerning first=195 second=243 amount=-1 +kerning first=314 second=106 amount=-3 +kerning first=85 second=113 amount=-2 +kerning first=231 second=243 amount=-1 +kerning first=350 second=106 amount=-1 +kerning first=267 second=243 amount=-1 +kerning first=315 second=80 amount=-2 +kerning first=220 second=288 amount=-1 +kerning first=68 second=87 amount=-2 +kerning first=298 second=113 amount=-2 +kerning first=65 second=366 amount=-3 +kerning first=121 second=345 amount=-1 +kerning first=262 second=113 amount=-2 +kerning first=226 second=113 amount=-1 +kerning first=256 second=288 amount=-3 +kerning first=90 second=243 amount=-1 +kerning first=8220 second=289 amount=-4 +kerning first=313 second=210 amount=-1 +kerning first=262 second=345 amount=-1 +kerning first=260 second=45 amount=-4 +kerning first=8217 second=121 amount=-1 +kerning first=221 second=262 amount=-3 +kerning first=350 second=198 amount=-4 +kerning first=205 second=210 amount=-2 +kerning first=66 second=368 amount=-3 +kerning first=235 second=120 amount=-2 +kerning first=370 second=345 amount=-1 +kerning first=303 second=243 amount=-3 +kerning first=283 second=281 amount=-1 +kerning first=302 second=255 amount=-2 +kerning first=315 second=368 amount=-3 +kerning first=1101 second=1113 amount=-2 +kerning first=8222 second=237 amount=-1 +kerning first=339 second=243 amount=-1 +kerning first=266 second=255 amount=-1 +kerning first=375 second=243 amount=-3 +kerning first=214 second=217 amount=-1 +kerning first=230 second=255 amount=-2 +kerning first=1039 second=1094 amount=-1 +kerning first=8250 second=296 amount=-5 +kerning first=97 second=229 amount=-1 +kerning first=374 second=227 amount=-5 +kerning first=79 second=366 amount=-1 +kerning first=89 second=196 amount=-6 +kerning first=338 second=227 amount=-1 +kerning first=80 second=234 amount=-1 +kerning first=1030 second=1101 amount=-1 +kerning first=233 second=99 amount=-1 +kerning first=302 second=227 amount=-2 +kerning first=213 second=219 amount=-1 +kerning first=197 second=99 amount=-1 +kerning first=266 second=227 amount=-2 +kerning first=200 second=354 amount=-1 +kerning first=1058 second=1099 amount=-2 +kerning first=264 second=44 amount=-1 +kerning first=235 second=324 amount=-2 +kerning first=90 second=289 amount=-3 +kerning first=228 second=44 amount=-1 +kerning first=199 second=324 amount=-1 +kerning first=269 second=99 amount=-1 +kerning first=272 second=354 amount=-2 +kerning first=336 second=44 amount=-3 +kerning first=202 second=229 amount=-1 +kerning first=117 second=233 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=75 second=104 amount=-1 +kerning first=344 second=354 amount=-3 +kerning first=362 second=267 amount=-2 +kerning first=338 second=197 amount=-2 +kerning first=99 second=335 amount=-1 +kerning first=101 second=106 amount=-2 +kerning first=365 second=234 amount=-1 +kerning first=67 second=356 amount=-1 +kerning first=346 second=229 amount=-2 +kerning first=84 second=111 amount=-3 +kerning first=382 second=229 amount=-1 +kerning first=258 second=233 amount=-1 +kerning first=242 second=106 amount=-2 +kerning first=245 second=44 amount=-3 +kerning first=338 second=109 amount=-1 +kerning first=221 second=234 amount=-3 +kerning first=330 second=233 amount=-2 +kerning first=354 second=279 amount=-3 +kerning first=334 second=317 amount=-2 +kerning first=1052 second=1060 amount=-1 +kerning first=111 second=353 amount=-2 +kerning first=317 second=87 amount=-3 +kerning first=261 second=171 amount=-2 +kerning first=89 second=227 amount=-5 +kerning first=67 second=110 amount=-1 +kerning first=317 second=361 amount=-2 +kerning first=115 second=316 amount=-2 +kerning first=352 second=82 amount=-3 +kerning first=103 second=110 amount=-1 +kerning first=281 second=361 amount=-2 +kerning first=77 second=267 amount=-2 +kerning first=1056 second=1064 amount=-1 +kerning first=1101 second=1085 amount=-1 +kerning first=369 second=111 amount=-1 +kerning first=353 second=361 amount=-1 +kerning first=256 second=316 amount=-2 +kerning first=244 second=110 amount=-1 +kerning first=321 second=212 amount=-1 +kerning first=208 second=82 amount=-2 +kerning first=120 second=111 amount=-2 +kerning first=382 second=257 amount=-1 +kerning first=280 second=110 amount=-1 +kerning first=187 second=364 amount=-4 +kerning first=328 second=316 amount=-1 +kerning first=316 second=110 amount=-1 +kerning first=200 second=66 amount=-2 +kerning first=113 second=267 amount=-1 +kerning first=280 second=82 amount=-2 +kerning first=225 second=111 amount=-1 +kerning first=310 second=257 amount=-1 +kerning first=219 second=65 amount=-4 +kerning first=352 second=110 amount=-1 +kerning first=82 second=364 amount=-3 +kerning first=231 second=271 amount=-1 +kerning first=261 second=111 amount=-1 +kerning first=346 second=257 amount=-2 +kerning first=317 second=45 amount=-1 +kerning first=87 second=44 amount=-5 +kerning first=67 second=82 amount=-3 +kerning first=1065 second=1057 amount=-1 +kerning first=352 second=72 amount=-3 +kerning first=267 second=365 amount=-2 +kerning first=288 second=104 amount=-1 +kerning first=252 second=104 amount=-2 +kerning first=272 second=66 amount=-2 +kerning first=219 second=105 amount=-2 +kerning first=104 second=361 amount=-1 +kerning first=76 second=89 amount=-3 +kerning first=86 second=274 amount=-1 +kerning first=209 second=361 amount=-2 +kerning first=268 second=97 amount=-2 +kerning first=337 second=46 amount=-3 +kerning first=208 second=304 amount=-2 +kerning first=304 second=97 amount=-2 +kerning first=272 second=122 amount=-2 +kerning first=79 second=77 amount=-2 +kerning first=236 second=122 amount=-1 +kerning first=377 second=71 amount=-1 +kerning first=313 second=121 amount=-3 +kerning first=264 second=72 amount=-3 +kerning first=287 second=102 amount=-1 +kerning first=232 second=97 amount=-2 +kerning first=200 second=122 amount=-2 +kerning first=197 second=71 amount=-3 +kerning first=277 second=121 amount=-2 +kerning first=337 second=225 amount=-1 +kerning first=241 second=121 amount=-2 +kerning first=336 second=72 amount=-2 +kerning first=229 second=46 amount=-1 +kerning first=205 second=121 amount=-2 +kerning first=211 second=77 amount=-2 +kerning first=74 second=102 amount=-1 +kerning first=380 second=122 amount=-2 +kerning first=110 second=102 amount=-1 +kerning first=76 second=377 amount=-3 +kerning first=376 second=97 amount=-5 +kerning first=302 second=199 amount=-2 +kerning first=338 second=199 amount=-1 +kerning first=192 second=375 amount=-3 +kerning first=374 second=199 amount=-3 +kerning first=84 second=200 amount=-1 +kerning first=89 second=249 amount=-1 +kerning first=217 second=377 amount=-1 +kerning first=88 second=46 amount=-1 +kerning first=232 second=245 amount=-1 +kerning first=87 second=332 amount=-3 +kerning first=282 second=199 amount=-1 +kerning first=253 second=117 amount=-1 +kerning first=376 second=214 amount=-3 +kerning first=1050 second=1077 amount=-2 +kerning first=217 second=117 amount=-1 +kerning first=69 second=363 amount=-2 +kerning first=325 second=117 amount=-2 +kerning first=105 second=363 amount=-1 +kerning first=98 second=287 amount=-2 +kerning first=289 second=117 amount=-1 +kerning first=87 second=72 amount=-1 +kerning first=264 second=332 amount=-3 +kerning first=1024 second=1058 amount=-1 +kerning first=70 second=194 amount=-3 +kerning first=109 second=347 amount=-1 +kerning first=350 second=310 amount=-3 +kerning first=203 second=287 amount=-3 +kerning first=196 second=214 amount=-3 +kerning first=347 second=259 amount=-1 +kerning first=73 second=242 amount=-2 +kerning first=278 second=310 amount=-2 +kerning first=304 second=214 amount=-2 +kerning first=72 second=240 amount=-2 +kerning first=275 second=287 amount=-3 +kerning first=1064 second=1114 amount=-1 +kerning first=268 second=214 amount=-3 +kerning first=108 second=240 amount=-1 +kerning first=8217 second=266 amount=-2 +kerning first=347 second=287 amount=-3 +kerning first=192 second=220 amount=-3 +kerning first=315 second=284 amount=-1 +kerning first=364 second=250 amount=-1 +kerning first=311 second=287 amount=-2 +kerning first=250 second=242 amount=-1 +kerning first=1077 second=1075 amount=-1 +kerning first=207 second=284 amount=-2 +kerning first=249 second=240 amount=-1 +kerning first=311 second=259 amount=-2 +kerning first=87 second=220 amount=-1 +kerning first=66 second=197 amount=-5 +kerning first=275 second=259 amount=-2 +kerning first=378 second=375 amount=-2 +kerning first=260 second=369 amount=-3 +kerning first=336 second=304 amount=-2 +kerning first=224 second=369 amount=-1 +kerning first=86 second=330 amount=-1 +kerning first=258 second=116 amount=-1 +kerning first=264 second=304 amount=-3 +kerning first=1025 second=1081 amount=-1 +kerning first=296 second=369 amount=-2 +kerning first=98 second=259 amount=-1 +kerning first=45 second=116 amount=-1 +kerning first=83 second=369 amount=-1 +kerning first=1024 second=1030 amount=-1 +kerning first=113 second=45 amount=-2 +kerning first=302 second=335 amount=-2 +kerning first=315 second=197 amount=-2 +kerning first=113 second=119 amount=-3 +kerning first=117 second=116 amount=-1 +kerning first=87 second=304 amount=-1 +kerning first=211 second=194 amount=-4 +kerning first=1067 second=1075 amount=-1 +kerning first=218 second=119 amount=-2 +kerning first=119 second=369 amount=-1 +kerning first=221 second=203 amount=-1 +kerning first=368 second=223 amount=-2 +kerning first=1071 second=1100 amount=-1 +kerning first=1031 second=1075 amount=-1 +kerning first=254 second=119 amount=-2 +kerning first=337 second=253 amount=-3 +kerning first=1036 second=1095 amount=-3 +kerning first=225 second=228 amount=-1 +kerning first=1036 second=1105 amount=-2 +kerning first=290 second=119 amount=-1 +kerning first=326 second=119 amount=-3 +kerning first=120 second=228 amount=-2 +kerning first=313 second=311 amount=-2 +kerning first=362 second=119 amount=-2 +kerning first=1104 second=1080 amount=-1 +kerning first=234 second=375 amount=-2 +kerning first=264 second=248 amount=-2 +kerning first=84 second=228 amount=-4 +kerning first=80 second=203 amount=-1 +kerning first=232 second=273 amount=-1 +kerning first=321 second=268 amount=-1 +kerning first=192 second=248 amount=-1 +kerning first=228 second=248 amount=-1 +kerning first=291 second=8249 amount=-3 +kerning first=231 second=355 amount=-1 +kerning first=365 second=345 amount=-1 +kerning first=195 second=355 amount=-1 +kerning first=200 second=298 amount=-2 +kerning first=119 second=223 amount=-1 +kerning first=346 second=313 amount=-3 +kerning first=201 second=68 amount=-2 +kerning first=339 second=328 amount=-2 +kerning first=88 second=253 amount=-3 +kerning first=83 second=223 amount=-1 +kerning first=370 second=113 amount=-2 +kerning first=90 second=355 amount=-1 +kerning first=272 second=298 amount=-2 +kerning first=274 second=313 amount=-2 +kerning first=375 second=355 amount=-1 +kerning first=193 second=253 amount=-3 +kerning first=339 second=355 amount=-1 +kerning first=74 second=324 amount=-1 +kerning first=229 second=253 amount=-3 +kerning first=66 second=80 amount=-4 +kerning first=202 second=313 amount=-2 +kerning first=303 second=355 amount=-1 +kerning first=381 second=68 amount=-1 +kerning first=267 second=355 amount=-1 +kerning first=72 second=268 amount=-2 +kerning first=221 second=290 amount=-3 +kerning first=1078 second=1086 amount=-2 +kerning first=279 second=108 amount=-3 +kerning first=334 second=85 amount=-1 +kerning first=243 second=108 amount=-2 +kerning first=246 second=363 amount=-1 +kerning first=333 second=105 amount=-1 +kerning first=65 second=338 amount=-3 +kerning first=351 second=108 amount=-2 +kerning first=282 second=363 amount=-2 +kerning first=200 second=270 amount=-2 +kerning first=262 second=85 amount=-2 +kerning first=116 second=318 amount=-1 +kerning first=219 second=103 amount=-4 +kerning first=230 second=8217 amount=-2 +kerning first=315 second=108 amount=-2 +kerning first=221 second=286 amount=-3 +kerning first=355 second=105 amount=-1 +kerning first=84 second=315 amount=-1 +kerning first=269 second=8221 amount=-2 +kerning first=354 second=363 amount=-2 +kerning first=370 second=351 amount=-2 +kerning first=257 second=318 amount=-1 +kerning first=283 second=105 amount=-2 +kerning first=200 second=313 amount=-2 +kerning first=354 second=335 amount=-3 +kerning first=87 second=248 amount=-3 +kerning first=211 second=105 amount=-1 +kerning first=365 second=318 amount=-2 +kerning first=307 second=380 amount=-1 +kerning first=229 second=225 amount=-1 +kerning first=105 second=335 amount=-1 +kerning first=106 second=105 amount=-1 +kerning first=1100 second=1083 amount=-1 +kerning first=1061 second=1108 amount=-2 +kerning first=275 second=231 amount=-1 +kerning first=379 second=380 amount=-3 +kerning first=311 second=231 amount=-3 +kerning first=102 second=108 amount=3 +kerning first=272 second=270 amount=-2 +kerning first=278 second=338 amount=-1 +kerning first=369 second=228 amount=-1 +kerning first=66 second=108 amount=-3 +kerning first=333 second=228 amount=-1 +kerning first=199 second=380 amount=-2 +kerning first=88 second=225 amount=-1 +kerning first=272 second=278 amount=-2 +kerning first=8217 second=210 amount=-2 +kerning first=206 second=338 amount=-2 +kerning first=1105 second=1113 amount=-2 +kerning first=235 second=380 amount=-2 +kerning first=82 second=275 amount=-3 +kerning first=213 second=296 amount=-2 +kerning first=243 second=225 amount=-1 +kerning first=119 second=251 amount=-1 +kerning first=1089 second=1103 amount=-1 +kerning first=321 second=296 amount=-2 +kerning first=279 second=225 amount=-2 +kerning first=83 second=251 amount=-1 +kerning first=326 second=228 amount=-1 +kerning first=224 second=251 amount=-1 +kerning first=290 second=228 amount=-1 +kerning first=195 second=305 amount=-1 +kerning first=249 second=98 amount=-2 +kerning first=254 second=228 amount=-1 +kerning first=66 second=225 amount=-3 +kerning first=296 second=251 amount=-2 +kerning first=286 second=270 amount=-1 +kerning first=209 second=235 amount=-2 +kerning first=99 second=303 amount=-2 +kerning first=218 second=228 amount=-3 +kerning first=102 second=225 amount=-2 +kerning first=260 second=251 amount=-3 +kerning first=1046 second=1058 amount=-3 +kerning first=1114 second=1100 amount=-1 +kerning first=321 second=98 amount=-2 +kerning first=281 second=235 amount=-1 +kerning first=113 second=228 amount=-2 +kerning first=207 second=225 amount=-2 +kerning first=66 second=314 amount=-3 +kerning first=77 second=228 amount=-2 +kerning first=1056 second=1025 amount=-1 +kerning first=251 second=46 amount=-2 +kerning first=261 second=273 amount=-1 +kerning first=229 second=102 amount=-1 +kerning first=287 second=46 amount=-3 +kerning first=266 second=370 amount=-2 +kerning first=225 second=273 amount=-1 +kerning first=323 second=46 amount=-1 +kerning first=374 second=370 amount=-1 +kerning first=379 second=206 amount=-1 +kerning first=338 second=370 amount=-2 +kerning first=187 second=325 amount=-5 +kerning first=120 second=273 amount=-2 +kerning first=1051 second=1107 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=8250 second=73 amount=-5 +kerning first=367 second=263 amount=-1 +kerning first=110 second=46 amount=-1 +kerning first=109 second=98 amount=-2 +kerning first=8220 second=110 amount=-1 +kerning first=1031 second=1087 amount=-1 +kerning first=203 second=83 amount=-2 +kerning first=347 second=363 amount=-1 +kerning first=249 second=112 amount=-2 +kerning first=250 second=318 amount=-2 +kerning first=68 second=221 amount=-2 +kerning first=213 second=112 amount=-1 +kerning first=286 second=318 amount=-1 +kerning first=337 second=102 amount=-1 +kerning first=288 second=8249 amount=-3 +kerning first=362 second=214 amount=-1 +kerning first=367 second=311 amount=-2 +kerning first=108 second=112 amount=-1 +kerning first=1062 second=1072 amount=-1 +kerning first=72 second=112 amount=-1 +kerning first=198 second=266 amount=-1 +kerning first=1077 second=1096 amount=-1 +kerning first=8250 second=87 amount=-4 +kerning first=218 second=214 amount=-1 +kerning first=369 second=259 amount=-1 +kerning first=368 second=67 amount=-1 +kerning first=333 second=259 amount=-1 +kerning first=313 second=260 amount=-2 +kerning first=108 second=98 amount=-1 +kerning first=296 second=67 amount=-2 +kerning first=202 second=81 amount=-1 +kerning first=365 second=254 amount=-2 +kerning first=260 second=67 amount=-3 +kerning first=225 second=259 amount=-1 +kerning first=317 second=221 amount=-3 +kerning first=366 second=379 amount=-1 +kerning first=240 second=105 amount=-1 +kerning first=274 second=81 amount=-1 +kerning first=99 second=105 amount=-2 +kerning first=77 second=214 amount=-2 +kerning first=261 second=259 amount=-1 +kerning first=321 second=112 amount=-2 +kerning first=1077 second=1098 amount=-1 +kerning first=291 second=230 amount=-3 +kerning first=295 second=249 amount=-1 +kerning first=264 second=346 amount=-3 +kerning first=250 second=100 amount=-1 +kerning first=327 second=230 amount=-2 +kerning first=332 second=327 amount=-2 +kerning first=331 second=249 amount=-1 +kerning first=219 second=230 amount=-3 +kerning first=223 second=249 amount=-1 +kerning first=192 second=346 amount=-3 +kerning first=352 second=275 amount=-1 +kerning first=89 second=325 amount=-1 +kerning first=1037 second=1079 amount=-1 +kerning first=1113 second=1098 amount=-1 +kerning first=255 second=230 amount=-3 +kerning first=1088 second=1095 amount=-1 +kerning first=259 second=249 amount=-1 +kerning first=194 second=350 amount=-3 +kerning first=114 second=230 amount=-1 +kerning first=1052 second=1095 amount=-1 +kerning first=74 second=334 amount=-2 +kerning first=73 second=100 amount=-2 +kerning first=1025 second=1102 amount=-1 +kerning first=316 second=275 amount=-1 +kerning first=89 second=350 amount=-3 +kerning first=367 second=249 amount=-1 +kerning first=336 second=346 amount=-1 +kerning first=8220 second=328 amount=-1 +kerning first=78 second=230 amount=-2 +kerning first=338 second=350 amount=-2 +kerning first=327 second=339 amount=-2 +kerning first=282 second=362 amount=-2 +kerning first=118 second=305 amount=-2 +kerning first=374 second=350 amount=-3 +kerning first=363 second=339 amount=-1 +kerning first=66 second=211 amount=-3 +kerning first=282 second=223 amount=-1 +kerning first=214 second=256 amount=-4 +kerning first=266 second=350 amount=-3 +kerning first=223 second=305 amount=-1 +kerning first=277 second=107 amount=-2 +kerning first=302 second=350 amount=-2 +kerning first=187 second=305 amount=-1 +kerning first=354 second=223 amount=-3 +kerning first=207 second=211 amount=-2 +kerning first=232 second=279 amount=-1 +kerning first=118 second=249 amount=-1 +kerning first=310 second=311 amount=-1 +kerning first=259 second=305 amount=-1 +kerning first=105 second=223 amount=-1 +kerning first=363 second=230 amount=-1 +kerning first=367 second=305 amount=-1 +kerning first=100 second=107 amount=-1 +kerning first=246 second=223 amount=-1 +kerning first=379 second=268 amount=-1 +kerning first=331 second=305 amount=-1 +kerning first=198 second=260 amount=-2 +kerning first=286 second=256 amount=-3 +kerning first=352 second=289 amount=-3 +kerning first=204 second=365 amount=-2 +kerning first=199 second=268 amount=-3 +kerning first=219 second=244 amount=-2 +kerning first=1113 second=1084 amount=-1 +kerning first=255 second=244 amount=-3 +kerning first=259 second=263 amount=-1 +kerning first=99 second=365 amount=-2 +kerning first=1061 second=1060 amount=-4 +kerning first=1077 second=1084 amount=-1 +kerning first=1089 second=1117 amount=-1 +kerning first=332 second=313 amount=-2 +kerning first=291 second=244 amount=-2 +kerning first=89 second=199 amount=-3 +kerning first=355 second=259 amount=-1 +kerning first=376 second=232 amount=-3 +kerning first=1053 second=1117 amount=-1 +kerning first=216 second=8217 amount=-2 +kerning first=327 second=244 amount=-2 +kerning first=203 second=192 amount=-2 +kerning first=363 second=353 amount=-2 +kerning first=252 second=8217 amount=-3 +kerning first=363 second=244 amount=-1 +kerning first=354 second=237 amount=-2 +kerning first=288 second=8217 amount=-1 +kerning first=78 second=339 amount=-2 +kerning first=82 second=263 amount=-3 +kerning first=1050 second=1091 amount=-2 +kerning first=8218 second=366 amount=-3 +kerning first=8220 second=219 amount=-1 +kerning first=324 second=8217 amount=-4 +kerning first=266 second=199 amount=-3 +kerning first=118 second=263 amount=-3 +kerning first=1086 second=1091 amount=-1 +kerning first=1119 second=1072 amount=-1 +kerning first=282 second=237 amount=-1 +kerning first=100 second=121 amount=-2 +kerning first=374 second=302 amount=-1 +kerning first=246 second=237 amount=-1 +kerning first=103 second=275 amount=-2 +kerning first=219 second=353 amount=-2 +kerning first=83 second=313 amount=-3 +kerning first=67 second=289 amount=-3 +kerning first=269 second=369 amount=-2 +kerning first=210 second=237 amount=-1 +kerning first=255 second=353 amount=-3 +kerning first=1050 second=1105 amount=-2 +kerning first=1118 second=1072 amount=-2 +kerning first=103 second=289 amount=-2 +kerning first=214 second=270 amount=-2 +kerning first=323 second=334 amount=-2 +kerning first=288 second=117 amount=-1 +kerning first=291 second=353 amount=-3 +kerning first=83 second=327 amount=-3 +kerning first=105 second=237 amount=-1 +kerning first=326 second=97 amount=-1 +kerning first=327 second=353 amount=-2 +kerning first=208 second=289 amount=-1 +kerning first=69 second=237 amount=-1 +kerning first=325 second=363 amount=-2 +kerning first=244 second=289 amount=-2 +kerning first=1025 second=1060 amount=-1 +kerning first=8250 second=347 amount=-1 +kerning first=78 second=353 amount=-2 +kerning first=199 second=282 amount=-3 +kerning first=280 second=289 amount=-3 +kerning first=78 second=244 amount=-2 +kerning first=8218 second=380 amount=-3 +kerning first=114 second=353 amount=-1 +kerning first=1082 second=1072 amount=-1 +kerning first=316 second=289 amount=-3 +kerning first=240 second=365 amount=-1 +kerning first=1046 second=1072 amount=-2 +kerning first=352 second=255 amount=-2 +kerning first=281 second=277 amount=-1 +kerning first=1038 second=1081 amount=-4 +kerning first=220 second=232 amount=-2 +kerning first=321 second=302 amount=-2 +kerning first=83 second=257 amount=-2 +kerning first=109 second=326 amount=-1 +kerning first=8250 second=229 amount=-1 +kerning first=275 second=371 amount=-2 +kerning first=119 second=257 amount=-3 +kerning first=362 second=8249 amount=-5 +kerning first=382 second=347 amount=-2 +kerning first=213 second=302 amount=-2 +kerning first=99 second=99 amount=-1 +kerning first=377 second=202 amount=-1 +kerning first=290 second=8249 amount=-3 +kerning first=346 second=347 amount=-1 +kerning first=326 second=8249 amount=-3 +kerning first=209 second=277 amount=-2 +kerning first=352 second=380 amount=-2 +kerning first=204 second=99 amount=-2 +kerning first=98 second=371 amount=-1 +kerning first=225 second=267 amount=-1 +kerning first=326 second=351 amount=-1 +kerning first=261 second=267 amount=-1 +kerning first=219 second=79 amount=-1 +kerning first=45 second=261 amount=-1 +kerning first=120 second=267 amount=-2 +kerning first=198 second=336 amount=-1 +kerning first=78 second=79 amount=-2 +kerning first=81 second=261 amount=-1 +kerning first=220 second=71 amount=-1 +kerning first=362 second=351 amount=-2 +kerning first=241 second=367 amount=-1 +kerning first=369 second=267 amount=-1 +kerning first=327 second=79 amount=-2 +kerning first=332 second=257 amount=-1 +kerning first=277 second=367 amount=-2 +kerning first=199 second=212 amount=-3 +kerning first=1074 second=1081 amount=-1 +kerning first=113 second=351 amount=-2 +kerning first=368 second=257 amount=-3 +kerning first=250 second=114 amount=-1 +kerning first=254 second=351 amount=-2 +kerning first=281 second=113 amount=-1 +kerning first=84 second=69 amount=-1 +kerning first=218 second=351 amount=-2 +kerning first=296 second=257 amount=-2 +kerning first=351 second=382 amount=-2 +kerning first=209 second=291 amount=-3 +kerning first=113 second=337 amount=-1 +kerning first=330 second=261 amount=-2 +kerning first=119 second=271 amount=-3 +kerning first=77 second=337 amount=-2 +kerning first=366 second=261 amount=-3 +kerning first=197 second=216 amount=-3 +kerning first=104 second=291 amount=-2 +kerning first=224 second=271 amount=-1 +kerning first=68 second=291 amount=-1 +kerning first=1071 second=1047 amount=-1 +kerning first=117 second=261 amount=-1 +kerning first=110 second=314 amount=-1 +kerning first=207 second=382 amount=-1 +kerning first=84 second=267 amount=-3 +kerning first=243 second=382 amount=-2 +kerning first=222 second=261 amount=-1 +kerning first=369 second=281 amount=-1 +kerning first=279 second=382 amount=-2 +kerning first=218 second=337 amount=-2 +kerning first=1062 second=1104 amount=-1 +kerning first=1078 second=1092 amount=-2 +kerning first=315 second=382 amount=-3 +kerning first=199 second=226 amount=-2 +kerning first=287 second=314 amount=-3 +kerning first=1025 second=1116 amount=-1 +kerning first=274 second=347 amount=-1 +kerning first=70 second=227 amount=-2 +kerning first=103 second=269 amount=-2 +kerning first=196 second=8221 amount=-5 +kerning first=280 second=171 amount=-2 +kerning first=97 second=361 amount=-1 +kerning first=251 second=314 amount=-2 +kerning first=67 second=269 amount=-2 +kerning first=316 second=171 amount=-3 +kerning first=202 second=347 amount=-1 +kerning first=225 second=281 amount=-1 +kerning first=362 second=337 amount=-2 +kerning first=352 second=171 amount=-3 +kerning first=202 second=361 amount=-2 +kerning first=261 second=281 amount=-1 +kerning first=70 second=352 amount=-3 +kerning first=267 second=361 amount=-2 +kerning first=67 second=171 amount=-4 +kerning first=310 second=361 amount=-3 +kerning first=97 second=347 amount=-1 +kerning first=78 second=224 amount=-2 +kerning first=311 second=371 amount=-1 +kerning first=103 second=171 amount=-3 +kerning first=274 second=361 amount=-2 +kerning first=8216 second=267 amount=-3 +kerning first=108 second=316 amount=-2 +kerning first=347 second=371 amount=-1 +kerning first=232 second=8221 amount=-2 +kerning first=382 second=361 amount=-2 +kerning first=250 second=326 amount=-1 +kerning first=352 second=269 amount=-1 +kerning first=377 second=216 amount=-1 +kerning first=208 second=171 amount=-1 +kerning first=346 second=361 amount=-1 +kerning first=84 second=281 amount=-3 +kerning first=316 second=269 amount=-1 +kerning first=114 second=224 amount=-1 +kerning first=103 second=227 amount=-3 +kerning first=255 second=224 amount=-3 +kerning first=107 second=252 amount=-1 +kerning first=67 second=227 amount=-2 +kerning first=219 second=224 amount=-3 +kerning first=295 second=45 amount=-3 +kerning first=327 second=224 amount=-2 +kerning first=291 second=224 amount=-3 +kerning first=248 second=252 amount=-1 +kerning first=280 second=227 amount=-1 +kerning first=244 second=227 amount=-1 +kerning first=363 second=224 amount=-1 +kerning first=208 second=227 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=71 second=252 amount=-1 +kerning first=364 second=246 amount=-2 +kerning first=223 second=311 amount=-1 +kerning first=235 second=226 amount=-2 +kerning first=338 second=356 amount=-1 +kerning first=187 second=311 amount=-1 +kerning first=205 second=101 amount=-2 +kerning first=66 second=382 amount=-4 +kerning first=118 second=311 amount=-2 +kerning first=266 second=90 amount=-2 +kerning first=102 second=382 amount=-1 +kerning first=279 second=326 amount=-2 +kerning first=307 second=226 amount=-2 +kerning first=82 second=45 amount=-4 +kerning first=266 second=356 amount=-1 +kerning first=347 second=103 amount=-3 +kerning first=256 second=246 amount=-1 +kerning first=82 second=311 amount=-3 +kerning first=277 second=101 amount=-1 +kerning first=1052 second=1101 amount=-1 +kerning first=46 second=45 amount=-3 +kerning first=311 second=103 amount=-2 +kerning first=220 second=246 amount=-2 +kerning first=193 second=362 amount=-3 +kerning first=338 second=90 amount=-1 +kerning first=353 second=291 amount=-3 +kerning first=379 second=226 amount=-1 +kerning first=284 second=252 amount=-1 +kerning first=194 second=356 amount=-6 +kerning first=275 second=103 amount=-3 +kerning first=187 second=207 amount=-5 +kerning first=317 second=291 amount=-3 +kerning first=118 second=45 amount=-4 +kerning first=281 second=291 amount=-3 +kerning first=356 second=252 amount=-1 +kerning first=203 second=103 amount=-3 +kerning first=332 second=261 amount=-1 +kerning first=374 second=90 amount=-3 +kerning first=245 second=291 amount=-2 +kerning first=73 second=44 amount=-1 +kerning first=203 second=353 amount=-1 +kerning first=368 second=109 amount=-2 +kerning first=338 second=104 amount=-1 +kerning first=246 second=8250 amount=-2 +kerning first=335 second=109 amount=-1 +kerning first=280 second=213 amount=-1 +kerning first=266 second=104 amount=-1 +kerning first=224 second=109 amount=-1 +kerning first=89 second=370 amount=-1 +kerning first=203 second=89 amount=-1 +kerning first=379 second=212 amount=-1 +kerning first=89 second=90 amount=-3 +kerning first=187 second=193 amount=-4 +kerning first=194 second=370 amount=-3 +kerning first=83 second=109 amount=-1 +kerning first=234 second=115 amount=-2 +kerning first=1108 second=1113 amount=-1 +kerning first=113 second=8249 amount=-2 +kerning first=352 second=227 amount=-2 +kerning first=204 second=303 amount=-1 +kerning first=1036 second=1113 amount=-2 +kerning first=119 second=109 amount=-2 +kerning first=316 second=227 amount=-2 +kerning first=198 second=115 amount=-1 +kerning first=339 second=187 amount=-2 +kerning first=379 second=78 amount=-1 +kerning first=240 second=303 amount=-1 +kerning first=230 second=104 amount=-2 +kerning first=378 second=115 amount=-2 +kerning first=250 second=44 amount=-2 +kerning first=77 second=8249 amount=-4 +kerning first=256 second=232 amount=-1 +kerning first=90 second=187 amount=-1 +kerning first=214 second=44 amount=-3 +kerning first=214 second=368 amount=-1 +kerning first=86 second=70 amount=-1 +kerning first=364 second=345 amount=-1 +kerning first=364 second=232 amount=-2 +kerning first=199 second=78 amount=-3 +kerning first=67 second=213 amount=-3 +kerning first=278 second=120 amount=-1 +kerning first=76 second=75 amount=-2 +kerning first=84 second=323 amount=-1 +kerning first=314 second=120 amount=-1 +kerning first=235 second=289 amount=-3 +kerning first=286 second=203 amount=-1 +kerning first=350 second=120 amount=-3 +kerning first=1101 second=1103 amount=-2 +kerning first=99 second=116 amount=-1 +kerning first=313 second=115 amount=-1 +kerning first=228 second=241 amount=-1 +kerning first=198 second=70 amount=-2 +kerning first=286 second=368 amount=-1 +kerning first=214 second=203 amount=-2 +kerning first=101 second=120 amount=-2 +kerning first=321 second=198 amount=-2 +kerning first=365 second=248 amount=-1 +kerning first=100 second=375 amount=-2 +kerning first=362 second=210 amount=-1 +kerning first=8216 second=111 amount=-3 +kerning first=1039 second=1080 amount=-1 +kerning first=242 second=120 amount=-3 +kerning first=317 second=73 amount=-2 +kerning first=252 second=118 amount=-3 +kerning first=117 second=253 amount=-3 +kerning first=332 second=201 amount=-2 +kerning first=68 second=73 amount=-2 +kerning first=71 second=356 amount=-3 +kerning first=200 second=278 amount=-2 +kerning first=324 second=118 amount=-3 +kerning first=88 second=233 amount=-2 +kerning first=288 second=118 amount=-1 +kerning first=67 second=68 amount=-3 +kerning first=233 second=113 amount=-1 +kerning first=258 second=253 amount=-3 +kerning first=187 second=84 amount=-4 +kerning first=229 second=233 amount=-1 +kerning first=75 second=118 amount=-3 +kerning first=280 second=68 amount=-2 +kerning first=193 second=233 amount=-1 +kerning first=374 second=241 amount=-3 +kerning first=330 second=253 amount=-2 +kerning first=249 second=246 amount=-1 +kerning first=366 second=253 amount=-1 +kerning first=83 second=201 amount=-3 +kerning first=1058 second=1085 amount=-2 +kerning first=200 second=80 amount=-2 +kerning first=382 second=291 amount=-2 +kerning first=111 second=118 amount=-2 +kerning first=313 second=196 amount=-2 +kerning first=377 second=113 amount=-1 +kerning first=316 second=283 amount=-1 +kerning first=253 second=335 amount=-3 +kerning first=266 second=241 amount=-1 +kerning first=109 second=108 amount=-1 +kerning first=1102 second=1087 amount=-1 +kerning first=106 second=305 amount=-2 +kerning first=289 second=335 amount=-2 +kerning first=230 second=241 amount=-2 +kerning first=1069 second=1040 amount=-3 +kerning first=74 second=110 amount=-1 +kerning first=325 second=335 amount=-2 +kerning first=8217 second=324 amount=-2 +kerning first=338 second=241 amount=-1 +kerning first=1030 second=1087 amount=-1 +kerning first=110 second=110 amount=-1 +kerning first=89 second=193 amount=-6 +kerning first=89 second=241 amount=-3 +kerning first=278 second=380 amount=-2 +kerning first=286 second=108 amount=-1 +kerning first=1079 second=1079 amount=-1 +kerning first=314 second=380 amount=-1 +kerning first=84 second=85 amount=-1 +kerning first=250 second=108 amount=-2 +kerning first=251 second=110 amount=-1 +kerning first=350 second=380 amount=-2 +kerning first=352 second=283 amount=-1 +kerning first=287 second=110 amount=-1 +kerning first=217 second=335 amount=-2 +kerning first=85 second=65 amount=-4 +kerning first=266 second=193 amount=-3 +kerning first=221 second=248 amount=-3 +kerning first=101 second=380 amount=-2 +kerning first=219 second=286 amount=-1 +kerning first=370 second=331 amount=-2 +kerning first=257 second=248 amount=-1 +kerning first=290 second=70 amount=-1 +kerning first=100 second=115 amount=-1 +kerning first=78 second=286 amount=-2 +kerning first=262 second=331 amount=-1 +kerning first=105 second=231 amount=-1 +kerning first=8220 second=275 amount=-3 +kerning first=250 second=375 amount=-3 +kerning first=242 second=380 amount=-2 +kerning first=262 second=65 amount=-3 +kerning first=354 second=231 amount=-3 +kerning first=241 second=115 amount=-1 +kerning first=226 second=331 amount=-1 +kerning first=80 second=248 amount=-1 +kerning first=277 second=115 amount=-2 +kerning first=334 second=65 amount=-4 +kerning first=106 second=250 amount=-1 +kerning first=1057 second=1083 amount=-1 +kerning first=338 second=193 amount=-2 +kerning first=85 second=331 amount=-2 +kerning first=370 second=65 amount=-4 +kerning first=379 second=338 amount=-1 +kerning first=374 second=193 amount=-6 +kerning first=121 second=331 amount=-2 +kerning first=205 second=115 amount=-2 +kerning first=1037 second=1073 amount=-1 +kerning first=110 second=347 amount=-1 +kerning first=331 second=255 amount=-2 +kerning first=98 second=307 amount=-1 +kerning first=102 second=326 amount=-1 +kerning first=336 second=352 amount=-1 +kerning first=295 second=255 amount=-2 +kerning first=259 second=255 amount=-3 +kerning first=353 second=347 amount=-3 +kerning first=223 second=255 amount=-3 +kerning first=321 second=366 amount=-3 +kerning first=243 second=326 amount=-1 +kerning first=317 second=347 amount=-1 +kerning first=77 second=281 amount=-2 +kerning first=1092 second=1078 amount=-1 +kerning first=79 second=302 amount=-2 +kerning first=187 second=255 amount=-3 +kerning first=73 second=262 amount=-2 +kerning first=275 second=307 amount=-2 +kerning first=281 second=347 amount=-2 +kerning first=240 second=250 amount=-1 +kerning first=245 second=347 amount=-2 +kerning first=82 second=255 amount=-3 +kerning first=347 second=307 amount=-2 +kerning first=232 second=371 amount=-2 +kerning first=209 second=347 amount=-2 +kerning first=1056 second=1078 amount=-1 +kerning first=66 second=326 amount=-3 +kerning first=1093 second=1077 amount=-2 +kerning first=99 second=250 amount=-2 +kerning first=259 second=378 amount=-1 +kerning first=206 second=212 amount=-2 +kerning first=339 second=257 amount=-2 +kerning first=75 second=333 amount=-2 +kerning first=8250 second=355 amount=-1 +kerning first=223 second=378 amount=-2 +kerning first=382 second=97 amount=-1 +kerning first=375 second=257 amount=-3 +kerning first=110 second=328 amount=-1 +kerning first=204 second=250 amount=-2 +kerning first=331 second=378 amount=-1 +kerning first=87 second=352 amount=-3 +kerning first=69 second=223 amount=-1 +kerning first=74 second=328 amount=-1 +kerning first=1057 second=1077 amount=-1 +kerning first=377 second=264 amount=-1 +kerning first=295 second=378 amount=-1 +kerning first=1025 second=1052 amount=-1 +kerning first=83 second=377 amount=-1 +kerning first=303 second=257 amount=-2 +kerning first=350 second=325 amount=-3 +kerning first=274 second=229 amount=-1 +kerning first=192 second=352 amount=-3 +kerning first=248 second=46 amount=-3 +kerning first=1098 second=1118 amount=-2 +kerning first=103 second=283 amount=-2 +kerning first=332 second=377 amount=-2 +kerning first=65 second=212 amount=-3 +kerning first=231 second=257 amount=-2 +kerning first=1086 second=1097 amount=-1 +kerning first=287 second=328 amount=-1 +kerning first=67 second=283 amount=-2 +kerning first=187 second=378 amount=-5 +kerning first=213 second=366 amount=-1 +kerning first=1042 second=1047 amount=-2 +kerning first=264 second=352 amount=-3 +kerning first=251 second=328 amount=-1 +kerning first=118 second=378 amount=-3 +kerning first=313 second=8220 amount=-4 +kerning first=249 second=106 amount=-2 +kerning first=277 second=8220 amount=-2 +kerning first=199 second=332 amount=-3 +kerning first=241 second=8220 amount=-4 +kerning first=278 second=103 amount=-3 +kerning first=310 second=87 amount=-2 +kerning first=368 second=377 amount=-1 +kerning first=90 second=325 amount=-1 +kerning first=105 second=287 amount=-3 +kerning first=1049 second=1092 amount=-1 +kerning first=8217 second=367 amount=-1 +kerning first=346 second=87 amount=-3 +kerning first=213 second=106 amount=-1 +kerning first=69 second=287 amount=-3 +kerning first=1085 second=1092 amount=-1 +kerning first=97 second=243 amount=-1 +kerning first=1077 second=1090 amount=-1 +kerning first=219 second=345 amount=-1 +kerning first=379 second=332 amount=-1 +kerning first=210 second=287 amount=-1 +kerning first=197 second=113 amount=-1 +kerning first=100 second=8220 amount=-2 +kerning first=255 second=345 amount=-1 +kerning first=367 second=378 amount=-2 +kerning first=377 second=268 amount=-1 +kerning first=291 second=345 amount=-1 +kerning first=321 second=106 amount=-2 +kerning first=8220 second=269 amount=-3 +kerning first=282 second=287 amount=-3 +kerning first=67 second=316 amount=-1 +kerning first=1113 second=1090 amount=-1 +kerning first=202 second=87 amount=-1 +kerning first=86 second=288 amount=-3 +kerning first=246 second=287 amount=-2 +kerning first=262 second=45 amount=-4 +kerning first=363 second=345 amount=-1 +kerning first=221 second=242 amount=-3 +kerning first=354 second=287 amount=-4 +kerning first=104 second=347 amount=-1 +kerning first=310 second=243 amount=-2 +kerning first=213 second=198 amount=-4 +kerning first=346 second=243 amount=-1 +kerning first=377 second=102 amount=-3 +kerning first=362 second=281 amount=-2 +kerning first=382 second=243 amount=-1 +kerning first=257 second=242 amount=-1 +kerning first=1102 second=1107 amount=-1 +kerning first=365 second=242 amount=-1 +kerning first=113 second=281 amount=-1 +kerning first=315 second=326 amount=-1 +kerning first=187 second=82 amount=-5 +kerning first=315 second=217 amount=-3 +kerning first=351 second=326 amount=-2 +kerning first=218 second=281 amount=-2 +kerning first=214 second=197 amount=-4 +kerning first=367 second=255 amount=-3 +kerning first=84 second=119 amount=-3 +kerning first=198 second=210 amount=-1 +kerning first=120 second=119 amount=-3 +kerning first=278 second=324 amount=-1 +kerning first=67 second=334 amount=-3 +kerning first=198 second=274 amount=-2 +kerning first=286 second=197 amount=-3 +kerning first=321 second=270 amount=-2 +kerning first=194 second=249 amount=-3 +kerning first=122 second=97 amount=-1 +kerning first=375 second=369 amount=-1 +kerning first=242 second=324 amount=-1 +kerning first=108 second=254 amount=-1 +kerning first=225 second=119 amount=-3 +kerning first=86 second=283 amount=-3 +kerning first=261 second=119 amount=-3 +kerning first=80 second=304 amount=-1 +kerning first=214 second=374 amount=-2 +kerning first=314 second=324 amount=-1 +kerning first=81 second=75 amount=-2 +kerning first=274 second=356 amount=-1 +kerning first=377 second=379 amount=-1 +kerning first=267 second=369 amount=-2 +kerning first=104 second=229 amount=-1 +kerning first=8217 second=101 amount=-3 +kerning first=231 second=369 amount=-2 +kerning first=1078 second=1098 amount=-1 +kerning first=240 second=257 amount=-1 +kerning first=369 second=119 amount=-3 +kerning first=339 second=369 amount=-2 +kerning first=200 second=74 amount=-1 +kerning first=1062 second=1054 amount=-1 +kerning first=1030 second=1079 amount=-1 +kerning first=266 second=249 amount=-2 +kerning first=8218 second=316 amount=-1 +kerning first=303 second=369 amount=-1 +kerning first=68 second=229 amount=-1 +kerning first=280 second=334 amount=-1 +kerning first=86 second=344 amount=-1 +kerning first=192 second=234 amount=-1 +kerning first=281 second=229 amount=-2 +kerning first=272 second=74 amount=-2 +kerning first=226 second=339 amount=-1 +kerning first=228 second=234 amount=-1 +kerning first=85 second=339 amount=-2 +kerning first=200 second=284 amount=-1 +kerning first=264 second=234 amount=-2 +kerning first=209 second=229 amount=-2 +kerning first=121 second=339 amount=-3 +kerning first=245 second=229 amount=-1 +kerning first=253 second=279 amount=-3 +kerning first=1091 second=1093 amount=-1 +kerning first=370 second=339 amount=-2 +kerning first=108 second=106 amount=-3 +kerning first=217 second=279 amount=-2 +kerning first=1072 second=1119 amount=-1 +kerning first=262 second=339 amount=-2 +kerning first=87 second=234 amount=-3 +kerning first=325 second=279 amount=-2 +kerning first=353 second=229 amount=-1 +kerning first=1108 second=1119 amount=-1 +kerning first=298 second=339 amount=-2 +kerning first=1048 second=1084 amount=-1 +kerning first=223 second=8217 amount=-2 +kerning first=280 second=219 amount=-2 +kerning first=196 second=111 amount=-1 +kerning first=259 second=8217 amount=-3 +kerning first=356 second=244 amount=-3 +kerning first=232 second=111 amount=-1 +kerning first=295 second=8217 amount=-4 +kerning first=1031 second=1089 amount=-1 +kerning first=286 second=374 amount=-3 +kerning first=208 second=219 amount=-1 +kerning first=268 second=111 amount=-2 +kerning first=331 second=8217 amount=-4 +kerning first=332 second=209 amount=-2 +kerning first=264 second=86 amount=-1 +kerning first=267 second=8221 amount=-2 +kerning first=85 second=332 amount=-1 +kerning first=66 second=66 amount=-4 +kerning first=82 second=8217 amount=-5 +kerning first=1067 second=1089 amount=-1 +kerning first=313 second=107 amount=-2 +kerning first=67 second=219 amount=-2 +kerning first=192 second=86 amount=-6 +kerning first=87 second=338 amount=-3 +kerning first=197 second=264 amount=-3 +kerning first=8250 second=291 amount=-3 +kerning first=379 second=72 amount=-1 +kerning first=1076 second=1092 amount=-1 +kerning first=201 second=289 amount=-3 +kerning first=1042 second=1041 amount=-2 +kerning first=234 second=121 amount=-2 +kerning first=194 second=364 amount=-3 +kerning first=83 second=209 amount=-3 +kerning first=315 second=298 amount=-2 +kerning first=196 second=254 amount=-2 +kerning first=201 second=82 amount=-2 +kerning first=280 second=326 amount=-1 +kerning first=89 second=364 amount=-1 +kerning first=107 second=244 amount=-3 +kerning first=304 second=111 amount=-2 +kerning first=1085 second=1086 amount=-1 +kerning first=366 second=90 amount=-1 +kerning first=284 second=368 amount=-1 +kerning first=338 second=364 amount=-2 +kerning first=249 second=254 amount=-2 +kerning first=376 second=111 amount=-3 +kerning first=274 second=278 amount=-2 +kerning first=79 second=296 amount=-2 +kerning first=315 second=66 amount=-2 +kerning first=266 second=364 amount=-2 +kerning first=321 second=254 amount=-2 +kerning first=82 second=199 amount=-3 +kerning first=193 second=354 amount=-6 +kerning first=379 second=110 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=380 second=225 amount=-1 +kerning first=260 second=117 amount=-3 +kerning first=102 second=122 amount=-1 +kerning first=45 second=102 amount=-1 +kerning first=224 second=117 amount=-1 +kerning first=268 second=200 amount=-3 +kerning first=66 second=122 amount=-4 +kerning first=90 second=251 amount=-3 +kerning first=117 second=102 amount=-1 +kerning first=8216 second=99 amount=-3 +kerning first=296 second=117 amount=-2 +kerning first=275 second=97 amount=-2 +kerning first=315 second=122 amount=-3 +kerning first=236 second=225 amount=-2 +kerning first=195 second=251 amount=-3 +kerning first=378 second=121 amount=-2 +kerning first=199 second=72 amount=-3 +kerning first=311 second=97 amount=-2 +kerning first=279 second=122 amount=-2 +kerning first=298 second=71 amount=-2 +kerning first=330 second=46 amount=-1 +kerning first=272 second=225 amount=-1 +kerning first=346 second=8249 amount=-3 +kerning first=368 second=117 amount=-1 +kerning first=203 second=97 amount=-1 +kerning first=243 second=122 amount=-2 +kerning first=366 second=46 amount=-5 +kerning first=267 second=251 amount=-2 +kerning first=376 second=200 amount=-1 +kerning first=207 second=122 amount=-1 +kerning first=344 second=225 amount=-2 +kerning first=231 second=251 amount=-2 +kerning first=117 second=46 amount=-2 +kerning first=339 second=251 amount=-2 +kerning first=287 second=275 amount=-2 +kerning first=1036 second=1063 amount=-4 +kerning first=366 second=102 amount=-1 +kerning first=303 second=251 amount=-1 +kerning first=364 second=240 amount=-2 +kerning first=347 second=97 amount=-1 +kerning first=222 second=46 amount=-3 +kerning first=97 second=246 amount=-1 +kerning first=98 second=363 amount=-1 +kerning first=256 second=240 amount=-1 +kerning first=375 second=251 amount=-1 +kerning first=203 second=363 amount=-2 +kerning first=83 second=117 amount=-1 +kerning first=311 second=245 amount=-3 +kerning first=278 second=206 amount=-2 +kerning first=258 second=102 amount=-1 +kerning first=275 second=245 amount=-1 +kerning first=275 second=363 amount=-2 +kerning first=352 second=219 amount=-3 +kerning first=81 second=46 amount=-3 +kerning first=74 second=103 amount=-3 +kerning first=1067 second=1084 amount=-1 +kerning first=350 second=206 amount=-3 +kerning first=119 second=117 amount=-1 +kerning first=69 second=83 amount=-2 +kerning first=382 second=355 amount=-1 +kerning first=213 second=310 amount=-2 +kerning first=72 second=284 amount=-2 +kerning first=351 second=249 amount=-1 +kerning first=346 second=355 amount=-1 +kerning first=310 second=355 amount=-1 +kerning first=210 second=83 amount=-1 +kerning first=291 second=289 amount=-2 +kerning first=8217 second=197 amount=-6 +kerning first=377 second=266 amount=-1 +kerning first=282 second=83 amount=-2 +kerning first=220 second=240 amount=-2 +kerning first=344 second=284 amount=-3 +kerning first=321 second=310 amount=-2 +kerning first=1056 second=1070 amount=-1 +kerning first=45 second=253 amount=-3 +kerning first=354 second=83 amount=-3 +kerning first=332 second=69 amount=-2 +kerning first=1071 second=1114 amount=-1 +kerning first=1116 second=1108 amount=-2 +kerning first=290 second=77 amount=-1 +kerning first=90 second=369 amount=-3 +kerning first=1024 second=1083 amount=-1 +kerning first=277 second=375 amount=-2 +kerning first=199 second=220 amount=-2 +kerning first=196 second=8220 amount=-5 +kerning first=241 second=375 amount=-2 +kerning first=262 second=71 amount=-3 +kerning first=75 second=269 amount=-2 +kerning first=195 second=369 amount=-3 +kerning first=304 second=259 amount=-2 +kerning first=205 second=375 amount=-2 +kerning first=351 second=122 amount=-2 +kerning first=268 second=259 amount=-2 +kerning first=1074 second=1075 amount=-1 +kerning first=198 second=330 amount=-2 +kerning first=115 second=45 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=8216 second=271 amount=-3 +kerning first=221 second=304 amount=-1 +kerning first=251 second=116 amount=-1 +kerning first=266 second=87 amount=-1 +kerning first=1089 second=1087 amount=-1 +kerning first=313 second=375 amount=-3 +kerning first=204 second=351 amount=-2 +kerning first=374 second=291 amount=-4 +kerning first=80 second=298 amount=-1 +kerning first=377 second=77 amount=-1 +kerning first=1090 second=1108 amount=-1 +kerning first=381 second=233 amount=-1 +kerning first=338 second=291 amount=-3 +kerning first=70 second=214 amount=-1 +kerning first=83 second=8249 amount=-3 +kerning first=70 second=71 amount=-1 +kerning first=278 second=220 amount=-2 +kerning first=381 second=90 amount=-1 +kerning first=105 second=97 amount=-2 +kerning first=110 second=227 amount=-1 +kerning first=266 second=291 amount=-3 +kerning first=221 second=298 amount=-1 +kerning first=211 second=317 amount=-2 +kerning first=98 second=8250 amount=-2 +kerning first=274 second=207 amount=-2 +kerning first=74 second=227 amount=-3 +kerning first=118 second=110 amount=-2 +kerning first=230 second=291 amount=-3 +kerning first=8217 second=286 amount=-2 +kerning first=187 second=110 amount=-2 +kerning first=65 second=84 amount=-6 +kerning first=350 second=330 amount=-3 +kerning first=346 second=207 amount=-3 +kerning first=69 second=97 amount=-1 +kerning first=223 second=110 amount=-1 +kerning first=278 second=65 amount=-2 +kerning first=66 second=304 amount=-4 +kerning first=1104 second=1088 amount=-1 +kerning first=282 second=97 amount=-1 +kerning first=259 second=110 amount=-1 +kerning first=89 second=291 amount=-4 +kerning first=233 second=337 amount=-1 +kerning first=193 second=8220 amount=-5 +kerning first=295 second=110 amount=-1 +kerning first=278 second=84 amount=-1 +kerning first=197 second=337 amount=-1 +kerning first=323 second=213 amount=-2 +kerning first=121 second=314 amount=-2 +kerning first=364 second=324 amount=-2 +kerning first=210 second=97 amount=-1 +kerning first=331 second=110 amount=-1 +kerning first=278 second=199 amount=-1 +kerning first=66 second=318 amount=-3 +kerning first=328 second=324 amount=-1 +kerning first=246 second=97 amount=-1 +kerning first=367 second=110 amount=-1 +kerning first=252 second=311 amount=-2 +kerning first=201 second=350 amount=-2 +kerning first=115 second=324 amount=-2 +kerning first=377 second=337 amount=-1 +kerning first=381 second=350 amount=-1 +kerning first=201 second=90 amount=-1 +kerning first=1070 second=1050 amount=-1 +kerning first=242 second=46 amount=-3 +kerning first=354 second=97 amount=-5 +kerning first=111 second=311 amount=-1 +kerning first=243 second=318 amount=-2 +kerning first=350 second=84 amount=-3 +kerning first=269 second=337 amount=-1 +kerning first=75 second=311 amount=-1 +kerning first=279 second=318 amount=-3 +kerning first=79 second=310 amount=-2 +kerning first=243 second=44 amount=-3 +kerning first=1058 second=1107 amount=-2 +kerning first=234 second=289 amount=-3 +kerning first=8220 second=233 amount=-3 +kerning first=201 second=104 amount=-1 +kerning first=221 second=284 amount=-3 +kerning first=111 second=187 amount=-2 +kerning first=314 second=234 amount=-1 +kerning first=262 second=381 amount=-2 +kerning first=355 second=303 amount=-1 +kerning first=210 second=221 amount=-2 +kerning first=1070 second=1025 amount=-1 +kerning first=279 second=44 amount=-3 +kerning first=74 second=213 amount=-2 +kerning first=65 second=234 amount=-1 +kerning first=334 second=381 amount=-2 +kerning first=374 second=277 amount=-3 +kerning first=66 second=44 amount=-4 +kerning first=379 second=374 amount=-2 +kerning first=101 second=234 amount=-1 +kerning first=370 second=381 amount=-1 +kerning first=8218 second=368 amount=-3 +kerning first=350 second=70 amount=-3 +kerning first=79 second=78 amount=-2 +kerning first=1117 second=1104 amount=-1 +kerning first=206 second=234 amount=-2 +kerning first=102 second=44 amount=-1 +kerning first=1059 second=1081 amount=-4 +kerning first=278 second=70 amount=-2 +kerning first=230 second=277 amount=-1 +kerning first=287 second=227 amount=-3 +kerning first=1065 second=1077 amount=-1 +kerning first=194 second=277 amount=-1 +kerning first=251 second=227 amount=-1 +kerning first=8222 second=259 amount=-2 +kerning first=302 second=277 amount=-2 +kerning first=233 second=351 amount=-2 +kerning first=266 second=277 amount=-2 +kerning first=197 second=351 amount=-2 +kerning first=288 second=201 amount=-1 +kerning first=283 second=303 amount=-2 +kerning first=1104 second=1074 amount=-1 +kerning first=268 second=377 amount=-2 +kerning first=351 second=44 amount=-2 +kerning first=216 second=201 amount=-2 +kerning first=370 second=367 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=211 second=303 amount=-1 +kerning first=65 second=220 amount=-3 +kerning first=89 second=277 amount=-3 +kerning first=252 second=283 amount=-1 +kerning first=106 second=345 amount=-1 +kerning first=376 second=377 amount=-3 +kerning first=101 second=248 amount=-1 +kerning first=221 second=380 amount=-3 +kerning first=197 second=105 amount=-1 +kerning first=257 second=380 amount=-1 +kerning first=269 second=8220 amount=-2 +kerning first=1058 second=1093 amount=-3 +kerning first=310 second=235 amount=-2 +kerning first=65 second=248 amount=-1 +kerning first=316 second=230 amount=-2 +kerning first=233 second=8220 amount=-2 +kerning first=283 second=345 amount=-1 +kerning first=346 second=235 amount=-1 +kerning first=364 second=338 amount=-1 +kerning first=350 second=98 amount=-2 +kerning first=197 second=8220 amount=-5 +kerning first=266 second=114 amount=-1 +kerning first=80 second=270 amount=-1 +kerning first=382 second=235 amount=-1 +kerning first=77 second=287 amount=-3 +kerning first=314 second=98 amount=-1 +kerning first=1045 second=1087 amount=-1 +kerning first=287 second=241 amount=-1 +kerning first=1049 second=1100 amount=-1 +kerning first=221 second=270 amount=-1 +kerning first=224 second=267 amount=-1 +kerning first=218 second=287 amount=-4 +kerning first=116 second=380 amount=-1 +kerning first=209 second=211 amount=-2 +kerning first=256 second=338 amount=-3 +kerning first=283 second=228 amount=-2 +kerning first=101 second=112 amount=-1 +kerning first=202 second=193 amount=-2 +kerning first=216 second=325 amount=-2 +kerning first=290 second=287 amount=-3 +kerning first=374 second=263 amount=-3 +kerning first=254 second=287 amount=-2 +kerning first=211 second=228 amount=-1 +kerning first=110 second=241 amount=-1 +kerning first=101 second=242 amount=-1 +kerning first=69 second=274 amount=-2 +kerning first=206 second=363 amount=-2 +kerning first=220 second=197 amount=-4 +kerning first=362 second=287 amount=-4 +kerning first=350 second=248 amount=-1 +kerning first=347 second=8249 amount=-1 +kerning first=251 second=241 amount=-1 +kerning first=326 second=287 amount=-2 +kerning first=106 second=228 amount=-2 +kerning first=194 second=263 amount=-1 +kerning first=346 second=193 amount=-4 +kerning first=70 second=228 amount=-1 +kerning first=45 second=197 amount=-4 +kerning first=230 second=263 amount=-1 +kerning first=8216 second=230 amount=-3 +kerning first=314 second=248 amount=-1 +kerning first=311 second=8249 amount=-3 +kerning first=266 second=263 amount=-2 +kerning first=274 second=193 amount=-2 +kerning first=97 second=235 amount=-1 +kerning first=206 second=248 amount=-2 +kerning first=203 second=8249 amount=-2 +kerning first=74 second=241 amount=-1 +kerning first=302 second=263 amount=-2 +kerning first=274 second=221 amount=-1 +kerning first=315 second=318 amount=-2 +kerning first=222 second=197 amount=-4 +kerning first=283 second=331 amount=-2 +kerning first=310 second=221 amount=-2 +kerning first=364 second=352 amount=-3 +kerning first=351 second=318 amount=-2 +kerning first=350 second=112 amount=-3 +kerning first=202 second=221 amount=-1 +kerning first=323 second=255 amount=-2 +kerning first=314 second=112 amount=-1 +kerning first=287 second=255 amount=-1 +kerning first=278 second=112 amount=-2 +kerning first=70 second=331 amount=-1 +kerning first=251 second=255 amount=-3 +kerning first=366 second=197 amount=-4 +kerning first=242 second=112 amount=-1 +kerning first=106 second=331 amount=-2 +kerning first=8222 second=369 amount=-1 +kerning first=206 second=262 amount=-2 +kerning first=1064 second=1072 amount=-1 +kerning first=67 second=74 amount=-2 +kerning first=206 second=112 amount=-1 +kerning first=278 second=318 amount=-1 +kerning first=45 second=314 amount=-1 +kerning first=211 second=200 amount=-2 +kerning first=110 second=255 amount=-2 +kerning first=278 second=262 amount=-1 +kerning first=8216 second=244 amount=-3 +kerning first=117 second=314 amount=-2 +kerning first=79 second=352 amount=-1 +kerning first=207 second=290 amount=-2 +kerning first=208 second=74 amount=-2 +kerning first=1088 second=1085 amount=-1 +kerning first=374 second=249 amount=-1 +kerning first=75 second=111 amount=-2 +kerning first=278 second=98 amount=-1 +kerning first=280 second=74 amount=-1 +kerning first=377 second=105 amount=-1 +kerning first=202 second=207 amount=-2 +kerning first=242 second=98 amount=-1 +kerning first=75 second=283 amount=-2 +kerning first=228 second=281 amount=-1 +kerning first=256 second=352 amount=-3 +kerning first=352 second=74 amount=-2 +kerning first=365 second=380 amount=-2 +kerning first=258 second=314 amount=-2 +kerning first=220 second=352 amount=-3 +kerning first=66 second=290 amount=-3 +kerning first=378 second=112 amount=-3 +kerning first=346 second=221 amount=-3 +kerning first=101 second=98 amount=-2 +kerning first=233 second=105 amount=-2 +kerning first=65 second=98 amount=-2 +kerning first=269 second=105 amount=-2 +kerning first=195 second=333 amount=-1 +kerning first=317 second=67 amount=-1 +kerning first=218 second=97 amount=-3 +kerning first=222 second=68 amount=-2 +kerning first=347 second=8221 amount=-2 +kerning first=222 second=80 amount=-2 +kerning first=267 second=333 amount=-1 +kerning first=81 second=68 amount=-2 +kerning first=231 second=333 amount=-1 +kerning first=209 second=67 amount=-2 +kerning first=121 second=224 amount=-3 +kerning first=87 second=282 amount=-1 +kerning first=233 second=287 amount=-3 +kerning first=275 second=8221 amount=-2 +kerning first=81 second=80 amount=-2 +kerning first=365 second=106 amount=-2 +kerning first=45 second=80 amount=-5 +kerning first=90 second=333 amount=-1 +kerning first=255 second=45 amount=-4 +kerning first=257 second=106 amount=-1 +kerning first=334 second=224 amount=-1 +kerning first=199 second=346 amount=-3 +kerning first=102 second=345 amount=-1 +kerning first=200 second=217 amount=-2 +kerning first=325 second=81 amount=-2 +kerning first=298 second=224 amount=-2 +kerning first=80 second=256 amount=-4 +kerning first=1079 second=1099 amount=-1 +kerning first=370 second=224 amount=-3 +kerning first=204 second=230 amount=-2 +kerning first=379 second=346 amount=-1 +kerning first=217 second=243 amount=-2 +kerning first=107 second=101 amount=-3 +kerning first=253 second=243 amount=-3 +kerning first=99 second=230 amount=-2 +kerning first=213 second=204 amount=-2 +kerning first=339 second=333 amount=-1 +kerning first=321 second=204 amount=-2 +kerning first=303 second=333 amount=-3 +kerning first=45 second=68 amount=-5 +kerning first=221 second=256 amount=-6 +kerning first=1043 second=1099 amount=-2 +kerning first=230 second=283 amount=-1 +kerning first=375 second=333 amount=-3 +kerning first=232 second=307 amount=-2 +kerning first=356 second=101 amount=-3 +kerning first=80 second=120 amount=-1 +kerning first=370 second=79 amount=-1 +kerning first=116 second=120 amount=-1 +kerning first=321 second=218 amount=-3 +kerning first=1039 second=1072 amount=-1 +kerning first=262 second=79 amount=-3 +kerning first=90 second=335 amount=-1 +kerning first=298 second=79 amount=-2 +kerning first=376 second=192 amount=-6 +kerning first=200 second=334 amount=-1 +kerning first=221 second=120 amount=-2 +kerning first=192 second=268 amount=-3 +kerning first=289 second=243 amount=-2 +kerning first=98 second=251 amount=-1 +kerning first=325 second=243 amount=-2 +kerning first=315 second=347 amount=-1 +kerning first=264 second=268 amount=-3 +kerning first=1092 second=1098 amount=-1 +kerning first=268 second=192 amount=-3 +kerning first=203 second=251 amount=-2 +kerning first=198 second=315 amount=-2 +kerning first=344 second=334 amount=-3 +kerning first=275 second=251 amount=-2 +kerning first=217 second=229 amount=-3 +kerning first=272 second=217 amount=-1 +kerning first=253 second=229 amount=-3 +kerning first=87 second=268 amount=-3 +kerning first=272 second=203 amount=-2 +kerning first=347 second=251 amount=-1 +kerning first=112 second=229 amount=-1 +kerning first=344 second=217 amount=-3 +kerning first=311 second=251 amount=-1 +kerning first=200 second=203 amount=-2 +kerning first=257 second=120 amount=-1 +kerning first=213 second=218 amount=-1 +kerning first=1075 second=1072 amount=-1 +kerning first=336 second=282 amount=-2 +kerning first=289 second=229 amount=-3 +kerning first=381 second=118 amount=-2 +kerning first=264 second=282 amount=-3 +kerning first=325 second=229 amount=-2 +kerning first=365 second=120 amount=-2 +kerning first=325 second=257 amount=-2 +kerning first=344 second=219 amount=-3 +kerning first=277 second=261 amount=-2 +kerning first=221 second=368 amount=-1 +kerning first=249 second=232 amount=-1 +kerning first=105 second=371 amount=-1 +kerning first=253 second=257 amount=-3 +kerning first=272 second=219 amount=-1 +kerning first=289 second=257 amount=-3 +kerning first=1024 second=1036 amount=-1 +kerning first=376 second=267 amount=-3 +kerning first=86 second=336 amount=-3 +kerning first=200 second=219 amount=-2 +kerning first=217 second=257 amount=-3 +kerning first=304 second=279 amount=-2 +kerning first=72 second=232 amount=-2 +kerning first=231 second=361 amount=-2 +kerning first=112 second=257 amount=-1 +kerning first=376 second=279 amount=-3 +kerning first=195 second=361 amount=-3 +kerning first=45 second=66 amount=-5 +kerning first=66 second=278 amount=-4 +kerning first=298 second=121 amount=-2 +kerning first=192 second=254 amount=-2 +kerning first=199 second=374 amount=-1 +kerning first=262 second=121 amount=-1 +kerning first=228 second=254 amount=-1 +kerning first=226 second=121 amount=-3 +kerning first=264 second=254 amount=-1 +kerning first=224 second=275 amount=-1 +kerning first=204 second=244 amount=-2 +kerning first=350 second=344 amount=-3 +kerning first=290 second=69 amount=-1 +kerning first=1060 second=1036 amount=-1 +kerning first=268 second=267 amount=-2 +kerning first=222 second=82 amount=-2 +kerning first=347 second=289 amount=-3 +kerning first=304 second=267 amount=-2 +kerning first=85 second=121 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=315 second=278 amount=-2 +kerning first=196 second=267 amount=-1 +kerning first=81 second=66 amount=-2 +kerning first=232 second=267 amount=-1 +kerning first=8217 second=260 amount=-6 +kerning first=1064 second=1047 amount=-1 +kerning first=304 second=281 amount=-2 +kerning first=214 second=382 amount=-2 +kerning first=45 second=82 amount=-5 +kerning first=196 second=117 amount=-3 +kerning first=250 second=382 amount=-2 +kerning first=108 second=246 amount=-1 +kerning first=253 second=271 amount=-3 +kerning first=376 second=281 amount=-3 +kerning first=286 second=382 amount=-1 +kerning first=72 second=246 amount=-2 +kerning first=289 second=271 amount=-2 +kerning first=1043 second=1057 amount=-1 +kerning first=268 second=117 amount=-2 +kerning first=121 second=107 amount=-2 +kerning first=232 second=117 amount=-2 +kerning first=1079 second=1085 amount=-1 +kerning first=196 second=281 amount=-1 +kerning first=73 second=382 amount=-1 +kerning first=272 second=205 amount=-2 +kerning first=1043 second=1085 amount=-2 +kerning first=304 second=117 amount=-2 +kerning first=232 second=281 amount=-1 +kerning first=109 second=382 amount=-1 +kerning first=240 second=230 amount=-1 +kerning first=370 second=121 amount=-1 +kerning first=268 second=281 amount=-2 +kerning first=376 second=117 amount=-2 +kerning first=72 second=352 amount=-2 +kerning first=264 second=240 amount=-2 +kerning first=339 second=347 amount=-2 +kerning first=303 second=347 amount=-2 +kerning first=234 second=8250 amount=-2 +kerning first=375 second=361 amount=-1 +kerning first=267 second=347 amount=-2 +kerning first=200 second=205 amount=-2 +kerning first=228 second=240 amount=-1 +kerning first=368 second=379 amount=-1 +kerning first=231 second=347 amount=-2 +kerning first=262 second=107 amount=-1 +kerning first=302 second=339 amount=-2 +kerning first=246 second=371 amount=-1 +kerning first=195 second=347 amount=-2 +kerning first=226 second=107 amount=-1 +kerning first=1067 second=1095 amount=-1 +kerning first=202 second=305 amount=-1 +kerning first=204 second=216 amount=-2 +kerning first=1031 second=1095 amount=-1 +kerning first=90 second=347 amount=-2 +kerning first=274 second=305 amount=-1 +kerning first=115 second=226 amount=-1 +kerning first=354 second=245 amount=-3 +kerning first=370 second=266 amount=-1 +kerning first=1050 second=1083 amount=-2 +kerning first=377 second=65 amount=-1 +kerning first=78 second=252 amount=-1 +kerning first=346 second=305 amount=-3 +kerning first=220 second=226 amount=-3 +kerning first=298 second=266 amount=-2 +kerning first=1037 second=1057 amount=-1 +kerning first=102 second=46 amount=-1 +kerning first=86 second=8250 amount=-3 +kerning first=220 second=336 amount=-1 +kerning first=256 second=336 amount=-3 +kerning first=382 second=305 amount=-2 +kerning first=109 second=122 amount=-1 +kerning first=207 second=112 amount=-1 +kerning first=328 second=226 amount=-1 +kerning first=335 second=8250 amount=-2 +kerning first=1070 second=1062 amount=-1 +kerning first=262 second=266 amount=-3 +kerning first=73 second=122 amount=-1 +kerning first=1116 second=1104 amount=-2 +kerning first=364 second=226 amount=-3 +kerning first=74 second=197 amount=-5 +kerning first=381 second=102 amount=-3 +kerning first=364 second=336 amount=-1 +kerning first=327 second=252 amount=-1 +kerning first=193 second=219 amount=-3 +kerning first=363 second=252 amount=-1 +kerning first=198 second=316 amount=-1 +kerning first=382 second=45 amount=-3 +kerning first=88 second=219 amount=-2 +kerning first=234 second=316 amount=-3 +kerning first=1064 second=1108 amount=-1 +kerning first=211 second=202 amount=-2 +kerning first=296 second=335 amount=-2 +kerning first=289 second=259 amount=-3 +kerning first=219 second=252 amount=-1 +kerning first=253 second=259 amount=-3 +kerning first=255 second=252 amount=-1 +kerning first=201 second=102 amount=-2 +kerning first=378 second=316 amount=-2 +kerning first=105 second=245 amount=-1 +kerning first=291 second=252 amount=-1 +kerning first=325 second=259 amount=-2 +kerning first=272 second=229 amount=-1 +kerning first=79 second=226 amount=-1 +kerning first=246 second=369 amount=-1 +kerning first=112 second=259 amount=-1 +kerning first=97 second=45 amount=-2 +kerning first=314 second=246 amount=-1 +kerning first=65 second=332 amount=-3 +kerning first=81 second=356 amount=-2 +kerning first=332 second=103 amount=-1 +kerning first=8216 second=85 amount=-1 +kerning first=103 second=116 amount=-1 +kerning first=45 second=356 amount=-4 +kerning first=116 second=382 amount=-1 +kerning first=217 second=259 amount=-3 +kerning first=244 second=116 amount=-1 +kerning first=356 second=375 amount=-3 +kerning first=83 second=328 amount=-1 +kerning first=282 second=369 amount=-2 +kerning first=260 second=103 amount=-3 +kerning first=1045 second=1103 amount=-2 +kerning first=206 second=246 amount=-2 +kerning first=69 second=369 amount=-2 +kerning first=224 second=103 amount=-2 +kerning first=110 second=253 amount=-2 +kerning first=274 second=45 amount=-2 +kerning first=8220 second=74 amount=-3 +kerning first=370 second=45 amount=-5 +kerning first=101 second=246 amount=-1 +kerning first=206 second=332 amount=-2 +kerning first=119 second=103 amount=-3 +kerning first=346 second=45 amount=-3 +kerning first=65 second=246 amount=-1 +kerning first=8250 second=221 amount=-4 +kerning first=105 second=369 amount=-1 +kerning first=83 second=103 amount=-3 +kerning first=251 second=253 amount=-3 +kerning first=310 second=45 amount=-4 +kerning first=278 second=332 amount=-1 +kerning first=102 second=120 amount=-1 +kerning first=365 second=382 amount=-2 +kerning first=253 second=109 amount=-2 +kerning first=107 second=375 amount=-1 +kerning first=1045 second=1075 amount=-1 +kerning first=217 second=109 amount=-2 +kerning first=286 second=122 amount=-1 +kerning first=346 second=196 amount=-4 +kerning first=85 second=266 amount=-1 +kerning first=268 second=279 amount=-2 +kerning first=250 second=122 amount=-2 +kerning first=289 second=109 amount=-1 +kerning first=214 second=122 amount=-2 +kerning first=352 second=68 amount=-3 +kerning first=87 second=242 amount=-3 +kerning first=221 second=382 amount=-3 +kerning first=76 second=109 amount=-1 +kerning first=70 second=97 amount=-2 +kerning first=316 second=116 amount=-1 +kerning first=8218 second=98 amount=-1 +kerning first=228 second=242 amount=-1 +kerning first=258 second=356 amount=-6 +kerning first=257 second=382 amount=-1 +kerning first=354 second=369 amount=-2 +kerning first=248 second=375 amount=-3 +kerning first=192 second=242 amount=-1 +kerning first=222 second=356 amount=-2 +kerning first=201 second=362 amount=-2 +kerning first=1056 second=1024 amount=-1 +kerning first=84 second=194 amount=-6 +kerning first=352 second=116 amount=-1 +kerning first=264 second=242 amount=-2 +kerning first=248 second=115 amount=-2 +kerning first=352 second=378 amount=-2 +kerning first=364 second=198 amount=-4 +kerning first=105 second=273 amount=-1 +kerning first=45 second=345 amount=-2 +kerning first=112 second=355 amount=-1 +kerning first=1056 second=1036 amount=-1 +kerning first=346 second=73 amount=-3 +kerning first=83 second=75 amount=-3 +kerning first=316 second=8217 amount=-3 +kerning first=220 second=198 amount=-4 +kerning first=196 second=119 amount=-3 +kerning first=352 second=8217 amount=-2 +kerning first=289 second=355 amount=-1 +kerning first=232 second=119 amount=-2 +kerning first=8222 second=97 amount=-2 +kerning first=356 second=115 amount=-3 +kerning first=253 second=355 amount=-1 +kerning first=268 second=119 amount=-1 +kerning first=315 second=203 amount=-2 +kerning first=112 second=228 amount=-1 +kerning first=288 second=313 amount=-1 +kerning first=304 second=119 amount=-2 +kerning first=287 second=253 amount=-1 +kerning first=350 second=74 amount=-2 +kerning first=257 second=108 amount=-1 +kerning first=70 second=230 amount=-2 +kerning first=323 second=253 amount=-2 +kerning first=221 second=73 amount=-1 +kerning first=216 second=313 amount=-2 +kerning first=211 second=315 amount=-2 +kerning first=365 second=108 amount=-2 +kerning first=274 second=73 amount=-2 +kerning first=368 second=381 amount=-1 +kerning first=371 second=171 amount=-2 +kerning first=1094 second=1105 amount=-1 +kerning first=332 second=75 amount=-2 +kerning first=118 second=269 amount=-3 +kerning first=1072 second=1082 amount=-1 +kerning first=350 second=246 amount=-1 +kerning first=82 second=269 amount=-3 +kerning first=119 second=335 amount=-3 +kerning first=198 second=196 amount=-2 +kerning first=251 second=225 amount=-1 +kerning first=224 second=335 amount=-1 +kerning first=289 second=231 amount=-2 +kerning first=287 second=225 amount=-3 +kerning first=260 second=335 amount=-1 +kerning first=325 second=231 amount=-2 +kerning first=259 second=269 amount=-1 +kerning first=116 second=108 amount=-1 +kerning first=381 second=221 amount=-2 +kerning first=367 second=269 amount=-1 +kerning first=1077 second=1100 amount=-1 +kerning first=83 second=363 amount=-1 +kerning first=74 second=225 amount=-3 +kerning first=119 second=363 amount=-1 +kerning first=110 second=225 amount=-1 +kerning first=83 second=335 amount=-1 +kerning first=366 second=328 amount=-2 +kerning first=224 second=363 amount=-1 +kerning first=1056 second=1086 amount=-1 +kerning first=260 second=363 amount=-3 +kerning first=356 second=286 amount=-3 +kerning first=8218 second=220 amount=-3 +kerning first=208 second=8217 amount=-2 +kerning first=296 second=363 amount=-2 +kerning first=8216 second=345 amount=-1 +kerning first=244 second=8217 amount=-2 +kerning first=8216 second=263 amount=-3 +kerning first=65 second=218 amount=-3 +kerning first=1057 second=1063 amount=-1 +kerning first=368 second=363 amount=-1 +kerning first=8220 second=255 amount=-1 +kerning first=350 second=218 amount=-3 +kerning first=107 second=115 amount=-2 +kerning first=253 second=231 amount=-3 +kerning first=66 second=203 amount=-4 +kerning first=243 second=46 amount=-3 +kerning first=1113 second=1076 amount=-2 +kerning first=278 second=218 amount=-2 +kerning first=279 second=46 amount=-3 +kerning first=1077 second=1076 amount=-1 +kerning first=98 second=8221 amount=-2 +kerning first=79 second=368 amount=-1 +kerning first=303 second=235 amount=-3 +kerning first=1105 second=1118 amount=-1 +kerning first=266 second=261 amount=-2 +kerning first=197 second=367 amount=-3 +kerning first=366 second=122 amount=-3 +kerning first=339 second=235 amount=-1 +kerning first=1069 second=1118 amount=-1 +kerning first=302 second=261 amount=-2 +kerning first=375 second=235 amount=-3 +kerning first=338 second=261 amount=-1 +kerning first=334 second=8220 amount=-2 +kerning first=86 second=296 amount=-1 +kerning first=1074 second=1117 amount=-1 +kerning first=8218 second=218 amount=-3 +kerning first=89 second=261 amount=-5 +kerning first=8250 second=193 amount=-4 +kerning first=330 second=211 amount=-2 +kerning first=68 second=327 amount=-2 +kerning first=1065 second=1072 amount=-1 +kerning first=226 second=8220 amount=-3 +kerning first=259 second=347 amount=-1 +kerning first=258 second=211 amount=-3 +kerning first=381 second=275 amount=-1 +kerning first=89 second=378 amount=-3 +kerning first=227 second=269 amount=-1 +kerning first=233 second=250 amount=-2 +kerning first=102 second=244 amount=-1 +kerning first=216 second=171 amount=-1 +kerning first=235 second=112 amount=-1 +kerning first=97 second=382 amount=-1 +kerning first=197 second=250 amount=-3 +kerning first=252 second=171 amount=-2 +kerning first=199 second=112 amount=-3 +kerning first=45 second=206 amount=-5 +kerning first=366 second=211 amount=-1 +kerning first=1086 second=1083 amount=-2 +kerning first=90 second=235 amount=-1 +kerning first=366 second=326 amount=-2 +kerning first=317 second=327 amount=-2 +kerning first=199 second=86 amount=-1 +kerning first=269 second=250 amount=-2 +kerning first=374 second=261 amount=-5 +kerning first=66 second=217 amount=-3 +kerning first=195 second=235 amount=-1 +kerning first=117 second=326 amount=-1 +kerning first=117 second=328 amount=-1 +kerning first=277 second=109 amount=-2 +kerning first=75 second=171 amount=-4 +kerning first=231 second=235 amount=-1 +kerning first=84 second=192 amount=-6 +kerning first=213 second=206 amount=-2 +kerning first=267 second=235 amount=-1 +kerning first=45 second=328 amount=-2 +kerning first=321 second=206 amount=-2 +kerning first=90 second=237 amount=-1 +kerning first=370 second=353 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=314 second=100 amount=-1 +kerning first=305 second=365 amount=-1 +kerning first=374 second=378 amount=-3 +kerning first=350 second=100 amount=-1 +kerning first=89 second=263 amount=-3 +kerning first=269 second=365 amount=-2 +kerning first=233 second=365 amount=-2 +kerning first=87 second=366 amount=-1 +kerning first=90 second=200 amount=-1 +kerning first=197 second=365 amount=-3 +kerning first=76 second=83 amount=-1 +kerning first=266 second=378 amount=-2 +kerning first=226 second=353 amount=-1 +kerning first=336 second=366 amount=-1 +kerning first=379 second=112 amount=-1 +kerning first=230 second=378 amount=-2 +kerning first=262 second=353 amount=-2 +kerning first=206 second=100 amount=-2 +kerning first=256 second=45 amount=-4 +kerning first=298 second=353 amount=-2 +kerning first=379 second=262 amount=-1 +kerning first=1025 second=1094 amount=-1 +kerning first=264 second=366 amount=-2 +kerning first=307 second=112 amount=-1 +kerning first=217 second=83 amount=-3 +kerning first=302 second=378 amount=-1 +kerning first=107 second=113 amount=-3 +kerning first=85 second=353 amount=-2 +kerning first=346 second=223 amount=-1 +kerning first=213 second=352 amount=-1 +kerning first=79 second=198 amount=-4 +kerning first=325 second=83 amount=-2 +kerning first=121 second=353 amount=-3 +kerning first=65 second=100 amount=-1 +kerning first=1027 second=1078 amount=-3 +kerning first=321 second=352 amount=-1 +kerning first=195 second=87 amount=-6 +kerning first=116 second=361 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=198 second=288 amount=-1 +kerning first=8250 second=305 amount=-1 +kerning first=90 second=87 amount=-2 +kerning first=1101 second=1091 amount=-1 +kerning first=202 second=223 amount=-1 +kerning first=67 second=233 amount=-2 +kerning first=377 second=365 amount=-3 +kerning first=76 second=356 amount=-3 +kerning first=274 second=223 amount=-1 +kerning first=370 second=379 amount=-1 +kerning first=1060 second=1040 amount=-3 +kerning first=286 second=304 amount=-1 +kerning first=108 second=324 amount=-1 +kerning first=363 second=99 amount=-1 +kerning first=334 second=379 amount=-2 +kerning first=377 second=339 amount=-1 +kerning first=269 second=339 amount=-1 +kerning first=214 second=304 amount=-2 +kerning first=89 second=289 amount=-4 +kerning first=101 second=305 amount=-2 +kerning first=316 second=233 amount=-1 +kerning first=195 second=89 amount=-6 +kerning first=199 second=114 amount=-1 +kerning first=201 second=249 amount=-2 +kerning first=194 second=289 amount=-3 +kerning first=235 second=114 amount=-1 +kerning first=230 second=289 amount=-3 +kerning first=352 second=233 amount=-1 +kerning first=266 second=289 amount=-3 +kerning first=78 second=99 amount=-2 +kerning first=1070 second=1064 amount=-1 +kerning first=89 second=110 amount=-3 +kerning first=67 second=350 amount=-3 +kerning first=313 second=274 amount=-2 +kerning first=375 second=237 amount=-2 +kerning first=379 second=84 amount=-2 +kerning first=339 second=237 amount=-2 +kerning first=1114 second=1114 amount=-1 +kerning first=85 second=379 amount=-1 +kerning first=230 second=110 amount=-2 +kerning first=303 second=237 amount=-1 +kerning first=255 second=99 amount=-3 +kerning first=266 second=110 amount=-1 +kerning first=267 second=237 amount=-2 +kerning first=1105 second=1116 amount=-1 +kerning first=197 second=339 amount=-1 +kerning first=223 second=187 amount=-2 +kerning first=219 second=99 amount=-2 +kerning first=231 second=237 amount=-2 +kerning first=280 second=350 amount=-2 +kerning first=233 second=339 amount=-1 +kerning first=249 second=324 amount=-1 +kerning first=327 second=99 amount=-2 +kerning first=85 second=381 amount=-1 +kerning first=338 second=110 amount=-1 +kerning first=195 second=237 amount=-1 +kerning first=291 second=99 amount=-2 +kerning first=262 second=379 amount=-2 +kerning first=1048 second=1060 amount=-1 +kerning first=374 second=110 amount=-3 +kerning first=208 second=350 amount=-1 +kerning first=321 second=324 amount=-1 +kerning first=381 second=277 amount=-1 +kerning first=86 second=212 amount=-3 +kerning first=379 second=234 amount=-1 +kerning first=1101 second=1119 amount=-1 +kerning first=45 second=326 amount=-2 +kerning first=352 second=350 amount=-1 +kerning first=1045 second=1101 amount=-1 +kerning first=313 second=302 amount=-2 +kerning first=8220 second=370 amount=-1 +kerning first=199 second=234 amount=-2 +kerning first=75 second=113 amount=-2 +kerning first=370 second=264 amount=-1 +kerning first=235 second=234 amount=-1 +kerning first=338 second=71 amount=-1 +kerning first=1038 second=1089 amount=-4 +kerning first=212 second=260 amount=-4 +kerning first=298 second=264 amount=-2 +kerning first=307 second=234 amount=-1 +kerning first=302 second=289 amount=-3 +kerning first=262 second=351 amount=-2 +kerning first=262 second=264 amount=-3 +kerning first=278 second=72 amount=-2 +kerning first=284 second=260 amount=-3 +kerning first=45 second=354 amount=-4 +kerning first=338 second=289 amount=-3 +kerning first=281 second=324 amount=-2 +kerning first=377 second=367 amount=-3 +kerning first=90 second=89 amount=-2 +kerning first=81 second=354 amount=-2 +kerning first=374 second=289 amount=-4 +kerning first=350 second=72 amount=-3 +kerning first=356 second=260 amount=-6 +kerning first=1055 second=1054 amount=-1 +kerning first=298 second=351 amount=-2 +kerning first=75 second=199 amount=-3 +kerning first=79 second=76 amount=-2 +kerning first=305 second=367 amount=-1 +kerning first=85 second=351 amount=-2 +kerning first=85 second=264 amount=-1 +kerning first=222 second=354 amount=-2 +kerning first=201 second=364 amount=-2 +kerning first=233 second=367 amount=-2 +kerning first=90 second=209 amount=-1 +kerning first=258 second=354 amount=-6 +kerning first=275 second=111 amount=-1 +kerning first=269 second=367 amount=-2 +kerning first=377 second=110 amount=-1 +kerning first=121 second=351 amount=-3 +kerning first=121 second=223 amount=-1 +kerning first=268 second=8249 amount=-4 +kerning first=119 second=361 amount=-1 +kerning first=275 second=267 amount=-1 +kerning first=78 second=264 amount=-2 +kerning first=108 second=226 amount=-2 +kerning first=78 second=121 amount=-2 +kerning first=83 second=361 amount=-1 +kerning first=311 second=267 amount=-3 +kerning first=118 second=277 amount=-3 +kerning first=327 second=367 amount=-2 +kerning first=1030 second=1095 amount=-1 +kerning first=224 second=361 amount=-1 +kerning first=82 second=277 amount=-3 +kerning first=203 second=377 amount=-1 +kerning first=363 second=367 amount=-1 +kerning first=1036 second=1077 amount=-2 +kerning first=255 second=367 amount=-1 +kerning first=296 second=361 amount=-2 +kerning first=199 second=254 amount=-1 +kerning first=99 second=351 amount=-2 +kerning first=253 second=111 amount=-3 +kerning first=354 second=257 amount=-5 +kerning first=291 second=367 amount=-1 +kerning first=260 second=361 amount=-3 +kerning first=235 second=254 amount=-2 +kerning first=240 second=351 amount=-2 +kerning first=289 second=111 amount=-2 +kerning first=84 second=287 amount=-4 +kerning first=264 second=114 amount=-1 +kerning first=368 second=361 amount=-1 +kerning first=314 second=45 amount=-3 +kerning first=325 second=111 amount=-2 +kerning first=282 second=257 amount=-1 +kerning first=219 second=367 amount=-1 +kerning first=280 second=364 amount=-2 +kerning first=307 second=254 amount=-1 +kerning first=1025 second=1074 amount=-1 +kerning first=212 second=274 amount=-2 +kerning first=244 second=261 amount=-1 +kerning first=78 second=367 amount=-2 +kerning first=347 second=117 amount=-1 +kerning first=336 second=374 amount=-2 +kerning first=120 second=287 amount=-2 +kerning first=280 second=261 amount=-1 +kerning first=269 second=244 amount=-1 +kerning first=311 second=117 amount=-1 +kerning first=261 second=287 amount=-1 +kerning first=87 second=114 amount=-1 +kerning first=363 second=121 amount=-3 +kerning first=352 second=104 amount=-2 +kerning first=1088 second=1081 amount=-1 +kerning first=264 second=374 amount=-1 +kerning first=71 second=274 amount=-1 +kerning first=225 second=287 amount=-2 +kerning first=352 second=261 amount=-2 +kerning first=327 second=121 amount=-2 +kerning first=316 second=104 amount=-1 +kerning first=67 second=274 amount=-3 +kerning first=356 second=274 amount=-1 +kerning first=333 second=287 amount=-2 +kerning first=67 second=261 amount=-2 +kerning first=377 second=244 amount=-1 +kerning first=291 second=121 amount=-1 +kerning first=213 second=344 amount=-2 +kerning first=192 second=374 amount=-6 +kerning first=327 second=250 amount=-2 +kerning first=103 second=261 amount=-3 +kerning first=219 second=381 amount=-1 +kerning first=332 second=237 amount=-1 +kerning first=284 second=274 amount=-1 +kerning first=219 second=121 amount=-1 +kerning first=116 second=351 amount=-1 +kerning first=296 second=237 amount=-1 +kerning first=369 second=287 amount=-3 +kerning first=208 second=261 amount=-1 +kerning first=321 second=344 amount=-2 +kerning first=224 second=347 amount=-1 +kerning first=255 second=107 amount=-2 +kerning first=219 second=250 amount=-1 +kerning first=1076 second=1104 amount=-1 +kerning first=103 second=378 amount=-3 +kerning first=266 second=171 amount=-4 +kerning first=1040 second=1104 amount=-2 +kerning first=119 second=347 amount=-3 +kerning first=291 second=250 amount=-1 +kerning first=289 second=289 amount=-2 +kerning first=83 second=347 amount=-1 +kerning first=275 second=281 amount=-1 +kerning first=291 second=107 amount=-2 +kerning first=379 second=240 amount=-1 +kerning first=255 second=250 amount=-1 +kerning first=338 second=171 amount=-2 +kerning first=339 second=271 amount=-1 +kerning first=1057 second=1047 amount=-1 +kerning first=305 second=250 amount=-1 +kerning first=89 second=171 amount=-5 +kerning first=67 second=378 amount=-2 +kerning first=74 second=354 amount=-1 +kerning first=275 second=117 amount=-2 +kerning first=377 second=230 amount=-1 +kerning first=78 second=250 amount=-2 +kerning first=194 second=171 amount=-4 +kerning first=1118 second=1108 amount=-2 +kerning first=74 second=74 amount=-2 +kerning first=253 second=371 amount=-1 +kerning first=210 second=257 amount=-1 +kerning first=289 second=371 amount=-1 +kerning first=69 second=257 amount=-1 +kerning first=327 second=264 amount=-2 +kerning first=105 second=257 amount=-2 +kerning first=368 second=347 amount=-2 +kerning first=374 second=171 amount=-5 +kerning first=375 second=110 amount=-2 +kerning first=363 second=107 amount=-2 +kerning first=192 second=100 amount=-1 +kerning first=307 second=240 amount=-1 +kerning first=88 second=314 amount=-1 +kerning first=219 second=264 amount=-1 +kerning first=296 second=347 amount=-2 +kerning first=228 second=100 amount=-1 +kerning first=199 second=240 amount=-2 +kerning first=229 second=314 amount=-1 +kerning first=260 second=347 amount=-2 +kerning first=323 second=74 amount=-1 +kerning first=264 second=100 amount=-2 +kerning first=235 second=240 amount=-1 +kerning first=202 second=102 amount=-2 +kerning first=193 second=314 amount=-2 +kerning first=213 second=220 amount=-1 +kerning first=208 second=90 amount=-2 +kerning first=214 second=298 amount=-2 +kerning first=204 second=71 amount=-2 +kerning first=213 second=330 amount=-2 +kerning first=1119 second=1108 amount=-1 +kerning first=280 second=90 amount=-1 +kerning first=286 second=298 amount=-1 +kerning first=1092 second=1114 amount=-1 +kerning first=317 second=207 amount=-2 +kerning first=290 second=317 amount=-1 +kerning first=68 second=201 amount=-2 +kerning first=204 second=214 amount=-2 +kerning first=337 second=314 amount=-2 +kerning first=321 second=330 amount=-2 +kerning first=68 second=207 amount=-2 +kerning first=1024 second=1024 amount=-1 +kerning first=367 second=291 amount=-3 +kerning first=1025 second=1075 amount=-1 +kerning first=331 second=291 amount=-2 +kerning first=362 second=194 amount=-4 +kerning first=1083 second=1108 amount=-1 +kerning first=321 second=220 amount=-3 +kerning first=90 second=221 amount=-2 +kerning first=258 second=213 amount=-3 +kerning first=269 second=224 amount=-2 +kerning first=259 second=291 amount=-2 +kerning first=99 second=337 amount=-1 +kerning first=122 second=324 amount=-2 +kerning first=290 second=200 amount=-1 +kerning first=233 second=224 amount=-2 +kerning first=272 second=304 amount=-2 +kerning first=86 second=324 amount=-3 +kerning first=217 second=97 amount=-3 +kerning first=200 second=318 amount=-1 +kerning first=187 second=291 amount=-3 +kerning first=227 second=324 amount=-1 +kerning first=305 second=224 amount=-1 +kerning first=118 second=291 amount=-3 +kerning first=112 second=97 amount=-1 +kerning first=82 second=291 amount=-3 +kerning first=1038 second=1101 amount=-3 +kerning first=325 second=97 amount=-2 +kerning first=321 second=84 amount=-3 +kerning first=78 second=101 amount=-2 +kerning first=366 second=213 amount=-1 +kerning first=377 second=224 amount=-1 +kerning first=275 second=109 amount=-2 +kerning first=235 second=251 amount=-2 +kerning first=8250 second=195 amount=-4 +kerning first=317 second=311 amount=-2 +kerning first=344 second=318 amount=-3 +kerning first=204 second=337 amount=-2 +kerning first=1025 second=1088 amount=-1 +kerning first=253 second=97 amount=-3 +kerning first=281 second=311 amount=-2 +kerning first=380 second=318 amount=-2 +kerning first=67 second=90 amount=-2 +kerning first=289 second=97 amount=-3 +kerning first=213 second=84 amount=-2 +kerning first=245 second=311 amount=-1 +kerning first=219 second=101 amount=-2 +kerning first=72 second=234 amount=-2 +kerning first=326 second=303 amount=-1 +kerning first=1036 second=1057 amount=-4 +kerning first=103 second=104 amount=-2 +kerning first=255 second=101 amount=-3 +kerning first=281 second=187 amount=-2 +kerning first=108 second=234 amount=-1 +kerning first=68 second=325 amount=-2 +kerning first=362 second=303 amount=-2 +kerning first=67 second=104 amount=-1 +kerning first=291 second=101 amount=-2 +kerning first=254 second=303 amount=-1 +kerning first=1057 second=1041 amount=-1 +kerning first=366 second=227 amount=-3 +kerning first=347 second=249 amount=-1 +kerning first=327 second=101 amount=-2 +kerning first=317 second=193 amount=-2 +kerning first=380 second=44 amount=-1 +kerning first=330 second=227 amount=-2 +kerning first=363 second=101 amount=-1 +kerning first=200 second=44 amount=-1 +kerning first=321 second=78 amount=-2 +kerning first=280 second=104 amount=-1 +kerning first=86 second=310 amount=-1 +kerning first=263 second=324 amount=-2 +kerning first=213 second=70 amount=-2 +kerning first=244 second=104 amount=-1 +kerning first=245 second=187 amount=-2 +kerning first=272 second=44 amount=-3 +kerning first=371 second=324 amount=-2 +kerning first=236 second=44 amount=-2 +kerning first=317 second=325 amount=-2 +kerning first=335 second=324 amount=-1 +kerning first=73 second=284 amount=-2 +kerning first=367 second=277 amount=-1 +kerning first=117 second=227 amount=-1 +kerning first=290 second=194 amount=-3 +kerning first=213 second=78 amount=-2 +kerning first=81 second=227 amount=-1 +kerning first=69 second=251 amount=-2 +kerning first=1060 second=1024 amount=-1 +kerning first=266 second=209 amount=-3 +kerning first=45 second=227 amount=-1 +kerning first=218 second=194 amount=-4 +kerning first=1092 second=1100 amount=-1 +kerning first=249 second=234 amount=-1 +kerning first=282 second=251 amount=-2 +kerning first=317 second=201 amount=-2 +kerning first=218 second=303 amount=-2 +kerning first=246 second=251 amount=-1 +kerning first=1101 second=1093 amount=-1 +kerning first=77 second=303 amount=-1 +kerning first=222 second=227 amount=-1 +kerning first=354 second=251 amount=-2 +kerning first=259 second=277 amount=-1 +kerning first=113 second=303 amount=-1 +kerning first=85 second=237 amount=-2 +kerning first=266 second=118 amount=-1 +kerning first=83 second=245 amount=-1 +kerning first=82 second=283 amount=-3 +kerning first=298 second=105 amount=-1 +kerning first=230 second=118 amount=-2 +kerning first=280 second=370 amount=-2 +kerning first=334 second=105 amount=-1 +kerning first=8250 second=327 amount=-5 +kerning first=255 second=226 amount=-3 +kerning first=226 second=105 amount=-1 +kerning first=264 second=270 amount=-3 +kerning first=302 second=118 amount=-2 +kerning first=352 second=370 amount=-3 +kerning first=262 second=105 amount=-1 +kerning first=89 second=118 amount=-3 +kerning first=260 second=245 amount=-1 +kerning first=259 second=283 amount=-1 +kerning first=192 second=368 amount=-3 +kerning first=1108 second=1083 amount=-1 +kerning first=121 second=105 amount=-2 +kerning first=310 second=335 amount=-2 +kerning first=71 second=280 amount=-1 +kerning first=224 second=245 amount=-1 +kerning first=1082 second=1079 amount=-1 +kerning first=346 second=335 amount=-1 +kerning first=194 second=118 amount=-3 +kerning first=87 second=368 amount=-1 +kerning first=382 second=335 amount=-1 +kerning first=87 second=270 amount=-1 +kerning first=323 second=268 amount=-2 +kerning first=118 second=283 amount=-3 +kerning first=85 second=105 amount=-2 +kerning first=212 second=280 amount=-2 +kerning first=316 second=241 amount=-1 +kerning first=336 second=368 amount=-1 +kerning first=200 second=45 amount=-2 +kerning first=218 second=193 amount=-4 +kerning first=68 second=193 amount=-4 +kerning first=280 second=241 amount=-1 +kerning first=367 second=283 amount=-1 +kerning first=67 second=370 amount=-2 +kerning first=67 second=223 amount=-1 +kerning first=228 second=108 amount=-1 +kerning first=264 second=368 amount=-2 +kerning first=1036 second=1083 amount=-2 +kerning first=352 second=241 amount=-1 +kerning first=192 second=108 amount=-2 +kerning first=8220 second=350 amount=-1 +kerning first=240 second=228 amount=-1 +kerning first=336 second=270 amount=-2 +kerning first=103 second=241 amount=-1 +kerning first=264 second=108 amount=-1 +kerning first=204 second=228 amount=-2 +kerning first=244 second=241 amount=-1 +kerning first=214 second=278 amount=-2 +kerning first=381 second=367 amount=-3 +kerning first=208 second=370 amount=-1 +kerning first=99 second=228 amount=-2 +kerning first=97 second=335 amount=-1 +kerning first=224 second=231 amount=-1 +kerning first=286 second=278 amount=-1 +kerning first=66 second=89 amount=-3 +kerning first=1072 second=1085 amount=-1 +kerning first=260 second=231 amount=-1 +kerning first=199 second=228 amount=-2 +kerning first=336 second=122 amount=-2 +kerning first=67 second=241 amount=-1 +kerning first=119 second=231 amount=-3 +kerning first=1072 second=1097 amount=-1 +kerning first=352 second=356 amount=-3 +kerning first=333 second=107 amount=-1 +kerning first=1108 second=1097 amount=-1 +kerning first=8250 second=313 amount=-5 +kerning first=231 second=241 amount=-2 +kerning first=264 second=122 amount=-2 +kerning first=368 second=231 amount=-2 +kerning first=280 second=356 amount=-1 +kerning first=240 second=331 amount=-1 +kerning first=336 second=73 amount=-2 +kerning first=316 second=255 amount=-3 +kerning first=374 second=116 amount=-1 +kerning first=296 second=231 amount=-2 +kerning first=336 second=256 amount=-4 +kerning first=1052 second=1073 amount=-1 +kerning first=229 second=235 amount=-1 +kerning first=1108 second=1085 amount=-1 +kerning first=244 second=255 amount=-3 +kerning first=368 second=245 amount=-2 +kerning first=296 second=81 amount=-2 +kerning first=99 second=331 amount=-2 +kerning first=310 second=220 amount=-2 +kerning first=103 second=255 amount=-1 +kerning first=296 second=245 amount=-2 +kerning first=368 second=81 amount=-1 +kerning first=67 second=255 amount=-1 +kerning first=356 second=280 amount=-1 +kerning first=99 second=345 amount=-1 +kerning first=228 second=122 amount=-1 +kerning first=1038 second=1095 amount=-3 +kerning first=83 second=231 amount=-1 +kerning first=315 second=290 amount=-1 +kerning first=1088 second=1087 amount=-1 +kerning first=370 second=105 amount=-2 +kerning first=277 second=8250 amount=-2 +kerning first=240 second=345 amount=-1 +kerning first=87 second=122 amount=-3 +kerning first=104 second=305 amount=-1 +kerning first=368 second=229 amount=-3 +kerning first=68 second=305 amount=-1 +kerning first=88 second=217 amount=-2 +kerning first=209 second=305 amount=-1 +kerning first=97 second=333 amount=-1 +kerning first=296 second=229 amount=-2 +kerning first=103 second=303 amount=-2 +kerning first=193 second=217 amount=-3 +kerning first=332 second=229 amount=-1 +kerning first=281 second=305 amount=-2 +kerning first=1046 second=1101 amount=-1 +kerning first=221 second=282 amount=-1 +kerning first=228 second=106 amount=-1 +kerning first=310 second=67 amount=-3 +kerning first=245 second=305 amount=-1 +kerning first=305 second=8220 amount=-2 +kerning first=264 second=106 amount=-1 +kerning first=274 second=67 amount=-1 +kerning first=353 second=305 amount=-2 +kerning first=65 second=346 amount=-3 +kerning first=260 second=81 amount=-3 +kerning first=317 second=305 amount=-2 +kerning first=228 second=8249 amount=-2 +kerning first=80 second=282 amount=-1 +kerning first=346 second=333 amount=-1 +kerning first=305 second=230 amount=-1 +kerning first=278 second=346 amount=-2 +kerning first=310 second=333 amount=-2 +kerning first=233 second=230 amount=-2 +kerning first=79 second=204 amount=-2 +kerning first=206 second=346 amount=-2 +kerning first=382 second=333 amount=-1 +kerning first=83 second=243 amount=-1 +kerning first=336 second=106 amount=-1 +kerning first=269 second=230 amount=-2 +kerning first=311 second=281 amount=-3 +kerning first=87 second=256 amount=-6 +kerning first=324 second=367 amount=-1 +kerning first=1108 second=1099 amount=-1 +kerning first=333 second=307 amount=-1 +kerning first=369 second=307 amount=-2 +kerning first=198 second=218 amount=-2 +kerning first=197 second=79 amount=-3 +kerning first=256 second=218 amount=-3 +kerning first=296 second=243 amount=-2 +kerning first=334 second=352 amount=-1 +kerning first=368 second=243 amount=-2 +kerning first=211 second=69 amount=-2 +kerning first=119 second=243 amount=-3 +kerning first=1039 second=1060 amount=-1 +kerning first=72 second=332 amount=-2 +kerning first=377 second=79 amount=-1 +kerning first=200 second=381 amount=-1 +kerning first=352 second=80 amount=-3 +kerning first=224 second=243 amount=-1 +kerning first=109 second=228 amount=-1 +kerning first=260 second=243 amount=-1 +kerning first=88 second=255 amount=-3 +kerning first=1027 second=1098 amount=-1 +kerning first=311 second=171 amount=-3 +kerning first=101 second=244 amount=-1 +kerning first=83 second=229 amount=-2 +kerning first=336 second=120 amount=-1 +kerning first=221 second=268 amount=-3 +kerning first=321 second=332 amount=-1 +kerning first=1027 second=1084 amount=-2 +kerning first=88 second=334 amount=-3 +kerning first=79 second=218 amount=-1 +kerning first=87 second=120 amount=-2 +kerning first=374 second=118 amount=-3 +kerning first=356 second=8250 amount=-3 +kerning first=193 second=334 amount=-3 +kerning first=119 second=229 amount=-3 +kerning first=228 second=120 amount=-1 +kerning first=235 second=242 amount=-1 +kerning first=267 second=229 amount=-2 +kerning first=262 second=99 amount=-2 +kerning first=356 second=333 amount=-3 +kerning first=1101 second=1099 amount=-1 +kerning first=69 second=109 amount=-1 +kerning first=204 second=339 amount=-2 +kerning first=311 second=279 amount=-3 +kerning first=199 second=242 amount=-2 +kerning first=303 second=229 amount=-2 +kerning first=226 second=99 amount=-1 +kerning first=279 second=261 amount=-2 +kerning first=187 second=289 amount=-3 +kerning first=307 second=242 amount=-1 +kerning first=217 second=346 amount=-3 +kerning first=223 second=289 amount=-2 +kerning first=99 second=339 amount=-1 +kerning first=231 second=229 amount=-2 +kerning first=298 second=99 amount=-2 +kerning first=105 second=109 amount=-2 +kerning first=259 second=289 amount=-2 +kerning first=307 second=122 amount=-1 +kerning first=379 second=242 amount=-1 +kerning first=295 second=289 amount=-2 +kerning first=370 second=99 amount=-2 +kerning first=331 second=289 amount=-2 +kerning first=260 second=89 amount=-6 +kerning first=350 second=232 amount=-1 +kerning first=275 second=279 amount=-1 +kerning first=286 second=282 amount=-1 +kerning first=339 second=229 amount=-2 +kerning first=367 second=289 amount=-3 +kerning first=314 second=232 amount=-1 +kerning first=375 second=229 amount=-3 +kerning first=1057 second=1049 amount=-1 +kerning first=332 second=89 amount=-2 +kerning first=101 second=232 amount=-1 +kerning first=214 second=282 amount=-2 +kerning first=219 second=379 amount=-1 +kerning first=235 second=106 amount=-2 +kerning first=65 second=232 amount=-1 +kerning first=310 second=214 amount=-3 +kerning first=203 second=119 amount=-1 +kerning first=206 second=232 amount=-2 +kerning first=363 second=303 amount=-2 +kerning first=72 second=346 amount=-2 +kerning first=374 second=347 amount=-3 +kerning first=8216 second=261 amount=-3 +kerning first=97 second=339 amount=-1 +kerning first=338 second=75 amount=-2 +kerning first=72 second=111 amount=-2 +kerning first=226 second=275 amount=-1 +kerning first=85 second=99 amount=-2 +kerning first=321 second=346 amount=-1 +kerning first=345 second=289 amount=-2 +kerning first=311 second=119 amount=-1 +kerning first=347 second=119 amount=-3 +kerning first=222 second=364 amount=-1 +kerning first=307 second=106 amount=-2 +kerning first=264 second=361 amount=-2 +kerning first=213 second=346 amount=-1 +kerning first=82 second=289 amount=-3 +kerning first=277 second=113 amount=-1 +kerning first=202 second=209 amount=-2 +kerning first=220 second=212 amount=-1 +kerning first=256 second=212 amount=-3 +kerning first=8220 second=354 amount=-1 +kerning first=8217 second=288 amount=-2 +kerning first=89 second=269 amount=-3 +kerning first=82 second=8249 amount=-4 +kerning first=346 second=209 amount=-3 +kerning first=122 second=316 amount=-2 +kerning first=194 second=269 amount=-1 +kerning first=1058 second=1119 amount=-2 +kerning first=1061 second=1072 amount=-2 +kerning first=274 second=209 amount=-2 +kerning first=302 second=269 amount=-2 +kerning first=227 second=316 amount=-1 +kerning first=8216 second=364 amount=-1 +kerning first=8222 second=251 amount=-1 +kerning first=249 second=8220 amount=-3 +kerning first=266 second=269 amount=-2 +kerning first=263 second=316 amount=-3 +kerning first=204 second=79 amount=-2 +kerning first=374 second=269 amount=-3 +kerning first=330 second=288 amount=-2 +kerning first=67 second=229 amount=-2 +kerning first=321 second=76 amount=-2 +kerning first=83 second=89 amount=-3 +kerning first=8220 second=374 amount=-1 +kerning first=1070 second=1076 amount=-1 +kerning first=213 second=72 amount=-2 +kerning first=209 second=199 amount=-2 +kerning first=66 second=274 amount=-4 +kerning first=364 second=212 amount=-1 +kerning first=90 second=229 amount=-1 +kerning first=213 second=76 amount=-2 +kerning first=1117 second=1089 amount=-1 +kerning first=1081 second=1089 amount=-1 +kerning first=290 second=192 amount=-3 +kerning first=280 second=368 amount=-2 +kerning first=379 second=365 amount=-3 +kerning first=219 second=109 amount=-2 +kerning first=321 second=72 amount=-2 +kerning first=70 second=216 amount=-1 +kerning first=218 second=192 amount=-4 +kerning first=249 second=226 amount=-1 +kerning first=336 second=261 amount=-1 +kerning first=316 second=102 amount=-1 +kerning first=217 second=245 amount=-2 +kerning first=210 second=8221 amount=-2 +kerning first=205 second=286 amount=-2 +kerning first=236 second=46 amount=-2 +kerning first=321 second=336 amount=-1 +kerning first=272 second=46 amount=-3 +kerning first=230 second=237 amount=-2 +kerning first=1099 second=1086 amount=-1 +kerning first=325 second=245 amount=-2 +kerning first=246 second=8221 amount=-2 +kerning first=1043 second=1083 amount=-3 +kerning first=244 second=102 amount=-1 +kerning first=289 second=245 amount=-2 +kerning first=8250 second=201 amount=-5 +kerning first=8218 second=84 amount=-6 +kerning first=1027 second=1086 amount=-3 +kerning first=280 second=102 amount=-2 +kerning first=253 second=245 amount=-3 +kerning first=303 second=335 amount=-3 +kerning first=90 second=257 amount=-1 +kerning first=313 second=381 amount=-3 +kerning first=339 second=335 amount=-1 +kerning first=198 second=296 amount=-2 +kerning first=258 second=219 amount=-3 +kerning first=226 second=252 amount=-1 +kerning first=112 second=103 amount=-2 +kerning first=375 second=335 amount=-3 +kerning first=222 second=219 amount=-1 +kerning first=371 second=316 amount=-2 +kerning first=262 second=252 amount=-2 +kerning first=76 second=103 amount=-3 +kerning first=298 second=252 amount=-1 +kerning first=78 second=269 amount=-2 +kerning first=72 second=226 amount=-2 +kerning first=195 second=335 amount=-1 +kerning first=81 second=219 amount=-1 +kerning first=70 second=99 amount=-1 +kerning first=290 second=202 amount=-1 +kerning first=231 second=335 amount=-1 +kerning first=45 second=219 amount=-4 +kerning first=85 second=252 amount=-1 +kerning first=267 second=335 amount=-1 +kerning first=213 second=226 amount=-1 +kerning first=121 second=252 amount=-1 +kerning first=76 second=369 amount=-2 +kerning first=282 second=259 amount=-1 +kerning first=67 second=253 amount=-1 +kerning first=291 second=375 amount=-1 +kerning first=246 second=259 amount=-1 +kerning first=103 second=253 amount=-1 +kerning first=379 second=246 amount=-1 +kerning first=354 second=259 amount=-5 +kerning first=219 second=375 amount=-1 +kerning first=1058 second=1113 amount=-2 +kerning first=112 second=369 amount=-1 +kerning first=307 second=246 amount=-1 +kerning first=105 second=259 amount=-2 +kerning first=1088 second=1075 amount=-1 +kerning first=244 second=253 amount=-3 +kerning first=104 second=45 amount=-3 +kerning first=325 second=103 amount=-3 +kerning first=280 second=362 amount=-2 +kerning first=1025 second=1082 amount=-1 +kerning first=69 second=259 amount=-1 +kerning first=370 second=252 amount=-1 +kerning first=289 second=103 amount=-2 +kerning first=74 second=356 amount=-1 +kerning first=235 second=246 amount=-1 +kerning first=210 second=259 amount=-1 +kerning first=363 second=375 amount=-3 +kerning first=253 second=103 amount=-3 +kerning first=352 second=362 amount=-3 +kerning first=199 second=246 amount=-2 +kerning first=352 second=253 amount=-2 +kerning first=327 second=375 amount=-2 +kerning first=83 second=83 amount=-1 +kerning first=217 second=103 amount=-4 +kerning first=221 second=122 amount=-3 +kerning first=219 second=266 amount=-1 +kerning first=264 second=382 amount=-2 +kerning first=354 second=109 amount=-3 +kerning first=116 second=122 amount=-1 +kerning first=208 second=362 amount=-1 +kerning first=336 second=382 amount=-2 +kerning first=67 second=225 amount=-2 +kerning first=260 second=83 amount=-3 +kerning first=8216 second=331 amount=-1 +kerning first=253 second=369 amount=-1 +kerning first=246 second=109 amount=-1 +kerning first=365 second=122 amount=-2 +kerning first=211 second=323 amount=-2 +kerning first=364 second=256 amount=-4 +kerning first=87 second=382 amount=-3 +kerning first=217 second=369 amount=-1 +kerning first=72 second=336 amount=-2 +kerning first=8216 second=65 amount=-8 +kerning first=78 second=375 amount=-2 +kerning first=332 second=83 amount=-1 +kerning first=78 second=266 amount=-2 +kerning first=8220 second=364 amount=-1 +kerning first=325 second=369 amount=-2 +kerning first=368 second=83 amount=-3 +kerning first=289 second=369 amount=-1 +kerning first=282 second=109 amount=-1 +kerning first=257 second=122 amount=-1 +kerning first=67 second=362 amount=-2 +kerning first=228 second=382 amount=-1 +kerning first=231 second=223 amount=-1 +kerning first=67 second=89 amount=-1 +kerning first=231 second=289 amount=-3 +kerning first=78 second=115 amount=-2 +kerning first=311 second=273 amount=-3 +kerning first=203 second=104 amount=-1 +kerning first=8218 second=318 amount=-1 +kerning first=307 second=248 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=275 second=273 amount=-1 +kerning first=206 second=353 amount=-2 +kerning first=232 second=241 amount=-2 +kerning first=303 second=223 amount=-1 +kerning first=235 second=248 amount=-1 +kerning first=267 second=223 amount=-1 +kerning first=228 second=380 amount=-1 +kerning first=1065 second=1105 amount=-1 +kerning first=74 second=233 amount=-2 +kerning first=346 second=245 amount=-1 +kerning first=255 second=115 amount=-3 +kerning first=381 second=263 amount=-1 +kerning first=291 second=115 amount=-3 +kerning first=79 second=330 amount=-2 +kerning first=119 second=355 amount=-1 +kerning first=287 second=233 amount=-2 +kerning first=86 second=198 amount=-6 +kerning first=90 second=223 amount=-1 +kerning first=219 second=115 amount=-2 +kerning first=251 second=233 amount=-1 +kerning first=88 second=213 amount=-3 +kerning first=90 second=75 amount=-1 +kerning first=317 second=313 amount=-2 +kerning first=323 second=233 amount=-2 +kerning first=121 second=365 amount=-1 +kerning first=327 second=115 amount=-2 +kerning first=8216 second=337 amount=-3 +kerning first=193 second=213 amount=-3 +kerning first=85 second=365 amount=-1 +kerning first=363 second=115 amount=-2 +kerning first=260 second=355 amount=-1 +kerning first=74 second=350 amount=-1 +kerning first=1027 second=1090 amount=-1 +kerning first=201 second=110 amount=-1 +kerning first=379 second=248 amount=-1 +kerning first=68 second=313 amount=-2 +kerning first=202 second=325 amount=-2 +kerning first=229 second=328 amount=-1 +kerning first=76 second=363 amount=-2 +kerning first=225 second=303 amount=-1 +kerning first=1046 second=1038 amount=-3 +kerning first=197 second=85 amount=-3 +kerning first=45 second=225 amount=-1 +kerning first=112 second=363 amount=-1 +kerning first=274 second=325 amount=-2 +kerning first=84 second=303 amount=-2 +kerning first=81 second=225 amount=-1 +kerning first=120 second=303 amount=-1 +kerning first=363 second=8220 amount=-3 +kerning first=117 second=225 amount=-1 +kerning first=381 second=110 amount=-1 +kerning first=217 second=363 amount=-1 +kerning first=346 second=325 amount=-3 +kerning first=333 second=303 amount=-1 +kerning first=253 second=363 amount=-1 +kerning first=369 second=303 amount=-2 +kerning first=337 second=328 amount=-1 +kerning first=289 second=363 amount=-1 +kerning first=195 second=221 amount=-6 +kerning first=261 second=303 amount=-1 +kerning first=323 second=350 amount=-2 +kerning first=376 second=302 amount=-1 +kerning first=83 second=235 amount=-1 +kerning first=290 second=315 amount=-1 +kerning first=8250 second=207 amount=-5 +kerning first=321 second=338 amount=-1 +kerning first=201 second=45 amount=-2 +kerning first=330 second=225 amount=-2 +kerning first=1073 second=1094 amount=-1 +kerning first=73 second=290 amount=-2 +kerning first=307 second=98 amount=-1 +kerning first=366 second=225 amount=-3 +kerning first=67 second=102 amount=-2 +kerning first=86 second=196 amount=-6 +kerning first=219 second=260 amount=-4 +kerning first=103 second=102 amount=-1 +kerning first=264 second=380 amount=-2 +kerning first=199 second=98 amount=-1 +kerning first=313 second=286 amount=-1 +kerning first=344 second=46 amount=-2 +kerning first=222 second=225 amount=-1 +kerning first=1025 second=1080 amount=-1 +kerning first=72 second=338 amount=-2 +kerning first=8220 second=362 amount=-1 +kerning first=380 second=46 amount=-1 +kerning first=116 second=353 amount=-1 +kerning first=69 second=377 amount=-1 +kerning first=298 second=367 amount=-2 +kerning first=1043 second=1077 amount=-3 +kerning first=364 second=210 amount=-1 +kerning first=226 second=367 amount=-1 +kerning first=65 second=352 amount=-3 +kerning first=201 second=261 amount=-1 +kerning first=350 second=86 amount=-3 +kerning first=242 second=331 amount=-1 +kerning first=206 second=352 amount=-2 +kerning first=121 second=367 amount=-1 +kerning first=256 second=210 amount=-3 +kerning first=354 second=111 amount=-3 +kerning first=354 second=325 amount=-1 +kerning first=202 second=327 amount=-2 +kerning first=282 second=377 amount=-1 +kerning first=269 second=351 amount=-2 +kerning first=220 second=210 amount=-1 +kerning first=337 second=326 amount=-1 +kerning first=278 second=352 amount=-2 +kerning first=377 second=351 amount=-2 +kerning first=302 second=291 amount=-3 +kerning first=210 second=377 amount=-2 +kerning first=85 second=367 amount=-1 +kerning first=88 second=211 amount=-3 +kerning first=119 second=235 amount=-3 +kerning first=381 second=261 amount=-1 +kerning first=370 second=250 amount=-1 +kerning first=346 second=327 amount=-3 +kerning first=119 second=365 amount=-1 +kerning first=1027 second=1092 amount=-3 +kerning first=46 second=171 amount=-3 +kerning first=336 second=112 amount=-1 +kerning first=224 second=235 amount=-1 +kerning first=1072 second=1090 amount=-1 +kerning first=1063 second=1092 amount=-1 +kerning first=82 second=171 amount=-4 +kerning first=65 second=86 amount=-6 +kerning first=260 second=235 amount=-1 +kerning first=1099 second=1092 amount=-1 +kerning first=118 second=171 amount=-4 +kerning first=264 second=112 amount=-3 +kerning first=198 second=302 amount=-2 +kerning first=296 second=235 amount=-2 +kerning first=196 second=287 amount=-3 +kerning first=226 second=250 amount=-1 +kerning first=278 second=86 amount=-1 +kerning first=368 second=235 amount=-2 +kerning first=268 second=287 amount=-3 +kerning first=298 second=250 amount=-2 +kerning first=1074 second=1103 amount=-2 +kerning first=232 second=287 amount=-3 +kerning first=345 second=261 amount=-1 +kerning first=87 second=112 amount=-2 +kerning first=262 second=250 amount=-2 +kerning first=65 second=219 amount=-3 +kerning first=260 second=237 amount=-1 +kerning first=89 second=275 amount=-3 +kerning first=269 second=353 amount=-2 +kerning first=331 second=171 amount=-3 +kerning first=1072 second=1091 amount=-1 +kerning first=224 second=237 amount=-1 +kerning first=274 second=103 amount=-3 +kerning first=304 second=287 amount=-3 +kerning first=255 second=113 amount=-3 +kerning first=305 second=353 amount=-1 +kerning first=367 second=171 amount=-2 +kerning first=194 second=311 amount=-2 +kerning first=219 second=113 amount=-2 +kerning first=121 second=250 amount=-1 +kerning first=119 second=237 amount=-2 +kerning first=376 second=287 amount=-4 +kerning first=377 second=353 amount=-2 +kerning first=85 second=250 amount=-1 +kerning first=370 second=365 amount=-1 +kerning first=83 second=237 amount=-3 +kerning first=307 second=100 amount=-1 +kerning first=298 second=365 amount=-2 +kerning first=363 second=113 amount=-1 +kerning first=197 second=353 amount=-2 +kerning first=200 second=197 amount=-2 +kerning first=259 second=171 amount=-2 +kerning first=379 second=100 amount=-1 +kerning first=201 second=378 amount=-2 +kerning first=262 second=365 amount=-2 +kerning first=199 second=366 amount=-2 +kerning first=327 second=113 amount=-2 +kerning first=233 second=353 amount=-2 +kerning first=295 second=171 amount=-3 +kerning first=226 second=365 amount=-1 +kerning first=350 second=352 amount=-1 +kerning first=1031 second=1117 amount=-1 +kerning first=272 second=197 amount=-4 +kerning first=332 second=87 amount=-2 +kerning first=258 second=45 amount=-4 +kerning first=199 second=100 amount=-2 +kerning first=244 second=249 amount=-1 +kerning first=235 second=100 amount=-1 +kerning first=260 second=87 amount=-6 +kerning first=103 second=249 amount=-1 +kerning first=87 second=262 amount=-3 +kerning first=374 second=275 amount=-3 +kerning first=1067 second=1117 amount=-1 +kerning first=1119 second=1104 amount=-1 +kerning first=313 second=288 amount=-1 +kerning first=375 second=223 amount=-1 +kerning first=266 second=275 amount=-2 +kerning first=45 second=74 amount=-4 +kerning first=352 second=249 amount=-1 +kerning first=192 second=262 amount=-3 +kerning first=339 second=223 amount=-1 +kerning first=78 second=113 amount=-2 +kerning first=81 second=74 amount=-2 +kerning first=8222 second=257 amount=-2 +kerning first=381 second=378 amount=-3 +kerning first=194 second=275 amount=-1 +kerning first=83 second=87 amount=-3 +kerning first=280 second=249 amount=-2 +kerning first=205 second=288 amount=-2 +kerning first=264 second=262 amount=-3 +kerning first=229 second=283 amount=-1 +kerning first=230 second=275 amount=-1 +kerning first=1070 second=1078 amount=-1 +kerning first=316 second=249 amount=-2 +kerning first=1036 second=1091 amount=-2 +kerning first=364 second=262 amount=-1 +kerning first=200 second=314 amount=-1 +kerning first=222 second=217 amount=-1 +kerning first=264 second=288 amount=-3 +kerning first=258 second=217 amount=-3 +kerning first=89 second=243 amount=-3 +kerning first=187 second=196 amount=-4 +kerning first=281 second=101 amount=-1 +kerning first=76 second=87 amount=-3 +kerning first=236 second=314 amount=-2 +kerning first=194 second=243 amount=-1 +kerning first=344 second=314 amount=-3 +kerning first=379 second=80 amount=-1 +kerning first=325 second=333 amount=-2 +kerning first=261 second=113 amount=-1 +kerning first=97 second=269 amount=-1 +kerning first=289 second=333 amount=-2 +kerning first=87 second=288 amount=-3 +kerning first=225 second=113 amount=-1 +kerning first=1053 second=1072 amount=-1 +kerning first=380 second=314 amount=-2 +kerning first=192 second=288 amount=-3 +kerning first=120 second=113 amount=-2 +kerning first=66 second=366 amount=-3 +kerning first=245 second=307 amount=-1 +kerning first=310 second=269 amount=-2 +kerning first=108 second=224 amount=-2 +kerning first=8216 second=121 amount=-1 +kerning first=354 second=281 amount=-3 +kerning first=281 second=307 amount=-2 +kerning first=382 second=255 amount=-2 +kerning first=72 second=224 amount=-2 +kerning first=204 second=210 amount=-2 +kerning first=346 second=255 amount=-2 +kerning first=213 second=224 amount=-1 +kerning first=313 second=198 amount=-2 +kerning first=353 second=307 amount=-2 +kerning first=346 second=269 amount=-1 +kerning first=220 second=262 amount=-1 +kerning first=335 second=314 amount=-2 +kerning first=230 second=243 amount=-1 +kerning first=256 second=262 amount=-3 +kerning first=379 second=326 amount=-1 +kerning first=81 second=217 amount=-1 +kerning first=351 second=120 amount=-3 +kerning first=225 second=99 amount=-1 +kerning first=336 second=274 amount=-2 +kerning first=230 second=229 amount=-2 +kerning first=85 second=101 amount=-2 +kerning first=222 second=203 amount=-2 +kerning first=89 second=229 amount=-5 +kerning first=121 second=101 amount=-3 +kerning first=264 second=274 amount=-3 +kerning first=261 second=99 amount=-1 +kerning first=323 second=118 amount=-2 +kerning first=338 second=229 amount=-1 +kerning first=369 second=99 amount=-1 +kerning first=226 second=101 amount=-1 +kerning first=290 second=75 amount=-1 +kerning first=1056 second=1076 amount=-1 +kerning first=364 second=248 amount=-2 +kerning first=287 second=118 amount=-1 +kerning first=243 second=120 amount=-3 +kerning first=374 second=229 amount=-5 +kerning first=262 second=101 amount=-2 +kerning first=45 second=203 amount=-5 +kerning first=256 second=248 amount=-1 +kerning first=279 second=120 amount=-2 +kerning first=266 second=229 amount=-2 +kerning first=298 second=101 amount=-2 +kerning first=81 second=203 amount=-2 +kerning first=66 second=284 amount=-3 +kerning first=315 second=120 amount=-1 +kerning first=302 second=229 amount=-2 +kerning first=339 second=121 amount=-2 +kerning first=200 second=68 amount=-2 +kerning first=370 second=101 amount=-2 +kerning first=199 second=80 amount=-3 +kerning first=110 second=118 amount=-3 +kerning first=328 second=8220 amount=-4 +kerning first=280 second=316 amount=-1 +kerning first=354 second=267 amount=-3 +kerning first=251 second=118 amount=-3 +kerning first=8220 second=85 amount=-1 +kerning first=66 second=106 amount=-3 +kerning first=194 second=242 amount=-1 +kerning first=76 second=73 amount=-2 +kerning first=256 second=8220 amount=-5 +kerning first=346 second=241 amount=-1 +kerning first=315 second=106 amount=-2 +kerning first=351 second=106 amount=-1 +kerning first=74 second=118 amount=-1 +kerning first=120 second=99 amount=-2 +kerning first=115 second=8220 amount=-2 +kerning first=243 second=106 amount=-2 +kerning first=307 second=116 amount=-1 +kerning first=84 second=99 amount=-3 +kerning first=382 second=241 amount=-2 +kerning first=79 second=8220 amount=-2 +kerning first=279 second=106 amount=-2 +kerning first=253 second=361 amount=-1 +kerning first=105 second=267 amount=-1 +kerning first=233 second=111 amount=-1 +kerning first=316 second=363 amount=-2 +kerning first=269 second=111 amount=-1 +kerning first=325 second=361 amount=-2 +kerning first=289 second=361 amount=-1 +kerning first=192 second=316 amount=-2 +kerning first=228 second=316 amount=-1 +kerning first=199 second=66 amount=-3 +kerning first=1055 second=1116 amount=-1 +kerning first=264 second=316 amount=-1 +kerning first=369 second=248 amount=-1 +kerning first=67 second=368 amount=-2 +kerning first=313 second=212 amount=-1 +kerning first=246 second=8220 amount=-2 +kerning first=374 second=257 amount=-5 +kerning first=278 second=350 amount=-2 +kerning first=205 second=212 amount=-2 +kerning first=197 second=111 amount=-1 +kerning first=208 second=368 amount=-1 +kerning first=287 second=104 amount=-2 +kerning first=115 second=44 amount=-2 +kerning first=251 second=104 amount=-2 +kerning first=69 second=323 amount=-2 +kerning first=200 second=82 amount=-2 +kerning first=220 second=44 amount=-5 +kerning first=1030 second=1057 amount=-1 +kerning first=76 second=361 amount=-2 +kerning first=377 second=111 amount=-1 +kerning first=352 second=368 amount=-3 +kerning first=8216 second=339 amount=-3 +kerning first=311 second=228 amount=-2 +kerning first=79 second=44 amount=-3 +kerning first=290 second=89 amount=-3 +kerning first=112 second=361 amount=-1 +kerning first=210 second=323 amount=-2 +kerning first=379 second=66 amount=-1 +kerning first=87 second=274 amount=-1 +kerning first=1102 second=1113 amount=-2 +kerning first=324 second=171 amount=-3 +kerning first=356 second=250 amount=-2 +kerning first=199 second=326 amount=-1 +kerning first=187 second=205 amount=-5 +kerning first=80 second=278 amount=-1 +kerning first=282 second=323 amount=-2 +kerning first=1102 second=1099 amount=-1 +kerning first=377 second=97 amount=-1 +kerning first=235 second=326 amount=-2 +kerning first=325 second=347 amount=-2 +kerning first=221 second=278 amount=-1 +kerning first=74 second=378 amount=-1 +kerning first=87 second=302 amount=-1 +kerning first=269 second=97 amount=-2 +kerning first=289 second=347 amount=-3 +kerning first=105 second=281 amount=-1 +kerning first=354 second=323 amount=-1 +kerning first=84 second=362 amount=-1 +kerning first=305 second=97 amount=-1 +kerning first=307 second=326 amount=-2 +kerning first=253 second=347 amount=-3 +kerning first=233 second=371 amount=-2 +kerning first=217 second=347 amount=-2 +kerning first=82 second=231 amount=-3 +kerning first=269 second=371 amount=-2 +kerning first=82 second=233 amount=-3 +kerning first=8216 second=353 amount=-2 +kerning first=284 second=250 amount=-1 +kerning first=305 second=371 amount=-1 +kerning first=112 second=347 amount=-2 +kerning first=248 second=250 amount=-1 +kerning first=1030 second=1099 amount=-1 +kerning first=76 second=347 amount=-1 +kerning first=323 second=378 amount=-1 +kerning first=302 second=257 amount=-2 +kerning first=254 second=103 amount=-2 +kerning first=287 second=378 amount=-3 +kerning first=338 second=257 amount=-1 +kerning first=259 second=233 amount=-1 +kerning first=230 second=271 amount=-1 +kerning first=379 second=354 amount=-2 +kerning first=107 second=250 amount=-1 +kerning first=230 second=257 amount=-2 +kerning first=253 second=333 amount=-3 +kerning first=367 second=233 amount=-1 +kerning first=71 second=250 amount=-1 +kerning first=100 second=226 amount=-1 +kerning first=266 second=257 amount=-2 +kerning first=217 second=333 amount=-2 +kerning first=1102 second=1085 amount=-1 +kerning first=1048 second=1092 amount=-1 +kerning first=336 second=302 amount=-2 +kerning first=361 second=45 amount=-2 +kerning first=77 second=103 amount=-3 +kerning first=187 second=219 amount=-4 +kerning first=1084 second=1092 amount=-1 +kerning first=356 second=264 amount=-3 +kerning first=205 second=226 amount=-2 +kerning first=325 second=45 amount=-4 +kerning first=1030 second=1085 amount=-1 +kerning first=251 second=378 amount=-2 +kerning first=264 second=302 amount=-3 +kerning first=241 second=226 amount=-1 +kerning first=82 second=219 amount=-3 +kerning first=277 second=226 amount=-2 +kerning first=89 second=257 amount=-5 +kerning first=200 second=110 amount=-1 +kerning first=113 second=363 amount=-2 +kerning first=8216 second=196 amount=-8 +kerning first=212 second=194 amount=-4 +kerning first=79 second=220 amount=-1 +kerning first=70 second=65 amount=-3 +kerning first=236 second=110 amount=-2 +kerning first=1063 second=1114 amount=-1 +kerning first=277 second=240 amount=-1 +kerning first=356 second=212 amount=-3 +kerning first=71 second=194 amount=-3 +kerning first=218 second=363 amount=-1 +kerning first=1059 second=1089 amount=-4 +kerning first=254 second=363 amount=-1 +kerning first=8220 second=221 amount=-1 +kerning first=205 second=240 amount=-2 +kerning first=315 second=310 amount=-2 +kerning first=1114 second=1078 amount=-2 +kerning first=211 second=65 amount=-4 +kerning first=290 second=363 amount=-1 +kerning first=303 second=259 amount=-2 +kerning first=115 second=318 amount=-2 +kerning first=256 second=220 amount=-3 +kerning first=8217 second=225 amount=-6 +kerning first=379 second=284 amount=-1 +kerning first=380 second=110 amount=-2 +kerning first=326 second=363 amount=-1 +kerning first=267 second=259 amount=-2 +kerning first=77 second=117 amount=-2 +kerning first=362 second=363 amount=-1 +kerning first=375 second=259 amount=-3 +kerning first=197 second=214 amount=-3 +kerning first=8250 second=241 amount=-2 +kerning first=339 second=259 amount=-2 +kerning first=256 second=318 amount=-2 +kerning first=354 second=77 amount=-1 +kerning first=264 second=330 amount=-3 +kerning first=250 second=116 amount=-1 +kerning first=90 second=259 amount=-1 +kerning first=328 second=318 amount=-1 +kerning first=282 second=77 amount=-2 +kerning first=370 second=375 amount=-1 +kerning first=66 second=324 amount=-3 +kerning first=268 second=369 amount=-2 +kerning first=231 second=259 amount=-2 +kerning first=232 second=369 amount=-2 +kerning first=356 second=194 amount=-6 +kerning first=100 second=240 amount=-1 +kerning first=1025 second=1030 amount=-1 +kerning first=336 second=330 amount=-2 +kerning first=284 second=194 amount=-3 +kerning first=100 second=254 amount=-1 +kerning first=315 second=324 amount=-1 +kerning first=258 second=374 amount=-6 +kerning first=8250 second=255 amount=-3 +kerning first=85 second=375 amount=-1 +kerning first=79 second=304 amount=-2 +kerning first=279 second=324 amount=-2 +kerning first=222 second=374 amount=-2 +kerning first=8220 second=235 amount=-3 +kerning first=303 second=273 amount=-3 +kerning first=365 second=335 amount=-1 +kerning first=241 second=254 amount=-2 +kerning first=351 second=324 amount=-2 +kerning first=209 second=279 amount=-2 +kerning first=1059 second=1103 amount=-5 +kerning first=381 second=253 amount=-3 +kerning first=298 second=375 amount=-2 +kerning first=87 second=330 amount=-1 +kerning first=231 second=273 amount=-1 +kerning first=81 second=374 amount=-2 +kerning first=218 second=377 amount=-1 +kerning first=262 second=375 amount=-1 +kerning first=102 second=324 amount=-1 +kerning first=336 second=344 amount=-2 +kerning first=304 second=369 amount=-2 +kerning first=226 second=375 amount=-3 +kerning first=243 second=324 amount=-1 +kerning first=376 second=369 amount=-2 +kerning first=256 second=234 amount=-1 +kerning first=199 second=284 amount=-3 +kerning first=1061 second=1058 amount=-3 +kerning first=362 second=377 amount=-1 +kerning first=88 second=332 amount=-3 +kerning first=380 second=171 amount=-3 +kerning first=66 second=310 amount=-4 +kerning first=199 second=298 amount=-3 +kerning first=232 second=355 amount=-1 +kerning first=1076 second=1108 amount=-1 +kerning first=209 second=45 amount=-4 +kerning first=262 second=367 amount=-2 +kerning first=193 second=332 amount=-3 +kerning first=196 second=355 amount=-1 +kerning first=1055 second=1074 amount=-1 +kerning first=264 second=344 amount=-3 +kerning first=90 second=287 amount=-3 +kerning first=110 second=250 amount=-1 +kerning first=1027 second=1100 amount=-2 +kerning first=281 second=279 amount=-1 +kerning first=376 second=355 amount=-1 +kerning first=1063 second=1100 amount=-1 +kerning first=1051 second=1077 amount=-1 +kerning first=195 second=287 amount=-3 +kerning first=379 second=298 amount=-1 +kerning first=220 second=234 amount=-2 +kerning first=87 second=344 amount=-1 +kerning first=1087 second=1077 amount=-1 +kerning first=77 second=363 amount=-2 +kerning first=316 second=108 amount=-2 +kerning first=203 second=313 amount=-2 +kerning first=267 second=287 amount=-3 +kerning first=195 second=8217 amount=-5 +kerning first=280 second=108 amount=-1 +kerning first=220 second=290 amount=-1 +kerning first=362 second=335 amount=-2 +kerning first=231 second=287 amount=-3 +kerning first=231 second=8217 amount=-2 +kerning first=256 second=290 amount=-3 +kerning first=339 second=287 amount=-3 +kerning first=267 second=8217 amount=-2 +kerning first=352 second=108 amount=-2 +kerning first=303 second=287 amount=-1 +kerning first=351 second=380 amount=-2 +kerning first=282 second=105 amount=-1 +kerning first=66 second=338 amount=-3 +kerning first=67 second=197 amount=-3 +kerning first=218 second=335 amount=-2 +kerning first=375 second=287 amount=-3 +kerning first=314 second=242 amount=-1 +kerning first=210 second=105 amount=-1 +kerning first=246 second=105 amount=-1 +kerning first=83 second=315 amount=-3 +kerning first=208 second=197 amount=-4 +kerning first=207 second=380 amount=-1 +kerning first=105 second=105 amount=-1 +kerning first=1055 second=1060 amount=-1 +kerning first=220 second=248 amount=-2 +kerning first=1059 second=1117 amount=-4 +kerning first=350 second=242 amount=-1 +kerning first=243 second=380 amount=-2 +kerning first=280 second=197 amount=-2 +kerning first=279 second=380 amount=-2 +kerning first=201 second=225 amount=-1 +kerning first=77 second=335 amount=-2 +kerning first=339 second=231 amount=-1 +kerning first=377 second=228 amount=-1 +kerning first=315 second=380 amount=-3 +kerning first=69 second=105 amount=-1 +kerning first=113 second=335 amount=-1 +kerning first=1040 second=1038 amount=-4 +kerning first=375 second=231 amount=-3 +kerning first=352 second=197 amount=-4 +kerning first=199 second=270 amount=-3 +kerning first=339 second=8217 amount=-2 +kerning first=305 second=228 amount=-1 +kerning first=103 second=108 amount=-3 +kerning first=66 second=380 amount=-4 +kerning first=332 second=315 amount=-2 +kerning first=219 second=119 amount=-2 +kerning first=269 second=228 amount=-2 +kerning first=244 second=108 amount=-2 +kerning first=102 second=380 amount=-1 +kerning first=80 second=74 amount=-3 +kerning first=255 second=119 amount=-1 +kerning first=233 second=228 amount=-2 +kerning first=291 second=119 amount=-1 +kerning first=365 second=46 amount=-2 +kerning first=244 second=122 amount=-2 +kerning first=90 second=231 amount=-1 +kerning first=109 second=102 amount=-1 +kerning first=66 second=352 amount=-4 +kerning first=221 second=74 amount=-4 +kerning first=208 second=122 amount=-2 +kerning first=363 second=119 amount=-3 +kerning first=1006 second=1007 amount=-2 +kerning first=366 second=346 amount=-3 +kerning first=103 second=122 amount=-3 +kerning first=221 second=46 amount=-5 +kerning first=210 second=77 amount=-2 +kerning first=267 second=231 amount=-1 +kerning first=104 second=307 amount=-1 +kerning first=90 second=204 amount=-1 +kerning first=352 second=122 amount=-2 +kerning first=303 second=231 amount=-3 +kerning first=199 second=256 amount=-3 +kerning first=345 second=225 amount=-1 +kerning first=316 second=122 amount=-1 +kerning first=195 second=231 amount=-1 +kerning first=69 second=77 amount=-2 +kerning first=315 second=352 amount=-1 +kerning first=1101 second=1097 amount=-1 +kerning first=381 second=225 amount=-1 +kerning first=280 second=122 amount=-2 +kerning first=84 second=344 amount=-1 +kerning first=75 second=350 amount=-2 +kerning first=267 second=245 amount=-1 +kerning first=80 second=46 amount=-4 +kerning first=379 second=256 amount=-1 +kerning first=231 second=245 amount=-1 +kerning first=315 second=366 amount=-3 +kerning first=195 second=245 amount=-1 +kerning first=45 second=331 amount=-2 +kerning first=205 second=367 amount=-2 +kerning first=266 second=45 amount=-4 +kerning first=8250 second=230 amount=-1 +kerning first=201 second=211 amount=-1 +kerning first=250 second=102 amount=-1 +kerning first=381 second=211 amount=-1 +kerning first=67 second=122 amount=-2 +kerning first=286 second=102 amount=-2 +kerning first=375 second=245 amount=-3 +kerning first=1063 second=1086 amount=-1 +kerning first=8250 second=227 amount=-1 +kerning first=8220 second=193 amount=-8 +kerning first=303 second=245 amount=-3 +kerning first=199 second=248 amount=-2 +kerning first=221 second=112 amount=-2 +kerning first=283 second=107 amount=-2 +kerning first=76 second=8221 amount=-4 +kerning first=193 second=171 amount=-4 +kerning first=258 second=86 amount=-6 +kerning first=116 second=112 amount=-1 +kerning first=229 second=171 amount=-2 +kerning first=222 second=86 amount=-2 +kerning first=8220 second=368 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=112 second=8221 amount=-2 +kerning first=347 second=105 amount=-2 +kerning first=1056 second=1038 amount=-1 +kerning first=88 second=171 amount=-4 +kerning first=361 second=8221 amount=-3 +kerning first=275 second=105 amount=-2 +kerning first=1090 second=1072 amount=-1 +kerning first=316 second=235 amount=-1 +kerning first=75 second=352 amount=-2 +kerning first=8222 second=87 amount=-6 +kerning first=304 second=67 amount=-2 +kerning first=317 second=209 amount=-2 +kerning first=352 second=235 amount=-1 +kerning first=268 second=67 amount=-3 +kerning first=203 second=105 amount=-1 +kerning first=203 second=81 amount=-1 +kerning first=267 second=45 amount=-2 +kerning first=226 second=227 amount=-1 +kerning first=229 second=100 amount=-1 +kerning first=282 second=85 amount=-2 +kerning first=196 second=67 amount=-3 +kerning first=98 second=105 amount=-1 +kerning first=1098 second=1098 amount=-1 +kerning first=1052 second=1117 amount=-1 +kerning first=214 second=296 amount=-2 +kerning first=1062 second=1098 amount=-1 +kerning first=369 second=375 amount=-3 +kerning first=111 second=251 amount=-1 +kerning first=81 second=86 amount=-2 +kerning first=370 second=228 amount=-3 +kerning first=75 second=251 amount=-3 +kerning first=45 second=86 amount=-4 +kerning first=259 second=275 amount=-1 +kerning first=99 second=353 amount=-2 +kerning first=1100 second=1097 amount=-1 +kerning first=369 second=122 amount=-2 +kerning first=1036 second=1079 amount=-1 +kerning first=368 second=249 amount=-1 +kerning first=88 second=100 amount=-2 +kerning first=353 second=46 amount=-2 +kerning first=1072 second=1079 amount=-1 +kerning first=204 second=353 amount=-2 +kerning first=288 second=251 amount=-1 +kerning first=193 second=100 amount=-1 +kerning first=86 second=206 amount=-1 +kerning first=220 second=350 amount=-3 +kerning first=1080 second=1105 amount=-1 +kerning first=203 second=379 amount=-1 +kerning first=118 second=275 amount=-3 +kerning first=370 second=248 amount=-2 +kerning first=262 second=204 amount=-3 +kerning first=73 second=334 amount=-2 +kerning first=45 second=311 amount=-1 +kerning first=376 second=67 amount=-3 +kerning first=1044 second=1105 amount=-1 +kerning first=334 second=204 amount=-2 +kerning first=354 second=365 amount=-2 +kerning first=378 second=230 amount=-1 +kerning first=111 second=223 amount=-1 +kerning first=67 second=211 amount=-3 +kerning first=218 second=237 amount=-2 +kerning first=83 second=249 amount=-1 +kerning first=8217 second=212 amount=-2 +kerning first=68 second=304 amount=-2 +kerning first=313 second=268 amount=-1 +kerning first=350 second=277 amount=-1 +kerning first=234 second=230 amount=-2 +kerning first=224 second=249 amount=-1 +kerning first=204 second=83 amount=-2 +kerning first=187 second=307 amount=-1 +kerning first=260 second=249 amount=-3 +kerning first=280 second=211 amount=-1 +kerning first=119 second=249 amount=-1 +kerning first=205 second=268 amount=-2 +kerning first=367 second=275 amount=-1 +kerning first=198 second=230 amount=-1 +kerning first=1025 second=1055 amount=-1 +kerning first=350 second=256 amount=-4 +kerning first=288 second=289 amount=-3 +kerning first=86 second=244 amount=-3 +kerning first=381 second=187 amount=-1 +kerning first=199 second=106 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=122 second=244 amount=-1 +kerning first=203 second=109 amount=-1 +kerning first=352 second=374 amount=-3 +kerning first=211 second=192 amount=-4 +kerning first=278 second=284 amount=-1 +kerning first=45 second=114 amount=-2 +kerning first=227 second=244 amount=-1 +kerning first=1105 second=1084 amount=-1 +kerning first=80 second=344 amount=-1 +kerning first=263 second=244 amount=-1 +kerning first=317 second=237 amount=-2 +kerning first=206 second=284 amount=-2 +kerning first=88 second=199 amount=-3 +kerning first=370 second=232 amount=-2 +kerning first=283 second=339 amount=-1 +kerning first=70 second=192 amount=-3 +kerning first=281 second=237 amount=-2 +kerning first=8250 second=311 amount=-1 +kerning first=245 second=237 amount=-1 +kerning first=193 second=199 amount=-3 +kerning first=371 second=244 amount=-3 +kerning first=115 second=114 amount=-1 +kerning first=69 second=89 amount=-1 +kerning first=249 second=351 amount=-2 +kerning first=98 second=109 amount=-1 +kerning first=262 second=232 amount=-2 +kerning first=116 second=116 amount=-1 +kerning first=226 second=232 amount=-1 +kerning first=8222 second=361 amount=-1 +kerning first=8217 second=264 amount=-2 +kerning first=368 second=277 amount=-2 +kerning first=104 second=237 amount=-1 +kerning first=221 second=116 amount=-1 +kerning first=203 second=365 amount=-2 +kerning first=68 second=237 amount=-1 +kerning first=350 second=279 amount=-1 +kerning first=298 second=232 amount=-2 +kerning first=111 second=289 amount=-2 +kerning first=198 second=282 amount=-2 +kerning first=193 second=346 amount=-3 +kerning first=260 second=277 amount=-1 +kerning first=97 second=305 amount=-1 +kerning first=219 second=194 amount=-4 +kerning first=216 second=289 amount=-1 +kerning first=317 second=110 amount=-1 +kerning first=328 second=8217 amount=-4 +kerning first=1047 second=1034 amount=-2 +kerning first=121 second=232 amount=-3 +kerning first=296 second=277 amount=-2 +kerning first=81 second=350 amount=-1 +kerning first=83 second=277 amount=-1 +kerning first=268 second=327 amount=-3 +kerning first=203 second=351 amount=-1 +kerning first=198 second=202 amount=-2 +kerning first=311 second=351 amount=-2 +kerning first=45 second=350 amount=-3 +kerning first=378 second=254 amount=-1 +kerning first=379 second=278 amount=-1 +kerning first=119 second=277 amount=-3 +kerning first=275 second=351 amount=-2 +kerning first=8217 second=117 amount=-1 +kerning first=258 second=350 amount=-3 +kerning first=376 second=327 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=1098 second=1102 amount=-1 +kerning first=355 second=367 amount=-1 +kerning first=99 second=121 amount=-2 +kerning first=1044 second=1095 amount=-3 +kerning first=198 second=254 amount=-1 +kerning first=119 second=305 amount=-2 +kerning first=222 second=350 amount=-1 +kerning first=283 second=367 amount=-2 +kerning first=234 second=254 amount=-2 +kerning first=70 second=233 amount=-1 +kerning first=68 second=209 amount=-2 +kerning first=224 second=305 amount=-1 +kerning first=113 second=117 amount=-2 +kerning first=216 second=261 amount=-1 +kerning first=65 second=284 amount=-3 +kerning first=230 second=269 amount=-1 +kerning first=330 second=350 amount=-2 +kerning first=254 second=117 amount=-1 +kerning first=252 second=261 amount=-1 +kerning first=70 second=367 amount=-1 +kerning first=1051 second=1119 amount=-1 +kerning first=327 second=286 amount=-2 +kerning first=296 second=305 amount=-1 +kerning first=366 second=350 amount=-3 +kerning first=350 second=76 amount=-3 +kerning first=218 second=117 amount=-1 +kerning first=288 second=261 amount=-1 +kerning first=106 second=367 amount=-1 +kerning first=260 second=305 amount=-1 +kerning first=199 second=260 amount=-3 +kerning first=326 second=117 amount=-1 +kerning first=368 second=305 amount=-2 +kerning first=278 second=76 amount=-2 +kerning first=290 second=117 amount=-1 +kerning first=332 second=305 amount=-1 +kerning first=347 second=351 amount=-3 +kerning first=75 second=261 amount=-1 +kerning first=1052 second=1089 amount=-1 +kerning first=221 second=344 amount=-1 +kerning first=193 second=374 amount=-6 +kerning first=362 second=117 amount=-1 +kerning first=111 second=261 amount=-1 +kerning first=8216 second=115 amount=-2 +kerning first=112 second=291 amount=-2 +kerning first=1091 second=1101 amount=-1 +kerning first=274 second=311 amount=-1 +kerning first=84 second=317 amount=-1 +kerning first=286 second=362 amount=-1 +kerning first=76 second=291 amount=-3 +kerning first=198 second=286 amount=-1 +kerning first=105 second=337 amount=-1 +kerning first=8217 second=268 amount=-2 +kerning first=376 second=331 amount=-3 +kerning first=202 second=311 amount=-1 +kerning first=118 second=271 amount=-3 +kerning first=379 second=260 amount=-1 +kerning first=104 second=241 amount=-1 +kerning first=194 second=240 amount=-1 +kerning first=354 second=337 amount=-3 +kerning first=280 second=382 amount=-2 +kerning first=365 second=316 amount=-2 +kerning first=316 second=382 amount=-1 +kerning first=272 second=356 amount=-2 +kerning first=352 second=382 amount=-2 +kerning first=214 second=362 amount=-1 +kerning first=268 second=331 amount=-1 +kerning first=69 second=361 amount=-2 +kerning first=310 second=100 amount=-2 +kerning first=65 second=252 amount=-3 +kerning first=253 second=337 amount=-3 +kerning first=1077 second=1082 amount=-1 +kerning first=101 second=252 amount=-2 +kerning first=105 second=361 amount=-1 +kerning first=74 second=221 amount=-1 +kerning first=246 second=361 amount=-1 +kerning first=120 second=45 amount=-3 +kerning first=321 second=266 amount=-1 +kerning first=8218 second=121 amount=-1 +kerning first=1069 second=1056 amount=-1 +kerning first=382 second=311 amount=-2 +kerning first=1051 second=1087 amount=-1 +kerning first=282 second=361 amount=-2 +kerning first=116 second=316 amount=-1 +kerning first=70 second=103 amount=-3 +kerning first=350 second=252 amount=-1 +kerning first=310 second=227 amount=-1 +kerning first=332 second=45 amount=-1 +kerning first=1058 second=1101 amount=-1 +kerning first=374 second=201 amount=-1 +kerning first=208 second=207 amount=-2 +kerning first=274 second=227 amount=-1 +kerning first=66 second=78 amount=-4 +kerning first=336 second=70 amount=-2 +kerning first=254 second=226 amount=-1 +kerning first=338 second=201 amount=-2 +kerning first=280 second=207 amount=-2 +kerning first=202 second=227 amount=-1 +kerning first=328 second=44 amount=-1 +kerning first=206 second=252 amount=-1 +kerning first=1113 second=1078 amount=-2 +kerning first=224 second=121 amount=-3 +kerning first=284 second=8249 amount=-3 +kerning first=242 second=252 amount=-1 +kerning first=363 second=246 amount=-1 +kerning first=278 second=252 amount=-2 +kerning first=67 second=207 amount=-3 +kerning first=382 second=227 amount=-1 +kerning first=307 second=353 amount=-2 +kerning first=364 second=44 amount=-5 +kerning first=314 second=252 amount=-2 +kerning first=346 second=227 amount=-2 +kerning first=1043 second=1095 amount=-3 +kerning first=291 second=246 amount=-2 +kerning first=8222 second=378 amount=-3 +kerning first=231 second=109 amount=-2 +kerning first=89 second=201 amount=-1 +kerning first=200 second=356 amount=-1 +kerning first=1099 second=1104 amount=-1 +kerning first=80 second=84 amount=-1 +kerning first=103 second=382 amount=-3 +kerning first=255 second=246 amount=-3 +kerning first=198 second=226 amount=-1 +kerning first=355 second=103 amount=-2 +kerning first=65 second=336 amount=-3 +kerning first=222 second=90 amount=-2 +kerning first=1063 second=1104 amount=-1 +kerning first=1045 second=1107 amount=-1 +kerning first=219 second=246 amount=-2 +kerning first=234 second=226 amount=-2 +kerning first=80 second=267 amount=-1 +kerning first=1027 second=1104 amount=-3 +kerning first=208 second=382 amount=-2 +kerning first=283 second=103 amount=-3 +kerning first=325 second=291 amount=-3 +kerning first=244 second=382 amount=-2 +kerning first=224 second=45 amount=-2 +kerning first=206 second=336 amount=-2 +kerning first=289 second=291 amount=-2 +kerning first=78 second=246 amount=-2 +kerning first=1047 second=1062 amount=-2 +kerning first=211 second=103 amount=-1 +kerning first=352 second=207 amount=-3 +kerning first=97 second=227 amount=-1 +kerning first=253 second=291 amount=-3 +kerning first=347 second=109 amount=-2 +kerning first=378 second=226 amount=-1 +kerning first=278 second=336 amount=-1 +kerning first=217 second=291 amount=-4 +kerning first=106 second=103 amount=-3 +kerning first=67 second=382 amount=-2 +kerning first=1074 second=1116 amount=-1 +kerning first=259 second=243 amount=-1 +kerning first=102 second=314 amount=3 +kerning first=317 second=213 amount=-1 +kerning first=74 second=193 amount=-5 +kerning first=121 second=115 amount=-3 +kerning first=81 second=90 amount=-2 +kerning first=253 second=263 amount=-3 +kerning first=45 second=90 amount=-4 +kerning first=82 second=243 amount=-3 +kerning first=289 second=263 amount=-2 +kerning first=279 second=314 amount=-3 +kerning first=118 second=243 amount=-3 +kerning first=325 second=263 amount=-2 +kerning first=367 second=100 amount=-1 +kerning first=243 second=314 amount=-2 +kerning first=85 second=115 amount=-2 +kerning first=88 second=370 amount=-2 +kerning first=76 second=117 amount=-2 +kerning first=87 second=70 amount=-1 +kerning first=351 second=314 amount=-2 +kerning first=298 second=115 amount=-2 +kerning first=200 second=120 amount=-1 +kerning first=315 second=314 amount=-2 +kerning first=236 second=120 amount=-1 +kerning first=282 second=365 amount=-2 +kerning first=376 second=303 amount=-2 +kerning first=226 second=115 amount=-1 +kerning first=272 second=120 amount=-1 +kerning first=246 second=365 amount=-1 +kerning first=268 second=303 amount=-1 +kerning first=76 second=8249 amount=-1 +kerning first=209 second=269 amount=-2 +kerning first=262 second=115 amount=-2 +kerning first=217 second=263 amount=-2 +kerning first=315 second=78 amount=-2 +kerning first=304 second=303 amount=-1 +kerning first=264 second=70 amount=-3 +kerning first=198 second=198 amount=-2 +kerning first=367 second=243 amount=-1 +kerning first=210 second=45 amount=-1 +kerning first=8250 second=122 amount=-5 +kerning first=281 second=269 amount=-1 +kerning first=369 second=345 amount=-1 +kerning first=105 second=365 amount=-1 +kerning first=115 second=224 amount=-1 +kerning first=209 second=213 amount=-2 +kerning first=370 second=115 amount=-2 +kerning first=69 second=365 amount=-2 +kerning first=338 second=338 amount=-1 +kerning first=8217 second=240 amount=-3 +kerning first=220 second=224 amount=-3 +kerning first=330 second=118 amount=-2 +kerning first=97 second=255 amount=-3 +kerning first=192 second=98 amount=-2 +kerning first=339 second=101 amount=-1 +kerning first=1119 second=1086 amount=-1 +kerning first=328 second=224 amount=-1 +kerning first=8250 second=307 amount=-1 +kerning first=264 second=98 amount=-1 +kerning first=361 second=8249 amount=-2 +kerning first=211 second=75 amount=-2 +kerning first=366 second=118 amount=-2 +kerning first=228 second=98 amount=-1 +kerning first=8220 second=227 amount=-3 +kerning first=278 second=280 amount=-2 +kerning first=364 second=224 amount=-3 +kerning first=103 second=235 amount=-2 +kerning first=236 second=328 amount=-2 +kerning first=289 second=8249 amount=-3 +kerning first=252 second=244 amount=-1 +kerning first=196 second=303 amount=-1 +kerning first=117 second=118 amount=-3 +kerning first=200 second=328 amount=-1 +kerning first=325 second=8249 amount=-4 +kerning first=1090 second=1076 amount=-2 +kerning first=350 second=280 amount=-3 +kerning first=380 second=120 amount=-1 +kerning first=232 second=303 amount=-2 +kerning first=258 second=118 amount=-3 +kerning first=199 second=232 amount=-2 +kerning first=1054 second=1076 amount=-1 +kerning first=212 second=65 amount=-4 +kerning first=253 second=8249 amount=-4 +kerning first=197 second=101 amount=-1 +kerning first=1088 second=1093 amount=-1 +kerning first=83 second=73 amount=-3 +kerning first=380 second=328 amount=-2 +kerning first=233 second=101 amount=-1 +kerning first=353 second=241 amount=-2 +kerning first=1092 second=1118 amount=-1 +kerning first=269 second=101 amount=-1 +kerning first=8216 second=83 amount=-1 +kerning first=193 second=370 amount=-3 +kerning first=314 second=250 amount=-2 +kerning first=196 second=84 amount=-6 +kerning first=45 second=118 amount=-3 +kerning first=1058 second=1073 amount=-1 +kerning first=97 second=283 amount=-1 +kerning first=311 second=226 amount=-2 +kerning first=245 second=241 amount=-1 +kerning first=377 second=101 amount=-1 +kerning first=382 second=283 amount=-1 +kerning first=82 second=249 amount=-2 +kerning first=67 second=324 amount=-1 +kerning first=346 second=283 amount=-1 +kerning first=317 second=241 amount=-1 +kerning first=310 second=283 amount=-2 +kerning first=70 second=196 amount=-3 +kerning first=281 second=241 amount=-2 +kerning first=1059 second=1082 amount=-4 +kerning first=8250 second=223 amount=-2 +kerning first=339 second=241 amount=-2 +kerning first=213 second=8220 amount=-2 +kerning first=45 second=193 amount=-4 +kerning first=225 second=335 amount=-1 +kerning first=344 second=338 amount=-3 +kerning first=303 second=241 amount=-2 +kerning first=261 second=335 amount=-1 +kerning first=67 second=118 amount=-1 +kerning first=287 second=108 amount=-3 +kerning first=86 second=290 amount=-3 +kerning first=108 second=8220 amount=-3 +kerning first=8218 second=117 amount=-1 +kerning first=251 second=108 amount=-2 +kerning first=375 second=241 amount=-2 +kerning first=113 second=345 amount=-1 +kerning first=290 second=85 amount=-1 +kerning first=214 second=380 amount=-2 +kerning first=222 second=193 amount=-4 +kerning first=200 second=338 amount=-1 +kerning first=218 second=345 amount=-1 +kerning first=81 second=193 amount=-4 +kerning first=84 second=335 amount=-3 +kerning first=286 second=380 amount=-1 +kerning first=365 second=355 amount=-1 +kerning first=267 second=241 amount=-2 +kerning first=254 second=345 amount=-1 +kerning first=120 second=335 amount=-2 +kerning first=364 second=286 amount=-1 +kerning first=1101 second=1087 amount=-1 +kerning first=256 second=286 amount=-3 +kerning first=1069 second=1038 amount=-3 +kerning first=366 second=193 amount=-4 +kerning first=73 second=380 amount=-1 +kerning first=362 second=345 amount=-1 +kerning first=326 second=331 amount=-1 +kerning first=109 second=380 amount=-1 +kerning first=113 second=361 amount=-2 +kerning first=90 second=241 amount=-1 +kerning first=69 second=304 amount=-2 +kerning first=362 second=331 amount=-2 +kerning first=249 second=248 amount=-1 +kerning first=220 second=286 amount=-1 +kerning first=1058 second=1083 amount=-2 +kerning first=1073 second=1113 amount=-2 +kerning first=254 second=331 amount=-1 +kerning first=108 second=248 amount=-1 +kerning first=305 second=115 amount=-1 +kerning first=8216 second=97 amount=-3 +kerning first=272 second=78 amount=-2 +kerning first=76 second=323 amount=-2 +kerning first=110 second=108 amount=-1 +kerning first=346 second=231 amount=-1 +kerning first=233 second=115 amount=-2 +kerning first=218 second=331 amount=-2 +kerning first=72 second=248 amount=-2 +kerning first=382 second=231 amount=-1 +kerning first=269 second=115 amount=-2 +kerning first=74 second=122 amount=-1 +kerning first=267 second=255 amount=-2 +kerning first=272 second=352 amount=-1 +kerning first=231 second=255 amount=-2 +kerning first=113 second=331 amount=-2 +kerning first=382 second=245 amount=-1 +kerning first=195 second=255 amount=-3 +kerning first=344 second=352 amount=-3 +kerning first=97 second=307 amount=-1 +kerning first=115 second=252 amount=-1 +kerning first=310 second=245 amount=-2 +kerning first=332 second=73 amount=-2 +kerning first=251 second=122 amount=-2 +kerning first=90 second=255 amount=-3 +kerning first=264 second=298 amount=-3 +kerning first=97 second=231 amount=-1 +kerning first=76 second=77 amount=-2 +kerning first=362 second=71 amount=-1 +kerning first=87 second=278 amount=-1 +kerning first=110 second=122 amount=-1 +kerning first=222 second=207 amount=-2 +kerning first=97 second=245 amount=-1 +kerning first=243 second=328 amount=-1 +kerning first=364 second=252 amount=-1 +kerning first=89 second=233 amount=-3 +kerning first=98 second=8220 amount=-2 +kerning first=264 second=278 amount=-3 +kerning first=356 second=192 amount=-6 +kerning first=1058 second=1097 amount=-2 +kerning first=194 second=233 amount=-1 +kerning first=336 second=278 amount=-2 +kerning first=102 second=328 amount=-1 +kerning first=335 second=316 amount=-2 +kerning first=45 second=207 amount=-5 +kerning first=302 second=233 amount=-2 +kerning first=220 second=252 amount=-1 +kerning first=1025 second=1040 amount=-2 +kerning first=81 second=207 amount=-2 +kerning first=369 second=335 amount=-1 +kerning first=351 second=328 amount=-2 +kerning first=256 second=252 amount=-3 +kerning first=374 second=233 amount=-3 +kerning first=200 second=352 amount=-2 +kerning first=315 second=328 amount=-1 +kerning first=1065 second=1073 amount=-1 +kerning first=279 second=328 amount=-2 +kerning first=328 second=252 amount=-1 +kerning first=66 second=110 amount=-3 +kerning first=102 second=110 amount=-1 +kerning first=296 second=333 amount=-2 +kerning first=250 second=106 amount=-2 +kerning first=326 second=318 amount=-1 +kerning first=240 second=46 amount=-3 +kerning first=286 second=106 amount=-1 +kerning first=282 second=87 amount=-1 +kerning first=199 second=288 amount=-3 +kerning first=291 second=259 amount=-3 +kerning first=368 second=333 amount=-2 +kerning first=243 second=110 amount=-1 +kerning first=330 second=378 amount=-1 +kerning first=210 second=87 amount=-2 +kerning first=279 second=110 amount=-2 +kerning first=119 second=333 amount=-3 +kerning first=69 second=87 amount=-1 +kerning first=315 second=110 amount=-1 +kerning first=260 second=333 amount=-1 +kerning first=107 second=118 amount=-1 +kerning first=351 second=110 amount=-2 +kerning first=366 second=378 amount=-3 +kerning first=224 second=333 amount=-1 +kerning first=71 second=198 amount=-3 +kerning first=217 second=281 amount=-2 +kerning first=376 second=99 amount=-3 +kerning first=218 second=65 amount=-4 +kerning first=8220 second=225 amount=-3 +kerning first=253 second=281 amount=-3 +kerning first=1030 second=1081 amount=-1 +kerning first=382 second=307 amount=-1 +kerning first=1057 second=1033 amount=-1 +kerning first=1059 second=1099 amount=-4 +kerning first=8216 second=192 amount=-8 +kerning first=105 second=347 amount=-2 +kerning first=289 second=281 amount=-2 +kerning first=290 second=65 amount=-3 +kerning first=212 second=198 amount=-4 +kerning first=381 second=243 amount=-1 +kerning first=321 second=262 amount=-1 +kerning first=69 second=347 amount=-1 +kerning first=325 second=281 amount=-2 +kerning first=242 second=326 amount=-1 +kerning first=362 second=65 amount=-4 +kerning first=197 second=210 amount=-3 +kerning first=278 second=326 amount=-1 +kerning first=379 second=288 amount=-1 +kerning first=314 second=326 amount=-1 +kerning first=8250 second=237 amount=-1 +kerning first=350 second=326 amount=-1 +kerning first=230 second=249 amount=-2 +kerning first=105 second=351 amount=-2 +kerning first=214 second=120 amount=-1 +kerning first=250 second=120 amount=-2 +kerning first=199 second=274 amount=-3 +kerning first=282 second=261 amount=-1 +kerning first=87 second=80 amount=-1 +kerning first=291 second=291 amount=-2 +kerning first=315 second=68 amount=-2 +kerning first=282 second=73 amount=-2 +kerning first=201 second=229 amount=-1 +kerning first=232 second=99 amount=-1 +kerning first=284 second=198 amount=-3 +kerning first=379 second=274 amount=-1 +kerning first=220 second=346 amount=-3 +kerning first=84 second=377 amount=-3 +kerning first=109 second=120 amount=-1 +kerning first=354 second=73 amount=-1 +kerning first=84 second=255 amount=-3 +kerning first=304 second=99 amount=-2 +kerning first=356 second=198 amount=-6 +kerning first=268 second=99 amount=-2 +kerning first=116 second=365 amount=-1 +kerning first=287 second=273 amount=-2 +kerning first=289 second=267 amount=-2 +kerning first=316 second=118 amount=-3 +kerning first=232 second=113 amount=-1 +kerning first=325 second=267 amount=-2 +kerning first=336 second=80 amount=-2 +kerning first=219 second=235 amount=-2 +kerning first=280 second=118 amount=-1 +kerning first=80 second=263 amount=-1 +kerning first=66 second=68 amount=-4 +kerning first=196 second=113 amount=-1 +kerning first=210 second=73 amount=-2 +kerning first=217 second=267 amount=-2 +kerning first=1058 second=1077 amount=-1 +kerning first=253 second=267 amount=-3 +kerning first=352 second=118 amount=-3 +kerning first=1094 second=1077 amount=-1 +kerning first=376 second=113 amount=-3 +kerning first=214 second=106 amount=-1 +kerning first=103 second=118 amount=-1 +kerning first=321 second=8220 amount=-4 +kerning first=252 second=333 amount=-1 +kerning first=287 second=107 amount=-2 +kerning first=244 second=118 amount=-2 +kerning first=304 second=113 amount=-2 +kerning first=109 second=106 amount=-2 +kerning first=69 second=73 amount=-2 +kerning first=200 second=332 amount=-1 +kerning first=264 second=80 amount=-3 +kerning first=377 second=196 amount=-1 +kerning first=266 second=65 amount=-3 +kerning first=97 second=287 amount=-2 +kerning first=216 second=219 amount=-1 +kerning first=256 second=244 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=313 second=264 amount=-1 +kerning first=304 second=74 amount=-1 +kerning first=202 second=287 amount=-3 +kerning first=204 second=111 amount=-2 +kerning first=1073 second=1119 amount=-1 +kerning first=344 second=332 amount=-3 +kerning first=75 second=219 amount=-2 +kerning first=364 second=244 amount=-2 +kerning first=200 second=86 amount=-1 +kerning first=8217 second=83 amount=-3 +kerning first=77 second=339 amount=-2 +kerning first=108 second=242 amount=-1 +kerning first=274 second=287 amount=-3 +kerning first=263 second=234 amount=-1 +kerning first=258 second=199 amount=-3 +kerning first=81 second=364 amount=-1 +kerning first=113 second=339 amount=-1 +kerning first=205 second=264 amount=-2 +kerning first=224 second=8217 amount=-3 +kerning first=45 second=364 amount=-4 +kerning first=8222 second=291 amount=-1 +kerning first=346 second=287 amount=-3 +kerning first=260 second=8217 amount=-5 +kerning first=330 second=199 amount=-2 +kerning first=310 second=287 amount=-2 +kerning first=371 second=234 amount=-3 +kerning first=197 second=121 amount=-3 +kerning first=104 second=289 amount=-2 +kerning first=315 second=334 amount=-1 +kerning first=74 second=374 amount=-1 +kerning first=258 second=364 amount=-3 +kerning first=249 second=242 amount=-1 +kerning first=382 second=287 amount=-2 +kerning first=209 second=289 amount=-3 +kerning first=106 second=333 amount=-1 +kerning first=1105 second=1094 amount=-1 +kerning first=245 second=289 amount=-2 +kerning first=107 second=254 amount=-1 +kerning first=281 second=289 amount=-3 +kerning first=350 second=66 amount=-3 +kerning first=317 second=289 amount=-3 +kerning first=353 second=289 amount=-3 +kerning first=187 second=209 amount=-5 +kerning first=278 second=66 amount=-2 +kerning first=85 second=119 amount=-2 +kerning first=248 second=254 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=220 second=244 amount=-2 +kerning first=333 second=117 amount=-1 +kerning first=8220 second=231 amount=-3 +kerning first=78 second=8249 amount=-4 +kerning first=71 second=330 amount=-1 +kerning first=339 second=261 amount=-2 +kerning first=204 second=97 amount=-2 +kerning first=288 second=205 amount=-1 +kerning first=364 second=230 amount=-3 +kerning first=226 second=119 amount=-3 +kerning first=240 second=97 amount=-1 +kerning first=192 second=354 amount=-6 +kerning first=262 second=119 amount=-1 +kerning first=99 second=97 amount=-2 +kerning first=199 second=76 amount=-3 +kerning first=1058 second=1080 amount=-2 +kerning first=200 second=72 amount=-2 +kerning first=298 second=119 amount=-2 +kerning first=264 second=354 amount=-1 +kerning first=221 second=243 amount=-3 +kerning first=313 second=250 amount=-2 +kerning first=305 second=121 amount=-2 +kerning first=272 second=72 amount=-2 +kerning first=8216 second=103 amount=-4 +kerning first=220 second=230 amount=-3 +kerning first=370 second=119 amount=-2 +kerning first=336 second=354 amount=-2 +kerning first=277 second=250 amount=-2 +kerning first=245 second=8220 amount=-2 +kerning first=269 second=121 amount=-2 +kerning first=281 second=275 amount=-1 +kerning first=79 second=230 amount=-1 +kerning first=1061 second=1054 amount=-4 +kerning first=264 second=74 amount=-2 +kerning first=233 second=121 amount=-2 +kerning first=116 second=369 amount=-1 +kerning first=115 second=230 amount=-1 +kerning first=1025 second=1054 amount=-1 +kerning first=344 second=86 amount=-3 +kerning first=366 second=199 amount=-1 +kerning first=269 second=107 amount=-2 +kerning first=336 second=74 amount=-2 +kerning first=311 second=100 amount=-3 +kerning first=117 second=378 amount=-2 +kerning first=233 second=107 amount=-2 +kerning first=100 second=250 amount=-1 +kerning first=272 second=86 amount=-2 +kerning first=84 second=117 amount=-2 +kerning first=83 second=333 amount=-1 +kerning first=241 second=250 amount=-1 +kerning first=83 second=8217 amount=-2 +kerning first=222 second=378 amount=-2 +kerning first=356 second=240 amount=-3 +kerning first=205 second=250 amount=-2 +kerning first=8217 second=350 amount=-3 +kerning first=120 second=117 amount=-3 +kerning first=379 second=76 amount=-1 +kerning first=261 second=117 amount=-1 +kerning first=81 second=378 amount=-2 +kerning first=197 second=107 amount=-2 +kerning first=288 second=219 amount=-1 +kerning first=121 second=45 amount=-4 +kerning first=225 second=117 amount=-1 +kerning first=45 second=378 amount=-5 +kerning first=283 second=363 amount=-2 +kerning first=286 second=310 amount=-1 +kerning first=66 second=116 amount=-2 +kerning first=313 second=194 amount=-2 +kerning first=108 second=318 amount=-2 +kerning first=107 second=240 amount=-3 +kerning first=355 second=363 amount=-1 +kerning first=214 second=310 amount=-2 +kerning first=379 second=330 amount=-1 +kerning first=347 second=355 amount=-2 +kerning first=102 second=116 amount=-1 +kerning first=1030 second=1089 amount=-1 +kerning first=249 second=318 amount=-2 +kerning first=298 second=214 amount=-2 +kerning first=8249 second=221 amount=-3 +kerning first=86 second=220 amount=-1 +kerning first=87 second=298 amount=-1 +kerning first=1048 second=1088 amount=-1 +kerning first=321 second=318 amount=-2 +kerning first=370 second=214 amount=-1 +kerning first=296 second=259 amount=-2 +kerning first=218 second=71 amount=-1 +kerning first=85 second=214 amount=-1 +kerning first=351 second=116 amount=-2 +kerning first=305 second=375 amount=-2 +kerning first=323 second=122 amount=-1 +kerning first=98 second=369 amount=-1 +kerning first=368 second=259 amount=-3 +kerning first=269 second=375 amount=-2 +kerning first=283 second=231 amount=-1 +kerning first=287 second=122 amount=-3 +kerning first=332 second=259 amount=-1 +kerning first=233 second=375 amount=-2 +kerning first=77 second=71 amount=-2 +kerning first=369 second=337 amount=-1 +kerning first=119 second=259 amount=-3 +kerning first=243 second=116 amount=-1 +kerning first=80 second=296 amount=-1 +kerning first=83 second=259 amount=-2 +kerning first=199 second=330 amount=-3 +kerning first=224 second=259 amount=-1 +kerning first=1030 second=1075 amount=-1 +kerning first=321 second=304 amount=-2 +kerning first=279 second=116 amount=-1 +kerning first=377 second=375 amount=-3 +kerning first=334 second=228 amount=-1 +kerning first=213 second=304 amount=-2 +kerning first=82 second=251 amount=-2 +kerning first=347 second=369 amount=-1 +kerning first=374 second=253 amount=-3 +kerning first=8217 second=115 amount=-2 +kerning first=298 second=228 amount=-2 +kerning first=379 second=344 amount=-1 +kerning first=311 second=369 amount=-1 +kerning first=221 second=296 amount=-1 +kerning first=262 second=228 amount=-2 +kerning first=75 second=279 amount=-2 +kerning first=187 second=251 amount=-1 +kerning first=226 second=228 amount=-1 +kerning first=71 second=254 amount=-1 +kerning first=250 second=324 amount=-1 +kerning first=1039 second=1089 amount=-1 +kerning first=199 second=344 amount=-3 +kerning first=252 second=351 amount=-2 +kerning first=259 second=251 amount=-1 +kerning first=203 second=369 amount=-2 +kerning first=197 second=375 amount=-3 +kerning first=121 second=228 amount=-3 +kerning first=223 second=251 amount=-1 +kerning first=85 second=228 amount=-3 +kerning first=331 second=251 amount=-1 +kerning first=275 second=369 amount=-2 +kerning first=109 second=324 amount=-1 +kerning first=1043 second=1097 amount=-2 +kerning first=295 second=251 amount=-1 +kerning first=224 second=273 amount=-1 +kerning first=368 second=100 amount=-2 +kerning first=86 second=234 amount=-3 +kerning first=198 second=206 amount=-2 +kerning first=367 second=251 amount=-1 +kerning first=98 second=355 amount=-1 +kerning first=119 second=273 amount=-3 +kerning first=122 second=234 amount=-1 +kerning first=89 second=253 amount=-3 +kerning first=374 second=252 amount=-1 +kerning first=70 second=363 amount=-1 +kerning first=227 second=234 amount=-1 +kerning first=194 second=253 amount=-3 +kerning first=192 second=284 amount=-3 +kerning first=106 second=363 amount=-1 +kerning first=311 second=355 amount=-1 +kerning first=1047 second=1024 amount=-2 +kerning first=230 second=253 amount=-2 +kerning first=211 second=45 amount=-1 +kerning first=275 second=355 amount=-1 +kerning first=266 second=253 amount=-1 +kerning first=252 second=279 amount=-1 +kerning first=87 second=284 amount=-3 +kerning first=70 second=83 amount=-3 +kerning first=302 second=253 amount=-2 +kerning first=8220 second=382 amount=-1 +kerning first=1048 second=1074 amount=-1 +kerning first=242 second=318 amount=-2 +kerning first=45 second=370 amount=-4 +kerning first=296 second=263 amount=-2 +kerning first=98 second=365 amount=-1 +kerning first=75 second=213 amount=-3 +kerning first=211 second=83 amount=-1 +kerning first=376 second=313 amount=-1 +kerning first=80 second=310 amount=-1 +kerning first=314 second=318 amount=-2 +kerning first=198 second=268 amount=-1 +kerning first=268 second=313 amount=-3 +kerning first=368 second=263 amount=-2 +kerning first=81 second=370 amount=-1 +kerning first=90 second=315 amount=-1 +kerning first=83 second=263 amount=-1 +kerning first=356 second=216 amount=-3 +kerning first=222 second=370 amount=-1 +kerning first=8222 second=105 amount=-1 +kerning first=221 second=310 amount=-1 +kerning first=224 second=263 amount=-1 +kerning first=258 second=370 amount=-3 +kerning first=354 second=355 amount=-1 +kerning first=256 second=268 amount=-3 +kerning first=1087 second=1105 amount=-1 +kerning first=203 second=303 amount=-1 +kerning first=283 second=353 amount=-2 +kerning first=75 second=275 amount=-2 +kerning first=278 second=270 amount=-2 +kerning first=98 second=303 amount=-1 +kerning first=355 second=353 amount=-1 +kerning first=1051 second=1105 amount=-1 +kerning first=103 second=225 amount=-3 +kerning first=347 second=365 amount=-1 +kerning first=1062 second=1060 amount=-1 +kerning first=311 second=365 amount=-1 +kerning first=347 second=303 amount=-2 +kerning first=106 second=353 amount=-2 +kerning first=1039 second=1087 amount=-1 +kerning first=212 second=45 amount=-1 +kerning first=275 second=365 amount=-2 +kerning first=203 second=250 amount=-2 +kerning first=198 second=220 amount=-2 +kerning first=316 second=225 amount=-2 +kerning first=1105 second=1098 amount=-1 +kerning first=1025 second=1048 amount=-1 +kerning first=352 second=225 amount=-2 +kerning first=1051 second=1095 amount=-1 +kerning first=290 second=257 amount=-1 +kerning first=365 second=98 amount=-2 +kerning first=1037 second=1105 amount=-1 +kerning first=379 second=280 amount=-1 +kerning first=290 second=259 amount=-1 +kerning first=363 second=228 amount=-1 +kerning first=225 second=8249 amount=-2 +kerning first=362 second=74 amount=-3 +kerning first=350 second=270 amount=-3 +kerning first=327 second=228 amount=-2 +kerning first=116 second=98 amount=-1 +kerning first=8220 second=217 amount=-1 +kerning first=208 second=225 amount=-1 +kerning first=298 second=212 amount=-2 +kerning first=193 second=350 amount=-3 +kerning first=291 second=228 amount=-3 +kerning first=257 second=98 amount=-1 +kerning first=244 second=225 amount=-1 +kerning first=255 second=228 amount=-3 +kerning first=280 second=225 amount=-1 +kerning first=353 second=44 amount=-2 +kerning first=88 second=350 amount=-2 +kerning first=381 second=235 amount=-1 +kerning first=257 second=102 amount=-1 +kerning first=214 second=46 amount=-3 +kerning first=334 second=218 amount=-1 +kerning first=1105 second=1102 amount=-1 +kerning first=99 second=363 amount=-2 +kerning first=250 second=46 amount=-2 +kerning first=114 second=228 amount=-1 +kerning first=289 second=273 amount=-2 +kerning first=187 second=218 amount=-4 +kerning first=286 second=46 amount=-3 +kerning first=262 second=218 amount=-2 +kerning first=78 second=228 amount=-2 +kerning first=253 second=273 amount=-3 +kerning first=365 second=102 amount=-1 +kerning first=204 second=363 amount=-2 +kerning first=90 second=305 amount=-1 +kerning first=240 second=363 amount=-1 +kerning first=65 second=318 amount=-2 +kerning first=1062 second=1108 amount=-1 +kerning first=203 second=252 amount=-2 +kerning first=73 second=46 amount=-1 +kerning first=101 second=318 amount=-3 +kerning first=332 second=325 amount=-2 +kerning first=105 second=355 amount=-1 +kerning first=109 second=46 amount=-1 +kerning first=303 second=305 amount=-2 +kerning first=199 second=280 amount=-3 +kerning first=1057 second=1025 amount=-1 +kerning first=221 second=102 amount=-1 +kerning first=267 second=305 amount=-2 +kerning first=282 second=81 amount=-1 +kerning first=193 second=86 amount=-6 +kerning first=198 second=216 amount=-1 +kerning first=375 second=305 amount=-2 +kerning first=331 second=261 amount=-1 +kerning first=323 second=211 amount=-2 +kerning first=339 second=305 amount=-2 +kerning first=235 second=291 amount=-3 +kerning first=8250 second=287 amount=-3 +kerning first=367 second=261 amount=-1 +kerning first=1045 second=1117 amount=-1 +kerning first=286 second=112 amount=-1 +kerning first=84 second=67 amount=-3 +kerning first=88 second=86 amount=-2 +kerning first=250 second=112 amount=-2 +kerning first=253 second=230 amount=-3 +kerning first=8217 second=198 amount=-6 +kerning first=278 second=260 amount=-2 +kerning first=214 second=112 amount=-1 +kerning first=203 second=381 amount=-1 +kerning first=187 second=261 amount=-1 +kerning first=108 second=232 amount=-1 +kerning first=8222 second=103 amount=-1 +kerning first=350 second=260 amount=-4 +kerning first=223 second=261 amount=-1 +kerning first=192 second=240 amount=-1 +kerning first=78 second=119 amount=-2 +kerning first=259 second=261 amount=-1 +kerning first=1114 second=1076 amount=-2 +kerning first=295 second=261 amount=-1 +kerning first=216 second=209 amount=-2 +kerning first=344 second=171 amount=-4 +kerning first=84 second=327 amount=-1 +kerning first=283 second=121 amount=-2 +kerning first=377 second=204 amount=-1 +kerning first=376 second=105 amount=-2 +kerning first=268 second=105 amount=-1 +kerning first=277 second=254 amount=-2 +kerning first=246 second=331 amount=-1 +kerning first=330 second=100 amount=-2 +kerning first=69 second=81 amount=-1 +kerning first=304 second=105 amount=-1 +kerning first=200 second=171 amount=-2 +kerning first=313 second=254 amount=-2 +kerning first=366 second=100 amount=-2 +kerning first=196 second=105 amount=-1 +kerning first=236 second=171 amount=-3 +kerning first=288 second=209 amount=-1 +kerning first=232 second=105 amount=-2 +kerning first=272 second=171 amount=-1 +kerning first=227 second=230 amount=-1 +kerning first=231 second=249 amount=-2 +kerning first=200 second=346 amount=-2 +kerning first=263 second=230 amount=-2 +kerning first=267 second=249 amount=-2 +kerning first=86 second=282 amount=-1 +kerning first=122 second=230 amount=-1 +kerning first=66 second=334 amount=-3 +kerning first=268 second=379 amount=-2 +kerning first=258 second=100 amount=-1 +kerning first=195 second=249 amount=-3 +kerning first=70 second=353 amount=-2 +kerning first=375 second=249 amount=-1 +kerning first=344 second=346 amount=-3 +kerning first=86 second=230 amount=-5 +kerning first=353 second=223 amount=-1 +kerning first=252 second=275 amount=-1 +kerning first=1065 second=1079 amount=-1 +kerning first=303 second=249 amount=-1 +kerning first=272 second=346 amount=-1 +kerning first=68 second=289 amount=-1 +kerning first=1088 second=1103 amount=-2 +kerning first=207 second=334 amount=-2 +kerning first=376 second=379 amount=-3 +kerning first=1056 second=1072 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=245 second=223 amount=-1 +kerning first=99 second=107 amount=-2 +kerning first=302 second=305 amount=-1 +kerning first=231 second=113 amount=-1 +kerning first=317 second=223 amount=-1 +kerning first=218 second=339 amount=-2 +kerning first=1054 second=1058 amount=-1 +kerning first=281 second=223 amount=-1 +kerning first=193 second=244 amount=-1 +kerning first=371 second=230 amount=-2 +kerning first=321 second=256 amount=-2 +kerning first=90 second=249 amount=-3 +kerning first=1052 second=1054 amount=-1 +kerning first=260 second=252 amount=-3 +kerning first=74 second=211 amount=-2 +kerning first=362 second=339 amount=-2 +kerning first=213 second=256 amount=-4 +kerning first=8217 second=250 amount=-1 +kerning first=211 second=89 amount=-2 +kerning first=76 second=69 amount=-2 +kerning first=289 second=255 amount=-1 +kerning first=251 second=114 amount=-1 +kerning first=72 second=44 amount=-1 +kerning first=350 second=374 amount=-3 +kerning first=192 second=84 amount=-6 +kerning first=376 second=109 amount=-3 +kerning first=362 second=79 amount=-1 +kerning first=374 second=187 amount=-3 +kerning first=74 second=114 amount=-1 +kerning first=268 second=109 amount=-1 +kerning first=382 second=237 amount=-1 +kerning first=109 second=314 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=232 second=109 amount=-2 +kerning first=346 second=237 amount=-3 +kerning first=282 second=8249 amount=-2 +kerning first=1098 second=1116 amount=-1 +kerning first=117 second=104 amount=-2 +kerning first=230 second=187 amount=-2 +kerning first=363 second=232 amount=-1 +kerning first=274 second=237 amount=-1 +kerning first=311 second=99 amount=-3 +kerning first=210 second=8249 amount=-1 +kerning first=45 second=104 amount=-1 +kerning first=286 second=314 amount=-1 +kerning first=275 second=99 amount=-1 +kerning first=280 second=217 amount=-2 +kerning first=1105 second=1119 amount=-1 +kerning first=202 second=237 amount=-1 +kerning first=250 second=314 amount=-2 +kerning first=353 second=227 amount=-1 +kerning first=105 second=8249 amount=-3 +kerning first=255 second=232 amount=-3 +kerning first=8220 second=261 amount=-3 +kerning first=352 second=217 amount=-3 +kerning first=258 second=104 amount=-2 +kerning first=97 second=237 amount=-1 +kerning first=249 second=44 amount=-2 +kerning first=327 second=232 amount=-2 +kerning first=86 second=224 amount=-4 +kerning first=69 second=8249 amount=-2 +kerning first=291 second=232 amount=-2 +kerning first=252 second=269 amount=-1 +kerning first=89 second=187 amount=-3 +kerning first=78 second=232 amount=-2 +kerning first=253 second=277 amount=-3 +kerning first=69 second=351 amount=-1 +kerning first=71 second=203 amount=-1 +kerning first=82 second=257 amount=-2 +kerning first=101 second=326 amount=-2 +kerning first=217 second=277 amount=-2 +kerning first=122 second=224 amount=-1 +kerning first=1047 second=1076 amount=-2 +kerning first=325 second=277 amount=-2 +kerning first=263 second=224 amount=-2 +kerning first=1043 second=1051 amount=-5 +kerning first=289 second=277 amount=-2 +kerning first=221 second=302 amount=-1 +kerning first=227 second=224 amount=-1 +kerning first=8250 second=104 amount=-1 +kerning first=354 second=347 amount=-3 +kerning first=335 second=224 amount=-1 +kerning first=99 second=371 amount=-2 +kerning first=313 second=202 amount=-2 +kerning first=354 second=8249 amount=-5 +kerning first=282 second=347 amount=-1 +kerning first=80 second=302 amount=-1 +kerning first=98 second=361 amount=-1 +kerning first=371 second=224 amount=-2 +kerning first=99 second=101 amount=-1 +kerning first=77 second=79 amount=-2 +kerning first=354 second=351 amount=-3 +kerning first=8217 second=194 amount=-6 +kerning first=204 second=101 amount=-2 +kerning first=107 second=333 amount=-3 +kerning first=83 second=267 amount=-1 +kerning first=198 second=212 amount=-1 +kerning first=331 second=257 amount=-1 +kerning first=82 second=261 amount=-2 +kerning first=240 second=367 amount=-1 +kerning first=119 second=267 amount=-3 +kerning first=367 second=257 amount=-1 +kerning first=118 second=261 amount=-3 +kerning first=1113 second=1096 amount=-1 +kerning first=246 second=351 amount=-2 +kerning first=259 second=257 amount=-1 +kerning first=1043 second=1047 amount=-1 +kerning first=368 second=267 amount=-2 +kerning first=295 second=257 amount=-1 +kerning first=204 second=367 amount=-2 +kerning first=260 second=267 amount=-1 +kerning first=228 second=103 amount=-2 +kerning first=187 second=257 amount=-1 +kerning first=287 second=114 amount=-1 +kerning first=290 second=364 amount=-1 +kerning first=350 second=8220 amount=-2 +kerning first=218 second=79 amount=-1 +kerning first=282 second=351 amount=-1 +kerning first=223 second=257 amount=-1 +kerning first=99 second=367 amount=-2 +kerning first=107 second=246 amount=-3 +kerning first=282 second=291 amount=-3 +kerning first=202 second=241 amount=-1 +kerning first=287 second=382 amount=-3 +kerning first=67 second=221 amount=-1 +kerning first=246 second=291 amount=-2 +kerning first=323 second=382 amount=-1 +kerning first=278 second=266 amount=-1 +kerning first=1058 second=1087 amount=-2 +kerning first=375 second=311 amount=-2 +kerning first=252 second=271 amount=-1 +kerning first=210 second=291 amount=-1 +kerning first=274 second=241 amount=-1 +kerning first=339 second=311 amount=-2 +kerning first=221 second=362 amount=-1 +kerning first=206 second=266 amount=-2 +kerning first=1044 second=1057 amount=-1 +kerning first=331 second=8221 amount=-4 +kerning first=280 second=352 amount=-2 +kerning first=303 second=311 amount=-1 +kerning first=105 second=291 amount=-3 +kerning first=217 second=337 amount=-2 +kerning first=110 second=382 amount=-1 +kerning first=122 second=226 amount=-1 +kerning first=65 second=266 amount=-3 +kerning first=83 second=8221 amount=-2 +kerning first=267 second=311 amount=-2 +kerning first=69 second=291 amount=-3 +kerning first=231 second=311 amount=-2 +kerning first=97 second=241 amount=-1 +kerning first=369 second=331 amount=-1 +kerning first=227 second=226 amount=-1 +kerning first=1069 second=1042 amount=-1 +kerning first=195 second=311 amount=-2 +kerning first=251 second=382 amount=-2 +kerning first=84 second=113 amount=-3 +kerning first=224 second=8221 amount=-3 +kerning first=260 second=8221 amount=-5 +kerning first=203 second=361 amount=-2 +kerning first=325 second=337 amount=-2 +kerning first=333 second=331 amount=-1 +kerning first=311 second=361 amount=-1 +kerning first=289 second=337 amount=-2 +kerning first=225 second=331 amount=-1 +kerning first=1048 second=1082 amount=-1 +kerning first=275 second=361 amount=-2 +kerning first=109 second=316 amount=-1 +kerning first=261 second=331 amount=-1 +kerning first=352 second=221 amount=-3 +kerning first=120 second=331 amount=-1 +kerning first=81 second=368 amount=-1 +kerning first=347 second=361 amount=-1 +kerning first=280 second=221 amount=-1 +kerning first=250 second=316 amount=-2 +kerning first=332 second=8221 amount=-2 +kerning first=122 second=45 amount=-3 +kerning first=286 second=316 amount=-1 +kerning first=84 second=331 amount=-3 +kerning first=208 second=221 amount=-2 +kerning first=45 second=368 amount=-4 +kerning first=200 second=78 amount=-2 +kerning first=240 second=103 amount=-2 +kerning first=258 second=368 amount=-3 +kerning first=219 second=97 amount=-3 +kerning first=204 second=103 amount=-3 +kerning first=249 second=252 amount=-1 +kerning first=104 second=227 amount=-1 +kerning first=231 second=45 amount=-2 +kerning first=199 second=70 amount=-3 +kerning first=1102 second=1081 amount=-1 +kerning first=83 second=323 amount=-3 +kerning first=68 second=227 amount=-1 +kerning first=195 second=353 amount=-2 +kerning first=99 second=103 amount=-3 +kerning first=222 second=368 amount=-1 +kerning first=376 second=317 amount=-1 +kerning first=1051 second=1101 amount=-1 +kerning first=1048 second=1119 amount=-1 +kerning first=202 second=379 amount=-1 +kerning first=281 second=227 amount=-2 +kerning first=375 second=45 amount=-4 +kerning first=307 second=244 amount=-1 +kerning first=108 second=252 amount=-2 +kerning first=245 second=227 amount=-1 +kerning first=379 second=70 amount=-1 +kerning first=86 second=257 amount=-5 +kerning first=209 second=227 amount=-2 +kerning first=332 second=323 amount=-2 +kerning first=303 second=307 amount=-1 +kerning first=199 second=336 amount=-3 +kerning first=377 second=381 amount=-1 +kerning first=268 second=317 amount=-3 +kerning first=335 second=226 amount=-1 +kerning first=1052 second=1107 amount=-1 +kerning first=356 second=246 amount=-3 +kerning first=194 second=246 amount=-1 +kerning first=187 second=201 amount=-5 +kerning first=371 second=226 amount=-2 +kerning first=255 second=339 amount=-3 +kerning first=193 second=356 amount=-6 +kerning first=199 second=278 amount=-3 +kerning first=74 second=382 amount=-1 +kerning first=90 second=45 amount=-3 +kerning first=1088 second=1107 amount=-1 +kerning first=88 second=356 amount=-2 +kerning first=379 second=336 amount=-1 +kerning first=354 second=291 amount=-4 +kerning first=195 second=45 amount=-4 +kerning first=280 second=223 amount=-1 +kerning first=1024 second=1057 amount=-1 +kerning first=214 second=356 amount=-2 +kerning first=1059 second=1095 amount=-3 +kerning first=117 second=382 amount=-2 +kerning first=236 second=116 amount=-1 +kerning first=203 second=45 amount=-2 +kerning first=113 second=369 amount=-2 +kerning first=268 second=103 amount=-3 +kerning first=205 second=246 amount=-2 +kerning first=279 second=103 amount=-3 +kerning first=281 second=259 amount=-2 +kerning first=218 second=369 amount=-1 +kerning first=196 second=103 amount=-3 +kerning first=100 second=246 amount=-1 +kerning first=1047 second=1056 amount=-2 +kerning first=338 second=249 amount=-2 +kerning first=344 second=362 amount=-3 +kerning first=347 second=45 amount=-1 +kerning first=82 second=253 amount=-3 +kerning first=311 second=45 amount=-3 +kerning first=77 second=369 amount=-2 +kerning first=104 second=259 amount=-1 +kerning first=199 second=262 amount=-3 +kerning first=81 second=382 amount=-2 +kerning first=187 second=253 amount=-3 +kerning first=90 second=279 amount=-1 +kerning first=326 second=109 amount=-1 +kerning first=245 second=303 amount=-1 +kerning first=204 second=375 amount=-2 +kerning first=200 second=362 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=363 second=226 amount=-1 +kerning first=84 second=65 amount=-6 +kerning first=196 second=363 amount=-3 +kerning first=222 second=122 amount=-2 +kerning first=1069 second=1076 amount=-1 +kerning first=1077 second=1102 amount=-1 +kerning first=195 second=279 amount=-1 +kerning first=232 second=363 amount=-2 +kerning first=99 second=375 amount=-2 +kerning first=272 second=362 amount=-1 +kerning first=1113 second=1102 amount=-1 +kerning first=1037 second=1075 amount=-1 +kerning first=268 second=363 amount=-2 +kerning first=117 second=122 amount=-2 +kerning first=362 second=109 amount=-2 +kerning first=230 second=113 amount=-1 +kerning first=86 second=266 amount=-3 +kerning first=304 second=363 amount=-2 +kerning first=326 second=369 amount=-1 +kerning first=380 second=116 amount=-1 +kerning first=290 second=369 amount=-1 +kerning first=330 second=382 amount=-1 +kerning first=98 second=305 amount=-1 +kerning first=344 second=116 amount=-3 +kerning first=286 second=356 amount=-3 +kerning first=376 second=363 amount=-2 +kerning first=330 second=122 amount=-1 +kerning first=366 second=382 amount=-3 +kerning first=254 second=109 amount=-1 +kerning first=1055 second=1082 amount=-1 +kerning first=362 second=369 amount=-1 +kerning first=203 second=305 amount=-1 +kerning first=218 second=109 amount=-2 +kerning first=240 second=375 amount=-3 +kerning first=66 second=298 amount=-4 +kerning first=8222 second=287 amount=-1 +kerning first=254 second=355 amount=-1 +kerning first=1039 second=1095 amount=-1 +kerning first=1025 second=1036 amount=-1 +kerning first=275 second=305 amount=-2 +kerning first=240 second=115 amount=-2 +kerning first=214 second=370 amount=-1 +kerning first=87 second=336 amount=-3 +kerning first=1047 second=1070 amount=-2 +kerning first=347 second=305 amount=-2 +kerning first=113 second=355 amount=-1 +kerning first=267 second=279 amount=-1 +kerning first=286 second=370 amount=-1 +kerning first=205 second=232 amount=-2 +kerning first=192 second=336 amount=-3 +kerning first=231 second=279 amount=-1 +kerning first=105 second=339 amount=-1 +kerning first=196 second=89 amount=-6 +kerning first=8250 second=261 amount=-1 +kerning first=339 second=279 amount=-1 +kerning first=1055 second=1096 amount=-1 +kerning first=277 second=232 amount=-1 +kerning first=264 second=336 amount=-3 +kerning first=303 second=279 amount=-3 +kerning first=268 second=89 amount=-1 +kerning first=223 second=253 amount=-3 +kerning first=259 second=253 amount=-3 +kerning first=87 second=380 amount=-3 +kerning first=295 second=253 amount=-2 +kerning first=100 second=232 amount=-1 +kerning first=252 second=248 amount=-1 +kerning first=331 second=253 amount=-2 +kerning first=1073 second=1103 amount=-2 +kerning first=367 second=253 amount=-3 +kerning first=286 second=82 amount=-1 +kerning first=80 second=66 amount=-1 +kerning first=66 second=332 amount=-3 +kerning first=366 second=230 amount=-3 +kerning first=277 second=246 amount=-1 +kerning first=82 second=225 amount=-2 +kerning first=45 second=108 amount=-1 +kerning first=118 second=225 amount=-3 +kerning first=262 second=196 amount=-3 +kerning first=187 second=225 amount=-1 +kerning first=370 second=196 amount=-4 +kerning first=117 second=108 amount=-2 +kerning first=223 second=225 amount=-1 +kerning first=196 second=335 amount=-1 +kerning first=376 second=75 amount=-1 +kerning first=207 second=332 amount=-2 +kerning first=315 second=332 amount=-1 +kerning first=282 second=315 amount=-2 +kerning first=85 second=196 amount=-4 +kerning first=354 second=315 amount=-1 +kerning first=258 second=108 amount=-2 +kerning first=280 second=203 amount=-2 +kerning first=379 second=46 amount=-1 +kerning first=245 second=8217 amount=-2 +kerning first=206 second=45 amount=-4 +kerning first=208 second=203 amount=-2 +kerning first=86 second=280 amount=-1 +kerning first=321 second=286 amount=-1 +kerning first=220 second=242 amount=-2 +kerning first=220 second=326 amount=-2 +kerning first=317 second=8217 amount=-4 +kerning first=200 second=102 amount=-2 +kerning first=281 second=273 amount=-1 +kerning first=313 second=218 amount=-3 +kerning first=259 second=225 amount=-1 +kerning first=281 second=231 amount=-1 +kerning first=371 second=112 amount=-1 +kerning first=235 second=46 amount=-3 +kerning first=204 second=115 amount=-2 +kerning first=295 second=225 amount=-1 +kerning first=97 second=8221 amount=-3 +kerning first=86 second=269 amount=-3 +kerning first=68 second=8217 amount=-2 +kerning first=256 second=242 amount=-1 +kerning first=331 second=225 amount=-1 +kerning first=209 second=231 amount=-2 +kerning first=307 second=46 amount=-2 +kerning first=364 second=242 amount=-2 +kerning first=99 second=115 amount=-2 +kerning first=367 second=225 amount=-1 +kerning first=67 second=203 amount=-3 +kerning first=218 second=81 amount=-1 +kerning first=72 second=286 amount=-2 +kerning first=281 second=245 amount=-1 +kerning first=217 second=67 amount=-1 +kerning first=231 second=307 amount=-2 +kerning first=267 second=307 amount=-2 +kerning first=209 second=245 amount=-2 +kerning first=197 second=119 amount=-3 +kerning first=199 second=46 amount=-1 +kerning first=85 second=210 amount=-1 +kerning first=76 second=67 amount=-1 +kerning first=81 second=122 amount=-2 +kerning first=233 second=119 amount=-2 +kerning first=8250 second=289 amount=-3 +kerning first=107 second=232 amount=-3 +kerning first=227 second=261 amount=-1 +kerning first=236 second=102 amount=-2 +kerning first=45 second=122 amount=-5 +kerning first=269 second=119 amount=-2 +kerning first=375 second=307 amount=-2 +kerning first=67 second=217 amount=-2 +kerning first=305 second=119 amount=-3 +kerning first=310 second=8221 amount=-2 +kerning first=65 second=8217 amount=-5 +kerning first=263 second=252 amount=-2 +kerning first=376 second=335 amount=-3 +kerning first=377 second=119 amount=-2 +kerning first=1056 second=1062 amount=-1 +kerning first=1047 second=1042 amount=-2 +kerning first=1046 second=1113 amount=-2 +kerning first=335 second=252 amount=-1 +kerning first=313 second=204 amount=-2 +kerning first=371 second=252 amount=-1 +kerning first=310 second=250 amount=-3 +kerning first=86 second=252 amount=-1 +kerning first=232 second=335 amount=-1 +kerning first=353 second=259 amount=-1 +kerning first=119 second=269 amount=-3 +kerning first=122 second=252 amount=-2 +kerning first=268 second=335 amount=-2 +kerning first=1067 second=1086 amount=-1 +kerning first=83 second=269 amount=-1 +kerning first=325 second=67 amount=-2 +kerning first=304 second=335 amount=-2 +kerning first=224 second=269 amount=-1 +kerning first=1051 second=1097 amount=-1 +kerning first=77 second=81 amount=-2 +kerning first=227 second=252 amount=-1 +kerning first=109 second=328 amount=-1 +kerning first=1070 second=1118 amount=-1 +kerning first=333 second=353 amount=-2 +kerning first=296 second=269 amount=-2 +kerning first=337 second=378 amount=-2 +kerning first=369 second=365 amount=-1 +kerning first=369 second=353 amount=-2 +kerning first=260 second=269 amount=-1 +kerning first=333 second=365 amount=-1 +kerning first=346 second=378 amount=-2 +kerning first=283 second=113 amount=-1 +kerning first=368 second=269 amount=-2 +kerning first=193 second=366 amount=-3 +kerning first=198 second=262 amount=-1 +kerning first=261 second=365 amount=-1 +kerning first=351 second=112 amount=-3 +kerning first=251 second=171 amount=-2 +kerning first=225 second=365 amount=-1 +kerning first=315 second=112 amount=-2 +kerning first=225 second=353 amount=-1 +kerning first=287 second=171 amount=-3 +kerning first=279 second=100 amount=-1 +kerning first=8217 second=244 amount=-3 +kerning first=279 second=112 amount=-1 +kerning first=261 second=353 amount=-1 +kerning first=323 second=171 amount=-4 +kerning first=120 second=365 amount=-3 +kerning first=243 second=112 amount=-1 +kerning first=229 second=378 amount=-1 +kerning first=1057 second=1072 amount=-1 +kerning first=382 second=249 amount=-2 +kerning first=66 second=100 amount=-1 +kerning first=278 second=288 amount=-1 +kerning first=382 second=275 amount=-1 +kerning first=203 second=87 amount=-1 +kerning first=102 second=100 amount=-1 +kerning first=1084 second=1086 amount=-1 +kerning first=310 second=249 amount=-3 +kerning first=84 second=353 amount=-3 +kerning first=1048 second=1086 amount=-1 +kerning first=346 second=249 amount=-1 +kerning first=120 second=353 amount=-3 +kerning first=1102 second=1091 amount=-1 +kerning first=207 second=100 amount=-2 +kerning first=80 second=354 amount=-1 +kerning first=221 second=352 amount=-3 +kerning first=370 second=210 amount=-1 +kerning first=263 second=171 amount=-2 +kerning first=82 second=211 amount=-3 +kerning first=88 second=366 amount=-2 +kerning first=266 second=223 amount=-1 +kerning first=97 second=275 amount=-1 +kerning first=106 second=248 amount=-1 +kerning first=374 second=223 amount=-3 +kerning first=298 second=210 amount=-2 +kerning first=206 second=288 amount=-2 +kerning first=70 second=113 amount=-1 +kerning first=338 second=223 amount=-1 +kerning first=262 second=210 amount=-3 +kerning first=87 second=296 amount=-1 +kerning first=279 second=114 amount=-1 +kerning first=97 second=249 amount=-1 +kerning first=234 second=248 amount=-1 +kerning first=89 second=223 amount=-3 +kerning first=230 second=223 amount=-1 +kerning first=229 second=380 amount=-1 +kerning first=270 second=8220 amount=-2 +kerning first=369 second=339 amount=-1 +kerning first=243 second=114 amount=-1 +kerning first=234 second=8220 amount=-2 +kerning first=264 second=296 amount=-3 +kerning first=102 second=114 amount=-1 +kerning first=278 second=274 amount=-2 +kerning first=274 second=249 amount=-2 +kerning first=97 second=289 amount=-2 +kerning first=1058 second=1079 amount=-1 +kerning first=336 second=296 amount=-2 +kerning first=1073 second=1117 amount=-1 +kerning first=202 second=249 amount=-2 +kerning first=202 second=289 amount=-3 +kerning first=76 second=327 amount=-2 +kerning first=66 second=114 amount=-3 +kerning first=1037 second=1117 amount=-1 +kerning first=219 second=198 amount=-4 +kerning first=84 second=365 amount=-2 +kerning first=374 second=237 amount=-2 +kerning first=310 second=263 amount=-2 +kerning first=382 second=8249 amount=-3 +kerning first=338 second=237 amount=-1 +kerning first=346 second=263 amount=-1 +kerning first=274 second=8249 amount=-2 +kerning first=109 second=363 amount=-1 +kerning first=302 second=237 amount=-1 +kerning first=231 second=275 amount=-1 +kerning first=350 second=274 amount=-3 +kerning first=382 second=263 amount=-1 +kerning first=310 second=8249 amount=-4 +kerning first=210 second=315 amount=-2 +kerning first=266 second=237 amount=-1 +kerning first=1091 second=1079 amount=-1 +kerning first=97 second=263 amount=-1 +kerning first=202 second=8249 amount=-2 +kerning first=367 second=232 amount=-1 +kerning first=261 second=339 amount=-1 +kerning first=1030 second=1105 amount=-1 +kerning first=283 second=99 amount=-1 +kerning first=76 second=313 amount=-2 +kerning first=84 second=379 amount=-3 +kerning first=194 second=237 amount=-1 +kerning first=97 second=8249 amount=-2 +kerning first=69 second=315 amount=-2 +kerning first=313 second=206 amount=-2 +kerning first=268 second=75 amount=-3 +kerning first=89 second=237 amount=-2 +kerning first=203 second=73 amount=-2 +kerning first=8217 second=216 amount=-2 +kerning first=84 second=381 amount=-3 +kerning first=1102 second=1119 amount=-1 +kerning first=234 second=44 amount=-3 +kerning first=1058 second=1081 amount=-2 +kerning first=378 second=234 amount=-1 +kerning first=77 second=83 amount=-2 +kerning first=78 second=212 amount=-2 +kerning first=323 second=199 amount=-2 +kerning first=70 second=111 amount=-1 +kerning first=310 second=277 amount=-2 +kerning first=1058 second=1051 amount=-4 +kerning first=66 second=86 amount=-3 +kerning first=374 second=209 amount=-1 +kerning first=228 second=263 amount=-1 +kerning first=8217 second=246 amount=-3 +kerning first=350 second=302 amount=-3 +kerning first=234 second=234 amount=-1 +kerning first=338 second=209 amount=-2 +kerning first=382 second=277 amount=-1 +kerning first=1030 second=1119 amount=-1 +kerning first=346 second=277 amount=-1 +kerning first=278 second=302 amount=-2 +kerning first=315 second=72 amount=-2 +kerning first=225 second=351 amount=-1 +kerning first=268 second=323 amount=-3 +kerning first=198 second=264 amount=-1 +kerning first=283 second=111 amount=-1 +kerning first=362 second=83 amount=-3 +kerning first=97 second=277 amount=-1 +kerning first=274 second=289 amount=-3 +kerning first=87 second=76 amount=-1 +kerning first=310 second=289 amount=-2 +kerning first=261 second=351 amount=-1 +kerning first=346 second=289 amount=-3 +kerning first=89 second=209 amount=-1 +kerning first=382 second=289 amount=-2 +kerning first=106 second=111 amount=-1 +kerning first=327 second=212 amount=-2 +kerning first=74 second=199 amount=-2 +kerning first=376 second=323 amount=-1 +kerning first=120 second=351 amount=-3 +kerning first=219 second=212 amount=-1 +kerning first=351 second=114 amount=-1 +kerning first=333 second=367 amount=-1 +kerning first=84 second=351 amount=-3 +kerning first=193 second=364 amount=-3 +kerning first=225 second=367 amount=-1 +kerning first=346 second=291 amount=-3 +kerning first=202 second=261 amount=-1 +kerning first=261 second=367 amount=-1 +kerning first=98 second=311 amount=-1 +kerning first=209 second=233 amount=-2 +kerning first=78 second=226 amount=-2 +kerning first=120 second=367 amount=-3 +kerning first=274 second=291 amount=-3 +kerning first=114 second=226 amount=-1 +kerning first=274 second=261 amount=-1 +kerning first=281 second=233 amount=-1 +kerning first=212 second=8217 amount=-2 +kerning first=336 second=76 amount=-2 +kerning first=211 second=97 amount=-1 +kerning first=369 second=351 amount=-2 +kerning first=202 second=291 amount=-3 +kerning first=120 second=337 amount=-2 +kerning first=1058 second=1074 amount=-2 +kerning first=219 second=226 amount=-3 +kerning first=84 second=367 amount=-2 +kerning first=365 second=326 amount=-1 +kerning first=45 second=110 amount=-2 +kerning first=333 second=351 amount=-2 +kerning first=84 second=337 amount=-3 +kerning first=264 second=76 amount=-3 +kerning first=106 second=97 amount=-2 +kerning first=311 second=242 amount=-3 +kerning first=97 second=291 amount=-2 +kerning first=291 second=226 amount=-3 +kerning first=97 second=261 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=327 second=226 amount=-2 +kerning first=355 second=97 amount=-1 +kerning first=1054 second=1040 amount=-3 +kerning first=74 second=171 amount=-4 +kerning first=65 second=316 amount=-2 +kerning first=8217 second=232 amount=-3 +kerning first=221 second=326 amount=-3 +kerning first=110 second=171 amount=-3 +kerning first=200 second=350 amount=-2 +kerning first=101 second=316 amount=-3 +kerning first=283 second=97 amount=-2 +kerning first=257 second=326 amount=-1 +kerning first=225 second=337 amount=-1 +kerning first=171 second=86 amount=-3 +kerning first=1069 second=1050 amount=-1 +kerning first=224 second=229 amount=-1 +kerning first=1062 second=1092 amount=-1 +kerning first=1057 second=1064 amount=-1 +kerning first=310 second=261 amount=-1 +kerning first=242 second=316 amount=-2 +kerning first=346 second=261 amount=-2 +kerning first=346 second=370 amount=-3 +kerning first=366 second=110 amount=-2 +kerning first=344 second=350 amount=-3 +kerning first=278 second=316 amount=-1 +kerning first=382 second=261 amount=-1 +kerning first=1113 second=1116 amount=-1 +kerning first=314 second=316 amount=-2 +kerning first=234 second=250 amount=-2 +kerning first=315 second=86 amount=-3 +kerning first=1077 second=1116 amount=-1 +kerning first=272 second=350 amount=-1 +kerning first=350 second=316 amount=-2 +kerning first=198 second=250 amount=-2 +kerning first=212 second=200 amount=-2 +kerning first=281 second=271 amount=-1 +kerning first=1051 second=1057 amount=-1 +kerning first=99 second=117 amount=-2 +kerning first=290 second=381 amount=-2 +kerning first=69 second=331 amount=-1 +kerning first=362 second=381 amount=-1 +kerning first=376 second=337 amount=-3 +kerning first=211 second=8217 amount=-2 +kerning first=356 second=200 amount=-1 +kerning first=282 second=352 amount=-2 +kerning first=90 second=291 amount=-3 +kerning first=1051 second=1081 amount=-1 +kerning first=213 second=260 amount=-4 +kerning first=240 second=117 amount=-1 +kerning first=284 second=200 amount=-1 +kerning first=321 second=260 amount=-2 +kerning first=75 second=85 amount=-2 +kerning first=376 second=361 amount=-2 +kerning first=97 second=8220 amount=-3 +kerning first=227 second=240 amount=-1 +kerning first=105 second=331 amount=-2 +kerning first=282 second=115 amount=-1 +kerning first=86 second=240 amount=-3 +kerning first=327 second=214 amount=-2 +kerning first=266 second=207 amount=-3 +kerning first=122 second=240 amount=-1 +kerning first=335 second=237 amount=-1 +kerning first=236 second=382 amount=-1 +kerning first=78 second=214 amount=-2 +kerning first=371 second=240 amount=-3 +kerning first=263 second=240 amount=-1 +kerning first=199 second=290 amount=-3 +kerning first=89 second=207 amount=-1 +kerning first=272 second=90 amount=-2 +kerning first=66 second=84 amount=-3 +kerning first=288 second=378 amount=-1 +kerning first=350 second=304 amount=-3 +kerning first=214 second=330 amount=-2 +kerning first=377 second=194 amount=-1 +kerning first=313 second=220 amount=-3 +kerning first=330 second=67 amount=-2 +kerning first=69 second=71 amount=-1 +kerning first=213 second=298 amount=-2 +kerning first=278 second=304 amount=-2 +kerning first=67 second=201 amount=-3 +kerning first=375 second=291 amount=-3 +kerning first=216 second=227 amount=-1 +kerning first=339 second=291 amount=-3 +kerning first=76 second=287 amount=-3 +kerning first=1047 second=1030 amount=-2 +kerning first=338 second=207 amount=-2 +kerning first=303 second=291 amount=-1 +kerning first=77 second=97 amount=-2 +kerning first=321 second=298 amount=-2 +kerning first=374 second=207 amount=-1 +kerning first=1037 second=1077 amount=-1 +kerning first=171 second=84 amount=-3 +kerning first=286 second=330 amount=-1 +kerning first=75 second=227 amount=-1 +kerning first=1047 second=1058 amount=-1 +kerning first=231 second=291 amount=-3 +kerning first=108 second=116 amount=-1 +kerning first=259 second=122 amount=-1 +kerning first=195 second=291 amount=-3 +kerning first=196 second=337 amount=-1 +kerning first=253 second=287 amount=-3 +kerning first=264 second=290 amount=-3 +kerning first=77 second=350 amount=-2 +kerning first=365 second=324 amount=-1 +kerning first=282 second=71 amount=-1 +kerning first=254 second=97 amount=-1 +kerning first=217 second=287 amount=-4 +kerning first=260 second=311 amount=-2 +kerning first=1044 second=1101 amount=-1 +kerning first=315 second=84 amount=-3 +kerning first=113 second=97 amount=-2 +kerning first=1105 second=1088 amount=-1 +kerning first=224 second=311 amount=-1 +kerning first=203 second=317 amount=-2 +kerning first=84 second=77 amount=-1 +kerning first=354 second=71 amount=-3 +kerning first=289 second=287 amount=-2 +kerning first=1116 second=1101 amount=-1 +kerning first=362 second=97 amount=-3 +kerning first=119 second=311 amount=-2 +kerning first=221 second=324 amount=-3 +kerning first=304 second=337 amount=-2 +kerning first=83 second=311 amount=-2 +kerning first=200 second=90 amount=-1 +kerning first=290 second=97 amount=-1 +kerning first=218 second=381 amount=-1 +kerning first=232 second=337 amount=-1 +kerning first=354 second=204 amount=-1 +kerning first=257 second=324 amount=-1 +kerning first=117 second=120 amount=-2 +kerning first=90 second=263 amount=-1 +kerning first=268 second=365 amount=-2 +kerning first=232 second=365 amount=-2 +kerning first=222 second=120 amount=-1 +kerning first=195 second=263 amount=-1 +kerning first=196 second=365 amount=-3 +kerning first=381 second=193 amount=-1 +kerning first=231 second=263 amount=-1 +kerning first=76 second=325 amount=-2 +kerning first=354 second=303 amount=-2 +kerning first=266 second=197 amount=-3 +kerning first=106 second=339 amount=-1 +kerning first=86 second=268 amount=-3 +kerning first=226 second=241 amount=-1 +kerning first=326 second=353 amount=-1 +kerning first=286 second=70 amount=-1 +kerning first=82 second=213 amount=-3 +kerning first=45 second=120 amount=-3 +kerning first=87 second=310 amount=-1 +kerning first=362 second=353 amount=-2 +kerning first=8218 second=107 amount=-1 +kerning first=66 second=74 amount=-4 +kerning first=81 second=120 amount=-1 +kerning first=221 second=78 amount=-1 +kerning first=214 second=70 amount=-2 +kerning first=336 second=310 amount=-2 +kerning first=1048 second=1100 amount=-1 +kerning first=80 second=78 amount=-1 +kerning first=370 second=262 amount=-1 +kerning first=209 second=275 amount=-2 +kerning first=113 second=353 amount=-2 +kerning first=196 second=248 amount=-1 +kerning first=1007 second=1003 amount=-2 +kerning first=105 second=303 amount=-1 +kerning first=344 second=118 amount=-3 +kerning first=228 second=109 amount=-1 +kerning first=99 second=113 amount=-1 +kerning first=207 second=74 amount=-1 +kerning first=264 second=310 amount=-3 +kerning first=218 second=353 amount=-2 +kerning first=1055 second=1080 amount=-1 +kerning first=116 second=314 amount=-1 +kerning first=254 second=353 amount=-2 +kerning first=352 second=201 amount=-3 +kerning first=203 second=85 amount=-2 +kerning first=246 second=303 amount=-1 +kerning first=236 second=118 amount=-3 +kerning first=315 second=74 amount=-1 +kerning first=376 second=365 amount=-2 +kerning first=282 second=303 amount=-1 +kerning first=200 second=118 amount=-1 +kerning first=280 second=201 amount=-2 +kerning first=366 second=120 amount=-2 +kerning first=286 second=366 amount=-1 +kerning first=304 second=365 amount=-2 +kerning first=210 second=303 amount=-1 +kerning first=77 second=353 amount=-2 +kerning first=257 second=314 amount=-1 +kerning first=208 second=201 amount=-2 +kerning first=1102 second=1093 amount=-1 +kerning first=266 second=235 amount=-2 +kerning first=195 second=8249 amount=-4 +kerning first=365 second=314 amount=-2 +kerning first=119 second=283 amount=-3 +kerning first=302 second=235 amount=-2 +kerning first=330 second=380 amount=-1 +kerning first=231 second=8249 amount=-2 +kerning first=367 second=241 amount=-1 +kerning first=83 second=283 amount=-1 +kerning first=8216 second=227 amount=-3 +kerning first=366 second=380 amount=-3 +kerning first=90 second=8249 amount=-3 +kerning first=120 second=105 amount=-1 +kerning first=258 second=355 amount=-1 +kerning first=374 second=235 amount=-3 +kerning first=213 second=270 amount=-2 +kerning first=198 second=224 amount=-1 +kerning first=117 second=380 amount=-2 +kerning first=339 second=249 amount=-2 +kerning first=1073 second=1087 amount=-1 +kerning first=259 second=241 amount=-1 +kerning first=296 second=283 amount=-2 +kerning first=264 second=338 amount=-3 +kerning first=250 second=98 amount=-2 +kerning first=223 second=241 amount=-1 +kerning first=260 second=283 amount=-1 +kerning first=222 second=380 amount=-2 +kerning first=331 second=241 amount=-1 +kerning first=224 second=283 amount=-1 +kerning first=234 second=224 amount=-2 +kerning first=356 second=228 amount=-4 +kerning first=192 second=338 amount=-3 +kerning first=1037 second=1087 amount=-1 +kerning first=295 second=241 amount=-1 +kerning first=378 second=171 amount=-3 +kerning first=284 second=228 amount=-1 +kerning first=277 second=248 amount=-1 +kerning first=248 second=228 amount=-1 +kerning first=45 second=380 amount=-5 +kerning first=187 second=241 amount=-2 +kerning first=70 second=101 amount=-1 +kerning first=368 second=283 amount=-2 +kerning first=66 second=112 amount=-4 +kerning first=378 second=224 amount=-1 +kerning first=212 second=228 amount=-1 +kerning first=81 second=380 amount=-2 +kerning first=251 second=102 amount=-1 +kerning first=118 second=241 amount=-2 +kerning first=106 second=101 amount=-1 +kerning first=267 second=263 amount=-1 +kerning first=205 second=248 amount=-2 +kerning first=89 second=235 amount=-3 +kerning first=235 second=318 amount=-3 +kerning first=303 second=263 amount=-3 +kerning first=354 second=331 amount=-3 +kerning first=107 second=228 amount=-2 +kerning first=375 second=8249 amount=-4 +kerning first=201 second=193 amount=-2 +kerning first=339 second=263 amount=-1 +kerning first=100 second=248 amount=-1 +kerning first=71 second=228 amount=-1 +kerning first=307 second=318 amount=-2 +kerning first=267 second=8249 amount=-2 +kerning first=1061 second=1038 amount=-3 +kerning first=375 second=263 amount=-3 +kerning first=282 second=331 amount=-1 +kerning first=230 second=235 amount=-1 +kerning first=283 second=101 amount=-1 +kerning first=368 second=281 amount=-2 +kerning first=1040 second=1072 amount=-1 +kerning first=281 second=97 amount=-2 +kerning first=1036 second=1047 amount=-2 +kerning first=352 second=205 amount=-3 +kerning first=252 second=231 amount=-1 +kerning first=220 second=256 amount=-4 +kerning first=356 second=230 amount=-5 +kerning first=80 second=82 amount=-1 +kerning first=224 second=281 amount=-1 +kerning first=248 second=230 amount=-1 +kerning first=1044 second=1073 amount=-1 +kerning first=1048 second=1098 amount=-1 +kerning first=260 second=281 amount=-1 +kerning first=208 second=205 amount=-2 +kerning first=284 second=230 amount=-1 +kerning first=252 second=255 amount=-3 +kerning first=296 second=281 amount=-2 +kerning first=97 second=251 amount=-1 +kerning first=88 second=108 amount=-1 +kerning first=8220 second=253 amount=-1 +kerning first=212 second=230 amount=-1 +kerning first=311 second=347 amount=-2 +kerning first=67 second=205 amount=-3 +kerning first=111 second=255 amount=-3 +kerning first=202 second=251 amount=-2 +kerning first=75 second=8217 amount=-2 +kerning first=275 second=347 amount=-2 +kerning first=83 second=281 amount=-1 +kerning first=75 second=255 amount=-3 +kerning first=111 second=8217 amount=-2 +kerning first=119 second=281 amount=-3 +kerning first=274 second=251 amount=-2 +kerning first=85 second=378 amount=-3 +kerning first=203 second=347 amount=-1 +kerning first=8222 second=303 amount=-1 +kerning first=369 second=107 amount=-2 +kerning first=205 second=216 amount=-2 +kerning first=346 second=251 amount=-1 +kerning first=369 second=105 amount=-2 +kerning first=98 second=347 amount=-2 +kerning first=310 second=251 amount=-3 +kerning first=283 second=371 amount=-2 +kerning first=210 second=193 amount=-4 +kerning first=313 second=216 amount=-1 +kerning first=75 second=231 amount=-2 +kerning first=225 second=107 amount=-1 +kerning first=382 second=251 amount=-2 +kerning first=355 second=371 amount=-1 +kerning first=88 second=106 amount=-1 +kerning first=88 second=368 amount=-2 +kerning first=268 second=333 amount=-2 +kerning first=286 second=68 amount=-1 +kerning first=232 second=333 amount=-1 +kerning first=354 second=67 amount=-3 +kerning first=275 second=345 amount=-1 +kerning first=214 second=68 amount=-2 +kerning first=84 second=81 amount=-3 +kerning first=221 second=80 amount=-1 +kerning first=304 second=333 amount=-2 +kerning first=282 second=67 amount=-1 +kerning first=347 second=345 amount=-1 +kerning first=88 second=374 amount=-2 +kerning first=207 second=346 amount=-2 +kerning first=201 second=217 amount=-2 +kerning first=79 second=282 amount=-2 +kerning first=352 second=203 amount=-3 +kerning first=193 second=368 amount=-3 +kerning first=196 second=333 amount=-1 +kerning first=364 second=102 amount=-1 +kerning first=229 second=106 amount=-1 +kerning first=66 second=346 amount=-4 +kerning first=209 second=243 amount=-2 +kerning first=71 second=230 amount=-1 +kerning first=71 second=204 amount=-1 +kerning first=199 second=244 amount=-2 +kerning first=107 second=230 amount=-2 +kerning first=315 second=346 amount=-1 +kerning first=212 second=204 amount=-2 +kerning first=281 second=243 amount=-1 +kerning first=337 second=106 amount=-2 +kerning first=119 second=307 amount=-2 +kerning first=8216 second=101 amount=-3 +kerning first=284 second=204 amount=-1 +kerning first=1063 second=1090 amount=-1 +kerning first=224 second=307 amount=-1 +kerning first=376 second=333 amount=-3 +kerning first=356 second=204 amount=-1 +kerning first=278 second=278 amount=-2 +kerning first=79 second=256 amount=-4 +kerning first=210 second=69 amount=-2 +kerning first=283 second=369 amount=-2 +kerning first=346 second=380 amount=-2 +kerning first=315 second=344 amount=-2 +kerning first=192 second=334 amount=-3 +kerning first=101 second=44 amount=-3 +kerning first=229 second=104 amount=-1 +kerning first=355 second=369 amount=-1 +kerning first=111 second=259 amount=-1 +kerning first=242 second=44 amount=-3 +kerning first=193 second=104 amount=-2 +kerning first=75 second=259 amount=-1 +kerning first=206 second=44 amount=-1 +kerning first=1025 second=1034 amount=-1 +kerning first=333 second=109 amount=-1 +kerning first=106 second=369 amount=-1 +kerning first=315 second=374 amount=-3 +kerning first=69 second=69 amount=-2 +kerning first=70 second=369 amount=-1 +kerning first=377 second=192 amount=-1 +kerning first=337 second=104 amount=-1 +kerning first=369 second=109 amount=-1 +kerning first=100 second=244 amount=-1 +kerning first=260 second=279 amount=-1 +kerning first=111 second=229 amount=-1 +kerning first=324 second=227 amount=-1 +kerning first=120 second=109 amount=-1 +kerning first=288 second=227 amount=-1 +kerning first=261 second=109 amount=-1 +kerning first=252 second=227 amount=-1 +kerning first=296 second=279 amount=-2 +kerning first=364 second=284 amount=-1 +kerning first=1051 second=1085 amount=-1 +kerning first=75 second=229 amount=-1 +kerning first=1055 second=1084 amount=-1 +kerning first=83 second=279 amount=-1 +kerning first=256 second=284 amount=-3 +kerning first=356 second=232 amount=-3 +kerning first=1057 second=1054 amount=-1 +kerning first=288 second=229 amount=-1 +kerning first=278 second=44 amount=-1 +kerning first=324 second=229 amount=-1 +kerning first=105 second=305 amount=-2 +kerning first=84 second=109 amount=-3 +kerning first=216 second=229 amount=-1 +kerning first=69 second=305 amount=-1 +kerning first=119 second=279 amount=-3 +kerning first=220 second=284 amount=-1 +kerning first=87 second=334 amount=-3 +kerning first=350 second=44 amount=-4 +kerning first=252 second=229 amount=-1 +kerning first=210 second=305 amount=-1 +kerning first=339 second=267 amount=-1 +kerning first=252 second=257 amount=-1 +kerning first=225 second=249 amount=-1 +kerning first=268 second=65 amount=-3 +kerning first=375 second=267 amount=-3 +kerning first=106 second=371 amount=-1 +kerning first=288 second=257 amount=-1 +kerning first=282 second=305 amount=-1 +kerning first=267 second=267 amount=-1 +kerning first=255 second=118 amount=-1 +kerning first=246 second=305 amount=-1 +kerning first=303 second=267 amount=-3 +kerning first=216 second=257 amount=-1 +kerning first=8216 second=113 amount=-3 +kerning first=354 second=305 amount=-2 +kerning first=376 second=65 amount=-6 +kerning first=235 second=8250 amount=-2 +kerning first=232 second=361 amount=-2 +kerning first=75 second=257 amount=-1 +kerning first=212 second=202 amount=-2 +kerning first=368 second=279 amount=-2 +kerning first=196 second=361 amount=-3 +kerning first=111 second=257 amount=-1 +kerning first=71 second=202 amount=-1 +kerning first=201 second=219 amount=-2 +kerning first=304 second=361 amount=-2 +kerning first=347 second=347 amount=-3 +kerning first=214 second=209 amount=-2 +kerning first=268 second=361 amount=-2 +kerning first=171 second=374 amount=-3 +kerning first=362 second=121 amount=-1 +kerning first=356 second=202 amount=-1 +kerning first=256 second=254 amount=-2 +kerning first=205 second=244 amount=-2 +kerning first=326 second=121 amount=-2 +kerning first=66 second=374 amount=-3 +kerning first=284 second=202 amount=-1 +kerning first=328 second=254 amount=-2 +kerning first=277 second=244 amount=-1 +kerning first=254 second=121 amount=-3 +kerning first=84 second=79 amount=-3 +kerning first=354 second=69 amount=-1 +kerning first=286 second=66 amount=-1 +kerning first=195 second=267 amount=-1 +kerning first=231 second=267 amount=-1 +kerning first=115 second=254 amount=-2 +kerning first=282 second=69 amount=-2 +kerning first=214 second=66 amount=-2 +kerning first=90 second=267 amount=-1 +kerning first=113 second=121 amount=-1 +kerning first=324 second=257 amount=-1 +kerning first=77 second=121 amount=-2 +kerning first=1048 second=1116 amount=-1 +kerning first=315 second=82 amount=-2 +kerning first=87 second=66 amount=-1 +kerning first=257 second=353 amount=-1 +kerning first=73 second=332 amount=-2 +kerning first=8220 second=115 amount=-2 +kerning first=369 second=250 amount=-1 +kerning first=270 second=8221 amount=-2 +kerning first=203 second=69 amount=-2 +kerning first=264 second=66 amount=-3 +kerning first=201 second=209 amount=-2 +kerning first=379 second=302 amount=-1 +kerning first=199 second=316 amount=-1 +kerning first=338 second=205 amount=-2 +kerning first=366 second=347 amount=-2 +kerning first=214 second=72 amount=-2 +kerning first=78 second=216 amount=-2 +kerning first=67 second=199 amount=-3 +kerning first=370 second=192 amount=-4 +kerning first=1098 second=1096 amount=-1 +kerning first=221 second=76 amount=-1 +kerning first=286 second=72 amount=-1 +kerning first=376 second=79 amount=-3 +kerning first=334 second=192 amount=-4 +kerning first=374 second=205 amount=-1 +kerning first=66 second=82 amount=-4 +kerning first=193 second=339 amount=-1 +kerning first=336 second=66 amount=-2 +kerning first=122 second=242 amount=-1 +kerning first=187 second=229 amount=-1 +kerning first=262 second=192 amount=-3 +kerning first=86 second=242 amount=-3 +kerning first=223 second=229 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=266 second=205 amount=-3 +kerning first=227 second=242 amount=-1 +kerning first=82 second=229 amount=-2 +kerning first=280 second=199 amount=-1 +kerning first=118 second=229 amount=-3 +kerning first=310 second=8217 amount=-2 +kerning first=1037 second=1099 amount=-1 +kerning first=212 second=226 amount=-1 +kerning first=263 second=242 amount=-1 +kerning first=74 second=8249 amount=-4 +kerning first=248 second=226 amount=-1 +kerning first=290 second=382 amount=-1 +kerning first=89 second=205 amount=-1 +kerning first=371 second=242 amount=-3 +kerning first=284 second=226 amount=-1 +kerning first=68 second=8221 amount=-2 +kerning first=286 second=86 amount=-3 +kerning first=374 second=219 amount=-1 +kerning first=281 second=8221 amount=-2 +kerning first=219 second=216 amount=-1 +kerning first=356 second=226 amount=-5 +kerning first=99 second=119 amount=-2 +kerning first=338 second=219 amount=-2 +kerning first=317 second=8221 amount=-4 +kerning first=228 second=326 amount=-1 +kerning first=1043 second=1033 amount=-5 +kerning first=264 second=326 amount=-1 +kerning first=204 second=119 amount=-2 +kerning first=266 second=219 amount=-2 +kerning first=245 second=8221 amount=-2 +kerning first=327 second=216 amount=-2 +kerning first=240 second=119 amount=-2 +kerning first=235 second=316 amount=-3 +kerning first=1055 second=1092 amount=-1 +kerning first=84 second=103 amount=-4 +kerning first=194 second=219 amount=-3 +kerning first=1091 second=1092 amount=-2 +kerning first=381 second=209 amount=-1 +kerning first=354 second=333 amount=-3 +kerning first=307 second=316 amount=-2 +kerning first=87 second=326 amount=-3 +kerning first=89 second=219 amount=-1 +kerning first=199 second=302 amount=-3 +kerning first=105 second=333 amount=-1 +kerning first=214 second=86 amount=-2 +kerning first=71 second=226 amount=-1 +kerning first=8218 second=237 amount=-1 +kerning first=221 second=334 amount=-3 +kerning first=107 second=226 amount=-2 +kerning first=346 second=259 amount=-2 +kerning first=296 second=289 amount=-3 +kerning first=8217 second=231 amount=-3 +kerning first=378 second=246 amount=-1 +kerning first=310 second=259 amount=-1 +kerning first=1073 second=1085 amount=-1 +kerning first=337 second=116 amount=-1 +kerning first=369 second=103 amount=-3 +kerning first=315 second=356 amount=-3 +kerning first=84 second=369 amount=-2 +kerning first=1037 second=1085 amount=-1 +kerning first=75 second=253 amount=-3 +kerning first=283 second=375 amount=-2 +kerning first=333 second=103 amount=-2 +kerning first=231 second=269 amount=-1 +kerning first=84 second=363 amount=-2 +kerning first=382 second=259 amount=-1 +kerning first=371 second=363 amount=-1 +kerning first=111 second=253 amount=-3 +kerning first=337 second=122 amount=-2 +kerning first=69 second=45 amount=-2 +kerning first=195 second=269 amount=-1 +kerning first=120 second=363 amount=-3 +kerning first=287 second=263 amount=-2 +kerning first=1098 second=1082 amount=-1 +kerning first=261 second=103 amount=-1 +kerning first=234 second=246 amount=-1 +kerning first=303 second=269 amount=-3 +kerning first=109 second=112 amount=-1 +kerning first=193 second=116 amount=-1 +kerning first=225 second=103 amount=-2 +kerning first=267 second=269 amount=-1 +kerning first=225 second=363 amount=-1 +kerning first=274 second=259 amount=-1 +kerning first=252 second=253 amount=-3 +kerning first=282 second=45 amount=-2 +kerning first=375 second=269 amount=-3 +kerning first=261 second=363 amount=-1 +kerning first=378 second=252 amount=-2 +kerning first=120 second=103 amount=-2 +kerning first=8250 second=251 amount=-1 +kerning first=339 second=269 amount=-1 +kerning first=66 second=362 amount=-3 +kerning first=333 second=369 amount=-1 +kerning first=1055 second=1086 amount=-1 +kerning first=333 second=363 amount=-1 +kerning first=337 second=382 amount=-2 +kerning first=346 second=275 amount=-1 +kerning first=369 second=363 amount=-1 +kerning first=97 second=259 amount=-1 +kerning first=220 second=266 amount=-1 +kerning first=369 second=369 amount=-1 +kerning first=256 second=266 amount=-3 +kerning first=1044 second=1089 amount=-1 +kerning first=120 second=369 amount=-3 +kerning first=261 second=369 amount=-1 +kerning first=229 second=382 amount=-1 +kerning first=106 second=375 amount=-3 +kerning first=1116 second=1089 amount=-2 +kerning first=229 second=122 amount=-1 +kerning first=225 second=369 amount=-1 +kerning first=1080 second=1089 amount=-1 +kerning first=321 second=284 amount=-1 +kerning first=120 second=355 amount=-1 +kerning first=313 second=361 amount=-2 +kerning first=310 second=279 amount=-2 +kerning first=84 second=355 amount=-1 +kerning first=106 second=109 amount=-2 +kerning first=221 second=336 amount=-3 +kerning first=70 second=115 amount=-2 +kerning first=315 second=370 amount=-3 +kerning first=382 second=279 amount=-1 +kerning first=97 second=273 amount=-1 +kerning first=106 second=115 amount=-2 +kerning first=346 second=279 amount=-1 +kerning first=330 second=213 amount=-2 +kerning first=8217 second=214 amount=-2 +kerning first=261 second=355 amount=-1 +kerning first=355 second=115 amount=-1 +kerning first=97 second=279 amount=-1 +kerning first=70 second=109 amount=-1 +kerning first=79 second=280 amount=-2 +kerning first=378 second=232 amount=-1 +kerning first=283 second=115 amount=-2 +kerning first=199 second=296 amount=-3 +kerning first=1060 second=1070 amount=-1 +kerning first=1091 second=1086 amount=-2 +kerning first=1039 second=1097 amount=-1 +kerning first=229 second=108 amount=-1 +kerning first=324 second=253 amount=-2 +kerning first=193 second=108 amount=-2 +kerning first=89 second=380 amount=-3 +kerning first=8250 second=361 amount=-1 +kerning first=369 second=355 amount=-1 +kerning first=1045 second=1119 amount=-1 +kerning first=379 second=296 amount=-1 +kerning first=234 second=232 amount=-1 +kerning first=88 second=116 amount=-1 +kerning first=71 second=206 amount=-1 +kerning first=66 second=370 amount=-3 +kerning first=337 second=108 amount=-2 +kerning first=66 second=296 amount=-4 +kerning first=45 second=323 amount=-5 +kerning first=211 second=193 amount=-4 +kerning first=90 second=46 amount=-1 +kerning first=73 second=338 amount=-2 +kerning first=212 second=206 amount=-2 +kerning first=289 second=303 amount=-2 +kerning first=321 second=290 amount=-1 +kerning first=257 second=328 amount=-1 +kerning first=73 second=83 amount=-2 +kerning first=200 second=98 amount=-1 +kerning first=221 second=328 amount=-3 +kerning first=284 second=206 amount=-1 +kerning first=217 second=303 amount=-2 +kerning first=282 second=325 amount=-2 +kerning first=356 second=206 amount=-1 +kerning first=89 second=213 amount=-3 +kerning first=325 second=303 amount=-1 +kerning first=84 second=83 amount=-3 +kerning first=365 second=328 amount=-1 +kerning first=1073 second=1107 amount=-1 +kerning first=1037 second=1107 amount=-1 +kerning first=333 second=328 amount=-1 +kerning first=266 second=225 amount=-2 +kerning first=380 second=380 amount=-2 +kerning first=380 second=98 amount=-1 +kerning first=1067 second=1102 amount=-1 +kerning first=344 second=364 amount=-3 +kerning first=79 second=344 amount=-2 +kerning first=302 second=225 amount=-2 +kerning first=219 second=196 amount=-4 +kerning first=376 second=85 amount=-1 +kerning first=203 second=323 amount=-2 +kerning first=338 second=225 amount=-1 +kerning first=1091 second=1077 amount=-2 +kerning first=72 second=290 amount=-2 +kerning first=1030 second=1117 amount=-1 +kerning first=374 second=225 amount=-5 +kerning first=382 second=273 amount=-1 +kerning first=310 second=108 amount=-1 +kerning first=89 second=225 amount=-5 +kerning first=236 second=380 amount=-1 +kerning first=236 second=98 amount=-1 +kerning first=1073 second=1093 amount=-2 +kerning first=268 second=85 amount=-2 +kerning first=379 second=290 amount=-1 +kerning first=278 second=286 amount=-1 +kerning first=272 second=380 amount=-2 +kerning first=344 second=98 amount=-3 +kerning first=69 second=325 amount=-2 +kerning first=196 second=85 amount=-3 +kerning first=230 second=225 amount=-2 +kerning first=75 second=233 amount=-2 +kerning first=206 second=286 amount=-2 +kerning first=246 second=311 amount=-1 +kerning first=203 second=77 amount=-2 +kerning first=243 second=102 amount=-1 +kerning first=268 second=71 amount=-3 +kerning first=228 second=46 amount=-1 +kerning first=89 second=211 amount=-3 +kerning first=279 second=102 amount=-2 +kerning first=327 second=210 amount=-2 +kerning first=379 second=282 amount=-1 +kerning first=1105 second=1080 amount=-1 +kerning first=1113 second=1118 amount=-2 +kerning first=214 second=8217 amount=-2 +kerning first=105 second=311 amount=-1 +kerning first=351 second=102 amount=-2 +kerning first=304 second=71 amount=-2 +kerning first=336 second=46 amount=-3 +kerning first=252 second=233 amount=-1 +kerning first=69 second=311 amount=-1 +kerning first=1047 second=1040 amount=-2 +kerning first=66 second=102 amount=-3 +kerning first=219 second=210 amount=-1 +kerning first=65 second=286 amount=-3 +kerning first=73 second=352 amount=-2 +kerning first=266 second=211 amount=-3 +kerning first=102 second=102 amount=-1 +kerning first=87 second=46 amount=-5 +kerning first=214 second=352 amount=-1 +kerning first=196 second=71 amount=-3 +kerning first=76 second=317 amount=-2 +kerning first=194 second=211 amount=-3 +kerning first=78 second=210 amount=-2 +kerning first=187 second=221 amount=-4 +kerning first=374 second=211 amount=-3 +kerning first=264 second=45 amount=-4 +kerning first=82 second=235 amount=-3 +kerning first=272 second=112 amount=-1 +kerning first=1098 second=1090 amount=-1 +kerning first=82 second=221 amount=-3 +kerning first=118 second=235 amount=-3 +kerning first=302 second=211 amount=-2 +kerning first=198 second=252 amount=-2 +kerning first=236 second=112 amount=-1 +kerning first=344 second=366 amount=-3 +kerning first=338 second=211 amount=-1 +kerning first=234 second=252 amount=-2 +kerning first=200 second=112 amount=-2 +kerning first=207 second=350 amount=-2 +kerning first=259 second=235 amount=-1 +kerning first=334 second=200 amount=-2 +kerning first=376 second=71 amount=-3 +kerning first=364 second=234 amount=-2 +kerning first=229 second=110 amount=-1 +kerning first=66 second=350 amount=-4 +kerning first=1062 second=1090 amount=-1 +kerning first=1065 second=1086 amount=-1 +kerning first=282 second=311 amount=-1 +kerning first=262 second=200 amount=-3 +kerning first=195 second=275 amount=-1 +kerning first=196 second=353 amount=-2 +kerning first=315 second=350 amount=-1 +kerning first=187 second=237 amount=-1 +kerning first=122 second=250 amount=-2 +kerning first=337 second=110 amount=-1 +kerning first=200 second=378 amount=-2 +kerning first=232 second=353 amount=-2 +kerning first=118 second=237 amount=-2 +kerning first=86 second=250 amount=-2 +kerning first=218 second=113 amount=-2 +kerning first=330 second=171 amount=-4 +kerning first=256 second=112 amount=-3 +kerning first=90 second=275 amount=-1 +kerning first=268 second=353 amount=-2 +kerning first=227 second=250 amount=-1 +kerning first=366 second=171 amount=-5 +kerning first=272 second=378 amount=-2 +kerning first=304 second=353 amount=-2 +kerning first=113 second=113 amount=-1 +kerning first=79 second=260 amount=-4 +kerning first=380 second=100 amount=-1 +kerning first=117 second=171 amount=-2 +kerning first=362 second=113 amount=-2 +kerning first=362 second=365 amount=-1 +kerning first=1031 second=1073 amount=-1 +kerning first=380 second=112 amount=-3 +kerning first=213 second=8221 amount=-2 +kerning first=222 second=171 amount=-1 +kerning first=326 second=365 amount=-1 +kerning first=200 second=366 amount=-2 +kerning first=344 second=112 amount=-1 +kerning first=258 second=171 amount=-4 +kerning first=290 second=365 amount=-1 +kerning first=245 second=249 amount=-1 +kerning first=286 second=352 amount=-2 +kerning first=236 second=100 amount=-1 +kerning first=279 second=235 amount=-1 +kerning first=268 second=87 amount=-1 +kerning first=281 second=249 amount=-2 +kerning first=220 second=260 amount=-4 +kerning first=362 second=228 amount=-3 +kerning first=196 second=87 amount=-6 +kerning first=209 second=249 amount=-1 +kerning first=344 second=100 amount=-3 +kerning first=1098 second=1076 amount=-2 +kerning first=339 second=275 amount=-1 +kerning first=194 second=100 amount=-1 +kerning first=1069 second=1078 amount=-1 +kerning first=8250 second=257 amount=-1 +kerning first=77 second=113 amount=-2 +kerning first=1048 second=1102 amount=-1 +kerning first=375 second=275 amount=-3 +kerning first=364 second=260 amount=-4 +kerning first=286 second=354 amount=-3 +kerning first=86 second=262 amount=-3 +kerning first=1047 second=1052 amount=-2 +kerning first=267 second=275 amount=-1 +kerning first=1073 second=1091 amount=-2 +kerning first=303 second=275 amount=-3 +kerning first=72 second=288 amount=-2 +kerning first=1116 second=1077 amount=-2 +kerning first=85 second=198 amount=-4 +kerning first=268 second=339 amount=-2 +kerning first=371 second=248 amount=-3 +kerning first=211 second=377 amount=-2 +kerning first=272 second=364 amount=-1 +kerning first=304 second=339 amount=-2 +kerning first=263 second=248 amount=-1 +kerning first=367 second=223 amount=-1 +kerning first=1044 second=1077 amount=-1 +kerning first=196 second=339 amount=-1 +kerning first=362 second=99 amount=-2 +kerning first=1080 second=1077 amount=-1 +kerning first=195 second=289 amount=-3 +kerning first=232 second=339 amount=-1 +kerning first=69 second=327 amount=-2 +kerning first=118 second=223 amount=-1 +kerning first=371 second=8220 amount=-3 +kerning first=104 second=249 amount=-1 +kerning first=335 second=8220 amount=-2 +kerning first=1102 second=1117 amount=-1 +kerning first=267 second=289 amount=-3 +kerning first=321 second=288 amount=-1 +kerning first=86 second=248 amount=-3 +kerning first=223 second=223 amount=-1 +kerning first=303 second=289 amount=-1 +kerning first=210 second=327 amount=-2 +kerning first=122 second=248 amount=-1 +kerning first=187 second=223 amount=-2 +kerning first=45 second=84 amount=-4 +kerning first=263 second=8220 amount=-2 +kerning first=236 second=114 amount=-1 +kerning first=376 second=339 amount=-3 +kerning first=74 second=223 amount=-1 +kerning first=83 second=287 amount=-3 +kerning first=354 second=313 amount=-1 +kerning first=376 second=73 amount=-1 +kerning first=254 second=365 amount=-1 +kerning first=282 second=327 amount=-2 +kerning first=209 second=263 amount=-2 +kerning first=218 second=365 amount=-1 +kerning first=213 second=274 amount=-2 +kerning first=77 second=99 amount=-2 +kerning first=282 second=313 amount=-2 +kerning first=76 second=315 amount=-2 +kerning first=354 second=327 amount=-1 +kerning first=119 second=287 amount=-3 +kerning first=367 second=237 amount=-2 +kerning first=281 second=263 amount=-1 +kerning first=113 second=365 amount=-2 +kerning first=290 second=379 amount=-2 +kerning first=260 second=287 amount=-3 +kerning first=331 second=237 amount=-1 +kerning first=210 second=313 amount=-2 +kerning first=262 second=198 amount=-3 +kerning first=203 second=75 amount=-2 +kerning first=77 second=365 amount=-2 +kerning first=376 second=353 amount=-3 +kerning first=224 second=287 amount=-2 +kerning first=113 second=99 amount=-1 +kerning first=295 second=237 amount=-1 +kerning first=268 second=73 amount=-3 +kerning first=362 second=379 amount=-1 +kerning first=332 second=287 amount=-1 +kerning first=259 second=237 amount=-1 +kerning first=334 second=198 amount=-4 +kerning first=225 second=109 amount=-1 +kerning first=321 second=274 amount=-2 +kerning first=296 second=287 amount=-3 +kerning first=218 second=99 amount=-2 +kerning first=223 second=237 amount=-1 +kerning first=370 second=198 amount=-4 +kerning first=1102 second=1103 amount=-2 +kerning first=324 second=237 amount=-1 +kerning first=244 second=187 amount=-2 +kerning first=200 second=104 amount=-1 +kerning first=368 second=287 amount=-4 +kerning first=205 second=234 amount=-2 +kerning first=252 second=237 amount=-2 +kerning first=216 second=237 amount=-1 +kerning first=277 second=234 amount=-1 +kerning first=1055 second=1094 amount=-1 +kerning first=1116 second=1091 amount=-2 +kerning first=66 second=354 amount=-3 +kerning first=344 second=104 amount=-3 +kerning first=111 second=237 amount=-1 +kerning first=171 second=354 amount=-3 +kerning first=45 second=226 amount=-1 +kerning first=82 second=117 amount=-2 +kerning first=235 second=44 amount=-3 +kerning first=1116 second=1072 amount=-1 +kerning first=344 second=374 amount=-3 +kerning first=100 second=234 amount=-1 +kerning first=234 second=244 amount=-1 +kerning first=1098 second=1084 amount=-1 +kerning first=199 second=44 amount=-1 +kerning first=236 second=104 amount=-1 +kerning first=303 second=277 amount=-3 +kerning first=223 second=227 amount=-1 +kerning first=113 second=111 amount=-1 +kerning first=267 second=277 amount=-1 +kerning first=274 second=77 amount=-2 +kerning first=111 second=120 amount=-3 +kerning first=187 second=227 amount=-1 +kerning first=280 second=237 amount=-1 +kerning first=262 second=194 amount=-3 +kerning first=251 second=100 amount=-1 +kerning first=315 second=354 amount=-3 +kerning first=118 second=227 amount=-3 +kerning first=218 second=111 amount=-2 +kerning first=339 second=277 amount=-1 +kerning first=8250 second=259 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=82 second=227 amount=-2 +kerning first=367 second=227 amount=-1 +kerning first=90 second=277 amount=-1 +kerning first=331 second=227 amount=-1 +kerning first=1040 second=1054 amount=-3 +kerning first=85 second=194 amount=-4 +kerning first=231 second=277 amount=-1 +kerning first=192 second=314 amount=-2 +kerning first=214 second=74 amount=-2 +kerning first=295 second=227 amount=-1 +kerning first=1084 second=1104 amount=-1 +kerning first=195 second=277 amount=-1 +kerning first=259 second=227 amount=-1 +kerning first=77 second=111 amount=-2 +kerning first=1048 second=1104 amount=-1 +kerning first=376 second=351 amount=-3 +kerning first=264 second=314 amount=-1 +kerning first=286 second=74 amount=-1 +kerning first=332 second=8249 amount=-1 +kerning first=227 second=249 amount=-1 +kerning first=120 second=361 amount=-3 +kerning first=228 second=314 amount=-1 +kerning first=261 second=361 amount=-1 +kerning first=97 second=267 amount=-1 +kerning first=314 second=122 amount=-1 +kerning first=68 second=261 amount=-1 +kerning first=290 second=367 amount=-1 +kerning first=260 second=8249 amount=-4 +kerning first=106 second=121 amount=-3 +kerning first=66 second=364 amount=-3 +kerning first=203 second=327 amount=-2 +kerning first=353 second=257 amount=-1 +kerning first=104 second=261 amount=-1 +kerning first=326 second=367 amount=-1 +kerning first=1037 second=1089 amount=-1 +kerning first=1105 second=1074 amount=-1 +kerning first=333 second=361 amount=-1 +kerning first=346 second=267 amount=-1 +kerning first=245 second=257 amount=-1 +kerning first=218 second=367 amount=-1 +kerning first=263 second=254 amount=-2 +kerning first=315 second=364 amount=-3 +kerning first=196 second=351 amount=-2 +kerning first=281 second=257 amount=-2 +kerning first=254 second=367 amount=-1 +kerning first=224 second=8249 amount=-2 +kerning first=304 second=351 amount=-2 +kerning first=100 second=224 amount=-1 +kerning first=337 second=114 amount=-1 +kerning first=113 second=367 amount=-2 +kerning first=202 second=260 amount=-2 +kerning first=362 second=111 amount=-2 +kerning first=335 second=254 amount=-1 +kerning first=369 second=361 amount=-1 +kerning first=268 second=351 amount=-2 +kerning first=209 second=257 amount=-2 +kerning first=119 second=8249 amount=-4 +kerning first=371 second=254 amount=-1 +kerning first=45 second=327 amount=-5 +kerning first=205 second=224 amount=-2 +kerning first=1101 second=1117 amount=-1 +kerning first=283 second=117 amount=-2 +kerning first=272 second=374 amount=-2 +kerning first=353 second=261 amount=-1 +kerning first=77 second=367 amount=-2 +kerning first=78 second=105 amount=-1 +kerning first=8222 second=255 amount=-1 +kerning first=122 second=254 amount=-1 +kerning first=277 second=224 amount=-2 +kerning first=355 second=117 amount=-1 +kerning first=200 second=374 amount=-1 +kerning first=241 second=224 amount=-1 +kerning first=378 second=244 amount=-1 +kerning first=81 second=171 amount=-1 +kerning first=380 second=104 amount=-2 +kerning first=227 second=254 amount=-1 +kerning first=286 second=344 amount=-1 +kerning first=88 second=114 amount=1 +kerning first=1058 second=1057 amount=-1 +kerning first=209 second=261 amount=-2 +kerning first=263 second=250 amount=-2 +kerning first=84 second=361 amount=-2 +kerning first=245 second=261 amount=-1 +kerning first=371 second=250 amount=-1 +kerning first=281 second=261 amount=-2 +kerning first=335 second=250 amount=-1 +kerning first=77 second=101 amount=-2 +kerning first=338 second=221 amount=-1 +kerning first=113 second=101 amount=-1 +kerning first=311 second=337 amount=-3 +kerning first=378 second=240 amount=-1 +kerning first=347 second=331 amount=-2 +kerning first=275 second=337 amount=-1 +kerning first=266 second=221 amount=-1 +kerning first=333 second=97 amount=-1 +kerning first=218 second=101 amount=-2 +kerning first=275 second=331 amount=-2 +kerning first=1054 second=1038 amount=-3 +kerning first=369 second=97 amount=-1 +kerning first=1030 second=1107 amount=-1 +kerning first=278 second=290 amount=-1 +kerning first=194 second=221 amount=-6 +kerning first=106 second=117 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=362 second=101 amount=-2 +kerning first=98 second=331 amount=-1 +kerning first=279 second=98 amount=-2 +kerning first=1057 second=1062 amount=-1 +kerning first=97 second=271 amount=-1 +kerning first=221 second=338 amount=-3 +kerning first=243 second=98 amount=-1 +kerning first=356 second=214 amount=-3 +kerning first=206 second=290 amount=-2 +kerning first=104 second=251 amount=-1 +kerning first=351 second=98 amount=-2 +kerning first=364 second=264 amount=-1 +kerning first=328 second=8221 amount=-4 +kerning first=315 second=98 amount=-2 +kerning first=209 second=251 amount=-2 +kerning first=102 second=98 amount=4 +kerning first=234 second=240 amount=-1 +kerning first=66 second=98 amount=-3 +kerning first=337 second=380 amount=-2 +kerning first=281 second=251 amount=-2 +kerning first=1100 second=1113 amount=-1 +kerning first=256 second=264 amount=-3 +kerning first=1063 second=1084 amount=-1 +kerning first=65 second=290 amount=-3 +kerning first=245 second=251 amount=-1 +kerning first=220 second=264 amount=-1 +kerning first=283 second=109 amount=-2 +kerning first=382 second=271 amount=-1 +kerning first=80 second=330 amount=-1 +kerning first=290 second=378 amount=-1 +kerning first=278 second=298 amount=-2 +kerning first=112 second=311 amount=-1 +kerning first=282 second=317 amount=-2 +kerning first=317 second=251 amount=-2 +kerning first=66 second=90 amount=-4 +kerning first=1098 second=1080 amount=-1 +kerning first=76 second=311 amount=-2 +kerning first=284 second=249 amount=-1 +kerning first=201 second=201 amount=-2 +kerning first=350 second=298 amount=-3 +kerning first=203 second=71 amount=-1 +kerning first=268 second=77 amount=-3 +kerning first=381 second=207 amount=-1 +kerning first=354 second=317 amount=-1 +kerning first=71 second=220 amount=-1 +kerning first=379 second=310 amount=-1 +kerning first=284 second=220 amount=-1 +kerning first=370 second=194 amount=-4 +kerning first=201 second=207 amount=-2 +kerning first=212 second=220 amount=-1 +kerning first=351 second=46 amount=-2 +kerning first=210 second=317 amount=-2 +kerning first=368 second=291 amount=-4 +kerning first=221 second=330 amount=-1 +kerning first=376 second=77 amount=-1 +kerning first=334 second=194 amount=-4 +kerning first=332 second=291 amount=-1 +kerning first=194 second=213 amount=-3 +kerning first=228 second=324 amount=-1 +kerning first=272 second=368 amount=-1 +kerning first=84 second=97 amount=-5 +kerning first=296 second=291 amount=-3 +kerning first=362 second=226 amount=-3 +kerning first=214 second=84 amount=-2 +kerning first=120 second=97 amount=-2 +kerning first=260 second=291 amount=-3 +kerning first=266 second=213 amount=-3 +kerning first=356 second=220 amount=-1 +kerning first=200 second=368 amount=-2 +kerning first=310 second=347 amount=-1 +kerning first=224 second=291 amount=-2 +kerning first=264 second=324 amount=-1 +kerning first=274 second=316 amount=-1 +kerning first=211 second=381 amount=-2 +kerning first=69 second=317 amount=-2 +kerning first=338 second=213 amount=-1 +kerning first=119 second=45 amount=-4 +kerning first=261 second=97 amount=-1 +kerning first=289 second=311 amount=-2 +kerning first=119 second=291 amount=-3 +kerning first=302 second=213 amount=-2 +kerning first=352 second=187 amount=-1 +kerning first=1037 second=1101 amount=-1 +kerning first=253 second=311 amount=-2 +kerning first=83 second=291 amount=-3 +kerning first=344 second=368 amount=-3 +kerning first=1098 second=1088 amount=-1 +kerning first=374 second=213 amount=-3 +kerning first=87 second=324 amount=-3 +kerning first=286 second=84 amount=-3 +kerning first=225 second=97 amount=-1 +kerning first=213 second=278 amount=-2 +kerning first=218 second=375 amount=-1 +kerning first=100 second=228 amount=-1 +kerning first=280 second=193 amount=-2 +kerning first=209 second=253 amount=-2 +kerning first=284 second=218 amount=-1 +kerning first=8220 second=111 amount=-3 +kerning first=97 second=311 amount=-1 +kerning first=245 second=253 amount=-3 +kerning first=113 second=375 amount=-1 +kerning first=344 second=263 amount=-3 +kerning first=208 second=193 amount=-4 +kerning first=281 second=253 amount=-2 +kerning first=77 second=375 amount=-2 +kerning first=212 second=218 amount=-1 +kerning first=1051 second=1075 amount=-1 +kerning first=317 second=253 amount=-3 +kerning first=362 second=375 amount=-1 +kerning first=80 second=70 amount=-1 +kerning first=321 second=278 amount=-2 +kerning first=353 second=253 amount=-3 +kerning first=326 second=375 amount=-2 +kerning first=252 second=243 amount=-1 +kerning first=362 second=103 amount=-4 +kerning first=310 second=242 amount=-2 +kerning first=286 second=78 amount=-1 +kerning first=352 second=193 amount=-4 +kerning first=326 second=103 amount=-2 +kerning first=254 second=375 amount=-3 +kerning first=356 second=218 amount=-1 +kerning first=76 second=45 amount=-1 +kerning first=290 second=103 amount=-3 +kerning first=381 second=203 amount=-1 +kerning first=214 second=78 amount=-2 +kerning first=337 second=120 amount=-3 +kerning first=199 second=310 amount=-3 +kerning first=1073 second=1095 amount=-1 +kerning first=208 second=45 amount=-1 +kerning first=1037 second=1095 amount=-1 +kerning first=221 second=70 amount=-1 +kerning first=1055 second=1100 amount=-1 +kerning first=381 second=201 amount=-1 +kerning first=232 second=345 amount=-1 +kerning first=70 second=213 amount=-1 +kerning first=229 second=120 amount=-1 +kerning first=71 second=218 amount=-1 +kerning first=228 second=253 amount=-3 +kerning first=196 second=104 amount=-2 +kerning first=171 second=356 amount=-3 +kerning first=104 second=253 amount=-2 +kerning first=201 second=203 amount=-2 +kerning first=380 second=108 amount=-2 +kerning first=362 second=105 amount=-2 +kerning first=229 second=118 amount=-3 +kerning first=344 second=370 amount=-3 +kerning first=344 second=108 amount=-3 +kerning first=193 second=118 amount=-3 +kerning first=112 second=305 amount=-1 +kerning first=75 second=245 amount=-2 +kerning first=203 second=65 amount=-2 +kerning first=76 second=305 amount=-2 +kerning first=326 second=105 amount=-1 +kerning first=217 second=305 amount=-2 +kerning first=195 second=283 amount=-1 +kerning first=1084 second=1108 amount=-1 +kerning first=218 second=105 amount=-2 +kerning first=79 second=270 amount=-2 +kerning first=213 second=280 amount=-2 +kerning first=1048 second=1108 amount=-1 +kerning first=254 second=105 amount=-1 +kerning first=289 second=305 amount=-1 +kerning first=252 second=245 amount=-1 +kerning first=90 second=283 amount=-1 +kerning first=364 second=266 amount=-1 +kerning first=113 second=105 amount=-1 +kerning first=339 second=245 amount=-1 +kerning first=253 second=305 amount=-2 +kerning first=1047 second=1048 amount=-2 +kerning first=88 second=118 amount=-3 +kerning first=192 second=318 amount=-2 +kerning first=252 second=241 amount=-1 +kerning first=339 second=283 amount=-1 +kerning first=1051 second=1073 amount=-1 +kerning first=275 second=335 amount=-1 +kerning first=77 second=105 amount=-1 +kerning first=311 second=335 amount=-3 +kerning first=324 second=241 amount=-1 +kerning first=267 second=283 amount=-1 +kerning first=202 second=365 amount=-2 +kerning first=231 second=283 amount=-1 +kerning first=277 second=228 amount=-2 +kerning first=236 second=108 amount=-2 +kerning first=200 second=370 amount=-2 +kerning first=200 second=108 amount=-1 +kerning first=307 second=230 amount=-2 +kerning first=205 second=228 amount=-2 +kerning first=225 second=105 amount=-1 +kerning first=111 second=241 amount=-1 +kerning first=375 second=283 amount=-3 +kerning first=67 second=193 amount=-3 +kerning first=231 second=281 amount=-1 +kerning first=367 second=242 amount=-1 +kerning first=45 second=224 amount=-1 +kerning first=113 second=107 amount=-2 +kerning first=303 second=281 amount=-3 +kerning first=86 second=256 amount=-6 +kerning first=254 second=107 amount=-1 +kerning first=221 second=66 amount=-1 +kerning first=339 second=281 amount=-1 +kerning first=118 second=231 amount=-3 +kerning first=1073 second=1097 amount=-1 +kerning first=90 second=281 amount=-1 +kerning first=230 second=261 amount=-2 +kerning first=1065 second=1047 amount=-1 +kerning first=353 second=255 amount=-3 +kerning first=259 second=231 amount=-1 +kerning first=381 second=205 amount=-1 +kerning first=1037 second=1097 amount=-1 +kerning first=221 second=332 amount=-3 +kerning first=321 second=280 amount=-2 +kerning first=201 second=205 amount=-2 +kerning first=242 second=8250 amount=-2 +kerning first=268 second=81 amount=-3 +kerning first=281 second=255 amount=-2 +kerning first=326 second=371 amount=-1 +kerning first=104 second=257 amount=-1 +kerning first=1055 second=1098 amount=-1 +kerning first=203 second=67 amount=-1 +kerning first=245 second=255 amount=-3 +kerning first=376 second=347 amount=-3 +kerning first=209 second=255 amount=-2 +kerning first=304 second=81 amount=-2 +kerning first=310 second=345 amount=1 +kerning first=304 second=347 amount=-2 +kerning first=113 second=371 amount=-2 +kerning first=67 second=304 amount=-3 +kerning first=104 second=255 amount=-2 +kerning first=268 second=347 amount=-2 +kerning first=290 second=107 amount=-1 +kerning first=376 second=81 amount=-3 +kerning first=232 second=347 amount=-2 +kerning first=196 second=347 amount=-2 +kerning first=254 second=371 amount=-1 +kerning first=350 second=8250 amount=-1 +kerning first=331 second=229 amount=-1 +kerning first=80 second=68 amount=-1 +kerning first=295 second=291 amount=-2 +kerning first=85 second=192 amount=-4 +kerning first=367 second=229 amount=-1 +kerning first=376 second=345 amount=-1 +kerning first=194 second=217 amount=-3 +kerning first=286 second=80 amount=-1 +kerning first=75 second=334 amount=-3 +kerning first=259 second=229 amount=-1 +kerning first=234 second=242 amount=-1 +kerning first=295 second=229 amount=-1 +kerning first=321 second=282 amount=-2 +kerning first=266 second=217 amount=-2 +kerning first=73 second=346 amount=-2 +kerning first=8217 second=224 amount=-6 +kerning first=274 second=318 amount=-1 +kerning first=338 second=217 amount=-2 +kerning first=213 second=282 amount=-2 +kerning first=196 second=81 amount=-3 +kerning first=374 second=217 amount=-1 +kerning first=214 second=8221 amount=-2 +kerning first=221 second=68 amount=-1 +kerning first=214 second=80 amount=-2 +kerning first=241 second=230 amount=-1 +kerning first=70 second=119 amount=-1 +kerning first=214 second=346 amount=-1 +kerning first=75 second=243 amount=-2 +kerning first=344 second=106 amount=-1 +kerning first=277 second=230 amount=-2 +kerning first=106 second=119 amount=-3 +kerning first=253 second=307 amount=-2 +kerning first=197 second=244 amount=-1 +kerning first=289 second=307 amount=-2 +kerning first=8250 second=116 amount=-1 +kerning first=272 second=106 amount=-1 +kerning first=205 second=230 amount=-2 +kerning first=275 second=333 amount=-1 +kerning first=375 second=281 amount=-3 +kerning first=365 second=339 amount=-1 +kerning first=100 second=230 amount=-1 +kerning first=283 second=119 amount=-2 +kerning first=380 second=106 amount=-2 +kerning first=311 second=333 amount=-3 +kerning first=286 second=346 amount=-2 +kerning first=89 second=217 amount=-1 +kerning first=355 second=119 amount=-1 +kerning first=314 second=275 amount=-1 +kerning first=382 second=119 amount=-2 +kerning first=89 second=100 amount=-3 +kerning first=112 second=230 amount=-1 +kerning first=367 second=44 amount=-2 +kerning first=367 second=45 amount=-2 +kerning first=66 second=46 amount=-4 +kerning first=350 second=275 amount=-1 +kerning first=80 second=353 amount=-1 +kerning first=356 second=346 amount=-3 +kerning first=333 second=249 amount=-1 +kerning first=213 second=65 amount=-4 +kerning first=66 second=69 amount=-4 +kerning first=321 second=70 amount=-2 +kerning first=66 second=72 amount=-4 +kerning first=84 second=73 amount=-1 +kerning first=78 second=74 amount=-1 +kerning first=98 second=353 amount=-2 +kerning first=66 second=79 amount=-3 +kerning first=321 second=80 amount=-2 +kerning first=76 second=81 amount=-1 +kerning first=199 second=82 amount=-3 +kerning first=381 second=199 amount=-1 +kerning first=193 second=84 amount=-6 +kerning first=213 second=86 amount=-2 +kerning first=66 second=87 amount=-3 +kerning first=363 second=97 amount=-1 +kerning first=110 second=98 amount=-2 +kerning first=235 second=99 amount=-1 +kerning first=377 second=100 amount=-1 +kerning first=66 second=101 amount=-1 +kerning first=193 second=102 amount=-1 +kerning first=351 second=307 amount=-2 +kerning first=88 second=104 amount=-1 +kerning first=187 second=105 amount=-1 +kerning first=102 second=106 amount=-1 +kerning first=66 second=107 amount=-3 +kerning first=235 second=108 amount=-3 +kerning first=8217 second=109 amount=-2 +kerning first=263 second=110 amount=-2 +kerning first=311 second=111 amount=-3 +kerning first=355 second=112 amount=-1 +kerning first=269 second=113 amount=-1 +kerning first=197 second=115 amount=-2 +kerning first=287 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=221 second=118 amount=-3 +kerning first=249 second=119 amount=-3 +kerning first=313 second=120 amount=-1 +kerning first=355 second=122 amount=-1 +kerning first=198 second=256 amount=-2 +kerning first=205 second=67 amount=-2 +kerning first=65 second=275 amount=-1 +kerning first=101 second=275 amount=-1 +kerning first=66 second=187 amount=-2 +kerning first=84 second=249 amount=-1 +kerning first=219 second=192 amount=-4 +kerning first=221 second=194 amount=-6 +kerning first=187 second=195 amount=-4 +kerning first=66 second=196 amount=-5 +kerning first=68 second=197 amount=-4 +kerning first=84 second=198 amount=-6 +kerning first=272 second=370 amount=-1 +kerning first=86 second=201 amount=-1 +kerning first=317 second=204 amount=-2 +kerning first=80 second=207 amount=-1 +kerning first=193 second=211 amount=-3 +kerning first=76 second=212 amount=-1 +kerning first=313 second=213 amount=-1 +kerning first=84 second=214 amount=-3 +kerning first=251 second=8217 amount=-3 +kerning first=315 second=218 amount=-3 +kerning first=197 second=219 amount=-3 +kerning first=351 second=223 amount=-1 +kerning first=249 second=224 amount=-1 +kerning first=323 second=225 amount=-2 +kerning first=211 second=227 amount=-1 +kerning first=86 second=228 amount=-4 +kerning first=243 second=229 amount=-1 +kerning first=325 second=230 amount=-2 +kerning first=217 second=231 amount=-2 +kerning first=235 second=233 amount=-1 +kerning first=303 second=234 amount=-3 +kerning first=261 second=235 amount=-1 +kerning first=72 second=237 amount=-1 +kerning first=330 second=45 amount=-4 +kerning first=120 second=240 amount=-2 +kerning first=80 second=242 amount=-1 +kerning first=365 second=243 amount=-1 +kerning first=8217 second=245 amount=-3 +kerning first=112 second=316 amount=-2 +kerning first=291 second=248 amount=-2 +kerning first=317 second=249 amount=-2 +kerning first=76 second=251 amount=-2 +kerning first=235 second=252 amount=-2 +kerning first=106 second=253 amount=-3 +kerning first=305 second=254 amount=-2 +kerning first=351 second=255 amount=-3 +kerning first=251 second=259 amount=-1 +kerning first=84 second=260 amount=-6 +kerning first=74 second=261 amount=-3 +kerning first=86 second=263 amount=-3 +kerning first=379 second=266 amount=-1 +kerning first=106 second=267 amount=-1 +kerning first=315 second=268 amount=-1 +kerning first=377 second=269 amount=-1 +kerning first=84 second=270 amount=-1 +kerning first=76 second=274 amount=-2 +kerning first=263 second=275 amount=-1 +kerning first=229 second=277 amount=-1 +kerning first=76 second=278 amount=-2 +kerning first=289 second=279 amount=-2 +kerning first=377 second=280 amount=-1 +kerning first=279 second=281 amount=-1 +kerning first=68 second=282 amount=-2 +kerning first=195 second=284 amount=-3 +kerning first=86 second=286 amount=-3 +kerning first=112 second=287 amount=-2 +kerning first=76 second=288 amount=-1 +kerning first=229 second=289 amount=-2 +kerning first=114 second=291 amount=-2 +kerning first=1078 second=1095 amount=-1 +kerning first=217 second=230 amount=-3 +kerning first=76 second=302 amount=-2 +kerning first=377 second=303 amount=-1 +kerning first=379 second=304 amount=-1 +kerning first=321 second=305 amount=-2 +kerning first=225 second=307 amount=-1 +kerning first=353 second=311 amount=-1 +kerning first=321 second=313 amount=-2 +kerning first=263 second=314 amount=-3 +kerning first=249 second=316 amount=-2 +kerning first=224 second=289 amount=-2 +kerning first=314 second=116 amount=-1 +kerning first=313 second=323 amount=-2 +kerning first=261 second=324 amount=-1 +kerning first=347 second=326 amount=-2 +kerning first=313 second=327 amount=-2 +kerning first=350 second=379 amount=-1 +kerning first=337 second=331 amount=-1 +kerning first=86 second=332 amount=-3 +kerning first=371 second=333 amount=-3 +kerning first=323 second=335 amount=-2 +kerning first=8217 second=336 amount=-2 +kerning first=205 second=338 amount=-2 +kerning first=225 second=339 amount=-1 +kerning first=370 second=237 amount=-2 +kerning first=98 second=345 amount=-1 +kerning first=8217 second=346 amount=-3 +kerning first=120 second=347 amount=-3 +kerning first=221 second=350 amount=-3 +kerning first=305 second=351 amount=-1 +kerning first=201 second=352 amount=-2 +kerning first=365 second=353 amount=-2 +kerning first=199 second=354 amount=-1 +kerning first=333 second=355 amount=-1 +kerning first=195 second=356 amount=-6 +kerning first=334 second=237 amount=-1 +kerning first=78 second=361 amount=-2 +kerning first=66 second=363 amount=-3 +kerning first=68 second=364 amount=-1 +kerning first=321 second=365 amount=-2 +kerning first=100 second=367 amount=-1 +kerning first=86 second=368 amount=-1 +kerning first=249 second=371 amount=-1 +kerning first=222 second=313 amount=-2 +kerning first=66 second=375 amount=-3 +kerning first=379 second=378 amount=-3 +kerning first=76 second=382 amount=-3 +kerning first=311 second=339 amount=-3 +kerning first=291 second=303 amount=-2 +kerning first=81 second=313 amount=-2 +kerning first=1062 second=1086 amount=-1 +kerning first=262 second=237 amount=-1 +kerning first=1088 second=1091 amount=-1 +kerning first=235 second=244 amount=-1 +kerning first=207 second=263 amount=-2 +kerning first=226 second=237 amount=-1 +kerning first=69 second=199 amount=-1 +kerning first=1079 second=1084 amount=-1 +kerning first=275 second=339 amount=-1 +kerning first=279 second=263 amount=-1 +kerning first=45 second=313 amount=-5 +kerning first=72 second=334 amount=-2 +kerning first=274 second=379 amount=-1 +kerning first=364 second=365 amount=-1 +kerning first=71 second=346 amount=-2 +kerning first=288 second=270 amount=-1 +kerning first=86 second=225 amount=-5 +kerning first=328 second=365 amount=-1 +kerning first=346 second=379 amount=-1 +kerning first=122 second=225 amount=-1 +kerning first=66 second=263 amount=-1 +kerning first=1080 second=1072 amount=-1 +kerning first=75 second=268 amount=-3 +kerning first=102 second=263 amount=-1 +kerning first=256 second=365 amount=-3 +kerning first=1044 second=1072 amount=-1 +kerning first=1061 second=1098 amount=-3 +kerning first=103 second=251 amount=-1 +kerning first=83 second=289 amount=-3 +kerning first=67 second=251 amount=-2 +kerning first=212 second=346 amount=-1 +kerning first=119 second=289 amount=-3 +kerning first=115 second=365 amount=-1 +kerning first=1045 second=1060 amount=-1 +kerning first=1105 second=1117 amount=-1 +kerning first=216 second=270 amount=-2 +kerning first=377 second=296 amount=-1 +kerning first=311 second=8221 amount=-2 +kerning first=313 second=315 amount=-2 +kerning first=212 second=374 amount=-2 +kerning first=280 second=251 amount=-2 +kerning first=374 second=72 amount=-1 +kerning first=257 second=121 amount=-3 +kerning first=244 second=251 amount=-1 +kerning first=120 second=277 amount=-2 +kerning first=338 second=72 amount=-2 +kerning first=251 second=254 amount=-2 +kerning first=221 second=121 amount=-3 +kerning first=352 second=251 amount=-1 +kerning first=261 second=277 amount=-1 +kerning first=287 second=254 amount=-1 +kerning first=71 second=374 amount=-3 +kerning first=316 second=251 amount=-2 +kerning first=225 second=277 amount=-1 +kerning first=202 second=351 amount=-1 +kerning first=374 second=120 amount=-2 +kerning first=89 second=231 amount=-3 +kerning first=218 second=245 amount=-2 +kerning first=116 second=121 amount=-1 +kerning first=1027 second=1074 amount=-2 +kerning first=266 second=381 amount=-2 +kerning first=1063 second=1074 amount=-1 +kerning first=203 second=79 amount=-1 +kerning first=84 second=277 amount=-3 +kerning first=311 second=367 amount=-1 +kerning first=110 second=254 amount=-2 +kerning first=1025 second=1118 amount=-1 +kerning first=1057 second=1105 amount=-1 +kerning first=83 second=261 amount=-2 +kerning first=219 second=117 amount=-1 +kerning first=1052 second=1119 amount=-1 +kerning first=379 second=244 amount=-1 +kerning first=356 second=114 amount=-1 +kerning first=275 second=367 amount=-2 +kerning first=376 second=76 amount=-1 +kerning first=1108 second=1081 amount=-1 +kerning first=221 second=381 amount=-3 +kerning first=248 second=114 amount=-1 +kerning first=291 second=117 amount=-1 +kerning first=224 second=261 amount=-1 +kerning first=203 second=367 amount=-2 +kerning first=255 second=117 amount=-1 +kerning first=89 second=72 amount=-1 +kerning first=205 second=83 amount=-2 +kerning first=310 second=351 amount=-1 +kerning first=381 second=192 amount=-1 +kerning first=268 second=76 amount=-3 +kerning first=354 second=199 amount=-3 +kerning first=307 second=232 amount=-1 +kerning first=98 second=367 amount=-1 +kerning first=327 second=117 amount=-2 +kerning first=196 second=336 amount=-3 +kerning first=284 second=374 amount=-3 +kerning first=365 second=121 amount=-3 +kerning first=1114 second=1096 amount=-1 +kerning first=382 second=351 amount=-2 +kerning first=1072 second=1081 amount=-1 +kerning first=194 second=108 amount=-2 +kerning first=313 second=83 amount=-1 +kerning first=346 second=351 amount=-1 +kerning first=266 second=72 amount=-3 +kerning first=194 second=8217 amount=-5 +kerning first=268 second=336 amount=-3 +kerning first=66 second=291 amount=-4 +kerning first=212 second=86 amount=-2 +kerning first=347 second=107 amount=-1 +kerning first=256 second=337 amount=-1 +kerning first=8217 second=234 amount=-3 +kerning first=275 second=102 amount=-2 +kerning first=221 second=249 amount=-1 +kerning first=220 second=337 amount=-2 +kerning first=233 second=240 amount=-1 +kerning first=1045 second=1088 amount=-1 +kerning first=210 second=171 amount=-1 +kerning first=269 second=240 amount=-1 +kerning first=317 second=382 amount=-3 +kerning first=203 second=107 amount=-1 +kerning first=353 second=382 amount=-2 +kerning first=8216 second=243 amount=-3 +kerning first=296 second=261 amount=-2 +kerning first=364 second=337 amount=-2 +kerning first=377 second=240 amount=-1 +kerning first=336 second=196 amount=-4 +kerning first=275 second=107 amount=-2 +kerning first=368 second=261 amount=-3 +kerning first=199 second=216 amount=-3 +kerning first=8222 second=370 amount=-3 +kerning first=78 second=117 amount=-2 +kerning first=1108 second=1116 amount=-1 +kerning first=262 second=209 amount=-3 +kerning first=1069 second=1024 amount=-1 +kerning first=1069 second=1025 amount=-1 +kerning first=1069 second=1030 amount=-1 +kerning first=1069 second=1031 amount=-1 +kerning first=1059 second=1033 amount=-5 +kerning first=1069 second=1034 amount=-1 +kerning first=1047 second=1036 amount=-2 +kerning first=1069 second=1037 amount=-1 +kerning first=71 second=86 amount=-3 +kerning first=1069 second=1039 amount=-1 +kerning first=1059 second=1040 amount=-6 +kerning first=1069 second=1041 amount=-1 +kerning first=1069 second=1043 amount=-1 +kerning first=1045 second=1045 amount=-1 +kerning first=379 second=216 amount=-1 +kerning first=1069 second=1048 amount=-1 +kerning first=1069 second=1049 amount=-1 +kerning first=266 second=100 amount=-2 +kerning first=1059 second=1051 amount=-5 +kerning first=1069 second=1052 amount=-1 +kerning first=78 second=382 amount=-1 +kerning first=1059 second=1054 amount=-3 +kerning first=1069 second=1055 amount=-1 +kerning first=1045 second=1056 amount=-1 +kerning first=1059 second=1057 amount=-3 +kerning first=1025 second=1058 amount=-1 +kerning first=1069 second=1059 amount=-3 +kerning first=1043 second=1060 amount=-1 +kerning first=1069 second=1062 amount=-1 +kerning first=1069 second=1063 amount=-2 +kerning first=282 second=171 amount=-2 +kerning first=302 second=100 amount=-2 +kerning first=1025 second=1067 amount=-1 +kerning first=197 second=240 amount=-1 +kerning first=1069 second=1070 amount=-1 +kerning first=1059 second=1072 amount=-4 +kerning first=1059 second=1073 amount=-3 +kerning first=1039 second=1074 amount=-1 +kerning first=1059 second=1075 amount=-4 +kerning first=1059 second=1076 amount=-5 +kerning first=1059 second=1077 amount=-4 +kerning first=1059 second=1078 amount=-3 +kerning first=1059 second=1079 amount=-3 +kerning first=1059 second=1080 amount=-4 +kerning first=1077 second=1081 amount=-1 +kerning first=1113 second=1082 amount=-1 +kerning first=76 second=202 amount=-2 +kerning first=1059 second=1084 amount=-4 +kerning first=1059 second=1085 amount=-4 +kerning first=1059 second=1086 amount=-4 +kerning first=334 second=209 amount=-2 +kerning first=1055 second=1088 amount=-1 +kerning first=1119 second=1089 amount=-1 +kerning first=1047 second=1090 amount=-1 +kerning first=1069 second=1091 amount=-1 +kerning first=1059 second=1092 amount=-4 +kerning first=1059 second=1093 amount=-3 +kerning first=1105 second=1095 amount=-1 +kerning first=1059 second=1096 amount=-4 +kerning first=354 second=171 amount=-5 +kerning first=374 second=100 amount=-3 +kerning first=1055 second=1099 amount=-1 +kerning first=1113 second=1100 amount=-1 +kerning first=1027 second=1101 amount=-1 +kerning first=1027 second=1102 amount=-2 +kerning first=1057 second=1103 amount=-1 +kerning first=1059 second=1104 amount=-4 +kerning first=1061 second=1105 amount=-2 +kerning first=1059 second=1107 amount=-4 +kerning first=1039 second=1108 amount=-1 +kerning first=246 second=227 amount=-1 +kerning first=1059 second=1113 amount=-5 +kerning first=1059 second=1114 amount=-4 +kerning first=1059 second=1116 amount=-4 +kerning first=268 second=252 amount=-2 +kerning first=214 second=350 amount=-1 +kerning first=1057 second=1119 amount=-1 +kerning first=353 second=254 amount=-2 +kerning first=210 second=227 amount=-1 +kerning first=304 second=252 amount=-1 +kerning first=73 second=350 amount=-2 +kerning first=105 second=227 amount=-2 +kerning first=376 second=252 amount=-1 +kerning first=120 second=305 amount=-1 +kerning first=362 second=246 amount=-2 +kerning first=1057 second=1031 amount=-1 +kerning first=84 second=305 amount=-2 +kerning first=365 second=8217 amount=-3 +kerning first=354 second=227 amount=-5 +kerning first=374 second=44 amount=-5 +kerning first=225 second=305 amount=-1 +kerning first=1118 second=1076 amount=-3 +kerning first=196 second=252 amount=-3 +kerning first=286 second=350 amount=-2 +kerning first=66 second=207 amount=-4 +kerning first=315 second=206 amount=-2 +kerning first=282 second=227 amount=-1 +kerning first=232 second=252 amount=-2 +kerning first=8217 second=287 amount=-4 +kerning first=264 second=356 amount=-1 +kerning first=218 second=246 amount=-2 +kerning first=74 second=226 amount=-3 +kerning first=261 second=305 amount=-1 +kerning first=209 second=382 amount=-1 +kerning first=351 second=291 amount=-3 +kerning first=332 second=317 amount=-2 +kerning first=110 second=226 amount=-1 +kerning first=369 second=305 amount=-1 +kerning first=200 second=260 amount=-2 +kerning first=245 second=382 amount=-2 +kerning first=315 second=291 amount=-3 +kerning first=225 second=45 amount=-2 +kerning first=192 second=356 amount=-6 +kerning first=218 second=121 amount=-1 +kerning first=113 second=246 amount=-1 +kerning first=333 second=305 amount=-1 +kerning first=281 second=382 amount=-2 +kerning first=279 second=291 amount=-3 +kerning first=112 second=44 amount=-3 +kerning first=201 second=103 amount=-3 +kerning first=77 second=246 amount=-2 +kerning first=272 second=260 amount=-4 +kerning first=243 second=291 amount=-2 +kerning first=321 second=362 amount=-3 +kerning first=69 second=227 amount=-1 +kerning first=251 second=226 amount=-1 +kerning first=207 second=291 amount=-3 +kerning first=315 second=207 amount=-2 +kerning first=261 second=45 amount=-2 +kerning first=287 second=226 amount=-3 +kerning first=68 second=382 amount=-2 +kerning first=369 second=45 amount=-2 +kerning first=323 second=226 amount=-2 +kerning first=104 second=382 amount=-1 +kerning first=102 second=291 amount=-2 +kerning first=304 second=336 amount=-2 +kerning first=8220 second=195 amount=-8 +kerning first=193 second=232 amount=-1 +kerning first=366 second=109 amount=-2 +kerning first=376 second=336 amount=-3 +kerning first=368 second=365 amount=-1 +kerning first=200 second=115 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=236 second=115 amount=-2 +kerning first=283 second=187 amount=-2 +kerning first=377 second=212 amount=-1 +kerning first=381 second=103 amount=-3 +kerning first=214 second=90 amount=-2 +kerning first=345 second=103 amount=-2 +kerning first=1027 second=1103 amount=-4 +kerning first=344 second=115 amount=-2 +kerning first=232 second=104 amount=-2 +kerning first=380 second=115 amount=-2 +kerning first=230 second=44 amount=-3 +kerning first=350 second=303 amount=-3 +kerning first=380 second=232 amount=-1 +kerning first=197 second=8221 amount=-5 +kerning first=87 second=213 amount=-3 +kerning first=344 second=232 amount=-3 +kerning first=192 second=213 amount=-3 +kerning first=89 second=44 amount=-5 +kerning first=200 second=259 amount=-1 +kerning first=8217 second=259 amount=-6 +kerning first=236 second=232 amount=-1 +kerning first=264 second=213 amount=-3 +kerning first=369 second=277 amount=-1 +kerning first=268 second=104 amount=-1 +kerning first=378 second=8249 amount=-3 +kerning first=101 second=303 amount=-2 +kerning first=87 second=328 amount=-3 +kerning first=201 second=75 amount=-2 +kerning first=187 second=315 amount=-5 +kerning first=65 second=303 amount=-1 +kerning first=283 second=98 amount=-2 +kerning first=1056 second=1048 amount=-1 +kerning first=250 second=118 amount=-3 +kerning first=381 second=75 amount=-1 +kerning first=1043 second=1104 amount=-3 +kerning first=278 second=303 amount=-1 +kerning first=270 second=8249 amount=-1 +kerning first=264 second=328 amount=-1 +kerning first=66 second=235 amount=-1 +kerning first=314 second=303 amount=-1 +kerning first=268 second=280 amount=-3 +kerning first=228 second=328 amount=-1 +kerning first=206 second=303 amount=-1 +kerning first=346 second=337 amount=-1 +kerning first=286 second=118 amount=-1 +kerning first=370 second=120 amount=-2 +kerning first=242 second=303 amount=-1 +kerning first=106 second=98 amount=-1 +kerning first=73 second=118 amount=-2 +kerning first=275 second=283 amount=-1 +kerning first=193 second=89 amount=-6 +kerning first=1118 second=1104 amount=-2 +kerning first=1082 second=1104 amount=-2 +kerning first=1089 second=1107 amount=-1 +kerning first=109 second=118 amount=-3 +kerning first=1046 second=1104 amount=-2 +kerning first=210 second=370 amount=-1 +kerning first=290 second=218 amount=-1 +kerning first=1053 second=1107 amount=-1 +kerning first=8220 second=223 amount=-1 +kerning first=80 second=325 amount=-1 +kerning first=266 second=233 amount=-2 +kerning first=84 second=193 amount=-6 +kerning first=264 second=241 amount=-1 +kerning first=260 second=263 amount=-1 +kerning first=355 second=98 amount=-1 +kerning first=282 second=370 amount=-2 +kerning first=218 second=83 amount=-3 +kerning first=203 second=196 amount=-2 +kerning first=234 second=122 amount=-2 +kerning first=90 second=269 amount=-1 +kerning first=378 second=305 amount=-2 +kerning first=311 second=283 amount=-3 +kerning first=102 second=104 amount=3 +kerning first=354 second=370 amount=-1 +kerning first=1025 second=1042 amount=-1 +kerning first=76 second=314 amount=-2 +kerning first=87 second=241 amount=-3 +kerning first=347 second=311 amount=-1 +kerning first=171 second=87 amount=-3 +kerning first=213 second=362 amount=-1 +kerning first=289 second=246 amount=-2 +kerning first=68 second=370 amount=-1 +kerning first=73 second=266 amount=-2 +kerning first=275 second=311 amount=-2 +kerning first=83 second=317 amount=-3 +kerning first=325 second=286 amount=-2 +kerning first=112 second=314 amount=-2 +kerning first=350 second=331 amount=-1 +kerning first=87 second=269 amount=-3 +kerning first=217 second=286 amount=-1 +kerning first=253 second=314 amount=-2 +kerning first=203 second=311 amount=-1 +kerning first=219 second=8249 amount=-5 +kerning first=231 second=261 amount=-2 +kerning first=278 second=331 amount=-1 +kerning first=1046 second=1108 amount=-2 +kerning first=336 second=356 amount=-2 +kerning first=314 second=331 amount=-1 +kerning first=1093 second=1118 amount=-2 +kerning first=1057 second=1059 amount=-1 +kerning first=289 second=314 amount=-3 +kerning first=354 second=255 amount=-3 +kerning first=207 second=235 amount=-2 +kerning first=83 second=345 amount=-2 +kerning first=212 second=237 amount=-1 +kerning first=267 second=328 amount=-2 +kerning first=264 second=269 amount=-2 +kerning first=376 second=280 amount=-1 +kerning first=119 second=345 amount=-1 +kerning first=228 second=269 amount=-1 +kerning first=76 second=286 amount=-1 +kerning first=258 second=81 amount=-3 +kerning first=101 second=331 amount=-2 +kerning first=222 second=196 amount=-4 +kerning first=246 second=255 amount=-3 +kerning first=98 second=224 amount=-1 +kerning first=337 second=112 amount=-1 +kerning first=330 second=81 amount=-2 +kerning first=1100 second=1090 amount=-1 +kerning first=1086 second=1087 amount=-1 +kerning first=1064 second=1090 amount=-1 +kerning first=203 second=224 amount=-1 +kerning first=105 second=255 amount=-3 +kerning first=311 second=224 amount=-2 +kerning first=366 second=81 amount=-1 +kerning first=368 second=345 amount=-1 +kerning first=275 second=224 amount=-2 +kerning first=193 second=112 amount=-3 +kerning first=281 second=326 amount=-2 +kerning first=66 second=378 amount=-4 +kerning first=1058 second=1078 amount=-3 +kerning first=90 second=205 amount=-1 +kerning first=317 second=326 amount=-1 +kerning first=256 second=250 amount=-3 +kerning first=243 second=347 amount=-2 +kerning first=347 second=224 amount=-1 +kerning first=353 second=326 amount=-2 +kerning first=207 second=347 amount=-2 +kerning first=98 second=255 amount=-3 +kerning first=8218 second=303 amount=-1 +kerning first=228 second=257 amount=-1 +kerning first=328 second=250 amount=-1 +kerning first=102 second=378 amount=-1 +kerning first=220 second=281 amount=-2 +kerning first=84 second=101 amount=-3 +kerning first=104 second=326 amount=-1 +kerning first=115 second=250 amount=-1 +kerning first=102 second=347 amount=-2 +kerning first=120 second=101 amount=-2 +kerning first=1069 second=1033 amount=-3 +kerning first=298 second=352 amount=-2 +kerning first=66 second=347 amount=-3 +kerning first=76 second=344 amount=-2 +kerning first=378 second=371 amount=-2 +kerning first=220 second=250 amount=-1 +kerning first=264 second=71 amount=-3 +kerning first=225 second=101 amount=-1 +kerning first=245 second=326 amount=-1 +kerning first=107 second=231 amount=-3 +kerning first=261 second=101 amount=-1 +kerning first=229 second=257 amount=-1 +kerning first=218 second=333 amount=-2 +kerning first=1119 second=1092 amount=-1 +kerning first=307 second=328 amount=-2 +kerning first=121 second=237 amount=-2 +kerning first=351 second=378 amount=-2 +kerning first=282 second=76 amount=-2 +kerning first=105 second=283 amount=-1 +kerning first=283 second=114 amount=-1 +kerning first=268 second=366 amount=-2 +kerning first=347 second=8220 amount=-2 +kerning first=369 second=101 amount=-1 +kerning first=1058 second=1047 amount=-1 +kerning first=235 second=328 amount=-2 +kerning first=311 second=8220 amount=-2 +kerning first=1030 second=1097 amount=-1 +kerning first=199 second=328 amount=-1 +kerning first=243 second=378 amount=-2 +kerning first=275 second=8220 amount=-2 +kerning first=290 second=302 amount=-1 +kerning first=351 second=345 amount=-1 +kerning first=88 second=257 amount=-1 +kerning first=207 second=378 amount=-1 +kerning first=1039 second=1073 amount=-1 +kerning first=85 second=352 amount=-3 +kerning first=113 second=333 amount=-1 +kerning first=379 second=328 amount=-1 +kerning first=77 second=333 amount=-2 +kerning first=1083 second=1092 amount=-1 +kerning first=1093 second=1090 amount=-1 +kerning first=8220 second=114 amount=-1 +kerning first=204 second=243 amount=-2 +kerning first=272 second=87 amount=-2 +kerning first=316 second=120 amount=-1 +kerning first=97 second=353 amount=-1 +kerning first=200 second=87 amount=-1 +kerning first=74 second=198 amount=-5 +kerning first=362 second=333 amount=-2 +kerning first=87 second=68 amount=-1 +kerning first=325 second=113 amount=-2 +kerning first=112 second=345 amount=-1 +kerning first=289 second=113 amount=-2 +kerning first=193 second=288 amount=-3 +kerning first=45 second=194 amount=-4 +kerning first=253 second=113 amount=-3 +kerning first=99 second=243 amount=-1 +kerning first=217 second=345 amount=-1 +kerning first=217 second=113 amount=-2 +kerning first=85 second=120 amount=-2 +kerning first=1030 second=1094 amount=-1 +kerning first=253 second=345 amount=-1 +kerning first=1039 second=1119 amount=-1 +kerning first=121 second=120 amount=-1 +kerning first=225 second=110 amount=-1 +kerning first=289 second=345 amount=-1 +kerning first=198 second=368 amount=-2 +kerning first=226 second=120 amount=-1 +kerning first=331 second=45 amount=-3 +kerning first=82 second=217 amount=-3 +kerning first=256 second=281 amount=-1 +kerning first=347 second=255 amount=-3 +kerning first=268 second=113 amount=-2 +kerning first=311 second=255 amount=-1 +kerning first=1059 second=1090 amount=-3 +kerning first=356 second=262 amount=-3 +kerning first=209 second=214 amount=-2 +kerning first=1102 second=1094 amount=-1 +kerning first=275 second=255 amount=-2 +kerning first=1074 second=1113 amount=-1 +kerning first=73 second=210 amount=-2 +kerning first=1079 second=1095 amount=-1 +kerning first=364 second=281 amount=-2 +kerning first=101 second=99 amount=-1 +kerning first=68 second=354 amount=-2 +kerning first=88 second=229 amount=-1 +kerning first=269 second=347 amount=-2 +kerning first=381 second=44 amount=-1 +kerning first=347 second=227 amount=-1 +kerning first=1024 second=1054 amount=-1 +kerning first=370 second=324 amount=-2 +kerning first=290 second=274 amount=-1 +kerning first=1039 second=1101 amount=-1 +kerning first=206 second=99 amount=-2 +kerning first=317 second=323 amount=-2 +kerning first=311 second=227 amount=-2 +kerning first=275 second=227 amount=-2 +kerning first=107 second=234 amount=-3 +kerning first=262 second=324 amount=-1 +kerning first=1049 second=1099 amount=-1 +kerning first=226 second=324 amount=-1 +kerning first=345 second=44 amount=-4 +kerning first=350 second=99 amount=-1 +kerning first=317 second=354 amount=-3 +kerning first=314 second=99 amount=-1 +kerning first=229 second=229 amount=-1 +kerning first=90 second=233 amount=-1 +kerning first=113 second=120 amount=-1 +kerning first=231 second=233 amount=-1 +kerning first=356 second=234 amount=-3 +kerning first=195 second=233 amount=-1 +kerning first=110 second=106 amount=-2 +kerning first=281 second=267 amount=-1 +kerning first=337 second=229 amount=-1 +kerning first=303 second=233 amount=-3 +kerning first=267 second=233 amount=-1 +kerning first=381 second=279 amount=-1 +kerning first=375 second=233 amount=-3 +kerning first=251 second=106 amount=-2 +kerning first=79 second=382 amount=-2 +kerning first=203 second=227 amount=-1 +kerning first=104 second=380 amount=-1 +kerning first=283 second=291 amount=-3 +kerning first=339 second=233 amount=-1 +kerning first=98 second=227 amount=-1 +kerning first=344 second=87 amount=-3 +kerning first=76 second=110 amount=-1 +kerning first=326 second=361 amount=-1 +kerning first=1047 second=1064 amount=-2 +kerning first=71 second=45 amount=-3 +kerning first=68 second=66 amount=-2 +kerning first=302 second=243 amount=-2 +kerning first=88 second=316 amount=-1 +kerning first=112 second=110 amount=-1 +kerning first=290 second=361 amount=-1 +kerning first=378 second=111 amount=-1 +kerning first=193 second=316 amount=-2 +kerning first=217 second=110 amount=-2 +kerning first=1074 second=1085 amount=-1 +kerning first=362 second=361 amount=-1 +kerning first=229 second=316 amount=-1 +kerning first=195 second=264 amount=-3 +kerning first=204 second=212 amount=-2 +kerning first=209 second=267 amount=-2 +kerning first=87 second=65 amount=-6 +kerning first=99 second=271 amount=-1 +kerning first=196 second=364 amount=-3 +kerning first=289 second=110 amount=-1 +kerning first=90 second=264 amount=-1 +kerning first=234 second=111 amount=-1 +kerning first=337 second=316 amount=-2 +kerning first=337 second=257 amount=-1 +kerning first=333 second=104 amount=-1 +kerning first=264 second=65 amount=-3 +kerning first=1065 second=1098 amount=-1 +kerning first=262 second=89 amount=-1 +kerning first=1038 second=1057 amount=-3 +kerning first=261 second=104 amount=-1 +kerning first=77 second=361 amount=-2 +kerning first=330 second=336 amount=-2 +kerning first=336 second=65 amount=-4 +kerning first=317 second=66 amount=-2 +kerning first=268 second=364 amount=-2 +kerning first=76 second=82 amount=-2 +kerning first=225 second=104 amount=-1 +kerning first=334 second=89 amount=-2 +kerning first=254 second=361 amount=-1 +kerning first=369 second=104 amount=-2 +kerning first=1116 second=1090 amount=-1 +kerning first=218 second=361 amount=-1 +kerning first=376 second=364 amount=-1 +kerning first=259 second=97 amount=-1 +kerning first=317 second=122 amount=-3 +kerning first=295 second=97 amount=-1 +kerning first=370 second=117 amount=-1 +kerning first=201 second=72 amount=-2 +kerning first=281 second=122 amount=-2 +kerning first=328 second=46 amount=-1 +kerning first=187 second=97 amount=-1 +kerning first=69 second=370 amount=-2 +kerning first=242 second=102 amount=-1 +kerning first=1063 second=1102 amount=-1 +kerning first=245 second=122 amount=-2 +kerning first=364 second=46 amount=-5 +kerning first=223 second=97 amount=-1 +kerning first=278 second=102 amount=-2 +kerning first=209 second=122 amount=-1 +kerning first=85 second=377 amount=-1 +kerning first=206 second=71 amount=-2 +kerning first=364 second=225 amount=-3 +kerning first=381 second=72 amount=-1 +kerning first=84 second=76 amount=-1 +kerning first=339 second=116 amount=-1 +kerning first=250 second=121 amount=-3 +kerning first=87 second=227 amount=-5 +kerning first=303 second=116 amount=-1 +kerning first=331 second=97 amount=-1 +kerning first=278 second=71 amount=-1 +kerning first=65 second=102 amount=-1 +kerning first=220 second=46 amount=-5 +kerning first=367 second=97 amount=-1 +kerning first=101 second=102 amount=-2 +kerning first=353 second=122 amount=-2 +kerning first=375 second=116 amount=-1 +kerning first=109 second=121 amount=-2 +kerning first=262 second=377 amount=-2 +kerning first=85 second=117 amount=-1 +kerning first=350 second=219 amount=-3 +kerning first=259 second=245 amount=-1 +kerning first=1058 second=1103 amount=-4 +kerning first=121 second=117 amount=-1 +kerning first=79 second=46 amount=-3 +kerning first=278 second=219 amount=-2 +kerning first=314 second=102 amount=-1 +kerning first=262 second=117 amount=-2 +kerning first=201 second=332 amount=-1 +kerning first=350 second=102 amount=-3 +kerning first=226 second=117 amount=-1 +kerning first=104 second=122 amount=-1 +kerning first=334 second=377 amount=-2 +kerning first=104 second=8217 amount=-4 +kerning first=107 second=287 amount=-2 +kerning first=68 second=122 amount=-2 +kerning first=71 second=287 amount=-3 +kerning first=367 second=245 amount=-1 +kerning first=198 second=200 amount=-2 +kerning first=352 second=364 amount=-3 +kerning first=381 second=332 amount=-1 +kerning first=212 second=287 amount=-1 +kerning first=1077 second=1114 amount=-1 +kerning first=204 second=240 amount=-2 +kerning first=356 second=259 amount=-5 +kerning first=82 second=242 amount=-3 +kerning first=284 second=287 amount=-3 +kerning first=248 second=287 amount=-2 +kerning first=278 second=249 amount=-2 +kerning first=99 second=240 amount=-1 +kerning first=1055 second=1114 amount=-1 +kerning first=356 second=287 amount=-4 +kerning first=108 second=8221 amount=-3 +kerning first=1074 second=1088 amount=-1 +kerning first=201 second=220 amount=-2 +kerning first=118 second=242 amount=-3 +kerning first=212 second=259 amount=-1 +kerning first=259 second=242 amount=-1 +kerning first=381 second=304 amount=-1 +kerning first=68 second=298 amount=-2 +kerning first=198 second=284 amount=-1 +kerning first=82 second=214 amount=-3 +kerning first=284 second=259 amount=-1 +kerning first=261 second=8220 amount=-3 +kerning first=305 second=8221 amount=-2 +kerning first=251 second=369 amount=-1 +kerning first=85 second=324 amount=-2 +kerning first=195 second=116 amount=-1 +kerning first=250 second=380 amount=-2 +kerning first=351 second=375 amount=-3 +kerning first=116 second=8249 amount=-1 +kerning first=315 second=375 amount=-3 +kerning first=323 second=369 amount=-2 +kerning first=267 second=116 amount=-1 +kerning first=198 second=197 amount=-2 +kerning first=377 second=377 amount=-1 +kerning first=364 second=194 amount=-4 +kerning first=65 second=71 amount=-3 +kerning first=279 second=375 amount=-2 +kerning first=287 second=369 amount=-1 +kerning first=121 second=324 amount=-2 +kerning first=231 second=116 amount=-1 +kerning first=82 second=97 amount=-2 +kerning first=104 second=119 amount=-3 +kerning first=217 second=45 amount=-5 +kerning first=118 second=97 amount=-3 +kerning first=256 second=350 amount=-3 +kerning first=201 second=304 amount=-2 +kerning first=209 second=119 amount=-2 +kerning first=90 second=116 amount=-1 +kerning first=220 second=194 amount=-4 +kerning first=245 second=119 amount=-2 +kerning first=110 second=369 amount=-1 +kerning first=290 second=330 amount=-1 +kerning first=281 second=119 amount=-2 +kerning first=381 second=248 amount=-1 +kerning first=79 second=74 amount=-2 +kerning first=234 second=228 amount=-2 +kerning first=1027 second=1105 amount=-3 +kerning first=328 second=253 amount=-2 +kerning first=317 second=119 amount=-3 +kerning first=284 second=203 amount=-1 +kerning first=192 second=232 amount=-1 +kerning first=198 second=228 amount=-1 +kerning first=364 second=253 amount=-1 +kerning first=367 second=273 amount=-1 +kerning first=220 second=74 amount=-3 +kerning first=243 second=375 amount=-3 +kerning first=1077 second=1080 amount=-1 +kerning first=259 second=273 amount=-1 +kerning first=287 second=223 amount=-1 +kerning first=251 second=223 amount=-1 +kerning first=1099 second=1105 amount=-1 +kerning first=102 second=375 amount=-1 +kerning first=364 second=74 amount=-3 +kerning first=240 second=355 amount=-1 +kerning first=118 second=273 amount=-3 +kerning first=264 second=68 amount=-3 +kerning first=268 second=328 amount=-1 +kerning first=204 second=268 amount=-2 +kerning first=259 second=244 amount=-1 +kerning first=221 second=196 amount=-6 +kerning first=99 second=355 amount=-1 +kerning first=198 second=80 amount=-2 +kerning first=115 second=253 amount=-3 +kerning first=317 second=298 amount=-2 +kerning first=220 second=253 amount=-1 +kerning first=336 second=68 amount=-2 +kerning first=256 second=253 amount=-3 +kerning first=356 second=203 amount=-1 +kerning first=201 second=363 amount=-2 +kerning first=68 second=270 amount=-2 +kerning first=381 second=335 amount=-1 +kerning first=98 second=8217 amount=-2 +kerning first=234 second=108 amount=-3 +kerning first=274 second=298 amount=-2 +kerning first=74 second=338 amount=-2 +kerning first=208 second=381 amount=-2 +kerning first=356 second=290 amount=-3 +kerning first=364 second=105 amount=-2 +kerning first=381 second=363 amount=-3 +kerning first=118 second=245 amount=-3 +kerning first=335 second=249 amount=-1 +kerning first=378 second=108 amount=-2 +kerning first=248 second=318 amount=-2 +kerning first=82 second=245 amount=-3 +kerning first=284 second=318 amount=-1 +kerning first=328 second=105 amount=-1 +kerning first=76 second=85 amount=-3 +kerning first=262 second=380 amount=-2 +kerning first=256 second=105 amount=-1 +kerning first=356 second=231 amount=-3 +kerning first=8218 second=362 amount=-3 +kerning first=290 second=318 amount=-1 +kerning first=298 second=380 amount=-1 +kerning first=115 second=105 amount=-2 +kerning first=1038 second=1060 amount=-3 +kerning first=334 second=380 amount=-2 +kerning first=1091 second=1083 amount=-3 +kerning first=108 second=331 amount=-1 +kerning first=328 second=225 amount=-1 +kerning first=307 second=8217 amount=-2 +kerning first=370 second=380 amount=-3 +kerning first=111 second=316 amount=-2 +kerning first=85 second=380 amount=-3 +kerning first=323 second=338 amount=-2 +kerning first=378 second=228 amount=-1 +kerning first=79 second=105 amount=-1 +kerning first=275 second=8217 amount=-2 +kerning first=79 second=225 amount=-1 +kerning first=98 second=119 amount=-2 +kerning first=121 second=380 amount=-3 +kerning first=317 second=270 amount=-2 +kerning first=115 second=225 amount=-1 +kerning first=198 second=108 amount=-1 +kerning first=347 second=8217 amount=-2 +kerning first=313 second=350 amount=-1 +kerning first=226 second=380 amount=-1 +kerning first=330 second=351 amount=-2 +kerning first=234 second=225 amount=-2 +kerning first=201 second=221 amount=-1 +kerning first=110 second=251 amount=-1 +kerning first=371 second=228 amount=-2 +kerning first=8217 second=262 amount=-2 +kerning first=251 second=251 amount=-1 +kerning first=335 second=228 amount=-1 +kerning first=376 second=282 amount=-1 +kerning first=1051 second=1100 amount=-1 +kerning first=108 second=303 amount=-1 +kerning first=240 second=98 amount=-1 +kerning first=323 second=251 amount=-2 +kerning first=263 second=228 amount=-2 +kerning first=236 second=235 amount=-1 +kerning first=1114 second=1093 amount=-2 +kerning first=287 second=251 amount=-1 +kerning first=227 second=228 amount=-1 +kerning first=278 second=192 amount=-2 +kerning first=1042 second=1093 amount=-3 +kerning first=72 second=303 amount=-1 +kerning first=122 second=228 amount=-1 +kerning first=198 second=225 amount=-1 +kerning first=278 second=46 amount=-1 +kerning first=252 second=273 amount=-1 +kerning first=220 second=102 amount=-1 +kerning first=262 second=206 amount=-3 +kerning first=256 second=102 amount=-1 +kerning first=350 second=46 amount=-4 +kerning first=8216 second=87 amount=-1 +kerning first=214 second=325 amount=-2 +kerning first=334 second=206 amount=-2 +kerning first=109 second=365 amount=-1 +kerning first=328 second=102 amount=-1 +kerning first=101 second=46 amount=-3 +kerning first=71 second=83 amount=-2 +kerning first=45 second=310 amount=-5 +kerning first=378 second=225 amount=-1 +kerning first=286 second=325 amount=-1 +kerning first=84 second=280 amount=-1 +kerning first=206 second=46 amount=-1 +kerning first=277 second=287 amount=-3 +kerning first=115 second=102 amount=-2 +kerning first=212 second=83 amount=-1 +kerning first=106 second=355 amount=-1 +kerning first=315 second=266 amount=-1 +kerning first=338 second=363 amount=-2 +kerning first=258 second=112 amount=-3 +kerning first=290 second=46 amount=-3 +kerning first=284 second=83 amount=-2 +kerning first=374 second=363 amount=-2 +kerning first=222 second=112 amount=-1 +kerning first=241 second=318 amount=-1 +kerning first=280 second=378 amount=-2 +kerning first=79 second=362 amount=-1 +kerning first=277 second=318 amount=-3 +kerning first=356 second=83 amount=-3 +kerning first=117 second=112 amount=-2 +kerning first=313 second=318 amount=-2 +kerning first=250 second=289 amount=-3 +kerning first=81 second=112 amount=-1 +kerning first=317 second=214 amount=-1 +kerning first=207 second=266 amount=-2 +kerning first=45 second=112 amount=-2 +kerning first=377 second=210 amount=-1 +kerning first=66 second=266 amount=-3 +kerning first=268 second=311 amount=-1 +kerning first=344 second=235 amount=-3 +kerning first=378 second=259 amount=-1 +kerning first=321 second=105 amount=-2 +kerning first=380 second=235 amount=-1 +kerning first=1025 second=1084 amount=-1 +kerning first=88 second=81 amount=-3 +kerning first=249 second=105 amount=-2 +kerning first=99 second=98 amount=-2 +kerning first=378 second=248 amount=-1 +kerning first=234 second=259 amount=-2 +kerning first=198 second=259 amount=-1 +kerning first=213 second=105 amount=-1 +kerning first=366 second=112 amount=-2 +kerning first=197 second=67 amount=-3 +kerning first=1037 second=1081 amount=-1 +kerning first=72 second=105 amount=-1 +kerning first=330 second=112 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=282 second=230 amount=-1 +kerning first=1064 second=1079 amount=-1 +kerning first=66 second=204 amount=-4 +kerning first=259 second=100 amount=-1 +kerning first=67 second=282 amount=-3 +kerning first=304 second=249 amount=-1 +kerning first=90 second=379 amount=-1 +kerning first=1118 second=1079 amount=-1 +kerning first=219 second=346 amount=-3 +kerning first=210 second=230 amount=-1 +kerning first=377 second=327 amount=-1 +kerning first=1064 second=1075 amount=-1 +kerning first=232 second=249 amount=-2 +kerning first=246 second=230 amount=-1 +kerning first=1046 second=1079 amount=-1 +kerning first=1104 second=1098 amount=-1 +kerning first=268 second=249 amount=-2 +kerning first=307 second=275 amount=-1 +kerning first=105 second=230 amount=-2 +kerning first=65 second=334 amount=-3 +kerning first=82 second=100 amount=-3 +kerning first=1061 second=1095 amount=-3 +kerning first=118 second=100 amount=-3 +kerning first=1025 second=1095 amount=-2 +kerning first=235 second=275 amount=-1 +kerning first=315 second=204 amount=-2 +kerning first=376 second=249 amount=-1 +kerning first=327 second=346 amount=-2 +kerning first=69 second=230 amount=-1 +kerning first=196 second=107 amount=-2 +kerning first=381 second=256 amount=-1 +kerning first=354 second=339 amount=-3 +kerning first=217 second=8249 amount=-5 +kerning first=381 second=223 amount=-1 +kerning first=232 second=305 amount=-2 +kerning first=268 second=107 amount=-1 +kerning first=196 second=305 amount=-1 +kerning first=232 second=107 amount=-2 +kerning first=84 second=333 amount=-3 +kerning first=304 second=305 amount=-1 +kerning first=66 second=260 amount=-5 +kerning first=298 second=268 amount=-2 +kerning first=8218 second=250 amount=-1 +kerning first=268 second=305 amount=-1 +kerning first=354 second=230 amount=-5 +kerning first=313 second=256 amount=-2 +kerning first=376 second=305 amount=-2 +kerning first=75 second=211 amount=-3 +kerning first=257 second=316 amount=-1 +kerning first=201 second=223 amount=-1 +kerning first=370 second=268 amount=-1 +kerning first=1025 second=1039 amount=-1 +kerning first=369 second=8217 amount=-3 +kerning first=192 second=244 amount=-1 +kerning first=374 second=192 amount=-6 +kerning first=228 second=244 amount=-1 +kerning first=338 second=192 amount=-2 +kerning first=250 second=263 amount=-1 +kerning first=108 second=365 amount=-2 +kerning first=1086 second=1084 amount=-1 +kerning first=1098 second=1117 amount=-1 +kerning first=262 second=268 amount=-3 +kerning first=71 second=315 amount=-1 +kerning first=264 second=244 amount=-2 +kerning first=72 second=365 amount=-2 +kerning first=315 second=260 amount=-2 +kerning first=8220 second=226 amount=-3 +kerning first=266 second=192 amount=-3 +kerning first=363 second=237 amount=-2 +kerning first=84 second=218 amount=-1 +kerning first=327 second=237 amount=-1 +kerning first=203 second=199 amount=-1 +kerning first=261 second=8217 amount=-3 +kerning first=73 second=263 amount=-2 +kerning first=291 second=237 amount=-2 +kerning first=255 second=237 amount=-2 +kerning first=333 second=8217 amount=-2 +kerning first=89 second=192 amount=-6 +kerning first=228 second=353 amount=-1 +kerning first=219 second=237 amount=-2 +kerning first=214 second=366 amount=-1 +kerning first=73 second=121 amount=-2 +kerning first=199 second=275 amount=-2 +kerning first=264 second=353 amount=-2 +kerning first=206 second=334 amount=-2 +kerning first=375 second=101 amount=-3 +kerning first=284 second=315 amount=-1 +kerning first=112 second=289 amount=-2 +kerning first=278 second=334 amount=-1 +kerning first=78 second=237 amount=-1 +kerning first=280 second=282 amount=-2 +kerning first=356 second=315 amount=-1 +kerning first=1057 second=1034 amount=-1 +kerning first=217 second=289 amount=-4 +kerning first=78 second=346 amount=-2 +kerning first=87 second=353 amount=-3 +kerning first=8250 second=354 amount=-4 +kerning first=208 second=282 amount=-2 +kerning first=87 second=244 amount=-3 +kerning first=220 second=268 amount=-1 +kerning first=1060 second=1051 amount=-3 +kerning first=88 second=232 amount=-2 +kerning first=104 second=351 amount=-1 +kerning first=72 second=99 amount=-2 +kerning first=248 second=371 amount=-1 +kerning first=74 second=257 amount=-3 +kerning first=229 second=232 amount=-1 +kerning first=1025 second=1065 amount=-1 +kerning first=362 second=277 amount=-2 +kerning first=110 second=257 amount=-1 +kerning first=279 second=249 amount=-2 +kerning first=1103 second=1089 amount=-1 +kerning first=371 second=8249 amount=-2 +kerning first=113 second=277 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=214 second=381 amount=-2 +kerning first=71 second=8249 amount=-3 +kerning first=70 second=361 amount=-1 +kerning first=337 second=347 amount=-2 +kerning first=332 second=202 amount=-2 +kerning first=218 second=277 amount=-2 +kerning first=107 second=371 amount=-1 +kerning first=286 second=381 amount=-2 +kerning first=84 second=336 amount=-3 +kerning first=353 second=351 amount=-3 +kerning first=252 second=267 amount=-1 +kerning first=288 second=69 amount=-1 +kerning first=376 second=367 amount=-2 +kerning first=317 second=351 amount=-1 +kerning first=370 second=212 amount=-1 +kerning first=77 second=277 amount=-2 +kerning first=69 second=79 amount=-1 +kerning first=262 second=212 amount=-3 +kerning first=216 second=69 amount=-2 +kerning first=304 second=367 amount=-2 +kerning first=1118 second=1113 amount=-3 +kerning first=1049 second=1096 amount=-1 +kerning first=1101 second=1081 amount=-1 +kerning first=209 second=351 amount=-2 +kerning first=323 second=257 amount=-2 +kerning first=232 second=367 amount=-2 +kerning first=354 second=79 amount=-3 +kerning first=268 second=367 amount=-2 +kerning first=281 second=351 amount=-2 +kerning first=85 second=212 amount=-1 +kerning first=251 second=257 amount=-1 +kerning first=1037 second=1100 amount=-1 +kerning first=277 second=114 amount=-1 +kerning first=245 second=351 amount=-2 +kerning first=282 second=79 amount=-1 +kerning first=287 second=257 amount=-3 +kerning first=196 second=367 amount=-3 +kerning first=236 second=291 amount=-3 +kerning first=122 second=337 amount=-1 +kerning first=258 second=316 amount=-2 +kerning first=267 second=261 amount=-2 +kerning first=200 second=291 amount=-3 +kerning first=86 second=337 amount=-3 +kerning first=261 second=229 amount=-1 +kerning first=303 second=261 amount=-2 +kerning first=206 second=216 amount=-2 +kerning first=8250 second=298 amount=-5 +kerning first=375 second=261 amount=-3 +kerning first=119 second=314 amount=-2 +kerning first=75 second=267 amount=-2 +kerning first=67 second=226 amount=-2 +kerning first=233 second=271 amount=-1 +kerning first=90 second=261 amount=-1 +kerning first=216 second=382 amount=-2 +kerning first=263 second=337 amount=-1 +kerning first=83 second=314 amount=-2 +kerning first=103 second=226 amount=-3 +kerning first=269 second=271 amount=-1 +kerning first=252 second=382 amount=-2 +kerning first=227 second=337 amount=-1 +kerning first=224 second=314 amount=-1 +kerning first=1045 second=1057 amount=-1 +kerning first=378 second=281 amount=-1 +kerning first=288 second=382 amount=-1 +kerning first=1053 second=1104 amount=-1 +kerning first=65 second=216 amount=-3 +kerning first=208 second=226 amount=-1 +kerning first=324 second=382 amount=-1 +kerning first=295 second=326 amount=-1 +kerning first=253 second=171 amount=-4 +kerning first=260 second=314 amount=-2 +kerning first=106 second=361 amount=-1 +kerning first=331 second=326 amount=-1 +kerning first=229 second=347 amount=-1 +kerning first=289 second=171 amount=-3 +kerning first=371 second=337 amount=-3 +kerning first=1067 second=1082 amount=-1 +kerning first=367 second=326 amount=-1 +kerning first=1088 second=1116 amount=-1 +kerning first=193 second=347 amount=-2 +kerning first=234 second=281 amount=-1 +kerning first=325 second=171 amount=-4 +kerning first=45 second=316 amount=-1 +kerning first=1052 second=1116 amount=-1 +kerning first=361 second=171 amount=-2 +kerning first=106 second=255 amount=-3 +kerning first=88 second=288 amount=-3 +kerning first=278 second=216 amount=-1 +kerning first=69 second=224 amount=-1 +kerning first=118 second=326 amount=-2 +kerning first=76 second=171 amount=-1 +kerning first=83 second=202 amount=-3 +kerning first=283 second=361 amount=-2 +kerning first=117 second=316 amount=-2 +kerning first=187 second=326 amount=-2 +kerning first=235 second=269 amount=-1 +kerning first=1042 second=1037 amount=-2 +kerning first=241 second=8221 amount=-4 +kerning first=223 second=326 amount=-1 +kerning first=105 second=224 amount=-2 +kerning first=355 second=361 amount=-1 +kerning first=259 second=326 amount=-1 +kerning first=307 second=269 amount=-1 +kerning first=217 second=171 amount=-5 +kerning first=304 second=45 amount=-4 +kerning first=246 second=224 amount=-1 +kerning first=268 second=45 amount=-4 +kerning first=8220 second=279 amount=-3 +kerning first=210 second=224 amount=-1 +kerning first=379 second=269 amount=-1 +kerning first=89 second=103 amount=-4 +kerning first=98 second=115 amount=-2 +kerning first=229 second=371 amount=-1 +kerning first=67 second=78 amount=-3 +kerning first=275 second=252 amount=-2 +kerning first=282 second=224 amount=-1 +kerning first=1108 second=1082 amount=-1 +kerning first=253 second=227 amount=-3 +kerning first=354 second=224 amount=-4 +kerning first=217 second=227 amount=-3 +kerning first=317 second=206 amount=-2 +kerning first=98 second=252 amount=-1 +kerning first=222 second=201 amount=-2 +kerning first=112 second=227 amount=-1 +kerning first=286 second=207 amount=-1 +kerning first=244 second=226 amount=-1 +kerning first=232 second=101 amount=-1 +kerning first=280 second=226 amount=-1 +kerning first=283 second=246 amount=-1 +kerning first=268 second=101 amount=-2 +kerning first=81 second=201 amount=-2 +kerning first=1025 second=1101 amount=-1 +kerning first=316 second=226 amount=-2 +kerning first=374 second=103 amount=-4 +kerning first=114 second=44 amount=-4 +kerning first=304 second=101 amount=-2 +kerning first=45 second=201 amount=-5 +kerning first=1061 second=1101 amount=-1 +kerning first=221 second=90 amount=-3 +kerning first=338 second=103 amount=-3 +kerning first=110 second=316 amount=-1 +kerning first=311 second=252 amount=-1 +kerning first=302 second=103 amount=-3 +kerning first=344 second=291 amount=-3 +kerning first=347 second=252 amount=-1 +kerning first=376 second=101 amount=-3 +kerning first=266 second=103 amount=-3 +kerning first=106 second=246 amount=-1 +kerning first=214 second=207 amount=-2 +kerning first=90 second=317 amount=-1 +kerning first=256 second=362 amount=-3 +kerning first=230 second=103 amount=-3 +kerning first=1116 second=1105 amount=-2 +kerning first=196 second=45 amount=-4 +kerning first=80 second=356 amount=-1 +kerning first=194 second=103 amount=-3 +kerning first=82 second=44 amount=-2 +kerning first=199 second=213 amount=-3 +kerning first=200 second=84 amount=-1 +kerning first=347 second=104 amount=-1 +kerning first=1047 second=1067 amount=-2 +kerning first=212 second=89 amount=-2 +kerning first=368 second=74 amount=-3 +kerning first=118 second=44 amount=-5 +kerning first=354 second=283 amount=-3 +kerning first=284 second=89 amount=-3 +kerning first=228 second=367 amount=-1 +kerning first=287 second=109 amount=-1 +kerning first=71 second=89 amount=-3 +kerning first=344 second=84 amount=-3 +kerning first=362 second=338 amount=-1 +kerning first=66 second=115 amount=-3 +kerning first=8217 second=111 amount=-3 +kerning first=344 second=356 amount=-3 +kerning first=268 second=193 amount=-3 +kerning first=203 second=370 amount=-2 +kerning first=272 second=84 amount=-2 +kerning first=379 second=213 amount=-1 +kerning first=207 second=115 amount=-2 +kerning first=110 second=109 amount=-1 +kerning first=321 second=303 amount=-2 +kerning first=243 second=115 amount=-2 +kerning first=240 second=187 amount=-2 +kerning first=74 second=109 amount=-1 +kerning first=352 second=78 amount=-3 +kerning first=213 second=303 amount=-1 +kerning first=102 second=115 amount=-2 +kerning first=122 second=8249 amount=-3 +kerning first=325 second=227 amount=-2 +kerning first=249 second=303 amount=-2 +kerning first=1045 second=1113 amount=-1 +kerning first=289 second=227 amount=-3 +kerning first=280 second=78 amount=-2 +kerning first=351 second=115 amount=-3 +kerning first=259 second=44 amount=-1 +kerning first=256 second=346 amount=-3 +kerning first=223 second=44 amount=-3 +kerning first=8216 second=240 amount=-3 +kerning first=86 second=8249 amount=-5 +kerning first=208 second=78 amount=-2 +kerning first=279 second=115 amount=-2 +kerning first=331 second=44 amount=-1 +kerning first=315 second=115 amount=-1 +kerning first=295 second=44 amount=-1 +kerning first=67 second=75 amount=-3 +kerning first=69 second=374 amount=-1 +kerning first=313 second=368 amount=-3 +kerning first=305 second=120 amount=-1 +kerning first=201 second=78 amount=-2 +kerning first=279 second=378 amount=-2 +kerning first=313 second=203 amount=-2 +kerning first=234 second=46 amount=-3 +kerning first=379 second=68 amount=-1 +kerning first=73 second=375 amount=-2 +kerning first=374 second=248 amount=-3 +kerning first=1069 second=1064 amount=-1 +kerning first=367 second=361 amount=-1 +kerning first=351 second=118 amount=-3 +kerning first=208 second=75 amount=-2 +kerning first=216 second=323 amount=-2 +kerning first=8218 second=105 amount=-1 +kerning first=218 second=8249 amount=-5 +kerning first=8222 second=230 amount=-2 +kerning first=366 second=198 amount=-4 +kerning first=302 second=248 amount=-2 +kerning first=233 second=120 amount=-2 +kerning first=86 second=278 amount=-1 +kerning first=288 second=323 amount=-1 +kerning first=269 second=120 amount=-2 +kerning first=210 second=85 amount=-1 +kerning first=108 second=253 amount=-3 +kerning first=243 second=118 amount=-2 +kerning first=1031 second=1085 amount=-1 +kerning first=296 second=113 amount=-2 +kerning first=207 second=118 amount=-2 +kerning first=346 second=298 amount=-3 +kerning first=352 second=75 amount=-3 +kerning first=376 second=196 amount=-6 +kerning first=8220 second=257 amount=-3 +kerning first=315 second=118 amount=-3 +kerning first=224 second=113 amount=-1 +kerning first=249 second=253 amount=-3 +kerning first=279 second=118 amount=-2 +kerning first=280 second=75 amount=-2 +kerning first=97 second=233 amount=-1 +kerning first=66 second=118 amount=-3 +kerning first=77 second=382 amount=-1 +kerning first=268 second=196 amount=-3 +kerning first=365 second=112 amount=-2 +kerning first=321 second=253 amount=-3 +kerning first=86 second=80 amount=-1 +kerning first=310 second=233 amount=-2 +kerning first=199 second=68 amount=-3 +kerning first=368 second=113 amount=-2 +kerning first=1067 second=1085 amount=-1 +kerning first=100 second=108 amount=-1 +kerning first=382 second=233 amount=-1 +kerning first=78 second=290 amount=-2 +kerning first=1057 second=1087 amount=-1 +kerning first=325 second=283 amount=-2 +kerning first=316 second=335 amount=-1 +kerning first=257 second=241 amount=-1 +kerning first=346 second=233 amount=-1 +kerning first=280 second=338 amount=-1 +kerning first=289 second=283 amount=-2 +kerning first=352 second=335 amount=-1 +kerning first=365 second=241 amount=-1 +kerning first=253 second=283 amount=-3 +kerning first=1042 second=1040 amount=-2 +kerning first=350 second=328 amount=-1 +kerning first=83 second=110 amount=-1 +kerning first=219 second=290 amount=-1 +kerning first=217 second=283 amount=-2 +kerning first=354 second=85 amount=-1 +kerning first=277 second=108 amount=-3 +kerning first=103 second=335 amount=-2 +kerning first=119 second=110 amount=-2 +kerning first=269 second=380 amount=-2 +kerning first=354 second=286 amount=-3 +kerning first=241 second=108 amount=-1 +kerning first=8220 second=220 amount=-1 +kerning first=105 second=251 amount=-1 +kerning first=305 second=380 amount=-1 +kerning first=204 second=67 amount=-2 +kerning first=221 second=241 amount=-3 +kerning first=224 second=110 amount=-1 +kerning first=282 second=286 amount=-1 +kerning first=313 second=108 amount=-2 +kerning first=377 second=380 amount=-3 +kerning first=73 second=115 amount=-2 +kerning first=230 second=248 amount=-1 +kerning first=219 second=231 amount=-2 +kerning first=379 second=331 amount=-1 +kerning first=109 second=115 amount=-1 +kerning first=199 second=65 amount=-3 +kerning first=255 second=231 amount=-3 +kerning first=69 second=286 amount=-1 +kerning first=368 second=110 amount=-2 +kerning first=1072 second=1102 amount=-1 +kerning first=307 second=331 amount=-2 +kerning first=67 second=335 amount=-2 +kerning first=203 second=193 amount=-2 +kerning first=194 second=248 amount=-1 +kerning first=233 second=380 amount=-2 +kerning first=199 second=331 amount=-1 +kerning first=250 second=115 amount=-2 +kerning first=363 second=231 amount=-1 +kerning first=235 second=331 amount=-2 +kerning first=84 second=70 amount=-1 +kerning first=89 second=248 amount=-3 +kerning first=379 second=65 amount=-1 +kerning first=291 second=231 amount=-2 +kerning first=381 second=78 amount=-1 +kerning first=327 second=231 amount=-2 +kerning first=1046 second=1073 amount=-3 +kerning first=304 second=255 amount=-2 +kerning first=111 second=326 amount=-1 +kerning first=380 second=347 amount=-2 +kerning first=211 second=302 amount=-2 +kerning first=1082 second=1073 amount=-1 +kerning first=81 second=257 amount=-1 +kerning first=344 second=347 amount=-2 +kerning first=379 second=324 amount=-1 +kerning first=1118 second=1073 amount=-1 +kerning first=332 second=205 amount=-2 +kerning first=232 second=255 amount=-2 +kerning first=8217 second=196 amount=-6 +kerning first=1075 second=1076 amount=-2 +kerning first=229 second=242 amount=-1 +kerning first=230 second=307 amount=-2 +kerning first=252 second=326 amount=-1 +kerning first=1061 second=1113 amount=-2 +kerning first=83 second=205 amount=-3 +kerning first=249 second=289 amount=-3 +kerning first=249 second=250 amount=-1 +kerning first=236 second=347 amount=-2 +kerning first=8222 second=289 amount=-1 +kerning first=78 second=231 amount=-2 +kerning first=200 second=347 amount=-1 +kerning first=337 second=8250 amount=-2 +kerning first=205 second=262 amount=-2 +kerning first=241 second=371 amount=-1 +kerning first=321 second=250 amount=-2 +kerning first=277 second=371 amount=-2 +kerning first=8250 second=316 amount=-1 +kerning first=1084 second=1077 amount=-1 +kerning first=366 second=257 amount=-3 +kerning first=250 second=378 amount=-2 +kerning first=197 second=212 amount=-3 +kerning first=72 second=250 amount=-2 +kerning first=280 second=196 amount=-2 +kerning first=214 second=378 amount=-2 +kerning first=101 second=328 amount=-2 +kerning first=81 second=366 amount=-1 +kerning first=1070 second=1052 amount=-1 +kerning first=78 second=352 amount=-2 +kerning first=45 second=366 amount=-4 +kerning first=100 second=371 amount=-1 +kerning first=330 second=257 amount=-2 +kerning first=286 second=378 amount=-1 +kerning first=108 second=250 amount=-2 +kerning first=107 second=361 amount=-1 +kerning first=67 second=332 amount=-3 +kerning first=222 second=257 amount=-1 +kerning first=73 second=378 amount=-1 +kerning first=314 second=328 amount=-1 +kerning first=1059 second=1097 amount=-4 +kerning first=278 second=328 amount=-1 +kerning first=258 second=366 amount=-3 +kerning first=117 second=257 amount=-1 +kerning first=242 second=328 amount=-1 +kerning first=222 second=366 amount=-1 +kerning first=1051 second=1047 amount=-1 +kerning first=219 second=352 amount=-3 +kerning first=109 second=378 amount=-1 +kerning first=246 second=119 amount=-2 +kerning first=1025 second=1045 amount=-1 +kerning first=352 second=254 amount=-2 +kerning first=369 second=333 amount=-1 +kerning first=200 second=288 amount=-1 +kerning first=232 second=8220 amount=-2 +kerning first=122 second=98 amount=-1 +kerning first=105 second=345 amount=-1 +kerning first=1040 second=1092 amount=-2 +kerning first=70 second=243 amount=-1 +kerning first=1031 second=1107 amount=-1 +kerning first=114 second=287 amount=-2 +kerning first=222 second=106 amount=-1 +kerning first=280 second=332 amount=-1 +kerning first=106 second=243 amount=-1 +kerning first=78 second=287 amount=-3 +kerning first=261 second=333 amount=-1 +kerning first=1086 second=1090 amount=-1 +kerning first=246 second=345 amount=-1 +kerning first=119 second=113 amount=-3 +kerning first=76 second=378 amount=-3 +kerning first=225 second=333 amount=-1 +kerning first=1050 second=1090 amount=-3 +kerning first=83 second=113 amount=-1 +kerning first=89 second=242 amount=-3 +kerning first=291 second=287 amount=-2 +kerning first=1045 second=1116 amount=-1 +kerning first=354 second=345 amount=-1 +kerning first=263 second=281 amount=-1 +kerning first=75 second=217 amount=-2 +kerning first=1058 second=1105 amount=-1 +kerning first=363 second=287 amount=-3 +kerning first=313 second=262 amount=-1 +kerning first=327 second=287 amount=-3 +kerning first=196 second=255 amount=-3 +kerning first=266 second=242 amount=-2 +kerning first=222 second=198 amount=-4 +kerning first=371 second=281 amount=-3 +kerning first=216 second=217 amount=-1 +kerning first=230 second=242 amount=-1 +kerning first=86 second=281 amount=-3 +kerning first=219 second=287 amount=-4 +kerning first=315 second=210 amount=-1 +kerning first=122 second=281 amount=-1 +kerning first=288 second=217 amount=-1 +kerning first=302 second=242 amount=-2 +kerning first=8222 second=224 amount=-2 +kerning first=344 second=288 amount=-3 +kerning first=105 second=8217 amount=-2 +kerning first=324 second=326 amount=-1 +kerning first=1061 second=1090 amount=-3 +kerning first=376 second=255 amount=-3 +kerning first=227 second=281 amount=-1 +kerning first=75 second=119 amount=-3 +kerning first=81 second=198 amount=-4 +kerning first=283 second=243 amount=-1 +kerning first=313 second=197 amount=-2 +kerning first=111 second=119 amount=-2 +kerning first=67 second=279 amount=-2 +kerning first=202 second=354 amount=-1 +kerning first=45 second=254 amount=-1 +kerning first=72 second=45 amount=-4 +kerning first=269 second=324 amount=-2 +kerning first=313 second=374 amount=-3 +kerning first=203 second=249 amount=-2 +kerning first=233 second=324 amount=-2 +kerning first=84 second=274 amount=-1 +kerning first=284 second=291 amount=-3 +kerning first=332 second=379 amount=-2 +kerning first=117 second=254 amount=-2 +kerning first=252 second=119 amount=-3 +kerning first=103 second=279 amount=-2 +kerning first=310 second=354 amount=-2 +kerning first=98 second=249 amount=-1 +kerning first=86 second=74 amount=-4 +kerning first=288 second=119 amount=-1 +kerning first=346 second=354 amount=-3 +kerning first=1053 second=1054 amount=-1 +kerning first=324 second=119 amount=-3 +kerning first=258 second=369 amount=-3 +kerning first=199 second=334 amount=-3 +kerning first=272 second=344 amount=-2 +kerning first=8217 second=256 amount=-6 +kerning first=366 second=369 amount=-1 +kerning first=65 second=233 amount=-1 +kerning first=8250 second=351 amount=-1 +kerning first=330 second=369 amount=-2 +kerning first=1039 second=1079 amount=-1 +kerning first=105 second=289 amount=-3 +kerning first=377 second=214 amount=-1 +kerning first=74 second=264 amount=-2 +kerning first=352 second=279 amount=-1 +kerning first=8217 second=371 amount=-1 +kerning first=217 second=339 amount=-2 +kerning first=219 second=234 amount=-2 +kerning first=1092 second=1074 amount=-1 +kerning first=255 second=234 amount=-3 +kerning first=200 second=229 amount=-1 +kerning first=200 second=344 amount=-2 +kerning first=379 second=86 amount=-2 +kerning first=236 second=229 amount=-2 +kerning first=81 second=106 amount=-1 +kerning first=107 second=255 amount=-1 +kerning first=325 second=339 amount=-2 +kerning first=86 second=284 amount=-3 +kerning first=117 second=106 amount=-2 +kerning first=377 second=324 amount=-1 +kerning first=368 second=97 amount=-3 +kerning first=316 second=279 amount=-1 +kerning first=253 second=339 amount=-3 +kerning first=78 second=234 amount=-2 +kerning first=344 second=229 amount=-2 +kerning first=45 second=106 amount=-2 +kerning first=289 second=339 amount=-2 +kerning first=1057 second=1084 amount=-1 +kerning first=380 second=229 amount=-1 +kerning first=232 second=8217 amount=-2 +kerning first=205 second=111 amount=-2 +kerning first=365 second=244 amount=-1 +kerning first=196 second=199 amount=-3 +kerning first=199 second=219 amount=-2 +kerning first=368 second=264 amount=-1 +kerning first=377 second=209 amount=-1 +kerning first=277 second=111 amount=-1 +kerning first=268 second=199 amount=-3 +kerning first=296 second=264 amount=-2 +kerning first=8216 second=246 amount=-3 +kerning first=1076 second=1089 amount=-1 +kerning first=304 second=199 amount=-2 +kerning first=327 second=234 amount=-2 +kerning first=205 second=339 amount=-2 +kerning first=260 second=264 amount=-3 +kerning first=1040 second=1089 amount=-2 +kerning first=354 second=82 amount=-1 +kerning first=363 second=234 amount=-1 +kerning first=376 second=199 amount=-3 +kerning first=196 second=8217 amount=-5 +kerning first=100 second=111 amount=-1 +kerning first=379 second=334 amount=-1 +kerning first=243 second=121 amount=-3 +kerning first=203 second=364 amount=-2 +kerning first=252 second=251 amount=-1 +kerning first=210 second=289 amount=-1 +kerning first=207 second=121 amount=-2 +kerning first=210 second=82 amount=-2 +kerning first=216 second=66 amount=-2 +kerning first=1114 second=1099 amount=-1 +kerning first=246 second=289 amount=-2 +kerning first=80 second=244 amount=-1 +kerning first=282 second=289 amount=-3 +kerning first=282 second=82 amount=-2 +kerning first=1076 second=1086 amount=-1 +kerning first=354 second=289 amount=-4 +kerning first=221 second=244 amount=-3 +kerning first=258 second=254 amount=-2 +kerning first=257 second=244 amount=-1 +kerning first=69 second=82 amount=-2 +kerning first=288 second=66 amount=-1 +kerning first=371 second=225 amount=-2 +kerning first=269 second=117 amount=-2 +kerning first=67 second=72 amount=-3 +kerning first=89 second=97 amount=-5 +kerning first=211 second=296 amount=-2 +kerning first=233 second=117 amount=-2 +kerning first=313 second=200 amount=-2 +kerning first=111 second=122 amount=-2 +kerning first=290 second=76 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=374 second=245 amount=-3 +kerning first=45 second=251 amount=-1 +kerning first=227 second=225 amount=-1 +kerning first=266 second=97 amount=-2 +kerning first=314 second=244 amount=-1 +kerning first=85 second=227 amount=-3 +kerning first=324 second=122 amount=-1 +kerning first=263 second=225 amount=-2 +kerning first=377 second=117 amount=-3 +kerning first=208 second=72 amount=-2 +kerning first=302 second=97 amount=-2 +kerning first=86 second=77 amount=-1 +kerning first=351 second=121 amount=-3 +kerning first=117 second=251 amount=-1 +kerning first=288 second=122 amount=-1 +kerning first=328 second=347 amount=-1 +kerning first=379 second=71 amount=-1 +kerning first=315 second=121 amount=-3 +kerning first=258 second=251 amount=-3 +kerning first=252 second=122 amount=-2 +kerning first=335 second=225 amount=-1 +kerning first=280 second=72 amount=-2 +kerning first=279 second=121 amount=-2 +kerning first=216 second=122 amount=-2 +kerning first=194 second=245 amount=-1 +kerning first=330 second=251 amount=-2 +kerning first=213 second=46 amount=-3 +kerning first=338 second=97 amount=-1 +kerning first=89 second=245 amount=-3 +kerning first=89 second=363 amount=-2 +kerning first=1045 second=1063 amount=-2 +kerning first=374 second=97 amount=-5 +kerning first=283 second=240 amount=-1 +kerning first=8222 second=371 amount=-1 +kerning first=366 second=251 amount=-1 +kerning first=375 second=44 amount=-5 +kerning first=8222 second=227 amount=-2 +kerning first=302 second=245 amount=-2 +kerning first=230 second=363 amount=-2 +kerning first=249 second=102 amount=-1 +kerning first=197 second=117 amount=-3 +kerning first=377 second=206 amount=-1 +kerning first=266 second=245 amount=-2 +kerning first=327 second=290 amount=-2 +kerning first=72 second=46 amount=-1 +kerning first=100 second=318 amount=-1 +kerning first=230 second=245 amount=-1 +kerning first=302 second=363 amount=-2 +kerning first=222 second=310 amount=-2 +kerning first=78 second=83 amount=-2 +kerning first=355 second=355 amount=-1 +kerning first=83 second=116 amount=-1 +kerning first=1060 second=1033 amount=-3 +kerning first=283 second=355 amount=-1 +kerning first=81 second=310 amount=-2 +kerning first=219 second=83 amount=-3 +kerning first=1057 second=1048 amount=-1 +kerning first=213 second=194 amount=-4 +kerning first=117 second=267 amount=-1 +kerning first=202 second=298 amount=-2 +kerning first=70 second=240 amount=-1 +kerning first=310 second=255 amount=-3 +kerning first=327 second=83 amount=-2 +kerning first=1098 second=1114 amount=-1 +kerning first=72 second=253 amount=-2 +kerning first=1042 second=1043 amount=-2 +kerning first=106 second=240 amount=-1 +kerning first=117 second=369 amount=-1 +kerning first=241 second=259 amount=-1 +kerning first=8218 second=382 amount=-3 +kerning first=1067 second=1088 amount=-1 +kerning first=84 second=330 amount=-1 +kerning first=208 second=220 amount=-1 +kerning first=205 second=259 amount=-2 +kerning first=67 second=220 amount=-2 +kerning first=218 second=230 amount=-3 +kerning first=1059 second=1094 amount=-4 +kerning first=374 second=304 amount=-1 +kerning first=1101 second=1075 amount=-1 +kerning first=109 second=375 amount=-2 +kerning first=277 second=259 amount=-2 +kerning first=199 second=71 amount=-3 +kerning first=75 second=214 amount=-3 +kerning first=1031 second=1088 amount=-1 +kerning first=286 second=219 amount=-1 +kerning first=352 second=220 amount=-3 +kerning first=119 second=116 amount=-1 +kerning first=338 second=304 amount=-2 +kerning first=45 second=369 amount=-1 +kerning first=260 second=116 amount=-1 +kerning first=1070 second=1049 amount=-1 +kerning first=321 second=194 amount=-2 +kerning first=280 second=220 amount=-2 +kerning first=1077 second=1095 amount=-1 +kerning first=266 second=304 amount=-3 +kerning first=336 second=90 amount=-2 +kerning first=66 second=201 amount=-4 +kerning first=1027 second=1108 amount=-3 +kerning first=346 second=317 amount=-3 +kerning first=89 second=298 amount=-1 +kerning first=365 second=291 amount=-3 +kerning first=76 second=76 amount=-2 +kerning first=1114 second=1082 amount=-1 +kerning first=1099 second=1108 amount=-1 +kerning first=278 second=77 amount=-2 +kerning first=67 second=290 amount=-3 +kerning first=1063 second=1108 amount=-1 +kerning first=119 second=227 amount=-3 +kerning first=78 second=240 amount=-2 +kerning first=1057 second=1037 amount=-1 +kerning first=257 second=291 amount=-2 +kerning first=65 second=337 amount=-1 +kerning first=202 second=317 amount=-2 +kerning first=83 second=227 amount=-2 +kerning first=288 second=304 amount=-1 +kerning first=266 second=298 amount=-3 +kerning first=87 second=350 amount=-3 +kerning first=201 second=97 amount=-1 +kerning first=221 second=291 amount=-4 +kerning first=377 second=330 amount=-1 +kerning first=298 second=100 amount=-2 +kerning first=269 second=279 amount=-1 +kerning first=274 second=317 amount=-2 +kerning first=216 second=304 amount=-2 +kerning first=338 second=298 amount=-2 +kerning first=283 second=324 amount=-2 +kerning first=232 second=110 amount=-2 +kerning first=80 second=291 amount=-3 +kerning first=264 second=350 amount=-3 +kerning first=345 second=97 amount=-1 +kerning first=268 second=110 amount=-1 +kerning first=333 second=311 amount=-1 +kerning first=87 second=90 amount=-3 +kerning first=284 second=280 amount=-1 +kerning first=104 second=8221 amount=-4 +kerning first=101 second=337 amount=-1 +kerning first=261 second=311 amount=-1 +kerning first=333 second=187 amount=-2 +kerning first=106 second=324 amount=-2 +kerning first=376 second=110 amount=-3 +kerning first=225 second=311 amount=-1 +kerning first=70 second=324 amount=-1 +kerning first=198 second=318 amount=-1 +kerning first=350 second=337 amount=-1 +kerning first=264 second=90 amount=-2 +kerning first=107 second=259 amount=-2 +kerning first=234 second=318 amount=-3 +kerning first=381 second=97 amount=-1 +kerning first=314 second=337 amount=-1 +kerning first=336 second=350 amount=-1 +kerning first=256 second=71 amount=-3 +kerning first=65 second=213 amount=-3 +kerning first=233 second=234 amount=-1 +kerning first=246 second=104 amount=-1 +kerning first=1067 second=1107 amount=-1 +kerning first=289 second=250 amount=-1 +kerning first=199 second=381 amount=-2 +kerning first=269 second=234 amount=-1 +kerning first=68 second=374 amount=-2 +kerning first=354 second=334 amount=-3 +kerning first=288 second=44 amount=-3 +kerning first=364 second=303 amount=-2 +kerning first=105 second=104 amount=-1 +kerning first=214 second=260 amount=-4 +kerning first=206 second=213 amount=-2 +kerning first=286 second=260 amount=-3 +kerning first=379 second=381 amount=-1 +kerning first=66 second=325 amount=-4 +kerning first=8218 second=356 amount=-6 +kerning first=84 second=187 amount=-3 +kerning first=111 second=44 amount=-3 +kerning first=1086 second=1081 amount=-1 +kerning first=305 second=289 amount=-2 +kerning first=278 second=213 amount=-1 +kerning first=282 second=104 amount=-1 +kerning first=262 second=374 amount=-1 +kerning first=274 second=85 amount=-2 +kerning first=119 second=351 amount=-3 +kerning first=296 second=227 amount=-2 +kerning first=374 second=298 amount=-1 +kerning first=275 second=241 amount=-2 +kerning first=219 second=111 amount=-2 +kerning first=115 second=303 amount=-2 +kerning first=83 second=351 amount=-1 +kerning first=198 second=194 amount=-2 +kerning first=255 second=111 amount=-3 +kerning first=202 second=85 amount=-2 +kerning first=224 second=351 amount=-1 +kerning first=224 second=227 amount=-1 +kerning first=377 second=70 amount=-1 +kerning first=315 second=201 amount=-2 +kerning first=291 second=111 amount=-2 +kerning first=275 second=277 amount=-1 +kerning first=327 second=111 amount=-2 +kerning first=79 second=303 amount=-1 +kerning first=69 second=104 amount=-1 +kerning first=1077 second=1074 amount=-1 +kerning first=44 second=8217 amount=-5 +kerning first=324 second=44 amount=-1 +kerning first=356 second=284 amount=-3 +kerning first=346 second=204 amount=-3 +kerning first=78 second=111 amount=-2 +kerning first=1113 second=1074 amount=-1 +kerning first=368 second=227 amount=-3 +kerning first=220 second=303 amount=-2 +kerning first=332 second=227 amount=-1 +kerning first=335 second=355 amount=-1 +kerning first=256 second=303 amount=-1 +kerning first=248 second=380 amount=-2 +kerning first=107 second=8249 amount=-3 +kerning first=376 second=362 amount=-1 +kerning first=332 second=8220 amount=-2 +kerning first=261 second=283 amount=-1 +kerning first=284 second=380 amount=-1 +kerning first=266 second=270 amount=-3 +kerning first=8222 second=252 amount=-1 +kerning first=87 second=118 amount=-3 +kerning first=206 second=105 amount=-1 +kerning first=225 second=283 amount=-1 +kerning first=374 second=270 amount=-1 +kerning first=228 second=118 amount=-3 +kerning first=65 second=105 amount=-1 +kerning first=260 second=8220 amount=-5 +kerning first=313 second=377 amount=-3 +kerning first=74 second=248 amount=-2 +kerning first=356 second=380 amount=-3 +kerning first=338 second=270 amount=-2 +kerning first=192 second=118 amount=-3 +kerning first=101 second=105 amount=-2 +kerning first=224 second=8220 amount=-3 +kerning first=120 second=283 amount=-2 +kerning first=71 second=380 amount=-1 +kerning first=314 second=241 amount=-1 +kerning first=376 second=206 amount=-1 +kerning first=122 second=287 amount=-2 +kerning first=89 second=270 amount=-1 +kerning first=364 second=228 amount=-3 +kerning first=278 second=241 amount=-1 +kerning first=369 second=283 amount=-1 +kerning first=86 second=287 amount=-4 +kerning first=346 second=85 amount=-3 +kerning first=259 second=105 amount=-1 +kerning first=328 second=228 amount=-1 +kerning first=83 second=8220 amount=-2 +kerning first=227 second=287 amount=-2 +kerning first=310 second=85 amount=-2 +kerning first=212 second=380 amount=-2 +kerning first=350 second=241 amount=-1 +kerning first=1058 second=1100 amount=-2 +kerning first=110 second=112 amount=-1 +kerning first=198 second=44 amount=-1 +kerning first=365 second=263 amount=-1 +kerning first=1108 second=1074 amount=-1 +kerning first=74 second=112 amount=-2 +kerning first=220 second=228 amount=-3 +kerning first=101 second=241 amount=-2 +kerning first=263 second=287 amount=-3 +kerning first=70 second=193 amount=-3 +kerning first=242 second=241 amount=-1 +kerning first=371 second=287 amount=-1 +kerning first=1073 second=1102 amount=-1 +kerning first=115 second=228 amount=-1 +kerning first=315 second=325 amount=-2 +kerning first=335 second=287 amount=-2 +kerning first=287 second=248 amount=-2 +kerning first=79 second=228 amount=-1 +kerning first=221 second=263 amount=-3 +kerning first=257 second=263 amount=-1 +kerning first=98 second=104 amount=-1 +kerning first=212 second=8249 amount=-1 +kerning first=88 second=235 amount=-2 +kerning first=229 second=103 amount=-2 +kerning first=328 second=331 amount=-1 +kerning first=251 second=248 amount=-1 +kerning first=213 second=197 amount=-4 +kerning first=364 second=331 amount=-2 +kerning first=307 second=365 amount=-1 +kerning first=368 second=255 amount=-1 +kerning first=374 second=366 amount=-1 +kerning first=79 second=200 amount=-2 +kerning first=211 second=221 amount=-2 +kerning first=321 second=197 amount=-2 +kerning first=378 second=318 amount=-2 +kerning first=296 second=255 amount=-2 +kerning first=323 second=112 amount=-1 +kerning first=260 second=255 amount=-3 +kerning first=266 second=366 amount=-2 +kerning first=220 second=331 amount=-2 +kerning first=197 second=262 amount=-3 +kerning first=248 second=289 amount=-2 +kerning first=224 second=255 amount=-3 +kerning first=251 second=112 amount=-2 +kerning first=115 second=331 amount=-2 +kerning first=83 second=255 amount=-2 +kerning first=198 second=290 amount=-1 +kerning first=199 second=74 amount=-2 +kerning first=193 second=338 amount=-3 +kerning first=197 second=98 amount=-2 +kerning first=1050 second=1063 amount=-4 +kerning first=305 second=98 amount=-2 +kerning first=231 second=314 amount=-3 +kerning first=88 second=338 amount=-3 +kerning first=1072 second=1087 amount=-1 +kerning first=290 second=352 amount=-2 +kerning first=269 second=98 amount=-2 +kerning first=195 second=314 amount=-2 +kerning first=1108 second=1087 amount=-1 +kerning first=202 second=214 amount=-1 +kerning first=303 second=314 amount=-2 +kerning first=89 second=65 amount=-6 +kerning first=314 second=105 amount=-1 +kerning first=1063 second=1080 amount=-1 +kerning first=84 second=283 amount=-3 +kerning first=325 second=214 amount=-2 +kerning first=267 second=314 amount=-3 +kerning first=211 second=352 amount=-1 +kerning first=350 second=105 amount=-3 +kerning first=194 second=366 amount=-3 +kerning first=1027 second=1080 amount=-2 +kerning first=274 second=214 amount=-1 +kerning first=375 second=314 amount=-2 +kerning first=242 second=105 amount=-1 +kerning first=339 second=314 amount=-3 +kerning first=278 second=105 amount=-1 +kerning first=89 second=366 amount=-1 +kerning first=8217 second=114 amount=-2 +kerning first=259 second=307 amount=-1 +kerning first=204 second=333 amount=-2 +kerning first=85 second=346 amount=-3 +kerning first=230 second=106 amount=-2 +kerning first=213 second=68 amount=-2 +kerning first=295 second=307 amount=-1 +kerning first=213 second=80 amount=-2 +kerning first=248 second=8221 amount=-2 +kerning first=331 second=307 amount=-1 +kerning first=284 second=8221 amount=-1 +kerning first=112 second=224 amount=-1 +kerning first=367 second=307 amount=-2 +kerning first=218 second=67 amount=-1 +kerning first=298 second=346 amount=-2 +kerning first=253 second=224 amount=-3 +kerning first=321 second=68 amount=-2 +kerning first=68 second=217 amount=-1 +kerning first=1047 second=1059 amount=-3 +kerning first=262 second=346 amount=-3 +kerning first=217 second=224 amount=-3 +kerning first=280 second=81 amount=-1 +kerning first=266 second=106 amount=-1 +kerning first=325 second=224 amount=-2 +kerning first=99 second=333 amount=-1 +kerning first=77 second=67 amount=-2 +kerning first=326 second=45 amount=-3 +kerning first=71 second=256 amount=-3 +kerning first=85 second=243 amount=-2 +kerning first=231 second=230 amount=-2 +kerning first=121 second=243 amount=-3 +kerning first=370 second=346 amount=-3 +kerning first=90 second=230 amount=-1 +kerning first=334 second=346 amount=-1 +kerning first=197 second=369 amount=-3 +kerning first=226 second=243 amount=-1 +kerning first=212 second=256 amount=-4 +kerning first=118 second=307 amount=-2 +kerning first=275 second=101 amount=-1 +kerning first=1088 second=1097 amount=-1 +kerning first=67 second=81 amount=-3 +kerning first=311 second=101 amount=-3 +kerning first=1118 second=1105 amount=-2 +kerning first=1074 second=1095 amount=-1 +kerning first=101 second=361 amount=-2 +kerning first=362 second=67 amount=-1 +kerning first=262 second=109 amount=-1 +kerning first=327 second=268 amount=-2 +kerning first=86 second=334 amount=-3 +kerning first=1042 second=1034 amount=-2 +kerning first=1059 second=1060 amount=-3 +kerning first=316 second=229 amount=-2 +kerning first=68 second=69 amount=-2 +kerning first=212 second=120 amount=-1 +kerning first=1030 second=1072 amount=-1 +kerning first=89 second=251 amount=-2 +kerning first=262 second=243 amount=-2 +kerning first=255 second=225 amount=-3 +kerning first=8218 second=225 amount=-2 +kerning first=298 second=243 amount=-2 +kerning first=81 second=204 amount=-2 +kerning first=194 second=251 amount=-3 +kerning first=219 second=268 amount=-1 +kerning first=45 second=204 amount=-5 +kerning first=236 second=246 amount=-1 +kerning first=370 second=243 amount=-2 +kerning first=187 second=192 amount=-4 +kerning first=266 second=251 amount=-2 +kerning first=1063 second=1098 amount=-1 +kerning first=230 second=251 amount=-2 +kerning first=244 second=229 amount=-1 +kerning first=268 second=79 amount=-3 +kerning first=78 second=268 amount=-2 +kerning first=317 second=217 amount=-3 +kerning first=338 second=251 amount=-2 +kerning first=103 second=229 amount=-3 +kerning first=368 second=380 amount=-3 +kerning first=302 second=251 amount=-2 +kerning first=381 second=282 amount=-1 +kerning first=248 second=120 amount=-3 +kerning first=1101 second=1084 amount=-1 +kerning first=352 second=229 amount=-2 +kerning first=8220 second=100 amount=-3 +kerning first=264 second=118 amount=-1 +kerning first=374 second=251 amount=-2 +kerning first=86 second=203 amount=-1 +kerning first=280 second=229 amount=-1 +kerning first=207 second=244 amount=-2 +kerning first=1045 second=1047 amount=-1 +kerning first=356 second=120 amount=-2 +kerning first=316 second=257 amount=-2 +kerning first=258 second=232 amount=-1 +kerning first=90 second=202 amount=-1 +kerning first=212 second=368 amount=-1 +kerning first=1092 second=1096 amount=-1 +kerning first=352 second=257 amount=-2 +kerning first=366 second=232 amount=-2 +kerning first=278 second=264 amount=-1 +kerning first=85 second=231 amount=-2 +kerning first=244 second=257 amount=-1 +kerning first=330 second=232 amount=-2 +kerning first=367 second=267 amount=-1 +kerning first=280 second=257 amount=-1 +kerning first=117 second=232 amount=-1 +kerning first=77 second=336 amount=-2 +kerning first=325 second=79 amount=-2 +kerning first=356 second=368 amount=-1 +kerning first=208 second=257 amount=-1 +kerning first=86 second=219 amount=-1 +kerning first=66 second=8250 amount=-2 +kerning first=240 second=361 amount=-1 +kerning first=67 second=257 amount=-2 +kerning first=367 second=279 amount=-1 +kerning first=218 second=336 amount=-1 +kerning first=204 second=361 amount=-2 +kerning first=103 second=257 amount=-3 +kerning first=72 second=244 amount=-2 +kerning first=307 second=121 amount=-3 +kerning first=82 second=267 amount=-3 +kerning first=201 second=254 amount=-1 +kerning first=108 second=244 amount=-1 +kerning first=118 second=267 amount=-3 +kerning first=198 second=278 amount=-2 +kerning first=235 second=121 amount=-2 +kerning first=8222 second=116 amount=-2 +kerning first=362 second=336 amount=-1 +kerning first=199 second=121 amount=-1 +kerning first=236 second=318 amount=-2 +kerning first=1025 second=1031 amount=-1 +kerning first=249 second=244 amount=-1 +kerning first=259 second=267 amount=-1 +kerning first=317 second=69 amount=-2 +kerning first=217 second=79 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=90 second=66 amount=-1 +kerning first=205 second=117 amount=-2 +kerning first=204 second=246 amount=-2 +kerning first=76 second=107 amount=-2 +kerning first=223 second=382 amount=-2 +kerning first=90 second=82 amount=-1 +kerning first=45 second=347 amount=-1 +kerning first=259 second=382 amount=-1 +kerning first=1052 second=1057 amount=-1 +kerning first=277 second=117 amount=-2 +kerning first=99 second=246 amount=-1 +kerning first=1045 second=1085 amount=-1 +kerning first=295 second=382 amount=-1 +kerning first=8218 second=253 amount=-1 +kerning first=72 second=216 amount=-2 +kerning first=241 second=117 amount=-1 +kerning first=112 second=107 amount=-1 +kerning first=331 second=382 amount=-1 +kerning first=339 second=230 amount=-2 +kerning first=313 second=117 amount=-2 +kerning first=375 second=230 amount=-3 +kerning first=1052 second=1085 amount=-1 +kerning first=205 second=281 amount=-2 +kerning first=267 second=230 amount=-2 +kerning first=379 second=121 amount=-3 +kerning first=118 second=382 amount=-3 +kerning first=317 second=205 amount=-2 +kerning first=303 second=230 amount=-2 +kerning first=1037 second=1047 amount=-1 +kerning first=303 second=115 amount=-2 +kerning first=277 second=281 amount=-1 +kerning first=187 second=382 amount=-5 +kerning first=255 second=240 amount=-3 +kerning first=321 second=216 amount=-1 +kerning first=68 second=205 amount=-2 +kerning first=291 second=240 amount=-2 +kerning first=363 second=371 amount=-1 +kerning first=330 second=347 amount=-2 +kerning first=243 second=8250 amount=-2 +kerning first=313 second=217 amount=-3 +kerning first=219 second=240 amount=-2 +kerning first=100 second=281 amount=-1 +kerning first=310 second=89 amount=-2 +kerning first=279 second=8250 amount=-2 +kerning first=258 second=347 amount=-2 +kerning first=354 second=81 amount=-3 +kerning first=253 second=107 amount=-2 +kerning first=367 second=382 amount=-2 +kerning first=8250 second=217 amount=-4 +kerning first=327 second=240 amount=-2 +kerning first=1074 second=1082 amount=-1 +kerning first=255 second=371 amount=-1 +kerning first=121 second=271 amount=-3 +kerning first=363 second=240 amount=-1 +kerning first=1040 second=1095 amount=-3 +kerning first=117 second=347 amount=-2 +kerning first=289 second=107 amount=-2 +kerning first=291 second=371 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=88 second=226 amount=-1 +kerning first=70 second=336 amount=-1 +kerning first=211 second=305 amount=-1 +kerning first=350 second=65 amount=-4 +kerning first=69 second=252 amount=-2 +kerning first=8220 second=84 amount=-1 +kerning first=1077 second=1083 amount=-1 +kerning first=229 second=226 amount=-1 +kerning first=105 second=252 amount=-1 +kerning first=283 second=305 amount=-2 +kerning first=187 second=122 amount=-5 +kerning first=275 second=249 amount=-2 +kerning first=278 second=207 amount=-2 +kerning first=118 second=122 amount=-3 +kerning first=337 second=226 amount=-1 +kerning first=256 second=219 amount=-3 +kerning first=115 second=305 amount=-2 +kerning first=199 second=266 amount=-3 +kerning first=381 second=245 amount=-1 +kerning first=8218 second=365 amount=-1 +kerning first=354 second=252 amount=-1 +kerning first=274 second=202 amount=-2 +kerning first=88 second=261 amount=-1 +kerning first=243 second=316 amount=-2 +kerning first=79 second=219 amount=-1 +kerning first=279 second=316 amount=-3 +kerning first=202 second=202 amount=-2 +kerning first=298 second=259 amount=-2 +kerning first=315 second=316 amount=-2 +kerning first=365 second=8221 amount=-3 +kerning first=262 second=259 amount=-2 +kerning first=351 second=316 amount=-2 +kerning first=331 second=98 amount=-2 +kerning first=370 second=259 amount=-3 +kerning first=346 second=69 amount=-3 +kerning first=246 second=252 amount=-1 +kerning first=282 second=252 amount=-2 +kerning first=346 second=202 amount=-3 +kerning first=121 second=259 amount=-3 +kerning first=74 second=332 amount=-2 +kerning first=106 second=45 amount=-3 +kerning first=201 second=369 amount=-2 +kerning first=85 second=259 amount=-3 +kerning first=112 second=116 amount=-1 +kerning first=88 second=364 amount=-2 +kerning first=89 second=382 amount=-3 +kerning first=269 second=246 amount=-1 +kerning first=1045 second=1082 amount=-1 +kerning first=70 second=45 amount=-3 +kerning first=287 second=103 amount=-2 +kerning first=253 second=116 amount=-1 +kerning first=233 second=246 amount=-1 +kerning first=365 second=375 amount=-3 +kerning first=251 second=103 amount=-3 +kerning first=197 second=246 amount=-1 +kerning first=101 second=253 amount=-2 +kerning first=352 second=109 amount=-1 +kerning first=231 second=231 amount=-1 +kerning first=110 second=103 amount=-2 +kerning first=194 second=266 amount=-3 +kerning first=323 second=332 amount=-2 +kerning first=206 second=253 amount=-2 +kerning first=355 second=45 amount=-1 +kerning first=1052 second=1074 amount=-1 +kerning first=1108 second=1075 amount=-1 +kerning first=242 second=253 amount=-3 +kerning first=244 second=109 amount=-1 +kerning first=331 second=122 amount=-1 +kerning first=1072 second=1075 amount=-1 +kerning first=374 second=382 amount=-3 +kerning first=264 second=362 amount=-2 +kerning first=116 second=375 amount=-1 +kerning first=118 second=279 amount=-3 +kerning first=295 second=122 amount=-1 +kerning first=8218 second=378 amount=-3 +kerning first=8222 second=364 amount=-3 +kerning first=202 second=331 amount=-1 +kerning first=259 second=279 amount=-1 +kerning first=314 second=101 amount=-1 +kerning first=336 second=362 amount=-1 +kerning first=280 second=109 amount=-1 +kerning first=223 second=122 amount=-2 +kerning first=321 second=356 amount=-3 +kerning first=105 second=8221 amount=-2 +kerning first=67 second=109 amount=-1 +kerning first=381 second=369 amount=-3 +kerning first=230 second=382 amount=-2 +kerning first=87 second=362 amount=-1 +kerning first=289 second=116 amount=-1 +kerning first=266 second=382 amount=-2 +kerning first=257 second=375 amount=-3 +kerning first=274 second=351 amount=-1 +kerning first=82 second=279 amount=-3 +kerning first=1100 second=1081 amount=-1 +kerning first=213 second=356 amount=-2 +kerning first=302 second=382 amount=-1 +kerning first=222 second=302 amount=-2 +kerning first=192 second=362 amount=-3 +kerning first=221 second=375 amount=-3 +kerning first=367 second=122 amount=-2 +kerning first=338 second=382 amount=-2 +kerning first=368 second=213 amount=-1 +kerning first=381 second=242 amount=-1 +kerning first=257 second=115 amount=-1 +kerning first=67 second=374 amount=-1 +kerning first=350 second=68 amount=-3 +kerning first=79 second=80 amount=-2 +kerning first=1116 second=1086 amount=-2 +kerning first=260 second=370 amount=-3 +kerning first=278 second=68 amount=-2 +kerning first=221 second=115 amount=-3 +kerning first=82 second=119 amount=-3 +kerning first=315 second=313 amount=-2 +kerning first=118 second=119 amount=-1 +kerning first=8216 second=352 amount=-1 +kerning first=187 second=119 amount=-3 +kerning first=368 second=225 amount=-3 +kerning first=361 second=8217 amount=-3 +kerning first=223 second=119 amount=-2 +kerning first=69 second=280 amount=-2 +kerning first=365 second=115 amount=-2 +kerning first=259 second=119 amount=-3 +kerning first=284 second=108 amount=-1 +kerning first=350 second=318 amount=-2 +kerning first=1079 second=1090 amount=-1 +kerning first=295 second=119 amount=-3 +kerning first=248 second=108 amount=-2 +kerning first=8218 second=257 amount=-2 +kerning first=1043 second=1090 amount=-1 +kerning first=314 second=253 amount=-3 +kerning first=211 second=73 amount=-2 +kerning first=66 second=313 amount=-4 +kerning first=350 second=253 amount=-2 +kerning first=367 second=119 amount=-3 +kerning first=1085 second=1105 amount=-1 +kerning first=79 second=315 amount=-2 +kerning first=8220 second=112 amount=-1 +kerning first=254 second=369 amount=-1 +kerning first=83 second=370 amount=-3 +kerning first=377 second=246 amount=-1 +kerning first=73 second=269 amount=-2 +kerning first=1049 second=1105 amount=-1 +kerning first=381 second=71 amount=-1 +kerning first=370 second=231 amount=-2 +kerning first=1060 second=1041 amount=-1 +kerning first=1052 second=1097 amount=-1 +kerning first=321 second=328 amount=-1 +kerning first=206 second=225 amount=-2 +kerning first=1100 second=1093 amount=-2 +kerning first=242 second=225 amount=-1 +kerning first=251 second=335 amount=-1 +kerning first=250 second=269 amount=-1 +kerning first=1040 second=1098 amount=-2 +kerning first=249 second=328 amount=-1 +kerning first=226 second=371 amount=-1 +kerning first=278 second=225 amount=-1 +kerning first=84 second=196 amount=-6 +kerning first=71 second=108 amount=-1 +kerning first=110 second=363 amount=-1 +kerning first=74 second=335 amount=-2 +kerning first=101 second=225 amount=-2 +kerning first=198 second=203 amount=-2 +kerning first=251 second=363 amount=-1 +kerning first=197 second=218 amount=-3 +kerning first=378 second=46 amount=-1 +kerning first=287 second=363 amount=-1 +kerning first=1083 second=1086 amount=-1 +kerning first=192 second=102 amount=-1 +kerning first=195 second=8221 amount=-5 +kerning first=216 second=8249 amount=-1 +kerning first=109 second=44 amount=-1 +kerning first=210 second=280 amount=-2 +kerning first=323 second=363 amount=-2 +kerning first=228 second=102 amount=-1 +kerning first=264 second=102 amount=-2 +kerning first=338 second=378 amount=-2 +kerning first=1113 second=1083 amount=-1 +kerning first=198 second=46 amount=-1 +kerning first=282 second=280 amount=-2 +kerning first=226 second=231 amount=-1 +kerning first=80 second=115 amount=-1 +kerning first=314 second=225 amount=-2 +kerning first=212 second=8221 amount=-2 +kerning first=313 second=82 amount=-2 +kerning first=262 second=231 amount=-2 +kerning first=116 second=115 amount=-1 +kerning first=350 second=225 amount=-2 +kerning first=71 second=8221 amount=-1 +kerning first=270 second=46 amount=-3 +kerning first=354 second=280 amount=-1 +kerning first=121 second=231 amount=-3 +kerning first=1104 second=1076 amount=-2 +kerning first=107 second=8221 amount=-2 +kerning first=76 second=8217 amount=-4 +kerning first=87 second=102 amount=-1 +kerning first=330 second=235 amount=-2 +kerning first=203 second=261 amount=-1 +kerning first=119 second=367 amount=-1 +kerning first=1114 second=1118 amount=-2 +kerning first=195 second=211 amount=-3 +kerning first=366 second=235 amount=-2 +kerning first=1078 second=1118 amount=-2 +kerning first=224 second=257 amount=-1 +kerning first=200 second=210 amount=-1 +kerning first=275 second=261 amount=-2 +kerning first=90 second=211 amount=-1 +kerning first=311 second=261 amount=-2 +kerning first=83 second=367 amount=-1 +kerning first=361 second=8220 amount=-3 +kerning first=375 second=326 amount=-2 +kerning first=350 second=250 amount=-1 +kerning first=1061 second=1092 amount=-2 +kerning first=290 second=296 amount=-1 +kerning first=98 second=261 amount=-1 +kerning first=1097 second=1092 amount=-1 +kerning first=356 second=235 amount=-3 +kerning first=244 second=112 amount=-1 +kerning first=231 second=326 amount=-2 +kerning first=242 second=250 amount=-1 +kerning first=230 second=227 amount=-2 +kerning first=208 second=112 amount=-1 +kerning first=267 second=326 amount=-2 +kerning first=206 second=250 amount=-2 +kerning first=225 second=171 amount=-2 +kerning first=344 second=231 amount=-3 +kerning first=303 second=326 amount=-2 +kerning first=290 second=327 amount=-1 +kerning first=76 second=8220 amount=-4 +kerning first=103 second=112 amount=-1 +kerning first=117 second=235 amount=-1 +kerning first=339 second=326 amount=-2 +kerning first=278 second=250 amount=-2 +kerning first=116 second=378 amount=-1 +kerning first=8217 second=120 amount=-1 +kerning first=67 second=112 amount=-3 +kerning first=65 second=250 amount=-3 +kerning first=347 second=261 amount=-1 +kerning first=90 second=201 amount=-1 +kerning first=90 second=326 amount=-1 +kerning first=108 second=328 amount=-1 +kerning first=258 second=235 amount=-1 +kerning first=1044 second=1047 amount=-1 +kerning first=334 second=86 amount=-2 +kerning first=101 second=250 amount=-2 +kerning first=120 second=171 amount=-3 +kerning first=99 second=237 amount=-2 +kerning first=66 second=288 amount=-3 +kerning first=323 second=100 amount=-2 +kerning first=350 second=365 amount=-1 +kerning first=1043 second=1093 amount=-3 +kerning first=201 second=366 amount=-2 +kerning first=365 second=378 amount=-2 +kerning first=314 second=365 amount=-2 +kerning first=278 second=365 amount=-2 +kerning first=311 second=113 amount=-3 +kerning first=262 second=262 amount=-3 +kerning first=242 second=365 amount=-1 +kerning first=85 second=83 amount=-3 +kerning first=298 second=262 amount=-2 +kerning first=257 second=378 amount=-1 +kerning first=206 second=365 amount=-2 +kerning first=1060 second=1113 amount=-2 +kerning first=352 second=112 amount=-3 +kerning first=221 second=378 amount=-3 +kerning first=369 second=171 amount=-2 +kerning first=222 second=76 amount=-2 +kerning first=316 second=112 amount=-1 +kerning first=90 second=323 amount=-1 +kerning first=8250 second=69 amount=-5 +kerning first=287 second=100 amount=-2 +kerning first=262 second=83 amount=-3 +kerning first=222 second=87 amount=-2 +kerning first=327 second=45 amount=-4 +kerning first=264 second=275 amount=-2 +kerning first=298 second=83 amount=-2 +kerning first=258 second=87 amount=-6 +kerning first=354 second=249 amount=-1 +kerning first=1057 second=1065 amount=-1 +kerning first=337 second=223 amount=-1 +kerning first=204 second=352 amount=-2 +kerning first=334 second=83 amount=-1 +kerning first=288 second=193 amount=-3 +kerning first=246 second=249 amount=-1 +kerning first=8222 second=84 amount=-6 +kerning first=74 second=100 amount=-2 +kerning first=192 second=275 amount=-1 +kerning first=370 second=83 amount=-3 +kerning first=282 second=249 amount=-2 +kerning first=203 second=286 amount=-1 +kerning first=228 second=275 amount=-1 +kerning first=199 second=353 amount=-2 +kerning first=207 second=210 amount=-2 +kerning first=45 second=87 amount=-4 +kerning first=275 second=113 amount=-1 +kerning first=1074 second=1091 amount=-2 +kerning first=87 second=275 amount=-3 +kerning first=81 second=87 amount=-2 +kerning first=207 second=288 amount=-2 +kerning first=379 second=203 amount=-1 +kerning first=315 second=288 amount=-1 +kerning first=344 second=210 amount=-3 +kerning first=197 second=316 amount=-2 +kerning first=85 second=262 amount=-1 +kerning first=370 second=114 amount=-1 +kerning first=99 second=324 amount=-2 +kerning first=354 second=364 amount=-1 +kerning first=368 second=339 amount=-2 +kerning first=67 second=84 amount=-1 +kerning first=253 second=233 amount=-3 +kerning first=260 second=339 amount=-1 +kerning first=217 second=233 amount=-2 +kerning first=228 second=337 amount=-1 +kerning first=98 second=289 amount=-2 +kerning first=296 second=339 amount=-2 +kerning first=325 second=233 amount=-2 +kerning first=262 second=114 amount=-1 +kerning first=289 second=233 amount=-2 +kerning first=203 second=289 amount=-3 +kerning first=121 second=114 amount=-1 +kerning first=208 second=84 amount=-2 +kerning first=105 second=249 amount=-1 +kerning first=275 second=289 amount=-3 +kerning first=98 second=110 amount=-1 +kerning first=87 second=99 amount=-3 +kerning first=85 second=234 amount=-2 +kerning first=121 second=234 amount=-3 +kerning first=45 second=205 amount=-5 +kerning first=268 second=274 amount=-3 +kerning first=203 second=110 amount=-1 +kerning first=1024 second=1116 amount=-1 +kerning first=192 second=99 amount=-1 +kerning first=352 second=84 amount=-3 +kerning first=381 second=86 amount=-2 +kerning first=76 second=379 amount=-3 +kerning first=217 second=379 amount=-1 +kerning first=275 second=110 amount=-2 +kerning first=264 second=99 amount=-2 +kerning first=240 second=237 amount=-1 +kerning first=240 second=324 amount=-1 +kerning first=228 second=99 amount=-1 +kerning first=224 second=339 amount=-1 +kerning first=204 second=237 amount=-1 +kerning first=347 second=110 amount=-2 +kerning first=83 second=339 amount=-1 +kerning first=199 second=350 amount=-3 +kerning first=376 second=274 amount=-1 +kerning first=232 second=187 amount=-2 +kerning first=119 second=339 amount=-3 +kerning first=370 second=234 amount=-2 +kerning first=379 second=350 amount=-1 +kerning first=77 second=212 amount=-2 +kerning first=354 second=277 amount=-3 +kerning first=1074 second=1119 amount=-1 +kerning first=89 second=197 amount=-6 +kerning first=80 second=260 amount=-4 +kerning first=107 second=111 amount=-3 +kerning first=226 second=234 amount=-1 +kerning first=8220 second=229 amount=-3 +kerning first=262 second=234 amount=-2 +kerning first=268 second=302 amount=-3 +kerning first=298 second=234 amount=-2 +kerning first=66 second=316 amount=-3 +kerning first=102 second=316 amount=3 +kerning first=325 second=264 amount=-2 +kerning first=221 second=260 amount=-6 +kerning first=1025 second=1064 amount=-1 +kerning first=211 second=76 amount=-2 +kerning first=69 second=364 amount=-2 +kerning first=289 second=351 amount=-3 +kerning first=311 second=289 amount=-2 +kerning first=356 second=111 amount=-3 +kerning first=253 second=351 amount=-3 +kerning first=330 second=8249 amount=-4 +kerning first=90 second=354 amount=-2 +kerning first=217 second=264 amount=-1 +kerning first=368 second=367 amount=-1 +kerning first=1049 second=1102 amount=-1 +kerning first=1046 second=1054 amount=-4 +kerning first=105 second=277 amount=-1 +kerning first=325 second=351 amount=-2 +kerning first=84 second=199 amount=-3 +kerning first=195 second=354 amount=-6 +kerning first=112 second=351 amount=-2 +kerning first=71 second=377 amount=-2 +kerning first=296 second=367 amount=-2 +kerning first=1043 second=1081 amount=-2 +kerning first=8220 second=109 amount=-1 +kerning first=210 second=364 amount=-1 +kerning first=76 second=351 amount=-1 +kerning first=76 second=264 amount=-1 +kerning first=106 second=259 amount=-2 +kerning first=379 second=267 amount=-1 +kerning first=217 second=351 amount=-2 +kerning first=224 second=367 amount=-1 +kerning first=1117 second=1105 amount=-1 +kerning first=218 second=212 amount=-1 +kerning first=260 second=367 amount=-3 +kerning first=266 second=267 amount=-2 +kerning first=316 second=254 amount=-1 +kerning first=241 second=8249 amount=-3 +kerning first=370 second=111 amount=-2 +kerning first=69 second=264 amount=-1 +kerning first=303 second=351 amount=-2 +kerning first=302 second=267 amount=-2 +kerning first=8222 second=249 amount=-1 +kerning first=87 second=121 amount=-3 +kerning first=284 second=377 amount=-2 +kerning first=68 second=45 amount=-1 +kerning first=267 second=351 amount=-2 +kerning first=197 second=361 amount=-3 +kerning first=194 second=267 amount=-1 +kerning first=381 second=257 amount=-1 +kerning first=354 second=367 amount=-2 +kerning first=1099 second=1077 amount=-1 +kerning first=375 second=351 amount=-3 +kerning first=230 second=267 amount=-1 +kerning first=370 second=44 amount=-5 +kerning first=212 second=377 amount=-2 +kerning first=339 second=351 amount=-2 +kerning first=269 second=361 amount=-2 +kerning first=88 second=246 amount=-2 +kerning first=282 second=367 amount=-2 +kerning first=226 second=111 amount=-1 +kerning first=1027 second=1077 amount=-3 +kerning first=233 second=361 amount=-2 +kerning first=345 second=257 amount=-1 +kerning first=100 second=8249 amount=-2 +kerning first=262 second=111 amount=-2 +kerning first=1063 second=1077 amount=-1 +kerning first=363 second=114 amount=-1 +kerning first=90 second=351 amount=-2 +kerning first=244 second=254 amount=-1 +kerning first=344 second=337 amount=-3 +kerning first=298 second=111 amount=-2 +kerning first=255 second=114 amount=-1 +kerning first=231 second=351 amount=-2 +kerning first=305 second=361 amount=-1 +kerning first=374 second=267 amount=-3 +kerning first=280 second=254 amount=-1 +kerning first=246 second=367 amount=-1 +kerning first=356 second=377 amount=-3 +kerning first=291 second=114 amount=-1 +kerning first=195 second=351 amount=-2 +kerning first=261 second=105 amount=-1 +kerning first=253 second=261 amount=-3 +kerning first=206 second=244 amount=-2 +kerning first=356 second=117 amount=-2 +kerning first=289 second=261 amount=-3 +kerning first=203 second=274 amount=-2 +kerning first=219 second=114 amount=-1 +kerning first=104 second=44 amount=-1 +kerning first=67 second=254 amount=-1 +kerning first=325 second=261 amount=-2 +kerning first=87 second=381 amount=-3 +kerning first=234 second=287 amount=-3 +kerning first=289 second=104 amount=-2 +kerning first=103 second=254 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=69 second=367 amount=-2 +kerning first=198 second=287 amount=-3 +kerning first=222 second=344 amount=-2 +kerning first=350 second=244 amount=-1 +kerning first=8220 second=103 amount=-4 +kerning first=220 second=351 amount=-2 +kerning first=112 second=261 amount=-1 +kerning first=1074 second=1094 amount=-1 +kerning first=213 second=374 amount=-2 +kerning first=8220 second=232 amount=-3 +kerning first=313 second=8249 amount=-1 +kerning first=228 second=121 amount=-3 +kerning first=264 second=381 amount=-2 +kerning first=378 second=287 amount=-2 +kerning first=217 second=261 amount=-3 +kerning first=305 second=237 amount=-1 +kerning first=363 second=271 amount=-1 +kerning first=246 second=107 amount=-1 +kerning first=203 second=171 amount=-2 +kerning first=1067 second=1104 amount=-1 +kerning first=192 second=250 amount=-3 +kerning first=1031 second=1104 amount=-1 +kerning first=1056 second=1037 amount=-1 +kerning first=235 second=378 amount=-2 +kerning first=219 second=249 amount=-1 +kerning first=107 second=117 amount=-1 +kerning first=370 second=240 amount=-2 +kerning first=264 second=250 amount=-2 +kerning first=74 second=347 amount=-2 +kerning first=282 second=107 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=69 second=107 amount=-1 +kerning first=8218 second=219 amount=-3 +kerning first=368 second=230 amount=-3 +kerning first=83 second=354 amount=-3 +kerning first=284 second=117 amount=-1 +kerning first=87 second=250 amount=-2 +kerning first=107 second=281 amount=-3 +kerning first=105 second=107 amount=-1 +kerning first=248 second=117 amount=-1 +kerning first=85 second=240 amount=-2 +kerning first=377 second=361 amount=-3 +kerning first=121 second=240 amount=-3 +kerning first=201 second=257 amount=-1 +kerning first=354 second=264 amount=-3 +kerning first=381 second=100 amount=-1 +kerning first=221 second=288 amount=-3 +kerning first=260 second=354 amount=-6 +kerning first=379 second=263 amount=-1 +kerning first=1030 second=1047 amount=-1 +kerning first=282 second=264 amount=-1 +kerning first=257 second=339 amount=-1 +kerning first=262 second=240 amount=-2 +kerning first=307 second=378 amount=-1 +kerning first=206 second=74 amount=-1 +kerning first=347 second=171 amount=-1 +kerning first=76 second=364 amount=-3 +kerning first=332 second=354 amount=-2 +kerning first=377 second=67 amount=-1 +kerning first=298 second=240 amount=-2 +kerning first=255 second=271 amount=-3 +kerning first=323 second=347 amount=-2 +kerning first=97 second=314 amount=-1 +kerning first=121 second=371 amount=-1 +kerning first=291 second=271 amount=-2 +kerning first=287 second=347 amount=-3 +kerning first=278 second=74 amount=-1 +kerning first=226 second=240 amount=-1 +kerning first=251 second=347 amount=-2 +kerning first=321 second=252 amount=-2 +kerning first=1103 second=1104 amount=-1 +kerning first=204 second=105 amount=-1 +kerning first=199 second=90 amount=-2 +kerning first=310 second=314 amount=-1 +kerning first=113 second=311 amount=-2 +kerning first=272 second=207 amount=-2 +kerning first=274 second=314 amount=-1 +kerning first=222 second=220 amount=-1 +kerning first=200 second=201 amount=-2 +kerning first=382 second=314 amount=-2 +kerning first=81 second=220 amount=-1 +kerning first=213 second=77 amount=-2 +kerning first=317 second=317 amount=-2 +kerning first=195 second=214 amount=-3 +kerning first=346 second=314 amount=-2 +kerning first=225 second=371 amount=-1 +kerning first=302 second=338 amount=-2 +kerning first=8250 second=202 amount=-5 +kerning first=119 second=224 amount=-3 +kerning first=1057 second=1040 amount=-2 +kerning first=68 second=317 amount=-2 +kerning first=83 second=224 amount=-1 +kerning first=317 second=304 amount=-2 +kerning first=258 second=220 amount=-3 +kerning first=224 second=224 amount=-1 +kerning first=72 second=71 amount=-2 +kerning first=379 second=90 amount=-1 +kerning first=286 second=291 amount=-3 +kerning first=200 second=207 amount=-2 +kerning first=321 second=77 amount=-2 +kerning first=250 second=291 amount=-3 +kerning first=72 second=337 amount=-2 +kerning first=122 second=318 amount=-2 +kerning first=296 second=224 amount=-2 +kerning first=214 second=291 amount=-1 +kerning first=113 second=324 amount=-2 +kerning first=208 second=97 amount=-1 +kerning first=110 second=44 amount=-1 +kerning first=321 second=213 amount=-1 +kerning first=81 second=84 amount=-2 +kerning first=254 second=324 amount=-1 +kerning first=227 second=318 amount=-1 +kerning first=67 second=97 amount=-2 +kerning first=368 second=224 amount=-3 +kerning first=109 second=291 amount=-2 +kerning first=218 second=324 amount=-2 +kerning first=263 second=318 amount=-3 +kerning first=332 second=224 amount=-1 +kerning first=1047 second=1101 amount=-2 +kerning first=1088 second=1088 amount=-1 +kerning first=8250 second=66 amount=-5 +kerning first=73 second=291 amount=-3 +kerning first=249 second=337 amount=-1 +kerning first=316 second=97 amount=-2 +kerning first=321 second=71 amount=-1 +kerning first=290 second=311 amount=-1 +kerning first=200 second=380 amount=-2 +kerning first=335 second=318 amount=-2 +kerning first=352 second=97 amount=-2 +kerning first=254 second=311 amount=-1 +kerning first=74 second=196 amount=-5 +kerning first=258 second=84 amount=-6 +kerning first=66 second=328 amount=-3 +kerning first=105 second=101 amount=-1 +kerning first=244 second=97 amount=-1 +kerning first=382 second=267 amount=-1 +kerning first=187 second=298 amount=-5 +kerning first=1052 second=1088 amount=-1 +kerning first=222 second=84 amount=-2 +kerning first=108 second=337 amount=-1 +kerning first=280 second=97 amount=-1 +kerning first=76 second=104 amount=-2 +kerning first=313 second=284 amount=-1 +kerning first=362 second=193 amount=-4 +kerning first=336 second=381 amount=-2 +kerning first=81 second=344 amount=-2 +kerning first=99 second=234 amount=-1 +kerning first=335 second=303 amount=-1 +kerning first=290 second=193 amount=-3 +kerning first=375 second=227 amount=-3 +kerning first=339 second=227 amount=-2 +kerning first=204 second=234 amount=-2 +kerning first=263 second=303 amount=-2 +kerning first=253 second=104 amount=-2 +kerning first=72 second=213 amount=-2 +kerning first=200 second=325 amount=-2 +kerning first=326 second=324 amount=-1 +kerning first=354 second=101 amount=-3 +kerning first=205 second=284 amount=-2 +kerning first=1038 second=1107 amount=-4 +kerning first=281 second=44 amount=-3 +kerning first=222 second=78 amount=-2 +kerning first=254 second=187 amount=-2 +kerning first=112 second=104 amount=-1 +kerning first=362 second=324 amount=-2 +kerning first=272 second=310 amount=-2 +kerning first=8216 second=253 amount=-1 +kerning first=90 second=227 amount=-1 +kerning first=85 second=111 amount=-2 +kerning first=304 second=277 amount=-2 +kerning first=257 second=335 amount=-1 +kerning first=201 second=251 amount=-2 +kerning first=200 second=310 amount=-2 +kerning first=121 second=111 amount=-3 +kerning first=45 second=78 amount=-5 +kerning first=1101 second=1100 amount=-1 +kerning first=81 second=78 amount=-2 +kerning first=376 second=277 amount=-3 +kerning first=303 second=227 amount=-2 +kerning first=86 second=194 amount=-6 +kerning first=122 second=303 amount=-1 +kerning first=196 second=277 amount=-1 +kerning first=267 second=227 amount=-2 +kerning first=45 second=220 amount=-4 +kerning first=68 second=381 amount=-2 +kerning first=195 second=85 amount=-3 +kerning first=231 second=227 amount=-2 +kerning first=1092 second=1093 amount=-1 +kerning first=268 second=277 amount=-2 +kerning first=1056 second=1093 amount=-1 +kerning first=86 second=303 amount=-2 +kerning first=232 second=277 amount=-1 +kerning first=272 second=201 amount=-2 +kerning first=267 second=345 amount=-1 +kerning first=307 second=105 amount=-1 +kerning first=74 second=245 amount=-2 +kerning first=381 second=251 amount=-3 +kerning first=303 second=345 amount=-1 +kerning first=257 second=118 amount=-3 +kerning first=339 second=345 amount=-1 +kerning first=235 second=105 amount=-2 +kerning first=365 second=118 amount=-3 +kerning first=201 second=270 amount=-2 +kerning first=375 second=345 amount=-1 +kerning first=268 second=283 amount=-2 +kerning first=251 second=245 amount=-1 +kerning first=232 second=283 amount=-1 +kerning first=199 second=105 amount=-1 +kerning first=196 second=283 amount=-1 +kerning first=326 second=328 amount=-1 +kerning first=203 second=280 amount=-2 +kerning first=307 second=241 amount=-2 +kerning first=376 second=283 amount=-3 +kerning first=193 second=335 amount=-1 +kerning first=8220 second=87 amount=-1 +kerning first=1063 second=1105 amount=-1 +kerning first=229 second=335 amount=-1 +kerning first=255 second=108 amount=-2 +kerning first=1027 second=1083 amount=-3 +kerning first=76 second=370 amount=-3 +kerning first=304 second=283 amount=-2 +kerning first=249 second=228 amount=-1 +kerning first=213 second=228 amount=-1 +kerning first=291 second=108 amount=-3 +kerning first=381 second=270 amount=-1 +kerning first=108 second=228 amount=-2 +kerning first=235 second=241 amount=-2 +kerning first=72 second=228 amount=-2 +kerning first=88 second=335 amount=-2 +kerning first=356 second=330 amount=-1 +kerning first=363 second=108 amount=-2 +kerning first=199 second=241 amount=-1 +kerning first=90 second=73 amount=-1 +kerning first=233 second=231 amount=-1 +kerning first=381 second=122 amount=-3 +kerning first=219 second=256 amount=-4 +kerning first=350 second=362 amount=-3 +kerning first=269 second=231 amount=-1 +kerning first=206 second=305 amount=-1 +kerning first=321 second=331 amount=-1 +kerning first=313 second=278 amount=-2 +kerning first=197 second=231 amount=-1 +kerning first=8222 second=379 amount=-1 +kerning first=377 second=231 amount=-1 +kerning first=249 second=331 amount=-1 +kerning first=1045 second=1097 amount=-1 +kerning first=325 second=255 amount=-2 +kerning first=1061 second=1073 amount=-3 +kerning first=334 second=196 amount=-4 +kerning first=347 second=116 amount=-2 +kerning first=199 second=356 amount=-1 +kerning first=278 second=362 amount=-2 +kerning first=311 second=116 amount=-1 +kerning first=1043 second=1087 amount=-2 +kerning first=323 second=81 amount=-2 +kerning first=217 second=255 amount=-1 +kerning first=1079 second=1087 amount=-1 +kerning first=65 second=362 amount=-3 +kerning first=323 second=245 amount=-2 +kerning first=70 second=67 amount=-1 +kerning first=214 second=8249 amount=-1 +kerning first=112 second=255 amount=-3 +kerning first=1047 second=1095 amount=-2 +kerning first=287 second=245 amount=-2 +kerning first=76 second=255 amount=-3 +kerning first=221 second=266 amount=-3 +kerning first=78 second=211 amount=-2 +kerning first=201 second=122 amount=-2 +kerning first=379 second=105 amount=-1 +kerning first=231 second=345 amount=-1 +kerning first=374 second=282 amount=-1 +kerning first=113 second=305 amount=-2 +kerning first=253 second=316 amount=-2 +kerning first=338 second=282 amount=-2 +kerning first=77 second=305 amount=-1 +kerning first=350 second=80 amount=-3 +kerning first=1027 second=1099 amount=-2 +kerning first=323 second=229 amount=-2 +kerning first=218 second=305 amount=-2 +kerning first=74 second=81 amount=-2 +kerning first=70 second=333 amount=-1 +kerning first=266 second=282 amount=-3 +kerning first=202 second=217 amount=-2 +kerning first=321 second=65 amount=-2 +kerning first=254 second=305 amount=-1 +kerning first=274 second=217 amount=-2 +kerning first=362 second=305 amount=-2 +kerning first=79 second=68 amount=-2 +kerning first=310 second=217 amount=-2 +kerning first=364 second=216 amount=-1 +kerning first=89 second=282 amount=-1 +kerning first=326 second=305 amount=-1 +kerning first=346 second=217 amount=-3 +kerning first=278 second=80 amount=-2 +kerning first=296 second=230 amount=-2 +kerning first=111 second=307 amount=-1 +kerning first=332 second=230 amount=-1 +kerning first=8222 second=367 amount=-1 +kerning first=224 second=230 amount=-1 +kerning first=197 second=346 amount=-3 +kerning first=119 second=230 amount=-3 +kerning first=356 second=281 amount=-3 +kerning first=283 second=333 amount=-1 +kerning first=324 second=307 amount=-1 +kerning first=68 second=90 amount=-2 +kerning first=83 second=230 amount=-2 +kerning first=274 second=69 amount=-2 +kerning first=221 second=257 amount=-5 +kerning first=211 second=218 amount=-1 +kerning first=192 second=112 amount=-3 +kerning first=260 second=79 amount=-3 +kerning first=377 second=243 amount=-1 +kerning first=202 second=69 amount=-2 +kerning first=79 second=203 amount=-2 +kerning first=364 second=334 amount=-1 +kerning first=374 second=109 amount=-3 +kerning first=1030 second=1060 amount=-1 +kerning first=1045 second=1040 amount=-2 +kerning first=368 second=79 amount=-1 +kerning first=197 second=243 amount=-1 +kerning first=65 second=244 amount=-1 +kerning first=233 second=243 amount=-1 +kerning first=296 second=79 amount=-2 +kerning first=356 second=268 amount=-3 +kerning first=269 second=243 amount=-1 +kerning first=74 second=229 amount=-3 +kerning first=8217 second=290 amount=-2 +kerning first=355 second=228 amount=-1 +kerning first=255 second=120 amount=-1 +kerning first=258 second=332 amount=-3 +kerning first=1108 second=1084 amount=-1 +kerning first=110 second=229 amount=-1 +kerning first=291 second=120 amount=-2 +kerning first=288 second=192 amount=-3 +kerning first=1072 second=1084 amount=-1 +kerning first=8250 second=314 amount=-1 +kerning first=330 second=332 amount=-2 +kerning first=363 second=120 amount=-2 +kerning first=216 second=192 amount=-4 +kerning first=251 second=229 amount=-1 +kerning first=46 second=8217 amount=-5 +kerning first=67 second=242 amount=-2 +kerning first=287 second=229 amount=-3 +kerning first=366 second=332 amount=-1 +kerning first=220 second=334 amount=-1 +kerning first=219 second=120 amount=-2 +kerning first=103 second=242 amount=-2 +kerning first=231 second=339 amount=-1 +kerning first=1114 second=1090 amount=-1 +kerning first=1092 second=1099 amount=-1 +kerning first=374 second=279 amount=-3 +kerning first=8218 second=314 amount=-1 +kerning first=267 second=339 amount=-1 +kerning first=232 second=289 amount=-3 +kerning first=68 second=192 amount=-4 +kerning first=316 second=242 amount=-1 +kerning first=268 second=289 amount=-3 +kerning first=195 second=339 amount=-1 +kerning first=288 second=291 amount=-3 +kerning first=222 second=229 amount=-1 +kerning first=304 second=289 amount=-3 +kerning first=375 second=339 amount=-3 +kerning first=287 second=232 amount=-2 +kerning first=1063 second=1096 amount=-1 +kerning first=67 second=106 amount=-1 +kerning first=230 second=279 amount=-1 +kerning first=379 second=99 amount=-1 +kerning first=251 second=232 amount=-1 +kerning first=194 second=279 amount=-1 +kerning first=352 second=242 amount=-1 +kerning first=376 second=289 amount=-4 +kerning first=303 second=339 amount=-3 +kerning first=330 second=229 amount=-2 +kerning first=377 second=89 amount=-2 +kerning first=302 second=279 amount=-2 +kerning first=8222 second=261 amount=-2 +kerning first=339 second=339 amount=-1 +kerning first=323 second=232 amount=-2 +kerning first=366 second=229 amount=-3 +kerning first=1027 second=1096 amount=-2 +kerning first=89 second=119 amount=-3 +kerning first=266 second=279 amount=-2 +kerning first=210 second=379 amount=-2 +kerning first=244 second=106 amount=-2 +kerning first=187 second=282 amount=-5 +kerning first=74 second=232 amount=-1 +kerning first=194 second=119 amount=-3 +kerning first=278 second=200 amount=-2 +kerning first=282 second=379 amount=-1 +kerning first=230 second=119 amount=-2 +kerning first=8216 second=221 amount=-1 +kerning first=380 second=263 amount=-1 +kerning first=1050 second=1059 amount=-3 +kerning first=208 second=106 amount=-1 +kerning first=266 second=119 amount=-1 +kerning first=354 second=379 amount=-3 +kerning first=302 second=119 amount=-2 +kerning first=1061 second=1079 amount=-1 +kerning first=90 second=339 amount=-1 +kerning first=338 second=119 amount=-1 +kerning first=316 second=106 amount=-3 +kerning first=374 second=119 amount=-3 +kerning first=204 second=346 amount=-2 +kerning first=352 second=106 amount=-1 +kerning first=1025 second=1079 amount=-1 +kerning first=211 second=209 amount=-2 +kerning first=202 second=66 amount=-2 +kerning first=90 second=79 amount=-1 +kerning first=317 second=202 amount=-2 +kerning first=80 second=269 amount=-1 +kerning first=305 second=8217 amount=-2 +kerning first=221 second=269 amount=-3 +kerning first=1025 second=1076 amount=-2 +kerning first=1071 second=1087 amount=-1 +kerning first=200 second=316 amount=-1 +kerning first=346 second=66 amount=-3 +kerning first=236 second=316 amount=-2 +kerning first=1067 second=1119 amount=-1 +kerning first=257 second=269 amount=-1 +kerning first=274 second=66 amount=-2 +kerning first=195 second=79 amount=-3 +kerning first=274 second=205 amount=-2 +kerning first=77 second=199 amount=-2 +kerning first=365 second=269 amount=-1 +kerning first=90 second=69 amount=-1 +kerning first=8217 second=281 amount=-3 +kerning first=81 second=72 amount=-2 +kerning first=346 second=205 amount=-3 +kerning first=222 second=72 amount=-2 +kerning first=220 second=216 amount=-1 +kerning first=218 second=199 amount=-1 +kerning first=1061 second=1076 amount=-1 +kerning first=197 second=89 amount=-6 +kerning first=256 second=216 amount=-3 +kerning first=81 second=229 amount=-1 +kerning first=317 second=192 amount=-2 +kerning first=1090 second=1089 amount=-1 +kerning first=117 second=229 amount=-1 +kerning first=115 second=109 amount=-2 +kerning first=202 second=205 amount=-2 +kerning first=210 second=8217 amount=-2 +kerning first=201 second=282 amount=-2 +kerning first=362 second=199 amount=-1 +kerning first=45 second=229 amount=-1 +kerning first=246 second=8217 amount=-2 +kerning first=232 second=103 amount=-3 +kerning first=307 second=102 amount=-2 +kerning first=196 second=286 amount=-3 +kerning first=330 second=226 amount=-2 +kerning first=192 second=353 amount=-2 +kerning first=379 second=102 amount=-3 +kerning first=103 second=245 amount=-2 +kerning first=263 second=46 amount=-3 +kerning first=381 second=382 amount=-3 +kerning first=352 second=245 amount=-1 +kerning first=1090 second=1086 amount=-1 +kerning first=199 second=102 amount=-2 +kerning first=363 second=8221 amount=-3 +kerning first=316 second=245 amount=-1 +kerning first=8220 second=248 amount=-3 +kerning first=235 second=102 amount=-2 +kerning first=45 second=72 amount=-5 +kerning first=1070 second=1083 amount=-2 +kerning first=1086 second=1088 amount=-1 +kerning first=86 second=46 amount=-5 +kerning first=208 second=103 amount=-1 +kerning first=321 second=219 amount=-3 +kerning first=290 second=45 amount=-3 +kerning first=68 second=202 amount=-2 +kerning first=344 second=316 amount=-3 +kerning first=217 second=252 amount=-1 +kerning first=330 second=335 amount=-2 +kerning first=8250 second=317 amount=-5 +kerning first=380 second=316 amount=-2 +kerning first=235 second=303 amount=-2 +kerning first=103 second=103 amount=-2 +kerning first=196 second=213 amount=-3 +kerning first=253 second=252 amount=-1 +kerning first=366 second=335 amount=-2 +kerning first=67 second=103 amount=-3 +kerning first=289 second=252 amount=-1 +kerning first=81 second=226 amount=-1 +kerning first=117 second=335 amount=-1 +kerning first=117 second=226 amount=-1 +kerning first=363 second=259 amount=-1 +kerning first=76 second=252 amount=-2 +kerning first=112 second=252 amount=-1 +kerning first=258 second=335 amount=-1 +kerning first=278 second=356 amount=-1 +kerning first=211 second=206 amount=-2 +kerning first=67 second=369 amount=-2 +kerning first=255 second=259 amount=-3 +kerning first=1079 second=1114 amount=-1 +kerning first=264 second=375 amount=-1 +kerning first=219 second=259 amount=-3 +kerning first=199 second=253 amount=-1 +kerning first=228 second=375 amount=-3 +kerning first=370 second=246 amount=-2 +kerning first=327 second=259 amount=-2 +kerning first=354 second=116 amount=-1 +kerning first=374 second=122 amount=-3 +kerning first=235 second=253 amount=-2 +kerning first=103 second=369 amount=-1 +kerning first=1052 second=1082 amount=-1 +kerning first=352 second=103 amount=-3 +kerning first=1079 second=1075 amount=-1 +kerning first=325 second=252 amount=-1 +kerning first=298 second=246 amount=-2 +kerning first=78 second=259 amount=-2 +kerning first=105 second=116 amount=-1 +kerning first=65 second=356 amount=-6 +kerning first=316 second=103 amount=-3 +kerning first=1043 second=1075 amount=-2 +kerning first=307 second=253 amount=-3 +kerning first=77 second=45 amount=-4 +kerning first=262 second=246 amount=-2 +kerning first=246 second=116 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=217 second=241 amount=-2 +kerning first=280 second=103 amount=-3 +kerning first=218 second=45 amount=-5 +kerning first=226 second=246 amount=-1 +kerning first=244 second=103 amount=-2 +kerning first=1102 second=1097 amount=-1 +kerning first=114 second=259 amount=-1 +kerning first=268 second=83 amount=-3 +kerning first=1037 second=1119 amount=-1 +kerning first=8220 second=378 amount=-1 +kerning first=121 second=246 amount=-3 +kerning first=264 second=266 amount=-3 +kerning first=85 second=246 amount=-2 +kerning first=197 second=83 amount=-3 +kerning first=89 second=122 amount=-3 +kerning first=1057 second=1056 amount=-1 +kerning first=192 second=266 amount=-3 +kerning first=89 second=279 amount=-3 +kerning first=338 second=122 amount=-2 +kerning first=244 second=369 amount=-1 +kerning first=202 second=323 amount=-2 +kerning first=201 second=109 amount=-1 +kerning first=302 second=122 amount=-1 +kerning first=87 second=266 amount=-3 +kerning first=87 second=375 amount=-3 +kerning first=350 second=356 amount=-3 +kerning first=316 second=369 amount=-2 +kerning first=274 second=323 amount=-2 +kerning first=201 second=382 amount=-2 +kerning first=377 second=83 amount=-1 +kerning first=230 second=122 amount=-2 +kerning first=335 second=117 amount=-1 +kerning first=280 second=369 amount=-2 +kerning first=204 second=336 amount=-2 +kerning first=87 second=115 amount=-3 +kerning first=207 second=305 amount=-1 +kerning first=230 second=46 amount=-3 +kerning first=78 second=380 amount=-1 +kerning first=346 second=323 amount=-3 +kerning first=316 second=248 amount=-1 +kerning first=364 second=213 amount=-1 +kerning first=83 second=233 amount=-1 +kerning first=272 second=198 amount=-4 +kerning first=230 second=273 amount=-1 +kerning first=1056 second=1105 amount=-1 +kerning first=192 second=115 amount=-2 +kerning first=219 second=380 amount=-3 +kerning first=264 second=115 amount=-2 +kerning first=233 second=355 amount=-1 +kerning first=103 second=248 amount=-2 +kerning first=45 second=223 amount=-2 +kerning first=119 second=233 amount=-3 +kerning first=197 second=355 amount=-1 +kerning first=211 second=330 amount=-2 +kerning first=8220 second=97 amount=-3 +kerning first=260 second=233 amount=-1 +kerning first=364 second=259 amount=-3 +kerning first=70 second=102 amount=-1 +kerning first=117 second=223 amount=-1 +kerning first=224 second=233 amount=-1 +kerning first=366 second=338 amount=-1 +kerning first=67 second=248 amount=-2 +kerning first=278 second=90 amount=-1 +kerning first=377 second=355 amount=-1 +kerning first=192 second=8217 amount=-5 +kerning first=199 second=365 amount=-2 +kerning first=86 second=315 amount=-1 +kerning first=296 second=233 amount=-2 +kerning first=264 second=263 amount=-2 +kerning first=45 second=75 amount=-5 +kerning first=261 second=244 amount=-1 +kerning first=368 second=233 amount=-2 +kerning first=269 second=355 amount=-1 +kerning first=69 second=110 amount=-1 +kerning first=272 second=313 amount=-2 +kerning first=65 second=350 amount=-3 +kerning first=105 second=110 amount=-2 +kerning first=1036 second=1090 amount=-3 +kerning first=256 second=213 amount=-3 +kerning first=8220 second=245 amount=-3 +kerning first=87 second=263 amount=-3 +kerning first=220 second=213 amount=-1 +kerning first=216 second=298 amount=-2 +kerning first=222 second=75 amount=-2 +kerning first=1108 second=1090 amount=-1 +kerning first=246 second=110 amount=-1 +kerning first=288 second=298 amount=-1 +kerning first=220 second=328 amount=-2 +kerning first=282 second=110 amount=-1 +kerning first=362 second=196 amount=-4 +kerning first=198 second=303 amount=-1 +kerning first=252 second=316 amount=-2 +kerning first=67 second=363 amount=-2 +kerning first=234 second=303 amount=-2 +kerning first=115 second=328 amount=-2 +kerning first=354 second=110 amount=-3 +kerning first=103 second=363 amount=-1 +kerning first=72 second=225 amount=-2 +kerning first=206 second=350 amount=-2 +kerning first=83 second=85 amount=-3 +kerning first=108 second=225 amount=-2 +kerning first=364 second=328 amount=-2 +kerning first=205 second=290 amount=-2 +kerning first=218 second=196 amount=-4 +kerning first=328 second=328 amount=-1 +kerning first=244 second=363 amount=-1 +kerning first=378 second=303 amount=-1 +kerning first=86 second=200 amount=-1 +kerning first=87 second=260 amount=-6 +kerning first=280 second=363 amount=-2 +kerning first=290 second=196 amount=-3 +kerning first=350 second=350 amount=-1 +kerning first=313 second=290 amount=-1 +kerning first=74 second=235 amount=-1 +kerning first=1090 second=1103 amount=-2 +kerning first=330 second=338 amount=-2 +kerning first=352 second=363 amount=-1 +kerning first=264 second=260 amount=-3 +kerning first=258 second=338 amount=-3 +kerning first=272 second=45 amount=-1 +kerning first=376 second=286 amount=-3 +kerning first=196 second=369 amount=-3 +kerning first=85 second=345 amount=-1 +kerning first=264 second=256 amount=-3 +kerning first=336 second=260 amount=-4 +kerning first=255 second=380 amount=-3 +kerning first=304 second=286 amount=-2 +kerning first=1027 second=1093 amount=-3 +kerning first=291 second=380 amount=-3 +kerning first=332 second=85 amount=-1 +kerning first=213 second=225 amount=-1 +kerning first=121 second=98 amount=-1 +kerning first=8220 second=242 amount=-3 +kerning first=327 second=380 amount=-1 +kerning first=371 second=46 amount=-2 +kerning first=249 second=225 amount=-1 +kerning first=262 second=98 amount=-1 +kerning first=363 second=380 amount=-2 +kerning first=260 second=85 amount=-3 +kerning first=268 second=286 amount=-3 +kerning first=1092 second=1102 amount=-1 +kerning first=69 second=261 amount=-1 +kerning first=289 second=367 amount=-1 +kerning first=105 second=261 amount=-2 +kerning first=325 second=367 amount=-2 +kerning first=74 second=87 amount=-1 +kerning first=217 second=367 amount=-1 +kerning first=377 second=86 amount=-2 +kerning first=210 second=261 amount=-1 +kerning first=253 second=367 amount=-1 +kerning first=112 second=367 amount=-1 +kerning first=274 second=326 amount=-1 +kerning first=8216 second=333 amount=-3 +kerning first=363 second=111 amount=-1 +kerning first=260 second=351 amount=-2 +kerning first=211 second=327 amount=-2 +kerning first=202 second=211 amount=-1 +kerning first=197 second=352 amount=-3 +kerning first=368 second=351 amount=-2 +kerning first=193 second=210 amount=-3 +kerning first=346 second=326 amount=-1 +kerning first=328 second=230 amount=-1 +kerning first=76 second=367 amount=-2 +kerning first=219 second=377 amount=-1 +kerning first=382 second=326 amount=-2 +kerning first=88 second=210 amount=-3 +kerning first=381 second=112 amount=-1 +kerning first=8217 second=284 amount=-2 +kerning first=352 second=366 amount=-3 +kerning first=345 second=112 amount=1 +kerning first=210 second=8220 amount=-2 +kerning first=202 second=326 amount=-1 +kerning first=1090 second=1092 amount=-1 +kerning first=280 second=366 amount=-2 +kerning first=251 second=235 amount=-1 +kerning first=274 second=211 amount=-1 +kerning first=246 second=261 amount=-1 +kerning first=105 second=8220 amount=-2 +kerning first=287 second=235 amount=-2 +kerning first=235 second=250 amount=-2 +kerning first=323 second=263 amount=-2 +kerning first=323 second=235 amount=-2 +kerning first=199 second=250 amount=-2 +kerning first=84 second=302 amount=-1 +kerning first=1057 second=1053 amount=-1 +kerning first=201 second=112 amount=-2 +kerning first=307 second=250 amount=-1 +kerning first=354 second=261 amount=-5 +kerning first=197 second=86 amount=-6 +kerning first=241 second=287 amount=-2 +kerning first=67 second=366 amount=-2 +kerning first=72 second=245 amount=-2 +kerning first=80 second=275 amount=-1 +kerning first=242 second=353 amount=-2 +kerning first=269 second=237 amount=-2 +kerning first=264 second=378 amount=-2 +kerning first=313 second=287 amount=-3 +kerning first=278 second=353 amount=-1 +kerning first=327 second=262 amount=-2 +kerning first=233 second=237 amount=-2 +kerning first=1067 second=1116 amount=-1 +kerning first=314 second=353 amount=-2 +kerning first=197 second=237 amount=-1 +kerning first=336 second=378 amount=-2 +kerning first=350 second=353 amount=-1 +kerning first=196 second=171 amount=-4 +kerning first=316 second=100 amount=-1 +kerning first=65 second=353 amount=-2 +kerning first=86 second=197 amount=-6 +kerning first=87 second=378 amount=-3 +kerning first=208 second=366 amount=-1 +kerning first=352 second=100 amount=-1 +kerning first=8222 second=107 amount=-1 +kerning first=101 second=353 amount=-2 +kerning first=228 second=378 amount=-1 +kerning first=268 second=171 amount=-4 +kerning first=69 second=379 amount=-1 +kerning first=304 second=171 amount=-4 +kerning first=45 second=198 amount=-4 +kerning first=354 second=113 amount=-3 +kerning first=235 second=365 amount=-2 +kerning first=262 second=248 amount=-2 +kerning first=377 second=352 amount=-1 +kerning first=217 second=249 amount=-1 +kerning first=8216 second=218 amount=-1 +kerning first=201 second=44 amount=-1 +kerning first=76 second=249 amount=-2 +kerning first=112 second=249 amount=-1 +kerning first=374 second=346 amount=-3 +kerning first=365 second=275 amount=-1 +kerning first=78 second=262 amount=-2 +kerning first=325 second=249 amount=-1 +kerning first=73 second=288 amount=-2 +kerning first=257 second=275 amount=-1 +kerning first=72 second=74 amount=-1 +kerning first=366 second=223 amount=-2 +kerning first=8250 second=205 amount=-5 +kerning first=1038 second=1104 amount=-4 +kerning first=105 second=113 amount=-1 +kerning first=253 second=249 amount=-1 +kerning first=67 second=100 amount=-2 +kerning first=219 second=262 amount=-1 +kerning first=1043 second=1078 amount=-3 +kerning first=289 second=249 amount=-1 +kerning first=103 second=100 amount=-2 +kerning first=221 second=275 amount=-3 +kerning first=213 second=74 amount=-2 +kerning first=1045 second=1091 amount=-1 +kerning first=1079 second=1078 amount=-1 +kerning first=195 second=217 amount=-3 +kerning first=208 second=87 amount=-2 +kerning first=104 second=314 amount=-1 +kerning first=67 second=87 amount=-1 +kerning first=381 second=288 amount=-1 +kerning first=245 second=314 amount=-2 +kerning first=8222 second=218 amount=-3 +kerning first=252 second=113 amount=-1 +kerning first=260 second=217 amount=-3 +kerning first=298 second=333 amount=-2 +kerning first=317 second=314 amount=-2 +kerning first=262 second=333 amount=-2 +kerning first=88 second=269 amount=-2 +kerning first=281 second=314 amount=-3 +kerning first=334 second=80 amount=-2 +kerning first=321 second=210 amount=-1 +kerning first=75 second=366 amount=-2 +kerning first=370 second=333 amount=-2 +kerning first=229 second=269 amount=-1 +kerning first=8250 second=192 amount=-4 +kerning first=281 second=46 amount=-3 +kerning first=193 second=269 amount=-1 +kerning first=201 second=288 amount=-1 +kerning first=353 second=314 amount=-2 +kerning first=327 second=281 amount=-2 +kerning first=236 second=307 amount=-1 +kerning first=214 second=198 amount=-4 +kerning first=363 second=281 amount=-1 +kerning first=70 second=262 amount=-1 +kerning first=99 second=224 amount=-2 +kerning first=355 second=255 amount=-1 +kerning first=286 second=198 amount=-3 +kerning first=240 second=224 amount=-1 +kerning first=204 second=224 amount=-2 +kerning first=72 second=210 amount=-2 +kerning first=380 second=307 amount=-1 +kerning first=283 second=255 amount=-2 +kerning first=193 second=369 amount=-3 +kerning first=352 second=326 amount=-1 +kerning first=219 second=281 amount=-2 +kerning first=275 second=243 amount=-1 +kerning first=255 second=281 amount=-3 +kerning first=311 second=243 amount=-3 +kerning first=291 second=281 amount=-2 +kerning first=8220 second=263 amount=-3 +kerning first=1039 second=1054 amount=-1 +kerning first=378 second=120 amount=-1 +kerning first=334 second=73 amount=-2 +kerning first=321 second=203 amount=-2 +kerning first=221 second=229 amount=-5 +kerning first=68 second=75 amount=-2 +kerning first=213 second=203 amount=-2 +kerning first=80 second=229 amount=-1 +kerning first=234 second=99 amount=-1 +kerning first=116 second=229 amount=-1 +kerning first=314 second=118 amount=-3 +kerning first=198 second=120 amount=-1 +kerning first=317 second=75 amount=-2 +kerning first=217 second=101 amount=-2 +kerning first=278 second=118 amount=-1 +kerning first=234 second=120 amount=-2 +kerning first=253 second=101 amount=-3 +kerning first=274 second=382 amount=-2 +kerning first=229 second=248 amount=-1 +kerning first=257 second=229 amount=-1 +kerning first=350 second=118 amount=-3 +kerning first=262 second=73 amount=-3 +kerning first=378 second=99 amount=-1 +kerning first=325 second=101 amount=-2 +kerning first=101 second=118 amount=-2 +kerning first=216 second=106 amount=-1 +kerning first=315 second=90 amount=-3 +kerning first=242 second=118 amount=-2 +kerning first=375 second=347 amount=-3 +kerning first=283 second=8220 amount=-2 +kerning first=75 second=106 amount=-1 +kerning first=86 second=68 amount=-1 +kerning first=206 second=118 amount=-2 +kerning first=381 second=267 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=211 second=8220 amount=-2 +kerning first=324 second=106 amount=-2 +kerning first=337 second=241 amount=-1 +kerning first=121 second=355 amount=-1 +kerning first=352 second=87 amount=-3 +kerning first=65 second=118 amount=-3 +kerning first=268 second=121 amount=-1 +kerning first=106 second=8220 amount=-2 +kerning first=252 second=106 amount=-2 +kerning first=117 second=240 amount=-1 +kerning first=288 second=106 amount=-1 +kerning first=280 second=87 amount=-1 +kerning first=262 second=361 amount=-2 +kerning first=83 second=364 amount=-3 +kerning first=226 second=361 amount=-1 +kerning first=203 second=264 amount=-1 +kerning first=236 second=333 amount=-1 +kerning first=8220 second=291 amount=-4 +kerning first=376 second=212 amount=-3 +kerning first=298 second=361 amount=-2 +kerning first=227 second=303 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=260 second=364 amount=-3 +kerning first=201 second=316 amount=-1 +kerning first=304 second=212 amount=-2 +kerning first=370 second=361 amount=-1 +kerning first=101 second=111 amount=-1 +kerning first=196 second=212 amount=-3 +kerning first=365 second=257 amount=-1 +kerning first=67 second=66 amount=-3 +kerning first=206 second=111 amount=-2 +kerning first=65 second=8249 amount=-4 +kerning first=199 second=368 amount=-2 +kerning first=68 second=82 amount=-2 +kerning first=260 second=104 amount=-2 +kerning first=280 second=66 amount=-2 +kerning first=266 second=335 amount=-2 +kerning first=332 second=364 amount=-1 +kerning first=224 second=104 amount=-1 +kerning first=229 second=44 amount=-1 +kerning first=1039 second=1057 amount=-1 +kerning first=208 second=66 amount=-2 +kerning first=85 second=361 amount=-1 +kerning first=88 second=44 amount=-1 +kerning first=121 second=361 amount=-1 +kerning first=201 second=323 amount=-2 +kerning first=376 second=205 amount=-1 +kerning first=352 second=66 amount=-3 +kerning first=352 second=347 amount=-1 +kerning first=332 second=97 amount=-1 +kerning first=316 second=347 amount=-2 +kerning first=1057 second=1078 amount=-1 +kerning first=374 second=8250 amount=-3 +kerning first=71 second=278 amount=-1 +kerning first=244 second=326 amount=-1 +kerning first=280 second=347 amount=-1 +kerning first=78 second=281 amount=-2 +kerning first=381 second=323 amount=-1 +kerning first=268 second=205 amount=-3 +kerning first=212 second=278 amount=-2 +kerning first=67 second=354 amount=-1 +kerning first=244 second=347 amount=-2 +kerning first=264 second=351 amount=-2 +kerning first=296 second=97 amount=-2 +kerning first=316 second=326 amount=-1 +kerning first=365 second=250 amount=-1 +kerning first=242 second=371 amount=-1 +kerning first=284 second=278 amount=-1 +kerning first=208 second=354 amount=-2 +kerning first=116 second=250 amount=-1 +kerning first=103 second=347 amount=-3 +kerning first=356 second=278 amount=-1 +kerning first=103 second=326 amount=-1 +kerning first=257 second=250 amount=-1 +kerning first=67 second=347 amount=-2 +kerning first=1057 second=1099 amount=-1 +kerning first=280 second=354 amount=-1 +kerning first=221 second=250 amount=-2 +kerning first=268 second=233 amount=-2 +kerning first=121 second=333 amount=-3 +kerning first=314 second=378 amount=-1 +kerning first=245 second=103 amount=-2 +kerning first=1059 second=1047 amount=-3 +kerning first=232 second=233 amount=-1 +kerning first=266 second=82 amount=-3 +kerning first=101 second=371 amount=-2 +kerning first=85 second=333 amount=-2 +kerning first=278 second=378 amount=-2 +kerning first=350 second=90 amount=-1 +kerning first=209 second=103 amount=-3 +kerning first=352 second=354 amount=-3 +kerning first=73 second=226 amount=-2 +kerning first=275 second=271 amount=-1 +kerning first=226 second=333 amount=-1 +kerning first=304 second=233 amount=-2 +kerning first=109 second=226 amount=-1 +kerning first=311 second=271 amount=-3 +kerning first=350 second=378 amount=-2 +kerning first=104 second=103 amount=-2 +kerning first=100 second=365 amount=-1 +kerning first=116 second=257 amount=-1 +kerning first=214 second=219 amount=-1 +kerning first=377 second=203 amount=-1 +kerning first=68 second=103 amount=-1 +kerning first=376 second=233 amount=-3 +kerning first=214 second=226 amount=-1 +kerning first=1075 second=1092 amount=-1 +kerning first=230 second=8250 amount=-2 +kerning first=101 second=378 amount=-2 +kerning first=334 second=45 amount=-1 +kerning first=250 second=226 amount=-1 +kerning first=89 second=8250 amount=-3 +kerning first=242 second=378 amount=-2 +kerning first=222 second=204 amount=-2 +kerning first=1039 second=1085 amount=-1 +kerning first=104 second=110 amount=-1 +kerning first=286 second=226 amount=-1 +kerning first=80 second=257 amount=-1 +kerning first=206 second=378 amount=-1 +kerning first=104 second=363 amount=-1 +kerning first=232 second=240 amount=-1 +kerning first=296 second=214 amount=-2 +kerning first=88 second=220 amount=-2 +kerning first=268 second=240 amount=-2 +kerning first=260 second=214 amount=-3 +kerning first=245 second=110 amount=-1 +kerning first=209 second=363 amount=-2 +kerning first=84 second=72 amount=-1 +kerning first=79 second=65 amount=-4 +kerning first=368 second=214 amount=-1 +kerning first=281 second=110 amount=-2 +kerning first=245 second=363 amount=-1 +kerning first=196 second=240 amount=-1 +kerning first=200 second=304 amount=-2 +kerning first=281 second=363 amount=-2 +kerning first=73 second=257 amount=-2 +kerning first=106 second=318 amount=-2 +kerning first=317 second=363 amount=-2 +kerning first=1085 second=1108 amount=-1 +kerning first=220 second=65 amount=-4 +kerning first=370 second=284 amount=-1 +kerning first=353 second=363 amount=-1 +kerning first=304 second=240 amount=-2 +kerning first=262 second=284 amount=-3 +kerning first=193 second=220 amount=-3 +kerning first=187 second=270 amount=-5 +kerning first=337 second=371 amount=-1 +kerning first=90 second=334 amount=-1 +kerning first=298 second=284 amount=-2 +kerning first=187 second=369 amount=-1 +kerning first=283 second=318 amount=-3 +kerning first=364 second=65 amount=-4 +kerning first=118 second=117 amount=-1 +kerning first=118 second=369 amount=-1 +kerning first=99 second=259 amount=-2 +kerning first=223 second=116 amount=-1 +kerning first=198 second=71 amount=-1 +kerning first=379 second=375 amount=-3 +kerning first=259 second=369 amount=-1 +kerning first=240 second=259 amount=-1 +kerning first=355 second=318 amount=-1 +kerning first=223 second=369 amount=-1 +kerning first=204 second=259 amount=-2 +kerning first=112 second=8217 amount=-2 +kerning first=82 second=116 amount=-3 +kerning first=1070 second=1030 amount=-1 +kerning first=224 second=97 amount=-1 +kerning first=82 second=369 amount=-2 +kerning first=83 second=97 amount=-2 +kerning first=118 second=116 amount=-1 +kerning first=206 second=228 amount=-2 +kerning first=109 second=254 amount=-2 +kerning first=1064 second=1102 amount=-1 +kerning first=1086 second=1075 amount=-1 +kerning first=264 second=253 amount=-1 +kerning first=1100 second=1102 amount=-1 +kerning first=1056 second=1055 amount=-1 +kerning first=101 second=228 amount=-2 +kerning first=236 second=279 amount=-1 +kerning first=8222 second=382 amount=-3 +kerning first=250 second=254 amount=-2 +kerning first=378 second=324 amount=-2 +kerning first=1100 second=1074 amount=-1 +kerning first=307 second=375 amount=-3 +kerning first=331 second=369 amount=-1 +kerning first=198 second=324 amount=-1 +kerning first=8220 second=326 amount=-1 +kerning first=100 second=355 amount=-1 +kerning first=90 second=81 amount=-1 +kerning first=295 second=369 amount=-1 +kerning first=1050 second=1104 amount=-2 +kerning first=117 second=273 amount=-1 +kerning first=86 second=377 amount=-3 +kerning first=235 second=375 amount=-2 +kerning first=381 second=344 amount=-1 +kerning first=199 second=375 amount=-1 +kerning first=367 second=369 amount=-1 +kerning first=234 second=324 amount=-2 +kerning first=67 second=298 amount=-3 +kerning first=187 second=380 amount=-5 +kerning first=277 second=355 amount=-1 +kerning first=283 second=234 amount=-1 +kerning first=201 second=344 amount=-2 +kerning first=1049 second=1108 amount=-1 +kerning first=85 second=284 amount=-1 +kerning first=1064 second=1074 amount=-1 +kerning first=1086 second=1103 amount=-2 +kerning first=208 second=298 amount=-2 +kerning first=99 second=287 amount=-3 +kerning first=90 second=224 amount=-1 +kerning first=70 second=234 amount=-1 +kerning first=274 second=332 amount=-1 +kerning first=87 second=253 amount=-3 +kerning first=106 second=234 amount=-1 +kerning first=280 second=298 amount=-2 +kerning first=1053 second=1119 amount=-1 +kerning first=216 second=310 amount=-2 +kerning first=1072 second=1100 amount=-1 +kerning first=380 second=279 amount=-1 +kerning first=8218 second=371 amount=-1 +kerning first=1108 second=1100 amount=-1 +kerning first=344 second=279 amount=-3 +kerning first=192 second=253 amount=-3 +kerning first=1070 second=1058 amount=-1 +kerning first=310 second=332 amount=-3 +kerning first=352 second=298 amount=-3 +kerning first=67 second=249 amount=-2 +kerning first=8217 second=67 amount=-2 +kerning first=74 second=242 amount=-1 +kerning first=288 second=85 amount=-1 +kerning first=240 second=287 amount=-2 +kerning first=8218 second=90 amount=-1 +kerning first=307 second=108 amount=-2 +kerning first=240 second=8217 amount=-2 +kerning first=77 second=46 amount=-1 +kerning first=216 second=85 amount=-1 +kerning first=1049 second=1086 amount=-1 +kerning first=67 second=270 amount=-3 +kerning first=251 second=242 amount=-1 +kerning first=291 second=105 amount=-2 +kerning first=75 second=338 amount=-3 +kerning first=368 second=210 amount=-1 +kerning first=327 second=105 amount=-1 +kerning first=209 second=335 amount=-2 +kerning first=378 second=380 amount=-2 +kerning first=323 second=242 amount=-2 +kerning first=70 second=290 amount=-1 +kerning first=99 second=8217 amount=-2 +kerning first=287 second=242 amount=-2 +kerning first=255 second=105 amount=-2 +kerning first=281 second=335 amount=-1 +kerning first=218 second=382 amount=-3 +kerning first=350 second=333 amount=-1 +kerning first=1104 second=1117 amount=-1 +kerning first=1046 second=1060 amount=-4 +kerning first=1092 second=1083 amount=-2 +kerning first=1067 second=1094 amount=-1 +kerning first=199 second=197 amount=-3 +kerning first=198 second=380 amount=-2 +kerning first=352 second=270 amount=-3 +kerning first=193 second=248 amount=-1 +kerning first=1031 second=1094 amount=-1 +kerning first=234 second=380 amount=-2 +kerning first=228 second=225 amount=-1 +kerning first=69 second=119 amount=-1 +kerning first=264 second=225 amount=-2 +kerning first=88 second=248 amount=-2 +kerning first=105 second=119 amount=-3 +kerning first=350 second=228 amount=-1 +kerning first=199 second=108 amount=-1 +kerning first=208 second=270 amount=-2 +kerning first=314 second=228 amount=-2 +kerning first=379 second=197 amount=-1 +kerning first=1042 second=1049 amount=-2 +kerning first=278 second=228 amount=-1 +kerning first=71 second=74 amount=-1 +kerning first=280 second=270 amount=-2 +kerning first=242 second=228 amount=-1 +kerning first=118 second=351 amount=-3 +kerning first=87 second=225 amount=-5 +kerning first=1056 second=1083 amount=-2 +kerning first=296 second=103 amount=-3 +kerning first=282 second=119 amount=-1 +kerning first=8216 second=283 amount=-3 +kerning first=253 second=122 amount=-3 +kerning first=118 second=98 amount=-1 +kerning first=356 second=46 amount=-5 +kerning first=100 second=102 amount=-1 +kerning first=99 second=231 amount=-1 +kerning first=350 second=200 amount=-3 +kerning first=217 second=122 amount=-3 +kerning first=354 second=119 amount=-3 +kerning first=212 second=74 amount=-2 +kerning first=85 second=256 amount=-4 +kerning first=198 second=352 amount=-2 +kerning first=317 second=199 amount=-1 +kerning first=112 second=122 amount=-2 +kerning first=284 second=74 amount=-1 +kerning first=1049 second=1080 amount=-1 +kerning first=69 second=211 amount=-1 +kerning first=212 second=46 amount=-3 +kerning first=336 second=225 amount=-1 +kerning first=352 second=119 amount=-3 +kerning first=367 second=116 amount=-1 +kerning first=262 second=256 amount=-3 +kerning first=325 second=122 amount=-1 +kerning first=1074 second=1097 amount=-1 +kerning first=284 second=46 amount=-3 +kerning first=8217 second=334 amount=-2 +kerning first=204 second=231 amount=-2 +kerning first=282 second=318 amount=-1 +kerning first=289 second=122 amount=-3 +kerning first=258 second=245 amount=-1 +kerning first=288 second=366 amount=-1 +kerning first=282 second=211 amount=-1 +kerning first=187 second=379 amount=-4 +kerning first=119 second=316 amount=-2 +kerning first=71 second=46 amount=-3 +kerning first=244 second=380 amount=-2 +kerning first=107 second=46 amount=-1 +kerning first=370 second=256 amount=-4 +kerning first=216 second=366 amount=-1 +kerning first=117 second=245 amount=-1 +kerning first=334 second=256 amount=-4 +kerning first=241 second=102 amount=-1 +kerning first=76 second=122 amount=-3 +kerning first=277 second=102 amount=-2 +kerning first=366 second=245 amount=-2 +kerning first=90 second=80 amount=-1 +kerning first=330 second=245 amount=-2 +kerning first=8218 second=118 amount=-3 +kerning first=354 second=211 amount=-3 +kerning first=230 second=112 amount=-1 +kerning first=321 second=86 amount=-3 +kerning first=352 second=337 amount=-1 +kerning first=310 second=107 amount=-1 +kerning first=194 second=112 amount=-3 +kerning first=374 second=81 amount=-3 +kerning first=374 second=198 amount=-6 +kerning first=274 second=107 amount=-1 +kerning first=202 second=171 amount=-2 +kerning first=344 second=216 amount=-3 +kerning first=1061 second=1086 amount=-2 +kerning first=382 second=107 amount=-2 +kerning first=325 second=211 amount=-2 +kerning first=1025 second=1117 amount=-1 +kerning first=89 second=112 amount=-2 +kerning first=346 second=107 amount=-2 +kerning first=274 second=171 amount=-2 +kerning first=333 second=261 amount=-1 +kerning first=369 second=261 amount=-1 +kerning first=97 second=107 amount=-1 +kerning first=226 second=8221 amount=-3 +kerning first=200 second=216 amount=-1 +kerning first=356 second=105 amount=-2 +kerning first=8249 second=87 amount=-3 +kerning first=202 second=107 amount=-1 +kerning first=97 second=171 amount=-2 +kerning first=89 second=81 amount=-3 +kerning first=334 second=8221 amount=-2 +kerning first=1081 second=1072 amount=-1 +kerning first=346 second=100 amount=-1 +kerning first=313 second=67 amount=-1 +kerning first=307 second=235 amount=-1 +kerning first=1053 second=1098 amount=-1 +kerning first=290 second=209 amount=-1 +kerning first=212 second=105 amount=-1 +kerning first=266 second=336 amount=-3 +kerning first=1098 second=1074 amount=-1 +kerning first=248 second=105 amount=-1 +kerning first=379 second=235 amount=-1 +kerning first=1117 second=1072 amount=-1 +kerning first=374 second=112 amount=-2 +kerning first=266 second=81 amount=-3 +kerning first=66 second=251 amount=-3 +kerning first=376 second=203 amount=-1 +kerning first=310 second=171 amount=-4 +kerning first=338 second=112 amount=-2 +kerning first=346 second=171 amount=-3 +kerning first=8250 second=75 amount=-5 +kerning first=302 second=112 amount=-1 +kerning first=338 second=81 amount=-1 +kerning first=8249 second=354 amount=-3 +kerning first=382 second=171 amount=-3 +kerning first=313 second=296 amount=-2 +kerning first=266 second=112 amount=-3 +kerning first=302 second=81 amount=-2 +kerning first=1045 second=1041 amount=-1 +kerning first=102 second=251 amount=-1 +kerning first=379 second=228 amount=-1 +kerning first=250 second=275 amount=-1 +kerning first=108 second=353 amount=-2 +kerning first=243 second=251 amount=-1 +kerning first=1045 second=1079 amount=-1 +kerning first=207 second=251 amount=-2 +kerning first=84 second=230 amount=-5 +kerning first=269 second=249 amount=-2 +kerning first=89 second=379 amount=-3 +kerning first=97 second=100 amount=-1 +kerning first=76 second=204 amount=-2 +kerning first=305 second=249 amount=-1 +kerning first=8216 second=231 amount=-3 +kerning first=199 second=204 amount=-3 +kerning first=249 second=353 amount=-2 +kerning first=279 second=251 amount=-2 +kerning first=279 second=223 amount=-1 +kerning first=1071 second=1105 amount=-1 +kerning first=195 second=281 amount=-1 +kerning first=73 second=275 amount=-2 +kerning first=243 second=223 amount=-1 +kerning first=1107 second=1105 amount=-1 +kerning first=351 second=251 amount=-1 +kerning first=266 second=379 amount=-2 +kerning first=379 second=204 amount=-1 +kerning first=290 second=206 amount=-1 +kerning first=315 second=223 amount=-1 +kerning first=72 second=353 amount=-2 +kerning first=66 second=8249 amount=-3 +kerning first=363 second=365 amount=-1 +kerning first=102 second=223 amount=-1 +kerning first=304 second=268 amount=-2 +kerning first=382 second=339 amount=-1 +kerning first=76 second=211 amount=-1 +kerning first=369 second=230 amount=-1 +kerning first=66 second=223 amount=-3 +kerning first=268 second=268 amount=-3 +kerning first=376 second=268 amount=-3 +kerning first=310 second=339 amount=-2 +kerning first=8250 second=323 amount=-5 +kerning first=122 second=229 amount=-1 +kerning first=72 second=83 amount=-2 +kerning first=333 second=230 amount=-1 +kerning first=197 second=249 amount=-3 +kerning first=338 second=313 amount=-2 +kerning first=225 second=230 amount=-1 +kerning first=233 second=249 amount=-2 +kerning first=374 second=313 amount=-1 +kerning first=219 second=291 amount=-4 +kerning first=261 second=230 amount=-1 +kerning first=213 second=83 amount=-1 +kerning first=266 second=313 amount=-3 +kerning first=377 second=256 amount=-1 +kerning first=120 second=230 amount=-2 +kerning first=196 second=268 amount=-3 +kerning first=217 second=211 amount=-1 +kerning first=86 second=76 amount=-1 +kerning first=377 second=284 amount=-1 +kerning first=80 second=283 amount=-1 +kerning first=230 second=109 amount=-2 +kerning first=333 second=289 amount=-2 +kerning first=321 second=83 amount=-1 +kerning first=355 second=375 amount=-1 +kerning first=1097 second=1089 amount=-1 +kerning first=274 second=192 amount=-2 +kerning first=369 second=289 amount=-3 +kerning first=338 second=84 amount=-1 +kerning first=89 second=344 amount=-1 +kerning first=266 second=109 amount=-1 +kerning first=236 second=244 amount=-1 +kerning first=202 second=192 amount=-2 +kerning first=263 second=97 amount=-2 +kerning first=326 second=237 amount=-1 +kerning first=1024 second=1091 amount=-1 +kerning first=246 second=187 amount=-2 +kerning first=379 second=232 amount=-1 +kerning first=1060 second=1091 amount=-1 +kerning first=254 second=237 amount=-1 +kerning first=344 second=244 amount=-3 +kerning first=110 second=324 amount=-1 +kerning first=197 second=284 amount=-3 +kerning first=202 second=199 amount=-1 +kerning first=89 second=109 amount=-3 +kerning first=380 second=244 amount=-1 +kerning first=338 second=379 amount=-1 +kerning first=336 second=194 amount=-4 +kerning first=97 second=250 amount=-1 +kerning first=315 second=282 amount=-2 +kerning first=89 second=116 amount=-1 +kerning first=235 second=232 amount=-1 +kerning first=377 second=277 amount=-1 +kerning first=113 second=237 amount=-1 +kerning first=230 second=116 amount=-1 +kerning first=264 second=194 amount=-3 +kerning first=315 second=89 amount=-3 +kerning first=77 second=237 amount=-1 +kerning first=205 second=334 amount=-2 +kerning first=194 second=116 amount=-1 +kerning first=84 second=289 amount=-4 +kerning first=120 second=289 amount=-2 +kerning first=269 second=277 amount=-1 +kerning first=233 second=277 amount=-1 +kerning first=87 second=194 amount=-6 +kerning first=225 second=289 amount=-2 +kerning first=1056 second=1034 amount=-1 +kerning first=79 second=346 amount=-1 +kerning first=66 second=282 amount=-4 +kerning first=261 second=289 amount=-1 +kerning first=8216 second=259 amount=-3 +kerning first=230 second=351 amount=-2 +kerning first=279 second=254 amount=-2 +kerning first=8250 second=103 amount=-3 +kerning first=79 second=374 amount=-2 +kerning first=321 second=121 amount=-3 +kerning first=194 second=351 amount=-2 +kerning first=274 second=72 amount=-2 +kerning first=315 second=254 amount=-2 +kerning first=197 second=277 amount=-1 +kerning first=302 second=351 amount=-2 +kerning first=351 second=254 amount=-2 +kerning first=249 second=121 amount=-3 +kerning first=266 second=351 amount=-2 +kerning first=72 second=350 amount=-2 +kerning first=288 second=325 amount=-1 +kerning first=1071 second=1102 amount=-1 +kerning first=102 second=254 amount=4 +kerning first=382 second=367 amount=-2 +kerning first=1089 second=1095 amount=-1 +kerning first=321 second=350 amount=-1 +kerning first=108 second=121 amount=-3 +kerning first=274 second=367 amount=-2 +kerning first=1053 second=1095 amount=-1 +kerning first=213 second=350 amount=-1 +kerning first=72 second=121 amount=-2 +kerning first=310 second=367 amount=-3 +kerning first=1071 second=1074 amount=-1 +kerning first=89 second=351 amount=-3 +kerning first=243 second=254 amount=-1 +kerning first=233 second=305 amount=-2 +kerning first=202 second=367 amount=-2 +kerning first=1079 second=1096 amount=-1 +kerning first=122 second=117 amount=-2 +kerning first=315 second=213 amount=-1 +kerning first=197 second=305 amount=-1 +kerning first=338 second=344 amount=-2 +kerning first=274 second=199 amount=-1 +kerning first=225 second=261 amount=-1 +kerning first=274 second=79 amount=-1 +kerning first=86 second=117 amount=-2 +kerning first=1024 second=1119 amount=-1 +kerning first=305 second=305 amount=-1 +kerning first=374 second=344 amount=-1 +kerning first=332 second=366 amount=-1 +kerning first=261 second=261 amount=-1 +kerning first=97 second=367 amount=-1 +kerning first=227 second=117 amount=-1 +kerning first=269 second=305 amount=-2 +kerning first=67 second=260 amount=-3 +kerning first=202 second=79 amount=-1 +kerning first=1043 second=1096 amount=-2 +kerning first=377 second=76 amount=-1 +kerning first=66 second=254 amount=-3 +kerning first=377 second=305 amount=-1 +kerning first=208 second=260 amount=-4 +kerning first=249 second=114 amount=-1 +kerning first=374 second=351 amount=-3 +kerning first=256 second=374 amount=-6 +kerning first=338 second=351 amount=-1 +kerning first=263 second=117 amount=-2 +kerning first=81 second=192 amount=-4 +kerning first=280 second=260 amount=-2 +kerning first=84 second=261 amount=-5 +kerning first=310 second=79 amount=-3 +kerning first=371 second=117 amount=-1 +kerning first=1061 second=1089 amount=-2 +kerning first=252 second=44 amount=-2 +kerning first=209 second=117 amount=-2 +kerning first=266 second=344 amount=-3 +kerning first=356 second=379 amount=-3 +kerning first=120 second=261 amount=-2 +kerning first=202 second=72 amount=-2 +kerning first=241 second=228 amount=-1 +kerning first=346 second=192 amount=-4 +kerning first=219 second=337 amount=-2 +kerning first=194 second=316 amount=-2 +kerning first=103 second=291 amount=-2 +kerning first=377 second=336 amount=-1 +kerning first=283 second=311 amount=-2 +kerning first=363 second=361 amount=-1 +kerning first=230 second=316 amount=-3 +kerning first=67 second=291 amount=-3 +kerning first=366 second=44 amount=-5 +kerning first=313 second=362 amount=-3 +kerning first=266 second=316 amount=-1 +kerning first=78 second=337 amount=-2 +kerning first=245 second=361 amount=-1 +kerning first=363 second=337 amount=-1 +kerning first=253 second=382 amount=-3 +kerning first=338 second=316 amount=-1 +kerning first=313 second=331 amount=-1 +kerning first=327 second=337 amount=-2 +kerning first=289 second=382 amount=-3 +kerning first=106 second=311 amount=-1 +kerning first=232 second=271 amount=-1 +kerning first=291 second=337 amount=-2 +kerning first=115 second=8221 amount=-2 +kerning first=67 second=267 amount=-2 +kerning first=241 second=331 amount=-1 +kerning first=66 second=226 amount=-3 +kerning first=255 second=337 amount=-3 +kerning first=1046 second=1057 amount=-4 +kerning first=103 second=267 amount=-2 +kerning first=277 second=331 amount=-2 +kerning first=84 second=286 amount=-3 +kerning first=102 second=226 amount=-2 +kerning first=260 second=221 amount=-6 +kerning first=1104 second=1082 amount=-1 +kerning first=8222 second=119 amount=-3 +kerning first=288 second=310 amount=-1 +kerning first=330 second=266 amount=-2 +kerning first=100 second=331 amount=-1 +kerning first=366 second=266 amount=-1 +kerning first=1114 second=1087 amount=-1 +kerning first=255 second=361 amount=-1 +kerning first=83 second=221 amount=-3 +kerning first=258 second=266 amount=-3 +kerning first=1042 second=1056 amount=-2 +kerning first=1070 second=1037 amount=-1 +kerning first=219 second=361 amount=-1 +kerning first=327 second=361 amount=-2 +kerning first=1089 second=1119 amount=-1 +kerning first=291 second=361 amount=-1 +kerning first=1031 second=1101 amount=-1 +kerning first=199 second=207 amount=-3 +kerning first=377 second=45 amount=-3 +kerning first=1067 second=1101 amount=-1 +kerning first=283 second=227 amount=-2 +kerning first=377 second=252 amount=-3 +kerning first=337 second=44 amount=-3 +kerning first=197 second=252 amount=-3 +kerning first=119 second=104 amount=-2 +kerning first=221 second=201 amount=-1 +kerning first=233 second=252 amount=-2 +kerning first=83 second=104 amount=-2 +kerning first=269 second=252 amount=-2 +kerning first=354 second=246 amount=-3 +kerning first=355 second=227 amount=-1 +kerning first=8216 second=234 amount=-3 +kerning first=305 second=252 amount=-1 +kerning first=298 second=231 amount=-2 +kerning first=80 second=201 amount=-1 +kerning first=213 second=381 amount=-2 +kerning first=1090 second=1104 amount=-1 +kerning first=382 second=103 amount=-2 +kerning first=112 second=382 amount=-2 +kerning first=213 second=90 amount=-2 +kerning first=207 second=226 amount=-2 +kerning first=346 second=103 amount=-3 +kerning first=8250 second=72 amount=-5 +kerning first=321 second=90 amount=-3 +kerning first=243 second=226 amount=-1 +kerning first=310 second=103 amount=-2 +kerning first=352 second=291 amount=-3 +kerning first=217 second=382 amount=-3 +kerning first=321 second=381 amount=-3 +kerning first=8250 second=363 amount=-1 +kerning first=316 second=291 amount=-3 +kerning first=197 second=336 amount=-3 +kerning first=216 second=317 amount=-2 +kerning first=266 second=84 amount=-1 +kerning first=262 second=78 amount=-3 +kerning first=105 second=246 amount=-1 +kerning first=1064 second=1081 amount=-1 +kerning first=280 second=291 amount=-3 +kerning first=379 second=207 amount=-1 +kerning first=106 second=227 amount=-2 +kerning first=197 second=45 amount=-4 +kerning first=351 second=226 amount=-1 +kerning first=202 second=103 amount=-3 +kerning first=244 second=291 amount=-2 +kerning first=66 second=105 amount=-3 +kerning first=288 second=317 amount=-1 +kerning first=194 second=84 amount=-6 +kerning first=208 second=291 amount=-1 +kerning first=269 second=45 amount=-2 +kerning first=97 second=103 amount=-2 +kerning first=232 second=243 amount=-1 +kerning first=374 second=288 amount=-3 +kerning first=268 second=243 amount=-2 +kerning first=66 second=198 amount=-5 +kerning first=111 second=314 amount=-2 +kerning first=1092 second=1090 amount=-1 +kerning first=304 second=243 amount=-2 +kerning first=344 second=213 amount=-3 +kerning first=1070 second=1065 amount=-1 +kerning first=75 second=314 amount=-1 +kerning first=83 second=193 amount=-4 +kerning first=266 second=288 amount=-3 +kerning first=1086 second=1096 amount=-1 +kerning first=282 second=218 amount=-2 +kerning first=332 second=193 amount=-4 +kerning first=338 second=288 amount=-1 +kerning first=288 second=314 amount=-1 +kerning first=75 second=345 amount=1 +kerning first=316 second=263 amount=-1 +kerning first=328 second=249 amount=-1 +kerning first=302 second=288 amount=-2 +kerning first=252 second=314 amount=-2 +kerning first=111 second=345 amount=-1 +kerning first=352 second=263 amount=-1 +kerning first=210 second=218 amount=-1 +kerning first=8220 second=347 amount=-2 +kerning first=121 second=8249 amount=-4 +kerning first=67 second=263 amount=-2 +kerning first=327 second=365 amount=-2 +kerning first=324 second=314 amount=-1 +kerning first=307 second=115 amount=-2 +kerning first=227 second=120 amount=-1 +kerning first=103 second=263 amount=-2 +kerning first=291 second=365 amount=-1 +kerning first=288 second=78 amount=-1 +kerning first=277 second=303 amount=-2 +kerning first=199 second=115 amount=-2 +kerning first=263 second=120 amount=-2 +kerning first=252 second=345 amount=-1 +kerning first=255 second=365 amount=-1 +kerning first=70 second=224 amount=-1 +kerning first=368 second=193 amount=-4 +kerning first=85 second=8249 amount=-5 +kerning first=313 second=303 amount=-2 +kerning first=235 second=115 amount=-2 +kerning first=219 second=365 amount=-1 +kerning first=236 second=269 amount=-1 +kerning first=216 second=78 amount=-2 +kerning first=376 second=243 amount=-3 +kerning first=344 second=269 amount=-3 +kerning first=321 second=353 amount=-1 +kerning first=106 second=224 amount=-2 +kerning first=232 second=326 amount=-2 +kerning first=86 second=120 amount=-2 +kerning first=377 second=73 amount=-1 +kerning first=380 second=335 amount=-1 +kerning first=200 second=213 amount=-1 +kerning first=379 second=115 amount=-2 +kerning first=122 second=120 amount=-1 +kerning first=380 second=269 amount=-1 +kerning first=211 second=224 amount=-1 +kerning first=315 second=198 amount=-2 +kerning first=274 second=75 amount=-2 +kerning first=283 second=224 amount=-2 +kerning first=321 second=118 amount=-3 +kerning first=370 second=8249 amount=-5 +kerning first=255 second=98 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=202 second=75 amount=-2 +kerning first=303 second=365 amount=-1 +kerning first=355 second=224 amount=-1 +kerning first=1045 second=1048 amount=-1 +kerning first=205 second=303 amount=-1 +kerning first=83 second=101 amount=-1 +kerning first=335 second=120 amount=-3 +kerning first=227 second=328 amount=-1 +kerning first=334 second=8249 amount=-1 +kerning first=241 second=303 amount=-1 +kerning first=119 second=101 amount=-3 +kerning first=377 second=221 amount=-2 +kerning first=371 second=120 amount=-1 +kerning first=226 second=8249 amount=-2 +kerning first=100 second=303 amount=-1 +kerning first=199 second=235 amount=-2 +kerning first=332 second=221 amount=-2 +kerning first=122 second=328 amount=-2 +kerning first=346 second=75 amount=-3 +kerning first=262 second=8249 amount=-4 +kerning first=8217 second=355 amount=-1 +kerning first=224 second=101 amount=-1 +kerning first=235 second=235 amount=-1 +kerning first=1045 second=1076 amount=-2 +kerning first=249 second=118 amount=-3 +kerning first=86 second=328 amount=-3 +kerning first=380 second=241 amount=-2 +kerning first=260 second=101 amount=-1 +kerning first=8222 second=122 amount=-3 +kerning first=371 second=328 amount=-2 +kerning first=45 second=325 amount=-5 +kerning first=296 second=101 amount=-2 +kerning first=202 second=370 amount=-2 +kerning first=1101 second=1118 amount=-1 +kerning first=335 second=328 amount=-1 +kerning first=81 second=325 amount=-2 +kerning first=106 second=283 amount=-1 +kerning first=1056 second=1031 amount=-1 +kerning first=310 second=370 amount=-2 +kerning first=108 second=118 amount=-3 +kerning first=368 second=101 amount=-2 +kerning first=70 second=283 amount=-1 +kerning first=274 second=370 amount=-2 +kerning first=354 second=218 amount=-1 +kerning first=72 second=118 amount=-2 +kerning first=263 second=328 amount=-2 +kerning first=236 second=241 amount=-2 +kerning first=222 second=325 amount=-2 +kerning first=291 second=98 amount=-1 +kerning first=283 second=283 amount=-1 +kerning first=379 second=241 amount=-1 +kerning first=363 second=98 amount=-2 +kerning first=269 second=263 amount=-1 +kerning first=252 second=335 amount=-1 +kerning first=317 second=338 amount=-1 +kerning first=362 second=283 amount=-2 +kerning first=77 second=290 amount=-2 +kerning first=99 second=8220 amount=-2 +kerning first=1024 second=1045 amount=-1 +kerning first=278 second=108 amount=-1 +kerning first=366 second=241 amount=-2 +kerning first=317 second=85 amount=-3 +kerning first=1060 second=1045 amount=-1 +kerning first=242 second=108 amount=-2 +kerning first=1027 second=1114 amount=-2 +kerning first=209 second=338 amount=-2 +kerning first=350 second=108 amount=-2 +kerning first=314 second=289 amount=-3 +kerning first=75 second=335 amount=-2 +kerning first=117 second=241 amount=-1 +kerning first=72 second=363 amount=-2 +kerning first=314 second=108 amount=-2 +kerning first=241 second=380 amount=-1 +kerning first=8217 second=365 amount=-1 +kerning first=245 second=345 amount=-1 +kerning first=83 second=196 amount=-4 +kerning first=277 second=380 amount=-2 +kerning first=1049 second=1090 amount=-1 +kerning first=90 second=193 amount=-1 +kerning first=281 second=345 amount=-1 +kerning first=313 second=380 amount=-3 +kerning first=1060 second=1038 amount=-3 +kerning first=65 second=368 amount=-3 +kerning first=206 second=115 amount=-2 +kerning first=353 second=345 amount=-1 +kerning first=330 second=248 amount=-2 +kerning first=352 second=352 amount=-1 +kerning first=281 second=283 amount=-1 +kerning first=65 second=115 amount=-2 +kerning first=100 second=380 amount=-1 +kerning first=352 second=228 amount=-1 +kerning first=371 second=331 amount=-2 +kerning first=101 second=115 amount=-2 +kerning first=45 second=241 amount=-2 +kerning first=258 second=248 amount=-1 +kerning first=263 second=331 amount=-2 +kerning first=70 second=286 amount=-1 +kerning first=314 second=115 amount=-2 +kerning first=117 second=248 amount=-1 +kerning first=350 second=115 amount=-1 +kerning first=278 second=368 amount=-2 +kerning first=221 second=366 amount=-1 +kerning first=242 second=115 amount=-2 +kerning first=67 second=323 amount=-3 +kerning first=101 second=108 amount=-3 +kerning first=227 second=331 amount=-1 +kerning first=317 second=78 amount=-2 +kerning first=278 second=115 amount=-1 +kerning first=1024 second=1038 amount=-3 +kerning first=65 second=108 amount=-2 +kerning first=86 second=331 amount=-3 +kerning first=240 second=255 amount=-3 +kerning first=83 second=122 amount=-2 +kerning first=106 second=252 amount=-1 +kerning first=204 second=255 amount=-2 +kerning first=213 second=200 amount=-2 +kerning first=208 second=323 amount=-2 +kerning first=99 second=255 amount=-2 +kerning first=350 second=368 amount=-3 +kerning first=229 second=307 amount=-1 +kerning first=106 second=231 amount=-1 +kerning first=1042 second=1052 amount=-2 +kerning first=280 second=323 amount=-2 +kerning first=224 second=122 amount=-1 +kerning first=337 second=307 amount=-1 +kerning first=321 second=200 amount=-2 +kerning first=119 second=122 amount=-3 +kerning first=70 second=231 amount=-1 +kerning first=8220 second=260 amount=-8 +kerning first=1104 second=1085 amount=-1 +kerning first=234 second=328 amount=-2 +kerning first=213 second=207 amount=-2 +kerning first=88 second=245 amount=-2 +kerning first=362 second=290 amount=-1 +kerning first=198 second=328 amount=-1 +kerning first=187 second=366 amount=-4 +kerning first=1031 second=1097 amount=-1 +kerning first=1072 second=1118 amount=-1 +kerning first=376 second=346 amount=-3 +kerning first=256 second=214 amount=-3 +kerning first=1067 second=1097 amount=-1 +kerning first=1092 second=1080 amount=-1 +kerning first=1036 second=1118 amount=-2 +kerning first=321 second=207 amount=-2 +kerning first=82 second=366 amount=-3 +kerning first=1070 second=1040 amount=-3 +kerning first=86 second=352 amount=-3 +kerning first=378 second=328 amount=-2 +kerning first=311 second=233 amount=-3 +kerning first=218 second=290 amount=-1 +kerning first=283 second=252 amount=-2 +kerning first=229 second=326 amount=-1 +kerning first=218 second=283 amount=-2 +kerning first=275 second=233 amount=-1 +kerning first=229 second=245 amount=-1 +kerning first=1038 second=1073 amount=-3 +kerning first=193 second=245 amount=-1 +kerning first=1052 second=1105 amount=-1 +kerning first=355 second=252 amount=-1 +kerning first=113 second=283 amount=-1 +kerning first=332 second=217 amount=-1 +kerning first=218 second=257 amount=-3 +kerning first=331 second=106 amount=-2 +kerning first=367 second=106 amount=-2 +kerning first=111 second=110 amount=-1 +kerning first=316 second=324 amount=-1 +kerning first=259 second=106 amount=-1 +kerning first=377 second=333 amount=-1 +kerning first=295 second=106 amount=-2 +kerning first=82 second=113 amount=-3 +kerning first=197 second=333 amount=-1 +kerning first=321 second=378 amount=-3 +kerning first=370 second=281 amount=-2 +kerning first=86 second=65 amount=-6 +kerning first=252 second=110 amount=-1 +kerning first=201 second=87 amount=-1 +kerning first=67 second=288 amount=-3 +kerning first=98 second=107 amount=-1 +kerning first=233 second=333 amount=-1 +kerning first=324 second=110 amount=-1 +kerning first=204 second=262 amount=-2 +kerning first=80 second=198 amount=-4 +kerning first=201 second=347 amount=-1 +kerning first=226 second=281 amount=-1 +kerning first=8218 second=374 amount=-6 +kerning first=262 second=281 amount=-2 +kerning first=1100 second=1078 amount=-2 +kerning first=83 second=217 amount=-3 +kerning first=298 second=281 amount=-2 +kerning first=221 second=198 amount=-6 +kerning first=278 second=210 amount=-1 +kerning first=354 second=243 amount=-3 +kerning first=66 second=120 amount=-3 +kerning first=280 second=288 amount=-1 +kerning first=251 second=326 amount=-1 +kerning first=85 second=281 amount=-2 +kerning first=206 second=210 amount=-2 +kerning first=105 second=243 amount=-1 +kerning first=99 second=361 amount=-2 +kerning first=202 second=218 amount=-2 +kerning first=287 second=326 amount=-1 +kerning first=121 second=281 amount=-3 +kerning first=262 second=274 amount=-3 +kerning first=241 second=120 amount=-1 +kerning first=1042 second=1031 amount=-2 +kerning first=277 second=120 amount=-2 +kerning first=350 second=203 amount=-3 +kerning first=100 second=99 amount=-1 +kerning first=278 second=203 amount=-2 +kerning first=205 second=99 amount=-2 +kerning first=100 second=120 amount=-1 +kerning first=228 second=229 amount=-1 +kerning first=315 second=304 amount=-2 +kerning first=366 second=248 amount=-2 +kerning first=334 second=274 amount=-2 +kerning first=87 second=229 amount=-5 +kerning first=277 second=99 amount=-1 +kerning first=198 second=377 amount=-1 +kerning first=259 second=113 amount=-1 +kerning first=307 second=118 amount=-3 +kerning first=316 second=267 amount=-1 +kerning first=336 second=229 amount=-1 +kerning first=288 second=75 amount=-1 +kerning first=352 second=267 amount=-1 +kerning first=120 second=8249 amount=-3 +kerning first=187 second=345 amount=-2 +kerning first=1085 second=1077 amount=-1 +kerning first=379 second=118 amount=-2 +kerning first=264 second=229 amount=-2 +kerning first=118 second=113 amount=-3 +kerning first=216 second=75 amount=-2 +kerning first=332 second=196 amount=-4 +kerning first=1049 second=1077 amount=-1 +kerning first=367 second=113 amount=-1 +kerning first=223 second=106 amount=-2 +kerning first=235 second=118 amount=-2 +kerning first=82 second=106 amount=-1 +kerning first=381 second=87 amount=-2 +kerning first=209 second=332 amount=-2 +kerning first=198 second=68 amount=-2 +kerning first=199 second=118 amount=-1 +kerning first=321 second=316 amount=-2 +kerning first=240 second=8220 amount=-2 +kerning first=118 second=106 amount=-2 +kerning first=317 second=332 amount=-1 +kerning first=376 second=264 amount=-3 +kerning first=376 second=209 amount=-1 +kerning first=106 second=287 amount=-3 +kerning first=249 second=365 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=90 second=199 amount=-1 +kerning first=70 second=287 amount=-3 +kerning first=304 second=264 amount=-2 +kerning first=211 second=287 amount=-1 +kerning first=66 second=219 amount=-3 +kerning first=268 second=264 amount=-3 +kerning first=195 second=199 amount=-3 +kerning first=268 second=209 amount=-3 +kerning first=66 second=121 amount=-3 +kerning first=283 second=287 amount=-3 +kerning first=196 second=264 amount=-3 +kerning first=352 second=224 amount=-1 +kerning first=377 second=347 amount=-2 +kerning first=1024 second=1094 amount=-1 +kerning first=362 second=234 amount=-2 +kerning first=233 second=8217 amount=-2 +kerning first=355 second=287 amount=-2 +kerning first=117 second=242 amount=-1 +kerning first=269 second=8217 amount=-2 +kerning first=258 second=242 amount=-1 +kerning first=77 second=289 amount=-3 +kerning first=65 second=374 amount=-6 +kerning first=274 second=82 amount=-2 +kerning first=347 second=314 amount=-2 +kerning first=101 second=121 amount=-2 +kerning first=259 second=8221 amount=-3 +kerning first=330 second=242 amount=-2 +kerning first=65 second=121 amount=-3 +kerning first=195 second=364 amount=-3 +kerning first=218 second=289 amount=-4 +kerning first=346 second=82 amount=-3 +kerning first=249 second=111 amount=-1 +kerning first=116 second=254 amount=-1 +kerning first=254 second=289 amount=-2 +kerning first=88 second=244 amount=-2 +kerning first=352 second=223 amount=-1 +kerning first=366 second=242 amount=-2 +kerning first=76 second=119 amount=-3 +kerning first=290 second=289 amount=-3 +kerning first=112 second=119 amount=-2 +kerning first=326 second=289 amount=-2 +kerning first=290 second=73 amount=-1 +kerning first=366 second=67 amount=-1 +kerning first=278 second=197 amount=-2 +kerning first=257 second=254 amount=-1 +kerning first=362 second=289 amount=-4 +kerning first=229 second=244 amount=-1 +kerning first=202 second=82 amount=-2 +kerning first=8218 second=381 amount=-1 +kerning first=355 second=230 amount=-1 +kerning first=217 second=119 amount=-2 +kerning first=350 second=197 amount=-4 +kerning first=231 second=97 amount=-2 +kerning first=262 second=76 amount=-3 +kerning first=253 second=119 amount=-1 +kerning first=8217 second=99 amount=-3 +kerning first=201 second=354 amount=-1 +kerning first=90 second=97 amount=-1 +kerning first=283 second=230 amount=-2 +kerning first=289 second=119 amount=-1 +kerning first=378 second=117 amount=-2 +kerning first=350 second=121 amount=-2 +kerning first=339 second=97 amount=-2 +kerning first=211 second=230 amount=-1 +kerning first=317 second=72 amount=-2 +kerning first=344 second=275 amount=-3 +kerning first=314 second=121 amount=-3 +kerning first=219 second=74 amount=-3 +kerning first=84 second=205 amount=-1 +kerning first=286 second=250 amount=-1 +kerning first=380 second=275 amount=-1 +kerning first=267 second=97 amount=-2 +kerning first=106 second=230 amount=-2 +kerning first=381 second=354 amount=-2 +kerning first=242 second=121 amount=-3 +kerning first=303 second=97 amount=-2 +kerning first=206 second=121 amount=-2 +kerning first=327 second=74 amount=-1 +kerning first=1051 second=1108 amount=-1 +kerning first=232 second=311 amount=-2 +kerning first=260 second=107 amount=-2 +kerning first=109 second=250 amount=-1 +kerning first=108 second=378 amount=-1 +kerning first=224 second=107 amount=-1 +kerning first=311 second=240 amount=-3 +kerning first=334 second=366 amount=-1 +kerning first=250 second=250 amount=-1 +kerning first=249 second=378 amount=-2 +kerning first=213 second=378 amount=-2 +kerning first=198 second=117 amount=-2 +kerning first=83 second=107 amount=-2 +kerning first=315 second=219 amount=-3 +kerning first=68 second=72 amount=-2 +kerning first=202 second=89 amount=-1 +kerning first=73 second=250 amount=-2 +kerning first=72 second=378 amount=-1 +kerning first=334 second=76 amount=-2 +kerning first=234 second=117 amount=-2 +kerning first=119 second=107 amount=-2 +kerning first=75 second=116 amount=-1 +kerning first=274 second=363 amount=-2 +kerning first=99 second=318 amount=-3 +kerning first=338 second=302 amount=-2 +kerning first=8220 second=267 amount=-3 +kerning first=310 second=363 amount=-3 +kerning first=379 second=355 amount=-1 +kerning first=346 second=363 amount=-1 +kerning first=334 second=330 amount=-2 +kerning first=356 second=355 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=286 second=194 amount=-3 +kerning first=382 second=363 amount=-2 +kerning first=187 second=310 amount=-5 +kerning first=240 second=318 amount=-2 +kerning first=8222 second=221 amount=-6 +kerning first=275 second=240 amount=-1 +kerning first=214 second=194 amount=-4 +kerning first=1025 second=1114 amount=-1 +kerning first=1075 second=1089 amount=-1 +kerning first=201 second=298 amount=-2 +kerning first=314 second=375 amount=-3 +kerning first=305 second=259 amount=-1 +kerning first=76 second=214 amount=-1 +kerning first=248 second=259 amount=-1 +kerning first=269 second=259 amount=-2 +kerning first=368 second=122 amount=-3 +kerning first=1039 second=1088 amount=-1 +kerning first=217 second=214 amount=-1 +kerning first=242 second=375 amount=-3 +kerning first=332 second=122 amount=-2 +kerning first=206 second=375 amount=-2 +kerning first=200 second=220 amount=-2 +kerning first=89 second=369 amount=-2 +kerning first=296 second=122 amount=-1 +kerning first=252 second=116 amount=-1 +kerning first=71 second=296 amount=-1 +kerning first=262 second=330 amount=-3 +kerning first=334 second=77 amount=-2 +kerning first=1057 second=1075 amount=-1 +kerning first=233 second=259 amount=-2 +kerning first=262 second=77 amount=-3 +kerning first=350 second=375 amount=-2 +kerning first=344 second=220 amount=-3 +kerning first=86 second=71 amount=-3 +kerning first=365 second=253 amount=-3 +kerning first=374 second=369 amount=-2 +kerning first=222 second=304 amount=-2 +kerning first=73 second=251 amount=-2 +kerning first=377 second=237 amount=-1 +kerning first=338 second=369 amount=-2 +kerning first=1043 second=1100 amount=-2 +kerning first=352 second=344 amount=-3 +kerning first=212 second=296 amount=-2 +kerning first=307 second=228 amount=-2 +kerning first=66 second=279 amount=-1 +kerning first=323 second=351 amount=-2 +kerning first=1079 second=1100 amount=-1 +kerning first=277 second=324 amount=-2 +kerning first=1086 second=1099 amount=-1 +kerning first=278 second=374 amount=-1 +kerning first=235 second=228 amount=-2 +kerning first=241 second=324 amount=-1 +kerning first=230 second=369 amount=-2 +kerning first=250 second=251 amount=-1 +kerning first=101 second=375 amount=-2 +kerning first=194 second=369 amount=-3 +kerning first=119 second=245 amount=-3 +kerning first=208 second=344 amount=-2 +kerning first=8216 second=255 amount=-1 +kerning first=356 second=296 amount=-1 +kerning first=81 second=304 amount=-2 +kerning first=65 second=375 amount=-3 +kerning first=302 second=369 amount=-2 +kerning first=1052 second=1104 amount=-1 +kerning first=100 second=324 amount=-1 +kerning first=84 second=206 amount=-1 +kerning first=266 second=369 amount=-2 +kerning first=251 second=273 amount=-1 +kerning first=280 second=344 amount=-2 +kerning first=286 second=251 amount=-1 +kerning first=376 second=240 amount=-3 +kerning first=113 second=234 amount=-1 +kerning first=327 second=284 amount=-2 +kerning first=279 second=279 amount=-1 +kerning first=107 second=355 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=218 second=234 amount=-2 +kerning first=116 second=253 amount=-1 +kerning first=67 second=344 amount=-3 +kerning first=221 second=253 amount=-3 +kerning first=381 second=298 amount=-1 +kerning first=97 second=363 amount=-1 +kerning first=102 second=279 amount=-1 +kerning first=257 second=253 amount=-3 +kerning first=219 second=284 amount=-1 +kerning first=313 second=324 amount=-1 +kerning first=248 second=355 amount=-1 +kerning first=79 second=83 amount=-1 +kerning first=78 second=284 amount=-2 +kerning first=202 second=363 amount=-2 +kerning first=77 second=234 amount=-2 +kerning first=207 second=279 amount=-2 +kerning first=1072 second=1080 amount=-1 +kerning first=1057 second=1074 amount=-1 +kerning first=233 second=318 amount=-3 +kerning first=107 second=365 amount=-1 +kerning first=84 second=268 amount=-3 +kerning first=269 second=318 amount=-3 +kerning first=71 second=365 amount=-1 +kerning first=220 second=83 amount=-3 +kerning first=291 second=355 amount=-1 +kerning first=89 second=310 amount=-1 +kerning first=66 second=213 amount=-3 +kerning first=305 second=318 amount=-1 +kerning first=336 second=298 amount=-2 +kerning first=256 second=83 amount=-3 +kerning first=255 second=355 amount=-1 +kerning first=207 second=213 amount=-2 +kerning first=74 second=263 amount=-2 +kerning first=195 second=370 amount=-3 +kerning first=187 second=313 amount=-5 +kerning first=364 second=83 amount=-3 +kerning first=266 second=310 amount=-3 +kerning first=1047 second=1063 amount=-3 +kerning first=76 second=218 amount=-3 +kerning first=363 second=355 amount=-1 +kerning first=66 second=275 amount=-1 +kerning first=66 second=220 amount=-3 +kerning first=1078 second=1105 amount=-2 +kerning first=212 second=303 amount=-1 +kerning first=102 second=275 amount=-1 +kerning first=328 second=353 amount=-1 +kerning first=248 second=303 amount=-1 +kerning first=364 second=353 amount=-2 +kerning first=356 second=365 amount=-2 +kerning first=1070 second=1055 amount=-1 +kerning first=374 second=310 amount=-1 +kerning first=211 second=8249 amount=-1 +kerning first=338 second=310 amount=-2 +kerning first=115 second=353 amount=-3 +kerning first=284 second=365 amount=-1 +kerning first=1053 second=1060 amount=-1 +kerning first=356 second=303 amount=-2 +kerning first=248 second=365 amount=-1 +kerning first=101 second=365 amount=-2 +kerning first=379 second=82 amount=-1 +kerning first=220 second=353 amount=-2 +kerning first=256 second=353 amount=-2 +kerning first=240 second=8250 amount=-2 +kerning first=284 second=98 amount=-1 +kerning first=334 second=280 amount=-2 +kerning first=100 second=105 amount=-1 +kerning first=192 second=235 amount=-1 +kerning first=379 second=225 amount=-1 +kerning first=228 second=235 amount=-1 +kerning first=1024 second=1095 amount=-2 +kerning first=71 second=102 amount=-2 +kerning first=264 second=235 amount=-2 +kerning first=1086 second=1093 amount=-1 +kerning first=1073 second=1083 amount=-2 +kerning first=336 second=228 amount=-1 +kerning first=303 second=361 amount=-1 +kerning first=199 second=225 amount=-2 +kerning first=107 second=98 amount=-1 +kerning first=235 second=225 amount=-2 +kerning first=248 second=98 amount=-1 +kerning first=264 second=228 amount=-2 +kerning first=1086 second=1100 amount=-1 +kerning first=8218 second=375 amount=-1 +kerning first=79 second=350 amount=-1 +kerning first=228 second=228 amount=-1 +kerning first=90 second=363 amount=-3 +kerning first=316 second=273 amount=-1 +kerning first=284 second=102 amount=-2 +kerning first=241 second=46 amount=-1 +kerning first=1114 second=1102 amount=-1 +kerning first=1046 second=1063 amount=-4 +kerning first=1101 second=1078 amount=-1 +kerning first=277 second=46 amount=-3 +kerning first=195 second=363 amount=-3 +kerning first=87 second=228 amount=-4 +kerning first=356 second=102 amount=-1 +kerning first=107 second=44 amount=-1 +kerning first=231 second=363 amount=-2 +kerning first=99 second=305 amount=-2 +kerning first=346 second=311 amount=-2 +kerning first=1045 second=1081 amount=-1 +kerning first=267 second=363 amount=-2 +kerning first=240 second=305 amount=-1 +kerning first=1107 second=1108 amount=-1 +kerning first=303 second=363 amount=-1 +kerning first=103 second=273 amount=-2 +kerning first=204 second=305 amount=-1 +kerning first=1071 second=1108 amount=-1 +kerning first=339 second=363 amount=-2 +kerning first=8250 second=345 amount=-2 +kerning first=74 second=260 amount=-5 +kerning first=262 second=280 amount=-3 +kerning first=375 second=363 amount=-1 +kerning first=248 second=102 amount=-1 +kerning first=1038 second=1054 amount=-3 +kerning first=367 second=112 amount=-2 +kerning first=1024 second=1107 amount=-1 +kerning first=198 second=67 amount=-1 +kerning first=260 second=211 amount=-3 +kerning first=331 second=112 amount=-1 +kerning first=376 second=261 amount=-5 +kerning first=207 second=216 amount=-2 +kerning first=296 second=211 amount=-2 +kerning first=79 second=86 amount=-2 +kerning first=295 second=112 amount=-1 +kerning first=68 second=171 amount=-1 +kerning first=104 second=171 amount=-3 +kerning first=303 second=107 amount=-1 +kerning first=223 second=112 amount=-1 +kerning first=350 second=243 amount=-1 +kerning first=267 second=107 amount=-2 +kerning first=187 second=112 amount=-2 +kerning first=381 second=81 amount=-1 +kerning first=8220 second=287 amount=-4 +kerning first=232 second=261 amount=-2 +kerning first=256 second=86 amount=-6 +kerning first=375 second=107 amount=-2 +kerning first=118 second=112 amount=-2 +kerning first=268 second=261 amount=-2 +kerning first=66 second=216 amount=-3 +kerning first=339 second=107 amount=-2 +kerning first=82 second=112 amount=-1 +kerning first=304 second=261 amount=-2 +kerning first=368 second=211 amount=-1 +kerning first=243 second=345 amount=-1 +kerning first=317 second=171 amount=-1 +kerning first=354 second=232 amount=-3 +kerning first=278 second=204 amount=-2 +kerning first=353 second=171 amount=-1 +kerning first=377 second=346 amount=-1 +kerning first=224 second=279 amount=-1 +kerning first=313 second=105 amount=-2 +kerning first=350 second=204 amount=-3 +kerning first=84 second=209 amount=-1 +kerning first=198 second=327 amount=-2 +kerning first=339 second=100 amount=-1 +kerning first=315 second=216 amount=-1 +kerning first=286 second=254 amount=-1 +kerning first=8250 second=82 amount=-5 +kerning first=241 second=105 amount=-1 +kerning first=375 second=100 amount=-3 +kerning first=277 second=105 amount=-2 +kerning first=209 second=171 amount=-4 +kerning first=327 second=263 amount=-2 +kerning first=201 second=81 amount=-1 +kerning first=1024 second=1098 amount=-3 +kerning first=205 second=105 amount=-1 +kerning first=1043 second=1103 amount=-4 +kerning first=195 second=100 amount=-1 +kerning first=254 second=230 amount=-1 +kerning first=231 second=100 amount=-1 +kerning first=113 second=230 amount=-2 +kerning first=1074 second=1079 amount=-1 +kerning first=267 second=100 amount=-1 +kerning first=86 second=346 amount=-3 +kerning first=303 second=100 amount=-3 +kerning first=204 second=249 amount=-1 +kerning first=279 second=275 amount=-1 +kerning first=77 second=230 amount=-2 +kerning first=1038 second=1079 amount=-3 +kerning first=90 second=100 amount=-1 +kerning first=207 second=275 amount=-2 +kerning first=1079 second=1103 amount=-2 +kerning first=236 second=223 amount=-1 +kerning first=281 second=339 amount=-1 +kerning first=231 second=107 amount=-2 +kerning first=264 second=78 amount=-3 +kerning first=195 second=107 amount=-2 +kerning first=209 second=339 amount=-2 +kerning first=362 second=230 amount=-3 +kerning first=1060 second=1039 amount=-1 +kerning first=99 second=249 amount=-2 +kerning first=290 second=230 amount=-1 +kerning first=200 second=223 amount=-1 +kerning first=1024 second=1039 amount=-1 +kerning first=326 second=230 amount=-1 +kerning first=242 second=114 amount=-1 +kerning first=367 second=109 amount=-1 +kerning first=83 second=325 amount=-3 +kerning first=67 second=69 amount=-3 +kerning first=331 second=109 amount=-1 +kerning first=317 second=79 amount=-1 +kerning first=375 second=104 amount=-2 +kerning first=201 second=84 amount=-1 +kerning first=81 second=44 amount=-3 +kerning first=256 second=89 amount=-6 +kerning first=339 second=104 amount=-2 +kerning first=1097 second=1104 amount=-1 +kerning first=223 second=109 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=1061 second=1104 amount=-2 +kerning first=381 second=84 amount=-2 +kerning first=187 second=109 amount=-2 +kerning first=353 second=119 amount=-3 +kerning first=355 second=237 amount=-1 +kerning first=118 second=314 amount=-2 +kerning first=295 second=109 amount=-1 +kerning first=79 second=89 amount=-2 +kerning first=82 second=314 amount=-3 +kerning first=1052 second=1108 amount=-1 +kerning first=90 second=192 amount=-1 +kerning first=283 second=237 amount=-2 +kerning first=223 second=314 amount=-2 +kerning first=1089 second=1116 amount=-1 +kerning first=330 second=44 amount=-1 +kerning first=377 second=262 amount=-1 +kerning first=290 second=72 amount=-1 +kerning first=187 second=314 amount=-1 +kerning first=1053 second=1116 amount=-1 +kerning first=327 second=8249 amount=-4 +kerning first=211 second=237 amount=-1 +kerning first=295 second=314 amount=-1 +kerning first=118 second=109 amount=-2 +kerning first=102 second=269 amount=-1 +kerning first=325 second=336 amount=-2 +kerning first=259 second=314 amount=-1 +kerning first=275 second=187 amount=-2 +kerning first=255 second=8249 amount=-4 +kerning first=66 second=269 amount=-1 +kerning first=378 second=245 amount=-1 +kerning first=106 second=237 amount=-1 +kerning first=367 second=314 amount=-2 +kerning first=228 second=232 amount=-1 +kerning first=303 second=104 amount=-1 +kerning first=114 second=8249 amount=-1 +kerning first=207 second=269 amount=-2 +kerning first=331 second=314 amount=-1 +kerning first=267 second=104 amount=-2 +kerning first=272 second=282 amount=-2 +kerning first=356 second=99 amount=-3 +kerning first=117 second=44 amount=-2 +kerning first=77 second=224 amount=-2 +kerning first=231 second=104 amount=-2 +kerning first=279 second=269 amount=-1 +kerning first=98 second=380 amount=-2 +kerning first=264 second=232 amount=-2 +kerning first=195 second=104 amount=-2 +kerning first=200 second=282 amount=-2 +kerning first=98 second=187 amount=-2 +kerning first=222 second=44 amount=-3 +kerning first=262 second=277 amount=-2 +kerning first=214 second=344 amount=-2 +kerning first=109 second=257 amount=-1 +kerning first=377 second=317 amount=-1 +kerning first=226 second=277 amount=-1 +kerning first=284 second=302 amount=-1 +kerning first=113 second=224 amount=-2 +kerning first=74 second=326 amount=-1 +kerning first=201 second=351 amount=-1 +kerning first=254 second=224 amount=-1 +kerning first=110 second=326 amount=-1 +kerning first=298 second=277 amount=-2 +kerning first=212 second=302 amount=-2 +kerning first=218 second=224 amount=-3 +kerning first=87 second=232 amount=-3 +kerning first=381 second=347 amount=-2 +kerning first=85 second=277 amount=-2 +kerning first=326 second=224 amount=-1 +kerning first=71 second=361 amount=-1 +kerning first=108 second=371 amount=-2 +kerning first=290 second=224 amount=-1 +kerning first=71 second=302 amount=-1 +kerning first=375 second=367 amount=-1 +kerning first=363 second=8249 amount=-2 +kerning first=268 second=202 amount=-3 +kerning first=121 second=277 amount=-3 +kerning first=362 second=224 amount=-3 +kerning first=107 second=99 amount=-3 +kerning first=90 second=101 amount=-1 +kerning first=375 second=97 amount=-3 +kerning first=303 second=367 amount=-1 +kerning first=352 second=69 amount=-3 +kerning first=381 second=351 amount=-2 +kerning first=339 second=367 amount=-2 +kerning first=195 second=101 amount=-1 +kerning first=376 second=202 amount=-1 +kerning first=231 second=367 amount=-2 +kerning first=280 second=69 amount=-2 +kerning first=231 second=101 amount=-1 +kerning first=267 second=367 amount=-2 +kerning first=267 second=101 amount=-1 +kerning first=286 second=257 amount=-1 +kerning first=208 second=69 amount=-2 +kerning first=323 second=267 amount=-2 +kerning first=84 second=212 amount=-3 +kerning first=303 second=101 amount=-3 +kerning first=1052 second=1047 amount=-1 +kerning first=195 second=367 amount=-3 +kerning first=380 second=226 amount=-1 +kerning first=345 second=351 amount=-1 +kerning first=214 second=257 amount=-1 +kerning first=350 second=114 amount=-2 +kerning first=209 second=79 amount=-2 +kerning first=356 second=302 amount=-1 +kerning first=250 second=257 amount=-1 +kerning first=90 second=367 amount=-3 +kerning first=287 second=267 amount=-2 +kerning first=331 second=316 amount=-1 +kerning first=229 second=241 amount=-1 +kerning first=76 second=221 amount=-3 +kerning first=120 second=271 amount=-2 +kerning first=71 second=362 amount=-1 +kerning first=296 second=382 amount=-1 +kerning first=367 second=316 amount=-2 +kerning first=332 second=382 amount=-2 +kerning first=225 second=271 amount=-1 +kerning first=201 second=291 amount=-3 +kerning first=1049 second=1087 amount=-1 +kerning first=368 second=382 amount=-3 +kerning first=362 second=286 amount=-1 +kerning first=261 second=271 amount=-1 +kerning first=212 second=362 amount=-1 +kerning first=1053 second=1057 amount=-1 +kerning first=74 second=266 amount=-2 +kerning first=226 second=337 amount=-1 +kerning first=119 second=382 amount=-3 +kerning first=303 second=255 amount=-2 +kerning first=200 second=226 amount=-1 +kerning first=1024 second=1042 amount=-1 +kerning first=240 second=311 amount=-1 +kerning first=369 second=271 amount=-1 +kerning first=121 second=337 amount=-3 +kerning first=224 second=382 amount=-1 +kerning first=218 second=286 amount=-1 +kerning first=1060 second=1042 amount=-1 +kerning first=378 second=331 amount=-2 +kerning first=272 second=226 amount=-1 +kerning first=296 second=119 amount=-2 +kerning first=85 second=337 amount=-2 +kerning first=77 second=286 amount=-2 +kerning first=1089 second=1113 amount=-1 +kerning first=233 second=8221 amount=-2 +kerning first=248 second=361 amount=-1 +kerning first=203 second=331 amount=-1 +kerning first=109 second=289 amount=-2 +kerning first=228 second=318 amount=-1 +kerning first=71 second=98 amount=-1 +kerning first=82 second=316 amount=-3 +kerning first=198 second=331 amount=-1 +kerning first=298 second=337 amount=-2 +kerning first=118 second=316 amount=-2 +kerning first=234 second=331 amount=-2 +kerning first=284 second=361 amount=-1 +kerning first=262 second=337 amount=-2 +kerning first=187 second=316 amount=-1 +kerning first=223 second=316 amount=-2 +kerning first=356 second=361 amount=-2 +kerning first=259 second=316 amount=-1 +kerning first=323 second=266 amount=-2 +kerning first=295 second=316 amount=-1 +kerning first=231 second=103 amount=-3 +kerning first=218 second=256 amount=-4 +kerning first=204 second=252 amount=-1 +kerning first=226 second=45 amount=-2 +kerning first=364 second=90 amount=-1 +kerning first=195 second=103 amount=-3 +kerning first=113 second=227 amount=-2 +kerning first=334 second=70 amount=-2 +kerning first=240 second=252 amount=-1 +kerning first=77 second=227 amount=-2 +kerning first=90 second=103 amount=-3 +kerning first=381 second=229 amount=-1 +kerning first=213 second=368 amount=-1 +kerning first=262 second=70 amount=-3 +kerning first=1103 second=1086 amount=-1 +kerning first=326 second=227 amount=-1 +kerning first=1024 second=1101 amount=-1 +kerning first=68 second=78 amount=-2 +kerning first=290 second=227 amount=-1 +kerning first=278 second=381 amount=-1 +kerning first=85 second=336 amount=-1 +kerning first=338 second=65 amount=-2 +kerning first=321 second=368 amount=-3 +kerning first=99 second=252 amount=-2 +kerning first=286 second=201 amount=-1 +kerning first=218 second=227 amount=-3 +kerning first=79 second=90 amount=-2 +kerning first=214 second=201 amount=-2 +kerning first=99 second=311 amount=-2 +kerning first=262 second=278 amount=-3 +kerning first=262 second=336 amount=-3 +kerning first=256 second=356 amount=-6 +kerning first=1025 second=1107 amount=-1 +kerning first=311 second=246 amount=-3 +kerning first=298 second=336 amount=-2 +kerning first=83 second=382 amount=-2 +kerning first=275 second=246 amount=-1 +kerning first=105 second=171 amount=-3 +kerning first=334 second=278 amount=-2 +kerning first=220 second=90 amount=-1 +kerning first=339 second=103 amount=-3 +kerning first=370 second=336 amount=-1 +kerning first=105 second=233 amount=-1 +kerning first=1074 second=1084 amount=-1 +kerning first=284 second=362 amount=-1 +kerning first=303 second=103 amount=-1 +kerning first=79 second=356 amount=-2 +kerning first=187 second=317 amount=-5 +kerning first=345 second=291 amount=-2 +kerning first=8220 second=273 amount=-3 +kerning first=356 second=362 amount=-1 +kerning first=295 second=103 amount=-2 +kerning first=268 second=246 amount=-2 +kerning first=245 second=116 amount=-1 +kerning first=104 second=369 amount=-1 +kerning first=259 second=103 amount=-2 +kerning first=232 second=246 amount=-1 +kerning first=245 second=369 amount=-1 +kerning first=223 second=103 amount=-2 +kerning first=196 second=246 amount=-1 +kerning first=231 second=382 amount=-2 +kerning first=209 second=369 amount=-2 +kerning first=254 second=259 amount=-1 +kerning first=281 second=116 amount=-1 +kerning first=267 second=382 amount=-2 +kerning first=118 second=103 amount=-3 +kerning first=1070 second=1043 amount=-1 +kerning first=1056 second=1056 amount=-1 +kerning first=82 second=103 amount=-3 +kerning first=73 second=253 amount=-2 +kerning first=113 second=259 amount=-2 +kerning first=82 second=363 amount=-2 +kerning first=109 second=253 amount=-2 +kerning first=77 second=259 amount=-2 +kerning first=1047 second=1078 amount=-3 +kerning first=118 second=363 amount=-1 +kerning first=90 second=382 amount=-3 +kerning first=1046 second=1089 amount=-2 +kerning first=267 second=122 amount=-2 +kerning first=317 second=109 amount=-1 +kerning first=187 second=363 amount=-1 +kerning first=1056 second=1108 amount=-1 +kerning first=231 second=122 amount=-2 +kerning first=281 second=109 amount=-2 +kerning first=200 second=266 amount=-1 +kerning first=223 second=363 amount=-1 +kerning first=90 second=338 amount=-1 +kerning first=1060 second=1076 amount=-1 +kerning first=330 second=367 amount=-2 +kerning first=1086 second=1102 amount=-1 +kerning first=8250 second=364 amount=-4 +kerning first=259 second=363 amount=-1 +kerning first=1024 second=1076 amount=-2 +kerning first=108 second=375 amount=-3 +kerning first=1082 second=1089 amount=-2 +kerning first=353 second=109 amount=-2 +kerning first=295 second=363 amount=-1 +kerning first=198 second=65 amount=-2 +kerning first=72 second=375 amount=-2 +kerning first=317 second=369 amount=-2 +kerning first=331 second=363 amount=-1 +kerning first=303 second=382 amount=-1 +kerning first=86 second=362 amount=-1 +kerning first=375 second=122 amount=-3 +kerning first=353 second=116 amount=-2 +kerning first=313 second=356 amount=-3 +kerning first=367 second=363 amount=-1 +kerning first=315 second=67 amount=-1 +kerning first=8250 second=357 amount=-1 +kerning first=339 second=382 amount=-2 +kerning first=321 second=375 amount=-3 +kerning first=339 second=122 amount=-2 +kerning first=367 second=103 amount=-3 +kerning first=245 second=109 amount=-1 +kerning first=375 second=382 amount=-3 +kerning first=248 second=305 amount=-1 +kerning first=303 second=122 amount=-1 +kerning first=331 second=103 amount=-2 +kerning first=1104 second=1095 amount=-1 +kerning first=212 second=305 amount=-1 +kerning first=249 second=375 amount=-3 +kerning first=82 second=370 amount=-3 +kerning first=263 second=355 amount=-1 +kerning first=321 second=115 amount=-1 +kerning first=83 second=76 amount=-3 +kerning first=8250 second=97 amount=-1 +kerning first=1073 second=1075 amount=-1 +kerning first=361 second=44 amount=-2 +kerning first=187 second=370 amount=-4 +kerning first=78 second=336 amount=-2 +kerning first=249 second=115 amount=-2 +kerning first=122 second=355 amount=-1 +kerning first=356 second=305 amount=-2 +kerning first=1070 second=1036 amount=-1 +kerning first=1042 second=1062 amount=-2 +kerning first=371 second=355 amount=-1 +kerning first=219 second=336 amount=-1 +kerning first=258 second=279 amount=-1 +kerning first=313 second=89 amount=-3 +kerning first=366 second=279 amount=-2 +kerning first=330 second=279 amount=-2 +kerning first=323 second=248 amount=-2 +kerning first=327 second=336 amount=-2 +kerning first=321 second=108 amount=-2 +kerning first=250 second=253 amount=-3 +kerning first=73 second=232 amount=-2 +kerning first=1042 second=1055 amount=-2 +kerning first=100 second=259 amount=-1 +kerning first=1100 second=1103 amount=-2 +kerning first=376 second=246 amount=-3 +kerning first=89 second=66 amount=-1 +kerning first=75 second=332 amount=-3 +kerning first=1060 second=1048 amount=-1 +kerning first=304 second=246 amount=-2 +kerning first=1024 second=1048 amount=-1 +kerning first=73 second=225 amount=-2 +kerning first=82 second=335 amount=-3 +kerning first=109 second=225 amount=-1 +kerning first=1053 second=1086 amount=-1 +kerning first=118 second=335 amount=-3 +kerning first=108 second=108 amount=-2 +kerning first=376 second=218 amount=-1 +kerning first=362 second=231 amount=-2 +kerning first=313 second=328 amount=-1 +kerning first=1071 second=1072 amount=-1 +kerning first=214 second=225 amount=-1 +kerning first=66 second=344 amount=-4 +kerning first=249 second=108 amount=-2 +kerning first=380 second=273 amount=-1 +kerning first=254 second=8217 amount=-2 +kerning first=86 second=102 amount=-1 +kerning first=88 second=242 amount=-2 +kerning first=290 second=8217 amount=-1 +kerning first=122 second=102 amount=-2 +kerning first=76 second=196 amount=-2 +kerning first=199 second=203 amount=-3 +kerning first=326 second=8217 amount=-4 +kerning first=193 second=242 amount=-1 +kerning first=77 second=231 amount=-2 +kerning first=262 second=46 amount=-1 +kerning first=86 second=355 amount=-1 +kerning first=236 second=273 amount=-1 +kerning first=250 second=225 amount=-1 +kerning first=268 second=218 amount=-2 +kerning first=106 second=8221 amount=-2 +kerning first=286 second=225 amount=-1 +kerning first=290 second=280 amount=-1 +kerning first=113 second=8217 amount=-3 +kerning first=218 second=231 amount=-2 +kerning first=72 second=115 amount=-2 +kerning first=196 second=218 amount=-3 +kerning first=370 second=46 amount=-5 +kerning first=204 second=286 amount=-2 +kerning first=108 second=115 amount=-2 +kerning first=73 second=279 amount=-2 +kerning first=1042 second=1083 amount=-1 +kerning first=209 second=81 amount=-2 +kerning first=371 second=102 amount=-2 +kerning first=262 second=67 amount=-3 +kerning first=196 second=211 amount=-3 +kerning first=83 second=119 amount=-3 +kerning first=121 second=46 amount=-5 +kerning first=199 second=210 amount=-3 +kerning first=283 second=8221 amount=-2 +kerning first=1114 second=1083 amount=-1 +kerning first=236 second=245 amount=-1 +kerning first=226 second=46 amount=-1 +kerning first=211 second=8221 amount=-2 +kerning first=90 second=122 amount=-3 +kerning first=224 second=119 amount=-3 +kerning first=227 second=102 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=260 second=119 amount=-3 +kerning first=317 second=81 amount=-1 +kerning first=1056 second=1049 amount=-1 +kerning first=344 second=266 amount=-3 +kerning first=263 second=102 amount=-2 +kerning first=376 second=211 amount=-3 +kerning first=380 second=245 amount=-1 +kerning first=76 second=217 amount=-3 +kerning first=268 second=211 amount=-3 +kerning first=344 second=245 amount=-3 +kerning first=335 second=102 amount=-1 +kerning first=304 second=211 amount=-2 +kerning first=367 second=335 amount=-1 +kerning first=368 second=119 amount=-2 +kerning first=100 second=328 amount=-1 +kerning first=254 second=252 amount=-1 +kerning first=230 second=311 amount=-2 +kerning first=290 second=252 amount=-1 +kerning first=214 second=204 amount=-2 +kerning first=326 second=252 amount=-1 +kerning first=311 second=8217 amount=-2 +kerning first=1078 second=1090 amount=-1 +kerning first=362 second=252 amount=-1 +kerning first=286 second=204 amount=-1 +kerning first=1042 second=1090 amount=-1 +kerning first=362 second=259 amount=-3 +kerning first=277 second=328 amount=-2 +kerning first=77 second=252 amount=-1 +kerning first=259 second=335 amount=-1 +kerning first=326 second=259 amount=-1 +kerning first=241 second=328 amount=-1 +kerning first=113 second=252 amount=-2 +kerning first=370 second=67 amount=-1 +kerning first=74 second=269 amount=-2 +kerning first=1079 second=1118 amount=-2 +kerning first=1024 second=1097 amount=-1 +kerning first=266 second=248 amount=-2 +kerning first=218 second=252 amount=-1 +kerning first=298 second=67 amount=-2 +kerning first=364 second=378 amount=-3 +kerning first=84 second=262 amount=-3 +kerning first=382 second=113 amount=-1 +kerning first=287 second=269 amount=-2 +kerning first=328 second=378 amount=-1 +kerning first=346 second=113 amount=-1 +kerning first=274 second=366 amount=-2 +kerning first=378 second=365 amount=-2 +kerning first=251 second=269 amount=-1 +kerning first=74 second=288 amount=-2 +kerning first=66 second=250 amount=-3 +kerning first=310 second=113 amount=-2 +kerning first=378 second=353 amount=-2 +kerning first=120 second=249 amount=-3 +kerning first=1060 second=1030 amount=-1 +kerning first=202 second=366 amount=-2 +kerning first=88 second=263 amount=-2 +kerning first=323 second=269 amount=-2 +kerning first=275 second=378 amount=-2 +kerning first=220 second=378 amount=-3 +kerning first=260 second=171 amount=-4 +kerning first=252 second=100 amount=-1 +kerning first=324 second=112 amount=-1 +kerning first=338 second=87 amount=-1 +kerning first=288 second=112 amount=-1 +kerning first=198 second=353 amount=-1 +kerning first=234 second=365 amount=-2 +kerning first=332 second=171 amount=-1 +kerning first=252 second=112 amount=-2 +kerning first=234 second=353 amount=-2 +kerning first=198 second=365 amount=-2 +kerning first=368 second=171 amount=-5 +kerning first=216 second=112 amount=-1 +kerning first=346 second=366 amount=-3 +kerning first=75 second=100 amount=-2 +kerning first=323 second=288 amount=-2 +kerning first=272 second=366 amount=-1 +kerning first=194 second=87 amount=-6 +kerning first=1045 second=1054 amount=-1 +kerning first=355 second=249 amount=-1 +kerning first=212 second=352 amount=-1 +kerning first=1075 second=1086 amount=-1 +kerning first=193 second=275 amount=-1 +kerning first=379 second=210 amount=-1 +kerning first=76 second=192 amount=-2 +kerning first=229 second=275 amount=-1 +kerning first=284 second=352 amount=-2 +kerning first=194 second=354 amount=-6 +kerning first=88 second=275 amount=-2 +kerning first=1071 second=1080 amount=-1 +kerning first=328 second=121 amount=-2 +kerning first=97 second=113 amount=-1 +kerning first=356 second=352 amount=-3 +kerning first=314 second=8221 amount=-3 +kerning first=207 second=248 amount=-2 +kerning first=264 second=198 amount=-3 +kerning first=121 second=97 amount=-3 +kerning first=220 second=380 amount=-3 +kerning first=8217 second=193 amount=-6 +kerning first=106 second=249 amount=-1 +kerning first=288 second=379 amount=-2 +kerning first=70 second=8249 amount=-3 +kerning first=369 second=8220 amount=-3 +kerning first=234 second=114 amount=-1 +kerning first=336 second=198 amount=-4 +kerning first=221 second=223 amount=-3 +kerning first=1093 second=1105 amount=-2 +kerning first=333 second=8220 amount=-2 +kerning first=120 second=248 amount=-2 +kerning first=346 second=364 amount=-3 +kerning first=381 second=116 amount=-1 +kerning first=87 second=198 amount=-6 +kerning first=70 second=289 amount=-3 +kerning first=66 second=248 amount=-1 +kerning first=374 second=338 amount=-3 +kerning first=283 second=249 amount=-2 +kerning first=378 second=98 amount=-1 +kerning first=225 second=8220 amount=-3 +kerning first=79 second=380 amount=-2 +kerning first=1067 second=1079 amount=-1 +kerning first=354 second=361 amount=-2 +kerning first=115 second=380 amount=-2 +kerning first=211 second=289 amount=-1 +kerning first=352 second=313 amount=-3 +kerning first=120 second=8220 amount=-2 +kerning first=1025 second=1113 amount=-1 +kerning first=347 second=237 amount=-2 +kerning first=187 second=75 amount=-5 +kerning first=75 second=339 amount=-2 +kerning first=377 second=274 amount=-1 +kerning first=1031 second=1079 amount=-1 +kerning first=284 second=73 amount=-1 +kerning first=280 second=313 amount=-2 +kerning first=275 second=237 amount=-2 +kerning first=334 second=46 amount=-3 +kerning first=256 second=99 amount=-1 +kerning first=8216 second=256 amount=-8 +kerning first=356 second=73 amount=-1 +kerning first=220 second=99 amount=-2 +kerning first=208 second=313 amount=-2 +kerning first=203 second=237 amount=-1 +kerning first=71 second=73 amount=-1 +kerning first=252 second=339 amount=-1 +kerning first=67 second=313 amount=-3 +kerning first=193 second=263 amount=-1 +kerning first=334 second=327 amount=-2 +kerning first=279 second=248 amount=-1 +kerning first=98 second=237 amount=-1 +kerning first=229 second=263 amount=-1 +kerning first=106 second=8249 amount=-3 +kerning first=268 second=206 amount=-3 +kerning first=216 second=379 amount=-2 +kerning first=212 second=73 amount=-2 +kerning first=364 second=99 amount=-2 +kerning first=83 second=187 amount=-1 +kerning first=1049 second=1081 amount=-1 +kerning first=260 second=199 amount=-3 +kerning first=211 second=350 amount=-1 +kerning first=198 second=381 amount=-1 +kerning first=369 second=234 amount=-1 +kerning first=203 second=209 amount=-2 +kerning first=69 second=212 amount=-1 +kerning first=296 second=199 amount=-2 +kerning first=86 second=83 amount=-3 +kerning first=258 second=67 amount=-3 +kerning first=120 second=234 amount=-2 +kerning first=377 second=302 amount=-1 +kerning first=368 second=199 amount=-1 +kerning first=283 second=277 amount=-1 +kerning first=225 second=234 amount=-1 +kerning first=236 second=227 amount=-2 +kerning first=187 second=323 amount=-5 +kerning first=261 second=234 amount=-1 +kerning first=256 second=111 amount=-1 +kerning first=106 second=277 amount=-1 +kerning first=288 second=72 amount=-1 +kerning first=283 second=289 amount=-3 +kerning first=8217 second=333 amount=-3 +kerning first=364 second=111 amount=-2 +kerning first=8250 second=198 amount=-4 +kerning first=84 second=264 amount=-3 +kerning first=355 second=289 amount=-2 +kerning first=310 second=364 amount=-2 +kerning first=77 second=233 amount=-2 +kerning first=274 second=364 amount=-2 +kerning first=354 second=212 amount=-3 +kerning first=70 second=277 amount=-1 +kerning first=111 second=351 amount=-2 +kerning first=288 second=367 amount=-1 +kerning first=220 second=111 amount=-2 +kerning first=202 second=364 amount=-2 +kerning first=113 second=233 amount=-1 +kerning first=282 second=212 amount=-1 +kerning first=266 second=354 amount=-1 +kerning first=106 second=261 amount=-2 +kerning first=79 second=287 amount=-1 +kerning first=218 second=233 amount=-2 +kerning first=87 second=226 amount=-5 +kerning first=252 second=367 amount=-1 +kerning first=338 second=354 amount=-1 +kerning first=315 second=220 amount=-3 +kerning first=211 second=261 amount=-1 +kerning first=111 second=367 amount=-1 +kerning first=229 second=291 amount=-2 +kerning first=380 second=105 amount=-1 +kerning first=202 second=97 amount=-1 +kerning first=338 second=326 amount=-1 +kerning first=228 second=226 amount=-1 +kerning first=193 second=291 amount=-3 +kerning first=324 second=351 amount=-1 +kerning first=374 second=326 amount=-3 +kerning first=362 second=233 amount=-2 +kerning first=264 second=226 amount=-2 +kerning first=75 second=367 amount=-3 +kerning first=97 second=97 amount=-1 +kerning first=90 second=110 amount=-1 +kerning first=88 second=291 amount=-2 +kerning first=216 second=72 amount=-2 +kerning first=336 second=226 amount=-1 +kerning first=70 second=261 amount=-2 +kerning first=83 second=171 amount=-3 +kerning first=346 second=97 amount=-2 +kerning first=315 second=250 amount=-2 +kerning first=70 second=267 amount=-1 +kerning first=119 second=171 amount=-4 +kerning first=264 second=83 amount=-3 +kerning first=230 second=326 amount=-2 +kerning first=279 second=250 amount=-2 +kerning first=198 second=86 amount=-1 +kerning first=115 second=378 amount=-2 +kerning first=1042 second=1050 amount=-2 +kerning first=266 second=326 amount=-1 +kerning first=267 second=110 amount=-2 +kerning first=234 second=337 amount=-1 +kerning first=380 second=248 amount=-1 +kerning first=79 second=378 amount=-2 +kerning first=224 second=171 amount=-2 +kerning first=86 second=350 amount=-3 +kerning first=310 second=97 amount=-1 +kerning first=351 second=250 amount=-1 +kerning first=251 second=316 amount=-2 +kerning first=339 second=110 amount=-2 +kerning first=283 second=261 amount=-2 +kerning first=287 second=316 amount=-3 +kerning first=102 second=250 amount=-1 +kerning first=291 second=234 amount=-2 +kerning first=89 second=326 amount=-3 +kerning first=243 second=250 amount=-1 +kerning first=1104 second=1116 amount=-1 +kerning first=355 second=261 amount=-1 +kerning first=378 second=337 amount=-1 +kerning first=207 second=250 amount=-2 +kerning first=108 second=117 amount=-2 +kerning first=221 second=200 amount=-1 +kerning first=81 second=260 amount=-4 +kerning first=1104 second=1107 amount=-1 +kerning first=72 second=117 amount=-2 +kerning first=315 second=75 amount=-2 +kerning first=120 second=339 amount=-2 +kerning first=1070 second=1031 amount=-1 +kerning first=80 second=200 amount=-1 +kerning first=249 second=117 amount=-1 +kerning first=69 second=221 amount=-1 +kerning first=222 second=260 amount=-4 +kerning first=90 second=330 amount=-1 +kerning first=262 second=317 amount=-3 +kerning first=321 second=117 amount=-2 +kerning first=1114 second=1081 amount=-1 +kerning first=362 second=264 amount=-1 +kerning first=262 second=290 amount=-3 +kerning first=282 second=214 amount=-1 +kerning first=298 second=290 amount=-2 +kerning first=366 second=260 amount=-4 +kerning first=241 second=98 amount=-2 +kerning first=77 second=240 amount=-2 +kerning first=354 second=214 amount=-3 +kerning first=221 second=207 amount=-1 +kerning first=370 second=290 amount=-1 +kerning first=113 second=240 amount=-1 +kerning first=218 second=264 amount=-1 +kerning first=85 second=290 amount=-1 +kerning first=113 second=271 amount=-1 +kerning first=362 second=240 amount=-2 +kerning first=69 second=214 amount=-1 +kerning first=213 second=377 amount=-2 +kerning first=240 second=118 amount=-2 +kerning first=282 second=221 amount=-1 +kerning first=77 second=264 amount=-2 +kerning first=75 second=84 amount=-2 +kerning first=321 second=377 amount=-3 +kerning first=222 second=298 amount=-2 +kerning first=328 second=110 amount=-1 +kerning first=366 second=291 amount=-4 +kerning first=350 second=194 amount=-4 +kerning first=214 second=220 amount=-1 +kerning first=330 second=291 amount=-3 +kerning first=68 second=97 amount=-1 +kerning first=266 second=317 amount=-3 +kerning first=216 second=84 amount=-2 +kerning first=104 second=97 amount=-1 +kerning first=278 second=194 amount=-2 +kerning first=120 second=227 amount=-2 +kerning first=313 second=330 amount=-2 +kerning first=240 second=353 amount=-2 +kerning first=368 second=289 amount=-4 +kerning first=258 second=291 amount=-3 +kerning first=121 second=287 amount=-3 +kerning first=84 second=227 amount=-5 +kerning first=338 second=317 amount=-2 +kerning first=1064 second=1077 amount=-1 +kerning first=222 second=291 amount=-1 +kerning first=85 second=287 amount=-4 +kerning first=374 second=317 amount=-1 +kerning first=356 second=324 amount=-3 +kerning first=245 second=97 amount=-1 +kerning first=226 second=287 amount=-2 +kerning first=89 second=317 amount=-1 +kerning first=117 second=291 amount=-3 +kerning first=100 second=337 amount=-1 +kerning first=269 second=311 amount=-2 +kerning first=81 second=291 amount=-1 +kerning first=298 second=287 amount=-3 +kerning first=233 second=311 amount=-2 +kerning first=288 second=84 amount=-3 +kerning first=84 second=234 amount=-3 +kerning first=327 second=71 amount=-2 +kerning first=209 second=97 amount=-2 +kerning first=262 second=287 amount=-3 +kerning first=197 second=311 amount=-2 +kerning first=1024 second=1088 amount=-1 +kerning first=86 second=90 amount=-3 +kerning first=370 second=287 amount=-4 +kerning first=86 second=381 amount=-3 +kerning first=78 second=71 amount=-2 +kerning first=277 second=337 amount=-1 +kerning first=334 second=287 amount=-1 +kerning first=1053 second=1094 amount=-1 +kerning first=80 second=197 amount=-4 +kerning first=45 second=298 amount=-5 +kerning first=219 second=71 amount=-1 +kerning first=198 second=77 amount=-2 +kerning first=248 second=324 amount=-1 +kerning first=81 second=298 amount=-2 +kerning first=205 second=337 amount=-2 +kerning first=277 second=365 amount=-2 +kerning first=374 second=78 amount=-1 +kerning first=222 second=382 amount=-2 +kerning first=117 second=263 amount=-1 +kerning first=241 second=365 amount=-1 +kerning first=221 second=197 amount=-6 +kerning first=218 second=268 amount=-1 +kerning first=213 second=120 amount=-1 +kerning first=205 second=365 amount=-2 +kerning first=73 second=213 amount=-2 +kerning first=354 second=193 amount=-6 +kerning first=1024 second=1060 amount=-1 +kerning first=249 second=120 amount=-2 +kerning first=375 second=113 amount=-3 +kerning first=379 second=230 amount=-1 +kerning first=327 second=303 amount=-1 +kerning first=201 second=310 amount=-2 +kerning first=367 second=8217 amount=-3 +kerning first=77 second=268 amount=-2 +kerning first=266 second=78 amount=-3 +kerning first=335 second=353 amount=-2 +kerning first=362 second=243 amount=-2 +kerning first=208 second=325 amount=-2 +kerning first=371 second=353 amount=-2 +kerning first=1089 second=1094 amount=-1 +kerning first=108 second=120 amount=-1 +kerning first=338 second=85 amount=-2 +kerning first=195 second=113 amount=-1 +kerning first=371 second=118 amount=-3 +kerning first=45 second=270 amount=-5 +kerning first=122 second=353 amount=-2 +kerning first=335 second=118 amount=-2 +kerning first=89 second=78 amount=-1 +kerning first=78 second=303 amount=-1 +kerning first=236 second=275 amount=-1 +kerning first=266 second=85 amount=-2 +kerning first=1064 second=1080 amount=-1 +kerning first=198 second=74 amount=-1 +kerning first=313 second=70 amount=-2 +kerning first=335 second=46 amount=-3 +kerning first=379 second=201 amount=-1 +kerning first=350 second=227 amount=-2 +kerning first=1056 second=1065 amount=-1 +kerning first=81 second=270 amount=-2 +kerning first=263 second=353 amount=-2 +kerning first=194 second=85 amount=-3 +kerning first=339 second=113 amount=-1 +kerning first=227 second=118 amount=-3 +kerning first=230 second=314 amount=-3 +kerning first=219 second=303 amount=-2 +kerning first=321 second=120 amount=-1 +kerning first=1100 second=1080 amount=-1 +kerning first=194 second=314 amount=-2 +kerning first=255 second=303 amount=-2 +kerning first=89 second=345 amount=-1 +kerning first=89 second=85 amount=-1 +kerning first=267 second=113 amount=-1 +kerning first=8250 second=206 amount=-5 +kerning first=249 second=273 amount=-1 +kerning first=313 second=365 amount=-2 +kerning first=263 second=118 amount=-2 +kerning first=381 second=310 amount=-1 +kerning first=266 second=314 amount=-1 +kerning first=199 second=201 amount=-3 +kerning first=86 second=353 amount=-3 +kerning first=353 second=251 amount=-1 +kerning first=234 second=105 amount=-2 +kerning first=257 second=235 amount=-1 +kerning first=197 second=283 amount=-1 +kerning first=1057 second=1093 amount=-1 +kerning first=381 second=338 amount=-1 +kerning first=8250 second=209 amount=-5 +kerning first=338 second=314 amount=-1 +kerning first=8222 second=217 amount=-3 +kerning first=321 second=380 amount=-3 +kerning first=84 second=224 amount=-4 +kerning first=122 second=118 amount=-2 +kerning first=317 second=324 amount=-1 +kerning first=86 second=118 amount=-3 +kerning first=198 second=105 amount=-1 +kerning first=365 second=235 amount=-1 +kerning first=313 second=98 amount=-2 +kerning first=222 second=270 amount=-2 +kerning first=1064 second=1087 amount=-1 +kerning first=250 second=241 amount=-1 +kerning first=108 second=380 amount=-1 +kerning first=277 second=98 amount=-2 +kerning first=120 second=224 amount=-2 +kerning first=1100 second=1087 amount=-1 +kerning first=261 second=224 amount=-1 +kerning first=365 second=228 amount=-1 +kerning first=201 second=338 amount=-1 +kerning first=71 second=352 amount=-2 +kerning first=200 second=198 amount=-2 +kerning first=269 second=283 amount=-1 +kerning first=213 second=380 amount=-2 +kerning first=374 second=85 amount=-1 +kerning first=225 second=224 amount=-1 +kerning first=1042 second=1063 amount=-3 +kerning first=233 second=283 amount=-1 +kerning first=249 second=380 amount=-2 +kerning first=333 second=224 amount=-1 +kerning first=280 second=325 amount=-2 +kerning first=260 second=86 amount=-6 +kerning first=89 second=338 amount=-3 +kerning first=257 second=228 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=1057 second=1108 amount=-1 +kerning first=221 second=228 amount=-4 +kerning first=8250 second=369 amount=-1 +kerning first=121 second=318 amount=-2 +kerning first=352 second=325 amount=-3 +kerning first=369 second=224 amount=-1 +kerning first=69 second=193 amount=-2 +kerning first=109 second=241 amount=-1 +kerning first=377 second=283 amount=-1 +kerning first=72 second=380 amount=-1 +kerning first=278 second=45 amount=-2 +kerning first=352 second=8250 amount=-1 +kerning first=116 second=228 amount=-1 +kerning first=226 second=318 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=80 second=235 amount=-1 +kerning first=363 second=331 amount=-1 +kerning first=80 second=228 amount=-1 +kerning first=262 second=318 amount=-1 +kerning first=88 second=84 amount=-2 +kerning first=250 second=248 amount=-1 +kerning first=330 second=263 amount=-2 +kerning first=255 second=331 amount=-2 +kerning first=313 second=209 amount=-2 +kerning first=366 second=263 amount=-2 +kerning first=291 second=331 amount=-1 +kerning first=221 second=235 amount=-3 +kerning first=1089 second=1097 amount=-1 +kerning first=377 second=281 amount=-1 +kerning first=378 second=237 amount=-1 +kerning first=73 second=216 amount=-2 +kerning first=118 second=101 amount=-3 +kerning first=310 second=101 amount=-2 +kerning first=1103 second=1072 amount=-1 +kerning first=347 second=230 amount=-1 +kerning first=225 second=231 amount=-1 +kerning first=346 second=101 amount=-1 +kerning first=369 second=255 amount=-3 +kerning first=211 second=256 amount=-4 +kerning first=1067 second=1072 amount=-1 +kerning first=261 second=231 amount=-1 +kerning first=1053 second=1097 amount=-1 +kerning first=89 second=82 amount=-1 +kerning first=382 second=101 amount=-1 +kerning first=333 second=255 amount=-3 +kerning first=1053 second=1073 amount=-1 +kerning first=275 second=230 amount=-2 +kerning first=233 second=281 amount=-1 +kerning first=1031 second=1114 amount=-1 +kerning first=311 second=230 amount=-2 +kerning first=1039 second=1098 amount=-1 +kerning first=269 second=281 amount=-1 +kerning first=289 second=224 amount=-3 +kerning first=261 second=255 amount=-2 +kerning first=88 second=251 amount=-3 +kerning first=203 second=230 amount=-1 +kerning first=115 second=108 amount=-2 +kerning first=369 second=231 amount=-1 +kerning first=225 second=255 amount=-3 +kerning first=193 second=251 amount=-3 +kerning first=338 second=347 amount=-1 +kerning first=78 second=67 amount=-2 +kerning first=120 second=255 amount=-3 +kerning first=99 second=8221 amount=-2 +kerning first=302 second=347 amount=-2 +kerning first=211 second=280 amount=-2 +kerning first=288 second=107 amount=-1 +kerning first=288 second=311 amount=-1 +kerning first=266 second=347 amount=-2 +kerning first=120 second=8217 amount=-2 +kerning first=229 second=251 amount=-1 +kerning first=76 second=205 amount=-2 +kerning first=230 second=347 amount=-2 +kerning first=197 second=281 amount=-1 +kerning first=337 second=251 amount=-1 +kerning first=120 second=231 amount=-2 +kerning first=194 second=347 amount=-2 +kerning first=378 second=105 amount=-1 +kerning first=111 second=107 amount=-1 +kerning first=83 second=318 amount=-2 +kerning first=89 second=347 amount=-3 +kerning first=328 second=371 amount=-1 +kerning first=252 second=107 amount=-2 +kerning first=84 second=231 amount=-3 +kerning first=97 second=106 amount=-1 +kerning first=212 second=80 amount=-2 +kerning first=277 second=333 amount=-1 +kerning first=75 second=81 amount=-3 +kerning first=230 second=345 amount=-1 +kerning first=266 second=345 amount=-1 +kerning first=284 second=80 amount=-1 +kerning first=187 second=357 amount=-1 +kerning first=327 second=67 amount=-2 +kerning first=69 second=217 amount=-2 +kerning first=256 second=368 amount=-3 +kerning first=100 second=333 amount=-1 +kerning first=374 second=345 amount=-1 +kerning first=198 second=346 amount=-2 +kerning first=310 second=106 amount=-1 +kerning first=219 second=67 amount=-1 +kerning first=210 second=217 amount=-1 +kerning first=313 second=68 amount=-2 +kerning first=205 second=333 amount=-2 +kerning first=71 second=80 amount=-1 +kerning first=282 second=217 amount=-2 +kerning first=216 second=256 amount=-4 +kerning first=98 second=230 amount=-1 +kerning first=80 second=204 amount=-1 +kerning first=218 second=243 amount=-2 +kerning first=346 second=106 amount=-1 +kerning first=381 second=249 amount=-3 +kerning first=8217 second=328 amount=-2 +kerning first=382 second=106 amount=-2 +kerning first=263 second=335 amount=-1 +kerning first=1113 second=1117 amount=-1 +kerning first=110 second=307 amount=-1 +kerning first=356 second=80 amount=-1 +kerning first=362 second=268 amount=-1 +kerning first=221 second=204 amount=-1 +kerning first=71 second=260 amount=-3 +kerning first=70 second=256 amount=-3 +kerning first=251 second=307 amount=-2 +kerning first=334 second=374 amount=-2 +kerning first=77 second=243 amount=-2 +kerning first=8216 second=289 amount=-4 +kerning first=83 second=65 amount=-4 +kerning first=287 second=307 amount=-2 +kerning first=1056 second=1033 amount=-2 +kerning first=113 second=243 amount=-1 +kerning first=201 second=69 amount=-2 +kerning first=310 second=104 amount=-1 +kerning first=310 second=369 amount=-3 +kerning first=219 second=334 amount=-1 +kerning first=70 second=284 amount=-1 +kerning first=274 second=104 amount=-1 +kerning first=274 second=369 amount=-2 +kerning first=288 second=344 amount=-1 +kerning first=382 second=369 amount=-2 +kerning first=120 second=259 amount=-2 +kerning first=251 second=44 amount=-2 +kerning first=377 second=278 amount=-1 +kerning first=202 second=104 amount=-1 +kerning first=346 second=369 amount=-1 +kerning first=84 second=259 amount=-5 +kerning first=324 second=109 amount=-1 +kerning first=1024 second=1085 amount=-1 +kerning first=368 second=192 amount=-4 +kerning first=327 second=334 amount=-2 +kerning first=382 second=104 amount=-2 +kerning first=332 second=192 amount=-4 +kerning first=74 second=44 amount=-1 +kerning first=1070 second=1034 amount=-1 +kerning first=355 second=108 amount=-1 +kerning first=73 second=244 amount=-2 +kerning first=202 second=369 amount=-2 +kerning first=216 second=344 amount=-2 +kerning first=251 second=279 amount=-1 +kerning first=333 second=227 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=207 second=229 amount=-2 +kerning first=354 second=217 amount=-1 +kerning first=323 second=279 amount=-2 +kerning first=66 second=229 amount=-3 +kerning first=261 second=227 amount=-1 +kerning first=1100 second=1084 amount=-1 +kerning first=287 second=279 amount=-2 +kerning first=102 second=229 amount=-2 +kerning first=225 second=227 amount=-1 +kerning first=1064 second=1084 amount=-1 +kerning first=74 second=279 amount=-2 +kerning first=83 second=192 amount=-4 +kerning first=323 second=44 amount=-1 +kerning first=365 second=232 amount=-1 +kerning first=351 second=229 amount=-1 +kerning first=97 second=104 amount=-1 +kerning first=287 second=44 amount=-3 +kerning first=1049 second=1074 amount=-1 +kerning first=78 second=305 amount=-1 +kerning first=8250 second=366 amount=-4 +kerning first=279 second=229 amount=-2 +kerning first=78 second=334 amount=-2 +kerning first=369 second=227 amount=-1 +kerning first=330 second=267 amount=-2 +kerning first=243 second=257 amount=-1 +kerning first=221 second=232 amount=-3 +kerning first=212 second=344 amount=-2 +kerning first=77 second=283 amount=-2 +kerning first=366 second=267 amount=-2 +kerning first=115 second=371 amount=-1 +kerning first=279 second=257 amount=-2 +kerning first=202 second=67 amount=-1 +kerning first=100 second=361 amount=-1 +kerning first=258 second=267 amount=-1 +kerning first=313 second=65 amount=-2 +kerning first=255 second=305 amount=-2 +kerning first=336 second=219 amount=-1 +kerning first=219 second=305 amount=-2 +kerning first=207 second=257 amount=-2 +kerning first=257 second=232 amount=-1 +kerning first=205 second=361 amount=-2 +kerning first=327 second=305 amount=-1 +kerning first=66 second=257 amount=-3 +kerning first=264 second=219 amount=-2 +kerning first=244 second=8250 amount=-2 +kerning first=203 second=202 amount=-2 +kerning first=291 second=305 amount=-1 +kerning first=102 second=257 amount=-2 +kerning first=277 second=361 amount=-2 +kerning first=203 second=324 amount=-1 +kerning first=266 second=230 amount=-2 +kerning first=192 second=219 amount=-3 +kerning first=241 second=361 amount=-1 +kerning first=363 second=305 amount=-1 +kerning first=80 second=232 amount=-1 +kerning first=382 second=252 amount=-2 +kerning first=199 second=206 amount=-3 +kerning first=87 second=219 amount=-1 +kerning first=335 second=121 amount=-3 +kerning first=338 second=82 amount=-2 +kerning first=374 second=82 amount=-1 +kerning first=1079 second=1083 amount=-1 +kerning first=337 second=254 amount=-1 +kerning first=263 second=121 amount=-2 +kerning first=227 second=121 amount=-3 +kerning first=381 second=69 amount=-1 +kerning first=88 second=254 amount=-1 +kerning first=122 second=121 amount=-2 +kerning first=1071 second=1099 amount=-1 +kerning first=197 second=8217 amount=-5 +kerning first=187 second=66 amount=-5 +kerning first=193 second=254 amount=-2 +kerning first=351 second=257 amount=-1 +kerning first=75 second=79 amount=-3 +kerning first=288 second=82 amount=-1 +kerning first=338 second=69 amount=-2 +kerning first=1039 second=1116 amount=-1 +kerning first=69 second=209 amount=-2 +kerning first=374 second=69 amount=-1 +kerning first=266 second=69 amount=-3 +kerning first=203 second=212 amount=-1 +kerning first=82 second=332 amount=-3 +kerning first=86 second=326 amount=-3 +kerning first=106 second=8217 amount=-2 +kerning first=82 second=79 amount=-3 +kerning first=282 second=209 amount=-2 +kerning first=103 second=316 amount=-3 +kerning first=1104 second=1119 amount=-1 +kerning first=210 second=209 amount=-2 +kerning first=216 second=82 amount=-2 +kerning first=89 second=69 amount=-1 +kerning first=201 second=66 amount=-2 +kerning first=187 second=72 amount=-5 +kerning first=284 second=76 amount=-1 +kerning first=198 second=89 amount=-1 +kerning first=87 second=216 amount=-3 +kerning first=76 second=199 amount=-1 +kerning first=8217 second=71 amount=-2 +kerning first=1071 second=1096 amount=-1 +kerning first=381 second=66 amount=-1 +kerning first=212 second=76 amount=-2 +kerning first=8216 second=281 amount=-3 +kerning first=192 second=216 amount=-3 +kerning first=203 second=205 amount=-2 +kerning first=217 second=199 amount=-1 +kerning first=214 second=229 amount=-1 +kerning first=217 second=192 amount=-4 +kerning first=71 second=76 amount=-1 +kerning first=73 second=229 amount=-2 +kerning first=236 second=242 amount=-1 +kerning first=283 second=8217 amount=-2 +kerning first=109 second=229 amount=-1 +kerning first=202 second=70 amount=-2 +kerning first=1048 second=1077 amount=-1 +kerning first=325 second=199 amount=-2 +kerning first=381 second=326 amount=-1 +kerning first=221 second=226 amount=-5 +kerning first=113 second=8221 amount=-3 +kerning first=313 second=86 amount=-3 +kerning first=257 second=226 amount=-1 +kerning first=1100 second=1099 amount=-1 +kerning first=380 second=242 amount=-1 +kerning first=68 second=257 amount=-1 +kerning first=1064 second=1099 amount=-1 +kerning first=344 second=242 amount=-3 +kerning first=201 second=326 amount=-1 +kerning first=254 second=8221 amount=-2 +kerning first=365 second=226 amount=-1 +kerning first=290 second=8221 amount=-1 +kerning first=264 second=216 amount=-3 +kerning first=90 second=119 amount=-2 +kerning first=356 second=76 amount=-1 +kerning first=1070 second=1033 amount=-3 +kerning first=195 second=119 amount=-3 +kerning first=291 second=333 amount=-2 +kerning first=244 second=316 amount=-2 +kerning first=86 second=216 amount=-3 +kerning first=111 second=103 amount=-2 +kerning first=1082 second=1092 amount=-2 +kerning first=231 second=119 amount=-2 +kerning first=255 second=333 amount=-3 +kerning first=75 second=103 amount=-2 +kerning first=221 second=219 amount=-1 +kerning first=210 second=202 amount=-2 +kerning first=1118 second=1092 amount=-2 +kerning first=334 second=302 amount=-2 +kerning first=267 second=119 amount=-2 +kerning first=363 second=333 amount=-1 +kerning first=316 second=316 amount=-2 +kerning first=69 second=202 amount=-2 +kerning first=303 second=119 amount=-3 +kerning first=352 second=316 amount=-2 +kerning first=262 second=302 amount=-3 +kerning first=339 second=119 amount=-2 +kerning first=375 second=119 amount=-1 +kerning first=354 second=202 amount=-1 +kerning first=219 second=333 amount=-2 +kerning first=80 second=226 amount=-1 +kerning first=1031 second=1119 amount=-1 +kerning first=337 second=291 amount=-2 +kerning first=116 second=226 amount=-1 +kerning first=282 second=202 amount=-2 +kerning first=382 second=116 amount=-1 +kerning first=117 second=269 amount=-1 +kerning first=369 second=246 amount=-1 +kerning first=364 second=375 amount=-1 +kerning first=75 second=284 amount=-3 +kerning first=382 second=122 amount=-2 +kerning first=66 second=253 amount=-3 +kerning first=328 second=375 amount=-2 +kerning first=283 second=259 amount=-2 +kerning first=346 second=122 amount=-2 +kerning first=102 second=253 amount=-1 +kerning first=75 second=369 amount=-3 +kerning first=114 second=45 amount=-1 +kerning first=75 second=363 amount=-3 +kerning first=324 second=103 amount=-2 +kerning first=261 second=246 amount=-1 +kerning first=256 second=375 amount=-3 +kerning first=1053 second=1082 amount=-1 +kerning first=78 second=45 amount=-4 +kerning first=198 second=356 amount=-1 +kerning first=111 second=363 amount=-1 +kerning first=288 second=103 amount=-3 +kerning first=225 second=246 amount=-1 +kerning first=207 second=253 amount=-2 +kerning first=261 second=252 amount=-1 +kerning first=1089 second=1082 amount=-1 +kerning first=219 second=45 amount=-5 +kerning first=258 second=269 amount=-1 +kerning first=252 second=103 amount=-3 +kerning first=243 second=253 amount=-3 +kerning first=310 second=116 amount=-1 +kerning first=366 second=269 amount=-2 +kerning first=216 second=103 amount=-1 +kerning first=120 second=246 amount=-2 +kerning first=1071 second=1075 amount=-1 +kerning first=279 second=253 amount=-2 +kerning first=333 second=252 amount=-1 +kerning first=291 second=45 amount=-3 +kerning first=330 second=269 amount=-2 +kerning first=252 second=363 amount=-1 +kerning first=84 second=246 amount=-3 +kerning first=315 second=253 amount=-3 +kerning first=369 second=252 amount=-1 +kerning first=211 second=259 amount=-1 +kerning first=288 second=363 amount=-1 +kerning first=97 second=122 amount=-1 +kerning first=1046 second=1086 amount=-2 +kerning first=324 second=369 amount=-1 +kerning first=324 second=363 amount=-1 +kerning first=346 second=382 amount=-2 +kerning first=288 second=369 amount=-1 +kerning first=382 second=382 amount=-2 +kerning first=70 second=259 amount=-2 +kerning first=198 second=362 amount=-2 +kerning first=274 second=122 amount=-2 +kerning first=220 second=375 amount=-1 +kerning first=1053 second=1089 amount=-1 +kerning first=193 second=266 amount=-3 +kerning first=202 second=382 amount=-2 +kerning first=274 second=109 amount=-1 +kerning first=8217 second=331 amount=-2 +kerning first=111 second=369 amount=-1 +kerning first=262 second=327 amount=-3 +kerning first=202 second=122 amount=-2 +kerning first=382 second=109 amount=-2 +kerning first=115 second=375 amount=-3 +kerning first=252 second=369 amount=-1 +kerning first=88 second=266 amount=-3 +kerning first=45 second=278 amount=-5 +kerning first=346 second=109 amount=-1 +kerning first=119 second=97 amount=-3 +kerning first=229 second=273 amount=-1 +kerning first=220 second=115 amount=-2 +kerning first=216 second=370 amount=-1 +kerning first=97 second=109 amount=-1 +kerning first=8222 second=311 amount=-1 +kerning first=115 second=115 amount=-3 +kerning first=288 second=370 amount=-1 +kerning first=202 second=109 amount=-1 +kerning first=8217 second=352 amount=-3 +kerning first=328 second=115 amount=-1 +kerning first=364 second=115 amount=-2 +kerning first=88 second=279 amount=-2 +kerning first=234 second=355 amount=-1 +kerning first=356 second=336 amount=-3 +kerning first=256 second=115 amount=-2 +kerning first=1118 second=1086 amount=-2 +kerning first=229 second=279 amount=-1 +kerning first=1082 second=1086 amount=-2 +kerning first=193 second=279 amount=-1 +kerning first=245 second=259 amount=-1 +kerning first=207 second=232 amount=-2 +kerning first=351 second=253 amount=-3 +kerning first=262 second=296 amount=-3 +kerning first=378 second=355 amount=-1 +kerning first=279 second=232 amount=-1 +kerning first=334 second=296 amount=-2 +kerning first=356 second=353 amount=-3 +kerning first=256 second=108 amount=-2 +kerning first=8217 second=337 amount=-3 +kerning first=75 second=370 amount=-2 +kerning first=328 second=108 amount=-1 +kerning first=83 second=69 amount=-3 +kerning first=263 second=8249 amount=-2 +kerning first=203 second=206 amount=-2 +kerning first=66 second=232 amount=-1 +kerning first=313 second=8221 amount=-4 +kerning first=334 second=315 amount=-2 +kerning first=187 second=85 amount=-4 +kerning first=262 second=303 amount=-1 +kerning first=82 second=338 amount=-3 +kerning first=248 second=328 amount=-1 +kerning first=298 second=303 amount=-1 +kerning first=1104 second=1113 amount=-2 +kerning first=82 second=85 amount=-3 +kerning first=201 second=325 amount=-2 +kerning first=266 second=75 amount=-3 +kerning first=226 second=303 amount=-1 +kerning first=282 second=196 amount=-2 +kerning first=204 second=290 amount=-2 +kerning first=356 second=328 amount=-3 +kerning first=262 second=315 amount=-3 +kerning first=354 second=196 amount=-6 +kerning first=334 second=303 amount=-1 +kerning first=268 second=221 amount=-1 +kerning first=381 second=325 amount=-1 +kerning first=370 second=303 amount=-2 +kerning first=198 second=83 amount=-2 +kerning first=257 second=225 amount=-1 +kerning first=243 second=261 amount=-1 +kerning first=89 second=323 amount=-1 +kerning first=69 second=196 amount=-2 +kerning first=371 second=380 amount=-1 +kerning first=371 second=98 amount=-1 +kerning first=1039 second=1117 amount=-1 +kerning first=210 second=196 amount=-4 +kerning first=8217 second=65 amount=-6 +kerning first=365 second=225 amount=-1 +kerning first=85 second=303 amount=-2 +kerning first=263 second=98 amount=-2 +kerning first=363 second=46 amount=-2 +kerning first=80 second=225 amount=-1 +kerning first=377 second=286 amount=-1 +kerning first=266 second=323 amount=-3 +kerning first=227 second=380 amount=-1 +kerning first=227 second=98 amount=-1 +kerning first=116 second=225 amount=-1 +kerning first=374 second=323 amount=-1 +kerning first=263 second=380 amount=-2 +kerning first=335 second=98 amount=-1 +kerning first=338 second=323 amount=-2 +kerning first=221 second=225 amount=-5 +kerning first=262 second=226 amount=-2 +kerning first=255 second=311 amount=-2 +kerning first=219 second=46 amount=-5 +kerning first=212 second=77 amount=-2 +kerning first=1050 second=1118 amount=-2 +kerning first=255 second=46 amount=-5 +kerning first=264 second=210 amount=-3 +kerning first=208 second=317 amount=-2 +kerning first=291 second=46 amount=-3 +kerning first=313 second=71 amount=-1 +kerning first=120 second=233 amount=-2 +kerning first=327 second=46 amount=-1 +kerning first=71 second=77 amount=-1 +kerning first=197 second=286 amount=-3 +kerning first=1086 second=1118 amount=-1 +kerning first=261 second=233 amount=-1 +kerning first=192 second=210 amount=-3 +kerning first=356 second=77 amount=-1 +kerning first=1056 second=1040 amount=-4 +kerning first=225 second=233 amount=-1 +kerning first=1114 second=1080 amount=-1 +kerning first=205 second=71 amount=-2 +kerning first=87 second=210 amount=-3 +kerning first=114 second=46 amount=-4 +kerning first=284 second=77 amount=-1 +kerning first=1105 second=1078 amount=-1 +kerning first=203 second=211 amount=-1 +kerning first=198 second=102 amount=-2 +kerning first=67 second=317 amount=-3 +kerning first=79 second=197 amount=-4 +kerning first=205 second=352 amount=-2 +kerning first=73 second=235 amount=-2 +kerning first=84 second=252 amount=-1 +kerning first=317 second=112 amount=-2 +kerning first=196 second=221 amount=-6 +kerning first=369 second=233 amount=-1 +kerning first=120 second=252 amount=-3 +kerning first=281 second=112 amount=-1 +kerning first=199 second=200 amount=-3 +kerning first=97 second=110 amount=-1 +kerning first=245 second=112 amount=-1 +kerning first=225 second=252 amount=-1 +kerning first=209 second=112 amount=-1 +kerning first=202 second=110 amount=-1 +kerning first=378 second=102 amount=-2 +kerning first=250 second=235 amount=-1 +kerning first=379 second=200 amount=-1 +kerning first=198 second=350 amount=-2 +kerning first=363 second=311 amount=-2 +kerning first=104 second=112 amount=-1 +kerning first=274 second=110 amount=-1 +kerning first=1071 second=1090 amount=-1 +kerning first=68 second=112 amount=-1 +kerning first=291 second=311 amount=-2 +kerning first=81 second=196 amount=-4 +kerning first=196 second=237 amount=-1 +kerning first=346 second=110 amount=-1 +kerning first=227 second=378 amount=-1 +kerning first=205 second=353 amount=-2 +kerning first=267 second=171 amount=-2 +kerning first=218 second=262 amount=-1 +kerning first=382 second=110 amount=-2 +kerning first=241 second=353 amount=-1 +kerning first=209 second=113 amount=-2 +kerning first=236 second=250 amount=-1 +kerning first=277 second=353 amount=-2 +kerning first=68 second=366 amount=-1 +kerning first=223 second=291 amount=-2 +kerning first=122 second=249 amount=-2 +kerning first=200 second=250 amount=-2 +kerning first=263 second=378 amount=-2 +kerning first=313 second=353 amount=-1 +kerning first=375 second=171 amount=-4 +kerning first=362 second=262 amount=-1 +kerning first=1089 second=1076 amount=-1 +kerning first=284 second=65 amount=-3 +kerning first=371 second=365 amount=-1 +kerning first=253 second=289 amount=-3 +kerning first=122 second=378 amount=-2 +kerning first=100 second=353 amount=-1 +kerning first=195 second=171 amount=-4 +kerning first=335 second=365 amount=-1 +kerning first=86 second=378 amount=-3 +kerning first=231 second=171 amount=-2 +kerning first=353 second=112 amount=-3 +kerning first=381 second=109 amount=-1 +kerning first=82 second=354 amount=-3 +kerning first=254 second=249 amount=-1 +kerning first=313 second=352 amount=-1 +kerning first=281 second=100 amount=-1 +kerning first=290 second=249 amount=-1 +kerning first=258 second=288 amount=-3 +kerning first=187 second=354 amount=-4 +kerning first=1053 second=1101 amount=-1 +kerning first=218 second=249 amount=-1 +kerning first=330 second=275 amount=-2 +kerning first=1042 second=1078 amount=-3 +kerning first=1057 second=1102 amount=-1 +kerning first=335 second=378 amount=-2 +kerning first=1046 second=1091 amount=-2 +kerning first=187 second=87 amount=-4 +kerning first=77 second=262 amount=-2 +kerning first=1056 second=1052 amount=-1 +kerning first=1082 second=1091 amount=-2 +kerning first=209 second=100 amount=-2 +kerning first=362 second=249 amount=-1 +kerning first=82 second=87 amount=-3 +kerning first=344 second=248 amount=-3 +kerning first=1064 second=1105 amount=-1 +kerning first=317 second=364 amount=-3 +kerning first=1107 second=1077 amount=-1 +kerning first=99 second=289 amount=-3 +kerning first=220 second=377 amount=-1 +kerning first=250 second=223 amount=-1 +kerning first=86 second=380 amount=-3 +kerning first=79 second=377 amount=-2 +kerning first=335 second=114 amount=-1 +kerning first=199 second=198 amount=-3 +kerning first=204 second=289 amount=-3 +kerning first=259 second=339 amount=-1 +kerning first=8250 second=106 amount=-2 +kerning first=122 second=380 amount=-2 +kerning first=75 second=45 amount=-4 +kerning first=1071 second=1077 amount=-1 +kerning first=1042 second=1065 amount=-2 +kerning first=371 second=114 amount=-1 +kerning first=240 second=289 amount=-2 +kerning first=89 second=330 amount=-1 +kerning first=77 second=249 amount=-1 +kerning first=263 second=114 amount=-1 +kerning first=326 second=8220 amount=-4 +kerning first=236 second=248 amount=-1 +kerning first=364 second=377 amount=-1 +kerning first=367 second=339 amount=-1 +kerning first=290 second=8220 amount=-1 +kerning first=366 second=288 amount=-1 +kerning first=254 second=8220 amount=-2 +kerning first=1025 second=1103 amount=-2 +kerning first=263 second=365 amount=-2 +kerning first=86 second=114 amount=-1 +kerning first=381 second=313 amount=-1 +kerning first=68 second=379 amount=-2 +kerning first=227 second=365 amount=-1 +kerning first=1024 second=1064 amount=-1 +kerning first=86 second=99 amount=-3 +kerning first=8217 second=291 amount=-4 +kerning first=113 second=8220 amount=-3 +kerning first=8250 second=107 amount=-1 +kerning first=197 second=287 amount=-3 +kerning first=236 second=263 amount=-1 +kerning first=1060 second=1064 amount=-1 +kerning first=376 second=237 amount=-2 +kerning first=196 second=289 amount=-3 +kerning first=122 second=365 amount=-2 +kerning first=118 second=339 amount=-3 +kerning first=201 second=313 amount=-2 +kerning first=317 second=82 amount=-2 +kerning first=269 second=287 amount=-3 +kerning first=86 second=365 amount=-2 +kerning first=122 second=99 amount=-1 +kerning first=304 second=237 amount=-1 +kerning first=334 second=378 amount=-2 +kerning first=1024 second=1079 amount=-1 +kerning first=236 second=234 amount=-1 +kerning first=263 second=99 amount=-1 +kerning first=268 second=237 amount=-1 +kerning first=1051 second=1094 amount=-1 +kerning first=89 second=75 amount=-1 +kerning first=227 second=99 amount=-1 +kerning first=82 second=339 amount=-3 +kerning first=1088 second=1119 amount=-1 +kerning first=317 second=379 amount=-3 +kerning first=305 second=287 amount=-2 +kerning first=208 second=229 amount=-1 +kerning first=379 second=198 amount=-1 +kerning first=280 second=44 amount=-1 +kerning first=356 second=334 amount=-3 +kerning first=333 second=237 amount=-1 +kerning first=187 second=344 amount=-5 +kerning first=377 second=287 amount=-3 +kerning first=196 second=234 amount=-1 +kerning first=352 second=44 amount=-4 +kerning first=87 second=197 amount=-6 +kerning first=232 second=234 amount=-1 +kerning first=261 second=237 amount=-1 +kerning first=66 second=244 amount=-1 +kerning first=307 second=44 amount=-2 +kerning first=204 second=284 amount=-2 +kerning first=268 second=234 amount=-2 +kerning first=225 second=237 amount=-1 +kerning first=317 second=104 amount=-2 +kerning first=103 second=44 amount=-3 +kerning first=363 second=324 amount=-1 +kerning first=75 second=354 amount=-2 +kerning first=281 second=104 amount=-2 +kerning first=120 second=237 amount=-1 +kerning first=218 second=267 amount=-2 +kerning first=245 second=104 amount=-1 +kerning first=208 second=44 amount=-3 +kerning first=264 second=197 amount=-3 +kerning first=84 second=237 amount=-2 +kerning first=112 second=187 amount=-2 +kerning first=216 second=354 amount=-2 +kerning first=232 second=227 amount=-2 +kerning first=1071 second=1084 amount=-1 +kerning first=336 second=197 amount=-4 +kerning first=199 second=194 amount=-3 +kerning first=122 second=111 amount=-1 +kerning first=90 second=337 amount=-1 +kerning first=288 second=354 amount=-3 +kerning first=227 second=111 amount=-1 +kerning first=209 second=237 amount=-1 +kerning first=82 second=351 amount=-2 +kerning first=376 second=227 amount=-5 +kerning first=1067 second=1054 amount=-1 +kerning first=304 second=234 amount=-2 +kerning first=99 second=277 amount=-1 +kerning first=1031 second=1054 amount=-1 +kerning first=205 second=74 amount=-1 +kerning first=288 second=87 amount=-3 +kerning first=304 second=227 amount=-2 +kerning first=376 second=234 amount=-3 +kerning first=1075 second=1104 amount=-1 +kerning first=204 second=277 amount=-2 +kerning first=268 second=227 amount=-2 +kerning first=216 second=87 amount=-2 +kerning first=86 second=111 amount=-3 +kerning first=353 second=367 amount=-1 +kerning first=380 second=254 amount=-1 +kerning first=198 second=361 amount=-2 +kerning first=193 second=267 amount=-1 +kerning first=220 second=121 amount=-1 +kerning first=313 second=74 amount=-1 +kerning first=367 second=351 amount=-2 +kerning first=380 second=257 amount=-1 +kerning first=229 second=267 amount=-1 +kerning first=331 second=351 amount=-1 +kerning first=201 second=314 amount=-1 +kerning first=77 second=261 amount=-2 +kerning first=281 second=367 amount=-2 +kerning first=88 second=267 amount=-2 +kerning first=115 second=121 amount=-3 +kerning first=75 second=364 amount=-2 +kerning first=70 second=264 amount=-1 +kerning first=113 second=261 amount=-2 +kerning first=317 second=367 amount=-2 +kerning first=234 second=361 amount=-2 +kerning first=269 second=8249 amount=-2 +kerning first=212 second=327 amount=-2 +kerning first=1114 second=1074 amount=-1 +kerning first=344 second=257 amount=-2 +kerning first=209 second=367 amount=-2 +kerning first=236 second=254 amount=-1 +kerning first=223 second=351 amount=-2 +kerning first=236 second=257 amount=-2 +kerning first=1042 second=1059 amount=-3 +kerning first=245 second=367 amount=-1 +kerning first=197 second=8249 amount=-4 +kerning first=284 second=327 amount=-1 +kerning first=288 second=364 amount=-1 +kerning first=187 second=351 amount=-1 +kerning first=272 second=257 amount=-1 +kerning first=104 second=367 amount=-1 +kerning first=8250 second=109 amount=-2 +kerning first=295 second=351 amount=-1 +kerning first=344 second=254 amount=-3 +kerning first=378 second=361 amount=-2 +kerning first=356 second=327 amount=-1 +kerning first=364 second=114 amount=-1 +kerning first=216 second=364 amount=-1 +kerning first=259 second=351 amount=-1 +kerning first=200 second=257 amount=-1 +kerning first=326 second=261 amount=-1 +kerning first=279 second=244 amount=-1 +kerning first=232 second=224 amount=-2 +kerning first=362 second=261 amount=-3 +kerning first=106 second=289 amount=-3 +kerning first=1055 second=1108 amount=-1 +kerning first=256 second=117 amount=-3 +kerning first=304 second=224 amount=-2 +kerning first=353 second=104 amount=-1 +kerning first=200 second=254 amount=-1 +kerning first=220 second=114 amount=-1 +kerning first=1038 second=1051 amount=-5 +kerning first=328 second=117 amount=-1 +kerning first=364 second=121 amount=-1 +kerning first=1067 second=1057 amount=-1 +kerning first=376 second=224 amount=-4 +kerning first=218 second=261 amount=-3 +kerning first=121 second=347 amount=-3 +kerning first=1031 second=1057 amount=-1 +kerning first=254 second=261 amount=-1 +kerning first=380 second=250 amount=-2 +kerning first=377 second=8249 amount=-3 +kerning first=290 second=261 amount=-1 +kerning first=344 second=250 amount=-2 +kerning first=211 second=274 amount=-2 +kerning first=369 second=237 amount=-2 +kerning first=356 second=337 amount=-3 +kerning first=369 second=240 amount=-1 +kerning first=1053 second=1088 amount=-1 +kerning first=356 second=331 amount=-3 +kerning first=209 second=101 amount=-2 +kerning first=324 second=97 amount=-1 +kerning first=1049 second=1082 amount=-1 +kerning first=1045 second=1038 amount=-3 +kerning first=1039 second=1107 amount=-1 +kerning first=274 second=268 amount=-1 +kerning first=8220 second=197 amount=-8 +kerning first=203 second=221 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=220 second=117 amount=-1 +kerning first=87 second=200 amount=-1 +kerning first=377 second=290 amount=-1 +kerning first=106 second=271 amount=-1 +kerning first=1024 second=1067 amount=-1 +kerning first=1045 second=1067 amount=-1 +kerning first=234 second=98 amount=-2 +kerning first=84 second=240 amount=-3 +kerning first=194 second=338 amount=-3 +kerning first=197 second=290 amount=-3 +kerning first=67 second=114 amount=-1 +kerning first=87 second=207 amount=-1 +kerning first=256 second=199 amount=-3 +kerning first=283 second=271 amount=-1 +kerning first=225 second=240 amount=-1 +kerning first=364 second=380 amount=-3 +kerning first=203 second=214 amount=-1 +kerning first=346 second=219 amount=-3 +kerning first=261 second=240 amount=-1 +kerning first=198 second=98 amount=-1 +kerning first=236 second=251 amount=-1 +kerning first=1060 second=1067 amount=-1 +kerning first=344 second=251 amount=-2 +kerning first=336 second=207 amount=-2 +kerning first=313 second=77 amount=-2 +kerning first=264 second=201 amount=-3 +kerning first=381 second=317 amount=-1 +kerning first=380 second=251 amount=-2 +kerning first=1107 second=1086 amount=-1 +kerning first=198 second=90 amount=-1 +kerning first=82 second=84 amount=-3 +kerning first=1070 second=1024 amount=-1 +kerning first=352 second=304 amount=-3 +kerning first=284 second=330 amount=-1 +kerning first=379 second=194 amount=-1 +kerning first=87 second=201 amount=-1 +kerning first=221 second=220 amount=-1 +kerning first=201 second=317 amount=-2 +kerning first=280 second=304 amount=-2 +kerning first=264 second=207 amount=-3 +kerning first=323 second=291 amount=-3 +kerning first=1118 second=1101 amount=-1 +kerning first=219 second=324 amount=-2 +kerning first=79 second=381 amount=-2 +kerning first=1071 second=1081 amount=-1 +kerning first=75 second=97 amount=-1 +kerning first=336 second=200 amount=-2 +kerning first=8250 second=110 amount=-2 +kerning first=287 second=291 amount=-2 +kerning first=350 second=234 amount=-1 +kerning first=240 second=107 amount=-1 +kerning first=251 second=291 amount=-3 +kerning first=291 second=324 amount=-1 +kerning first=260 second=213 amount=-3 +kerning first=264 second=200 amount=-3 +kerning first=221 second=213 amount=-3 +kerning first=255 second=324 amount=-2 +kerning first=220 second=381 amount=-1 +kerning first=118 second=233 amount=-3 +kerning first=262 second=311 amount=-1 +kerning first=252 second=97 amount=-1 +kerning first=226 second=311 amount=-1 +kerning first=110 second=291 amount=-2 +kerning first=288 second=97 amount=-1 +kerning first=74 second=291 amount=-3 +kerning first=107 second=337 amount=-3 +kerning first=1089 second=1088 amount=-1 +kerning first=356 second=71 amount=-3 +kerning first=121 second=311 amount=-2 +kerning first=1082 second=1101 amount=-1 +kerning first=364 second=381 amount=-1 +kerning first=1039 second=1114 amount=-1 +kerning first=216 second=97 amount=-1 +kerning first=263 second=226 amount=-2 +kerning first=369 second=243 amount=-1 +kerning first=227 second=375 amount=-3 +kerning first=87 second=203 amount=-1 +kerning first=73 second=228 amount=-2 +kerning first=228 second=8220 amount=-3 +kerning first=217 second=193 amount=-4 +kerning first=236 second=253 amount=-3 +kerning first=122 second=375 amount=-2 +kerning first=79 second=120 amount=-1 +kerning first=1086 second=1114 amount=-1 +kerning first=86 second=375 amount=-3 +kerning first=203 second=218 amount=-2 +kerning first=115 second=120 amount=-3 +kerning first=225 second=243 amount=-1 +kerning first=71 second=70 amount=-1 +kerning first=371 second=375 amount=-2 +kerning first=261 second=243 amount=-1 +kerning first=1089 second=1085 amount=-1 +kerning first=344 second=253 amount=-3 +kerning first=335 second=375 amount=-3 +kerning first=353 second=103 amount=-3 +kerning first=1053 second=1085 amount=-1 +kerning first=380 second=253 amount=-2 +kerning first=317 second=103 amount=-3 +kerning first=1031 second=1060 amount=-1 +kerning first=263 second=375 amount=-2 +kerning first=326 second=249 amount=-1 +kerning first=281 second=103 amount=-3 +kerning first=1067 second=1060 amount=-1 +kerning first=208 second=310 amount=-2 +kerning first=70 second=268 amount=-1 +kerning first=268 second=245 amount=-2 +kerning first=328 second=120 amount=-1 +kerning first=284 second=70 amount=-1 +kerning first=364 second=120 amount=-2 +kerning first=1082 second=1095 amount=-1 +kerning first=336 second=203 amount=-2 +kerning first=1046 second=1095 amount=-3 +kerning first=67 second=310 amount=-3 +kerning first=212 second=70 amount=-2 +kerning first=356 second=68 amount=-1 +kerning first=187 second=78 amount=-5 +kerning first=352 second=310 amount=-3 +kerning first=1064 second=1100 amount=-1 +kerning first=264 second=203 amount=-3 +kerning first=364 second=118 amount=-2 +kerning first=223 second=345 amount=-1 +kerning first=1100 second=1100 amount=-1 +kerning first=194 second=286 amount=-3 +kerning first=328 second=118 amount=-3 +kerning first=220 second=120 amount=-2 +kerning first=280 second=310 amount=-2 +kerning first=356 second=70 amount=-1 +kerning first=80 second=196 amount=-4 +kerning first=1056 second=1043 amount=-1 +kerning first=336 second=201 amount=-2 +kerning first=371 second=105 amount=-1 +kerning first=220 second=118 amount=-2 +kerning first=102 second=245 amount=-1 +kerning first=371 second=108 amount=-2 +kerning first=8250 second=112 amount=-2 +kerning first=121 second=305 amount=-2 +kerning first=66 second=245 amount=-1 +kerning first=85 second=305 amount=-2 +kerning first=335 second=105 amount=-1 +kerning first=199 second=304 amount=-3 +kerning first=256 second=118 amount=-3 +kerning first=204 second=283 amount=-2 +kerning first=226 second=305 amount=-1 +kerning first=227 second=105 amount=-1 +kerning first=45 second=379 amount=-4 +kerning first=374 second=335 amount=-3 +kerning first=1058 second=1117 amount=-2 +kerning first=263 second=105 amount=-2 +kerning first=279 second=245 amount=-1 +kerning first=351 second=241 amount=-2 +kerning first=99 second=283 amount=-1 +kerning first=298 second=305 amount=-1 +kerning first=122 second=105 amount=-1 +kerning first=115 second=118 amount=-3 +kerning first=1107 second=1083 amount=-3 +kerning first=262 second=305 amount=-1 +kerning first=356 second=65 amount=-6 +kerning first=207 second=245 amount=-2 +kerning first=89 second=334 amount=-3 +kerning first=370 second=305 amount=-2 +kerning first=262 second=86 amount=-1 +kerning first=230 second=335 amount=-1 +kerning first=243 second=241 amount=-1 +kerning first=334 second=305 amount=-1 +kerning first=86 second=105 amount=-2 +kerning first=255 second=318 amount=-2 +kerning first=376 second=231 amount=-3 +kerning first=325 second=244 amount=-2 +kerning first=291 second=318 amount=-3 +kerning first=315 second=241 amount=-1 +kerning first=1024 second=1070 amount=-1 +kerning first=122 second=108 amount=-2 +kerning first=279 second=241 amount=-2 +kerning first=286 second=228 amount=-1 +kerning first=263 second=108 amount=-3 +kerning first=363 second=318 amount=-2 +kerning first=66 second=241 amount=-3 +kerning first=250 second=228 amount=-1 +kerning first=227 second=108 amount=-1 +kerning first=89 second=335 amount=-3 +kerning first=214 second=228 amount=-1 +kerning first=335 second=108 amount=-2 +kerning first=76 second=193 amount=-2 +kerning first=194 second=335 amount=-1 +kerning first=102 second=241 amount=-1 +kerning first=118 second=347 amount=-3 +kerning first=82 second=347 amount=-2 +kerning first=266 second=66 amount=-3 +kerning first=1042 second=1058 amount=-1 +kerning first=354 second=205 amount=-1 +kerning first=304 second=231 amount=-2 +kerning first=376 second=230 amount=-5 +kerning first=362 second=256 amount=-4 +kerning first=8250 second=379 amount=-4 +kerning first=362 second=380 amount=-3 +kerning first=99 second=281 amount=-1 +kerning first=1038 second=1047 amount=-3 +kerning first=362 second=255 amount=-1 +kerning first=232 second=231 amount=-1 +kerning first=374 second=66 amount=-1 +kerning first=304 second=230 amount=-2 +kerning first=89 second=332 amount=-3 +kerning first=290 second=256 amount=-3 +kerning first=326 second=255 amount=-2 +kerning first=268 second=231 amount=-2 +kerning first=103 second=307 amount=-2 +kerning first=338 second=66 amount=-2 +kerning first=210 second=205 amount=-2 +kerning first=221 second=216 amount=-3 +kerning first=1082 second=1098 amount=-1 +kerning first=194 second=332 amount=-3 +kerning first=263 second=371 amount=-2 +kerning first=254 second=255 amount=-3 +kerning first=8217 second=74 amount=-3 +kerning first=1046 second=1098 amount=-3 +kerning first=218 second=255 amount=-1 +kerning first=367 second=347 amount=-2 +kerning first=336 second=45 amount=-1 +kerning first=266 second=332 amount=-3 +kerning first=335 second=371 amount=-1 +kerning first=380 second=102 amount=-2 +kerning first=331 second=347 amount=-1 +kerning first=371 second=371 amount=-1 +kerning first=241 second=112 amount=-1 +kerning first=113 second=255 amount=-1 +kerning first=295 second=347 amount=-1 +kerning first=317 second=107 amount=-2 +kerning first=338 second=332 amount=-1 +kerning first=77 second=255 amount=-2 +kerning first=381 second=346 amount=-1 +kerning first=281 second=107 amount=-2 +kerning first=1052 second=1094 amount=-1 +kerning first=302 second=332 amount=-2 +kerning first=122 second=371 amount=-2 +kerning first=66 second=242 amount=-1 +kerning first=223 second=347 amount=-2 +kerning first=69 second=205 amount=-2 +kerning first=187 second=347 amount=-1 +kerning first=353 second=107 amount=-1 +kerning first=374 second=332 amount=-3 +kerning first=227 second=371 amount=-1 +kerning first=71 second=68 amount=-1 +kerning first=66 second=249 amount=-3 +kerning first=264 second=204 amount=-3 +kerning first=367 second=345 amount=-1 +kerning first=203 second=217 amount=-2 +kerning first=1027 second=1033 amount=-5 +kerning first=250 second=229 amount=-1 +kerning first=8216 second=277 amount=-3 +kerning first=336 second=204 amount=-2 +kerning first=207 second=242 amount=-2 +kerning first=286 second=229 amount=-1 +kerning first=356 second=67 amount=-3 +kerning first=104 second=106 amount=-2 +kerning first=82 second=81 amount=-3 +kerning first=279 second=242 amount=-1 +kerning first=252 second=289 amount=-3 +kerning first=284 second=68 amount=-1 +kerning first=222 second=282 amount=-2 +kerning first=68 second=106 amount=-1 +kerning first=212 second=68 amount=-2 +kerning first=281 second=106 amount=-2 +kerning first=232 second=230 amount=-2 +kerning first=81 second=282 amount=-2 +kerning first=84 second=243 amount=-3 +kerning first=205 second=346 amount=-2 +kerning first=317 second=106 amount=-2 +kerning first=268 second=230 amount=-2 +kerning first=97 second=119 amount=-3 +kerning first=45 second=282 amount=-5 +kerning first=120 second=243 amount=-2 +kerning first=244 second=307 amount=-1 +kerning first=245 second=106 amount=-2 +kerning first=202 second=119 amount=-1 +kerning first=316 second=307 amount=-1 +kerning first=109 second=8217 amount=-4 +kerning first=87 second=204 amount=-1 +kerning first=223 second=287 amount=-2 +kerning first=274 second=119 amount=-1 +kerning first=313 second=346 amount=-1 +kerning first=353 second=106 amount=-1 +kerning first=310 second=119 amount=-3 +kerning first=1039 second=1047 amount=-1 +kerning first=346 second=119 amount=-3 +kerning first=90 second=361 amount=-3 +kerning first=103 second=230 amount=-3 +kerning first=213 second=327 amount=-2 +kerning first=233 second=275 amount=-1 +kerning first=89 second=353 amount=-3 +kerning first=310 second=199 amount=-3 +kerning first=378 second=249 amount=-2 +kerning first=269 second=275 amount=-1 +kerning first=67 second=230 amount=-2 +kerning first=321 second=327 amount=-2 +kerning first=307 second=223 amount=-1 +kerning first=1107 second=1072 amount=-1 +kerning first=197 second=275 amount=-1 +kerning first=248 second=229 amount=-1 +kerning first=84 second=45 amount=-5 +kerning first=8250 second=302 amount=-5 +kerning first=72 second=81 amount=-2 +kerning first=321 second=67 amount=-1 +kerning first=310 second=111 amount=-2 +kerning first=84 second=256 amount=-6 +kerning first=199 second=223 amount=-1 +kerning first=368 second=268 amount=-1 +kerning first=218 second=211 amount=-1 +kerning first=374 second=339 amount=-3 +kerning first=77 second=211 amount=-2 +kerning first=352 second=230 amount=-2 +kerning first=235 second=223 amount=-1 +kerning first=86 second=264 amount=-3 +kerning first=88 second=87 amount=-2 +kerning first=280 second=230 amount=-1 +kerning first=8250 second=368 amount=-4 +kerning first=296 second=268 amount=-2 +kerning first=198 second=249 amount=-2 +kerning first=377 second=275 amount=-1 +kerning first=208 second=230 amount=-1 +kerning first=260 second=268 amount=-3 +kerning first=234 second=249 amount=-2 +kerning first=244 second=230 amount=-1 +kerning first=68 second=204 amount=-2 +kerning first=86 second=209 amount=-1 +kerning first=233 second=289 amount=-3 +kerning first=379 second=237 amount=-1 +kerning first=68 second=218 amount=-1 +kerning first=269 second=289 amount=-3 +kerning first=194 second=339 amount=-1 +kerning first=119 second=380 amount=-3 +kerning first=67 second=244 amount=-2 +kerning first=378 second=263 amount=-1 +kerning first=214 second=315 amount=-2 +kerning first=307 second=237 amount=-1 +kerning first=1053 second=1081 amount=-1 +kerning first=1025 second=1091 amount=-1 +kerning first=103 second=244 amount=-2 +kerning first=213 second=313 amount=-2 +kerning first=89 second=339 amount=-3 +kerning first=1061 second=1091 amount=-2 +kerning first=68 second=259 amount=-1 +kerning first=377 second=289 amount=-3 +kerning first=235 second=237 amount=-2 +kerning first=1101 second=1088 amount=-1 +kerning first=199 second=237 amount=-1 +kerning first=234 second=263 amount=-1 +kerning first=230 second=339 amount=-1 +kerning first=78 second=199 amount=-2 +kerning first=332 second=282 amount=-2 +kerning first=1052 second=1084 amount=-1 +kerning first=266 second=339 amount=-2 +kerning first=316 second=244 amount=-1 +kerning first=338 second=353 amount=-1 +kerning first=337 second=365 amount=-1 +kerning first=374 second=353 amount=-3 +kerning first=83 second=296 amount=-3 +kerning first=350 second=361 amount=-1 +kerning first=102 second=8249 amount=-3 +kerning first=77 second=225 amount=-2 +kerning first=204 second=334 amount=-2 +kerning first=113 second=225 amount=-2 +kerning first=377 second=249 amount=-3 +kerning first=1097 second=1105 amount=-1 +kerning first=1069 second=1065 amount=-1 +kerning first=229 second=365 amount=-1 +kerning first=1052 second=1098 amount=-1 +kerning first=194 second=353 amount=-2 +kerning first=83 second=282 amount=-3 +kerning first=193 second=365 amount=-3 +kerning first=240 second=8221 amount=-2 +kerning first=230 second=353 amount=-2 +kerning first=203 second=346 amount=-2 +kerning first=266 second=353 amount=-2 +kerning first=88 second=365 amount=-3 +kerning first=1062 second=1079 amount=-1 +kerning first=197 second=289 amount=-3 +kerning first=302 second=353 amount=-2 +kerning first=332 second=296 amount=-2 +kerning first=352 second=202 amount=-3 +kerning first=335 second=305 amount=-1 +kerning first=193 second=351 amount=-2 +kerning first=307 second=251 amount=-1 +kerning first=203 second=374 amount=-1 +kerning first=266 second=121 amount=-1 +kerning first=224 second=254 amount=-1 +kerning first=45 second=105 amount=-1 +kerning first=230 second=121 amount=-2 +kerning first=280 second=202 amount=-2 +kerning first=260 second=254 amount=-2 +kerning first=210 second=206 amount=-2 +kerning first=194 second=121 amount=-3 +kerning first=234 second=277 amount=-1 +kerning first=229 second=351 amount=-1 +kerning first=282 second=206 amount=-2 +kerning first=89 second=121 amount=-3 +kerning first=1072 second=1074 amount=-1 +kerning first=194 second=79 amount=-3 +kerning first=83 second=254 amount=-2 +kerning first=338 second=367 amount=-2 +kerning first=354 second=206 amount=-1 +kerning first=1042 second=1103 amount=-2 +kerning first=89 second=381 amount=-3 +kerning first=119 second=254 amount=-1 +kerning first=286 second=69 amount=-1 +kerning first=374 second=367 amount=-2 +kerning first=89 second=79 amount=-3 +kerning first=266 second=367 amount=-2 +kerning first=302 second=79 amount=-2 +kerning first=352 second=244 amount=-1 +kerning first=228 second=117 amount=-1 +kerning first=274 second=344 amount=-2 +kerning first=214 second=69 amount=-2 +kerning first=302 second=367 amount=-2 +kerning first=338 second=79 amount=-1 +kerning first=219 second=199 amount=-1 +kerning first=1051 second=1096 amount=-1 +kerning first=347 second=114 amount=-1 +kerning first=192 second=117 amount=-3 +kerning first=194 second=367 amount=-3 +kerning first=209 second=234 amount=-2 +kerning first=8220 second=99 amount=-3 +kerning first=346 second=344 amount=-3 +kerning first=84 second=284 amount=-3 +kerning first=233 second=261 amount=-2 +kerning first=230 second=367 amount=-2 +kerning first=266 second=79 amount=-3 +kerning first=82 second=336 amount=-3 +kerning first=275 second=114 amount=-1 +kerning first=264 second=117 amount=-2 +kerning first=203 second=72 amount=-2 +kerning first=214 second=83 amount=-1 +kerning first=268 second=255 amount=-1 +kerning first=89 second=367 amount=-2 +kerning first=327 second=199 amount=-2 +kerning first=338 second=381 amount=-1 +kerning first=336 second=192 amount=-4 +kerning first=374 second=121 amount=-3 +kerning first=286 second=83 amount=-2 +kerning first=187 second=76 amount=-5 +kerning first=204 second=121 amount=-2 +kerning first=374 second=79 amount=-3 +kerning first=1063 second=1081 amount=-1 +kerning first=202 second=344 amount=-2 +kerning first=1025 second=1119 amount=-1 +kerning first=364 second=71 amount=-1 +kerning first=264 second=192 amount=-3 +kerning first=1027 second=1081 amount=-2 +kerning first=98 second=114 amount=-1 +kerning first=302 second=121 amount=-2 +kerning first=1078 second=1089 amount=-2 +kerning first=1072 second=1088 amount=-1 +kerning first=296 second=240 amount=-2 +kerning first=1108 second=1088 amount=-1 +kerning first=338 second=107 amount=-1 +kerning first=78 second=171 amount=-4 +kerning first=229 second=337 amount=-1 +kerning first=280 second=216 amount=-1 +kerning first=114 second=171 amount=-1 +kerning first=193 second=337 amount=-1 +kerning first=224 second=240 amount=-1 +kerning first=203 second=86 amount=-1 +kerning first=8220 second=113 amount=-3 +kerning first=260 second=240 amount=-1 +kerning first=269 second=261 amount=-2 +kerning first=230 second=107 amount=-2 +kerning first=326 second=382 amount=-1 +kerning first=67 second=216 amount=-3 +kerning first=305 second=261 amount=-1 +kerning first=194 second=107 amount=-2 +kerning first=362 second=382 amount=-3 +kerning first=321 second=287 amount=-3 +kerning first=368 second=240 amount=-2 +kerning first=377 second=261 amount=-1 +kerning first=266 second=107 amount=-1 +kerning first=252 second=109 amount=-1 +kerning first=1027 second=1095 amount=-3 +kerning first=363 second=171 amount=-2 +kerning first=67 second=202 amount=-3 +kerning first=346 second=330 amount=-3 +kerning first=8250 second=274 amount=-5 +kerning first=199 second=209 amount=-3 +kerning first=274 second=330 amount=-2 +kerning first=208 second=202 amount=-2 +kerning first=219 second=171 amount=-5 +kerning first=275 second=100 amount=-1 +kerning first=119 second=240 amount=-3 +kerning first=255 second=171 amount=-4 +kerning first=1024 second=1117 amount=-1 +kerning first=379 second=209 amount=-1 +kerning first=291 second=171 amount=-3 +kerning first=1048 second=1075 amount=-1 +kerning first=327 second=171 amount=-4 +kerning first=83 second=240 amount=-1 +kerning first=1067 second=1099 amount=-1 +kerning first=295 second=252 amount=-1 +kerning first=69 second=206 amount=-2 +kerning first=255 second=227 amount=-3 +kerning first=1073 second=1076 amount=-1 +kerning first=205 second=350 amount=-2 +kerning first=331 second=252 amount=-1 +kerning first=219 second=227 amount=-3 +kerning first=353 second=8221 amount=-2 +kerning first=198 second=207 amount=-2 +kerning first=367 second=252 amount=-1 +kerning first=114 second=227 amount=-1 +kerning first=118 second=252 amount=-1 +kerning first=187 second=252 amount=-1 +kerning first=363 second=227 amount=-1 +kerning first=216 second=44 amount=-3 +kerning first=223 second=252 amount=-1 +kerning first=234 second=305 amount=-2 +kerning first=1051 second=1082 amount=-1 +kerning first=327 second=227 amount=-2 +kerning first=281 second=246 amount=-1 +kerning first=100 second=103 amount=-2 +kerning first=259 second=252 amount=-1 +kerning first=198 second=305 amount=-1 +kerning first=291 second=227 amount=-3 +kerning first=1039 second=1082 amount=-1 +kerning first=336 second=103 amount=-1 +kerning first=378 second=291 amount=-2 +kerning first=83 second=226 amount=-2 +kerning first=249 second=271 amount=-1 +kerning first=313 second=90 amount=-3 +kerning first=379 second=251 amount=-3 +kerning first=119 second=226 amount=-3 +kerning first=68 second=260 amount=-4 +kerning first=210 second=74 amount=-2 +kerning first=378 second=378 amount=-2 +kerning first=201 second=241 amount=-1 +kerning first=264 second=103 amount=-3 +kerning first=224 second=226 amount=-1 +kerning first=198 second=45 amount=-2 +kerning first=8250 second=344 amount=-5 +kerning first=78 second=227 amount=-2 +kerning first=192 second=103 amount=-3 +kerning first=234 second=291 amount=-3 +kerning first=88 second=337 amount=-2 +kerning first=198 second=291 amount=-3 +kerning first=296 second=226 amount=-2 +kerning first=270 second=45 amount=-1 +kerning first=87 second=103 amount=-4 +kerning first=332 second=226 amount=-1 +kerning first=378 second=45 amount=-3 +kerning first=113 second=382 amount=-2 +kerning first=235 second=230 amount=-2 +kerning first=368 second=226 amount=-3 +kerning first=317 second=260 amount=-2 +kerning first=307 second=324 amount=-2 +kerning first=346 second=84 amount=-3 +kerning first=327 second=213 amount=-2 +kerning first=249 second=109 amount=-1 +kerning first=310 second=84 amount=-2 +kerning first=274 second=84 amount=-1 +kerning first=192 second=89 amount=-6 +kerning first=321 second=109 amount=-1 +kerning first=105 second=271 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=209 second=115 amount=-2 +kerning first=368 second=212 amount=-1 +kerning first=245 second=115 amount=-2 +kerning first=260 second=212 amount=-3 +kerning first=104 second=115 amount=-1 +kerning first=208 second=196 amount=-4 +kerning first=296 second=212 amount=-2 +kerning first=275 second=44 amount=-3 +kerning first=353 second=115 amount=-3 +kerning first=332 second=84 amount=-2 +kerning first=332 second=78 amount=-2 +kerning first=281 second=232 amount=-1 +kerning first=100 second=104 amount=-1 +kerning first=1092 second=1076 amount=-2 +kerning first=347 second=44 amount=-2 +kerning first=323 second=303 amount=-1 +kerning first=281 second=115 amount=-2 +kerning first=78 second=213 amount=-2 +kerning first=311 second=44 amount=-1 +kerning first=317 second=115 amount=-1 +kerning first=8216 second=74 amount=-3 +kerning first=73 second=303 amount=-1 +kerning first=98 second=44 amount=-3 +kerning first=346 second=70 amount=-3 +kerning first=264 second=89 amount=-1 +kerning first=313 second=104 amount=-2 +kerning first=1052 second=1079 amount=-1 +kerning first=277 second=104 amount=-2 +kerning first=192 second=267 amount=-1 +kerning first=203 second=44 amount=-1 +kerning first=274 second=70 amount=-2 +kerning first=370 second=277 amount=-2 +kerning first=243 second=369 amount=-1 +kerning first=83 second=78 amount=-3 +kerning first=378 second=277 amount=-1 +kerning first=209 second=232 amount=-2 +kerning first=219 second=213 amount=-1 +kerning first=74 second=303 amount=-2 +kerning first=8218 second=355 amount=-2 +kerning first=284 second=325 amount=-1 +kerning first=110 second=303 amount=-1 +kerning first=202 second=98 amount=-1 +kerning first=286 second=98 amount=-1 +kerning first=310 second=98 amount=-1 +kerning first=315 second=8249 amount=-1 +kerning first=87 second=75 amount=-1 +kerning first=368 second=237 amount=-2 +kerning first=356 second=325 amount=-1 +kerning first=187 second=280 amount=-5 +kerning first=274 second=98 amount=-1 +kerning first=351 second=8249 amount=-1 +kerning first=107 second=283 amount=-3 +kerning first=251 second=303 amount=-2 +kerning first=277 second=118 amount=-2 +kerning first=289 second=120 amount=-2 +kerning first=374 second=196 amount=-6 +kerning first=336 second=75 amount=-2 +kerning first=287 second=303 amount=-2 +kerning first=1045 second=1025 amount=-1 +kerning first=241 second=118 amount=-3 +kerning first=255 second=328 amount=-2 +kerning first=8250 second=330 amount=-5 +kerning first=219 second=328 amount=-2 +kerning first=331 second=120 amount=-1 +kerning first=198 second=73 amount=-2 +kerning first=264 second=75 amount=-3 +kerning first=97 second=98 amount=-1 +kerning first=313 second=118 amount=-3 +kerning first=266 second=196 amount=-3 +kerning first=100 second=118 amount=-2 +kerning first=1098 second=1093 amount=-2 +kerning first=208 second=287 amount=-1 +kerning first=272 second=80 amount=-2 +kerning first=272 second=204 amount=-2 +kerning first=381 second=291 amount=-3 +kerning first=338 second=196 amount=-2 +kerning first=1098 second=1107 amount=-1 +kerning first=205 second=118 amount=-2 +kerning first=363 second=328 amount=-1 +kerning first=317 second=218 amount=-3 +kerning first=1037 second=1104 amount=-1 +kerning first=382 second=98 amount=-1 +kerning first=291 second=241 amount=-1 +kerning first=204 second=338 amount=-2 +kerning first=346 second=98 amount=-2 +kerning first=255 second=241 amount=-2 +kerning first=356 second=283 amount=-3 +kerning first=363 second=241 amount=-1 +kerning first=212 second=325 amount=-2 +kerning first=1037 second=1090 amount=-1 +kerning first=8218 second=369 amount=-1 +kerning first=280 second=286 amount=-1 +kerning first=82 second=266 amount=-3 +kerning first=1113 second=1087 amount=-1 +kerning first=219 second=241 amount=-2 +kerning first=284 second=311 amount=-1 +kerning first=374 second=210 amount=-3 +kerning first=248 second=311 amount=-1 +kerning first=102 second=8221 amount=3 +kerning first=226 second=314 amount=-1 +kerning first=302 second=210 amount=-2 +kerning first=287 second=331 amount=-1 +kerning first=89 second=304 amount=-1 +kerning first=288 second=171 amount=-3 +kerning first=266 second=210 amount=-3 +kerning first=83 second=353 amount=-1 +kerning first=66 second=8221 amount=-4 +kerning first=1102 second=1118 amount=-1 +kerning first=74 second=345 amount=-1 +kerning first=363 second=255 amount=-3 +kerning first=234 second=235 amount=-1 +kerning first=279 second=8221 amount=-2 +kerning first=194 second=210 amount=-3 +kerning first=251 second=331 amount=-1 +kerning first=327 second=255 amount=-2 +kerning first=258 second=334 amount=-3 +kerning first=315 second=8221 amount=-4 +kerning first=219 second=269 amount=-2 +kerning first=382 second=112 amount=-3 +kerning first=110 second=331 amount=-1 +kerning first=291 second=255 amount=-1 +kerning first=89 second=210 amount=-3 +kerning first=346 second=112 amount=-3 +kerning first=82 second=252 amount=-2 +kerning first=89 second=224 amount=-4 +kerning first=97 second=99 amount=-1 +kerning first=243 second=8221 amount=-2 +kerning first=291 second=269 amount=-2 +kerning first=310 second=112 amount=-1 +kerning first=251 second=345 amount=-1 +kerning first=321 second=81 amount=-1 +kerning first=219 second=255 amount=-1 +kerning first=230 second=224 amount=-2 +kerning first=378 second=235 amount=-1 +kerning first=208 second=378 amount=-2 +kerning first=274 second=112 amount=-2 +kerning first=72 second=67 amount=-2 +kerning first=287 second=345 amount=-1 +kerning first=198 second=221 amount=-1 +kerning first=1077 second=1087 amount=-1 +kerning first=363 second=269 amount=-1 +kerning first=302 second=224 amount=-2 +kerning first=351 second=8221 amount=-2 +kerning first=202 second=112 amount=-2 +kerning first=78 second=255 amount=-2 +kerning first=266 second=224 amount=-2 +kerning first=374 second=224 amount=-4 +kerning first=88 second=281 amount=-2 +kerning first=284 second=256 amount=-3 +kerning first=217 second=352 amount=-3 +kerning first=371 second=279 amount=-3 +kerning first=326 second=326 amount=-1 +kerning first=338 second=224 amount=-1 +kerning first=68 second=302 amount=-2 +kerning first=118 second=380 amount=-3 +kerning first=75 second=101 amount=-2 +kerning first=362 second=326 amount=-2 +kerning first=234 second=347 amount=-2 +kerning first=193 second=281 amount=-1 +kerning first=337 second=250 amount=-1 +kerning first=198 second=347 amount=-1 +kerning first=229 second=281 amount=-1 +kerning first=67 second=259 amount=-2 +kerning first=113 second=326 amount=-2 +kerning first=121 second=328 amount=-2 +kerning first=279 second=371 amount=-2 +kerning first=88 second=250 amount=-3 +kerning first=221 second=231 amount=-3 +kerning first=76 second=250 amount=-2 +kerning first=325 second=352 amount=-2 +kerning first=252 second=101 amount=-1 +kerning first=228 second=307 amount=-1 +kerning first=218 second=326 amount=-2 +kerning first=80 second=231 amount=-1 +kerning first=351 second=371 amount=-1 +kerning first=193 second=250 amount=-3 +kerning first=254 second=326 amount=-1 +kerning first=227 second=333 amount=-1 +kerning first=260 second=366 amount=-3 +kerning first=1073 second=1118 amount=-2 +kerning first=102 second=371 amount=-1 +kerning first=220 second=257 amount=-3 +kerning first=78 second=283 amount=-2 +kerning first=262 second=328 amount=-1 +kerning first=1031 second=1047 amount=-1 +kerning first=228 second=351 amount=-1 +kerning first=226 second=328 amount=-1 +kerning first=1067 second=1047 amount=-1 +kerning first=115 second=257 amount=-1 +kerning first=263 second=333 amount=-1 +kerning first=317 second=302 amount=-2 +kerning first=243 second=371 amount=-1 +kerning first=291 second=283 amount=-2 +kerning first=234 second=378 amount=-2 +kerning first=97 second=369 amount=-1 +kerning first=230 second=8220 amount=-2 +kerning first=255 second=283 amount=-3 +kerning first=198 second=378 amount=-2 +kerning first=1038 second=1092 amount=-4 +kerning first=1048 second=1073 amount=-1 +kerning first=79 second=257 amount=-1 +kerning first=122 second=333 amount=-1 +kerning first=194 second=8220 amount=-5 +kerning first=219 second=283 amount=-2 +kerning first=378 second=347 amount=-2 +kerning first=370 second=328 amount=-2 +kerning first=86 second=333 amount=-3 +kerning first=76 second=352 amount=-1 +kerning first=268 second=217 amount=-2 +kerning first=1102 second=1090 amount=-1 +kerning first=103 second=113 amount=-2 +kerning first=310 second=288 amount=-3 +kerning first=67 second=113 amount=-2 +kerning first=249 second=243 amount=-1 +kerning first=367 second=235 amount=-1 +kerning first=332 second=106 amount=-1 +kerning first=105 second=269 amount=-1 +kerning first=83 second=198 amount=-4 +kerning first=376 second=217 amount=-1 +kerning first=85 second=45 amount=-5 +kerning first=202 second=288 amount=-1 +kerning first=83 second=366 amount=-3 +kerning first=67 second=345 amount=-1 +kerning first=1118 second=1093 amount=-1 +kerning first=103 second=345 amount=-1 +kerning first=113 second=245 amount=-1 +kerning first=274 second=288 amount=-1 +kerning first=72 second=243 amount=-2 +kerning first=1030 second=1090 amount=-1 +kerning first=108 second=243 amount=-1 +kerning first=244 second=345 amount=-1 +kerning first=112 second=120 amount=-3 +kerning first=332 second=198 amount=-4 +kerning first=368 second=198 amount=-4 +kerning first=203 second=262 amount=-1 +kerning first=217 second=120 amount=-2 +kerning first=352 second=345 amount=-2 +kerning first=201 second=79 amount=-1 +kerning first=356 second=255 amount=-3 +kerning first=84 second=368 amount=-1 +kerning first=253 second=120 amount=-1 +kerning first=8250 second=218 amount=-4 +kerning first=196 second=217 amount=-3 +kerning first=248 second=255 amount=-3 +kerning first=1057 second=1094 amount=-1 +kerning first=1047 second=1113 amount=-1 +kerning first=76 second=120 amount=-1 +kerning first=317 second=274 amount=-2 +kerning first=1051 second=1054 amount=-1 +kerning first=228 second=279 amount=-1 +kerning first=79 second=229 amount=-1 +kerning first=74 second=99 amount=-2 +kerning first=356 second=227 amount=-5 +kerning first=192 second=279 amount=-1 +kerning first=200 second=323 amount=-2 +kerning first=115 second=229 amount=-1 +kerning first=1048 second=1101 amount=-1 +kerning first=284 second=227 amount=-1 +kerning first=264 second=279 amount=-2 +kerning first=272 second=323 amount=-2 +kerning first=287 second=99 amount=-2 +kerning first=198 second=104 amount=-1 +kerning first=211 second=278 amount=-2 +kerning first=282 second=44 amount=-1 +kerning first=253 second=324 amount=-2 +kerning first=251 second=99 amount=-1 +kerning first=106 second=273 amount=-1 +kerning first=246 second=44 amount=-3 +kerning first=217 second=324 amount=-2 +kerning first=99 second=233 amount=-1 +kerning first=290 second=354 amount=-3 +kerning first=354 second=44 amount=-5 +kerning first=323 second=99 amount=-2 +kerning first=87 second=279 amount=-3 +kerning first=289 second=324 amount=-1 +kerning first=204 second=233 amount=-2 +kerning first=71 second=227 amount=-1 +kerning first=380 second=267 amount=-1 +kerning first=83 second=106 amount=-1 +kerning first=311 second=234 amount=-3 +kerning first=119 second=106 amount=-2 +kerning first=325 second=382 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=328 second=229 amount=-1 +kerning first=344 second=267 amount=-3 +kerning first=102 second=111 amount=-1 +kerning first=364 second=229 amount=-3 +kerning first=86 second=226 amount=-5 +kerning first=248 second=227 amount=-1 +kerning first=280 second=317 amount=-2 +kerning first=212 second=227 amount=-1 +kerning first=352 second=317 amount=-3 +kerning first=112 second=117 amount=-1 +kerning first=107 second=227 amount=-2 +kerning first=85 second=110 amount=-2 +kerning first=1049 second=1075 amount=-1 +kerning first=224 second=106 amount=-1 +kerning first=275 second=234 amount=-1 +kerning first=121 second=110 amount=-2 +kerning first=335 second=361 amount=-1 +kerning first=97 second=316 amount=-1 +kerning first=334 second=82 amount=-2 +kerning first=258 second=264 amount=-3 +kerning first=226 second=110 amount=-1 +kerning first=202 second=316 amount=-1 +kerning first=262 second=110 amount=-1 +kerning first=371 second=361 amount=-1 +kerning first=195 second=212 amount=-3 +kerning first=236 second=267 amount=-1 +kerning first=364 second=257 amount=-3 +kerning first=282 second=290 amount=-1 +kerning first=286 second=224 amount=-1 +kerning first=310 second=316 amount=-1 +kerning first=108 second=271 amount=-1 +kerning first=207 second=111 amount=-2 +kerning first=201 second=65 amount=-2 +kerning first=370 second=110 amount=-2 +kerning first=90 second=212 amount=-1 +kerning first=346 second=316 amount=-2 +kerning first=262 second=82 amount=-3 +kerning first=1058 second=1040 amount=-3 +kerning first=382 second=316 amount=-2 +kerning first=279 second=111 amount=-1 +kerning first=328 second=257 amount=-1 +kerning first=105 second=44 amount=-2 +kerning first=313 second=364 amount=-3 +kerning first=69 second=44 amount=-1 +kerning first=379 second=89 amount=-2 +kerning first=86 second=361 amount=-2 +kerning first=210 second=44 amount=-3 +kerning first=381 second=65 amount=-1 +kerning first=234 second=104 amount=-2 +kerning first=290 second=66 amount=-1 +kerning first=76 second=381 amount=-3 +kerning first=99 second=261 amount=-2 +kerning first=122 second=361 amount=-2 +kerning first=68 second=274 amount=-2 +kerning first=263 second=361 amount=-2 +kerning first=199 second=89 amount=-1 +kerning first=378 second=104 amount=-2 +kerning first=227 second=361 amount=-1 +kerning first=250 second=97 amount=-1 +kerning first=290 second=122 amount=-1 +kerning first=323 second=71 amount=-2 +kerning first=283 second=46 amount=-3 +kerning first=379 second=117 amount=-3 +kerning first=197 second=102 amount=-1 +kerning first=286 second=97 amount=-1 +kerning first=254 second=122 amount=-2 +kerning first=367 second=121 amount=-3 +kerning first=210 second=72 amount=-2 +kerning first=216 second=76 amount=-2 +kerning first=233 second=102 amount=-2 +kerning first=218 second=122 amount=-3 +kerning first=118 second=251 amount=-1 +kerning first=331 second=121 amount=-2 +kerning first=339 second=8250 amount=-2 +kerning first=269 second=102 amount=-2 +kerning first=214 second=97 amount=-1 +kerning first=295 second=121 amount=-2 +kerning first=187 second=278 amount=-5 +kerning first=282 second=72 amount=-2 +kerning first=355 second=225 amount=-1 +kerning first=106 second=46 amount=-2 +kerning first=259 second=121 amount=-3 +kerning first=8250 second=98 amount=-1 +kerning first=223 second=121 amount=-3 +kerning first=354 second=72 amount=-1 +kerning first=211 second=46 amount=-3 +kerning first=187 second=121 amount=-3 +kerning first=326 second=122 amount=-1 +kerning first=82 second=98 amount=-3 +kerning first=1050 second=1108 amount=-2 +kerning first=90 second=8250 amount=-1 +kerning first=210 second=325 amount=-2 +kerning first=199 second=377 amount=-2 +kerning first=375 second=240 amount=-3 +kerning first=250 second=245 amount=-1 +kerning first=66 second=200 amount=-4 +kerning first=305 second=105 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=69 second=332 amount=-1 +kerning first=316 second=243 amount=-1 +kerning first=113 second=122 amount=-2 +kerning first=235 second=117 amount=-2 +kerning first=69 second=72 amount=-2 +kerning first=315 second=200 amount=-2 +kerning first=77 second=122 amount=-1 +kerning first=199 second=117 amount=-2 +kerning first=87 second=363 amount=-2 +kerning first=116 second=287 amount=-2 +kerning first=282 second=332 amount=-1 +kerning first=379 second=377 amount=-1 +kerning first=80 second=287 amount=-3 +kerning first=330 second=264 amount=-2 +kerning first=288 second=76 amount=-1 +kerning first=221 second=287 amount=-4 +kerning first=310 second=366 amount=-2 +kerning first=221 second=339 amount=-3 +kerning first=332 second=310 amount=-2 +kerning first=195 second=240 amount=-1 +kerning first=365 second=259 amount=-1 +kerning first=66 second=255 amount=-3 +kerning first=90 second=240 amount=-1 +kerning first=257 second=287 amount=-2 +kerning first=73 second=214 amount=-2 +kerning first=303 second=240 amount=-3 +kerning first=257 second=259 amount=-1 +kerning first=196 second=242 amount=-1 +kerning first=339 second=240 amount=-1 +kerning first=221 second=259 amount=-5 +kerning first=232 second=100 amount=-1 +kerning first=231 second=240 amount=-1 +kerning first=1060 second=1053 amount=-1 +kerning first=268 second=242 amount=-2 +kerning first=84 second=197 amount=-6 +kerning first=267 second=240 amount=-1 +kerning first=69 second=220 amount=-2 +kerning first=232 second=242 amount=-1 +kerning first=278 second=369 amount=-2 +kerning first=80 second=259 amount=-1 +kerning first=379 second=253 amount=-3 +kerning first=76 second=324 amount=-1 +kerning first=242 second=369 amount=-1 +kerning first=354 second=304 amount=-1 +kerning first=304 second=242 amount=-2 +kerning first=350 second=369 amount=-1 +kerning first=74 second=71 amount=-2 +kerning first=324 second=375 amount=-2 +kerning first=210 second=220 amount=-1 +kerning first=314 second=369 amount=-2 +kerning first=116 second=259 amount=-1 +kerning first=240 second=116 amount=-1 +kerning first=282 second=304 amount=-2 +kerning first=376 second=242 amount=-3 +kerning first=112 second=324 amount=-1 +kerning first=118 second=289 amount=-3 +kerning first=73 second=97 amount=-2 +kerning first=101 second=369 amount=-2 +kerning first=1042 second=1030 amount=-2 +kerning first=109 second=97 amount=-1 +kerning first=65 second=369 amount=-3 +kerning first=210 second=304 amount=-2 +kerning first=200 second=119 amount=-1 +kerning first=206 second=369 amount=-2 +kerning first=86 second=211 amount=-3 +kerning first=354 second=220 amount=-1 +kerning first=317 second=330 amount=-2 +kerning first=236 second=119 amount=-3 +kerning first=1089 second=1100 amount=-1 +kerning first=70 second=74 amount=-4 +kerning first=102 second=107 amount=3 +kerning first=75 second=375 amount=-3 +kerning first=350 second=223 amount=-1 +kerning first=350 second=89 amount=-3 +kerning first=243 second=228 amount=-1 +kerning first=344 second=119 amount=-3 +kerning first=8220 second=230 amount=-3 +kerning first=207 second=228 amount=-2 +kerning first=211 second=74 amount=-2 +kerning first=380 second=119 amount=-2 +kerning first=203 second=203 amount=-2 +kerning first=1086 second=1080 amount=-1 +kerning first=223 second=307 amount=-1 +kerning first=252 second=375 amount=-3 +kerning first=68 second=330 amount=-2 +kerning first=250 second=273 amount=-1 +kerning first=122 second=331 amount=-2 +kerning first=66 second=228 amount=-3 +kerning first=278 second=223 amount=-1 +kerning first=111 second=375 amount=-3 +kerning first=242 second=223 amount=-1 +kerning first=1090 second=1105 amount=-1 +kerning first=249 second=355 amount=-1 +kerning first=195 second=268 amount=-3 +kerning first=304 second=103 amount=-3 +kerning first=84 second=80 amount=-1 +kerning first=101 second=223 amount=-1 +kerning first=352 second=113 amount=-1 +kerning first=108 second=355 amount=-1 +kerning first=290 second=298 amount=-1 +kerning first=331 second=46 amount=-1 +kerning first=1053 second=1079 amount=-1 +kerning first=1053 second=1100 amount=-1 +kerning first=83 second=310 amount=-3 +kerning first=90 second=268 amount=-1 +kerning first=283 second=253 amount=-2 +kerning first=71 second=8217 amount=-1 +kerning first=261 second=108 amount=-1 +kerning first=192 second=363 amount=-3 +kerning first=352 second=85 amount=-3 +kerning first=1046 second=1092 amount=-2 +kerning first=284 second=296 amount=-1 +kerning first=107 second=8217 amount=-2 +kerning first=225 second=108 amount=-1 +kerning first=228 second=363 amount=-1 +kerning first=333 second=108 amount=-2 +kerning first=264 second=363 amount=-2 +kerning first=332 second=303 amount=-1 +kerning first=280 second=85 amount=-2 +kerning first=98 second=318 amount=-2 +kerning first=8220 second=345 amount=-1 +kerning first=79 second=313 amount=-2 +kerning first=315 second=315 amount=-2 +kerning first=1025 second=1063 amount=-2 +kerning first=264 second=335 amount=-2 +kerning first=208 second=85 amount=-1 +kerning first=203 second=318 amount=-1 +kerning first=337 second=105 amount=-1 +kerning first=369 second=108 amount=-2 +kerning first=8250 second=70 amount=-5 +kerning first=66 second=315 amount=-4 +kerning first=1057 second=1038 amount=-1 +kerning first=73 second=245 amount=-2 +kerning first=275 second=318 amount=-3 +kerning first=1061 second=1063 amount=-4 +kerning first=203 second=290 amount=-1 +kerning first=211 second=225 amount=-1 +kerning first=87 second=335 amount=-3 +kerning first=347 second=318 amount=-2 +kerning first=193 second=105 amount=-1 +kerning first=253 second=380 amount=-3 +kerning first=1046 second=1083 amount=-2 +kerning first=365 second=231 amount=-1 +kerning first=105 second=248 amount=-1 +kerning first=229 second=105 amount=-1 +kerning first=289 second=380 amount=-3 +kerning first=283 second=225 amount=-2 +kerning first=192 second=335 amount=-1 +kerning first=347 second=228 amount=-1 +kerning first=257 second=231 amount=-1 +kerning first=325 second=380 amount=-1 +kerning first=1118 second=1083 amount=-3 +kerning first=228 second=335 amount=-1 +kerning first=1065 second=1060 amount=-1 +kerning first=368 second=338 amount=-1 +kerning first=248 second=8217 amount=-2 +kerning first=345 second=45 amount=-1 +kerning first=76 second=380 amount=-3 +kerning first=284 second=8217 amount=-1 +kerning first=70 second=225 amount=-2 +kerning first=296 second=338 amount=-2 +kerning first=112 second=380 amount=-2 +kerning first=106 second=225 amount=-2 +kerning first=260 second=338 amount=-3 +kerning first=351 second=228 amount=-1 +kerning first=120 second=108 amount=-1 +kerning first=290 second=270 amount=-1 +kerning first=217 second=380 amount=-3 +kerning first=1107 second=1103 amount=-2 +kerning first=243 second=367 amount=-1 +kerning first=375 second=98 amount=-1 +kerning first=225 second=225 amount=-1 +kerning first=216 second=280 amount=-2 +kerning first=339 second=98 amount=-2 +kerning first=261 second=225 amount=-1 +kerning first=101 second=251 amount=-2 +kerning first=1024 second=1100 amount=-1 +kerning first=86 second=235 amount=-3 +kerning first=344 second=228 amount=-2 +kerning first=242 second=251 amount=-1 +kerning first=288 second=280 amount=-1 +kerning first=122 second=235 amount=-1 +kerning first=333 second=225 amount=-1 +kerning first=206 second=251 amount=-2 +kerning first=8216 second=233 amount=-3 +kerning first=117 second=303 amount=-2 +kerning first=231 second=98 amount=-2 +kerning first=272 second=228 amount=-1 +kerning first=314 second=251 amount=-2 +kerning first=76 second=206 amount=-2 +kerning first=227 second=235 amount=-1 +kerning first=1105 second=1093 amount=-1 +kerning first=195 second=98 amount=-2 +kerning first=236 second=228 amount=-2 +kerning first=84 second=225 amount=-5 +kerning first=278 second=251 amount=-2 +kerning first=268 second=270 amount=-3 +kerning first=263 second=235 amount=-1 +kerning first=45 second=303 amount=-1 +kerning first=303 second=98 amount=-1 +kerning first=200 second=228 amount=-1 +kerning first=120 second=225 amount=-2 +kerning first=376 second=270 amount=-1 +kerning first=81 second=303 amount=-1 +kerning first=267 second=98 amount=-2 +kerning first=350 second=251 amount=-1 +kerning first=8217 second=255 amount=-1 +kerning first=284 second=370 amount=-1 +kerning first=279 second=273 amount=-1 +kerning first=305 second=46 amount=-2 +kerning first=356 second=370 amount=-1 +kerning first=216 second=218 amount=-1 +kerning first=283 second=102 amount=-2 +kerning first=321 second=289 amount=-3 +kerning first=377 second=46 amount=-1 +kerning first=256 second=355 amount=-1 +kerning first=102 second=273 amount=-1 +kerning first=369 second=225 amount=-1 +kerning first=313 second=325 amount=-2 +kerning first=1045 second=1070 amount=-1 +kerning first=106 second=102 amount=-2 +kerning first=1105 second=1107 amount=-1 +kerning first=65 second=253 amount=-3 +kerning first=233 second=46 amount=-3 +kerning first=115 second=355 amount=-2 +kerning first=275 second=303 amount=-2 +kerning first=303 second=112 amount=-1 +kerning first=221 second=83 amount=-3 +kerning first=364 second=81 amount=-1 +kerning first=365 second=363 amount=-1 +kerning first=267 second=112 amount=-1 +kerning first=65 second=67 amount=-3 +kerning first=232 second=318 amount=-3 +kerning first=231 second=112 amount=-1 +kerning first=268 second=318 amount=-1 +kerning first=295 second=8221 amount=-4 +kerning first=195 second=112 amount=-3 +kerning first=344 second=214 amount=-3 +kerning first=90 second=112 amount=-1 +kerning first=1024 second=1114 amount=-1 +kerning first=75 second=266 amount=-3 +kerning first=234 second=102 amount=-2 +kerning first=330 second=105 amount=-1 +kerning first=200 second=214 amount=-1 +kerning first=351 second=259 amount=-1 +kerning first=371 second=235 amount=-3 +kerning first=366 second=105 amount=-2 +kerning first=84 second=296 amount=-1 +kerning first=258 second=105 amount=-1 +kerning first=8250 second=370 amount=-4 +kerning first=203 second=117 amount=-2 +kerning first=220 second=81 amount=-1 +kerning first=278 second=67 amount=-1 +kerning first=207 second=259 amount=-2 +kerning first=222 second=105 amount=-1 +kerning first=251 second=267 amount=-1 +kerning first=196 second=233 amount=-1 +kerning first=375 second=112 amount=-2 +kerning first=8217 second=241 amount=-2 +kerning first=81 second=105 amount=-1 +kerning first=206 second=67 amount=-2 +kerning first=279 second=259 amount=-2 +kerning first=376 second=304 amount=-1 +kerning first=256 second=81 amount=-3 +kerning first=117 second=105 amount=-2 +kerning first=243 second=259 amount=-1 +kerning first=277 second=249 amount=-2 +kerning first=282 second=346 amount=-2 +kerning first=268 second=100 amount=-2 +kerning first=1059 second=1098 amount=-3 +kerning first=70 second=246 amount=-1 +kerning first=1104 second=1094 amount=-1 +kerning first=313 second=249 amount=-2 +kerning first=304 second=100 amount=-2 +kerning first=1045 second=1050 amount=-1 +kerning first=71 second=350 amount=-2 +kerning first=350 second=327 amount=-3 +kerning first=205 second=249 amount=-1 +kerning first=210 second=346 amount=-1 +kerning first=370 second=275 amount=-2 +kerning first=201 second=230 amount=-1 +kerning first=241 second=249 amount=-1 +kerning first=376 second=100 amount=-3 +kerning first=1055 second=1079 amount=-1 +kerning first=86 second=45 amount=-5 +kerning first=212 second=350 amount=-1 +kerning first=216 second=204 amount=-2 +kerning first=222 second=379 amount=-2 +kerning first=1043 second=1102 amount=-2 +kerning first=354 second=346 amount=-3 +kerning first=196 second=100 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=1079 second=1102 amount=-1 +kerning first=288 second=204 amount=-1 +kerning first=262 second=275 amount=-2 +kerning first=1070 second=1053 amount=-1 +kerning first=223 second=107 amount=-1 +kerning first=356 second=350 amount=-3 +kerning first=1104 second=1091 amount=-1 +kerning first=100 second=305 amount=-1 +kerning first=187 second=107 amount=-1 +kerning first=241 second=305 amount=-1 +kerning first=284 second=350 amount=-2 +kerning first=205 second=305 amount=-1 +kerning first=259 second=107 amount=-1 +kerning first=313 second=305 amount=-2 +kerning first=376 second=256 amount=-6 +kerning first=325 second=268 amount=-2 +kerning first=277 second=305 amount=-2 +kerning first=205 second=336 amount=-2 +kerning first=216 second=260 amount=-4 +kerning first=118 second=107 amount=-2 +kerning first=264 second=223 amount=-1 +kerning first=381 second=339 amount=-1 +kerning first=84 second=211 amount=-3 +kerning first=345 second=230 amount=-1 +kerning first=1070 second=1039 amount=-1 +kerning first=82 second=107 amount=-3 +kerning first=268 second=256 amount=-3 +kerning first=381 second=230 amount=-1 +kerning first=288 second=260 amount=-3 +kerning first=334 second=289 amount=-1 +kerning first=205 second=263 amount=-2 +kerning first=370 second=289 amount=-4 +kerning first=221 second=210 amount=-3 +kerning first=381 second=79 amount=-1 +kerning first=87 second=223 amount=-3 +kerning first=277 second=263 amount=-1 +kerning first=117 second=365 amount=-1 +kerning first=350 second=313 amount=-3 +kerning first=217 second=268 amount=-1 +kerning first=381 second=353 amount=-2 +kerning first=234 second=8217 amount=-2 +kerning first=221 second=192 amount=-6 +kerning first=45 second=365 amount=-1 +kerning first=336 second=237 amount=-1 +kerning first=75 second=218 amount=-2 +kerning first=278 second=313 amount=-2 +kerning first=270 second=8217 amount=-2 +kerning first=381 second=244 amount=-1 +kerning first=100 second=263 amount=-1 +kerning first=76 second=268 amount=-1 +kerning first=264 second=237 amount=-1 +kerning first=80 second=192 amount=-4 +kerning first=228 second=237 amount=-1 +kerning first=121 second=275 amount=-3 +kerning first=82 second=121 amount=-3 +kerning first=197 second=334 amount=-3 +kerning first=192 second=237 amount=-1 +kerning first=85 second=289 amount=-4 +kerning first=379 second=249 amount=-3 +kerning first=85 second=275 amount=-2 +kerning first=345 second=353 amount=-1 +kerning first=121 second=289 amount=-3 +kerning first=377 second=334 amount=-1 +kerning first=366 second=365 amount=-1 +kerning first=69 second=346 amount=-2 +kerning first=80 second=315 amount=-1 +kerning first=226 second=289 amount=-2 +kerning first=1050 second=1079 amount=-1 +kerning first=330 second=365 amount=-2 +kerning first=221 second=315 amount=-1 +kerning first=262 second=289 amount=-3 +kerning first=1087 second=1104 amount=-1 +kerning first=201 second=353 amount=-1 +kerning first=298 second=289 amount=-3 +kerning first=258 second=365 amount=-3 +kerning first=278 second=327 amount=-2 +kerning first=206 second=257 amount=-2 +kerning first=97 second=232 amount=-1 +kerning first=242 second=257 amount=-1 +kerning first=1069 second=1051 amount=-3 +kerning first=257 second=371 amount=-1 +kerning first=101 second=257 amount=-2 +kerning first=371 second=277 amount=-3 +kerning first=117 second=99 amount=-1 +kerning first=380 second=8249 amount=-3 +kerning first=364 second=347 amount=-2 +kerning first=187 second=381 amount=-4 +kerning first=263 second=277 amount=-1 +kerning first=227 second=277 amount=-1 +kerning first=90 second=302 amount=-1 +kerning first=324 second=251 amount=-1 +kerning first=116 second=371 amount=-1 +kerning first=344 second=8249 amount=-4 +kerning first=339 second=307 amount=-2 +kerning first=75 second=336 amount=-3 +kerning first=344 second=351 amount=-2 +kerning first=367 second=367 amount=-1 +kerning first=1044 second=1104 amount=-1 +kerning first=364 second=267 amount=-2 +kerning first=315 second=69 amount=-2 +kerning first=279 second=267 amount=-1 +kerning first=86 second=277 amount=-3 +kerning first=376 second=114 amount=-1 +kerning first=295 second=367 amount=-1 +kerning first=380 second=351 amount=-2 +kerning first=331 second=367 amount=-1 +kerning first=207 second=267 amount=-2 +kerning first=200 second=351 amount=-1 +kerning first=1058 second=1096 amount=-2 +kerning first=350 second=257 amount=-2 +kerning first=223 second=367 amount=-1 +kerning first=106 second=113 amount=-1 +kerning first=259 second=367 amount=-1 +kerning first=8217 second=378 amount=-1 +kerning first=217 second=212 amount=-1 +kerning first=1092 second=1081 amount=-1 +kerning first=8217 second=249 amount=-1 +kerning first=278 second=257 amount=-1 +kerning first=232 second=114 amount=-1 +kerning first=118 second=367 amount=-1 +kerning first=236 second=351 amount=-2 +kerning first=314 second=257 amount=-2 +kerning first=268 second=114 amount=-1 +kerning first=1096 second=1092 amount=-1 +kerning first=333 second=382 amount=-2 +kerning first=227 second=291 amount=-2 +kerning first=267 second=316 amount=-3 +kerning first=74 second=216 amount=-2 +kerning first=103 second=109 amount=-1 +kerning first=369 second=382 amount=-2 +kerning first=303 second=316 amount=-2 +kerning first=82 second=367 amount=-2 +kerning first=101 second=271 amount=-1 +kerning first=122 second=291 amount=-2 +kerning first=339 second=316 amount=-3 +kerning first=86 second=291 amount=-4 +kerning first=375 second=316 amount=-2 +kerning first=1053 second=1047 amount=-1 +kerning first=356 second=367 amount=-2 +kerning first=8217 second=263 amount=-3 +kerning first=66 second=267 amount=-1 +kerning first=225 second=382 amount=-1 +kerning first=102 second=267 amount=-1 +kerning first=261 second=382 amount=-1 +kerning first=236 second=337 amount=-1 +kerning first=112 second=226 amount=-1 +kerning first=204 second=261 amount=-2 +kerning first=364 second=197 amount=-4 +kerning first=197 second=314 amount=-2 +kerning first=1097 second=1086 amount=-1 +kerning first=240 second=261 amount=-1 +kerning first=1080 second=1104 amount=-1 +kerning first=256 second=347 amount=-2 +kerning first=102 second=281 amount=-1 +kerning first=85 second=269 amount=-2 +kerning first=109 second=8221 amount=-4 +kerning first=262 second=171 amount=-4 +kerning first=269 second=314 amount=-3 +kerning first=220 second=347 amount=-2 +kerning first=231 second=228 amount=-2 +kerning first=115 second=361 amount=-1 +kerning first=233 second=314 amount=-3 +kerning first=207 second=281 amount=-2 +kerning first=380 second=337 amount=-1 +kerning first=1058 second=1082 amount=-2 +kerning first=334 second=171 amount=-1 +kerning first=256 second=361 amount=-3 +kerning first=376 second=326 amount=-3 +kerning first=1079 second=1116 amount=-1 +kerning first=115 second=347 amount=-3 +kerning first=121 second=269 amount=-3 +kerning first=370 second=171 amount=-5 +kerning first=220 second=361 amount=-1 +kerning first=305 second=314 amount=-1 +kerning first=1043 second=1116 amount=-2 +kerning first=262 second=269 amount=-2 +kerning first=286 second=8221 amount=-1 +kerning first=85 second=171 amount=-5 +kerning first=328 second=361 amount=-1 +kerning first=226 second=269 amount=-1 +kerning first=365 second=371 amount=-1 +kerning first=121 second=171 amount=-4 +kerning first=195 second=316 amount=-2 +kerning first=323 second=216 amount=-2 +kerning first=302 second=67 amount=-2 +kerning first=241 second=97 amount=-1 +kerning first=66 second=281 amount=-1 +kerning first=298 second=269 amount=-2 +kerning first=231 second=316 amount=-3 +kerning first=250 second=8221 amount=-3 +kerning first=226 second=171 amount=-2 +kerning first=364 second=361 amount=-1 +kerning first=8218 second=251 amount=-1 +kerning first=268 second=326 amount=-1 +kerning first=313 second=45 amount=-1 +kerning first=116 second=103 amount=-2 +kerning first=370 second=269 amount=-2 +kerning first=201 second=224 amount=-1 +kerning first=80 second=103 amount=-3 +kerning first=67 second=331 amount=-1 +kerning first=230 second=252 amount=-2 +kerning first=76 second=78 amount=-2 +kerning first=266 second=252 amount=-2 +kerning first=317 second=70 amount=-2 +kerning first=321 second=201 amount=-2 +kerning first=1057 second=1051 amount=-1 +kerning first=262 second=227 amount=-2 +kerning first=344 second=226 amount=-2 +kerning first=345 second=224 amount=-1 +kerning first=233 second=100 amount=-1 +kerning first=275 second=46 amount=-3 +kerning first=82 second=101 amount=-3 +kerning first=213 second=201 amount=-2 +kerning first=89 second=252 amount=-1 +kerning first=121 second=227 amount=-3 +kerning first=382 second=246 amount=-1 +kerning first=217 second=226 amount=-3 +kerning first=346 second=246 amount=-1 +kerning first=253 second=226 amount=-3 +kerning first=380 second=378 amount=-2 +kerning first=310 second=246 amount=-2 +kerning first=313 second=207 amount=-2 +kerning first=222 second=317 amount=-2 +kerning first=259 second=101 amount=-1 +kerning first=84 second=382 amount=-3 +kerning first=289 second=226 amount=-3 +kerning first=365 second=103 amount=-3 +kerning first=8216 second=248 amount=-3 +kerning first=212 second=90 amount=-2 +kerning first=120 second=382 amount=-2 +kerning first=325 second=226 amount=-2 +kerning first=284 second=356 amount=-3 +kerning first=100 second=311 amount=-1 +kerning first=211 second=362 amount=-1 +kerning first=371 second=291 amount=-1 +kerning first=302 second=252 amount=-1 +kerning first=284 second=90 amount=-2 +kerning first=335 second=291 amount=-2 +kerning first=338 second=252 amount=-2 +kerning first=212 second=356 amount=-2 +kerning first=257 second=103 amount=-2 +kerning first=45 second=317 amount=-5 +kerning first=241 second=45 amount=-3 +kerning first=221 second=103 amount=-4 +kerning first=289 second=45 amount=-3 +kerning first=81 second=317 amount=-2 +kerning first=85 second=224 amount=-3 +kerning first=263 second=291 amount=-3 +kerning first=1056 second=1067 amount=-1 +kerning first=298 second=213 amount=-2 +kerning first=363 second=283 amount=-1 +kerning first=8222 second=86 amount=-6 +kerning first=1105 second=1090 amount=-1 +kerning first=262 second=213 amount=-3 +kerning first=327 second=283 amount=-2 +kerning first=66 second=259 amount=-3 +kerning first=68 second=84 amount=-2 +kerning first=284 second=104 amount=-1 +kerning first=370 second=213 amount=-1 +kerning first=278 second=109 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=75 second=115 amount=-1 +kerning first=74 second=210 amount=-2 +kerning first=71 second=370 amount=-1 +kerning first=242 second=109 amount=-1 +kerning first=317 second=84 amount=-3 +kerning first=214 second=82 amount=-2 +kerning first=212 second=370 amount=-1 +kerning first=350 second=109 amount=-1 +kerning first=8222 second=220 amount=-3 +kerning first=314 second=109 amount=-1 +kerning first=101 second=109 amount=-2 +kerning first=71 second=104 amount=-1 +kerning first=330 second=303 amount=-1 +kerning first=68 second=70 amount=-2 +kerning first=272 second=8249 amount=-1 +kerning first=370 second=227 amount=-3 +kerning first=111 second=115 amount=-2 +kerning first=313 second=193 amount=-2 +kerning first=222 second=303 amount=-1 +kerning first=334 second=227 amount=-1 +kerning first=82 second=220 amount=-3 +kerning first=258 second=303 amount=-1 +kerning first=1054 second=1113 amount=-2 +kerning first=200 second=8249 amount=-2 +kerning first=298 second=227 amount=-2 +kerning first=203 second=334 amount=-1 +kerning first=310 second=232 amount=-2 +kerning first=232 second=44 amount=-3 +kerning first=248 second=104 amount=-1 +kerning first=196 second=368 amount=-3 +kerning first=1048 second=1096 amount=-1 +kerning first=72 second=339 amount=-2 +kerning first=382 second=232 amount=-1 +kerning first=304 second=44 amount=-1 +kerning first=366 second=303 amount=-2 +kerning first=346 second=232 amount=-1 +kerning first=85 second=213 amount=-1 +kerning first=268 second=44 amount=-1 +kerning first=367 second=115 amount=-2 +kerning first=66 second=323 amount=-4 +kerning first=1075 second=1113 amount=-3 +kerning first=282 second=78 amount=-2 +kerning first=1052 second=1081 amount=-1 +kerning first=295 second=115 amount=-1 +kerning first=368 second=120 amount=-2 +kerning first=102 second=318 amount=3 +kerning first=331 second=115 amount=-1 +kerning first=268 second=368 amount=-2 +kerning first=210 second=78 amount=-2 +kerning first=378 second=118 amount=-2 +kerning first=82 second=375 amount=-3 +kerning first=69 second=78 amount=-2 +kerning first=268 second=203 amount=-3 +kerning first=199 second=75 amount=-3 +kerning first=311 second=248 amount=-3 +kerning first=288 second=70 amount=-1 +kerning first=1057 second=1080 amount=-1 +kerning first=376 second=368 amount=-1 +kerning first=224 second=120 amount=-1 +kerning first=315 second=323 amount=-2 +kerning first=350 second=201 amount=-3 +kerning first=234 second=118 amount=-2 +kerning first=323 second=113 amount=-2 +kerning first=99 second=253 amount=-2 +kerning first=379 second=75 amount=-1 +kerning first=201 second=85 amount=-2 +kerning first=290 second=80 amount=-1 +kerning first=198 second=118 amount=-1 +kerning first=287 second=113 amount=-2 +kerning first=278 second=201 amount=-2 +kerning first=236 second=106 amount=-2 +kerning first=251 second=113 amount=-1 +kerning first=204 second=253 amount=-2 +kerning first=86 second=73 amount=-1 +kerning first=375 second=246 amount=-3 +kerning first=290 second=278 amount=-1 +kerning first=240 second=253 amount=-3 +kerning first=84 second=171 amount=-5 +kerning first=106 second=233 amount=-1 +kerning first=339 second=246 amount=-1 +kerning first=8218 second=307 amount=-1 +kerning first=303 second=246 amount=-3 +kerning first=334 second=68 amount=-2 +kerning first=1071 second=1101 amount=-1 +kerning first=267 second=246 amount=-1 +kerning first=197 second=233 amount=-1 +kerning first=231 second=246 amount=-1 +kerning first=262 second=68 amount=-3 +kerning first=283 second=233 amount=-1 +kerning first=69 second=290 amount=-1 +kerning first=1048 second=1087 amount=-1 +kerning first=307 second=335 amount=-1 +kerning first=248 second=241 amount=-1 +kerning first=1087 second=1108 amount=-1 +kerning first=298 second=283 amount=-2 +kerning first=356 second=241 amount=-3 +kerning first=196 second=108 amount=-2 +kerning first=217 second=338 amount=-1 +kerning first=262 second=283 amount=-2 +kerning first=379 second=335 amount=-1 +kerning first=377 second=328 amount=-1 +kerning first=226 second=283 amount=-1 +kerning first=258 second=275 amount=-1 +kerning first=296 second=380 amount=-1 +kerning first=268 second=108 amount=-1 +kerning first=71 second=193 amount=-3 +kerning first=332 second=380 amount=-2 +kerning first=232 second=108 amount=-3 +kerning first=76 second=338 amount=-1 +kerning first=8216 second=362 amount=-1 +kerning first=381 second=286 amount=-1 +kerning first=199 second=335 amount=-2 +kerning first=332 second=120 amount=-1 +kerning first=233 second=110 amount=-2 +kerning first=235 second=335 amount=-1 +kerning first=67 second=65 amount=-3 +kerning first=370 second=283 amount=-2 +kerning first=269 second=110 amount=-2 +kerning first=192 second=231 amount=-1 +kerning first=363 second=105 amount=-2 +kerning first=205 second=287 amount=-3 +kerning first=1040 second=1118 amount=-3 +kerning first=201 second=286 amount=-1 +kerning first=352 second=331 amount=-1 +kerning first=275 second=248 amount=-1 +kerning first=228 second=231 amount=-1 +kerning first=82 second=115 amount=-2 +kerning first=284 second=193 amount=-3 +kerning first=87 second=231 amount=-3 +kerning first=324 second=255 amount=-2 +kerning first=1050 second=1038 amount=-3 +kerning first=208 second=65 amount=-4 +kerning first=1063 second=1095 amount=-1 +kerning first=212 second=193 amount=-4 +kerning first=316 second=331 amount=-1 +kerning first=223 second=115 amount=-2 +kerning first=259 second=115 amount=-1 +kerning first=8218 second=305 amount=-1 +kerning first=244 second=331 amount=-1 +kerning first=264 second=231 amount=-2 +kerning first=118 second=115 amount=-3 +kerning first=352 second=65 amount=-4 +kerning first=1075 second=1083 amount=-3 +kerning first=103 second=331 amount=-1 +kerning first=83 second=380 amount=-2 +kerning first=187 second=115 amount=-1 +kerning first=325 second=338 amount=-2 +kerning first=354 second=78 amount=-1 +kerning first=356 second=193 amount=-6 +kerning first=116 second=307 amount=-1 +kerning first=120 second=326 amount=-1 +kerning first=122 second=257 amount=-1 +kerning first=274 second=302 amount=-2 +kerning first=72 second=257 amount=-2 +kerning first=371 second=347 amount=-2 +kerning first=75 second=210 amount=-3 +kerning first=1055 second=1073 amount=-1 +kerning first=366 second=250 amount=-1 +kerning first=277 second=255 amount=-2 +kerning first=225 second=326 amount=-1 +kerning first=335 second=347 amount=-2 +kerning first=1102 second=1076 amount=-2 +kerning first=1091 second=1073 amount=-1 +kerning first=374 second=8249 amount=-5 +kerning first=202 second=302 amount=-2 +kerning first=241 second=255 amount=-2 +kerning first=257 second=307 amount=-1 +kerning first=261 second=326 amount=-1 +kerning first=354 second=352 amount=-3 +kerning first=205 second=255 amount=-2 +kerning first=263 second=347 amount=-2 +kerning first=1074 second=1078 amount=-1 +kerning first=258 second=250 amount=-3 +kerning first=227 second=347 amount=-1 +kerning first=100 second=255 amount=-2 +kerning first=196 second=262 amount=-3 +kerning first=365 second=307 amount=-2 +kerning first=250 second=371 amount=-1 +kerning first=244 second=223 amount=-1 +kerning first=346 second=8250 amount=-1 +kerning first=330 second=250 amount=-2 +kerning first=84 second=326 amount=-3 +kerning first=122 second=347 amount=-2 +kerning first=251 second=109 amount=-1 +kerning first=1075 second=1077 amount=-1 +kerning first=241 second=378 amount=-1 +kerning first=45 second=250 amount=-1 +kerning first=205 second=378 amount=-1 +kerning first=69 second=352 amount=-2 +kerning first=1104 second=1097 amount=-1 +kerning first=313 second=378 amount=-3 +kerning first=1039 second=1077 amount=-1 +kerning first=117 second=250 amount=-1 +kerning first=277 second=378 amount=-2 +kerning first=278 second=377 amount=-1 +kerning first=76 second=332 amount=-1 +kerning first=213 second=257 amount=-1 +kerning first=1103 second=1092 amount=-1 +kerning first=249 second=257 amount=-1 +kerning first=305 second=328 amount=-1 +kerning first=367 second=8220 amount=-3 +kerning first=121 second=283 amount=-3 +kerning first=1024 second=1047 amount=-1 +kerning first=108 second=257 amount=-2 +kerning first=269 second=328 amount=-2 +kerning first=331 second=8220 amount=-4 +kerning first=85 second=283 amount=-2 +kerning first=1048 second=1094 amount=-1 +kerning first=346 second=302 amount=-3 +kerning first=1060 second=1047 amount=-2 +kerning first=210 second=352 amount=-1 +kerning first=233 second=328 amount=-2 +kerning first=295 second=8220 amount=-4 +kerning first=100 second=378 amount=-1 +kerning first=195 second=366 amount=-3 +kerning first=378 second=333 amount=-1 +kerning first=219 second=339 amount=-2 +kerning first=259 second=8220 amount=-3 +kerning first=267 second=106 amount=-2 +kerning first=217 second=332 amount=-1 +kerning first=1070 second=1045 amount=-1 +kerning first=223 second=8220 amount=-2 +kerning first=209 second=288 amount=-2 +kerning first=303 second=106 amount=3 +kerning first=350 second=377 amount=-1 +kerning first=325 second=332 amount=-2 +kerning first=1031 second=1092 amount=-1 +kerning first=317 second=288 amount=-1 +kerning first=226 second=98 amount=-1 +kerning first=87 second=287 amount=-4 +kerning first=1067 second=1092 amount=-1 +kerning first=231 second=106 amount=-2 +kerning first=228 second=287 amount=-2 +kerning first=234 second=333 amount=-1 +kerning first=82 second=8220 amount=-5 +kerning first=87 second=45 amount=-5 +kerning first=192 second=287 amount=-3 +kerning first=46 second=8220 amount=-5 +kerning first=256 second=87 amount=-6 +kerning first=74 second=113 amount=-2 +kerning first=1072 second=1116 amount=-1 +kerning first=339 second=106 amount=-2 +kerning first=264 second=287 amount=-3 +kerning first=375 second=106 amount=-2 +kerning first=86 second=347 amount=-3 +kerning first=84 second=217 amount=-1 +kerning first=304 second=262 amount=-2 +kerning first=336 second=287 amount=-1 +kerning first=258 second=99 amount=-1 +kerning first=364 second=243 amount=-2 +kerning first=79 second=87 amount=-2 +kerning first=87 second=100 amount=-3 +kerning first=275 second=242 amount=-1 +kerning first=344 second=281 amount=-3 +kerning first=376 second=262 amount=-3 +kerning first=330 second=99 amount=-2 +kerning first=380 second=281 amount=-1 +kerning first=83 second=120 amount=-3 +kerning first=192 second=263 amount=-1 +kerning first=1049 second=1098 amount=-1 +kerning first=333 second=326 amount=-1 +kerning first=220 second=243 amount=-2 +kerning first=8217 second=199 amount=-2 +kerning first=369 second=326 amount=-1 +kerning first=256 second=243 amount=-1 +kerning first=236 second=281 amount=-1 +kerning first=268 second=197 amount=-3 +kerning first=90 second=198 amount=-1 +kerning first=66 second=119 amount=-3 +kerning first=211 second=354 amount=-2 +kerning first=8220 second=331 amount=-1 +kerning first=224 second=324 amount=-1 +kerning first=268 second=374 amount=-1 +kerning first=376 second=197 amount=-6 +kerning first=71 second=249 amount=-1 +kerning first=207 second=119 amount=-2 +kerning first=85 second=334 amount=-1 +kerning first=107 second=249 amount=-1 +kerning first=195 second=254 amount=-2 +kerning first=243 second=119 amount=-2 +kerning first=196 second=374 amount=-6 +kerning first=83 second=324 amount=-1 +kerning first=77 second=74 amount=-1 +kerning first=1044 second=1054 amount=-1 +kerning first=279 second=119 amount=-2 +kerning first=249 second=369 amount=-1 +kerning first=288 second=274 amount=-1 +kerning first=315 second=119 amount=-3 +kerning first=298 second=334 amount=-2 +kerning first=78 second=289 amount=-3 +kerning first=317 second=344 amount=-2 +kerning first=351 second=119 amount=-3 +kerning first=321 second=369 amount=-2 +kerning first=119 second=324 amount=-2 +kerning first=262 second=334 amount=-3 +kerning first=218 second=74 amount=-3 +kerning first=1048 second=1079 amount=-1 +kerning first=379 second=279 amount=-1 +kerning first=68 second=344 amount=-2 +kerning first=335 second=229 amount=-1 +kerning first=333 second=46 amount=-3 +kerning first=227 second=229 amount=-1 +kerning first=8216 second=375 amount=-1 +kerning first=67 second=339 amount=-2 +kerning first=1101 second=1074 amount=-1 +kerning first=263 second=229 amount=-2 +kerning first=103 second=339 amount=-2 +kerning first=218 second=284 amount=-1 +kerning first=235 second=279 amount=-1 +kerning first=316 second=339 amount=-1 +kerning first=77 second=284 amount=-2 +kerning first=199 second=279 amount=-2 +kerning first=368 second=324 amount=-2 +kerning first=287 second=351 amount=-3 +kerning first=352 second=339 amount=-1 +kerning first=1051 second=1079 amount=-1 +kerning first=105 second=234 amount=-1 +kerning first=307 second=279 amount=-1 +kerning first=371 second=229 amount=-2 +kerning first=1057 second=1024 amount=-1 +kerning first=8222 second=226 amount=-2 +kerning first=262 second=219 amount=-2 +kerning first=302 second=244 amount=-2 +kerning first=1030 second=1084 amount=-1 +kerning first=241 second=8217 amount=-4 +kerning first=69 second=86 amount=-1 +kerning first=277 second=8217 amount=-2 +kerning first=205 second=199 amount=-2 +kerning first=374 second=244 amount=-3 +kerning first=250 second=111 amount=-1 +kerning first=313 second=8217 amount=-4 +kerning first=350 second=209 amount=-3 +kerning first=323 second=264 amount=-2 +kerning first=354 second=234 amount=-3 +kerning first=367 second=107 amount=-2 +kerning first=282 second=86 amount=-1 +kerning first=286 second=220 amount=-1 +kerning first=84 second=66 amount=-1 +kerning first=1085 second=1089 amount=-1 +kerning first=1045 second=1064 amount=-1 +kerning first=313 second=199 amount=-1 +kerning first=338 second=254 amount=-1 +kerning first=100 second=8217 amount=-2 +kerning first=1049 second=1089 amount=-1 +kerning first=210 second=86 amount=-2 +kerning first=73 second=111 amount=-2 +kerning first=370 second=334 amount=-1 +kerning first=252 second=121 amount=-3 +kerning first=272 second=82 amount=-2 +kerning first=68 second=76 amount=-2 +kerning first=212 second=364 amount=-1 +kerning first=375 second=254 amount=-1 +kerning first=219 second=289 amount=-4 +kerning first=206 second=289 amount=-3 +kerning first=200 second=241 amount=-1 +kerning first=255 second=289 amount=-3 +kerning first=1024 second=1041 amount=-1 +kerning first=89 second=244 amount=-3 +kerning first=111 second=121 amount=-3 +kerning first=1105 second=1099 amount=-1 +kerning first=71 second=364 amount=-1 +kerning first=377 second=205 amount=-1 +kerning first=75 second=121 amount=-3 +kerning first=356 second=364 amount=-1 +kerning first=231 second=254 amount=-2 +kerning first=278 second=209 amount=-2 +kerning first=194 second=244 amount=-1 +kerning first=363 second=289 amount=-3 +kerning first=267 second=254 amount=-2 +kerning first=230 second=244 amount=-1 +kerning first=284 second=364 amount=-1 +kerning first=303 second=254 amount=-1 +kerning first=261 second=8249 amount=-2 +kerning first=266 second=244 amount=-2 +kerning first=339 second=254 amount=-2 +kerning first=202 second=296 amount=-2 +kerning first=278 second=117 amount=-2 +kerning first=76 second=72 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=104 second=109 amount=-1 +kerning first=242 second=117 amount=-1 +kerning first=286 second=200 amount=-1 +kerning first=72 second=251 amount=-2 +kerning first=274 second=296 amount=-2 +kerning first=350 second=117 amount=-1 +kerning first=317 second=76 amount=-2 +kerning first=99 second=102 amount=-2 +kerning first=314 second=117 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=365 second=245 amount=-1 +kerning first=346 second=296 amount=-3 +kerning first=315 second=85 amount=-3 +kerning first=333 second=122 amount=-2 +kerning first=218 second=225 amount=-3 +kerning first=108 second=251 amount=-2 +kerning first=313 second=370 amount=-3 +kerning first=280 second=71 amount=-1 +kerning first=254 second=225 amount=-1 +kerning first=249 second=251 amount=-1 +kerning first=324 second=121 amount=-2 +kerning first=221 second=97 amount=-5 +kerning first=261 second=122 amount=-1 +kerning first=1096 second=1086 amount=-1 +kerning first=290 second=225 amount=-1 +kerning first=257 second=97 amount=-1 +kerning first=225 second=122 amount=-1 +kerning first=326 second=225 amount=-1 +kerning first=321 second=251 amount=-2 +kerning first=310 second=240 amount=-2 +kerning first=99 second=46 amount=-3 +kerning first=83 second=206 amount=-3 +kerning first=365 second=97 amount=-1 +kerning first=80 second=245 amount=-1 +kerning first=116 second=363 amount=-1 +kerning first=88 second=264 amount=-3 +kerning first=1054 second=1063 amount=-2 +kerning first=332 second=206 amount=-2 +kerning first=249 second=103 amount=-3 +kerning first=101 second=117 amount=-2 +kerning first=221 second=363 amount=-2 +kerning first=65 second=117 amount=-3 +kerning first=240 second=102 amount=-1 +kerning first=257 second=363 amount=-1 +kerning first=382 second=240 amount=-1 +kerning first=334 second=219 amount=-1 +kerning first=206 second=117 amount=-2 +kerning first=257 second=245 amount=-1 +kerning first=354 second=290 amount=-3 +kerning first=8250 second=84 amount=-4 +kerning first=221 second=245 amount=-3 +kerning first=87 second=83 amount=-3 +kerning first=315 second=214 amount=-1 +kerning first=98 second=223 amount=-1 +kerning first=288 second=330 amount=-1 +kerning first=192 second=83 amount=-3 +kerning first=222 second=194 amount=-4 +kerning first=90 second=310 amount=-1 +kerning first=207 second=214 amount=-2 +kerning first=81 second=194 amount=-4 +kerning first=211 second=298 amount=-2 +kerning first=1053 second=1114 amount=-1 +kerning first=8220 second=65 amount=-8 +kerning first=336 second=83 amount=-1 +kerning first=97 second=240 amount=-1 +kerning first=1089 second=1114 amount=-1 +kerning first=1038 second=1082 amount=-4 +kerning first=362 second=284 amount=-1 +kerning first=289 second=230 amount=-3 +kerning first=108 second=369 amount=-2 +kerning first=250 second=259 amount=-1 +kerning first=259 second=375 amount=-3 +kerning first=1058 second=1088 amount=-2 +kerning first=72 second=369 amount=-2 +kerning first=214 second=259 amount=-1 +kerning first=223 second=375 amount=-3 +kerning first=272 second=77 amount=-2 +kerning first=363 second=267 amount=-1 +kerning first=76 second=220 amount=-3 +kerning first=1086 second=1094 amount=-1 +kerning first=187 second=375 amount=-3 +kerning first=377 second=344 amount=-1 +kerning first=286 second=259 amount=-1 +kerning first=377 second=116 amount=-1 +kerning first=66 second=214 amount=-3 +kerning first=200 second=77 amount=-2 +kerning first=197 second=116 amount=-1 +kerning first=80 second=313 amount=-1 +kerning first=367 second=375 amount=-3 +kerning first=203 second=304 amount=-2 +kerning first=269 second=116 amount=-1 +kerning first=331 second=375 amount=-2 +kerning first=67 second=71 amount=-3 +kerning first=109 second=259 amount=-1 +kerning first=233 second=116 amount=-1 +kerning first=295 second=375 amount=-2 +kerning first=1025 second=1049 amount=-1 +kerning first=366 second=194 amount=-4 +kerning first=332 second=220 amount=-1 +kerning first=1036 second=1108 amount=-2 +kerning first=327 second=233 amount=-2 +kerning first=332 second=330 amount=-2 +kerning first=1057 second=1045 amount=-1 +kerning first=291 second=233 amount=-2 +kerning first=356 second=291 amount=-4 +kerning first=88 second=214 amount=-3 +kerning first=260 second=220 amount=-3 +kerning first=88 second=71 amount=-3 +kerning first=203 second=298 amount=-2 +kerning first=363 second=233 amount=-1 +kerning first=280 second=86 amount=-1 +kerning first=74 second=337 amount=-2 +kerning first=1043 second=1082 amount=-2 +kerning first=248 second=291 amount=-2 +kerning first=105 second=240 amount=-1 +kerning first=78 second=350 amount=-2 +kerning first=315 second=194 amount=-2 +kerning first=100 second=110 amount=-1 +kerning first=212 second=291 amount=-1 +kerning first=1057 second=1030 amount=-1 +kerning first=70 second=248 amount=-1 +kerning first=87 second=97 amount=-5 +kerning first=107 second=291 amount=-2 +kerning first=251 second=337 amount=-1 +kerning first=219 second=350 amount=-3 +kerning first=377 second=213 amount=-1 +kerning first=84 second=304 amount=-1 +kerning first=198 second=334 amount=-1 +kerning first=241 second=110 amount=-1 +kerning first=71 second=291 amount=-3 +kerning first=274 second=324 amount=-1 +kerning first=336 second=97 amount=-1 +kerning first=277 second=110 amount=-2 +kerning first=260 second=84 amount=-6 +kerning first=382 second=324 amount=-2 +kerning first=228 second=97 amount=-1 +kerning first=305 second=109 amount=-1 +kerning first=313 second=110 amount=-1 +kerning first=234 second=311 amount=-2 +kerning first=346 second=324 amount=-1 +kerning first=264 second=97 amount=-2 +kerning first=198 second=311 amount=-1 +kerning first=120 second=318 amount=-1 +kerning first=193 second=71 amount=-3 +kerning first=97 second=324 amount=-1 +kerning first=323 second=337 amount=-2 +kerning first=225 second=318 amount=-1 +kerning first=1067 second=1114 amount=-1 +kerning first=287 second=337 amount=-2 +kerning first=327 second=350 amount=-2 +kerning first=83 second=330 amount=-3 +kerning first=202 second=324 amount=-1 +kerning first=225 second=44 amount=-1 +kerning first=224 second=234 amount=-1 +kerning first=255 second=104 amount=-2 +kerning first=1113 second=1081 amount=-1 +kerning first=260 second=234 amount=-1 +kerning first=346 second=78 amount=-3 +kerning first=121 second=378 amount=-3 +kerning first=296 second=234 amount=-2 +kerning first=280 second=381 amount=-1 +kerning first=261 second=44 amount=-1 +kerning first=83 second=70 amount=-3 +kerning first=187 second=260 amount=-4 +kerning first=274 second=78 amount=-2 +kerning first=8218 second=363 amount=-1 +kerning first=234 second=187 amount=-2 +kerning first=352 second=381 amount=-1 +kerning first=356 second=277 amount=-3 +kerning first=332 second=70 amount=-2 +kerning first=197 second=213 amount=-3 +kerning first=83 second=234 amount=-1 +kerning first=363 second=104 amount=-2 +kerning first=202 second=78 amount=-2 +kerning first=202 second=310 amount=-2 +kerning first=120 second=44 amount=-1 +kerning first=119 second=234 amount=-3 +kerning first=83 second=344 amount=-3 +kerning first=275 second=116 amount=-1 +kerning first=84 second=44 amount=-5 +kerning first=198 second=325 amount=-2 +kerning first=291 second=104 amount=-2 +kerning first=192 second=111 amount=-1 +kerning first=110 second=351 amount=-1 +kerning first=269 second=227 amount=-2 +kerning first=228 second=111 amount=-1 +kerning first=193 second=303 amount=-1 +kerning first=346 second=310 amount=-3 +kerning first=74 second=351 amount=-2 +kerning first=233 second=227 amount=-2 +kerning first=264 second=111 amount=-2 +kerning first=193 second=85 amount=-3 +kerning first=66 second=194 amount=-5 +kerning first=198 second=81 amount=-1 +kerning first=274 second=310 amount=-2 +kerning first=214 second=377 amount=-2 +kerning first=369 second=44 amount=-2 +kerning first=263 second=119 amount=-2 +kerning first=368 second=234 amount=-2 +kerning first=1086 second=1074 amount=-1 +kerning first=88 second=85 amount=-2 +kerning first=333 second=44 amount=-3 +kerning first=337 second=303 amount=-1 +kerning first=198 second=201 amount=-2 +kerning first=211 second=70 amount=-2 +kerning first=377 second=227 amount=-1 +kerning first=87 second=111 amount=-3 +kerning first=229 second=303 amount=-1 +kerning first=83 second=220 amount=-3 +kerning first=107 second=277 amount=-3 +kerning first=352 second=367 amount=-1 +kerning first=284 second=45 amount=-3 +kerning first=305 second=227 amount=-1 +kerning first=1045 second=1094 amount=-1 +kerning first=119 second=248 amount=-3 +kerning first=80 second=8249 amount=-3 +kerning first=220 second=235 amount=-2 +kerning first=78 second=118 amount=-2 +kerning first=275 second=380 amount=-2 +kerning first=234 second=283 amount=-1 +kerning first=286 second=377 amount=-2 +kerning first=256 second=235 amount=-1 +kerning first=45 second=109 amount=-2 +kerning first=219 second=118 amount=-2 +kerning first=74 second=105 amount=-2 +kerning first=251 second=8220 amount=-3 +kerning first=83 second=248 amount=-1 +kerning first=44 second=8249 amount=-3 +kerning first=110 second=105 amount=-1 +kerning first=347 second=380 amount=-2 +kerning first=1027 second=1087 amount=-2 +kerning first=310 second=338 amount=-3 +kerning first=351 second=367 amount=-1 +kerning first=337 second=228 amount=-1 +kerning first=305 second=241 amount=-1 +kerning first=110 second=8220 amount=-4 +kerning first=378 second=283 amount=-1 +kerning first=337 second=345 amount=-1 +kerning first=236 second=287 amount=-3 +kerning first=1031 second=1100 amount=-1 +kerning first=1083 second=1077 amount=-1 +kerning first=200 second=287 amount=-3 +kerning first=377 second=241 amount=-1 +kerning first=203 second=380 amount=-2 +kerning first=1067 second=1100 amount=-1 +kerning first=203 second=270 amount=-2 +kerning first=82 second=218 amount=-3 +kerning first=229 second=228 amount=-1 +kerning first=204 second=287 amount=-3 +kerning first=356 second=263 amount=-3 +kerning first=272 second=287 amount=-1 +kerning first=233 second=108 amount=-3 +kerning first=220 second=193 amount=-4 +kerning first=380 second=287 amount=-2 +kerning first=368 second=248 amount=-2 +kerning first=269 second=241 amount=-2 +kerning first=269 second=44 amount=-3 +kerning first=79 second=193 amount=-4 +kerning first=344 second=287 amount=-3 +kerning first=88 second=228 amount=-1 +kerning first=233 second=241 amount=-2 +kerning first=1037 second=1074 amount=-1 +kerning first=296 second=248 amount=-2 +kerning first=257 second=8249 amount=-2 +kerning first=364 second=193 amount=-4 +kerning first=201 second=8249 amount=-2 +kerning first=224 second=248 amount=-1 +kerning first=1050 second=1073 amount=-3 +kerning first=260 second=248 amount=-1 +kerning first=221 second=8249 amount=-5 +kerning first=1108 second=1094 amount=-1 +kerning first=377 second=255 amount=-3 +kerning first=346 second=352 amount=-1 +kerning first=333 second=318 amount=-2 +kerning first=368 second=112 amount=-2 +kerning first=1072 second=1094 amount=-1 +kerning first=369 second=318 amount=-2 +kerning first=332 second=112 amount=-1 +kerning first=1027 second=1073 amount=-1 +kerning first=305 second=255 amount=-2 +kerning first=115 second=251 amount=-1 +kerning first=296 second=112 amount=-1 +kerning first=1063 second=1073 amount=-1 +kerning first=229 second=331 amount=-1 +kerning first=256 second=221 amount=-6 +kerning first=269 second=255 amount=-2 +kerning first=260 second=112 amount=-3 +kerning first=1051 second=1104 amount=-1 +kerning first=233 second=255 amount=-2 +kerning first=197 second=255 amount=-3 +kerning first=260 second=262 amount=-3 +kerning first=85 second=74 amount=-3 +kerning first=296 second=262 amount=-2 +kerning first=378 second=311 amount=-2 +kerning first=119 second=112 amount=-2 +kerning first=79 second=221 amount=-2 +kerning first=202 second=338 amount=-1 +kerning first=224 second=98 amount=-1 +kerning first=99 second=314 amount=-3 +kerning first=8218 second=377 amount=-1 +kerning first=79 second=207 amount=-2 +kerning first=240 second=314 amount=-2 +kerning first=262 second=74 amount=-2 +kerning first=260 second=98 amount=-2 +kerning first=298 second=74 amount=-1 +kerning first=193 second=214 amount=-3 +kerning first=79 second=379 amount=-2 +kerning first=334 second=74 amount=-2 +kerning first=323 second=105 amount=-1 +kerning first=202 second=352 amount=-2 +kerning first=370 second=74 amount=-3 +kerning first=203 second=366 amount=-2 +kerning first=310 second=352 amount=-2 +kerning first=119 second=98 amount=-1 +kerning first=251 second=105 amount=-2 +kerning first=1108 second=1080 amount=-1 +kerning first=274 second=352 amount=-2 +kerning first=83 second=98 amount=-2 +kerning first=287 second=105 amount=-2 +kerning first=88 second=345 amount=1 +kerning first=250 second=307 amount=-2 +kerning first=103 second=224 amount=-3 +kerning first=210 second=282 amount=-2 +kerning first=76 second=346 amount=-1 +kerning first=67 second=224 amount=-2 +kerning first=257 second=8221 amount=-3 +kerning first=72 second=242 amount=-2 +kerning first=98 second=106 amount=-2 +kerning first=208 second=224 amount=-1 +kerning first=1024 second=1113 amount=-1 +kerning first=249 second=333 amount=-1 +kerning first=277 second=345 amount=-1 +kerning first=199 second=81 amount=-3 +kerning first=69 second=282 amount=-2 +kerning first=347 second=106 amount=-1 +kerning first=280 second=224 amount=-1 +kerning first=233 second=98 amount=-2 +kerning first=244 second=224 amount=-1 +kerning first=235 second=355 amount=-1 +kerning first=108 second=333 amount=-1 +kerning first=86 second=67 amount=-3 +kerning first=379 second=81 amount=-1 +kerning first=275 second=106 amount=-2 +kerning first=72 second=333 amount=-2 +kerning first=311 second=106 amount=-1 +kerning first=316 second=224 amount=-2 +kerning first=222 second=230 amount=-1 +kerning first=289 second=232 amount=-2 +kerning first=226 second=224 amount=-1 +kerning first=199 second=243 amount=-2 +kerning first=89 second=101 amount=-3 +kerning first=117 second=230 amount=-1 +kerning first=325 second=346 amount=-2 +kerning first=235 second=243 amount=-1 +kerning first=8250 second=326 amount=-2 +kerning first=194 second=101 amount=-1 +kerning first=45 second=230 amount=-1 +kerning first=203 second=256 amount=-2 +kerning first=268 second=378 amount=-2 +kerning first=230 second=101 amount=-1 +kerning first=109 second=307 amount=-1 +kerning first=266 second=101 amount=-2 +kerning first=1025 second=1099 amount=-1 +kerning first=302 second=101 amount=-2 +kerning first=1050 second=1060 amount=-4 +kerning first=77 second=334 amount=-2 +kerning first=98 second=120 amount=-3 +kerning first=282 second=268 amount=-1 +kerning first=374 second=101 amount=-3 +kerning first=218 second=334 amount=-1 +kerning first=280 second=79 amount=-1 +kerning first=203 second=120 amount=-1 +kerning first=72 second=335 amount=-2 +kerning first=354 second=268 amount=-3 +kerning first=307 second=243 amount=-1 +kerning first=362 second=334 amount=-1 +kerning first=1074 second=1098 amount=-1 +kerning first=286 second=192 amount=-3 +kerning first=116 second=251 amount=-1 +kerning first=379 second=243 amount=-1 +kerning first=1038 second=1098 amount=-3 +kerning first=257 second=251 amount=-1 +kerning first=235 second=229 amount=-2 +kerning first=8216 second=354 amount=-1 +kerning first=214 second=192 amount=-4 +kerning first=221 second=251 amount=-2 +kerning first=290 second=217 amount=-1 +kerning first=69 second=268 amount=-1 +kerning first=290 second=203 amount=-1 +kerning first=199 second=229 amount=-2 +kerning first=8250 second=76 amount=-5 +kerning first=379 second=229 amount=-1 +kerning first=291 second=118 amount=-1 +kerning first=365 second=251 amount=-1 +kerning first=354 second=282 amount=-1 +kerning first=70 second=339 amount=-1 +kerning first=275 second=120 amount=-2 +kerning first=195 second=218 amount=-3 +kerning first=1093 second=1072 amount=-1 +kerning first=307 second=229 amount=-2 +kerning first=363 second=118 amount=-3 +kerning first=282 second=282 amount=-2 +kerning first=264 second=121 amount=-1 +kerning first=327 second=118 amount=-2 +kerning first=347 second=120 amount=-3 +kerning first=303 second=232 amount=-3 +kerning first=366 second=244 amount=-2 +kerning first=45 second=202 amount=-5 +kerning first=307 second=257 amount=-2 +kerning first=1101 second=1096 amount=-1 +kerning first=203 second=368 amount=-2 +kerning first=290 second=219 amount=-1 +kerning first=81 second=202 amount=-2 +kerning first=375 second=232 amount=-3 +kerning first=235 second=257 amount=-2 +kerning first=339 second=232 amount=-1 +kerning first=381 second=70 amount=-1 +kerning first=8217 second=110 amount=-2 +kerning first=108 second=361 amount=-2 +kerning first=353 second=369 amount=-1 +kerning first=222 second=202 amount=-2 +kerning first=72 second=361 amount=-2 +kerning first=90 second=232 amount=-1 +kerning first=199 second=257 amount=-2 +kerning first=231 second=232 amount=-1 +kerning first=290 second=205 amount=-1 +kerning first=209 second=336 amount=-2 +kerning first=195 second=232 amount=-1 +kerning first=111 second=8250 amount=-2 +kerning first=84 second=278 amount=-1 +kerning first=73 second=267 amount=-2 +kerning first=316 second=121 amount=-3 +kerning first=197 second=332 amount=-3 +kerning first=8218 second=103 amount=-1 +kerning first=67 second=79 amount=-3 +kerning first=317 second=336 amount=-1 +kerning first=117 second=244 amount=-1 +kerning first=244 second=121 amount=-3 +kerning first=246 second=254 amount=-1 +kerning first=1036 second=1072 amount=-2 +kerning first=282 second=254 amount=-1 +kerning first=250 second=267 amount=-1 +kerning first=76 second=374 amount=-3 +kerning first=332 second=344 amount=-2 +kerning first=272 second=69 amount=-2 +kerning first=1042 second=1036 amount=-2 +kerning first=366 second=275 amount=-2 +kerning first=258 second=244 amount=-1 +kerning first=103 second=121 amount=-1 +kerning first=67 second=121 amount=-1 +kerning first=69 second=254 amount=-1 +kerning first=379 second=257 amount=-1 +kerning first=200 second=69 amount=-2 +kerning first=8250 second=226 amount=-1 +kerning first=371 second=273 amount=-3 +kerning first=330 second=244 amount=-2 +kerning first=105 second=254 amount=-1 +kerning first=204 second=117 amount=-2 +kerning first=195 second=246 amount=-1 +kerning first=235 second=271 amount=-1 +kerning first=72 second=347 amount=-2 +kerning first=67 second=107 amount=-1 +kerning first=232 second=382 amount=-2 +kerning first=268 second=382 amount=-2 +kerning first=90 second=246 amount=-1 +kerning first=307 second=271 amount=-1 +kerning first=1061 second=1057 amount=-4 +kerning first=304 second=382 amount=-1 +kerning first=1025 second=1057 amount=-1 +kerning first=250 second=117 amount=-1 +kerning first=103 second=107 amount=-2 +kerning first=330 second=230 amount=-2 +kerning first=113 second=249 amount=-2 +kerning first=368 second=334 amount=-1 +kerning first=1025 second=1085 amount=-1 +kerning first=234 second=363 amount=-2 +kerning first=8220 second=339 amount=-3 +kerning first=8250 second=78 amount=-5 +kerning first=250 second=281 amount=-1 +kerning first=352 second=121 amount=-2 +kerning first=1046 second=1047 amount=-2 +kerning first=75 second=246 amount=-2 +kerning first=1063 second=1099 amount=-1 +kerning first=249 second=361 amount=-1 +kerning first=330 second=216 amount=-2 +kerning first=352 second=107 amount=-2 +kerning first=74 second=65 amount=-5 +kerning first=321 second=347 amount=-1 +kerning first=73 second=281 amount=-2 +kerning first=8217 second=375 amount=-1 +kerning first=321 second=361 amount=-2 +kerning first=200 second=336 amount=-1 +kerning first=249 second=347 amount=-2 +kerning first=244 second=107 amount=-1 +kerning first=376 second=382 amount=-3 +kerning first=228 second=371 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=316 second=107 amount=-1 +kerning first=8220 second=353 amount=-2 +kerning first=354 second=240 amount=-3 +kerning first=258 second=216 amount=-3 +kerning first=73 second=117 amount=-2 +kerning first=1049 second=1095 amount=-1 +kerning first=108 second=347 amount=-2 +kerning first=1101 second=1082 amount=-1 +kerning first=280 second=107 amount=-1 +kerning first=97 second=226 amount=-1 +kerning first=1031 second=1102 amount=-1 +kerning first=256 second=305 amount=-1 +kerning first=220 second=305 amount=-2 +kerning first=84 second=46 amount=-5 +kerning first=202 second=226 amount=-1 +kerning first=120 second=378 amount=-2 +kerning first=328 second=305 amount=-1 +kerning first=120 second=46 amount=-1 +kerning first=264 second=245 amount=-2 +kerning first=202 second=336 amount=-1 +kerning first=1104 second=1083 amount=-2 +kerning first=274 second=226 amount=-1 +kerning first=281 second=8250 amount=-2 +kerning first=83 second=72 amount=-3 +kerning first=346 second=76 amount=-3 +kerning first=291 second=102 amount=-1 +kerning first=310 second=226 amount=-1 +kerning first=280 second=266 amount=-1 +kerning first=364 second=305 amount=-2 +kerning first=346 second=226 amount=-2 +kerning first=274 second=76 amount=-2 +kerning first=310 second=336 amount=-3 +kerning first=363 second=102 amount=-1 +kerning first=211 second=219 amount=-1 +kerning first=382 second=226 amount=-1 +kerning first=245 second=8250 amount=-2 +kerning first=364 second=45 amount=-5 +kerning first=79 second=224 amount=-1 +kerning first=379 second=259 amount=-1 +kerning first=269 second=333 amount=-1 +kerning first=8218 second=86 amount=-6 +kerning first=381 second=252 amount=-3 +kerning first=288 second=316 amount=-1 +kerning first=8216 second=197 amount=-8 +kerning first=324 second=316 amount=-1 +kerning first=228 second=245 amount=-1 +kerning first=267 second=257 amount=-2 +kerning first=192 second=245 amount=-1 +kerning first=74 second=79 amount=-2 +kerning first=201 second=252 amount=-2 +kerning first=314 second=335 amount=-1 +kerning first=235 second=259 amount=-2 +kerning first=350 second=335 amount=-1 +kerning first=87 second=245 amount=-3 +kerning first=255 second=269 amount=-3 +kerning first=307 second=259 amount=-2 +kerning first=68 second=46 amount=-3 +kerning first=79 second=45 amount=-1 +kerning first=228 second=369 amount=-1 +kerning first=350 second=103 amount=-3 +kerning first=121 second=116 amount=-1 +kerning first=374 second=375 amount=-3 +kerning first=296 second=246 amount=-2 +kerning first=311 second=277 amount=-3 +kerning first=192 second=369 amount=-3 +kerning first=314 second=103 amount=-3 +kerning first=85 second=232 amount=-2 +kerning first=260 second=246 amount=-1 +kerning first=199 second=259 amount=-2 +kerning first=302 second=375 amount=-2 +kerning first=224 second=246 amount=-1 +kerning first=203 second=382 amount=-2 +kerning first=264 second=369 amount=-2 +kerning first=242 second=103 amount=-2 +kerning first=90 second=266 amount=-1 +kerning first=260 second=332 amount=-3 +kerning first=206 second=103 amount=-3 +kerning first=220 second=45 amount=-5 +kerning first=119 second=246 amount=-3 +kerning first=379 second=109 amount=-1 +kerning first=197 second=253 amount=-3 +kerning first=328 second=45 amount=-3 +kerning first=83 second=246 amount=-1 +kerning first=101 second=103 amount=-3 +kerning first=233 second=253 amount=-2 +kerning first=296 second=332 amount=-2 +kerning first=87 second=369 amount=-2 +kerning first=65 second=103 amount=-3 +kerning first=89 second=375 amount=-3 +kerning first=67 second=266 amount=-3 +kerning first=1063 second=1075 amount=-1 +kerning first=368 second=332 amount=-1 +kerning first=1027 second=1075 amount=-2 +kerning first=235 second=109 amount=-2 +kerning first=304 second=122 amount=-1 +kerning first=105 second=242 amount=-1 +kerning first=268 second=122 amount=-2 +kerning first=117 second=121 amount=-3 +kerning first=307 second=109 amount=-2 +kerning first=232 second=122 amount=-2 +kerning first=266 second=375 amount=-1 +kerning first=230 second=375 amount=-2 +kerning first=275 second=382 amount=-2 +kerning first=194 second=375 amount=-3 +kerning first=199 second=109 amount=-1 +kerning first=8220 second=224 amount=-3 +kerning first=240 second=371 amount=-1 +kerning first=347 second=382 amount=-2 +kerning first=376 second=122 amount=-3 +kerning first=354 second=242 amount=-3 +kerning first=266 second=115 amount=-2 +kerning first=197 second=370 amount=-3 +kerning first=302 second=115 amount=-2 +kerning first=346 second=198 amount=-4 +kerning first=211 second=80 amount=-2 +kerning first=220 second=345 amount=-1 +kerning first=194 second=115 amount=-2 +kerning first=377 second=121 amount=-3 +kerning first=115 second=223 amount=-1 +kerning first=230 second=115 amount=-2 +kerning first=338 second=220 amount=-2 +kerning first=73 second=119 amount=-2 +kerning first=375 second=289 amount=-3 +kerning first=109 second=119 amount=-3 +kerning first=334 second=8217 amount=-2 +kerning first=202 second=198 amount=-2 +kerning first=377 second=68 amount=-1 +kerning first=338 second=115 amount=-1 +kerning first=374 second=115 amount=-3 +kerning first=274 second=198 amount=-2 +kerning first=250 second=119 amount=-3 +kerning first=269 second=253 amount=-2 +kerning first=1052 second=1090 amount=-1 +kerning first=286 second=119 amount=-1 +kerning first=305 second=253 amount=-2 +kerning first=198 second=313 amount=-2 +kerning first=275 second=108 amount=-3 +kerning first=76 second=303 amount=-2 +kerning first=377 second=253 amount=-3 +kerning first=1088 second=1090 amount=-1 +kerning first=347 second=108 amount=-2 +kerning first=1070 second=1059 amount=-3 +kerning first=350 second=75 amount=-3 +kerning first=100 second=269 amount=-1 +kerning first=79 second=73 amount=-2 +kerning first=368 second=246 amount=-2 +kerning first=1076 second=1105 amount=-1 +kerning first=278 second=75 amount=-2 +kerning first=205 second=269 amount=-2 +kerning first=8250 second=310 amount=-5 +kerning first=101 second=335 amount=-1 +kerning first=379 second=231 amount=-1 +kerning first=216 second=196 amount=-4 +kerning first=277 second=269 amount=-1 +kerning first=1067 second=1098 amount=-1 +kerning first=233 second=225 amount=-2 +kerning first=206 second=335 amount=-2 +kerning first=310 second=71 amount=-3 +kerning first=240 second=328 amount=-1 +kerning first=269 second=225 amount=-2 +kerning first=288 second=196 amount=-3 +kerning first=213 second=44 amount=-3 +kerning first=65 second=363 amount=-3 +kerning first=98 second=108 amount=-2 +kerning first=101 second=363 amount=-2 +kerning first=262 second=253 amount=-1 +kerning first=374 second=286 amount=-3 +kerning first=203 second=108 amount=-1 +kerning first=65 second=335 amount=-1 +kerning first=302 second=286 amount=-2 +kerning first=261 second=249 amount=-1 +kerning first=242 second=363 amount=-1 +kerning first=338 second=286 amount=-1 +kerning first=44 second=8221 amount=-5 +kerning first=334 second=120 amount=-1 +kerning first=278 second=363 amount=-2 +kerning first=201 second=280 amount=-2 +kerning first=84 second=203 amount=-1 +kerning first=219 second=102 amount=-1 +kerning first=314 second=363 amount=-2 +kerning first=266 second=286 amount=-3 +kerning first=83 second=218 amount=-3 +kerning first=350 second=363 amount=-1 +kerning first=89 second=115 amount=-3 +kerning first=305 second=225 amount=-1 +kerning first=235 second=231 amount=-1 +kerning first=225 second=46 amount=-1 +kerning first=332 second=218 amount=-1 +kerning first=267 second=378 amount=-2 +kerning first=261 second=46 amount=-1 +kerning first=377 second=225 amount=-1 +kerning first=228 second=273 amount=-1 +kerning first=89 second=286 amount=-3 +kerning first=381 second=280 amount=-1 +kerning first=260 second=218 amount=-3 +kerning first=199 second=231 amount=-2 +kerning first=212 second=261 amount=-1 +kerning first=110 second=367 amount=-1 +kerning first=248 second=261 amount=-1 +kerning first=209 second=210 amount=-2 +kerning first=284 second=261 amount=-1 +kerning first=352 second=8220 amount=-2 +kerning first=68 second=296 amount=-2 +kerning first=316 second=8220 amount=-3 +kerning first=1052 second=1092 amount=-1 +kerning first=67 second=325 amount=-3 +kerning first=71 second=261 amount=-1 +kerning first=363 second=275 amount=-1 +kerning first=86 second=327 amount=-1 +kerning first=107 second=261 amount=-2 +kerning first=244 second=8220 amount=-2 +kerning first=204 second=211 amount=-2 +kerning first=261 second=251 amount=-1 +kerning first=1092 second=1117 amount=-1 +kerning first=90 second=352 amount=-1 +kerning first=208 second=8220 amount=-2 +kerning first=251 second=250 amount=-1 +kerning first=198 second=171 amount=-2 +kerning first=253 second=112 amount=-2 +kerning first=240 second=326 amount=-1 +kerning first=71 second=378 amount=-1 +kerning first=217 second=112 amount=-2 +kerning first=317 second=296 amount=-2 +kerning first=212 second=378 amount=-2 +kerning first=1042 second=1025 amount=-2 +kerning first=323 second=250 amount=-2 +kerning first=270 second=171 amount=-1 +kerning first=90 second=206 amount=-1 +kerning first=72 second=235 amount=-2 +kerning first=287 second=250 amount=-1 +kerning first=232 second=351 amount=-2 +kerning first=112 second=112 amount=-1 +kerning first=108 second=235 amount=-1 +kerning first=356 second=261 amount=-5 +kerning first=76 second=112 amount=-2 +kerning first=99 second=326 amount=-2 +kerning first=99 second=328 amount=-2 +kerning first=249 second=235 amount=-1 +kerning first=1104 second=1096 amount=-1 +kerning first=75 second=288 amount=-3 +kerning first=108 second=237 amount=-1 +kerning first=193 second=113 amount=-1 +kerning first=217 second=262 amount=-1 +kerning first=323 second=365 amount=-2 +kerning first=210 second=366 amount=-1 +kerning first=374 second=113 amount=-3 +kerning first=287 second=365 amount=-1 +kerning first=1057 second=1081 amount=-1 +kerning first=251 second=365 amount=-1 +kerning first=284 second=378 amount=-1 +kerning first=244 second=353 amount=-2 +kerning first=325 second=262 amount=-2 +kerning first=232 second=98 amount=-2 +kerning first=81 second=45 amount=-1 +kerning first=280 second=353 amount=-1 +kerning first=224 second=100 amount=-1 +kerning first=1079 second=1094 amount=-1 +kerning first=354 second=366 amount=-1 +kerning first=356 second=378 amount=-3 +kerning first=316 second=353 amount=-2 +kerning first=260 second=100 amount=-1 +kerning first=110 second=365 amount=-1 +kerning first=325 second=112 amount=-1 +kerning first=199 second=83 amount=-3 +kerning first=352 second=353 amount=-1 +kerning first=296 second=100 amount=-2 +kerning first=282 second=366 amount=-2 +kerning first=289 second=112 amount=-1 +kerning first=321 second=87 amount=-3 +kerning first=291 second=275 amount=-2 +kerning first=67 second=353 amount=-2 +kerning first=327 second=249 amount=-1 +kerning first=200 second=85 amount=-2 +kerning first=213 second=87 amount=-2 +kerning first=327 second=275 amount=-2 +kerning first=103 second=353 amount=-3 +kerning first=364 second=223 amount=-2 +kerning first=195 second=352 amount=-3 +kerning first=363 second=249 amount=-1 +kerning first=219 second=275 amount=-2 +kerning first=83 second=100 amount=-1 +kerning first=1045 second=1078 amount=-2 +kerning first=255 second=249 amount=-1 +kerning first=255 second=275 amount=-3 +kerning first=1047 second=1091 amount=-1 +kerning first=119 second=100 amount=-3 +kerning first=291 second=249 amount=-1 +kerning first=379 second=83 amount=-1 +kerning first=302 second=113 amount=-2 +kerning first=69 second=366 amount=-2 +kerning first=220 second=223 amount=-2 +kerning first=266 second=113 amount=-2 +kerning first=76 second=262 amount=-1 +kerning first=85 second=233 amount=-2 +kerning first=310 second=275 amount=-2 +kerning first=78 second=275 amount=-2 +kerning first=317 second=210 amount=-1 +kerning first=194 second=113 amount=-1 +kerning first=90 second=324 amount=-1 +kerning first=88 second=361 amount=-3 +kerning first=321 second=89 amount=-3 +kerning first=67 second=44 amount=-1 +kerning first=121 second=233 amount=-3 +kerning first=352 second=379 amount=-1 +kerning first=76 second=84 amount=-3 +kerning first=71 second=289 amount=-3 +kerning first=287 second=339 amount=-2 +kerning first=262 second=233 amount=-2 +kerning first=107 second=289 amount=-2 +kerning first=323 second=339 amount=-2 +kerning first=226 second=233 amount=-1 +kerning first=217 second=114 amount=-1 +kerning first=245 second=107 amount=-1 +kerning first=203 second=194 amount=-2 +kerning first=253 second=114 amount=-1 +kerning first=298 second=233 amount=-2 +kerning first=187 second=274 amount=-5 +kerning first=72 second=252 amount=-1 +kerning first=1100 second=1082 amount=-1 +kerning first=112 second=114 amount=-1 +kerning first=78 second=249 amount=-1 +kerning first=284 second=289 amount=-3 +kerning first=370 second=233 amount=-2 +kerning first=213 second=89 amount=-2 +kerning first=67 second=379 amount=-2 +kerning first=74 second=339 amount=-2 +kerning first=375 second=324 amount=-2 +kerning first=321 second=237 amount=-2 +kerning first=267 second=324 amount=-2 +kerning first=248 second=110 amount=-1 +kerning first=8250 second=83 amount=-3 +kerning first=262 second=350 amount=-3 +kerning first=251 second=339 amount=-1 +kerning first=231 second=324 amount=-2 +kerning first=67 second=381 amount=-2 +kerning first=249 second=237 amount=-2 +kerning first=1051 second=1116 amount=-1 +kerning first=277 second=187 amount=-2 +kerning first=339 second=324 amount=-2 +kerning first=213 second=237 amount=-1 +kerning first=303 second=324 amount=-2 +kerning first=280 second=379 amount=-1 +kerning first=356 second=110 amount=-3 +kerning first=370 second=350 amount=-3 +kerning first=321 second=209 amount=-2 +kerning first=363 second=277 amount=-1 +kerning first=333 second=345 amount=-1 +kerning first=346 second=8217 amount=-2 +kerning first=80 second=111 amount=-1 +kerning first=89 second=260 amount=-6 +kerning first=1093 second=1108 amount=-2 +kerning first=334 second=350 amount=-1 +kerning first=376 second=119 amount=-3 +kerning first=213 second=209 amount=-2 +kerning first=255 second=277 amount=-3 +kerning first=217 second=234 amount=-2 +kerning first=219 second=277 amount=-2 +kerning first=76 second=86 amount=-3 +kerning first=327 second=277 amount=-2 +kerning first=75 second=316 amount=-1 +kerning first=289 second=234 amount=-2 +kerning first=266 second=260 amount=-3 +kerning first=291 second=277 amount=-2 +kerning first=187 second=302 amount=-5 +kerning first=325 second=234 amount=-2 +kerning first=78 second=277 amount=-2 +kerning first=280 second=351 amount=-1 +kerning first=327 second=44 amount=-1 +kerning first=280 second=264 amount=-1 +kerning first=202 second=76 amount=-2 +kerning first=338 second=260 amount=-2 +kerning first=1037 second=1054 amount=-1 +kerning first=356 second=289 amount=-4 +kerning first=244 second=351 amount=-2 +kerning first=365 second=111 amount=-1 +kerning first=1056 second=1089 amount=-1 +kerning first=352 second=351 amount=-1 +kerning first=332 second=72 amount=-2 +kerning first=317 second=212 amount=-1 +kerning first=1037 second=1072 amount=-1 +kerning first=316 second=351 amount=-2 +kerning first=1058 second=1102 amount=-2 +kerning first=187 second=103 amount=-3 +kerning first=374 second=260 amount=-6 +kerning first=103 second=351 amount=-3 +kerning first=287 second=367 amount=-1 +kerning first=67 second=351 amount=-2 +kerning first=67 second=264 amount=-3 +kerning first=221 second=111 amount=-3 +kerning first=323 second=367 amount=-2 +kerning first=198 second=199 amount=-1 +kerning first=321 second=74 amount=-1 +kerning first=272 second=291 amount=-1 +kerning first=251 second=367 amount=-1 +kerning first=1052 second=1075 amount=-1 +kerning first=209 second=212 amount=-2 +kerning first=262 second=364 amount=-2 +kerning first=257 second=267 amount=-1 +kerning first=1043 second=1074 amount=-2 +kerning first=286 second=8249 amount=-3 +kerning first=65 second=361 amount=-3 +kerning first=258 second=351 amount=-2 +kerning first=206 second=361 amount=-2 +kerning first=100 second=277 amount=-1 +kerning first=366 second=351 amount=-2 +kerning first=1090 second=1077 amount=-1 +kerning first=8250 second=85 amount=-4 +kerning first=221 second=267 amount=-3 +kerning first=221 second=377 amount=-3 +kerning first=354 second=114 amount=-1 +kerning first=73 second=8249 amount=-4 +kerning first=278 second=361 amount=-2 +kerning first=117 second=351 amount=-2 +kerning first=235 second=111 amount=-1 +kerning first=109 second=8249 amount=-3 +kerning first=242 second=361 amount=-1 +kerning first=336 second=257 amount=-1 +kerning first=201 second=367 amount=-2 +kerning first=334 second=364 amount=-1 +kerning first=253 second=254 amount=-1 +kerning first=307 second=111 amount=-1 +kerning first=66 second=287 amount=-4 +kerning first=314 second=361 amount=-2 +kerning first=365 second=267 amount=-1 +kerning first=289 second=254 amount=-1 +kerning first=264 second=257 amount=-2 +kerning first=262 second=261 amount=-2 +kerning first=365 second=117 amount=-1 +kerning first=298 second=261 amount=-2 +kerning first=251 second=244 amount=-1 +kerning first=102 second=287 amount=-2 +kerning first=334 second=261 amount=-1 +kerning first=287 second=244 amount=-2 +kerning first=381 second=121 amount=-3 +kerning first=76 second=254 amount=-2 +kerning first=282 second=374 amount=-1 +kerning first=113 second=44 amount=-2 +kerning first=243 second=287 amount=-2 +kerning first=370 second=261 amount=-3 +kerning first=323 second=244 amount=-2 +kerning first=112 second=254 amount=-1 +kerning first=89 second=274 amount=-1 +kerning first=207 second=287 amount=-3 +kerning first=85 second=261 amount=-3 +kerning first=1101 second=1094 amount=-1 +kerning first=8217 second=269 amount=-3 +kerning first=210 second=374 amount=-2 +kerning first=369 second=273 amount=-1 +kerning first=374 second=274 amount=-1 +kerning first=315 second=287 amount=-3 +kerning first=121 second=261 amount=-3 +kerning first=201 second=381 amount=-1 +kerning first=279 second=287 amount=-3 +kerning first=88 second=112 amount=-1 +kerning first=350 second=237 amount=-3 +kerning first=226 second=261 amount=-1 +kerning first=338 second=210 amount=-1 +kerning first=314 second=237 amount=-1 +kerning first=8216 second=219 amount=-1 +kerning first=266 second=274 amount=-3 +kerning first=351 second=287 amount=-3 +kerning first=212 second=171 amount=-1 +kerning first=1058 second=1104 amount=-1 +kerning first=242 second=347 amount=-2 +kerning first=70 second=197 amount=-3 +kerning first=201 second=250 amount=-2 +kerning first=206 second=347 amount=-2 +kerning first=221 second=281 amount=-3 +kerning first=201 second=107 amount=-1 +kerning first=366 second=337 amount=-2 +kerning first=379 second=97 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=226 second=378 amount=-1 +kerning first=257 second=281 amount=-1 +kerning first=330 second=337 amount=-2 +kerning first=101 second=347 amount=-2 +kerning first=211 second=197 amount=-4 +kerning first=221 second=117 amount=-2 +kerning first=65 second=347 amount=-2 +kerning first=71 second=171 amount=-3 +kerning first=282 second=220 amount=-2 +kerning first=107 second=171 amount=-3 +kerning first=80 second=281 amount=-1 +kerning first=350 second=207 amount=-3 +kerning first=257 second=117 amount=-1 +kerning first=89 second=288 amount=-3 +kerning first=197 second=354 amount=-6 +kerning first=381 second=264 amount=-1 +kerning first=268 second=82 amount=-3 +kerning first=235 second=371 amount=-2 +kerning first=194 second=288 amount=-3 +kerning first=354 second=100 amount=-3 +kerning first=8218 second=229 amount=-2 +kerning first=81 second=379 amount=-2 +kerning first=307 second=371 amount=-1 +kerning first=87 second=257 amount=-5 +kerning first=356 second=171 amount=-5 +kerning first=290 second=304 amount=-1 +kerning first=228 second=271 amount=-1 +kerning first=298 second=378 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=289 second=240 amount=-2 +kerning first=106 second=314 amount=-2 +kerning first=350 second=347 amount=-1 +kerning first=377 second=354 amount=-2 +kerning first=325 second=240 amount=-2 +kerning first=201 second=264 amount=-1 +kerning first=314 second=347 amount=-2 +kerning first=374 second=243 amount=-3 +kerning first=217 second=240 amount=-2 +kerning first=1030 second=1054 amount=-1 +kerning first=114 second=289 amount=-2 +kerning first=1094 second=1104 amount=-1 +kerning first=278 second=347 amount=-1 +kerning first=253 second=240 amount=-3 +kerning first=200 second=317 amount=-2 +kerning first=195 second=220 amount=-3 +kerning first=222 second=77 amount=-2 +kerning first=284 second=379 amount=-2 +kerning first=283 second=314 amount=-3 +kerning first=258 second=214 amount=-3 +kerning first=272 second=317 amount=-2 +kerning first=268 second=298 amount=-3 +kerning first=258 second=71 amount=-3 +kerning first=355 second=314 amount=-1 +kerning first=262 second=90 amount=-2 +kerning first=86 second=207 amount=-1 +kerning first=370 second=90 amount=-1 +kerning first=110 second=224 amount=-1 +kerning first=1042 second=1024 amount=-2 +kerning first=74 second=224 amount=-2 +kerning first=376 second=298 amount=-1 +kerning first=1065 second=1108 amount=-1 +kerning first=313 second=291 amount=-3 +kerning first=1025 second=1024 amount=-1 +kerning first=277 second=291 amount=-3 +kerning first=195 second=84 amount=-6 +kerning first=113 second=318 amount=-2 +kerning first=287 second=224 amount=-3 +kerning first=241 second=291 amount=-2 +kerning first=199 second=97 amount=-2 +kerning first=204 second=213 amount=-2 +kerning first=251 second=224 amount=-1 +kerning first=205 second=291 amount=-3 +kerning first=104 second=324 amount=-1 +kerning first=259 second=287 amount=-2 +kerning first=90 second=84 amount=-2 +kerning first=256 second=85 amount=-3 +kerning first=245 second=324 amount=-1 +kerning first=200 second=200 amount=-2 +kerning first=371 second=311 amount=-1 +kerning first=254 second=318 amount=-2 +kerning first=323 second=224 amount=-2 +kerning first=100 second=291 amount=-2 +kerning first=307 second=97 amount=-2 +kerning first=81 second=77 amount=-2 +kerning first=366 second=71 amount=-1 +kerning first=335 second=311 amount=-1 +kerning first=258 second=337 amount=-1 +kerning first=1074 second=1114 amount=-1 +kerning first=45 second=77 amount=-5 +kerning first=330 second=71 amount=-2 +kerning first=376 second=245 amount=-3 +kerning first=235 second=97 amount=-2 +kerning first=263 second=311 amount=-2 +kerning first=1043 second=1088 amount=-2 +kerning first=227 second=311 amount=-1 +kerning first=85 second=90 amount=-1 +kerning first=117 second=337 amount=-1 +kerning first=1079 second=1088 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=304 second=284 amount=-2 +kerning first=1024 second=1025 amount=-1 +kerning first=335 second=187 amount=-2 +kerning first=362 second=44 amount=-5 +kerning first=45 second=85 amount=-4 +kerning first=90 second=344 amount=-1 +kerning first=90 second=234 amount=-1 +kerning first=326 second=44 amount=-1 +kerning first=381 second=381 amount=-1 +kerning first=107 second=271 amount=-3 +kerning first=86 second=325 amount=-1 +kerning first=236 second=303 amount=-1 +kerning first=268 second=284 amount=-3 +kerning first=1060 second=1025 amount=-1 +kerning first=1044 second=1086 amount=-1 +kerning first=195 second=234 amount=-1 +kerning first=1101 second=1090 amount=-1 +kerning first=262 second=104 amount=-1 +kerning first=218 second=44 amount=-5 +kerning first=226 second=104 amount=-1 +kerning first=196 second=284 amount=-3 +kerning first=68 second=310 amount=-2 +kerning first=381 second=101 amount=-1 +kerning first=290 second=44 amount=-3 +kerning first=380 second=303 amount=-1 +kerning first=90 second=70 amount=-1 +kerning first=121 second=104 amount=-2 +kerning first=310 second=81 amount=-3 +kerning first=254 second=44 amount=-3 +kerning first=272 second=194 amount=-4 +kerning first=87 second=251 amount=-2 +kerning first=375 second=234 amount=-3 +kerning first=99 second=227 amount=-2 +kerning first=1070 second=1067 amount=-1 +kerning first=200 second=194 amount=-2 +kerning first=192 second=251 amount=-3 +kerning first=45 second=351 amount=-1 +kerning first=86 second=187 amount=-3 +kerning first=1074 second=1100 amount=-1 +kerning first=199 second=111 amount=-2 +kerning first=258 second=85 amount=-3 +kerning first=264 second=251 amount=-2 +kerning first=205 second=277 amount=-2 +kerning first=231 second=234 amount=-1 +kerning first=222 second=85 amount=-1 +kerning first=228 second=251 amount=-1 +kerning first=267 second=234 amount=-1 +kerning first=200 second=303 amount=-1 +kerning first=286 second=45 amount=-3 +kerning first=240 second=227 amount=-1 +kerning first=376 second=284 amount=-3 +kerning first=277 second=277 amount=-1 +kerning first=204 second=227 amount=-2 +kerning first=317 second=310 amount=-2 +kerning first=339 second=234 amount=-1 +kerning first=1047 second=1093 amount=-3 +kerning first=316 second=105 amount=-1 +kerning first=8218 second=87 amount=-6 +kerning first=284 second=118 amount=-1 +kerning first=334 second=370 amount=-1 +kerning first=65 second=245 amount=-1 +kerning first=100 second=283 amount=-1 +kerning first=89 second=114 amount=-1 +kerning first=352 second=105 amount=-3 +kerning first=248 second=118 amount=-2 +kerning first=69 second=368 amount=-2 +kerning first=244 second=105 amount=-1 +kerning first=356 second=118 amount=-3 +kerning first=366 second=345 amount=-1 +kerning first=280 second=105 amount=-1 +kerning first=210 second=270 amount=-2 +kerning first=1090 second=1083 amount=-3 +kerning first=89 second=280 amount=-1 +kerning first=277 second=283 amount=-1 +kerning first=210 second=368 amount=-1 +kerning first=208 second=105 amount=-1 +kerning first=364 second=335 amount=-2 +kerning first=71 second=118 amount=-1 +kerning first=206 second=245 amount=-2 +kerning first=67 second=105 amount=-1 +kerning first=69 second=270 amount=-2 +kerning first=205 second=283 amount=-2 +kerning first=103 second=105 amount=-2 +kerning first=101 second=245 amount=-1 +kerning first=88 second=351 amount=-1 +kerning first=366 second=228 amount=-3 +kerning first=1098 second=1078 amount=-2 +kerning first=354 second=368 amount=-1 +kerning first=330 second=228 amount=-2 +kerning first=220 second=335 amount=-2 +kerning first=262 second=241 amount=-1 +kerning first=105 second=108 amount=-2 +kerning first=256 second=335 amount=-1 +kerning first=370 second=241 amount=-2 +kerning first=246 second=108 amount=-2 +kerning first=282 second=368 amount=-2 +kerning first=1054 second=1083 amount=-2 +kerning first=222 second=228 amount=-1 +kerning first=121 second=241 amount=-2 +kerning first=282 second=270 amount=-2 +kerning first=85 second=241 amount=-2 +kerning first=282 second=108 amount=-1 +kerning first=117 second=228 amount=-1 +kerning first=86 second=193 amount=-6 +kerning first=262 second=370 amount=-2 +kerning first=81 second=228 amount=-1 +kerning first=354 second=270 amount=-1 +kerning first=369 second=324 amount=-1 +kerning first=354 second=122 amount=-3 +kerning first=366 second=331 amount=-2 +kerning first=268 second=278 amount=-3 +kerning first=282 second=256 amount=-2 +kerning first=334 second=356 amount=-2 +kerning first=282 second=122 amount=-2 +kerning first=210 second=256 amount=-4 +kerning first=246 second=122 amount=-2 +kerning first=206 second=231 amount=-2 +kerning first=262 second=356 amount=-1 +kerning first=236 second=363 amount=-1 +kerning first=197 second=362 amount=-3 +kerning first=248 second=116 amount=-1 +kerning first=376 second=278 amount=-1 +kerning first=298 second=255 amount=-2 +kerning first=117 second=331 amount=-1 +kerning first=356 second=116 amount=-1 +kerning first=314 second=231 amount=-1 +kerning first=354 second=256 amount=-6 +kerning first=262 second=255 amount=-1 +kerning first=350 second=231 amount=-1 +kerning first=8222 second=98 amount=-1 +kerning first=226 second=255 amount=-3 +kerning first=266 second=280 amount=-3 +kerning first=338 second=266 amount=-1 +kerning first=278 second=81 amount=-1 +kerning first=350 second=245 amount=-1 +kerning first=374 second=266 amount=-3 +kerning first=338 second=280 amount=-2 +kerning first=314 second=245 amount=-1 +kerning first=266 second=266 amount=-3 +kerning first=85 second=255 amount=-1 +kerning first=374 second=280 amount=-1 +kerning first=1075 second=1103 amount=-2 +kerning first=302 second=266 amount=-2 +kerning first=210 second=122 amount=-2 +kerning first=65 second=231 amount=-1 +kerning first=117 second=345 amount=-1 +kerning first=1074 second=1101 amount=-1 +kerning first=367 second=271 amount=-1 +kerning first=1047 second=1098 amount=-1 +kerning first=101 second=231 amount=-1 +kerning first=45 second=65 amount=-4 +kerning first=105 second=122 amount=-1 +kerning first=81 second=65 amount=-4 +kerning first=89 second=266 amount=-3 +kerning first=366 second=214 amount=-1 +kerning first=69 second=122 amount=-2 +kerning first=8217 second=277 amount=-3 +kerning first=377 second=80 amount=-1 +kerning first=222 second=65 amount=-4 +kerning first=364 second=67 amount=-1 +kerning first=314 second=229 amount=-2 +kerning first=350 second=229 amount=-2 +kerning first=314 second=279 amount=-1 +kerning first=211 second=217 amount=-1 +kerning first=210 second=106 amount=-1 +kerning first=263 second=305 amount=-2 +kerning first=203 second=282 amount=-2 +kerning first=246 second=106 amount=-2 +kerning first=256 second=67 amount=-3 +kerning first=98 second=103 amount=-2 +kerning first=1043 second=1084 amount=-2 +kerning first=227 second=305 amount=-1 +kerning first=83 second=346 amount=-1 +kerning first=366 second=65 amount=-4 +kerning first=211 second=68 amount=-2 +kerning first=105 second=106 amount=-2 +kerning first=220 second=67 amount=-1 +kerning first=206 second=81 amount=-2 +kerning first=8222 second=380 amount=-3 +kerning first=8216 second=328 amount=-1 +kerning first=323 second=230 amount=-2 +kerning first=296 second=346 amount=-2 +kerning first=364 second=333 amount=-2 +kerning first=235 second=353 amount=-2 +kerning first=302 second=346 amount=-2 +kerning first=371 second=305 amount=-2 +kerning first=260 second=346 amount=-3 +kerning first=251 second=230 amount=-1 +kerning first=303 second=109 amount=-2 +kerning first=287 second=230 amount=-3 +kerning first=260 second=289 amount=-3 +kerning first=65 second=243 amount=-1 +kerning first=381 second=82 amount=-1 +kerning first=202 second=204 amount=-2 +kerning first=243 second=307 amount=-1 +kerning first=8217 second=289 amount=-4 +kerning first=365 second=281 amount=-1 +kerning first=69 second=256 amount=-2 +kerning first=74 second=230 amount=-3 +kerning first=274 second=204 amount=-2 +kerning first=368 second=346 amount=-3 +kerning first=311 second=275 amount=-3 +kerning first=1025 second=1070 amount=-1 +kerning first=209 second=259 amount=-2 +kerning first=110 second=230 amount=-1 +kerning first=332 second=346 amount=-1 +kerning first=256 second=333 amount=-1 +kerning first=8216 second=225 amount=-3 +kerning first=211 second=203 amount=-2 +kerning first=314 second=243 amount=-1 +kerning first=346 second=104 amount=-2 +kerning first=90 second=332 amount=-1 +kerning first=101 second=243 amount=-1 +kerning first=74 second=244 amount=-2 +kerning first=1057 second=1060 amount=-1 +kerning first=195 second=332 amount=-3 +kerning first=279 second=307 amount=-2 +kerning first=310 second=218 amount=-2 +kerning first=206 second=243 amount=-2 +kerning first=313 second=334 amount=-1 +kerning first=8217 second=275 amount=-3 +kerning first=323 second=79 amount=-2 +kerning first=274 second=218 amount=-2 +kerning first=246 second=120 amount=-3 +kerning first=315 second=192 amount=-2 +kerning first=198 second=374 amount=-1 +kerning first=282 second=120 amount=-1 +kerning first=101 second=229 amount=-2 +kerning first=327 second=333 amount=-2 +kerning first=1045 second=1084 amount=-1 +kerning first=354 second=120 amount=-2 +kerning first=251 second=263 amount=-1 +kerning first=203 second=268 amount=-1 +kerning first=69 second=120 amount=-1 +kerning first=105 second=120 amount=-1 +kerning first=278 second=229 amount=-1 +kerning first=70 second=334 amount=-1 +kerning first=8222 second=366 amount=-3 +kerning first=345 second=347 amount=-1 +kerning first=66 second=192 amount=-5 +kerning first=210 second=120 amount=-1 +kerning first=206 second=229 amount=-2 +kerning first=365 second=279 amount=-1 +kerning first=253 second=242 amount=-3 +kerning first=249 second=229 amount=-1 +kerning first=205 second=289 amount=-3 +kerning first=258 second=339 amount=-1 +kerning first=368 second=232 amount=-2 +kerning first=217 second=242 amount=-2 +kerning first=241 second=289 amount=-2 +kerning first=117 second=339 amount=-1 +kerning first=325 second=242 amount=-2 +kerning first=352 second=99 amount=-1 +kerning first=87 second=109 amount=-3 +kerning first=277 second=289 amount=-3 +kerning first=289 second=242 amount=-2 +kerning first=213 second=229 amount=-1 +kerning first=316 second=99 amount=-1 +kerning first=313 second=289 amount=-3 +kerning first=366 second=339 amount=-2 +kerning first=260 second=232 amount=-1 +kerning first=221 second=279 amount=-3 +kerning first=1072 second=1096 amount=-1 +kerning first=76 second=106 amount=-2 +kerning first=278 second=89 amount=-1 +kerning first=224 second=232 amount=-1 +kerning first=1108 second=1096 amount=-1 +kerning first=268 second=282 amount=-3 +kerning first=330 second=339 amount=-2 +kerning first=116 second=119 amount=-1 +kerning first=296 second=232 amount=-2 +kerning first=257 second=279 amount=-1 +kerning first=201 second=379 amount=-1 +kerning first=83 second=232 amount=-1 +kerning first=253 second=106 amount=-2 +kerning first=221 second=119 amount=-3 +kerning first=90 second=346 amount=-1 +kerning first=112 second=106 amount=-2 +kerning first=257 second=119 amount=-3 +kerning first=1038 second=1072 amount=-4 +kerning first=119 second=232 amount=-3 +kerning first=103 second=99 amount=-2 +kerning first=8220 second=218 amount=-1 +kerning first=365 second=119 amount=-3 +kerning first=8222 second=254 amount=-1 +kerning first=67 second=99 amount=-2 +kerning first=377 second=82 amount=-1 +kerning first=1058 second=1116 amount=-2 +kerning first=203 second=344 amount=-2 +kerning first=100 second=289 amount=-2 +kerning first=381 second=379 amount=-1 +kerning first=368 second=275 amount=-2 +kerning first=195 second=346 amount=-3 +kerning first=68 second=44 amount=-3 +kerning first=89 second=361 amount=-2 +kerning first=211 second=66 amount=-2 +kerning first=107 second=267 amount=-3 +kerning first=274 second=212 amount=-1 +kerning first=107 second=269 amount=-3 +kerning first=104 second=316 amount=-1 +kerning first=1043 second=1072 amount=-3 +kerning first=258 second=79 amount=-3 +kerning first=8222 second=381 amount=-1 +kerning first=222 second=69 amount=-2 +kerning first=245 second=316 amount=-2 +kerning first=90 second=72 amount=-1 +kerning first=81 second=69 amount=-2 +kerning first=366 second=79 amount=-1 +kerning first=86 second=199 amount=-3 +kerning first=193 second=216 amount=-3 +kerning first=356 second=269 amount=-3 +kerning first=1063 second=1089 amount=-1 +kerning first=1088 second=1076 amount=-2 +kerning first=363 second=8217 amount=-3 +kerning first=1027 second=1089 amount=-3 +kerning first=330 second=79 amount=-2 +kerning first=72 second=229 amount=-2 +kerning first=1099 second=1089 amount=-1 +kerning first=272 second=192 amount=-4 +kerning first=108 second=229 amount=-2 +kerning first=90 second=76 amount=-1 +kerning first=65 second=89 amount=-6 +kerning first=310 second=212 amount=-3 +kerning first=211 second=205 amount=-2 +kerning first=88 second=216 amount=-3 +kerning first=200 second=192 amount=-2 +kerning first=192 second=8221 amount=-5 +kerning first=235 second=245 amount=-1 +kerning first=267 second=226 amount=-2 +kerning first=8222 second=368 amount=-3 +kerning first=228 second=8221 amount=-3 +kerning first=218 second=46 amount=-5 +kerning first=199 second=245 amount=-2 +kerning first=303 second=226 amount=-2 +kerning first=370 second=102 amount=-1 +kerning first=8250 second=324 amount=-2 +kerning first=339 second=226 amount=-2 +kerning first=82 second=286 amount=-3 +kerning first=375 second=226 amount=-3 +kerning first=242 second=229 amount=-1 +kerning first=381 second=266 amount=-1 +kerning first=1117 second=1086 amount=-1 +kerning first=379 second=245 amount=-1 +kerning first=216 second=46 amount=-3 +kerning first=1081 second=1086 amount=-1 +kerning first=1025 second=1083 amount=-1 +kerning first=226 second=102 amount=-1 +kerning first=307 second=245 amount=-1 +kerning first=1061 second=1083 amount=-2 +kerning first=262 second=102 amount=-2 +kerning first=216 second=296 amount=-2 +kerning first=317 second=316 amount=-2 +kerning first=263 second=45 amount=-2 +kerning first=288 second=296 amount=-1 +kerning first=353 second=316 amount=-2 +kerning first=371 second=45 amount=-2 +kerning first=280 second=252 amount=-2 +kerning first=272 second=202 amount=-2 +kerning first=84 second=290 amount=-3 +kerning first=108 second=335 amount=-1 +kerning first=200 second=202 amount=-2 +kerning first=67 second=252 amount=-2 +kerning first=249 second=335 amount=-1 +kerning first=231 second=226 amount=-2 +kerning first=103 second=252 amount=-1 +kerning first=202 second=206 amount=-2 +kerning first=264 second=259 amount=-2 +kerning first=291 second=116 amount=-1 +kerning first=85 second=253 amount=-1 +kerning first=284 second=171 amount=-3 +kerning first=255 second=116 amount=-1 +kerning first=197 second=356 amount=-6 +kerning first=274 second=206 amount=-2 +kerning first=336 second=259 amount=-1 +kerning first=363 second=116 amount=-1 +kerning first=379 second=103 amount=-3 +kerning first=325 second=246 amount=-2 +kerning first=377 second=200 amount=-1 +kerning first=226 second=253 amount=-3 +kerning first=196 second=79 amount=-3 +kerning first=346 second=206 amount=-3 +kerning first=87 second=259 amount=-5 +kerning first=316 second=252 amount=-2 +kerning first=307 second=103 amount=-3 +kerning first=230 second=100 amount=-1 +kerning first=1079 second=1082 amount=-1 +kerning first=253 second=246 amount=-3 +kerning first=352 second=252 amount=-1 +kerning first=217 second=246 amount=-2 +kerning first=381 second=375 amount=-3 +kerning first=65 second=83 amount=-3 +kerning first=235 second=103 amount=-3 +kerning first=212 second=323 amount=-2 +kerning first=203 second=122 amount=-2 +kerning first=246 second=382 amount=-2 +kerning first=379 second=369 amount=-3 +kerning first=282 second=382 amount=-2 +kerning first=206 second=83 amount=-2 +kerning first=98 second=122 amount=-2 +kerning first=201 second=266 amount=-1 +kerning first=262 second=362 amount=-2 +kerning first=354 second=382 amount=-3 +kerning first=80 second=279 amount=-1 +kerning first=278 second=83 amount=-2 +kerning first=347 second=122 amount=-2 +kerning first=69 second=382 amount=-2 +kerning first=235 second=369 amount=-2 +kerning first=377 second=356 amount=-2 +kerning first=105 second=382 amount=-1 +kerning first=199 second=369 amount=-2 +kerning first=90 second=336 amount=-1 +kerning first=350 second=83 amount=-1 +kerning first=275 second=122 amount=-2 +kerning first=307 second=369 amount=-1 +kerning first=264 second=109 amount=-1 +kerning first=210 second=382 amount=-2 +kerning first=195 second=336 amount=-3 +kerning first=1119 second=1105 amount=-1 +kerning first=253 second=248 amount=-3 +kerning first=69 second=380 amount=-2 +kerning first=1079 second=1080 amount=-1 +kerning first=289 second=248 amount=-2 +kerning first=105 second=380 amount=-1 +kerning first=257 second=273 amount=-1 +kerning first=1083 second=1105 amount=-1 +kerning first=317 second=198 amount=-2 +kerning first=217 second=248 amount=-2 +kerning first=249 second=223 amount=-1 +kerning first=210 second=380 amount=-2 +kerning first=363 second=263 amount=-1 +kerning first=68 second=198 amount=-4 +kerning first=202 second=330 amount=-2 +kerning first=269 second=233 amount=-1 +kerning first=1077 second=1107 amount=-1 +kerning first=201 second=115 amount=-1 +kerning first=101 second=355 amount=-1 +kerning first=233 second=233 amount=-1 +kerning first=65 second=355 amount=-1 +kerning first=219 second=263 amount=-2 +kerning first=321 second=73 amount=-2 +kerning first=350 second=355 amount=-1 +kerning first=255 second=263 amount=-3 +kerning first=103 second=365 amount=-1 +kerning first=314 second=355 amount=-1 +kerning first=291 second=263 amount=-2 +kerning first=67 second=365 amount=-2 +kerning first=84 second=298 amount=-1 +kerning first=200 second=315 amount=-2 +kerning first=345 second=115 amount=-1 +kerning first=377 second=233 amount=-1 +kerning first=381 second=115 amount=-2 +kerning first=242 second=355 amount=-1 +kerning first=1045 second=1090 amount=-3 +kerning first=78 second=263 amount=-2 +kerning first=213 second=73 amount=-2 +kerning first=213 second=75 amount=-2 +kerning first=219 second=110 amount=-2 +kerning first=325 second=248 amount=-2 +kerning first=255 second=110 amount=-2 +kerning first=86 second=313 amount=-1 +kerning first=1044 second=1092 amount=-1 +kerning first=291 second=110 amount=-1 +kerning first=376 second=290 amount=-3 +kerning first=207 second=303 amount=-1 +kerning first=112 second=98 amount=-1 +kerning first=1091 second=1108 amount=-2 +kerning first=99 second=225 amount=-2 +kerning first=363 second=110 amount=-1 +kerning first=66 second=303 amount=-3 +kerning first=197 second=350 amount=-3 +kerning first=106 second=328 amount=-2 +kerning first=76 second=98 amount=-2 +kerning first=321 second=75 amount=-2 +kerning first=199 second=363 amount=-2 +kerning first=70 second=328 amount=-1 +kerning first=235 second=363 amount=-2 +kerning first=272 second=315 amount=-2 +kerning first=268 second=290 amount=-3 +kerning first=321 second=221 amount=-3 +kerning first=351 second=303 amount=-2 +kerning first=307 second=363 amount=-1 +kerning first=65 second=235 amount=-1 +kerning first=317 second=196 amount=-2 +kerning first=243 second=303 amount=-1 +kerning first=283 second=328 amount=-2 +kerning first=73 second=248 amount=-2 +kerning first=101 second=235 amount=-1 +kerning first=279 second=303 amount=-2 +kerning first=377 second=350 amount=-1 +kerning first=379 second=363 amount=-3 +kerning first=68 second=196 amount=-4 +kerning first=201 second=260 amount=-2 +kerning first=85 second=102 amount=-1 +kerning first=196 second=290 amount=-3 +kerning first=1054 second=1093 amount=-1 +kerning first=326 second=46 amount=-1 +kerning first=204 second=225 amount=-2 +kerning first=246 second=380 amount=-2 +kerning first=195 second=338 amount=-3 +kerning first=362 second=46 amount=-5 +kerning first=240 second=225 amount=-1 +kerning first=282 second=380 amount=-2 +kerning first=289 second=98 amount=-1 +kerning first=316 second=237 amount=-1 +kerning first=79 second=325 amount=-2 +kerning first=365 second=273 amount=-1 +kerning first=253 second=98 amount=-1 +kerning first=354 second=380 amount=-3 +kerning first=381 second=260 amount=-1 +kerning first=1101 second=1102 amount=-1 +kerning first=69 second=112 amount=-2 +kerning first=1061 second=1077 amount=-2 +kerning first=87 second=377 amount=-3 +kerning first=8222 second=374 amount=-6 +kerning first=280 second=367 amount=-2 +kerning first=1097 second=1077 amount=-1 +kerning first=65 second=87 amount=-6 +kerning first=78 second=261 amount=-2 +kerning first=316 second=367 amount=-2 +kerning first=196 second=318 amount=-2 +kerning first=79 second=327 amount=-2 +kerning first=114 second=261 amount=-1 +kerning first=8217 second=283 amount=-3 +kerning first=332 second=86 amount=-2 +kerning first=1057 second=1052 amount=-1 +kerning first=83 second=352 amount=-1 +kerning first=244 second=367 amount=-1 +kerning first=310 second=210 amount=-3 +kerning first=264 second=377 amount=-2 +kerning first=103 second=367 amount=-1 +kerning first=274 second=210 amount=-1 +kerning first=283 second=326 amount=-2 +kerning first=251 second=351 amount=-2 +kerning first=70 second=211 amount=-1 +kerning first=296 second=352 amount=-2 +kerning first=202 second=210 amount=-1 +kerning first=260 second=352 amount=-3 +kerning first=67 second=367 amount=-2 +kerning first=288 second=302 amount=-1 +kerning first=70 second=326 amount=-1 +kerning first=363 second=261 amount=-1 +kerning first=354 second=112 amount=-2 +kerning first=352 second=250 amount=-1 +kerning first=206 second=235 amount=-2 +kerning first=106 second=326 amount=-2 +kerning first=216 second=302 amount=-2 +kerning first=336 second=377 amount=-2 +kerning first=73 second=287 amount=-3 +kerning first=1081 second=1092 amount=-1 +kerning first=100 second=171 amount=-2 +kerning first=282 second=112 amount=-2 +kerning first=264 second=255 amount=-1 +kerning first=1117 second=1092 amount=-1 +kerning first=246 second=112 amount=-1 +kerning first=244 second=250 amount=-1 +kerning first=8216 second=217 amount=-1 +kerning first=314 second=235 amount=-1 +kerning first=219 second=261 amount=-3 +kerning first=210 second=112 amount=-1 +kerning first=350 second=235 amount=-1 +kerning first=109 second=287 amount=-2 +kerning first=255 second=261 amount=-3 +kerning first=316 second=250 amount=-2 +kerning first=1092 second=1103 amount=-2 +kerning first=250 second=287 amount=-3 +kerning first=291 second=261 amount=-3 +kerning first=105 second=112 amount=-1 +kerning first=280 second=250 amount=-2 +kerning first=1056 second=1103 amount=-3 +kerning first=214 second=287 amount=-1 +kerning first=118 second=257 amount=-3 +kerning first=67 second=250 amount=-2 +kerning first=291 second=378 amount=-3 +kerning first=76 second=366 amount=-3 +kerning first=282 second=262 amount=-1 +kerning first=278 second=237 amount=-1 +kerning first=251 second=353 amount=-2 +kerning first=255 second=378 amount=-3 +kerning first=242 second=237 amount=-1 +kerning first=286 second=287 amount=-3 +kerning first=107 second=275 amount=-3 +kerning first=287 second=353 amount=-3 +kerning first=363 second=378 amount=-2 +kerning first=354 second=262 amount=-3 +kerning first=206 second=237 amount=-1 +kerning first=323 second=353 amount=-2 +kerning first=103 second=250 amount=-1 +kerning first=327 second=378 amount=-1 +kerning first=352 second=365 amount=-1 +kerning first=325 second=100 amount=-2 +kerning first=352 second=369 amount=-1 +kerning first=316 second=365 amount=-2 +kerning first=101 second=237 amount=-2 +kerning first=74 second=353 amount=-2 +kerning first=1116 second=1095 amount=-1 +kerning first=78 second=378 amount=-1 +kerning first=280 second=365 amount=-2 +kerning first=83 second=45 amount=-3 +kerning first=65 second=237 amount=-1 +kerning first=199 second=277 amount=-2 +kerning first=110 second=353 amount=-1 +kerning first=241 second=171 amount=-3 +kerning first=219 second=378 amount=-3 +kerning first=244 second=365 amount=-1 +kerning first=381 second=113 amount=-1 +kerning first=218 second=197 amount=-4 +kerning first=313 second=171 amount=-1 +kerning first=350 second=87 amount=-3 +kerning first=368 second=352 amount=-3 +kerning first=1049 second=1117 amount=-1 +kerning first=217 second=100 amount=-2 +kerning first=198 second=85 amount=-2 +kerning first=226 second=249 amount=-1 +kerning first=332 second=352 amount=-1 +kerning first=315 second=338 amount=-1 +kerning first=290 second=197 amount=-3 +kerning first=253 second=100 amount=-3 +kerning first=278 second=87 amount=-1 +kerning first=85 second=249 amount=-1 +kerning first=289 second=100 amount=-2 +kerning first=121 second=249 amount=-1 +kerning first=69 second=262 amount=-1 +kerning first=356 second=275 amount=-3 +kerning first=362 second=197 amount=-4 +kerning first=1065 second=1104 amount=-1 +kerning first=82 second=288 amount=-3 +kerning first=370 second=249 amount=-1 +kerning first=263 second=115 amount=-2 +kerning first=321 second=223 amount=-1 +kerning first=262 second=249 amount=-2 +kerning first=1088 second=1078 amount=-1 +kerning first=298 second=249 amount=-1 +kerning first=1054 second=1091 amount=-1 +kerning first=204 second=74 amount=-1 +kerning first=282 second=288 amount=-1 +kerning first=66 second=113 amount=-1 +kerning first=199 second=87 amount=-1 +kerning first=1100 second=1096 amount=-1 +kerning first=107 second=243 amount=-3 +kerning first=113 second=314 amount=-2 +kerning first=354 second=288 amount=-3 +kerning first=369 second=106 amount=-2 +kerning first=254 second=314 amount=-2 +kerning first=8217 second=118 amount=-1 +kerning first=8216 second=114 amount=-1 +kerning first=1030 second=1092 amount=-1 +kerning first=307 second=333 amount=-1 +kerning first=326 second=314 amount=-1 +kerning first=69 second=288 amount=-1 +kerning first=207 second=113 amount=-2 +kerning first=290 second=314 amount=-1 +kerning first=366 second=210 amount=-1 +kerning first=379 second=333 amount=-1 +kerning first=267 second=281 amount=-1 +kerning first=84 second=366 amount=-1 +kerning first=256 second=269 amount=-1 +kerning first=330 second=210 amount=-2 +kerning first=1074 second=1118 amount=-2 +kerning first=102 second=113 amount=-1 +kerning first=220 second=269 amount=-2 +kerning first=227 second=307 amount=-1 +kerning first=263 second=307 amount=-2 +kerning first=364 second=255 amount=-1 +kerning first=8220 second=375 amount=-1 +kerning first=84 second=120 amount=-2 +kerning first=196 second=83 amount=-3 +kerning first=328 second=255 amount=-2 +kerning first=231 second=224 amount=-2 +kerning first=120 second=120 amount=-1 +kerning first=82 second=268 amount=-3 +kerning first=335 second=307 amount=-1 +kerning first=364 second=269 amount=-2 +kerning first=192 second=281 amount=-1 +kerning first=202 second=262 amount=-1 +kerning first=371 second=307 amount=-1 +kerning first=256 second=255 amount=-3 +kerning first=303 second=224 amount=-2 +kerning first=1086 second=1078 amount=-1 +kerning first=281 second=244 amount=-1 +kerning first=267 second=224 amount=-2 +kerning first=264 second=281 amount=-2 +kerning first=274 second=262 amount=-1 +kerning first=375 second=224 amount=-3 +kerning first=356 second=243 amount=-3 +kerning first=310 second=262 amount=-3 +kerning first=115 second=255 amount=-3 +kerning first=339 second=224 amount=-2 +kerning first=187 second=198 amount=-4 +kerning first=207 second=99 amount=-2 +kerning first=67 second=101 amount=-2 +kerning first=369 second=120 amount=-2 +kerning first=103 second=101 amount=-2 +kerning first=74 second=331 amount=-1 +kerning first=376 second=275 amount=-3 +kerning first=354 second=274 amount=-1 +kerning first=212 second=229 amount=-1 +kerning first=279 second=99 amount=-1 +kerning first=382 second=248 amount=-1 +kerning first=71 second=229 amount=-1 +kerning first=282 second=274 amount=-2 +kerning first=107 second=229 amount=-2 +kerning first=202 second=362 amount=-2 +kerning first=8216 second=100 amount=-3 +kerning first=8220 second=122 amount=-1 +kerning first=310 second=248 amount=-2 +kerning first=225 second=120 amount=-1 +kerning first=272 second=75 amount=-2 +kerning first=346 second=248 amount=-1 +kerning first=305 second=118 amount=-3 +kerning first=261 second=120 amount=-1 +kerning first=356 second=229 amount=-5 +kerning first=316 second=101 amount=-1 +kerning first=199 second=73 amount=-3 +kerning first=352 second=101 amount=-1 +kerning first=200 second=75 amount=-2 +kerning first=377 second=118 amount=-2 +kerning first=333 second=120 amount=-3 +kerning first=284 second=229 amount=-1 +kerning first=346 second=8220 amount=-2 +kerning first=197 second=118 amount=-3 +kerning first=310 second=8220 amount=-2 +kerning first=269 second=118 amount=-2 +kerning first=279 second=113 amount=-1 +kerning first=366 second=196 amount=-4 +kerning first=233 second=118 amount=-2 +kerning first=364 second=241 amount=-2 +kerning first=81 second=230 amount=-1 +kerning first=328 second=241 amount=-1 +kerning first=333 second=106 amount=-2 +kerning first=379 second=87 amount=-2 +kerning first=102 second=99 amount=-1 +kerning first=290 second=68 amount=-1 +kerning first=225 second=106 amount=-1 +kerning first=66 second=99 amount=-1 +kerning first=261 second=106 amount=3 +kerning first=76 second=80 amount=-2 +kerning first=374 second=364 amount=-1 +kerning first=259 second=271 amount=-1 +kerning first=227 second=248 amount=-1 +kerning first=251 second=111 amount=-1 +kerning first=259 second=109 amount=-1 +kerning first=235 second=361 amount=-2 +kerning first=69 second=316 amount=-1 +kerning first=194 second=264 amount=-3 +kerning first=287 second=111 amount=-2 +kerning first=105 second=316 amount=-2 +kerning first=323 second=111 amount=-2 +kerning first=307 second=361 amount=-1 +kerning first=89 second=264 amount=-3 +kerning first=1073 second=1116 amount=-1 +kerning first=74 second=111 amount=-2 +kerning first=1037 second=1116 amount=-1 +kerning first=379 second=361 amount=-3 +kerning first=246 second=316 amount=-2 +kerning first=290 second=82 amount=-1 +kerning first=337 second=118 amount=-2 +kerning first=197 second=364 amount=-3 +kerning first=228 second=267 amount=-1 +kerning first=76 second=66 amount=-2 +kerning first=356 second=257 amount=-5 +kerning first=264 second=267 amount=-2 +kerning first=269 second=104 amount=-2 +kerning first=75 second=351 amount=-1 +kerning first=1101 second=1116 amount=-1 +kerning first=202 second=44 amount=-1 +kerning first=344 second=89 amount=-3 +kerning first=233 second=104 amount=-2 +kerning first=1069 second=1093 amount=-1 +kerning first=197 second=104 amount=-2 +kerning first=274 second=44 amount=-1 +kerning first=1048 second=1057 amount=-1 +kerning first=8216 second=346 amount=-1 +kerning first=313 second=205 amount=-2 +kerning first=200 second=89 amount=-1 +kerning first=379 second=44 amount=-1 +kerning first=87 second=323 amount=-1 +kerning first=210 second=274 amount=-2 +kerning first=199 second=361 amount=-2 +kerning first=97 second=44 amount=-1 +kerning first=272 second=89 amount=-2 +kerning first=8216 second=86 amount=-1 +kerning first=334 second=368 amount=-1 +kerning first=323 second=97 amount=-2 +kerning first=217 second=326 amount=-2 +kerning first=338 second=250 amount=-2 +kerning first=210 second=302 amount=-2 +kerning first=331 second=226 amount=-1 +kerning first=253 second=326 amount=-2 +kerning first=307 second=347 amount=-2 +kerning first=264 second=323 amount=-3 +kerning first=302 second=250 amount=-2 +kerning first=367 second=226 amount=-1 +kerning first=1050 second=1054 amount=-4 +kerning first=251 second=97 amount=-1 +kerning first=289 second=326 amount=-1 +kerning first=87 second=281 amount=-3 +kerning first=203 second=278 amount=-2 +kerning first=76 second=354 amount=-3 +kerning first=275 second=8250 amount=-2 +kerning first=287 second=97 amount=-3 +kerning first=235 second=347 amount=-2 +kerning first=336 second=323 amount=-2 +kerning first=374 second=250 amount=-2 +kerning first=69 second=302 amount=-2 +kerning first=224 second=244 amount=-1 +kerning first=103 second=97 amount=-3 +kerning first=199 second=347 amount=-2 +kerning first=194 second=250 amount=-3 +kerning first=68 second=323 amount=-2 +kerning first=76 second=326 amount=-1 +kerning first=251 second=371 amount=-1 +kerning first=8216 second=374 amount=-1 +kerning first=112 second=326 amount=-1 +kerning first=205 second=233 amount=-2 +kerning first=266 second=250 amount=-2 +kerning first=287 second=371 amount=-1 +kerning first=1102 second=1078 amount=-1 +kerning first=230 second=250 amount=-2 +kerning first=1048 second=1099 amount=-1 +kerning first=277 second=233 amount=-1 +kerning first=82 second=212 amount=-3 +kerning first=272 second=103 amount=-1 +kerning first=231 second=110 amount=-2 +kerning first=377 second=90 amount=-1 +kerning first=284 second=257 amount=-1 +kerning first=236 second=103 amount=-3 +kerning first=269 second=378 amount=-2 +kerning first=199 second=45 amount=-4 +kerning first=235 second=333 amount=-1 +kerning first=200 second=103 amount=-3 +kerning first=313 second=219 amount=-3 +kerning first=89 second=250 amount=-2 +kerning first=377 second=378 amount=-3 +kerning first=82 second=226 amount=-2 +kerning first=212 second=257 amount=-1 +kerning first=199 second=333 amount=-2 +kerning first=118 second=226 amount=-3 +kerning first=248 second=257 amount=-1 +kerning first=374 second=264 amount=-3 +kerning first=354 second=302 amount=-1 +kerning first=187 second=226 amount=-1 +kerning first=379 second=45 amount=-3 +kerning first=338 second=264 amount=-1 +kerning first=223 second=226 amount=-1 +kerning first=113 second=110 amount=-2 +kerning first=1048 second=1085 amount=-1 +kerning first=302 second=264 amount=-2 +kerning first=233 second=378 amount=-2 +kerning first=282 second=302 amount=-2 +kerning first=259 second=226 amount=-1 +kerning first=379 second=347 amount=-2 +kerning first=266 second=264 amount=-3 +kerning first=97 second=8217 amount=-3 +kerning first=295 second=226 amount=-1 +kerning first=71 second=257 amount=-1 +kerning first=218 second=110 amount=-2 +kerning first=1045 second=1114 amount=-1 +kerning first=254 second=110 amount=-1 +kerning first=259 second=240 amount=-1 +kerning first=315 second=362 amount=-3 +kerning first=200 second=363 amount=-2 +kerning first=118 second=240 amount=-3 +kerning first=1073 second=1088 amount=-1 +kerning first=89 second=194 amount=-6 +kerning first=254 second=227 amount=-1 +kerning first=326 second=110 amount=-1 +kerning first=65 second=210 amount=-3 +kerning first=323 second=214 amount=-2 +kerning first=362 second=110 amount=-2 +kerning first=367 second=240 amount=-1 +kerning first=8216 second=351 amount=-2 +kerning first=202 second=220 amount=-2 +kerning first=206 second=275 amount=-2 +kerning first=1094 second=1108 amount=-1 +kerning first=1037 second=1088 amount=-1 +kerning first=74 second=214 amount=-2 +kerning first=8216 second=242 amount=-3 +kerning first=344 second=363 amount=-2 +kerning first=202 second=318 amount=-1 +kerning first=325 second=284 amount=-2 +kerning first=380 second=363 amount=-2 +kerning first=66 second=71 amount=-3 +kerning first=346 second=220 amount=-3 +kerning first=108 second=259 amount=-2 +kerning first=310 second=318 amount=-1 +kerning first=232 second=116 amount=-1 +kerning first=336 second=77 amount=-2 +kerning first=282 second=330 amount=-2 +kerning first=286 second=369 amount=-1 +kerning first=249 second=259 amount=-1 +kerning first=346 second=318 amount=-2 +kerning first=100 second=8221 amount=-2 +kerning first=274 second=220 amount=-2 +kerning first=84 second=324 amount=-3 +kerning first=250 second=369 amount=-1 +kerning first=213 second=259 amount=-1 +kerning first=382 second=318 amount=-2 +kerning first=264 second=77 amount=-3 +kerning first=352 second=375 amount=-2 +kerning first=346 second=304 amount=-3 +kerning first=210 second=330 amount=-2 +kerning first=338 second=194 amount=-2 +kerning first=82 second=240 amount=-3 +kerning first=374 second=194 amount=-6 +kerning first=274 second=304 amount=-2 +kerning first=74 second=97 amount=-3 +kerning first=109 second=369 amount=-1 +kerning first=72 second=259 amount=-2 +kerning first=196 second=116 amount=-1 +kerning first=266 second=194 amount=-3 +kerning first=110 second=97 amount=-1 +kerning first=73 second=369 amount=-2 +kerning first=202 second=304 amount=-2 +kerning first=354 second=330 amount=-1 +kerning first=1037 second=1102 amount=-1 +kerning first=122 second=279 amount=-1 +kerning first=118 second=254 amount=-1 +kerning first=333 second=324 amount=-1 +kerning first=86 second=279 amount=-3 +kerning first=291 second=253 amount=-1 +kerning first=103 second=375 amount=-1 +kerning first=187 second=254 amount=-1 +kerning first=227 second=279 amount=-1 +kerning first=327 second=253 amount=-2 +kerning first=67 second=375 amount=-1 +kerning first=1047 second=1055 amount=-2 +kerning first=110 second=228 amount=-1 +kerning first=223 second=254 amount=-1 +kerning first=363 second=253 amount=-3 +kerning first=74 second=228 amount=-2 +kerning first=259 second=254 amount=-1 +kerning first=200 second=377 amount=-1 +kerning first=194 second=81 amount=-3 +kerning first=316 second=375 amount=-3 +kerning first=69 second=330 amount=-2 +kerning first=354 second=344 amount=-1 +kerning first=120 second=324 amount=-1 +kerning first=244 second=375 amount=-3 +kerning first=108 second=273 amount=-1 +kerning first=364 second=117 amount=-1 +kerning first=82 second=254 amount=-3 +kerning first=225 second=324 amount=-1 +kerning first=217 second=284 amount=-1 +kerning first=316 second=253 amount=-3 +kerning first=76 second=298 amount=-2 +kerning first=310 second=234 amount=-2 +kerning first=210 second=344 amount=-2 +kerning first=84 second=310 amount=-1 +kerning first=315 second=251 amount=-2 +kerning first=70 second=332 amount=-1 +kerning first=250 second=355 amount=-1 +kerning first=346 second=234 amount=-1 +kerning first=1058 second=1108 amount=-1 +kerning first=272 second=377 amount=-2 +kerning first=1113 second=1103 amount=-2 +kerning first=382 second=234 amount=-1 +kerning first=282 second=344 amount=-2 +kerning first=1077 second=1103 amount=-1 +kerning first=371 second=378 amount=-1 +kerning first=97 second=234 amount=-1 +kerning first=108 second=287 amount=-3 +kerning first=78 second=253 amount=-2 +kerning first=1045 second=1100 amount=-1 +kerning first=263 second=279 amount=-1 +kerning first=76 second=284 amount=-1 +kerning first=72 second=287 amount=-3 +kerning first=69 second=344 amount=-2 +kerning first=213 second=287 amount=-1 +kerning first=198 second=8249 amount=-2 +kerning first=1098 second=1119 amount=-1 +kerning first=219 second=253 amount=-1 +kerning first=344 second=335 amount=-3 +kerning first=83 second=242 amount=-1 +kerning first=202 second=290 amount=-1 +kerning first=221 second=313 amount=-1 +kerning first=249 second=287 amount=-3 +kerning first=8250 second=249 amount=-1 +kerning first=213 second=8217 amount=-2 +kerning first=76 second=270 amount=-2 +kerning first=278 second=315 amount=-2 +kerning first=249 second=8217 amount=-3 +kerning first=112 second=109 amount=-1 +kerning first=274 second=290 amount=-1 +kerning first=84 second=338 amount=-3 +kerning first=310 second=121 amount=-3 +kerning first=119 second=242 amount=-3 +kerning first=260 second=242 amount=-1 +kerning first=336 second=105 amount=-1 +kerning first=236 second=335 amount=-1 +kerning first=196 second=101 amount=-1 +kerning first=224 second=242 amount=-1 +kerning first=369 second=380 amount=-2 +kerning first=228 second=105 amount=-1 +kerning first=347 second=367 amount=-1 +kerning first=85 second=197 amount=-4 +kerning first=264 second=105 amount=-1 +kerning first=1055 second=1057 amount=-1 +kerning first=108 second=8217 amount=-3 +kerning first=296 second=242 amount=-2 +kerning first=335 second=116 amount=-1 +kerning first=114 second=225 amount=-1 +kerning first=1037 second=1060 amount=-1 +kerning first=274 second=327 amount=-2 +kerning first=192 second=105 amount=-1 +kerning first=1058 second=1094 amount=-2 +kerning first=76 second=353 amount=-1 +kerning first=1077 second=1117 amount=-1 +kerning first=368 second=242 amount=-2 +kerning first=225 second=380 amount=-1 +kerning first=219 second=225 amount=-3 +kerning first=225 second=226 amount=-1 +kerning first=262 second=197 amount=-3 +kerning first=261 second=380 amount=-1 +kerning first=87 second=105 amount=-2 +kerning first=97 second=248 amount=-1 +kerning first=350 second=315 amount=-3 +kerning first=201 second=119 amount=-1 +kerning first=321 second=8217 amount=-4 +kerning first=334 second=197 amount=-4 +kerning first=323 second=228 amount=-2 +kerning first=370 second=197 amount=-4 +kerning first=287 second=228 amount=-3 +kerning first=262 second=108 amount=-1 +kerning first=84 second=380 amount=-3 +kerning first=78 second=225 amount=-2 +kerning first=8220 second=101 amount=-3 +kerning first=1047 second=1083 amount=-1 +kerning first=251 second=228 amount=-1 +kerning first=226 second=108 amount=-1 +kerning first=120 second=380 amount=-2 +kerning first=45 second=221 amount=-4 +kerning first=226 second=122 amount=-1 +kerning first=72 second=231 amount=-2 +kerning first=347 second=46 amount=-2 +kerning first=203 second=74 amount=-1 +kerning first=381 second=119 amount=-2 +kerning first=76 second=256 amount=-2 +kerning first=84 second=352 amount=-3 +kerning first=121 second=122 amount=-3 +kerning first=196 second=102 amount=-1 +kerning first=75 second=240 amount=-2 +kerning first=85 second=122 amount=-3 +kerning first=232 second=102 amount=-2 +kerning first=69 second=289 amount=-3 +kerning first=291 second=225 amount=-3 +kerning first=370 second=122 amount=-3 +kerning first=249 second=231 amount=-1 +kerning first=203 second=46 amount=-1 +kerning first=327 second=225 amount=-2 +kerning first=334 second=122 amount=-2 +kerning first=207 second=71 amount=-2 +kerning first=376 second=116 amount=-1 +kerning first=334 second=313 amount=-2 +kerning first=363 second=225 amount=-1 +kerning first=298 second=122 amount=-1 +kerning first=307 second=117 amount=-1 +kerning first=315 second=71 amount=-1 +kerning first=122 second=307 amount=-1 +kerning first=217 second=256 amount=-4 +kerning first=262 second=122 amount=-2 +kerning first=311 second=46 amount=-1 +kerning first=87 second=77 amount=-1 +kerning first=228 second=250 amount=-1 +kerning first=249 second=245 amount=-1 +kerning first=98 second=46 amount=-3 +kerning first=120 second=281 amount=-2 +kerning first=219 second=211 amount=-1 +kerning first=83 second=379 amount=-1 +kerning first=209 second=44 amount=-1 +kerning first=108 second=245 amount=-1 +kerning first=310 second=290 amount=-3 +kerning first=268 second=102 amount=-2 +kerning first=219 second=347 amount=-2 +kerning first=1045 second=1098 amount=-3 +kerning first=327 second=211 amount=-2 +kerning first=376 second=102 amount=-1 +kerning first=317 second=216 amount=-1 +kerning first=106 second=171 amount=-3 +kerning first=203 second=112 amount=-2 +kerning first=1052 second=1086 amount=-1 +kerning first=211 second=171 amount=-1 +kerning first=98 second=112 amount=-1 +kerning first=103 second=223 amount=-1 +kerning first=370 second=211 amount=-1 +kerning first=337 second=107 amount=-1 +kerning first=204 second=382 amount=-1 +kerning first=209 second=216 amount=-2 +kerning first=88 second=107 amount=-1 +kerning first=235 second=8221 amount=-2 +kerning first=229 second=107 amount=-1 +kerning first=70 second=171 amount=-3 +kerning first=193 second=107 amount=-2 +kerning first=365 second=105 amount=-2 +kerning first=377 second=257 amount=-1 +kerning first=298 second=235 amount=-2 +kerning first=257 second=105 amount=-1 +kerning first=67 second=70 amount=-3 +kerning first=1044 second=1098 amount=-1 +kerning first=370 second=235 amount=-2 +kerning first=307 second=8221 amount=-2 +kerning first=221 second=105 amount=-2 +kerning first=1116 second=1098 amount=-1 +kerning first=347 second=112 amount=-3 +kerning first=221 second=81 amount=-3 +kerning first=1056 second=1077 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=311 second=112 amount=-1 +kerning first=8222 second=354 amount=-6 +kerning first=355 second=171 amount=-1 +kerning first=283 second=100 amount=-1 +kerning first=275 second=112 amount=-1 +kerning first=268 second=296 amount=-3 +kerning first=1054 second=1041 amount=-1 +kerning first=73 second=67 amount=-2 +kerning first=214 second=327 amount=-2 +kerning first=350 second=249 amount=-1 +kerning first=376 second=296 amount=-1 +kerning first=234 second=251 amount=-2 +kerning first=277 second=275 amount=-1 +kerning first=117 second=353 amount=-2 +kerning first=198 second=251 amount=-2 +kerning first=8217 second=233 amount=-3 +kerning first=195 second=117 amount=-3 +kerning first=106 second=100 amount=-1 +kerning first=208 second=204 amount=-2 +kerning first=314 second=249 amount=-2 +kerning first=205 second=275 amount=-2 +kerning first=111 second=380 amount=-2 +kerning first=211 second=346 amount=-1 +kerning first=378 second=251 amount=-2 +kerning first=1062 second=1105 amount=-1 +kerning first=280 second=204 amount=-2 +kerning first=83 second=256 amount=-4 +kerning first=100 second=275 amount=-1 +kerning first=234 second=223 amount=-1 +kerning first=352 second=204 amount=-3 +kerning first=221 second=379 amount=-3 +kerning first=45 second=353 amount=-1 +kerning first=85 second=211 amount=-1 +kerning first=377 second=259 amount=-1 +kerning first=65 second=249 amount=-3 +kerning first=266 second=44 amount=-1 +kerning first=45 second=83 amount=-3 +kerning first=288 second=230 amount=-1 +kerning first=198 second=223 amount=-1 +kerning first=81 second=83 amount=-1 +kerning first=324 second=230 amount=-1 +kerning first=206 second=249 amount=-1 +kerning first=262 second=211 amount=-3 +kerning first=216 second=230 amount=-1 +kerning first=242 second=249 amount=-1 +kerning first=298 second=211 amount=-2 +kerning first=252 second=230 amount=-1 +kerning first=67 second=204 amount=-3 +kerning first=222 second=83 amount=-1 +kerning first=1073 second=1099 amount=-1 +kerning first=111 second=230 amount=-1 +kerning first=258 second=83 amount=-3 +kerning first=332 second=256 amount=-4 +kerning first=1113 second=1075 amount=-1 +kerning first=221 second=109 amount=-3 +kerning first=368 second=284 amount=-1 +kerning first=330 second=83 amount=-2 +kerning first=99 second=114 amount=-1 +kerning first=8217 second=271 amount=-3 +kerning first=366 second=83 amount=-3 +kerning first=371 second=237 amount=-1 +kerning first=296 second=284 amount=-2 +kerning first=209 second=244 amount=-2 +kerning first=257 second=109 amount=-1 +kerning first=378 second=289 amount=-2 +kerning first=70 second=199 amount=-1 +kerning first=229 second=339 amount=-1 +kerning first=1051 second=1084 amount=-1 +kerning first=263 second=237 amount=-2 +kerning first=260 second=284 amount=-3 +kerning first=352 second=232 amount=-1 +kerning first=203 second=362 amount=-2 +kerning first=227 second=237 amount=-1 +kerning first=1105 second=1091 amount=-1 +kerning first=1072 second=1095 amount=-2 +kerning first=122 second=237 amount=-1 +kerning first=196 second=334 amount=-3 +kerning first=98 second=116 amount=-1 +kerning first=86 second=237 amount=-2 +kerning first=346 second=274 amount=-3 +kerning first=288 second=282 amount=-1 +kerning first=381 second=194 amount=-1 +kerning first=316 second=232 amount=-1 +kerning first=268 second=334 amount=-3 +kerning first=84 second=345 amount=-1 +kerning first=216 second=282 amount=-2 +kerning first=67 second=232 amount=-2 +kerning first=201 second=194 amount=-2 +kerning first=192 second=350 amount=-3 +kerning first=304 second=334 amount=-2 +kerning first=198 second=289 amount=-3 +kerning first=70 second=346 amount=-3 +kerning first=314 second=277 amount=-1 +kerning first=103 second=232 amount=-2 +kerning first=376 second=334 amount=-3 +kerning first=288 second=202 amount=-1 +kerning first=252 second=254 amount=-2 +kerning first=101 second=277 amount=-1 +kerning first=257 second=351 amount=-1 +kerning first=330 second=121 amount=-2 +kerning first=288 second=254 amount=-1 +kerning first=65 second=277 amount=-1 +kerning first=221 second=351 amount=-3 +kerning first=286 second=327 amount=-1 +kerning first=324 second=254 amount=-2 +kerning first=206 second=277 amount=-2 +kerning first=258 second=121 amount=-3 +kerning first=1038 second=1090 amount=-3 +kerning first=337 second=367 amount=-1 +kerning first=75 second=254 amount=-1 +kerning first=65 second=305 amount=-1 +kerning first=80 second=351 amount=-1 +kerning first=277 second=311 amount=-2 +kerning first=113 second=273 amount=-1 +kerning first=111 second=254 amount=-1 +kerning first=1098 second=1095 amount=-2 +kerning first=204 second=350 amount=-2 +kerning first=117 second=275 amount=-1 +kerning first=350 second=69 amount=-3 +kerning first=1070 second=1113 amount=-2 +kerning first=45 second=121 amount=-3 +kerning first=198 second=261 amount=-1 +kerning first=193 second=367 amount=-3 +kerning first=242 second=305 amount=-1 +kerning first=307 second=99 amount=-1 +kerning first=1088 second=1096 amount=-1 +kerning first=234 second=261 amount=-2 +kerning first=229 second=367 amount=-1 +kerning first=278 second=69 amount=-2 +kerning first=88 second=367 amount=-3 +kerning first=314 second=305 amount=-1 +kerning first=1027 second=1076 amount=-3 +kerning first=196 second=245 amount=-1 +kerning first=236 second=117 amount=-1 +kerning first=193 second=79 amount=-3 +kerning first=8217 second=243 amount=-3 +kerning first=278 second=305 amount=-1 +kerning first=76 second=260 amount=-2 +kerning first=200 second=117 amount=-2 +kerning first=240 second=114 amount=-1 +kerning first=8216 second=224 amount=-3 +kerning first=217 second=260 amount=-4 +kerning first=332 second=76 amount=-2 +kerning first=350 second=305 amount=-3 +kerning first=365 second=351 amount=-2 +kerning first=211 second=72 amount=-2 +kerning first=211 second=374 amount=-2 +kerning first=380 second=117 amount=-2 +kerning first=367 second=101 amount=-1 +kerning first=344 second=117 amount=-2 +kerning first=203 second=316 amount=-1 +kerning first=1043 second=1094 amount=-2 +kerning first=66 second=317 amount=-4 +kerning first=368 second=336 amount=-1 +kerning first=192 second=337 amount=-1 +kerning first=268 second=362 amount=-2 +kerning first=275 second=316 amount=-3 +kerning first=256 second=311 amount=-2 +kerning first=122 second=241 amount=-2 +kerning first=87 second=337 amount=-3 +kerning first=100 second=271 amount=-1 +kerning first=86 second=241 amount=-3 +kerning first=370 second=378 amount=-3 +kerning first=347 second=316 amount=-2 +kerning first=262 second=382 amount=-2 +kerning first=82 second=248 amount=-3 +kerning first=290 second=356 amount=-3 +kerning first=298 second=382 amount=-1 +kerning first=115 second=311 amount=-1 +kerning first=199 second=267 amount=-2 +kerning first=334 second=382 amount=-2 +kerning first=75 second=226 amount=-1 +kerning first=264 second=337 amount=-2 +kerning first=250 second=331 amount=-1 +kerning first=75 second=286 amount=-3 +kerning first=111 second=226 amount=-1 +kerning first=277 second=271 amount=-1 +kerning first=196 second=362 amount=-3 +kerning first=109 second=331 amount=-1 +kerning first=87 second=361 amount=-2 +kerning first=197 second=221 amount=-6 +kerning first=192 second=361 amount=-3 +kerning first=83 second=252 amount=-1 +kerning first=119 second=252 amount=-1 +kerning first=1025 second=1037 amount=-1 +kerning first=1105 second=1087 amount=-1 +kerning first=228 second=361 amount=-1 +kerning first=98 second=316 amount=-2 +kerning first=195 second=266 amount=-3 +kerning first=107 second=263 amount=-3 +kerning first=328 second=227 amount=-1 +kerning first=1040 second=1101 amount=-1 +kerning first=84 second=78 amount=-1 +kerning first=366 second=121 amount=-1 +kerning first=368 second=252 amount=-1 +kerning first=262 second=207 amount=-3 +kerning first=354 second=70 amount=-1 +kerning first=356 second=201 amount=-1 +kerning first=220 second=227 amount=-3 +kerning first=45 second=381 amount=-4 +kerning first=346 second=44 amount=-4 +kerning first=284 second=201 amount=-1 +kerning first=81 second=381 amount=-2 +kerning first=381 second=246 amount=-1 +kerning first=310 second=44 amount=-1 +kerning first=224 second=252 amount=-1 +kerning first=1027 second=1107 amount=-2 +kerning first=212 second=201 amount=-2 +kerning first=364 second=227 amount=-3 +kerning first=382 second=44 amount=-1 +kerning first=296 second=252 amount=-1 +kerning first=222 second=381 amount=-2 +kerning first=1081 second=1104 amount=-1 +kerning first=85 second=382 amount=-3 +kerning first=65 second=45 amount=-4 +kerning first=1057 second=1036 amount=-1 +kerning first=1063 second=1107 amount=-1 +kerning first=121 second=382 amount=-3 +kerning first=216 second=226 amount=-1 +kerning first=337 second=103 amount=-2 +kerning first=71 second=201 amount=-1 +kerning first=379 second=291 amount=-3 +kerning first=252 second=226 amount=-1 +kerning first=226 second=382 amount=-1 +kerning first=288 second=226 amount=-1 +kerning first=366 second=381 amount=-1 +kerning first=307 second=291 amount=-3 +kerning first=365 second=109 amount=-1 +kerning first=263 second=259 amount=-2 +kerning first=324 second=226 amount=-1 +kerning first=1055 second=1081 amount=-1 +kerning first=110 second=378 amount=-1 +kerning first=115 second=227 amount=-1 +kerning first=193 second=103 amount=-3 +kerning first=260 second=336 amount=-3 +kerning first=79 second=227 amount=-1 +kerning first=203 second=84 amount=-1 +kerning first=315 second=317 amount=-2 +kerning first=296 second=336 amount=-2 +kerning first=199 second=291 amount=-3 +kerning first=88 second=103 amount=-2 +kerning first=201 second=218 amount=-2 +kerning first=277 second=243 amount=-1 +kerning first=1039 second=1092 amount=-1 +kerning first=1100 second=1094 amount=-1 +kerning first=8250 second=220 amount=-4 +kerning first=1065 second=1090 amount=-1 +kerning first=103 second=115 amount=-3 +kerning first=235 second=263 amount=-1 +kerning first=100 second=243 amount=-1 +kerning first=120 second=314 amount=-1 +kerning first=66 second=345 amount=-3 +kerning first=307 second=263 amount=-1 +kerning first=261 second=314 amount=-1 +kerning first=67 second=115 amount=-2 +kerning first=205 second=243 amount=-2 +kerning first=229 second=250 amount=-1 +kerning first=225 second=314 amount=-1 +kerning first=280 second=115 amount=-1 +kerning first=333 second=314 amount=-2 +kerning first=316 second=115 amount=-2 +kerning first=218 second=120 amount=-2 +kerning first=264 second=365 amount=-2 +kerning first=199 second=8249 amount=-4 +kerning first=122 second=269 amount=-1 +kerning first=377 second=193 amount=-1 +kerning first=254 second=120 amount=-3 +kerning first=228 second=365 amount=-1 +kerning first=263 second=269 amount=-1 +kerning first=244 second=115 amount=-2 +kerning first=279 second=345 amount=-1 +kerning first=199 second=263 amount=-2 +kerning first=192 second=365 amount=-3 +kerning first=350 second=278 amount=-3 +kerning first=196 second=338 amount=-3 +kerning first=69 second=70 amount=-2 +kerning first=369 second=314 amount=-2 +kerning first=216 second=198 amount=-4 +kerning first=258 second=353 amount=-2 +kerning first=282 second=70 amount=-2 +kerning first=86 second=213 amount=-3 +kerning first=204 second=113 amount=-2 +kerning first=350 second=73 amount=-3 +kerning first=87 second=365 amount=-2 +kerning first=97 second=224 amount=-1 +kerning first=352 second=115 amount=-1 +kerning first=1083 second=1072 amount=-1 +kerning first=352 second=45 amount=-3 +kerning first=330 second=353 amount=-2 +kerning first=210 second=70 amount=-2 +kerning first=202 second=224 amount=-1 +kerning first=366 second=353 amount=-2 +kerning first=371 second=269 amount=-3 +kerning first=321 second=325 amount=-2 +kerning first=310 second=224 amount=-1 +kerning first=274 second=224 amount=-1 +kerning first=105 second=98 amount=-1 +kerning first=382 second=224 amount=-1 +kerning first=246 second=98 amount=-1 +kerning first=379 second=8249 amount=-3 +kerning first=278 second=73 amount=-2 +kerning first=346 second=224 amount=-1 +kerning first=85 second=235 amount=-2 +kerning first=90 second=278 amount=-1 +kerning first=74 second=101 amount=-2 +kerning first=326 second=120 amount=-1 +kerning first=214 second=303 amount=-1 +kerning first=121 second=235 amount=-3 +kerning first=218 second=328 amount=-2 +kerning first=307 second=8249 amount=-3 +kerning first=362 second=120 amount=-2 +kerning first=219 second=331 amount=-2 +kerning first=250 second=303 amount=-2 +kerning first=1108 second=1076 amount=-1 +kerning first=332 second=280 amount=-2 +kerning first=346 second=367 amount=-1 +kerning first=109 second=303 amount=-1 +kerning first=226 second=235 amount=-1 +kerning first=113 second=328 amount=-2 +kerning first=69 second=98 amount=-1 +kerning first=262 second=235 amount=-2 +kerning first=1036 second=1076 amount=-1 +kerning first=251 second=101 amount=-1 +kerning first=220 second=283 amount=-2 +kerning first=211 second=370 amount=-1 +kerning first=371 second=241 amount=-2 +kerning first=287 second=101 amount=-2 +kerning first=368 second=103 amount=-4 +kerning first=335 second=241 amount=-1 +kerning first=323 second=101 amount=-2 +kerning first=1046 second=1118 amount=-2 +kerning first=99 second=118 amount=-2 +kerning first=254 second=328 amount=-1 +kerning first=364 second=283 amount=-2 +kerning first=227 second=241 amount=-1 +kerning first=113 second=109 amount=-2 +kerning first=213 second=325 amount=-2 +kerning first=282 second=98 amount=-1 +kerning first=256 second=283 amount=-1 +kerning first=263 second=241 amount=-2 +kerning first=83 second=280 amount=-3 +kerning first=207 second=335 amount=-2 +kerning first=197 second=108 amount=-2 +kerning first=376 second=380 amount=-3 +kerning first=371 second=283 amount=-3 +kerning first=195 second=8220 amount=-5 +kerning first=321 second=241 amount=-1 +kerning first=279 second=335 amount=-1 +kerning first=269 second=108 amount=-3 +kerning first=1077 second=1119 amount=-1 +kerning first=344 second=85 amount=-3 +kerning first=374 second=362 amount=-1 +kerning first=263 second=283 amount=-1 +kerning first=1069 second=1045 amount=-1 +kerning first=232 second=380 amount=-2 +kerning first=272 second=85 amount=-1 +kerning first=66 second=335 amount=-1 +kerning first=305 second=108 amount=-1 +kerning first=268 second=380 amount=-2 +kerning first=102 second=335 amount=-1 +kerning first=310 second=286 amount=-3 +kerning first=304 second=380 amount=-1 +kerning first=236 second=345 amount=-1 +kerning first=77 second=338 amount=-2 +kerning first=249 second=241 amount=-1 +kerning first=274 second=196 amount=-2 +kerning first=122 second=46 amount=-1 +kerning first=303 second=248 amount=-3 +kerning first=256 second=231 amount=-1 +kerning first=110 second=115 amount=-1 +kerning first=77 second=351 amount=-2 +kerning first=274 second=286 amount=-1 +kerning first=376 second=259 amount=-5 +kerning first=231 second=248 amount=-1 +kerning first=108 second=241 amount=-1 +kerning first=315 second=249 amount=-2 +kerning first=267 second=248 amount=-1 +kerning first=202 second=286 amount=-1 +kerning first=220 second=231 amount=-2 +kerning first=74 second=115 amount=-2 +kerning first=380 second=331 amount=-2 +kerning first=287 second=115 amount=-3 +kerning first=1091 second=1113 amount=-3 +kerning first=195 second=248 amount=-1 +kerning first=323 second=115 amount=-2 +kerning first=200 second=331 amount=-1 +kerning first=90 second=248 amount=-1 +kerning first=1114 second=1075 amount=-1 +kerning first=251 second=115 amount=-2 +kerning first=76 second=70 amount=-2 +kerning first=290 second=78 amount=-1 +kerning first=197 second=368 amount=-3 +kerning first=1063 second=1101 amount=-1 +kerning first=236 second=331 amount=-2 +kerning first=249 second=255 amount=-3 +kerning first=218 second=352 amount=-3 +kerning first=97 second=252 amount=-1 +kerning first=222 second=200 amount=-2 +kerning first=337 second=351 amount=-2 +kerning first=364 second=245 amount=-2 +kerning first=69 second=278 amount=-2 +kerning first=115 second=307 amount=-2 +kerning first=8216 second=350 amount=-1 +kerning first=376 second=366 amount=-1 +kerning first=202 second=252 amount=-2 +kerning first=199 second=323 amount=-3 +kerning first=108 second=255 amount=-3 +kerning first=84 second=328 amount=-3 +kerning first=354 second=8250 amount=-3 +kerning first=269 second=122 amount=-2 +kerning first=72 second=255 amount=-2 +kerning first=362 second=352 amount=-3 +kerning first=233 second=122 amount=-2 +kerning first=344 second=71 amount=-3 +kerning first=90 second=262 amount=-1 +kerning first=379 second=323 amount=-1 +kerning first=210 second=278 amount=-2 +kerning first=328 second=307 amount=-1 +kerning first=107 second=233 amount=-3 +kerning first=196 second=366 amount=-3 +kerning first=317 second=290 amount=-1 +kerning first=261 second=328 amount=-1 +kerning first=282 second=278 amount=-2 +kerning first=313 second=338 amount=-1 +kerning first=225 second=328 amount=-1 +kerning first=354 second=278 amount=-1 +kerning first=1101 second=1080 amount=-1 +kerning first=120 second=328 amount=-1 +kerning first=1045 second=1118 amount=-1 +kerning first=77 second=352 amount=-2 +kerning first=227 second=283 amount=-1 +kerning first=81 second=200 amount=-2 +kerning first=256 second=245 amount=-1 +kerning first=209 second=290 amount=-2 +kerning first=369 second=328 amount=-1 +kerning first=274 second=252 amount=-2 +kerning first=1043 second=1040 amount=-4 +kerning first=45 second=200 amount=-5 +kerning first=356 second=233 amount=-3 +kerning first=220 second=245 amount=-2 +kerning first=122 second=283 amount=-1 +kerning first=310 second=252 amount=-3 +kerning first=1113 second=1085 amount=-1 +kerning first=346 second=252 amount=-1 +kerning first=314 second=333 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=1057 second=1043 amount=-1 +kerning first=336 second=87 amount=-2 +kerning first=84 second=110 amount=-3 +kerning first=268 second=106 amount=-1 +kerning first=120 second=110 amount=-1 +kerning first=264 second=87 amount=-1 +kerning first=217 second=288 amount=-1 +kerning first=252 second=223 amount=-1 +kerning first=193 second=81 amount=-3 +kerning first=379 second=281 amount=-1 +kerning first=101 second=333 amount=-1 +kerning first=73 second=113 amount=-2 +kerning first=192 second=87 amount=-6 +kerning first=280 second=84 amount=-1 +kerning first=261 second=110 amount=-1 +kerning first=1069 second=1113 amount=-2 +kerning first=333 second=110 amount=-1 +kerning first=192 second=347 amount=-2 +kerning first=199 second=281 amount=-2 +kerning first=200 second=65 amount=-2 +kerning first=255 second=243 amount=-3 +kerning first=195 second=262 amount=-3 +kerning first=368 second=326 amount=-2 +kerning first=369 second=110 amount=-1 +kerning first=235 second=281 amount=-1 +kerning first=89 second=198 amount=-6 +kerning first=291 second=243 amount=-2 +kerning first=217 second=196 amount=-4 +kerning first=87 second=347 amount=-3 +kerning first=272 second=65 amount=-4 +kerning first=1077 second=1099 amount=-1 +kerning first=323 second=210 amount=-2 +kerning first=327 second=243 amount=-2 +kerning first=307 second=281 amount=-1 +kerning first=289 second=114 amount=-1 +kerning first=363 second=243 amount=-1 +kerning first=116 second=291 amount=-2 +kerning first=197 second=217 amount=-3 +kerning first=78 second=243 amount=-2 +kerning first=325 second=288 amount=-2 +kerning first=224 second=326 amount=-1 +kerning first=1058 second=1076 amount=-2 +kerning first=321 second=255 amount=-3 +kerning first=69 second=354 amount=-1 +kerning first=219 second=243 amount=-2 +kerning first=232 second=120 amount=-2 +kerning first=78 second=229 amount=-2 +kerning first=1050 second=1047 amount=-2 +kerning first=199 second=269 amount=-2 +kerning first=378 second=275 amount=-1 +kerning first=73 second=99 amount=-2 +kerning first=69 second=80 amount=-2 +kerning first=219 second=229 amount=-3 +kerning first=264 second=73 amount=-3 +kerning first=8217 second=351 amount=-2 +kerning first=255 second=229 amount=-3 +kerning first=66 second=377 amount=-4 +kerning first=266 second=198 amount=-3 +kerning first=375 second=248 amount=-3 +kerning first=114 second=229 amount=-1 +kerning first=199 second=103 amount=-3 +kerning first=66 second=75 amount=-4 +kerning first=250 second=99 amount=-1 +kerning first=338 second=198 amount=-2 +kerning first=298 second=118 amount=-2 +kerning first=363 second=229 amount=-1 +kerning first=8218 second=249 amount=-1 +kerning first=71 second=311 amount=-1 +kerning first=87 second=73 amount=-1 +kerning first=307 second=267 amount=-1 +kerning first=354 second=80 amount=-1 +kerning first=262 second=118 amount=-1 +kerning first=84 second=68 amount=-1 +kerning first=250 second=113 amount=-1 +kerning first=370 second=118 amount=-2 +kerning first=291 second=229 amount=-3 +kerning first=1076 second=1077 amount=-1 +kerning first=235 second=267 amount=-1 +kerning first=327 second=229 amount=-2 +kerning first=121 second=118 amount=-1 +kerning first=339 second=8220 amount=-2 +kerning first=376 second=120 amount=-2 +kerning first=210 second=80 amount=-2 +kerning first=85 second=118 amount=-2 +kerning first=232 second=106 amount=-2 +kerning first=77 second=332 amount=-2 +kerning first=226 second=118 amount=-3 +kerning first=267 second=8220 amount=-2 +kerning first=71 second=90 amount=-2 +kerning first=218 second=332 amount=-1 +kerning first=282 second=80 amount=-2 +kerning first=315 second=377 amount=-3 +kerning first=231 second=8220 amount=-2 +kerning first=314 second=271 amount=-1 +kerning first=115 second=287 amount=-3 +kerning first=198 second=219 amount=-2 +kerning first=350 second=171 amount=-3 +kerning first=350 second=8217 amount=-2 +kerning first=117 second=111 amount=-1 +kerning first=257 second=271 amount=-1 +kerning first=288 second=256 amount=-3 +kerning first=220 second=287 amount=-4 +kerning first=310 second=244 amount=-2 +kerning first=362 second=332 amount=-1 +kerning first=346 second=244 amount=-1 +kerning first=1055 second=1119 amount=-1 +kerning first=204 second=199 amount=-2 +kerning first=90 second=242 amount=-1 +kerning first=281 second=234 amount=-1 +kerning first=382 second=244 amount=-1 +kerning first=1037 second=1108 amount=-1 +kerning first=256 second=287 amount=-3 +kerning first=195 second=242 amount=-1 +kerning first=364 second=287 amount=-4 +kerning first=242 second=8217 amount=-2 +kerning first=328 second=287 amount=-2 +kerning first=121 second=303 amount=-2 +kerning first=82 second=264 amount=-3 +kerning first=1027 second=1040 amount=-4 +kerning first=267 second=242 amount=-1 +kerning first=86 second=289 amount=-4 +kerning first=231 second=242 amount=-1 +kerning first=110 second=121 amount=-2 +kerning first=122 second=289 amount=-2 +kerning first=339 second=242 amount=-1 +kerning first=1070 second=1091 amount=-1 +kerning first=8250 second=224 amount=-1 +kerning first=83 second=66 amount=-3 +kerning first=303 second=242 amount=-3 +kerning first=227 second=289 amount=-2 +kerning first=258 second=111 amount=-1 +kerning first=263 second=289 amount=-3 +kerning first=332 second=66 amount=-2 +kerning first=375 second=242 amount=-3 +kerning first=67 second=119 amount=-1 +kerning first=97 second=244 amount=-1 +kerning first=194 second=254 amount=-2 +kerning first=103 second=119 amount=-1 +kerning first=330 second=111 amount=-2 +kerning first=230 second=254 amount=-2 +kerning first=335 second=289 amount=-2 +kerning first=210 second=66 amount=-2 +kerning first=211 second=82 amount=-2 +kerning first=366 second=111 amount=-2 +kerning first=266 second=254 amount=-1 +kerning first=371 second=289 amount=-1 +kerning first=346 second=230 amount=-2 +kerning first=377 second=197 amount=-1 +kerning first=315 second=117 amount=-2 +kerning first=382 second=230 amount=-1 +kerning first=244 second=119 amount=-2 +kerning first=222 second=97 amount=-1 +kerning first=279 second=117 amount=-2 +kerning first=274 second=230 amount=-1 +kerning first=280 second=119 amount=-1 +kerning first=81 second=97 amount=-1 +kerning first=210 second=354 amount=-2 +kerning first=310 second=230 amount=-1 +kerning first=316 second=119 amount=-3 +kerning first=117 second=97 amount=-1 +kerning first=371 second=275 amount=-3 +kerning first=202 second=230 amount=-1 +kerning first=330 second=97 amount=-2 +kerning first=282 second=354 amount=-1 +kerning first=331 second=250 amount=-1 +kerning first=323 second=121 amount=-2 +kerning first=366 second=97 amount=-3 +kerning first=1073 second=1078 amount=-2 +kerning first=295 second=250 amount=-1 +kerning first=1113 second=1099 amount=-1 +kerning first=97 second=326 amount=-1 +kerning first=287 second=121 amount=-1 +kerning first=97 second=230 amount=-1 +kerning first=1043 second=1054 amount=-1 +kerning first=251 second=121 amount=-3 +kerning first=198 second=205 amount=-2 +kerning first=282 second=74 amount=-1 +kerning first=367 second=250 amount=-1 +kerning first=204 second=378 amount=-1 +kerning first=374 second=240 amount=-3 +kerning first=187 second=250 amount=-1 +kerning first=251 second=107 amount=-2 +kerning first=354 second=74 amount=-4 +kerning first=118 second=250 amount=-1 +kerning first=316 second=378 amount=-1 +kerning first=302 second=240 amount=-2 +kerning first=65 second=333 amount=-1 +kerning first=259 second=250 amount=-1 +kerning first=290 second=86 amount=-3 +kerning first=66 second=117 amount=-3 +kerning first=199 second=338 amount=-3 +kerning first=240 second=378 amount=-2 +kerning first=223 second=250 amount=-1 +kerning first=101 second=8217 amount=-2 +kerning first=102 second=117 amount=-1 +kerning first=99 second=378 amount=-2 +kerning first=82 second=250 amount=-2 +kerning first=243 second=117 amount=-1 +kerning first=207 second=117 amount=-2 +kerning first=8216 second=370 amount=-1 +kerning first=84 second=116 amount=-1 +kerning first=89 second=240 amount=-3 +kerning first=268 second=310 amount=-3 +kerning first=337 second=363 amount=-1 +kerning first=195 second=318 amount=-2 +kerning first=120 second=116 amount=-1 +kerning first=231 second=318 amount=-3 +kerning first=68 second=220 amount=-1 +kerning first=230 second=240 amount=-1 +kerning first=69 second=298 amount=-2 +kerning first=1052 second=1114 amount=-1 +kerning first=267 second=318 amount=-3 +kerning first=280 second=214 amount=-1 +kerning first=266 second=240 amount=-2 +kerning first=187 second=194 amount=-4 +kerning first=1088 second=1114 amount=-1 +kerning first=303 second=318 amount=-2 +kerning first=376 second=310 amount=-1 +kerning first=1084 second=1089 amount=-1 +kerning first=339 second=318 amount=-3 +kerning first=210 second=298 amount=-2 +kerning first=1048 second=1089 amount=-1 +kerning first=1102 second=1088 amount=-1 +kerning first=375 second=318 amount=-2 +kerning first=314 second=259 amount=-2 +kerning first=323 second=375 amount=-2 +kerning first=278 second=259 amount=-1 +kerning first=369 second=116 amount=-1 +kerning first=199 second=77 amount=-3 +kerning first=287 second=375 amount=-1 +kerning first=377 second=122 amount=-3 +kerning first=1030 second=1088 amount=-1 +kerning first=200 second=71 amount=-1 +kerning first=67 second=214 amount=-3 +kerning first=249 second=99 amount=-1 +kerning first=90 second=171 amount=-3 +kerning first=251 second=375 amount=-3 +kerning first=1025 second=1041 amount=-1 +kerning first=76 second=330 amount=-2 +kerning first=350 second=259 amount=-2 +kerning first=305 second=122 amount=-1 +kerning first=261 second=116 amount=-1 +kerning first=379 second=77 amount=-1 +kerning first=108 second=231 amount=-1 +kerning first=101 second=259 amount=-2 +kerning first=45 second=97 amount=-1 +kerning first=317 second=220 amount=-3 +kerning first=242 second=259 amount=-1 +kerning first=333 second=116 amount=-1 +kerning first=203 second=296 amount=-2 +kerning first=1072 second=1099 amount=-1 +kerning first=206 second=259 amount=-2 +kerning first=8222 second=108 amount=-1 +kerning first=365 second=369 amount=-1 +kerning first=356 second=253 amount=-3 +kerning first=111 second=105 amount=-1 +kerning first=1052 second=1100 amount=-1 +kerning first=377 second=374 amount=-2 +kerning first=316 second=228 amount=-2 +kerning first=90 second=304 amount=-1 +kerning first=268 second=324 amount=-1 +kerning first=1088 second=1100 amount=-1 +kerning first=100 second=251 amount=-1 +kerning first=232 second=324 amount=-2 +kerning first=244 second=228 amount=-1 +kerning first=8216 second=356 amount=-1 +kerning first=241 second=251 amount=-1 +kerning first=221 second=369 amount=-2 +kerning first=208 second=228 amount=-1 +kerning first=205 second=251 amount=-2 +kerning first=314 second=273 amount=-1 +kerning first=110 second=375 amount=-2 +kerning first=382 second=281 amount=-1 +kerning first=313 second=251 amount=-2 +kerning first=197 second=374 amount=-6 +kerning first=103 second=228 amount=-3 +kerning first=277 second=251 amount=-2 +kerning first=257 second=369 amount=-1 +kerning first=67 second=228 amount=-2 +kerning first=216 second=206 amount=-2 +kerning first=8217 second=261 amount=-6 +kerning first=1102 second=1074 amount=-1 +kerning first=116 second=355 amount=-1 +kerning first=282 second=298 amount=-2 +kerning first=66 second=70 amount=-4 +kerning first=354 second=284 amount=-3 +kerning first=288 second=206 amount=-1 +kerning first=101 second=273 amount=-1 +kerning first=107 second=253 amount=-1 +kerning first=187 second=217 amount=-4 +kerning first=354 second=298 amount=-1 +kerning first=378 second=279 amount=-1 +kerning first=282 second=284 amount=-1 +kerning first=88 second=363 amount=-3 +kerning first=87 second=290 amount=-3 +kerning first=248 second=253 amount=-3 +kerning first=8217 second=226 amount=-6 +kerning first=193 second=363 amount=-3 +kerning first=8218 second=311 amount=-1 +kerning first=1030 second=1074 amount=-1 +kerning first=353 second=45 amount=-1 +kerning first=1025 second=1038 amount=-3 +kerning first=69 second=284 amount=-1 +kerning first=229 second=363 amount=-1 +kerning first=221 second=355 amount=-1 +kerning first=376 second=324 amount=-3 +kerning first=196 second=8249 amount=-4 +kerning first=88 second=83 amount=-2 +kerning first=234 second=279 amount=-1 +kerning first=224 second=318 amount=-1 +kerning first=336 second=220 amount=-1 +kerning first=260 second=318 amount=-2 +kerning first=316 second=113 amount=-1 +kerning first=193 second=83 amount=-3 +kerning first=248 second=237 amount=-1 +kerning first=314 second=263 amount=-1 +kerning first=350 second=263 amount=-1 +kerning first=286 second=313 amount=-1 +kerning first=65 second=263 amount=-1 +kerning first=8217 second=195 amount=-6 +kerning first=208 second=218 amount=-1 +kerning first=101 second=263 amount=-1 +kerning first=214 second=313 amount=-2 +kerning first=206 second=263 amount=-2 +kerning first=67 second=218 amount=-2 +kerning first=69 second=218 amount=-2 +kerning first=203 second=310 amount=-2 +kerning first=221 second=303 amount=-2 +kerning first=75 second=220 amount=-2 +kerning first=317 second=255 amount=-3 +kerning first=257 second=303 amount=-1 +kerning first=337 second=353 amount=-2 +kerning first=321 second=315 amount=-2 +kerning first=365 second=365 amount=-1 +kerning first=116 second=303 amount=-1 +kerning first=85 second=225 amount=-3 +kerning first=365 second=303 amount=-2 +kerning first=213 second=315 amount=-2 +kerning first=257 second=365 amount=-1 +kerning first=288 second=220 amount=-1 +kerning first=193 second=353 amount=-2 +kerning first=85 second=114 amount=-1 +kerning first=221 second=365 amount=-2 +kerning first=229 second=353 amount=-1 +kerning first=216 second=220 amount=-1 +kerning first=1044 second=1060 amount=-1 +kerning first=83 second=270 amount=-3 +kerning first=78 second=235 amount=-2 +kerning first=311 second=98 amount=-1 +kerning first=354 second=209 amount=-1 +kerning first=73 second=105 amount=-1 +kerning first=298 second=225 amount=-2 +kerning first=354 second=45 amount=-5 +kerning first=275 second=98 amount=-2 +kerning first=109 second=105 amount=-1 +kerning first=334 second=225 amount=-1 +kerning first=381 second=228 amount=-1 +kerning first=1044 second=1108 amount=-1 +kerning first=370 second=225 amount=-3 +kerning first=345 second=228 amount=-1 +kerning first=1113 second=1093 amount=-2 +kerning first=347 second=98 amount=-2 +kerning first=255 second=235 amount=-3 +kerning first=121 second=225 amount=-3 +kerning first=291 second=235 amount=-2 +kerning first=98 second=98 amount=-1 +kerning first=332 second=270 amount=-2 +kerning first=327 second=235 amount=-2 +kerning first=226 second=225 amount=-1 +kerning first=70 second=350 amount=-3 +kerning first=201 second=228 amount=-1 +kerning first=1051 second=1102 amount=-1 +kerning first=203 second=98 amount=-1 +kerning first=45 second=363 amount=-1 +kerning first=336 second=84 amount=-2 +kerning first=262 second=225 amount=-2 +kerning first=72 second=305 amount=-1 +kerning first=1088 second=1084 amount=-1 +kerning first=352 second=218 amount=-3 +kerning first=365 second=223 amount=-1 +kerning first=1070 second=1093 amount=-1 +kerning first=307 second=273 amount=-1 +kerning first=8220 second=335 amount=-3 +kerning first=117 second=363 amount=-1 +kerning first=232 second=46 amount=-3 +kerning first=280 second=218 amount=-2 +kerning first=347 second=102 amount=-2 +kerning first=268 second=46 amount=-1 +kerning first=108 second=305 amount=-1 +kerning first=278 second=325 amount=-2 +kerning first=76 second=280 amount=-2 +kerning first=235 second=273 amount=-1 +kerning first=68 second=194 amount=-4 +kerning first=304 second=46 amount=-1 +kerning first=249 second=305 amount=-1 +kerning first=192 second=355 amount=-1 +kerning first=98 second=102 amount=-1 +kerning first=258 second=363 amount=-3 +kerning first=213 second=305 amount=-1 +kerning first=310 second=356 amount=-2 +kerning first=1058 second=1075 amount=-2 +kerning first=1080 second=1108 amount=-1 +kerning first=119 second=318 amount=-2 +kerning first=100 second=233 amount=-1 +kerning first=87 second=355 amount=-1 +kerning first=203 second=102 amount=-2 +kerning first=330 second=363 amount=-2 +kerning first=83 second=260 amount=-4 +kerning first=71 second=200 amount=-1 +kerning first=366 second=363 amount=-1 +kerning first=1049 second=1047 amount=-1 +kerning first=1063 second=1117 amount=-1 +kerning first=207 second=67 amount=-2 +kerning first=211 second=86 amount=-2 +kerning first=310 second=117 amount=-3 +kerning first=1027 second=1117 amount=-2 +kerning first=304 second=112 amount=-1 +kerning first=264 second=81 amount=-3 +kerning first=8216 second=193 amount=-8 +kerning first=268 second=112 amount=-3 +kerning first=197 second=211 amount=-3 +kerning first=77 second=171 amount=-4 +kerning first=232 second=112 amount=-1 +kerning first=66 second=67 amount=-3 +kerning first=113 second=171 amount=-2 +kerning first=368 second=260 amount=-4 +kerning first=205 second=261 amount=-2 +kerning first=196 second=112 amount=-3 +kerning first=332 second=260 amount=-4 +kerning first=377 second=291 amount=-3 +kerning first=381 second=283 amount=-1 +kerning first=241 second=261 amount=-1 +kerning first=258 second=107 amount=-2 +kerning first=1031 second=1084 amount=-1 +kerning first=75 second=216 amount=-3 +kerning first=377 second=211 amount=-1 +kerning first=327 second=289 amount=-3 +kerning first=326 second=171 amount=-3 +kerning first=198 second=209 amount=-2 +kerning first=66 second=327 amount=-4 +kerning first=362 second=171 amount=-5 +kerning first=1088 second=1082 amount=-1 +kerning first=250 second=105 amount=-2 +kerning first=295 second=254 amount=-2 +kerning first=87 second=81 amount=-3 +kerning first=218 second=171 amount=-5 +kerning first=331 second=254 amount=-2 +kerning first=1051 second=1098 amount=-1 +kerning first=367 second=254 amount=-2 +kerning first=315 second=327 amount=-2 +kerning first=376 second=112 amount=-2 +kerning first=192 second=81 amount=-3 +kerning first=214 second=105 amount=-1 +kerning first=290 second=171 amount=-3 +kerning first=218 second=346 amount=-3 +kerning first=252 second=115 amount=-2 +kerning first=204 second=100 amount=-2 +kerning first=209 second=230 amount=-2 +kerning first=249 second=249 amount=-1 +kerning first=245 second=230 amount=-1 +kerning first=108 second=249 amount=-2 +kerning first=8217 second=257 amount=-6 +kerning first=104 second=230 amount=-1 +kerning first=77 second=346 amount=-2 +kerning first=88 second=353 amount=-1 +kerning first=78 second=333 amount=-2 +kerning first=362 second=346 amount=-3 +kerning first=234 second=275 amount=-1 +kerning first=1036 second=1058 amount=-3 +kerning first=84 second=334 amount=-3 +kerning first=286 second=379 amount=-2 +kerning first=1047 second=1079 amount=-2 +kerning first=68 second=230 amount=-1 +kerning first=290 second=346 amount=-2 +kerning first=99 second=100 amount=-1 +kerning first=321 second=249 amount=-2 +kerning first=1070 second=1103 amount=-1 +kerning first=263 second=223 amount=-1 +kerning first=364 second=350 amount=-3 +kerning first=272 second=325 amount=-2 +kerning first=117 second=107 amount=-2 +kerning first=90 second=296 amount=-1 +kerning first=236 second=339 amount=-1 +kerning first=90 second=256 amount=-1 +kerning first=335 second=223 amount=-1 +kerning first=86 second=223 amount=-3 +kerning first=353 second=230 amount=-1 +kerning first=72 second=249 amount=-1 +kerning first=77 second=226 amount=-2 +kerning first=45 second=107 amount=-1 +kerning first=281 second=230 amount=-2 +kerning first=1064 second=1101 amount=-1 +kerning first=344 second=339 amount=-3 +kerning first=233 second=114 amount=-1 +kerning first=282 second=84 amount=-1 +kerning first=1054 second=1059 amount=-3 +kerning first=269 second=114 amount=-1 +kerning first=379 second=275 amount=-1 +kerning first=1098 second=1094 amount=-1 +kerning first=210 second=84 amount=-2 +kerning first=90 second=44 amount=-1 +kerning first=344 second=79 amount=-3 +kerning first=366 second=192 amount=-4 +kerning first=8218 second=357 amount=-2 +kerning first=356 second=187 amount=-3 +kerning first=362 second=237 amount=-2 +kerning first=364 second=237 amount=-2 +kerning first=88 second=89 amount=-2 +kerning first=222 second=192 amount=-4 +kerning first=328 second=237 amount=-1 +kerning first=250 second=109 amount=-1 +kerning first=232 second=314 amount=-3 +kerning first=257 second=99 amount=-1 +kerning first=339 second=44 amount=-3 +kerning first=381 second=232 amount=-1 +kerning first=368 second=262 amount=-1 +kerning first=256 second=237 amount=-1 +kerning first=196 second=314 amount=-2 +kerning first=1031 second=1082 amount=-1 +kerning first=221 second=99 amount=-3 +kerning first=336 second=8249 amount=-1 +kerning first=338 second=118 amount=-1 +kerning first=99 second=104 amount=-2 +kerning first=315 second=378 amount=-3 +kerning first=220 second=237 amount=-2 +kerning first=109 second=109 amount=-1 +kerning first=262 second=217 amount=-2 +kerning first=45 second=192 amount=-4 +kerning first=268 second=314 amount=-1 +kerning first=371 second=227 amount=-2 +kerning first=248 second=187 amount=-2 +kerning first=264 second=8249 amount=-4 +kerning first=115 second=237 amount=-2 +kerning first=317 second=282 amount=-2 +kerning first=334 second=217 amount=-1 +kerning first=379 second=277 amount=-1 +kerning first=79 second=237 amount=-1 +kerning first=365 second=99 amount=-1 +kerning first=192 second=8249 amount=-4 +kerning first=68 second=224 amount=-1 +kerning first=267 second=44 amount=-3 +kerning first=240 second=104 amount=-1 +kerning first=234 second=269 amount=-1 +kerning first=108 second=261 amount=-2 +kerning first=8220 second=121 amount=-1 +kerning first=87 second=8249 amount=-5 +kerning first=87 second=351 amount=-3 +kerning first=100 second=257 amount=-1 +kerning first=244 second=324 amount=-1 +kerning first=235 second=277 amount=-1 +kerning first=8217 second=251 amount=-1 +kerning first=104 second=224 amount=-1 +kerning first=187 second=202 amount=-5 +kerning first=1101 second=1076 amount=-2 +kerning first=354 second=207 amount=-1 +kerning first=83 second=326 amount=-1 +kerning first=192 second=351 amount=-2 +kerning first=245 second=224 amount=-1 +kerning first=119 second=326 amount=-2 +kerning first=307 second=277 amount=-1 +kerning first=203 second=302 amount=-2 +kerning first=378 second=269 amount=-1 +kerning first=209 second=224 amount=-2 +kerning first=80 second=99 amount=-1 +kerning first=117 second=371 amount=-1 +kerning first=281 second=224 amount=-2 +kerning first=264 second=347 amount=-2 +kerning first=260 second=253 amount=-3 +kerning first=228 second=347 amount=-1 +kerning first=353 second=224 amount=-1 +kerning first=325 second=44 amount=-1 +kerning first=206 second=267 amount=-2 +kerning first=366 second=367 amount=-1 +kerning first=119 second=275 amount=-3 +kerning first=379 second=69 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=65 second=267 amount=-1 +kerning first=100 second=261 amount=-1 +kerning first=258 second=367 amount=-3 +kerning first=101 second=267 amount=-1 +kerning first=45 second=371 amount=-1 +kerning first=314 second=267 amount=-1 +kerning first=75 second=212 amount=-3 +kerning first=277 second=257 amount=-2 +kerning first=1025 second=1047 amount=-1 +kerning first=199 second=69 amount=-3 +kerning first=258 second=101 amount=-1 +kerning first=8216 second=220 amount=-1 +kerning first=1061 second=1047 amount=-2 +kerning first=205 second=257 amount=-2 +kerning first=330 second=101 amount=-2 +kerning first=200 second=79 amount=-1 +kerning first=241 second=257 amount=-1 +kerning first=117 second=367 amount=-1 +kerning first=366 second=101 amount=-2 +kerning first=220 second=241 amount=-2 +kerning first=269 second=382 amount=-2 +kerning first=260 second=266 amount=-3 +kerning first=89 second=246 amount=-3 +kerning first=264 second=291 amount=-3 +kerning first=305 second=382 amount=-1 +kerning first=296 second=266 amount=-2 +kerning first=228 second=291 amount=-2 +kerning first=234 second=271 amount=-1 +kerning first=192 second=291 amount=-3 +kerning first=377 second=382 amount=-3 +kerning first=68 second=226 amount=-1 +kerning first=1062 second=1057 amount=-1 +kerning first=235 second=337 amount=-1 +kerning first=8217 second=253 amount=-1 +kerning first=104 second=226 amount=-1 +kerning first=321 second=311 amount=-2 +kerning first=87 second=291 amount=-4 +kerning first=199 second=337 amount=-2 +kerning first=65 second=8221 amount=-5 +kerning first=317 second=286 amount=-1 +kerning first=115 second=241 amount=-2 +kerning first=351 second=331 amount=-2 +kerning first=209 second=226 amount=-2 +kerning first=374 second=255 amount=-3 +kerning first=209 second=286 amount=-2 +kerning first=249 second=311 amount=-2 +kerning first=378 second=271 amount=-1 +kerning first=233 second=382 amount=-2 +kerning first=245 second=226 amount=-1 +kerning first=338 second=228 amount=-1 +kerning first=221 second=361 amount=-2 +kerning first=379 second=337 amount=-1 +kerning first=279 second=331 amount=-2 +kerning first=1098 second=1113 amount=-1 +kerning first=315 second=331 amount=-1 +kerning first=242 second=8221 amount=-2 +kerning first=307 second=337 amount=-1 +kerning first=101 second=8221 amount=-2 +kerning first=257 second=361 amount=-1 +kerning first=243 second=331 amount=-1 +kerning first=334 second=221 amount=-2 +kerning first=1030 second=1082 amount=-1 +kerning first=365 second=361 amount=-1 +kerning first=196 second=316 amount=-2 +kerning first=102 second=331 amount=-1 +kerning first=350 second=8221 amount=-2 +kerning first=232 second=316 amount=-3 +kerning first=8222 second=104 amount=-1 +kerning first=262 second=221 amount=-1 +kerning first=1102 second=1082 amount=-1 +kerning first=268 second=316 amount=-1 +kerning first=66 second=331 amount=-3 +kerning first=368 second=266 amount=-1 +kerning first=231 second=252 amount=-2 +kerning first=249 second=45 amount=-2 +kerning first=222 second=103 amount=-1 +kerning first=267 second=252 amount=-2 +kerning first=122 second=227 amount=-1 +kerning first=213 second=45 amount=-1 +kerning first=303 second=252 amount=-1 +kerning first=86 second=227 amount=-5 +kerning first=321 second=45 amount=-1 +kerning first=117 second=103 amount=-3 +kerning first=66 second=210 amount=-3 +kerning first=8218 second=116 amount=-2 +kerning first=81 second=103 amount=-1 +kerning first=335 second=227 amount=-1 +kerning first=45 second=103 amount=-3 +kerning first=310 second=229 amount=-1 +kerning first=90 second=252 amount=-3 +kerning first=278 second=323 amount=-2 +kerning first=76 second=336 amount=-1 +kerning first=263 second=227 amount=-2 +kerning first=195 second=252 amount=-3 +kerning first=227 second=227 amount=-1 +kerning first=350 second=323 amount=-3 +kerning first=281 second=226 amount=-2 +kerning first=217 second=336 amount=-1 +kerning first=287 second=112 amount=-1 +kerning first=369 second=263 amount=-1 +kerning first=374 second=246 amount=-3 +kerning first=377 second=207 amount=-1 +kerning first=108 second=311 amount=-1 +kerning first=286 second=317 amount=-1 +kerning first=269 second=46 amount=-3 +kerning first=353 second=226 amount=-1 +kerning first=78 second=233 amount=-2 +kerning first=302 second=246 amount=-2 +kerning first=211 second=356 amount=-2 +kerning first=375 second=252 amount=-1 +kerning first=266 second=246 amount=-2 +kerning first=366 second=103 amount=-4 +kerning first=211 second=90 amount=-2 +kerning first=69 second=84 amount=-1 +kerning first=230 second=246 amount=-1 +kerning first=330 second=103 amount=-3 +kerning first=255 second=233 amount=-3 +kerning first=336 second=291 amount=-1 +kerning first=219 second=233 amount=-2 +kerning first=80 second=339 amount=-1 +kerning first=214 second=317 amount=-2 +kerning first=259 second=246 amount=-1 +kerning first=254 second=116 amount=-1 +kerning first=371 second=121 amount=-2 +kerning first=1073 second=1082 amount=-1 +kerning first=286 second=103 amount=-3 +kerning first=116 second=45 amount=-1 +kerning first=196 second=356 amount=-6 +kerning first=122 second=259 amount=-1 +kerning first=279 second=347 amount=-2 +kerning first=257 second=45 amount=-2 +kerning first=236 second=369 amount=-1 +kerning first=214 second=103 amount=-1 +kerning first=118 second=246 amount=-3 +kerning first=366 second=375 amount=-1 +kerning first=221 second=45 amount=-5 +kerning first=200 second=369 amount=-2 +kerning first=227 second=259 amount=-1 +kerning first=82 second=246 amount=-3 +kerning first=1039 second=1086 amount=-1 +kerning first=109 second=103 amount=-2 +kerning first=8216 second=347 amount=-2 +kerning first=1025 second=1043 amount=-1 +kerning first=73 second=103 amount=-3 +kerning first=224 second=331 amount=-1 +kerning first=100 second=253 amount=-2 +kerning first=73 second=363 amount=-2 +kerning first=86 second=259 amount=-5 +kerning first=113 second=116 amount=-1 +kerning first=365 second=45 amount=-2 +kerning first=1055 second=1089 amount=-1 +kerning first=345 second=226 amount=-1 +kerning first=108 second=279 amount=-1 +kerning first=66 second=65 amount=-5 +kerning first=209 second=266 amount=-2 +kerning first=381 second=226 amount=-1 +kerning first=1059 second=1102 amount=-4 +kerning first=72 second=279 amount=-2 +kerning first=240 second=122 amount=-2 +kerning first=380 second=109 amount=-2 +kerning first=290 second=362 amount=-1 +kerning first=1055 second=1075 amount=-1 +kerning first=250 second=363 amount=-1 +kerning first=204 second=122 amount=-1 +kerning first=45 second=375 amount=-3 +kerning first=1091 second=1089 amount=-2 +kerning first=286 second=363 amount=-1 +kerning first=199 second=119 amount=-1 +kerning first=257 second=305 amount=-1 +kerning first=236 second=109 amount=-2 +kerning first=258 second=375 amount=-3 +kerning first=80 second=45 amount=-3 +kerning first=315 second=65 amount=-2 +kerning first=380 second=369 amount=-2 +kerning first=1085 second=1072 amount=-1 +kerning first=221 second=305 amount=-2 +kerning first=200 second=109 amount=-1 +kerning first=44 second=45 amount=-3 +kerning first=268 second=356 amount=-1 +kerning first=1113 second=1095 amount=-2 +kerning first=1037 second=1082 amount=-1 +kerning first=344 second=369 amount=-2 +kerning first=330 second=115 amount=-2 +kerning first=1037 second=1096 amount=-1 +kerning first=236 second=355 amount=-1 +kerning first=366 second=115 amount=-2 +kerning first=196 second=370 amount=-3 +kerning first=69 second=336 amount=-1 +kerning first=258 second=115 amount=-2 +kerning first=310 second=231 amount=-2 +kerning first=365 second=305 amount=-1 +kerning first=250 second=328 amount=-1 +kerning first=268 second=370 amount=-2 +kerning first=371 second=8217 amount=-3 +kerning first=380 second=355 amount=-1 +kerning first=214 second=89 amount=-2 +kerning first=249 second=279 amount=-1 +kerning first=200 second=364 amount=-2 +kerning first=1056 second=1053 amount=-1 +kerning first=1073 second=1096 amount=-1 +kerning first=344 second=355 amount=-3 +kerning first=259 second=232 amount=-1 +kerning first=282 second=336 amount=-1 +kerning first=196 second=249 amount=-3 +kerning first=205 second=253 amount=-2 +kerning first=362 second=225 amount=-3 +kerning first=241 second=253 amount=-2 +kerning first=354 second=336 amount=-3 +kerning first=277 second=253 amount=-2 +kerning first=118 second=232 amount=-3 +kerning first=321 second=291 amount=-3 +kerning first=82 second=232 amount=-3 +kerning first=1091 second=1103 amount=-4 +kerning first=8250 second=254 amount=-1 +kerning first=367 second=246 amount=-1 +kerning first=84 second=332 amount=-3 +kerning first=376 second=82 amount=-1 +kerning first=376 second=328 amount=-3 +kerning first=100 second=225 amount=-1 +kerning first=257 second=111 amount=-1 +kerning first=99 second=108 amount=-3 +kerning first=371 second=231 amount=-3 +kerning first=1039 second=1104 amount=-1 +kerning first=205 second=225 amount=-2 +kerning first=352 second=196 amount=-4 +kerning first=336 second=315 amount=-2 +kerning first=279 second=228 amount=-2 +kerning first=240 second=108 amount=-2 +kerning first=262 second=203 amount=-3 +kerning first=73 second=224 amount=-2 +kerning first=97 second=242 amount=-1 +kerning first=122 second=231 amount=-1 +kerning first=376 second=370 amount=-1 +kerning first=68 second=280 amount=-2 +kerning first=45 second=115 amount=-1 +kerning first=263 second=8217 amount=-2 +kerning first=113 second=102 amount=-2 +kerning first=321 second=374 amount=-3 +kerning first=67 second=196 amount=-3 +kerning first=86 second=231 amount=-3 +kerning first=79 second=8221 amount=-2 +kerning first=263 second=273 amount=-1 +kerning first=241 second=225 amount=-1 +kerning first=289 second=46 amount=-3 +kerning first=227 second=273 amount=-1 +kerning first=277 second=225 amount=-2 +kerning first=325 second=46 amount=-1 +kerning first=346 second=242 amount=-1 +kerning first=310 second=350 amount=-2 +kerning first=227 second=231 amount=-1 +kerning first=361 second=46 amount=-2 +kerning first=317 second=280 amount=-2 +kerning first=195 second=286 amount=-3 +kerning first=1065 second=1101 amount=-1 +kerning first=122 second=273 amount=-1 +kerning first=117 second=115 amount=-2 +kerning first=263 second=231 amount=-1 +kerning first=256 second=8221 amount=-5 +kerning first=305 second=326 amount=-1 +kerning first=205 second=211 amount=-2 +kerning first=249 second=307 amount=-2 +kerning first=1069 second=1083 amount=-2 +kerning first=90 second=286 amount=-1 +kerning first=382 second=242 amount=-1 +kerning first=263 second=245 amount=-1 +kerning first=234 second=371 amount=-2 +kerning first=200 second=81 amount=-1 +kerning first=74 second=119 amount=-1 +kerning first=1105 second=1083 amount=-2 +kerning first=227 second=245 amount=-1 +kerning first=199 second=67 amount=-3 +kerning first=110 second=119 amount=-3 +kerning first=246 second=314 amount=-2 +kerning first=217 second=46 amount=-5 +kerning first=67 second=210 amount=-3 +kerning first=367 second=231 amount=-1 +kerning first=317 second=266 amount=-1 +kerning first=218 second=102 amount=-1 +kerning first=99 second=122 amount=-2 +kerning first=1047 second=1049 amount=-2 +kerning first=254 second=102 amount=-1 +kerning first=344 second=81 amount=-3 +kerning first=251 second=119 amount=-3 +kerning first=8250 second=282 amount=-5 +kerning first=290 second=102 amount=-2 +kerning first=371 second=245 amount=-3 +kerning first=287 second=119 amount=-1 +kerning first=326 second=102 amount=-1 +kerning first=313 second=211 amount=-1 +kerning first=314 second=255 amount=-3 +kerning first=323 second=119 amount=-2 +kerning first=354 second=187 amount=-3 +kerning first=245 second=252 amount=-1 +kerning first=281 second=252 amount=-2 +kerning first=317 second=252 amount=-2 +kerning first=1051 second=1090 amount=-1 +kerning first=353 second=252 amount=-1 +kerning first=101 second=269 amount=-1 +kerning first=122 second=245 amount=-1 +kerning first=1105 second=1097 amount=-1 +kerning first=335 second=259 amount=-1 +kerning first=232 second=328 amount=-2 +kerning first=86 second=245 amount=-3 +kerning first=379 second=67 amount=-1 +kerning first=381 second=305 amount=-1 +kerning first=104 second=252 amount=-1 +kerning first=250 second=335 amount=-1 +kerning first=216 second=68 amount=-2 +kerning first=108 second=307 amount=-1 +kerning first=206 second=269 amount=-2 +kerning first=1088 second=1118 amount=-1 +kerning first=209 second=252 amount=-1 +kerning first=371 second=259 amount=-2 +kerning first=75 second=262 amount=-3 +kerning first=355 second=378 amount=-1 +kerning first=315 second=353 amount=-1 +kerning first=1096 second=1104 amount=-1 +kerning first=351 second=353 amount=-3 +kerning first=73 second=335 amount=-2 +kerning first=350 second=269 amount=-1 +kerning first=75 second=250 amount=-3 +kerning first=249 second=326 amount=-1 +kerning first=351 second=365 amount=-1 +kerning first=314 second=269 amount=-1 +kerning first=315 second=365 amount=-2 +kerning first=325 second=305 amount=-1 +kerning first=369 second=112 amount=-2 +kerning first=211 second=366 amount=-1 +kerning first=261 second=100 amount=-1 +kerning first=248 second=225 amount=-1 +kerning first=211 second=378 amount=-2 +kerning first=279 second=365 amount=-2 +kerning first=333 second=112 amount=-1 +kerning first=269 second=171 amount=-2 +kerning first=243 second=365 amount=-1 +kerning first=207 second=353 amount=-2 +kerning first=305 second=171 amount=-3 +kerning first=314 second=111 amount=-1 +kerning first=283 second=378 amount=-2 +kerning first=207 second=365 amount=-2 +kerning first=243 second=353 amount=-2 +kerning first=369 second=100 amount=-1 +kerning first=279 second=353 amount=-2 +kerning first=377 second=171 amount=-3 +kerning first=84 second=100 amount=-3 +kerning first=120 second=100 amount=-2 +kerning first=296 second=288 amount=-2 +kerning first=364 second=275 amount=-2 +kerning first=1036 second=1054 amount=-4 +kerning first=256 second=275 amount=-1 +kerning first=66 second=353 amount=-3 +kerning first=225 second=100 amount=-1 +kerning first=203 second=352 amount=-2 +kerning first=368 second=288 amount=-1 +kerning first=364 second=249 amount=-1 +kerning first=102 second=353 amount=-2 +kerning first=80 second=87 amount=-1 +kerning first=1030 second=1086 amount=-1 +kerning first=229 second=113 amount=-1 +kerning first=220 second=275 amount=-2 +kerning first=203 second=354 amount=-1 +kerning first=280 second=210 amount=-1 +kerning first=260 second=288 amount=-3 +kerning first=356 second=223 amount=-3 +kerning first=8216 second=368 amount=-1 +kerning first=88 second=113 amount=-2 +kerning first=83 second=365 amount=-1 +kerning first=83 second=274 amount=-3 +kerning first=315 second=379 amount=-3 +kerning first=69 second=296 amount=-2 +kerning first=333 second=114 amount=-1 +kerning first=196 second=231 amount=-1 +kerning first=211 second=380 amount=-2 +kerning first=79 second=8249 amount=-1 +kerning first=115 second=249 amount=-1 +kerning first=210 second=296 amount=-2 +kerning first=248 second=223 amount=-1 +kerning first=324 second=8220 amount=-4 +kerning first=381 second=198 amount=-1 +kerning first=283 second=380 amount=-2 +kerning first=288 second=8220 amount=-1 +kerning first=79 second=289 amount=-1 +kerning first=282 second=296 amount=-2 +kerning first=379 second=313 amount=-1 +kerning first=252 second=8220 amount=-3 +kerning first=256 second=249 amount=-3 +kerning first=115 second=289 amount=-3 +kerning first=192 second=217 amount=-3 +kerning first=75 second=248 amount=-2 +kerning first=216 second=8220 amount=-2 +kerning first=354 second=296 amount=-1 +kerning first=1055 second=1117 amount=-1 +kerning first=201 second=198 amount=-2 +kerning first=70 second=380 amount=-2 +kerning first=8216 second=122 amount=-1 +kerning first=220 second=289 amount=-4 +kerning first=84 second=114 amount=-1 +kerning first=106 second=380 amount=-1 +kerning first=111 second=8220 amount=-2 +kerning first=220 second=249 amount=-1 +kerning first=103 second=328 amount=-1 +kerning first=102 second=339 amount=-1 +kerning first=193 second=99 amount=-1 +kerning first=102 second=365 amount=-1 +kerning first=75 second=8220 amount=-2 +kerning first=66 second=365 amount=-3 +kerning first=364 second=346 amount=-3 +kerning first=1040 second=1079 amount=-1 +kerning first=199 second=327 amount=-3 +kerning first=332 second=274 amount=-2 +kerning first=364 second=263 amount=-2 +kerning first=264 second=315 amount=-3 +kerning first=187 second=206 amount=-5 +kerning first=66 second=379 amount=-4 +kerning first=66 second=339 amount=-1 +kerning first=229 second=99 amount=-1 +kerning first=328 second=8249 amount=-3 +kerning first=199 second=313 amount=-3 +kerning first=279 second=339 amount=-1 +kerning first=1048 second=1105 amount=-1 +kerning first=80 second=73 amount=-1 +kerning first=220 second=8249 amount=-5 +kerning first=83 second=112 amount=-3 +kerning first=1084 second=1105 amount=-1 +kerning first=256 second=8249 amount=-4 +kerning first=286 second=75 amount=-1 +kerning first=207 second=339 amount=-2 +kerning first=220 second=263 amount=-2 +kerning first=115 second=8249 amount=-1 +kerning first=87 second=315 amount=-1 +kerning first=379 second=327 amount=-1 +kerning first=261 second=378 amount=-1 +kerning first=256 second=263 amount=-1 +kerning first=214 second=75 amount=-2 +kerning first=212 second=209 amount=-2 +kerning first=201 second=212 amount=-1 +kerning first=229 second=254 amount=-1 +kerning first=8222 second=355 amount=-2 +kerning first=371 second=111 amount=-3 +kerning first=200 second=83 amount=-2 +kerning first=377 second=199 amount=-1 +kerning first=332 second=302 amount=-2 +kerning first=356 second=209 amount=-1 +kerning first=1062 second=1089 amount=-1 +kerning first=256 second=277 amount=-1 +kerning first=315 second=381 amount=-3 +kerning first=214 second=323 amount=-2 +kerning first=88 second=99 amount=-2 +kerning first=272 second=83 amount=-1 +kerning first=364 second=277 amount=-2 +kerning first=252 second=234 amount=-1 +kerning first=284 second=209 amount=-1 +kerning first=256 second=289 amount=-3 +kerning first=286 second=323 amount=-1 +kerning first=344 second=83 amount=-3 +kerning first=207 second=351 amount=-2 +kerning first=69 second=76 amount=-2 +kerning first=1100 second=1118 amount=-2 +kerning first=328 second=289 amount=-2 +kerning first=220 second=277 amount=-2 +kerning first=279 second=351 amount=-2 +kerning first=381 second=212 amount=-1 +kerning first=364 second=289 amount=-4 +kerning first=75 second=264 amount=-3 +kerning first=243 second=351 amount=-2 +kerning first=8220 second=194 amount=-8 +kerning first=88 second=111 amount=-2 +kerning first=71 second=209 amount=-1 +kerning first=86 second=233 amount=-3 +kerning first=369 second=114 amount=-1 +kerning first=193 second=111 amount=-1 +kerning first=279 second=367 amount=-2 +kerning first=102 second=351 amount=-2 +kerning first=211 second=364 amount=-1 +kerning first=229 second=111 amount=-1 +kerning first=315 second=367 amount=-2 +kerning first=122 second=233 amount=-1 +kerning first=66 second=351 amount=-3 +kerning first=223 second=8250 amount=-2 +kerning first=197 second=199 amount=-3 +kerning first=364 second=291 amount=-4 +kerning first=115 second=261 amount=-1 +kerning first=207 second=367 amount=-2 +kerning first=263 second=233 amount=-1 +kerning first=328 second=291 amount=-2 +kerning first=88 second=97 amount=-1 +kerning first=227 second=233 amount=-1 +kerning first=354 second=76 amount=-1 +kerning first=220 second=261 amount=-3 +kerning first=102 second=367 amount=-1 +kerning first=256 second=291 amount=-3 +kerning first=220 second=291 amount=-4 +kerning first=1080 second=1092 amount=-1 +kerning first=201 second=226 amount=-1 +kerning first=229 second=97 amount=-1 +kerning first=351 second=351 amount=-3 +kerning first=102 second=337 amount=-1 +kerning first=356 second=199 amount=-3 +kerning first=66 second=367 amount=-3 +kerning first=371 second=233 amount=-3 +kerning first=315 second=351 amount=-1 +kerning first=115 second=291 amount=-3 +kerning first=66 second=337 amount=-1 +kerning first=210 second=76 amount=-2 +kerning first=79 second=291 amount=-1 +kerning first=79 second=261 amount=-1 +kerning first=99 second=110 amount=-2 +kerning first=83 second=316 amount=-2 +kerning first=324 second=250 amount=-1 +kerning first=279 second=337 amount=-1 +kerning first=288 second=250 amount=-1 +kerning first=69 second=68 amount=-2 +kerning first=203 second=326 amount=-1 +kerning first=8250 second=119 amount=-3 +kerning first=106 second=378 amount=-1 +kerning first=325 second=287 amount=-3 +kerning first=197 second=171 amount=-4 +kerning first=224 second=316 amount=-1 +kerning first=250 second=103 amount=-3 +kerning first=70 second=378 amount=-2 +kerning first=83 second=302 amount=-3 +kerning first=337 second=97 amount=-1 +kerning first=275 second=326 amount=-2 +kerning first=290 second=350 amount=-2 +kerning first=260 second=316 amount=-2 +kerning first=205 second=380 amount=-1 +kerning first=111 second=250 amount=-1 +kerning first=328 second=261 amount=-1 +kerning first=199 second=261 amount=-2 +kerning first=218 second=350 amount=-3 +kerning first=252 second=250 amount=-1 +kerning first=364 second=261 amount=-3 +kerning first=212 second=289 amount=-1 +kerning first=98 second=326 amount=-1 +kerning first=66 second=381 amount=-4 +kerning first=353 second=8217 amount=-2 +kerning first=117 second=117 amount=-1 +kerning first=272 second=381 amount=-2 +kerning first=1113 second=1107 amount=-1 +kerning first=1071 second=1117 amount=-1 +kerning first=228 second=331 amount=-1 +kerning first=362 second=350 amount=-3 +kerning first=371 second=271 amount=-3 +kerning first=89 second=200 amount=-1 +kerning first=87 second=331 amount=-3 +kerning first=90 second=260 amount=-1 +kerning first=221 second=82 amount=-1 +kerning first=338 second=200 amount=-2 +kerning first=381 second=214 amount=-1 +kerning first=258 second=117 amount=-3 +kerning first=78 second=248 amount=-2 +kerning first=350 second=311 amount=-2 +kerning first=366 second=117 amount=-1 +kerning first=266 second=200 amount=-3 +kerning first=1047 second=1031 amount=-2 +kerning first=314 second=311 amount=-1 +kerning first=1105 second=1081 amount=-1 +kerning first=330 second=117 amount=-2 +kerning first=211 second=196 amount=-4 +kerning first=209 second=240 amount=-2 +kerning first=69 second=338 amount=-1 +kerning first=317 second=264 amount=-1 +kerning first=325 second=290 amount=-2 +kerning first=212 second=207 amount=-2 +kerning first=196 second=98 amount=-2 +kerning first=8220 second=196 amount=-8 +kerning first=122 second=271 amount=-1 +kerning first=76 second=290 amount=-1 +kerning first=209 second=264 amount=-2 +kerning first=203 second=259 amount=-1 +kerning first=45 second=377 amount=-4 +kerning first=201 second=214 amount=-1 +kerning first=227 second=271 amount=-1 +kerning first=45 second=117 amount=-1 +kerning first=281 second=240 amount=-1 +kerning first=81 second=377 amount=-2 +kerning first=263 second=271 amount=-1 +kerning first=217 second=290 amount=-1 +kerning first=71 second=207 amount=-1 +kerning first=332 second=304 amount=-2 +kerning first=290 second=90 amount=-2 +kerning first=268 second=330 amount=-3 +kerning first=45 second=217 amount=-4 +kerning first=222 second=377 amount=-2 +kerning first=98 second=324 amount=-1 +kerning first=187 second=220 amount=-4 +kerning first=362 second=90 amount=-1 +kerning first=8217 second=230 amount=-6 +kerning first=84 second=122 amount=-3 +kerning first=280 second=331 amount=-1 +kerning first=1038 second=1086 amount=-4 +kerning first=376 second=330 amount=-1 +kerning first=284 second=207 amount=-1 +kerning first=198 second=227 amount=-1 +kerning first=8217 second=347 amount=-2 +kerning first=69 second=303 amount=-1 +kerning first=122 second=305 amount=-2 +kerning first=8250 second=280 amount=-5 +kerning first=1047 second=1037 amount=-2 +kerning first=366 second=377 amount=-1 +kerning first=83 second=304 amount=-3 +kerning first=356 second=207 amount=-1 +kerning first=249 second=291 amount=-3 +kerning first=1055 second=1077 amount=-1 +kerning first=213 second=291 amount=-1 +kerning first=278 second=311 amount=-1 +kerning first=80 second=317 amount=-1 +kerning first=347 second=324 amount=-2 +kerning first=236 second=97 amount=-2 +kerning first=235 second=287 amount=-3 +kerning first=356 second=310 amount=-1 +kerning first=242 second=311 amount=-1 +kerning first=377 second=187 amount=-1 +kerning first=108 second=291 amount=-3 +kerning first=272 second=97 amount=-1 +kerning first=199 second=287 amount=-3 +kerning first=1062 second=1101 amount=-1 +kerning first=66 second=77 amount=-4 +kerning first=72 second=291 amount=-3 +kerning first=73 second=337 amount=-2 +kerning first=307 second=287 amount=-3 +kerning first=221 second=317 amount=-1 +kerning first=75 second=234 amount=-2 +kerning first=374 second=200 amount=-1 +kerning first=200 second=97 amount=-1 +kerning first=101 second=311 amount=-2 +kerning first=315 second=77 amount=-2 +kerning first=8222 second=365 amount=-1 +kerning first=380 second=97 amount=-1 +kerning first=379 second=287 amount=-3 +kerning first=89 second=290 amount=-3 +kerning first=65 second=311 amount=-2 +kerning first=233 second=187 amount=-2 +kerning first=87 second=71 amount=-3 +kerning first=193 second=235 amount=-1 +kerning first=71 second=197 amount=-3 +kerning first=275 second=324 amount=-2 +kerning first=218 second=90 amount=-1 +kerning first=250 second=337 amount=-1 +kerning first=90 second=298 amount=-1 +kerning first=1024 second=1040 amount=-2 +kerning first=192 second=71 amount=-3 +kerning first=74 second=84 amount=-1 +kerning first=108 second=263 amount=-1 +kerning first=286 second=365 amount=-1 +kerning first=212 second=197 amount=-4 +kerning first=375 second=277 amount=-3 +kerning first=250 second=365 amount=-1 +kerning first=209 second=268 amount=-2 +kerning first=221 second=100 amount=-3 +kerning first=240 second=120 amount=-3 +kerning first=317 second=268 amount=-1 +kerning first=284 second=197 amount=-3 +kerning first=249 second=263 amount=-1 +kerning first=336 second=303 amount=-1 +kerning first=344 second=353 amount=-2 +kerning first=268 second=70 amount=-3 +kerning first=356 second=197 amount=-6 +kerning first=371 second=243 amount=-3 +kerning first=73 second=365 amount=-2 +kerning first=8216 second=382 amount=-1 +kerning first=380 second=353 amount=-2 +kerning first=1043 second=1108 amount=-3 +kerning first=69 second=310 amount=-2 +kerning first=199 second=325 amount=-3 +kerning first=205 second=213 amount=-2 +kerning first=84 second=74 amount=-4 +kerning first=99 second=120 amount=-2 +kerning first=72 second=263 amount=-2 +kerning first=203 second=78 amount=-2 +kerning first=227 second=275 amount=-1 +kerning first=362 second=118 amount=-2 +kerning first=376 second=70 amount=-1 +kerning first=1030 second=1100 amount=-1 +kerning first=264 second=46 amount=-1 +kerning first=200 second=353 amount=-1 +kerning first=282 second=310 amount=-2 +kerning first=87 second=303 amount=-2 +kerning first=122 second=275 amount=-1 +kerning first=236 second=353 amount=-2 +kerning first=1073 second=1080 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=1102 second=1100 amount=-1 +kerning first=1047 second=1065 amount=-2 +kerning first=1037 second=1080 amount=-1 +kerning first=98 second=314 amount=-2 +kerning first=334 second=201 amount=-2 +kerning first=90 second=270 amount=-1 +kerning first=210 second=310 amount=-2 +kerning first=221 second=85 amount=-1 +kerning first=218 second=118 amount=-2 +kerning first=74 second=234 amount=-2 +kerning first=366 second=113 amount=-2 +kerning first=228 second=303 amount=-1 +kerning first=86 second=275 amount=-3 +kerning first=203 second=314 amount=-1 +kerning first=262 second=201 amount=-3 +kerning first=330 second=113 amount=-2 +kerning first=264 second=303 amount=-1 +kerning first=290 second=118 amount=-1 +kerning first=254 second=118 amount=-2 +kerning first=275 second=314 amount=-3 +kerning first=258 second=113 amount=-1 +kerning first=354 second=310 amount=-1 +kerning first=192 second=303 amount=-1 +kerning first=243 second=105 amount=-1 +kerning first=8250 second=252 amount=-1 +kerning first=206 second=283 amount=-2 +kerning first=365 second=8249 amount=-2 +kerning first=213 second=8249 amount=-1 +kerning first=279 second=105 amount=-2 +kerning first=113 second=118 amount=-3 +kerning first=354 second=338 amount=-3 +kerning first=72 second=8249 amount=-4 +kerning first=260 second=275 amount=-1 +kerning first=101 second=283 amount=-1 +kerning first=111 second=224 amount=-1 +kerning first=77 second=118 amount=-2 +kerning first=108 second=8249 amount=-3 +kerning first=207 second=105 amount=-1 +kerning first=279 second=104 amount=-2 +kerning first=65 second=283 amount=-1 +kerning first=75 second=224 amount=-1 +kerning first=282 second=338 amount=-1 +kerning first=277 second=241 amount=-2 +kerning first=350 second=283 amount=-1 +kerning first=216 second=224 amount=-1 +kerning first=280 second=228 amount=-1 +kerning first=268 second=98 amount=-1 +kerning first=241 second=241 amount=-1 +kerning first=314 second=283 amount=-1 +kerning first=374 second=228 amount=-4 +kerning first=240 second=380 amount=-2 +kerning first=1069 second=1053 amount=-1 +kerning first=288 second=224 amount=-1 +kerning first=1055 second=1087 amount=-1 +kerning first=313 second=241 amount=-1 +kerning first=252 second=224 amount=-1 +kerning first=367 second=248 amount=-1 +kerning first=302 second=228 amount=-2 +kerning first=209 second=283 amount=-2 +kerning first=100 second=241 amount=-1 +kerning first=266 second=228 amount=-2 +kerning first=76 second=318 amount=-2 +kerning first=120 second=112 amount=-3 +kerning first=324 second=224 amount=-1 +kerning first=230 second=228 amount=-2 +kerning first=112 second=318 amount=-2 +kerning first=84 second=112 amount=-2 +kerning first=99 second=380 amount=-2 +kerning first=1042 second=1118 amount=-1 +kerning first=379 second=325 amount=-1 +kerning first=321 second=8249 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=259 second=248 amount=-1 +kerning first=107 second=235 amount=-3 +kerning first=253 second=318 amount=-2 +kerning first=118 second=248 amount=-3 +kerning first=289 second=318 amount=-3 +kerning first=249 second=8249 amount=-2 +kerning first=193 second=101 amount=-1 +kerning first=264 second=331 amount=-1 +kerning first=229 second=101 amount=-1 +kerning first=219 second=193 amount=-4 +kerning first=375 second=279 amount=-3 +kerning first=82 second=365 amount=-2 +kerning first=1098 second=1097 amount=-1 +kerning first=346 second=256 amount=-4 +kerning first=1058 second=1072 amount=-2 +kerning first=334 second=205 amount=-2 +kerning first=272 second=303 amount=-1 +kerning first=1054 second=1047 amount=-2 +kerning first=376 second=66 amount=-1 +kerning first=338 second=230 amount=-1 +kerning first=378 second=255 amount=-2 +kerning first=82 second=216 amount=-3 +kerning first=234 second=231 amount=-1 +kerning first=274 second=256 amount=-2 +kerning first=374 second=230 amount=-5 +kerning first=339 second=252 amount=-2 +kerning first=8217 second=213 amount=-2 +kerning first=279 second=226 amount=-2 +kerning first=1062 second=1073 amount=-1 +kerning first=302 second=230 amount=-2 +kerning first=1030 second=1098 amount=-1 +kerning first=234 second=255 amount=-2 +kerning first=378 second=231 amount=-1 +kerning first=314 second=281 amount=-1 +kerning first=262 second=205 amount=-3 +kerning first=230 second=230 amount=-2 +kerning first=106 second=108 amount=-2 +kerning first=1102 second=1098 amount=-1 +kerning first=350 second=281 amount=-1 +kerning first=351 second=107 amount=-1 +kerning first=202 second=280 amount=-2 +kerning first=310 second=99 amount=-2 +kerning first=65 second=281 amount=-1 +kerning first=315 second=107 amount=-2 +kerning first=101 second=281 amount=-1 +kerning first=256 second=251 amount=-3 +kerning first=274 second=280 amount=-2 +kerning first=257 second=347 amount=-1 +kerning first=325 second=289 amount=-3 +kerning first=221 second=347 amount=-3 +kerning first=206 second=281 amount=-2 +kerning first=249 second=8221 amount=-3 +kerning first=346 second=280 amount=-3 +kerning first=116 second=347 amount=-1 +kerning first=279 second=107 amount=-2 +kerning first=315 second=105 amount=-2 +kerning first=80 second=347 amount=-1 +kerning first=243 second=107 amount=-1 +kerning first=364 second=251 amount=-1 +kerning first=351 second=105 amount=-2 +kerning first=203 second=80 amount=-2 +kerning first=250 second=333 amount=-1 +kerning first=221 second=345 amount=-1 +kerning first=66 second=81 amount=-3 +kerning first=106 second=106 amount=-2 +kerning first=274 second=282 amount=-2 +kerning first=374 second=204 amount=-1 +kerning first=97 second=318 amount=-1 +kerning first=268 second=68 amount=-3 +kerning first=321 second=8221 amount=-4 +kerning first=378 second=229 amount=-1 +kerning first=381 second=196 amount=-1 +kerning first=202 second=282 amount=-2 +kerning first=264 second=67 amount=-3 +kerning first=73 second=333 amount=-2 +kerning first=376 second=68 amount=-1 +kerning first=283 second=106 amount=-2 +kerning first=192 second=67 amount=-3 +kerning first=363 second=235 amount=-1 +kerning first=8216 second=110 amount=-1 +kerning first=207 second=81 amount=-2 +kerning first=334 second=203 amount=-2 +kerning first=315 second=81 amount=-1 +kerning first=211 second=106 amount=-1 +kerning first=211 second=368 amount=-1 +kerning first=87 second=67 amount=-3 +kerning first=89 second=230 amount=-5 +kerning first=89 second=204 amount=-1 +kerning first=1003 second=1007 amount=-2 +kerning first=8216 second=380 amount=-1 +kerning first=227 second=243 amount=-1 +kerning first=222 second=226 amount=-1 +kerning first=263 second=243 amount=-1 +kerning first=83 second=278 amount=-3 +kerning first=101 second=307 amount=-2 +kerning first=266 second=204 amount=-3 +kerning first=202 second=256 amount=-2 +kerning first=256 second=121 amount=-3 +kerning first=338 second=204 amount=-2 +kerning first=86 second=243 amount=-3 +kerning first=242 second=307 amount=-1 +kerning first=1047 second=1033 amount=-1 +kerning first=122 second=243 amount=-1 +kerning first=119 second=44 amount=-5 +kerning first=332 second=278 amount=-2 +kerning first=83 second=44 amount=-4 +kerning first=283 second=104 amount=-2 +kerning first=315 second=79 amount=-1 +kerning first=219 second=90 amount=-1 +kerning first=282 second=334 amount=-1 +kerning first=224 second=44 amount=-1 +kerning first=362 second=81 amount=-1 +kerning first=207 second=79 amount=-2 +kerning first=87 second=69 amount=-1 +kerning first=337 second=369 amount=-1 +kerning first=351 second=109 amount=-2 +kerning first=199 second=362 amount=-2 +kerning first=88 second=369 amount=-3 +kerning first=315 second=109 amount=-1 +kerning first=229 second=369 amount=-1 +kerning first=82 second=244 amount=-3 +kerning first=1057 second=1055 amount=-1 +kerning first=1105 second=1085 amount=-1 +kerning first=198 second=229 amount=-1 +kerning first=272 second=200 amount=-2 +kerning first=279 second=109 amount=-2 +kerning first=310 second=284 amount=-3 +kerning first=234 second=227 amount=-2 +kerning first=1073 second=1084 amount=-1 +kerning first=374 second=232 amount=-3 +kerning first=74 second=192 amount=-5 +kerning first=8217 second=211 amount=-2 +kerning first=204 second=380 amount=-1 +kerning first=1037 second=1084 amount=-1 +kerning first=101 second=279 amount=-1 +kerning first=252 second=8249 amount=-2 +kerning first=1048 second=1095 amount=-1 +kerning first=106 second=104 amount=-1 +kerning first=65 second=279 amount=-1 +kerning first=274 second=284 amount=-1 +kerning first=368 second=44 amount=-5 +kerning first=234 second=229 amount=-2 +kerning first=87 second=305 amount=-2 +kerning first=102 second=109 amount=-1 +kerning first=346 second=282 amount=-3 +kerning first=69 second=334 amount=-1 +kerning first=332 second=44 amount=-3 +kerning first=378 second=227 amount=-1 +kerning first=66 second=109 amount=-3 +kerning first=214 second=65 amount=-4 +kerning first=230 second=232 amount=-1 +kerning first=192 second=305 amount=-1 +kerning first=194 second=232 amount=-1 +kerning first=286 second=65 amount=-3 +kerning first=302 second=232 amount=-2 +kerning first=109 second=361 amount=-1 +kerning first=249 second=267 amount=-1 +kerning first=198 second=257 amount=-1 +kerning first=264 second=305 amount=-1 +kerning first=266 second=232 amount=-2 +kerning first=73 second=361 amount=-2 +kerning first=1102 second=1096 amount=-1 +kerning first=234 second=257 amount=-2 +kerning first=219 second=214 amount=-1 +kerning first=228 second=305 amount=-1 +kerning first=382 second=254 amount=-1 +kerning first=336 second=305 amount=-1 +kerning first=112 second=8250 amount=-2 +kerning first=286 second=361 amount=-1 +kerning first=89 second=232 amount=-3 +kerning first=250 second=361 amount=-1 +kerning first=365 second=229 amount=-1 +kerning first=89 second=202 amount=-1 +kerning first=365 second=347 amount=-2 +kerning first=118 second=244 amount=-3 +kerning first=380 second=121 amount=-2 +kerning first=344 second=121 amount=-3 +kerning first=338 second=202 amount=-2 +kerning first=274 second=254 amount=-1 +kerning first=310 second=254 amount=-1 +kerning first=221 second=325 amount=-1 +kerning first=266 second=202 amount=-3 +kerning first=346 second=254 amount=-2 +kerning first=8216 second=378 amount=-1 +kerning first=236 second=121 amount=-3 +kerning first=336 second=69 amount=-2 +kerning first=268 second=66 amount=-3 +kerning first=1030 second=1096 amount=-1 +kerning first=203 second=82 amount=-2 +kerning first=97 second=254 amount=-1 +kerning first=367 second=244 amount=-1 +kerning first=1098 second=1099 amount=-1 +kerning first=72 second=267 amount=-2 +kerning first=374 second=202 amount=-1 +kerning first=264 second=69 amount=-3 +kerning first=108 second=267 amount=-1 +kerning first=378 second=257 amount=-1 +kerning first=202 second=254 amount=-1 +kerning first=302 second=212 amount=-2 +kerning first=8222 second=357 amount=-2 +kerning first=370 second=199 amount=-1 +kerning first=338 second=212 amount=-1 +kerning first=79 second=8217 amount=-2 +kerning first=187 second=69 amount=-5 +kerning first=69 second=66 amount=-2 +kerning first=1039 second=1102 amount=-1 +kerning first=381 second=202 amount=-1 +kerning first=115 second=8217 amount=-2 +kerning first=1102 second=1116 amount=-1 +kerning first=73 second=79 amount=-2 +kerning first=266 second=212 amount=-3 +kerning first=196 second=99 amount=-1 +kerning first=196 second=332 amount=-3 +kerning first=84 second=82 amount=-1 +kerning first=221 second=69 amount=-1 +kerning first=1113 second=1119 amount=-1 +kerning first=282 second=66 amount=-2 +kerning first=194 second=212 amount=-3 +kerning first=76 second=316 amount=-2 +kerning first=80 second=69 amount=-1 +kerning first=1094 second=1086 amount=-1 +kerning first=268 second=332 amount=-3 +kerning first=1092 second=1088 amount=-1 +kerning first=307 second=225 amount=-2 +kerning first=89 second=212 amount=-3 +kerning first=356 second=205 amount=-1 +kerning first=304 second=332 amount=-2 +kerning first=352 second=192 amount=-4 +kerning first=332 second=82 amount=-2 +kerning first=203 second=76 amount=-2 +kerning first=85 second=199 amount=-1 +kerning first=268 second=72 amount=-3 +kerning first=201 second=216 amount=-1 +kerning first=8217 second=102 amount=-1 +kerning first=376 second=332 amount=-3 +kerning first=280 second=192 amount=-2 +kerning first=212 second=205 amount=-2 +kerning first=208 second=192 amount=-4 +kerning first=205 second=229 amount=-2 +kerning first=90 second=290 amount=-1 +kerning first=187 second=203 amount=-5 +kerning first=1119 second=1077 amount=-1 +kerning first=256 second=8217 amount=-5 +kerning first=262 second=199 amount=-3 +kerning first=284 second=205 amount=-1 +kerning first=374 second=212 amount=-3 +kerning first=298 second=199 amount=-2 +kerning first=376 second=72 amount=-1 +kerning first=209 second=242 amount=-2 +kerning first=100 second=229 amount=-1 +kerning first=194 second=235 amount=-1 +kerning first=354 second=326 amount=-3 +kerning first=230 second=226 amount=-2 +kerning first=281 second=242 amount=-1 +kerning first=266 second=226 amount=-2 +kerning first=268 second=86 amount=-1 +kerning first=302 second=226 amount=-2 +kerning first=71 second=205 amount=-1 +kerning first=338 second=226 amount=-1 +kerning first=45 second=119 amount=-3 +kerning first=263 second=8221 amount=-2 +kerning first=1040 second=1108 amount=-2 +kerning first=374 second=226 amount=-5 +kerning first=246 second=326 amount=-1 +kerning first=356 second=219 amount=-1 +kerning first=8220 second=198 amount=-8 +kerning first=282 second=326 amount=-1 +kerning first=117 second=119 amount=-3 +kerning first=1063 second=1087 amount=-1 +kerning first=69 second=74 amount=-1 +kerning first=284 second=219 amount=-1 +kerning first=117 second=279 amount=-1 +kerning first=66 second=103 amount=-4 +kerning first=69 second=326 amount=-1 +kerning first=258 second=119 amount=-3 +kerning first=264 second=333 amount=-2 +kerning first=201 second=202 amount=-2 +kerning first=105 second=326 amount=-2 +kerning first=289 second=316 amount=-3 +kerning first=66 second=305 amount=-3 +kerning first=330 second=119 amount=-2 +kerning first=371 second=8221 amount=-3 +kerning first=339 second=248 amount=-1 +kerning first=366 second=119 amount=-2 +kerning first=71 second=219 amount=-1 +kerning first=196 second=86 amount=-6 +kerning first=87 second=333 amount=-3 +kerning first=89 second=226 amount=-5 +kerning first=228 second=333 amount=-1 +kerning first=1116 second=1073 amount=-1 +kerning first=8218 second=291 amount=-1 +kerning first=192 second=333 amount=-1 +kerning first=1037 second=1092 amount=-1 +kerning first=290 second=377 amount=-2 +kerning first=108 second=269 amount=-1 +kerning first=328 second=259 amount=-1 +kerning first=355 second=116 amount=-1 +kerning first=72 second=269 amount=-2 +kerning first=337 second=375 amount=-3 +kerning first=351 second=103 amount=-3 +kerning first=66 second=369 amount=-3 +kerning first=70 second=382 amount=-2 +kerning first=1055 second=1085 amount=-1 +kerning first=315 second=103 amount=-3 +kerning first=102 second=363 amount=-1 +kerning first=106 second=382 amount=-1 +kerning first=1040 second=1063 amount=-5 +kerning first=192 second=45 amount=-4 +kerning first=252 second=246 amount=-1 +kerning first=252 second=252 amount=-1 +kerning first=243 second=103 amount=-2 +kerning first=249 second=269 amount=-1 +kerning first=207 second=363 amount=-2 +kerning first=115 second=259 amount=-1 +kerning first=1098 second=1075 amount=-1 +kerning first=234 second=253 amount=-2 +kerning first=288 second=252 amount=-1 +kerning first=207 second=103 amount=-3 +kerning first=317 second=366 amount=-3 +kerning first=243 second=363 amount=-1 +kerning first=283 second=116 amount=-1 +kerning first=324 second=252 amount=-1 +kerning first=228 second=45 amount=-2 +kerning first=279 second=363 amount=-2 +kerning first=220 second=259 amount=-3 +kerning first=8217 second=235 amount=-3 +kerning first=106 second=122 amount=-1 +kerning first=1037 second=1086 amount=-1 +kerning first=1054 second=1043 amount=-1 +kerning first=315 second=363 amount=-2 +kerning first=216 second=74 amount=-2 +kerning first=315 second=369 amount=-2 +kerning first=274 second=266 amount=-1 +kerning first=70 second=122 amount=-2 +kerning first=351 second=363 amount=-1 +kerning first=279 second=369 amount=-2 +kerning first=355 second=382 amount=-1 +kerning first=310 second=266 amount=-3 +kerning first=257 second=257 amount=-1 +kerning first=376 second=378 amount=-3 +kerning first=202 second=266 amount=-1 +kerning first=351 second=369 amount=-1 +kerning first=77 second=232 amount=-2 +kerning first=283 second=122 amount=-2 +kerning first=229 second=375 amount=-3 +kerning first=102 second=369 amount=-1 +kerning first=211 second=382 amount=-2 +kerning first=193 second=375 amount=-3 +kerning first=211 second=122 amount=-2 +kerning first=8218 second=108 amount=-1 +kerning first=370 second=352 amount=-3 +kerning first=103 second=233 amount=-2 +kerning first=337 second=109 amount=-1 +kerning first=1087 second=1072 amount=-1 +kerning first=207 second=369 amount=-2 +kerning first=283 second=382 amount=-2 +kerning first=69 second=313 amount=-2 +kerning first=88 second=375 amount=-3 +kerning first=68 second=206 amount=-2 +kerning first=102 second=355 amount=-1 +kerning first=193 second=115 amount=-2 +kerning first=256 second=279 amount=-1 +kerning first=66 second=355 amount=-2 +kerning first=203 second=336 amount=-1 +kerning first=229 second=115 amount=-1 +kerning first=229 second=109 amount=-1 +kerning first=88 second=115 amount=-1 +kerning first=328 second=303 amount=-1 +kerning first=1097 second=1108 amount=-1 +kerning first=8222 second=318 amount=-1 +kerning first=279 second=355 amount=-1 +kerning first=337 second=115 amount=-2 +kerning first=243 second=355 amount=-1 +kerning first=76 second=296 amount=-2 +kerning first=220 second=279 amount=-2 +kerning first=378 second=253 amount=-2 +kerning first=252 second=232 amount=-1 +kerning first=351 second=355 amount=-2 +kerning first=106 second=116 amount=-1 +kerning first=283 second=108 amount=-3 +kerning first=89 second=206 amount=-1 +kerning first=84 second=370 amount=-1 +kerning first=45 second=89 amount=-4 +kerning first=75 second=232 amount=-2 +kerning first=187 second=73 amount=-5 +kerning first=266 second=206 amount=-3 +kerning first=87 second=325 amount=-1 +kerning first=275 second=328 amount=-2 +kerning first=87 second=313 amount=-1 +kerning first=1113 second=1113 amount=-1 +kerning first=338 second=206 amount=-2 +kerning first=203 second=328 amount=-1 +kerning first=214 second=73 amount=-2 +kerning first=1077 second=1113 amount=-1 +kerning first=71 second=225 amount=-1 +kerning first=199 second=303 amount=-1 +kerning first=113 second=98 amount=-2 +kerning first=199 second=352 amount=-3 +kerning first=379 second=315 amount=-1 +kerning first=264 second=325 amount=-3 +kerning first=379 second=303 amount=-1 +kerning first=199 second=315 amount=-3 +kerning first=364 second=235 amount=-2 +kerning first=381 second=289 amount=-3 +kerning first=195 second=290 amount=-3 +kerning first=66 second=83 amount=-4 +kerning first=336 second=325 amount=-2 +kerning first=307 second=303 amount=-1 +kerning first=1025 second=1025 amount=-1 +kerning first=347 second=328 amount=-2 +kerning first=1055 second=1107 amount=-1 +kerning first=313 second=255 amount=-3 +kerning first=313 second=221 amount=-3 +kerning first=284 second=225 amount=-1 +kerning first=326 second=380 amount=-1 +kerning first=207 second=83 amount=-2 +kerning first=80 second=323 amount=-1 +kerning first=1048 second=1117 amount=-1 +kerning first=356 second=225 amount=-5 +kerning first=201 second=196 amount=-2 +kerning first=304 second=338 amount=-2 +kerning first=311 second=249 amount=-1 +kerning first=315 second=83 amount=-1 +kerning first=330 second=214 amount=-2 +kerning first=107 second=225 amount=-2 +kerning first=368 second=286 amount=-1 +kerning first=268 second=338 amount=-3 +kerning first=254 second=98 amount=-1 +kerning first=286 second=85 amount=-1 +kerning first=218 second=380 amount=-3 +kerning first=258 second=263 amount=-1 +kerning first=212 second=225 amount=-1 +kerning first=296 second=286 amount=-2 +kerning first=254 second=380 amount=-2 +kerning first=326 second=98 amount=-2 +kerning first=214 second=85 amount=-1 +kerning first=221 second=8250 amount=-3 +kerning first=290 second=380 amount=-1 +kerning first=290 second=98 amount=-1 +kerning first=225 second=102 amount=-1 +kerning first=246 second=46 amount=-3 +kerning first=264 second=311 amount=-1 +kerning first=221 second=77 amount=-1 +kerning first=261 second=102 amount=-1 +kerning first=282 second=46 amount=-1 +kerning first=8220 second=192 amount=-8 +kerning first=260 second=286 amount=-3 +kerning first=228 second=311 amount=-1 +kerning first=199 second=317 amount=-3 +kerning first=192 second=311 amount=-2 +kerning first=333 second=102 amount=-1 +kerning first=354 second=46 amount=-5 +kerning first=1051 second=1080 amount=-1 +kerning first=80 second=77 amount=-1 +kerning first=201 second=210 amount=-1 +kerning first=69 second=46 amount=-1 +kerning first=84 second=102 amount=-1 +kerning first=73 second=71 amount=-2 +kerning first=105 second=46 amount=-2 +kerning first=234 second=233 amount=-1 +kerning first=120 second=102 amount=-1 +kerning first=210 second=46 amount=-3 +kerning first=196 second=352 amount=-3 +kerning first=326 second=112 amount=-1 +kerning first=356 second=211 amount=-3 +kerning first=75 second=252 amount=-3 +kerning first=290 second=112 amount=-1 +kerning first=208 second=200 amount=-2 +kerning first=70 second=110 amount=-1 +kerning first=378 second=233 amount=-1 +kerning first=100 second=235 amount=-1 +kerning first=111 second=252 amount=-1 +kerning first=254 second=112 amount=-1 +kerning first=106 second=110 amount=-2 +kerning first=371 second=253 amount=-2 +kerning first=208 second=46 amount=-3 +kerning first=218 second=112 amount=-2 +kerning first=324 second=289 amount=-2 +kerning first=205 second=235 amount=-2 +kerning first=369 second=102 amount=-1 +kerning first=98 second=328 amount=-1 +kerning first=352 second=200 amount=-3 +kerning first=277 second=235 amount=-1 +kerning first=77 second=112 amount=-1 +kerning first=1044 second=1090 amount=-1 +kerning first=283 second=110 amount=-2 +kerning first=84 second=350 amount=-3 +kerning first=280 second=200 amount=-2 +kerning first=236 second=113 amount=-1 +kerning first=218 second=378 amount=-3 +kerning first=205 second=237 amount=-1 +kerning first=104 second=250 amount=-1 +kerning first=1037 second=1094 amount=-1 +kerning first=317 second=262 amount=-1 +kerning first=72 second=275 amount=-2 +kerning first=250 second=353 amount=-2 +kerning first=100 second=237 amount=-1 +kerning first=209 second=250 amount=-2 +kerning first=108 second=275 amount=-1 +kerning first=380 second=113 amount=-1 +kerning first=99 second=171 amount=-2 +kerning first=380 second=365 amount=-2 +kerning first=362 second=100 amount=-2 +kerning first=344 second=113 amount=-3 +kerning first=344 second=365 amount=-2 +kerning first=290 second=366 amount=-1 +kerning first=200 second=251 amount=-2 +kerning first=106 second=99 amount=-1 +kerning first=113 second=378 amount=-2 +kerning first=73 second=353 amount=-2 +kerning first=369 second=117 amount=-1 +kerning first=362 second=112 amount=-2 +kerning first=77 second=378 amount=-1 +kerning first=109 second=353 amount=-1 +kerning first=284 second=254 amount=-1 +kerning first=286 second=87 amount=-3 +kerning first=195 second=288 amount=-3 +kerning first=263 second=249 amount=-2 +kerning first=274 second=260 amount=-2 +kerning first=304 second=352 amount=-2 +kerning first=218 second=100 amount=-2 +kerning first=268 second=352 amount=-3 +kerning first=1065 second=1054 amount=-1 +kerning first=362 second=227 amount=-3 +kerning first=216 second=70 amount=-2 +kerning first=214 second=87 amount=-2 +kerning first=196 second=243 amount=-1 +kerning first=346 second=260 amount=-4 +kerning first=376 second=352 amount=-3 +kerning first=196 second=354 amount=-6 +kerning first=8220 second=244 amount=-3 +kerning first=1030 second=1102 amount=-1 +kerning first=362 second=378 amount=-3 +kerning first=268 second=354 amount=-1 +kerning first=326 second=378 amount=-1 +kerning first=77 second=100 amount=-2 +kerning first=1102 second=1102 amount=-1 +kerning first=90 second=288 amount=-1 +kerning first=249 second=275 amount=-1 +kerning first=113 second=100 amount=-1 +kerning first=381 second=210 amount=-1 +kerning first=209 second=262 amount=-2 +kerning first=371 second=249 amount=-1 +kerning first=1055 second=1105 amount=-1 +kerning first=72 second=289 amount=-3 +kerning first=277 second=223 amount=-1 +kerning first=344 second=99 amount=-3 +kerning first=1091 second=1105 amount=-2 +kerning first=108 second=289 amount=-3 +kerning first=362 second=114 amount=-1 +kerning first=208 second=198 amount=-4 +kerning first=77 second=380 amount=-1 +kerning first=213 second=289 amount=-1 +kerning first=250 second=339 amount=-1 +kerning first=281 second=248 amount=-1 +kerning first=313 second=223 amount=-1 +kerning first=113 second=380 amount=-2 +kerning first=380 second=99 amount=-1 +kerning first=1062 second=1077 amount=-1 +kerning first=1054 second=1053 amount=-1 +kerning first=87 second=327 amount=-1 +kerning first=86 second=249 amount=-1 +kerning first=209 second=248 amount=-2 +kerning first=90 second=274 amount=-1 +kerning first=353 second=8220 amount=-2 +kerning first=218 second=114 amount=-1 +kerning first=1047 second=1039 amount=-2 +kerning first=371 second=263 amount=-3 +kerning first=317 second=8220 amount=-4 +kerning first=254 second=114 amount=-1 +kerning first=67 second=198 amount=-3 +kerning first=281 second=8220 amount=-2 +kerning first=122 second=263 amount=-1 +kerning first=236 second=365 amount=-1 +kerning first=264 second=327 amount=-3 +kerning first=65 second=287 amount=-3 +kerning first=200 second=365 amount=-2 +kerning first=227 second=263 amount=-1 +kerning first=336 second=327 amount=-2 +kerning first=1091 second=1078 amount=-1 +kerning first=263 second=263 amount=-1 +kerning first=200 second=379 amount=-1 +kerning first=101 second=287 amount=-3 +kerning first=104 second=8220 amount=-4 +kerning first=280 second=198 amount=-2 +kerning first=221 second=75 amount=-1 +kerning first=242 second=287 amount=-2 +kerning first=68 second=8220 amount=-2 +kerning first=286 second=73 amount=-1 +kerning first=272 second=379 amount=-2 +kerning first=206 second=287 amount=-3 +kerning first=202 second=259 amount=-1 +kerning first=313 second=237 amount=-2 +kerning first=264 second=313 amount=-3 +kerning first=352 second=198 amount=-4 +kerning first=314 second=287 amount=-3 +kerning first=277 second=237 amount=-2 +kerning first=80 second=75 amount=-1 +kerning first=73 second=339 amount=-2 +kerning first=305 second=324 amount=-1 +kerning first=278 second=287 amount=-3 +kerning first=236 second=99 amount=-1 +kerning first=241 second=237 amount=-1 +kerning first=8250 second=256 amount=-4 +kerning first=8222 second=316 amount=-1 +kerning first=118 second=234 amount=-3 +kerning first=253 second=44 amount=-5 +kerning first=113 second=104 amount=-2 +kerning first=350 second=287 amount=-3 +kerning first=1098 second=1091 amount=-2 +kerning first=307 second=233 amount=-1 +kerning first=234 second=237 amount=-2 +kerning first=225 second=244 amount=-1 +kerning first=259 second=234 amount=-1 +kerning first=75 second=244 amount=-2 +kerning first=198 second=237 amount=-1 +kerning first=290 second=104 amount=-1 +kerning first=8220 second=351 amount=-2 +kerning first=219 second=197 amount=-4 +kerning first=354 second=324 amount=-3 +kerning first=217 second=44 amount=-5 +kerning first=254 second=104 amount=-1 +kerning first=206 second=279 amount=-2 +kerning first=82 second=234 amount=-3 +kerning first=192 second=332 amount=-3 +kerning first=208 second=194 amount=-4 +kerning first=205 second=227 amount=-2 +kerning first=249 second=277 amount=-1 +kerning first=335 second=331 amount=-1 +kerning first=109 second=351 amount=-1 +kerning first=202 second=368 amount=-2 +kerning first=100 second=227 amount=-1 +kerning first=236 second=111 amount=-1 +kerning first=266 second=46 amount=-1 +kerning first=73 second=351 amount=-2 +kerning first=1058 second=1054 amount=-1 +kerning first=206 second=380 amount=-1 +kerning first=283 second=351 amount=-2 +kerning first=108 second=277 amount=-1 +kerning first=69 second=314 amount=-1 +kerning first=67 second=194 amount=-3 +kerning first=315 second=87 amount=-3 +kerning first=72 second=277 amount=-2 +kerning first=250 second=8249 amount=-2 +kerning first=367 second=234 amount=-1 +kerning first=277 second=227 amount=-2 +kerning first=1030 second=1104 amount=-1 +kerning first=105 second=314 amount=-2 +kerning first=268 second=74 amount=-2 +kerning first=241 second=227 amount=-1 +kerning first=314 second=8249 amount=-3 +kerning first=229 second=121 amount=-3 +kerning first=207 second=361 amount=-2 +kerning first=220 second=267 amount=-2 +kerning first=80 second=327 amount=-1 +kerning first=371 second=257 amount=-2 +kerning first=344 second=367 amount=-2 +kerning first=350 second=8249 amount=-3 +kerning first=193 second=121 amount=-3 +kerning first=256 second=267 amount=-1 +kerning first=380 second=367 amount=-2 +kerning first=1051 second=1074 amount=-1 +kerning first=84 second=364 amount=-1 +kerning first=376 second=74 amount=-4 +kerning first=278 second=8249 amount=-2 +kerning first=88 second=121 amount=-3 +kerning first=243 second=361 amount=-1 +kerning first=221 second=327 amount=-1 +kerning first=335 second=257 amount=-1 +kerning first=86 second=261 amount=-5 +kerning first=245 second=254 amount=-1 +kerning first=351 second=361 amount=-1 +kerning first=335 second=230 amount=-1 +kerning first=227 second=257 amount=-1 +kerning first=200 second=367 amount=-2 +kerning first=206 second=8249 amount=-4 +kerning first=281 second=254 amount=-2 +kerning first=315 second=361 amount=-2 +kerning first=263 second=257 amount=-2 +kerning first=236 second=367 amount=-1 +kerning first=344 second=111 amount=-3 +kerning first=317 second=254 amount=-2 +kerning first=118 second=224 amount=-3 +kerning first=380 second=111 amount=-1 +kerning first=250 second=351 amount=-2 +kerning first=82 second=224 amount=-2 +kerning first=1093 second=1086 amount=-2 +kerning first=1047 second=1051 amount=-1 +kerning first=290 second=374 amount=-3 +kerning first=223 second=224 amount=-1 +kerning first=104 second=254 amount=-2 +kerning first=187 second=224 amount=-1 +kerning first=335 second=261 amount=-1 +kerning first=214 second=200 amount=-2 +kerning first=295 second=224 amount=-1 +kerning first=371 second=261 amount=-2 +kerning first=337 second=117 amount=-1 +kerning first=259 second=224 amount=-1 +kerning first=8218 second=102 amount=-1 +kerning first=268 second=344 amount=-3 +kerning first=367 second=224 amount=-1 +kerning first=281 second=250 amount=-2 +kerning first=1040 second=1057 amount=-3 +kerning first=337 second=121 amount=-3 +kerning first=90 second=284 amount=-1 +kerning first=369 second=249 amount=-1 +kerning first=1031 second=1072 amount=-1 +kerning first=331 second=224 amount=-1 +kerning first=106 second=114 amount=-1 +kerning first=274 second=274 amount=-2 +kerning first=245 second=250 amount=-1 +kerning first=102 second=361 amount=-1 +kerning first=353 second=250 amount=-1 +kerning first=66 second=361 amount=-3 +kerning first=376 second=344 amount=-1 +kerning first=263 second=261 amount=-2 +kerning first=202 second=274 amount=-2 +kerning first=317 second=250 amount=-2 +kerning first=1003 second=997 amount=-2 +kerning first=365 second=331 amount=-1 +kerning first=236 second=101 amount=-1 +kerning first=257 second=337 amount=-1 +kerning first=257 second=331 amount=-1 +kerning first=284 second=221 amount=-3 +kerning first=1047 second=1041 amount=-2 +kerning first=351 second=97 amount=-1 +kerning first=1048 second=1107 amount=-1 +kerning first=221 second=337 amount=-3 +kerning first=317 second=370 amount=-3 +kerning first=296 second=290 amount=-2 +kerning first=212 second=221 amount=-2 +kerning first=88 second=117 amount=-3 +kerning first=344 second=101 amount=-3 +kerning first=201 second=200 amount=-2 +kerning first=221 second=331 amount=-3 +kerning first=229 second=117 amount=-1 +kerning first=380 second=101 amount=-1 +kerning first=368 second=290 amount=-1 +kerning first=193 second=117 amount=-3 +kerning first=365 second=337 amount=-1 +kerning first=1098 second=1087 amount=-1 +kerning first=261 second=98 amount=-1 +kerning first=374 second=214 amount=-3 +kerning first=267 second=291 amount=-3 +kerning first=8217 second=229 amount=-6 +kerning first=369 second=98 amount=-2 +kerning first=122 second=251 amount=-2 +kerning first=203 second=338 amount=-1 +kerning first=333 second=98 amount=-1 +kerning first=260 second=290 amount=-3 +kerning first=86 second=251 amount=-2 +kerning first=120 second=98 amount=-3 +kerning first=8218 second=104 amount=-1 +kerning first=266 second=214 amount=-3 +kerning first=227 second=251 amount=-1 +kerning first=310 second=264 amount=-3 +kerning first=355 second=380 amount=-1 +kerning first=252 second=240 amount=-1 +kerning first=274 second=264 amount=-1 +kerning first=225 second=98 amount=-1 +kerning first=375 second=273 amount=-3 +kerning first=338 second=214 amount=-1 +kerning first=1069 second=1067 amount=-1 +kerning first=302 second=214 amount=-2 +kerning first=263 second=251 amount=-2 +kerning first=202 second=264 amount=-1 +kerning first=272 second=68 amount=-2 +kerning first=89 second=214 amount=-3 +kerning first=264 second=317 amount=-3 +kerning first=371 second=251 amount=-1 +kerning first=89 second=220 amount=-1 +kerning first=286 second=77 amount=-1 +kerning first=335 second=251 amount=-1 +kerning first=194 second=231 amount=-1 +kerning first=221 second=71 amount=-3 +kerning first=70 second=210 amount=-1 +kerning first=194 second=214 amount=-3 +kerning first=336 second=317 amount=-2 +kerning first=332 second=298 amount=-2 +kerning first=214 second=77 amount=-2 +kerning first=352 second=194 amount=-4 +kerning first=67 second=303 amount=-1 +kerning first=87 second=317 amount=-1 +kerning first=266 second=220 amount=-2 +kerning first=280 second=194 amount=-2 +kerning first=1056 second=1059 amount=-1 +kerning first=194 second=220 amount=-3 +kerning first=228 second=252 amount=-1 +kerning first=350 second=291 amount=-3 +kerning first=203 second=330 amount=-2 +kerning first=268 second=84 amount=-1 +kerning first=66 second=97 amount=-3 +kerning first=381 second=200 amount=-1 +kerning first=314 second=291 amount=-3 +kerning first=246 second=324 amount=-1 +kerning first=290 second=368 amount=-1 +kerning first=102 second=97 amount=-2 +kerning first=278 second=291 amount=-3 +kerning first=71 second=221 amount=-3 +kerning first=1069 second=1103 amount=-1 +kerning first=242 second=291 amount=-2 +kerning first=307 second=311 amount=-1 +kerning first=1098 second=1081 amount=-1 +kerning first=206 second=291 amount=-3 +kerning first=282 second=324 amount=-1 +kerning first=1102 second=1114 amount=-1 +kerning first=243 second=97 amount=-1 +kerning first=69 second=324 amount=-1 +kerning first=83 second=298 amount=-3 +kerning first=279 second=97 amount=-2 +kerning first=235 second=311 amount=-2 +kerning first=101 second=291 amount=-3 +kerning first=1030 second=1114 amount=-1 +kerning first=1055 second=1101 amount=-1 +kerning first=199 second=311 amount=-1 +kerning first=65 second=291 amount=-3 +kerning first=80 second=337 amount=-1 +kerning first=207 second=97 amount=-2 +kerning first=356 second=213 amount=-3 +kerning first=105 second=324 amount=-2 +kerning first=236 second=375 amount=-3 +kerning first=118 second=228 amount=-3 +kerning first=364 second=8249 amount=-5 +kerning first=334 second=193 amount=-4 +kerning first=227 second=253 amount=-3 +kerning first=266 second=218 amount=-2 +kerning first=82 second=228 amount=-2 +kerning first=378 second=243 amount=-1 +kerning first=1105 second=1075 amount=-1 +kerning first=70 second=120 amount=-1 +kerning first=263 second=253 amount=-2 +kerning first=262 second=193 amount=-3 +kerning first=106 second=120 amount=-1 +kerning first=194 second=218 amount=-3 +kerning first=376 second=78 amount=-1 +kerning first=335 second=253 amount=-3 +kerning first=380 second=375 amount=-2 +kerning first=1098 second=1085 amount=-1 +kerning first=380 second=103 amount=-2 +kerning first=8250 second=260 amount=-4 +kerning first=202 second=268 amount=-1 +kerning first=344 second=375 amount=-3 +kerning first=234 second=243 amount=-1 +kerning first=370 second=193 amount=-4 +kerning first=344 second=103 amount=-3 +kerning first=310 second=268 amount=-3 +kerning first=374 second=218 amount=-1 +kerning first=1058 second=1060 amount=-1 +kerning first=338 second=218 amount=-2 +kerning first=1047 second=1045 amount=-2 +kerning first=268 second=78 amount=-3 +kerning first=1055 second=1095 amount=-1 +kerning first=355 second=120 amount=-1 +kerning first=203 second=70 amount=-2 +kerning first=76 second=310 amount=-2 +kerning first=1073 second=1100 amount=-1 +kerning first=1047 second=1043 amount=-2 +kerning first=355 second=118 amount=-1 +kerning first=211 second=120 amount=-1 +kerning first=89 second=218 amount=-1 +kerning first=250 second=345 amount=-1 +kerning first=350 second=45 amount=-3 +kerning first=86 second=253 amount=-3 +kerning first=283 second=120 amount=-2 +kerning first=122 second=253 amount=-2 +kerning first=80 second=65 amount=-4 +kerning first=202 second=270 amount=-2 +kerning first=248 second=326 amount=-1 +kerning first=283 second=118 amount=-2 +kerning first=1054 second=1051 amount=-3 +kerning first=71 second=78 amount=-1 +kerning first=221 second=65 amount=-6 +kerning first=274 second=270 amount=-2 +kerning first=90 second=280 amount=-1 +kerning first=236 second=105 amount=-1 +kerning first=1065 second=1089 amount=-1 +kerning first=199 second=305 amount=-1 +kerning first=378 second=241 amount=-2 +kerning first=109 second=251 amount=-1 +kerning first=8217 second=227 amount=-6 +kerning first=83 second=8250 amount=-1 +kerning first=334 second=90 amount=-2 +kerning first=1030 second=1108 amount=-1 +kerning first=272 second=105 amount=-1 +kerning first=101 second=324 amount=-2 +kerning first=69 second=318 amount=-1 +kerning first=1098 second=1083 amount=-1 +kerning first=106 second=118 amount=-3 +kerning first=105 second=318 amount=-2 +kerning first=234 second=245 amount=-1 +kerning first=108 second=283 amount=-1 +kerning first=200 second=105 amount=-1 +kerning first=70 second=118 amount=-1 +kerning first=235 second=305 amount=-2 +kerning first=72 second=283 amount=-2 +kerning first=221 second=335 amount=-3 +kerning first=234 second=241 amount=-2 +kerning first=87 second=171 amount=-5 +kerning first=1092 second=1084 amount=-1 +kerning first=307 second=305 amount=-2 +kerning first=198 second=241 amount=-1 +kerning first=8218 second=287 amount=-1 +kerning first=380 second=291 amount=-2 +kerning first=8217 second=100 amount=-3 +kerning first=8217 second=223 amount=-2 +kerning first=367 second=228 amount=-1 +kerning first=379 second=305 amount=-1 +kerning first=331 second=228 amount=-1 +kerning first=249 second=283 amount=-1 +kerning first=295 second=228 amount=-1 +kerning first=254 second=108 amount=-2 +kerning first=346 second=270 amount=-3 +kerning first=80 second=335 amount=-1 +kerning first=259 second=228 amount=-1 +kerning first=67 second=200 amount=-3 +kerning first=223 second=228 amount=-1 +kerning first=326 second=108 amount=-1 +kerning first=85 second=193 amount=-4 +kerning first=290 second=370 amount=-1 +kerning first=290 second=108 amount=-1 +kerning first=249 second=281 amount=-1 +kerning first=205 second=231 amount=-2 +kerning first=73 second=347 amount=-2 +kerning first=236 second=107 amount=-1 +kerning first=203 second=66 amount=-2 +kerning first=100 second=231 amount=-1 +kerning first=68 second=256 amount=-4 +kerning first=200 second=107 amount=-1 +kerning first=1055 second=1097 amount=-1 +kerning first=72 second=281 amount=-2 +kerning first=1094 second=1092 amount=-1 +kerning first=369 second=113 amount=-1 +kerning first=307 second=231 amount=-1 +kerning first=108 second=281 amount=-1 +kerning first=317 second=256 amount=-2 +kerning first=1047 second=1047 amount=-2 +kerning first=1037 second=1098 amount=-1 +kerning first=331 second=230 amount=-1 +kerning first=371 second=255 amount=-2 +kerning first=1051 second=1072 amount=-1 +kerning first=367 second=230 amount=-1 +kerning first=335 second=255 amount=-3 +kerning first=277 second=231 amount=-1 +kerning first=1100 second=1114 amount=-1 +kerning first=221 second=67 amount=-3 +kerning first=203 second=332 amount=-1 +kerning first=313 second=253 amount=-3 +kerning first=266 second=216 amount=-3 +kerning first=263 second=255 amount=-2 +kerning first=302 second=216 amount=-2 +kerning first=227 second=255 amount=-3 +kerning first=227 second=353 amount=-1 +kerning first=310 second=346 amount=-2 +kerning first=338 second=216 amount=-1 +kerning first=380 second=371 amount=-2 +kerning first=122 second=255 amount=-2 +kerning first=225 second=242 amount=-1 +kerning first=89 second=216 amount=-3 +kerning first=86 second=255 amount=-3 +kerning first=8222 second=314 amount=-1 +kerning first=250 second=347 amount=-2 +kerning first=380 second=107 amount=-2 +kerning first=262 second=378 amount=-2 +kerning first=194 second=216 amount=-3 +kerning first=236 second=371 amount=-1 +kerning first=344 second=107 amount=-3 +kerning first=67 second=192 amount=-3 +kerning first=80 second=333 amount=-1 +kerning first=212 second=217 amount=-1 +kerning first=221 second=333 amount=-3 +kerning first=241 second=229 amount=-1 +kerning first=252 second=242 amount=-1 +kerning first=1054 second=1033 amount=-3 +kerning first=376 second=80 amount=-1 +kerning first=277 second=229 amount=-2 +kerning first=73 second=81 amount=-2 +kerning first=113 second=106 amount=4 +kerning first=284 second=217 amount=-1 +kerning first=374 second=216 amount=-3 +kerning first=70 second=212 amount=-1 +kerning first=381 second=204 amount=-1 +kerning first=356 second=217 amount=-1 +kerning first=268 second=80 amount=-3 +kerning first=199 second=251 amount=-2 +kerning first=203 second=68 amount=-2 +kerning first=290 second=106 amount=-1 +kerning first=259 second=230 amount=-1 +kerning first=88 second=119 amount=-3 +kerning first=90 second=282 amount=-1 +kerning first=326 second=106 amount=-2 +kerning first=295 second=230 amount=-1 +kerning first=196 second=346 amount=-3 +kerning first=187 second=230 amount=-1 +kerning first=193 second=119 amount=-3 +kerning first=235 second=307 amount=-2 +kerning first=254 second=106 amount=-2 +kerning first=223 second=230 amount=-1 +kerning first=229 second=119 amount=-3 +kerning first=82 second=230 amount=-2 +kerning first=8218 second=289 amount=-1 +kerning first=307 second=307 amount=-1 +kerning first=118 second=230 amount=-3 +kerning first=257 second=333 amount=-1 +kerning first=337 second=119 amount=-2 +kerning first=365 second=333 amount=-1 +kerning first=304 second=346 amount=-2 +kerning first=201 second=204 amount=-2 +kerning first=71 second=217 amount=-1 +kerning first=268 second=346 amount=-3 +kerning first=75 second=230 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I1.png b/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I1.png new file mode 100644 index 000000000..ecf37a03d Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I1.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I2.png b/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I2.png new file mode 100644 index 000000000..502d04d95 Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/FreeSerif64I2.png differ diff --git a/jme3-examples/src/main/resources/jme3test/font/Native-FreeSerif16I.fnt b/jme3-examples/src/main/resources/jme3test/font/Native-FreeSerif16I.fnt new file mode 100644 index 000000000..e5efc1d75 --- /dev/null +++ b/jme3-examples/src/main/resources/jme3test/font/Native-FreeSerif16I.fnt @@ -0,0 +1,18131 @@ +info face="Free Serif Italic" size=16 bold=0 italic=1 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=22 base=16 scaleW=512 scaleH=512 pages=1 packed=0 +page id=0 file="Native-FreeSerif16I.png" +chars count=754 +char id=0 x=0 y=0 width=17 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=13 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=33 x=17 y=0 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=34 x=27 y=0 width=12 height=22 xoffset=2 yoffset=0 xadvance=7 page=0 chnl=0 +char id=35 x=39 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=36 x=52 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=37 x=65 y=0 width=18 height=22 xoffset=1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=38 x=83 y=0 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=39 x=100 y=0 width=8 height=22 xoffset=2 yoffset=0 xadvance=3 page=0 chnl=0 +char id=40 x=108 y=0 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=41 x=118 y=0 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=42 x=128 y=0 width=13 height=22 xoffset=2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=43 x=141 y=0 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=44 x=157 y=0 width=9 height=22 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=45 x=166 y=0 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=46 x=176 y=0 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=47 x=185 y=0 width=12 height=22 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=48 x=197 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=49 x=210 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=50 x=223 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=51 x=236 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=52 x=249 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=53 x=262 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=54 x=275 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=55 x=288 y=0 width=13 height=22 xoffset=1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=56 x=301 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=57 x=314 y=0 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=58 x=327 y=0 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=59 x=337 y=0 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=60 x=347 y=0 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=61 x=363 y=0 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=62 x=379 y=0 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=63 x=395 y=0 width=13 height=22 xoffset=2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=64 x=408 y=0 width=20 height=22 xoffset=1 yoffset=0 xadvance=15 page=0 chnl=0 +char id=65 x=428 y=0 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=66 x=443 y=0 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=67 x=458 y=0 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=68 x=474 y=0 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=69 x=491 y=0 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=70 x=0 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=71 x=15 y=22 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=72 x=32 y=22 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=73 x=49 y=22 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=74 x=60 y=22 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=75 x=72 y=22 width=16 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=76 x=88 y=22 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=77 x=102 y=22 width=18 height=22 xoffset=-1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=78 x=120 y=22 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=79 x=136 y=22 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=80 x=153 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=81 x=168 y=22 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=82 x=185 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=83 x=200 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=84 x=213 y=22 width=15 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=85 x=228 y=22 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=86 x=245 y=22 width=16 height=22 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=87 x=261 y=22 width=19 height=22 xoffset=1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=88 x=280 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=89 x=295 y=22 width=15 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=90 x=310 y=22 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=91 x=324 y=22 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=92 x=335 y=22 width=10 height=22 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=93 x=345 y=22 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=94 x=356 y=22 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=95 x=368 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=96 x=381 y=22 width=13 height=22 xoffset=5 yoffset=0 xadvance=5 page=0 chnl=0 +char id=97 x=394 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=98 x=407 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=99 x=420 y=22 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=100 x=432 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=101 x=445 y=22 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=102 x=457 y=22 width=13 height=22 xoffset=-3 yoffset=0 xadvance=4 page=0 chnl=0 +char id=103 x=470 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=104 x=483 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=105 x=496 y=22 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=106 x=0 y=44 width=10 height=22 xoffset=-2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=107 x=10 y=44 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=108 x=22 y=44 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=109 x=31 y=44 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=110 x=48 y=44 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=111 x=61 y=44 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=112 x=74 y=44 width=14 height=22 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=113 x=88 y=44 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=114 x=101 y=44 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=115 x=112 y=44 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=116 x=123 y=44 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=117 x=132 y=44 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=118 x=145 y=44 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=119 x=157 y=44 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=120 x=173 y=44 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=121 x=185 y=44 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=122 x=197 y=44 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=123 x=208 y=44 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=124 x=219 y=44 width=9 height=22 xoffset=1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=125 x=228 y=44 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=126 x=239 y=44 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=161 x=253 y=44 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=162 x=264 y=44 width=13 height=22 xoffset=1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=163 x=277 y=44 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=164 x=290 y=44 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=165 x=303 y=44 width=14 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=166 x=317 y=44 width=9 height=22 xoffset=1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=167 x=326 y=44 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=168 x=339 y=44 width=11 height=22 xoffset=1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=169 x=350 y=44 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=170 x=367 y=44 width=10 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=171 x=377 y=44 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=172 x=389 y=44 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=173 x=405 y=44 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=174 x=415 y=44 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=175 x=432 y=44 width=11 height=22 xoffset=1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=176 x=443 y=44 width=11 height=22 xoffset=1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=177 x=454 y=44 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=178 x=470 y=44 width=11 height=22 xoffset=1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=179 x=481 y=44 width=11 height=22 xoffset=2 yoffset=0 xadvance=5 page=0 chnl=0 +char id=180 x=492 y=44 width=11 height=22 xoffset=3 yoffset=0 xadvance=5 page=0 chnl=0 +char id=181 x=0 y=66 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=182 x=13 y=66 width=14 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=183 x=27 y=66 width=9 height=22 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=184 x=36 y=66 width=10 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=185 x=46 y=66 width=10 height=22 xoffset=1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=186 x=56 y=66 width=10 height=22 xoffset=1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=187 x=66 y=66 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=188 x=78 y=66 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=189 x=95 y=66 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=190 x=112 y=66 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=191 x=129 y=66 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=192 x=142 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=193 x=157 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=194 x=172 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=195 x=187 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=196 x=202 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=197 x=217 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=198 x=232 y=66 width=19 height=22 xoffset=-1 yoffset=0 xadvance=14 page=0 chnl=0 +char id=199 x=251 y=66 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=200 x=267 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=201 x=282 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=202 x=297 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=203 x=312 y=66 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=204 x=327 y=66 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=205 x=338 y=66 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=206 x=349 y=66 width=12 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=207 x=361 y=66 width=12 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=208 x=373 y=66 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=209 x=390 y=66 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=210 x=406 y=66 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=211 x=423 y=66 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=212 x=440 y=66 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=213 x=457 y=66 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=214 x=474 y=66 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=215 x=491 y=66 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=216 x=0 y=88 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=217 x=17 y=88 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=218 x=34 y=88 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=219 x=51 y=88 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=220 x=68 y=88 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=221 x=85 y=88 width=15 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=222 x=100 y=88 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=223 x=115 y=88 width=15 height=22 xoffset=-3 yoffset=0 xadvance=8 page=0 chnl=0 +char id=224 x=130 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=225 x=143 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=226 x=156 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=227 x=169 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=228 x=182 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=229 x=195 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=230 x=208 y=88 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=231 x=224 y=88 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=232 x=236 y=88 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=233 x=248 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=234 x=261 y=88 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=235 x=273 y=88 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=236 x=285 y=88 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=237 x=294 y=88 width=10 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=238 x=304 y=88 width=10 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=239 x=314 y=88 width=11 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=240 x=325 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=241 x=338 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=242 x=351 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=243 x=364 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=244 x=377 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=245 x=390 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=246 x=403 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=247 x=416 y=88 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=248 x=432 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=249 x=445 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=250 x=458 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=251 x=471 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=252 x=484 y=88 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=253 x=497 y=88 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=254 x=0 y=110 width=14 height=22 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=255 x=14 y=110 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=256 x=26 y=110 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=257 x=41 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=258 x=54 y=110 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=259 x=69 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=260 x=82 y=110 width=16 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=261 x=98 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=262 x=111 y=110 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=263 x=127 y=110 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=264 x=139 y=110 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=265 x=155 y=110 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=266 x=167 y=110 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=267 x=183 y=110 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=268 x=195 y=110 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=269 x=211 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=270 x=224 y=110 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=271 x=241 y=110 width=16 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=272 x=373 y=66 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=273 x=257 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=274 x=270 y=110 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=275 x=285 y=110 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=276 x=297 y=110 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=277 x=312 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=278 x=325 y=110 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=279 x=340 y=110 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=280 x=352 y=110 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=281 x=367 y=110 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=282 x=379 y=110 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=283 x=394 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=284 x=407 y=110 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=285 x=424 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=286 x=437 y=110 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=287 x=454 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=288 x=467 y=110 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=289 x=484 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=290 x=0 y=132 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=291 x=497 y=110 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=292 x=17 y=132 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=293 x=34 y=132 width=14 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=294 x=48 y=132 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=295 x=65 y=132 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=296 x=78 y=132 width=12 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=297 x=90 y=132 width=11 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=298 x=101 y=132 width=12 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=299 x=113 y=132 width=11 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=300 x=124 y=132 width=12 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=301 x=136 y=132 width=11 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=302 x=147 y=132 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=303 x=158 y=132 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=304 x=167 y=132 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=305 x=178 y=132 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=306 x=187 y=132 width=17 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=307 x=204 y=132 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=308 x=217 y=132 width=14 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=309 x=231 y=132 width=12 height=22 xoffset=-2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=310 x=243 y=132 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=311 x=259 y=132 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=312 x=271 y=132 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=313 x=283 y=132 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=314 x=297 y=132 width=11 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=315 x=308 y=132 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=316 x=322 y=132 width=9 height=22 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=317 x=331 y=132 width=15 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=318 x=346 y=132 width=12 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=319 x=358 y=132 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=320 x=372 y=132 width=10 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=321 x=382 y=132 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=322 x=396 y=132 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=323 x=405 y=132 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=324 x=421 y=132 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=325 x=434 y=132 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=326 x=450 y=132 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=327 x=463 y=132 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=328 x=479 y=132 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=329 x=492 y=132 width=14 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=330 x=0 y=154 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=331 x=17 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=332 x=30 y=154 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=333 x=47 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=334 x=60 y=154 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=335 x=77 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=336 x=90 y=154 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=337 x=107 y=154 width=15 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=338 x=122 y=154 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=339 x=142 y=154 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=340 x=158 y=154 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=341 x=173 y=154 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=342 x=184 y=154 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=343 x=199 y=154 width=11 height=22 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=344 x=210 y=154 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=345 x=225 y=154 width=12 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=346 x=237 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=347 x=250 y=154 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=348 x=261 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=349 x=274 y=154 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=350 x=285 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=351 x=298 y=154 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=352 x=309 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=353 x=322 y=154 width=12 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=354 x=334 y=154 width=15 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=355 x=349 y=154 width=9 height=22 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=356 x=358 y=154 width=15 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=357 x=373 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=358 x=386 y=154 width=15 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=359 x=401 y=154 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=360 x=410 y=154 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=361 x=427 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=362 x=440 y=154 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=363 x=457 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=364 x=470 y=154 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=365 x=487 y=154 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=366 x=0 y=176 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=367 x=17 y=176 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=368 x=30 y=176 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=369 x=47 y=176 width=14 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=370 x=61 y=176 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=371 x=78 y=176 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=372 x=91 y=176 width=19 height=22 xoffset=1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=373 x=110 y=176 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=374 x=126 y=176 width=15 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=375 x=141 y=176 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=376 x=153 y=176 width=15 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=377 x=168 y=176 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=378 x=500 y=154 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=379 x=182 y=176 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=380 x=196 y=176 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=381 x=207 y=176 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=382 x=221 y=176 width=12 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=383 x=233 y=176 width=13 height=22 xoffset=-3 yoffset=0 xadvance=4 page=0 chnl=0 +char id=884 x=503 y=44 width=8 height=22 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0 +char id=885 x=246 y=176 width=8 height=22 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0 +char id=890 x=254 y=176 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=894 x=264 y=176 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=900 x=274 y=176 width=9 height=22 xoffset=1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=901 x=283 y=176 width=12 height=22 xoffset=2 yoffset=0 xadvance=5 page=0 chnl=0 +char id=902 x=295 y=176 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=903 x=311 y=176 width=9 height=22 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=904 x=320 y=176 width=18 height=22 xoffset=2 yoffset=0 xadvance=13 page=0 chnl=0 +char id=905 x=338 y=176 width=21 height=22 xoffset=2 yoffset=0 xadvance=15 page=0 chnl=0 +char id=906 x=359 y=176 width=14 height=22 xoffset=2 yoffset=0 xadvance=9 page=0 chnl=0 +char id=908 x=373 y=176 width=18 height=22 xoffset=2 yoffset=0 xadvance=13 page=0 chnl=0 +char id=910 x=391 y=176 width=20 height=22 xoffset=2 yoffset=0 xadvance=14 page=0 chnl=0 +char id=911 x=411 y=176 width=19 height=22 xoffset=2 yoffset=0 xadvance=14 page=0 chnl=0 +char id=912 x=430 y=176 width=10 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=913 x=440 y=176 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=914 x=456 y=176 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=915 x=470 y=176 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=916 x=485 y=176 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=917 x=491 y=0 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=918 x=0 y=198 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=919 x=15 y=198 width=18 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=920 x=33 y=198 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=921 x=49 y=198 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=922 x=72 y=22 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=923 x=60 y=198 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=924 x=102 y=22 width=18 height=22 xoffset=-1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=925 x=120 y=22 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=926 x=75 y=198 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=927 x=91 y=198 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=928 x=107 y=198 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=929 x=153 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=931 x=124 y=198 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=932 x=213 y=22 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=933 x=140 y=198 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=934 x=156 y=198 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=935 x=280 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=936 x=173 y=198 width=19 height=22 xoffset=1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=937 x=192 y=198 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=938 x=209 y=198 width=12 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=939 x=221 y=198 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=940 x=237 y=198 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=941 x=251 y=198 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=942 x=263 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=943 x=501 y=176 width=10 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=944 x=276 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=945 x=289 y=198 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=946 x=303 y=198 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=947 x=316 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=948 x=329 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=949 x=342 y=198 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=950 x=354 y=198 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=951 x=365 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=952 x=378 y=198 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=953 x=392 y=198 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=954 x=401 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=955 x=414 y=198 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=956 x=427 y=198 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=957 x=440 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=958 x=453 y=198 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=959 x=465 y=198 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=960 x=478 y=198 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=961 x=493 y=198 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=962 x=0 y=220 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=963 x=12 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=964 x=25 y=220 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=965 x=37 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=966 x=50 y=220 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=967 x=65 y=220 width=13 height=22 xoffset=-2 yoffset=0 xadvance=7 page=0 chnl=0 +char id=968 x=78 y=220 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=969 x=94 y=220 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=970 x=110 y=220 width=10 height=22 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0 +char id=971 x=120 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=972 x=133 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=973 x=146 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=974 x=159 y=220 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=976 x=175 y=220 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=977 x=189 y=220 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=978 x=203 y=220 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=979 x=218 y=220 width=19 height=22 xoffset=1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=980 x=237 y=220 width=16 height=22 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=981 x=253 y=220 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=982 x=268 y=220 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=983 x=284 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=984 x=297 y=220 width=15 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=985 x=312 y=220 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=986 x=326 y=220 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=987 x=340 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=988 x=353 y=220 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=989 x=368 y=220 width=14 height=22 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=990 x=382 y=220 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=991 x=397 y=220 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=992 x=409 y=220 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=993 x=425 y=220 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1008 x=439 y=220 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1009 x=453 y=220 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1010 x=467 y=220 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1011 x=0 y=44 width=10 height=22 xoffset=-2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=1012 x=480 y=220 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1013 x=497 y=220 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=1014 x=0 y=242 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=1015 x=100 y=88 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1016 x=9 y=242 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1017 x=22 y=242 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1018 x=38 y=242 width=18 height=22 xoffset=-1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1019 x=56 y=242 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1020 x=72 y=242 width=16 height=22 xoffset=-3 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1021 x=88 y=242 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1022 x=104 y=242 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1023 x=120 y=242 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1024 x=136 y=242 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1025 x=151 y=242 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1026 x=166 y=242 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1027 x=182 y=242 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1028 x=197 y=242 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1029 x=200 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1030 x=213 y=242 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=1031 x=224 y=242 width=12 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=1032 x=236 y=242 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1033 x=248 y=242 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1034 x=269 y=242 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1035 x=290 y=242 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1036 x=306 y=242 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1037 x=322 y=242 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1038 x=339 y=242 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1039 x=356 y=242 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1040 x=428 y=0 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1041 x=373 y=242 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1042 x=443 y=0 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1043 x=470 y=176 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1044 x=388 y=242 width=17 height=22 xoffset=-2 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1045 x=491 y=0 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1046 x=405 y=242 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1047 x=426 y=242 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1048 x=440 y=242 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1049 x=457 y=242 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1050 x=474 y=242 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1051 x=490 y=242 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1052 x=102 y=22 width=18 height=22 xoffset=-1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1053 x=32 y=22 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1054 x=136 y=22 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1055 x=107 y=198 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1056 x=153 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1057 x=458 y=0 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1058 x=213 y=22 width=15 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1059 x=0 y=264 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1060 x=156 y=198 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1061 x=280 y=22 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1062 x=17 y=264 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1063 x=34 y=264 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1064 x=50 y=264 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1065 x=71 y=264 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1066 x=92 y=264 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1067 x=108 y=264 width=19 height=22 xoffset=-1 yoffset=0 xadvance=14 page=0 chnl=0 +char id=1068 x=127 y=264 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1069 x=142 y=264 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1070 x=157 y=264 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1071 x=178 y=264 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1072 x=394 y=22 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1073 x=194 y=264 width=14 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1074 x=208 y=264 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1075 x=220 y=264 width=11 height=22 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=1076 x=231 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1077 x=445 y=22 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1078 x=244 y=264 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1079 x=264 y=264 width=11 height=22 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=1080 x=275 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1081 x=288 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1082 x=301 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1083 x=314 y=264 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1084 x=327 y=264 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1085 x=342 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1086 x=355 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1087 x=368 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1088 x=381 y=264 width=14 height=22 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1089 x=395 y=264 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1090 x=31 y=44 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1091 x=407 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1092 x=420 y=264 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1093 x=437 y=264 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1094 x=449 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1095 x=462 y=264 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1096 x=475 y=264 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1097 x=492 y=264 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1098 x=0 y=286 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1099 x=14 y=286 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1100 x=30 y=286 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1101 x=42 y=286 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1102 x=54 y=286 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1103 x=70 y=286 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1104 x=83 y=286 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1105 x=95 y=286 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1106 x=107 y=286 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1107 x=120 y=286 width=11 height=22 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=1108 x=131 y=286 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1109 x=143 y=286 width=11 height=22 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 +char id=1110 x=154 y=286 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=1111 x=163 y=286 width=10 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=1112 x=0 y=44 width=10 height=22 xoffset=-2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=1113 x=173 y=286 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1114 x=189 y=286 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1115 x=205 y=286 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1116 x=218 y=286 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1117 x=231 y=286 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1118 x=244 y=286 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1119 x=257 y=286 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1120 x=270 y=286 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1121 x=290 y=286 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1122 x=306 y=286 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1123 x=322 y=286 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1124 x=338 y=286 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1125 x=359 y=286 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1126 x=374 y=286 width=18 height=22 xoffset=-1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1127 x=392 y=286 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1128 x=407 y=286 width=23 height=22 xoffset=-1 yoffset=0 xadvance=18 page=0 chnl=0 +char id=1129 x=430 y=286 width=18 height=22 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1130 x=448 y=286 width=20 height=22 xoffset=-1 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1131 x=468 y=286 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1132 x=485 y=286 width=25 height=22 xoffset=-1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1133 x=0 y=308 width=19 height=22 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=1134 x=19 y=308 width=14 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1135 x=33 y=308 width=12 height=22 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=1136 x=45 y=308 width=20 height=22 xoffset=2 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1137 x=65 y=308 width=17 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1138 x=82 y=308 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1139 x=99 y=308 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1140 x=112 y=308 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1141 x=129 y=308 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1142 x=143 y=308 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1143 x=160 y=308 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1144 x=174 y=308 width=24 height=22 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=0 +char id=1145 x=198 y=308 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1146 x=218 y=308 width=19 height=22 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=1147 x=237 y=308 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1148 x=252 y=308 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1149 x=272 y=308 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1150 x=288 y=308 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1151 x=308 y=308 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1152 x=324 y=308 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1153 x=338 y=308 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1154 x=350 y=308 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=1155 x=360 y=308 width=10 height=22 xoffset=-4 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1156 x=370 y=308 width=11 height=22 xoffset=-5 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1157 x=381 y=308 width=7 height=22 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1158 x=388 y=308 width=7 height=22 xoffset=-1 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1159 x=395 y=308 width=14 height=22 xoffset=-7 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1160 x=409 y=308 width=19 height=22 xoffset=-12 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1161 x=428 y=308 width=22 height=22 xoffset=-13 yoffset=0 xadvance=0 page=0 chnl=0 +char id=1162 x=450 y=308 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1163 x=467 y=308 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1164 x=480 y=308 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1165 x=495 y=308 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1166 x=0 y=330 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1167 x=15 y=330 width=14 height=22 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1168 x=29 y=330 width=15 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1169 x=44 y=330 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1170 x=56 y=330 width=15 height=22 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1171 x=71 y=330 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1172 x=83 y=330 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1173 x=98 y=330 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1174 x=110 y=330 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1175 x=131 y=330 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1176 x=151 y=330 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1177 x=165 y=330 width=11 height=22 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=1178 x=176 y=330 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1179 x=192 y=330 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1180 x=205 y=330 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1181 x=221 y=330 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1182 x=235 y=330 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1183 x=251 y=330 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1184 x=264 y=330 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1185 x=281 y=330 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1186 x=297 y=330 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1187 x=314 y=330 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1188 x=327 y=330 width=20 height=22 xoffset=-1 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1189 x=347 y=330 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1190 x=363 y=330 width=22 height=22 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0 +char id=1191 x=385 y=330 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1192 x=401 y=330 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1193 x=418 y=330 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1194 x=432 y=330 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1195 x=448 y=330 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1196 x=460 y=330 width=15 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1197 x=475 y=330 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1198 x=492 y=330 width=15 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1199 x=0 y=352 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1200 x=14 y=352 width=15 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1201 x=29 y=352 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1202 x=43 y=352 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1203 x=59 y=352 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1204 x=71 y=352 width=19 height=22 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1205 x=90 y=352 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1206 x=104 y=352 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1207 x=120 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1208 x=133 y=352 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1209 x=149 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1210 x=162 y=352 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1211 x=177 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1212 x=190 y=352 width=18 height=22 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1213 x=208 y=352 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1214 x=222 y=352 width=18 height=22 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1215 x=240 y=352 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1216 x=254 y=352 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=1217 x=265 y=352 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1218 x=286 y=352 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1219 x=306 y=352 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1220 x=322 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1221 x=335 y=352 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1222 x=352 y=352 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1223 x=365 y=352 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1224 x=382 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1225 x=395 y=352 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1226 x=412 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1227 x=425 y=352 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1228 x=441 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1229 x=454 y=352 width=18 height=22 xoffset=-1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1230 x=472 y=352 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1231 x=487 y=352 width=11 height=22 xoffset=-1 yoffset=0 xadvance=5 page=0 chnl=0 +char id=1232 x=0 y=374 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1233 x=498 y=352 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1234 x=15 y=374 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1235 x=30 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1236 x=43 y=374 width=19 height=22 xoffset=-1 yoffset=0 xadvance=14 page=0 chnl=0 +char id=1237 x=62 y=374 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1238 x=78 y=374 width=15 height=22 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1239 x=93 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1240 x=106 y=374 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1241 x=123 y=374 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1242 x=135 y=374 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1243 x=152 y=374 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1244 x=164 y=374 width=21 height=22 xoffset=-1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=1245 x=185 y=374 width=20 height=22 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 +char id=1246 x=205 y=374 width=14 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1247 x=219 y=374 width=11 height=22 xoffset=-1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=1248 x=230 y=374 width=14 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1249 x=244 y=374 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1250 x=256 y=374 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1251 x=273 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1252 x=286 y=374 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1253 x=303 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1254 x=316 y=374 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1255 x=333 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1256 x=346 y=374 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1257 x=363 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1258 x=376 y=374 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1259 x=393 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1260 x=406 y=374 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1261 x=421 y=374 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1262 x=433 y=374 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1263 x=450 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1264 x=463 y=374 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1265 x=480 y=374 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1266 x=493 y=374 width=17 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1267 x=0 y=396 width=14 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1268 x=14 y=396 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1269 x=30 y=396 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1270 x=43 y=396 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=1271 x=58 y=396 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1272 x=70 y=396 width=19 height=22 xoffset=-1 yoffset=0 xadvance=14 page=0 chnl=0 +char id=1273 x=89 y=396 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1296 x=105 y=396 width=14 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=1297 x=119 y=396 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=1298 x=131 y=396 width=17 height=22 xoffset=-1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1299 x=148 y=396 width=13 height=22 xoffset=-1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1306 x=161 y=396 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=1307 x=178 y=396 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=1308 x=191 y=396 width=19 height=22 xoffset=1 yoffset=0 xadvance=13 page=0 chnl=0 +char id=1309 x=210 y=396 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1310 x=226 y=396 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=1311 x=242 y=396 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8192 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8193 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8194 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8195 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8196 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=8197 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8198 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0 +char id=8199 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8200 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8201 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0 +char id=8202 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=2 page=0 chnl=0 +char id=8203 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=0 +char id=8204 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=0 +char id=8210 x=255 y=396 width=14 height=22 xoffset=1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8211 x=269 y=396 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8212 x=282 y=396 width=21 height=22 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8213 x=303 y=396 width=22 height=22 xoffset=1 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8214 x=325 y=396 width=10 height=22 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 +char id=8215 x=335 y=396 width=12 height=22 xoffset=-1 yoffset=0 xadvance=7 page=0 chnl=0 +char id=8216 x=347 y=396 width=9 height=22 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8217 x=356 y=396 width=9 height=22 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8218 x=365 y=396 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8219 x=374 y=396 width=9 height=22 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8220 x=383 y=396 width=12 height=22 xoffset=2 yoffset=0 xadvance=7 page=0 chnl=0 +char id=8221 x=395 y=396 width=13 height=22 xoffset=3 yoffset=0 xadvance=7 page=0 chnl=0 +char id=8222 x=408 y=396 width=12 height=22 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=8223 x=420 y=396 width=13 height=22 xoffset=3 yoffset=0 xadvance=7 page=0 chnl=0 +char id=8224 x=433 y=396 width=13 height=22 xoffset=1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8225 x=446 y=396 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8226 x=459 y=396 width=11 height=22 xoffset=1 yoffset=0 xadvance=6 page=0 chnl=0 +char id=8230 x=470 y=396 width=19 height=22 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0 +char id=8239 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8240 x=489 y=396 width=21 height=22 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8242 x=0 y=418 width=10 height=22 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8243 x=10 y=418 width=13 height=22 xoffset=2 yoffset=0 xadvance=7 page=0 chnl=0 +char id=8244 x=23 y=418 width=16 height=22 xoffset=2 yoffset=0 xadvance=10 page=0 chnl=0 +char id=8249 x=39 y=418 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8250 x=48 y=418 width=9 height=22 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 +char id=8252 x=57 y=418 width=16 height=22 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8254 x=73 y=418 width=15 height=22 xoffset=2 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8260 x=88 y=418 width=15 height=22 xoffset=-3 yoffset=0 xadvance=3 page=0 chnl=0 +char id=8286 x=103 y=418 width=9 height=22 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0 +char id=8352 x=112 y=418 width=16 height=22 xoffset=2 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8353 x=128 y=418 width=17 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8354 x=145 y=418 width=16 height=22 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8355 x=161 y=418 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +char id=8356 x=176 y=418 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8357 x=189 y=418 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=8358 x=206 y=418 width=16 height=22 xoffset=-1 yoffset=0 xadvance=11 page=0 chnl=0 +char id=8359 x=222 y=418 width=21 height=22 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0 +char id=8360 x=243 y=418 width=20 height=22 xoffset=-1 yoffset=0 xadvance=15 page=0 chnl=0 +char id=8361 x=263 y=418 width=19 height=22 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 +char id=8363 x=282 y=418 width=15 height=22 xoffset=1 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8364 x=297 y=418 width=18 height=22 xoffset=1 yoffset=0 xadvance=12 page=0 chnl=0 +char id=8365 x=315 y=418 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=8366 x=332 y=418 width=16 height=22 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=8367 x=348 y=418 width=26 height=22 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=0 +char id=8368 x=374 y=418 width=13 height=22 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 +char id=8369 x=387 y=418 width=15 height=22 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 +char id=8370 x=402 y=418 width=15 height=22 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0 +char id=8371 x=417 y=418 width=17 height=22 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 +char id=8372 x=434 y=418 width=14 height=22 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0 +char id=8373 x=448 y=418 width=15 height=22 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 +kernings count=17372 +kerning first=1051 second=1052 amount=-1 +kerning first=1049 second=1107 amount=-1 +kerning first=354 second=233 amount=-1 +kerning first=8249 second=217 amount=-1 +kerning first=66 second=79 amount=-1 +kerning first=284 second=44 amount=-1 +kerning first=109 second=45 amount=-1 +kerning first=197 second=46 amount=-1 +kerning first=280 second=288 amount=-1 +kerning first=375 second=291 amount=-1 +kerning first=339 second=291 amount=-1 +kerning first=211 second=65 amount=-1 +kerning first=72 second=66 amount=-1 +kerning first=327 second=67 amount=-1 +kerning first=205 second=68 amount=-1 +kerning first=202 second=70 amount=-1 +kerning first=8217 second=71 amount=-1 +kerning first=217 second=72 amount=-1 +kerning first=370 second=73 amount=-1 +kerning first=219 second=74 amount=-1 +kerning first=71 second=75 amount=-1 +kerning first=83 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=286 second=78 amount=-1 +kerning first=330 second=80 amount=-1 +kerning first=310 second=81 amount=-1 +kerning first=266 second=82 amount=-1 +kerning first=268 second=83 amount=-1 +kerning first=214 second=84 amount=-1 +kerning first=8222 second=85 amount=-1 +kerning first=231 second=291 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=79 second=89 amount=-1 +kerning first=45 second=90 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=70 second=98 amount=-1 +kerning first=277 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=217 second=102 amount=-1 +kerning first=234 second=103 amount=-1 +kerning first=8218 second=104 amount=-1 +kerning first=88 second=105 amount=-1 +kerning first=337 second=106 amount=-1 +kerning first=234 second=107 amount=-1 +kerning first=1041 second=1046 amount=-1 +kerning first=325 second=109 amount=-1 +kerning first=77 second=110 amount=-1 +kerning first=234 second=111 amount=-1 +kerning first=99 second=112 amount=-1 +kerning first=109 second=113 amount=-1 +kerning first=279 second=114 amount=-1 +kerning first=262 second=115 amount=-1 +kerning first=8250 second=116 amount=-1 +kerning first=119 second=117 amount=-1 +kerning first=88 second=118 amount=-1 +kerning first=8250 second=119 amount=-1 +kerning first=255 second=120 amount=-1 +kerning first=192 second=121 amount=-1 +kerning first=66 second=122 amount=-1 +kerning first=336 second=8218 amount=-1 +kerning first=1067 second=1079 amount=-1 +kerning first=8220 second=65 amount=-2 +kerning first=325 second=81 amount=-1 +kerning first=1064 second=1049 amount=-1 +kerning first=351 second=171 amount=-1 +kerning first=209 second=187 amount=-1 +kerning first=287 second=8221 amount=-2 +kerning first=8220 second=192 amount=-2 +kerning first=45 second=193 amount=-1 +kerning first=68 second=194 amount=-1 +kerning first=220 second=196 amount=-1 +kerning first=8217 second=197 amount=-2 +kerning first=87 second=198 amount=-1 +kerning first=266 second=199 amount=-1 +kerning first=205 second=200 amount=-1 +kerning first=71 second=201 amount=-1 +kerning first=209 second=202 amount=-1 +kerning first=67 second=203 amount=-1 +kerning first=268 second=204 amount=-1 +kerning first=325 second=205 amount=-1 +kerning first=213 second=206 amount=-1 +kerning first=207 second=207 amount=-1 +kerning first=81 second=209 amount=-1 +kerning first=8217 second=210 amount=-1 +kerning first=8218 second=211 amount=-1 +kerning first=199 second=212 amount=-1 +kerning first=8222 second=213 amount=-1 +kerning first=338 second=214 amount=-1 +kerning first=205 second=216 amount=-1 +kerning first=323 second=217 amount=-1 +kerning first=80 second=218 amount=-1 +kerning first=207 second=219 amount=-1 +kerning first=45 second=220 amount=-1 +kerning first=194 second=223 amount=-1 +kerning first=323 second=224 amount=-1 +kerning first=99 second=225 amount=-1 +kerning first=74 second=226 amount=-1 +kerning first=89 second=227 amount=-1 +kerning first=99 second=228 amount=-1 +kerning first=8217 second=229 amount=-1 +kerning first=314 second=231 amount=-1 +kerning first=206 second=234 amount=-1 +kerning first=264 second=8218 amount=-1 +kerning first=8217 second=241 amount=-1 +kerning first=266 second=242 amount=-1 +kerning first=264 second=243 amount=-1 +kerning first=73 second=244 amount=-1 +kerning first=103 second=245 amount=-1 +kerning first=251 second=246 amount=-1 +kerning first=325 second=248 amount=-1 +kerning first=198 second=249 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=66 second=251 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=197 second=254 amount=-1 +kerning first=194 second=255 amount=-1 +kerning first=68 second=258 amount=-1 +kerning first=8216 second=260 amount=-2 +kerning first=354 second=261 amount=-1 +kerning first=187 second=377 amount=-1 +kerning first=356 second=263 amount=-1 +kerning first=274 second=264 amount=-1 +kerning first=99 second=267 amount=-1 +kerning first=8250 second=268 amount=-1 +kerning first=8217 second=269 amount=-1 +kerning first=80 second=270 amount=-1 +kerning first=8217 second=271 amount=-1 +kerning first=304 second=273 amount=-1 +kerning first=198 second=274 amount=-1 +kerning first=369 second=275 amount=-1 +kerning first=354 second=277 amount=-1 +kerning first=45 second=278 amount=-1 +kerning first=117 second=279 amount=-1 +kerning first=220 second=280 amount=-1 +kerning first=231 second=281 amount=-1 +kerning first=325 second=282 amount=-1 +kerning first=267 second=283 amount=-1 +kerning first=209 second=284 amount=-1 +kerning first=335 second=287 amount=-1 +kerning first=202 second=268 amount=-1 +kerning first=333 second=289 amount=-1 +kerning first=219 second=290 amount=-1 +kerning first=1062 second=1104 amount=-1 +kerning first=355 second=279 amount=-1 +kerning first=278 second=296 amount=-1 +kerning first=213 second=298 amount=-1 +kerning first=68 second=187 amount=-1 +kerning first=217 second=302 amount=-1 +kerning first=197 second=303 amount=-1 +kerning first=206 second=304 amount=-1 +kerning first=269 second=305 amount=-1 +kerning first=287 second=307 amount=-1 +kerning first=296 second=310 amount=-1 +kerning first=281 second=311 amount=-1 +kerning first=78 second=313 amount=-1 +kerning first=234 second=314 amount=-1 +kerning first=199 second=315 amount=-1 +kerning first=74 second=317 amount=-1 +kerning first=283 second=318 amount=-1 +kerning first=302 second=323 amount=-1 +kerning first=289 second=324 amount=-1 +kerning first=330 second=325 amount=-1 +kerning first=269 second=326 amount=-1 +kerning first=270 second=327 amount=-1 +kerning first=263 second=328 amount=-1 +kerning first=74 second=316 amount=-1 +kerning first=323 second=330 amount=-1 +kerning first=72 second=331 amount=-1 +kerning first=327 second=332 amount=-1 +kerning first=89 second=333 amount=-1 +kerning first=221 second=334 amount=-1 +kerning first=84 second=335 amount=-1 +kerning first=198 second=336 amount=-1 +kerning first=199 second=337 amount=-1 +kerning first=366 second=338 amount=-1 +kerning first=225 second=339 amount=-1 +kerning first=78 second=206 amount=-1 +kerning first=210 second=66 amount=-1 +kerning first=82 second=364 amount=-1 +kerning first=350 second=344 amount=-1 +kerning first=100 second=345 amount=-1 +kerning first=220 second=346 amount=-1 +kerning first=87 second=347 amount=-1 +kerning first=204 second=264 amount=-1 +kerning first=268 second=350 amount=-1 +kerning first=272 second=351 amount=-1 +kerning first=317 second=354 amount=-1 +kerning first=325 second=355 amount=-1 +kerning first=81 second=356 amount=-1 +kerning first=204 second=357 amount=-1 +kerning first=324 second=283 amount=-1 +kerning first=346 second=361 amount=-1 +kerning first=298 second=362 amount=-1 +kerning first=264 second=364 amount=-1 +kerning first=244 second=108 amount=-1 +kerning first=8220 second=366 amount=-1 +kerning first=195 second=367 amount=-1 +kerning first=282 second=187 amount=-1 +kerning first=231 second=369 amount=-1 +kerning first=284 second=370 amount=-1 +kerning first=364 second=371 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=76 second=374 amount=-1 +kerning first=192 second=375 amount=-1 +kerning first=325 second=261 amount=-1 +kerning first=45 second=377 amount=-1 +kerning first=266 second=378 amount=-1 +kerning first=205 second=380 amount=-1 +kerning first=282 second=367 amount=-1 +kerning first=225 second=382 amount=-1 +kerning first=219 second=193 amount=-1 +kerning first=298 second=368 amount=-1 +kerning first=73 second=257 amount=-1 +kerning first=69 second=367 amount=-1 +kerning first=246 second=380 amount=-1 +kerning first=1067 second=1027 amount=-1 +kerning first=354 second=380 amount=-1 +kerning first=68 second=200 amount=-1 +kerning first=8250 second=325 amount=-1 +kerning first=356 second=245 amount=-1 +kerning first=203 second=205 amount=-1 +kerning first=286 second=270 amount=-1 +kerning first=316 second=108 amount=-1 +kerning first=81 second=197 amount=-1 +kerning first=70 second=99 amount=-1 +kerning first=45 second=197 amount=-1 +kerning first=1054 second=1030 amount=-1 +kerning first=262 second=368 amount=-1 +kerning first=350 second=209 amount=-1 +kerning first=338 second=78 amount=-1 +kerning first=355 second=8221 amount=-1 +kerning first=213 second=44 amount=-1 +kerning first=302 second=78 amount=-1 +kerning first=298 second=355 amount=-1 +kerning first=220 second=252 amount=-1 +kerning first=344 second=214 amount=-1 +kerning first=262 second=355 amount=-1 +kerning first=1054 second=1043 amount=-1 +kerning first=307 second=8222 amount=-1 +kerning first=1030 second=1071 amount=-1 +kerning first=1046 second=1116 amount=-1 +kerning first=8250 second=250 amount=-1 +kerning first=71 second=325 amount=-1 +kerning first=364 second=252 amount=-1 +kerning first=366 second=197 amount=-1 +kerning first=266 second=78 amount=-1 +kerning first=85 second=355 amount=-1 +kerning first=212 second=325 amount=-1 +kerning first=366 second=8249 amount=-2 +kerning first=217 second=248 amount=-1 +kerning first=277 second=117 amount=-1 +kerning first=75 second=8250 amount=-1 +kerning first=1118 second=1116 amount=-1 +kerning first=270 second=282 amount=-1 +kerning first=1051 second=1039 amount=-1 +kerning first=1091 second=1096 amount=-1 +kerning first=72 second=44 amount=-1 +kerning first=200 second=214 amount=-1 +kerning first=121 second=367 amount=-1 +kerning first=8218 second=363 amount=-1 +kerning first=370 second=355 amount=-1 +kerning first=203 second=218 amount=-1 +kerning first=68 second=347 amount=-1 +kerning first=1046 second=1059 amount=-1 +kerning first=69 second=220 amount=-1 +kerning first=304 second=350 amount=-1 +kerning first=1038 second=1072 amount=-1 +kerning first=1041 second=1059 amount=-1 +kerning first=229 second=333 amount=-1 +kerning first=73 second=77 amount=-1 +kerning first=1118 second=1103 amount=-1 +kerning first=274 second=214 amount=-1 +kerning first=112 second=382 amount=-1 +kerning first=81 second=362 amount=-1 +kerning first=354 second=246 amount=-1 +kerning first=1054 second=1056 amount=-1 +kerning first=217 second=382 amount=-1 +kerning first=119 second=289 amount=-1 +kerning first=1048 second=1048 amount=-1 +kerning first=86 second=100 amount=-1 +kerning first=250 second=103 amount=-1 +kerning first=284 second=327 amount=-1 +kerning first=350 second=330 amount=-1 +kerning first=224 second=289 amount=-1 +kerning first=282 second=77 amount=-1 +kerning first=1051 second=1065 amount=-1 +kerning first=258 second=171 amount=-1 +kerning first=1049 second=1094 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=286 second=77 amount=-1 +kerning first=105 second=246 amount=-1 +kerning first=65 second=356 amount=-1 +kerning first=1062 second=1091 amount=-1 +kerning first=326 second=281 amount=-1 +kerning first=210 second=220 amount=-1 +kerning first=214 second=77 amount=-1 +kerning first=366 second=171 amount=-2 +kerning first=362 second=281 amount=-1 +kerning first=244 second=378 amount=-1 +kerning first=296 second=109 amount=-1 +kerning first=87 second=120 amount=-1 +kerning first=220 second=85 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=298 second=72 amount=-1 +kerning first=72 second=211 amount=-1 +kerning first=264 second=120 amount=-1 +kerning first=1038 second=1079 amount=-1 +kerning first=77 second=281 amount=-1 +kerning first=253 second=382 amount=-1 +kerning first=275 second=339 amount=-1 +kerning first=202 second=332 amount=-1 +kerning first=289 second=382 amount=-1 +kerning first=231 second=275 amount=-1 +kerning first=325 second=382 amount=-1 +kerning first=74 second=290 amount=-1 +kerning first=1060 second=1025 amount=-1 +kerning first=268 second=339 amount=-1 +kerning first=8250 second=374 amount=-2 +kerning first=281 second=347 amount=-1 +kerning first=310 second=332 amount=-1 +kerning first=1048 second=1074 amount=-1 +kerning first=1071 second=1051 amount=-1 +kerning first=274 second=332 amount=-1 +kerning first=209 second=347 amount=-1 +kerning first=1065 second=1108 amount=-1 +kerning first=264 second=313 amount=-1 +kerning first=1091 second=1076 amount=-1 +kerning first=267 second=111 amount=-1 +kerning first=310 second=8250 amount=-1 +kerning first=263 second=254 amount=-1 +kerning first=279 second=337 amount=-1 +kerning first=274 second=8250 amount=-1 +kerning first=233 second=357 amount=-1 +kerning first=205 second=113 amount=-1 +kerning first=302 second=271 amount=-1 +kerning first=370 second=195 amount=-1 +kerning first=266 second=271 amount=-1 +kerning first=1055 second=1076 amount=-1 +kerning first=334 second=195 amount=-1 +kerning first=202 second=8250 amount=-1 +kerning first=327 second=219 amount=-1 +kerning first=205 second=323 amount=-1 +kerning first=374 second=271 amount=-1 +kerning first=219 second=219 amount=-1 +kerning first=1047 second=1041 amount=-1 +kerning first=97 second=8250 amount=-1 +kerning first=1053 second=1118 amount=-1 +kerning first=197 second=357 amount=-1 +kerning first=8216 second=368 amount=-1 +kerning first=187 second=76 amount=-1 +kerning first=269 second=107 amount=-1 +kerning first=221 second=211 amount=-1 +kerning first=1059 second=1071 amount=-1 +kerning first=248 second=8217 amount=-2 +kerning first=193 second=212 amount=-1 +kerning first=284 second=8217 amount=-1 +kerning first=78 second=219 amount=-1 +kerning first=356 second=8217 amount=-1 +kerning first=1039 second=1075 amount=-1 +kerning first=71 second=8217 amount=-1 +kerning first=364 second=85 amount=-1 +kerning first=1067 second=1107 amount=-1 +kerning first=107 second=8217 amount=-1 +kerning first=197 second=262 amount=-1 +kerning first=202 second=310 amount=-1 +kerning first=88 second=212 amount=-1 +kerning first=231 second=111 amount=-1 +kerning first=194 second=366 amount=-1 +kerning first=217 second=68 amount=-1 +kerning first=330 second=331 amount=-1 +kerning first=278 second=8250 amount=-1 +kerning first=325 second=68 amount=-1 +kerning first=366 second=331 amount=-1 +kerning first=67 second=314 amount=-1 +kerning first=224 second=263 amount=-1 +kerning first=275 second=365 amount=-1 +kerning first=1041 second=1025 amount=-1 +kerning first=1033 second=1027 amount=-1 +kerning first=1040 second=1028 amount=-1 +kerning first=1049 second=1030 amount=-1 +kerning first=1041 second=1031 amount=-1 +kerning first=1041 second=1034 amount=-1 +kerning first=316 second=314 amount=-1 +kerning first=1041 second=1036 amount=-1 +kerning first=296 second=263 amount=-1 +kerning first=1068 second=1038 amount=-2 +kerning first=1055 second=1039 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=1049 second=1041 amount=-1 +kerning first=1060 second=1042 amount=-1 +kerning first=1030 second=1043 amount=-1 +kerning first=1033 second=1044 amount=-1 +kerning first=1041 second=1045 amount=-1 +kerning first=1048 second=1047 amount=-1 +kerning first=1033 second=1048 amount=-1 +kerning first=1069 second=1049 amount=-1 +kerning first=1041 second=1050 amount=-1 +kerning first=1052 second=1051 amount=-1 +kerning first=1067 second=1052 amount=-1 +kerning first=1051 second=1053 amount=-1 +kerning first=1059 second=1054 amount=-1 +kerning first=1051 second=1055 amount=-1 +kerning first=1053 second=1056 amount=-1 +kerning first=1052 second=1057 amount=-1 +kerning first=304 second=203 amount=-1 +kerning first=1040 second=1060 amount=-1 +kerning first=1041 second=1061 amount=-1 +kerning first=1068 second=1062 amount=-1 +kerning first=1066 second=1063 amount=-2 +kerning first=1070 second=1064 amount=-1 +kerning first=1030 second=1065 amount=-1 +kerning first=262 second=67 amount=-1 +kerning first=1051 second=1068 amount=-1 +kerning first=85 second=195 amount=-1 +kerning first=1049 second=1070 amount=-1 +kerning first=1041 second=1071 amount=-1 +kerning first=1056 second=1072 amount=-1 +kerning first=1031 second=1073 amount=-1 +kerning first=1027 second=1074 amount=-1 +kerning first=8250 second=70 amount=-1 +kerning first=1105 second=1076 amount=-1 +kerning first=1027 second=1077 amount=-1 +kerning first=1104 second=1078 amount=-1 +kerning first=1118 second=1079 amount=-1 +kerning first=1040 second=1080 amount=-1 +kerning first=1041 second=1081 amount=-1 +kerning first=1118 second=1082 amount=-1 +kerning first=1051 second=1083 amount=-1 +kerning first=1056 second=1084 amount=-1 +kerning first=1041 second=1085 amount=-1 +kerning first=1071 second=1086 amount=-1 +kerning first=1050 second=1087 amount=-1 +kerning first=1071 second=1089 amount=-1 +kerning first=1041 second=1090 amount=-1 +kerning first=1057 second=1091 amount=-1 +kerning first=8218 second=307 amount=-1 +kerning first=1077 second=1093 amount=-1 +kerning first=1071 second=1094 amount=-1 +kerning first=1076 second=1095 amount=-1 +kerning first=1059 second=1096 amount=-1 +kerning first=1040 second=1097 amount=-1 +kerning first=1052 second=1098 amount=-1 +kerning first=1048 second=1099 amount=-1 +kerning first=1071 second=1100 amount=-1 +kerning first=1044 second=1101 amount=-1 +kerning first=1118 second=1102 amount=-1 +kerning first=1091 second=1103 amount=-1 +kerning first=1027 second=1104 amount=-1 +kerning first=207 second=229 amount=-1 +kerning first=1027 second=1107 amount=-1 +kerning first=1049 second=1108 amount=-1 +kerning first=266 second=366 amount=-1 +kerning first=1076 second=1113 amount=-1 +kerning first=89 second=271 amount=-1 +kerning first=268 second=203 amount=-1 +kerning first=344 second=374 amount=-1 +kerning first=1076 second=1117 amount=-1 +kerning first=1105 second=1118 amount=-1 +kerning first=1040 second=1119 amount=-1 +kerning first=194 second=104 amount=-1 +kerning first=230 second=104 amount=-1 +kerning first=256 second=46 amount=-1 +kerning first=87 second=192 amount=-1 +kerning first=296 second=70 amount=-1 +kerning first=73 second=378 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=207 second=101 amount=-1 +kerning first=209 second=46 amount=-1 +kerning first=83 second=70 amount=-1 +kerning first=279 second=101 amount=-1 +kerning first=281 second=46 amount=-1 +kerning first=270 second=76 amount=-1 +kerning first=1064 second=1075 amount=-1 +kerning first=67 second=262 amount=-1 +kerning first=69 second=207 amount=-1 +kerning first=8218 second=261 amount=-1 +kerning first=198 second=76 amount=-1 +kerning first=280 second=262 amount=-1 +kerning first=207 second=286 amount=-1 +kerning first=73 second=296 amount=-1 +kerning first=201 second=8217 amount=-1 +kerning first=66 second=216 amount=-1 +kerning first=368 second=70 amount=-1 +kerning first=1059 second=1087 amount=-1 +kerning first=258 second=357 amount=-1 +kerning first=286 second=296 amount=-1 +kerning first=266 second=104 amount=-1 +kerning first=366 second=357 amount=-1 +kerning first=97 second=345 amount=-1 +kerning first=214 second=296 amount=-1 +kerning first=212 second=204 amount=-1 +kerning first=196 second=311 amount=-1 +kerning first=232 second=311 amount=-1 +kerning first=202 second=345 amount=-1 +kerning first=78 second=366 amount=-1 +kerning first=253 second=369 amount=-1 +kerning first=8250 second=262 amount=-1 +kerning first=274 second=280 amount=-1 +kerning first=274 second=345 amount=-1 +kerning first=217 second=369 amount=-1 +kerning first=368 second=122 amount=-1 +kerning first=366 second=210 amount=-1 +kerning first=354 second=259 amount=-1 +kerning first=8217 second=100 amount=-1 +kerning first=310 second=345 amount=-1 +kerning first=70 second=8218 amount=-2 +kerning first=213 second=198 amount=-1 +kerning first=346 second=280 amount=-1 +kerning first=346 second=345 amount=-1 +kerning first=112 second=287 amount=-1 +kerning first=1053 second=1105 amount=-1 +kerning first=296 second=122 amount=-1 +kerning first=284 second=204 amount=-1 +kerning first=221 second=225 amount=-1 +kerning first=330 second=210 amount=-1 +kerning first=8250 second=109 amount=-1 +kerning first=1056 second=1096 amount=-1 +kerning first=210 second=207 amount=-1 +kerning first=66 second=210 amount=-1 +kerning first=258 second=210 amount=-1 +kerning first=65 second=318 amount=-1 +kerning first=289 second=287 amount=-1 +kerning first=263 second=113 amount=-1 +kerning first=282 second=207 amount=-1 +kerning first=253 second=287 amount=-1 +kerning first=268 second=283 amount=-1 +kerning first=1030 second=1113 amount=-1 +kerning first=327 second=366 amount=-1 +kerning first=45 second=210 amount=-1 +kerning first=1038 second=1114 amount=-1 +kerning first=201 second=67 amount=-1 +kerning first=219 second=366 amount=-1 +kerning first=227 second=113 amount=-1 +kerning first=252 second=337 amount=-1 +kerning first=205 second=336 amount=-1 +kerning first=270 second=256 amount=-1 +kerning first=8218 second=279 amount=-1 +kerning first=74 second=195 amount=-1 +kerning first=346 second=8250 amount=-1 +kerning first=279 second=281 amount=-1 +kerning first=109 second=244 amount=-1 +kerning first=79 second=278 amount=-1 +kerning first=200 second=73 amount=-1 +kerning first=220 second=347 amount=-1 +kerning first=272 second=73 amount=-1 +kerning first=207 second=268 amount=-1 +kerning first=1048 second=1108 amount=-1 +kerning first=235 second=8220 amount=-2 +kerning first=344 second=86 amount=-1 +kerning first=79 second=347 amount=-1 +kerning first=220 second=278 amount=-1 +kerning first=323 second=97 amount=-1 +kerning first=307 second=8220 amount=-1 +kerning first=272 second=86 amount=-1 +kerning first=66 second=268 amount=-1 +kerning first=271 second=8220 amount=-1 +kerning first=204 second=277 amount=-1 +kerning first=281 second=365 amount=-1 +kerning first=364 second=278 amount=-1 +kerning first=99 second=277 amount=-1 +kerning first=364 second=323 amount=-1 +kerning first=1030 second=1099 amount=-1 +kerning first=250 second=267 amount=-1 +kerning first=203 second=77 amount=-1 +kerning first=8250 second=122 amount=-1 +kerning first=217 second=235 amount=-1 +kerning first=207 second=281 amount=-1 +kerning first=240 second=277 amount=-1 +kerning first=369 second=283 amount=-1 +kerning first=259 second=269 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=70 second=253 amount=-1 +kerning first=8217 second=267 amount=-1 +kerning first=1038 second=1081 amount=-1 +kerning first=225 second=283 amount=-1 +kerning first=103 second=246 amount=-1 +kerning first=275 second=231 amount=-1 +kerning first=261 second=283 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=219 second=65 amount=-1 +kerning first=187 second=338 amount=-1 +kerning first=367 second=269 amount=-1 +kerning first=85 second=260 amount=-1 +kerning first=379 second=8220 amount=-1 +kerning first=82 second=338 amount=-1 +kerning first=196 second=363 amount=-1 +kerning first=8250 second=290 amount=-1 +kerning first=232 second=363 amount=-1 +kerning first=201 second=286 amount=-1 +kerning first=327 second=72 amount=-1 +kerning first=364 second=347 amount=-1 +kerning first=334 second=8250 amount=-1 +kerning first=235 second=367 amount=-1 +kerning first=264 second=261 amount=-1 +kerning first=67 second=275 amount=-1 +kerning first=85 second=85 amount=-1 +kerning first=207 second=114 amount=-1 +kerning first=1036 second=1097 amount=-1 +kerning first=334 second=260 amount=-1 +kerning first=201 second=80 amount=-1 +kerning first=370 second=260 amount=-1 +kerning first=375 second=8222 amount=-1 +kerning first=264 second=82 amount=-1 +kerning first=103 second=275 amount=-1 +kerning first=82 second=217 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=334 second=368 amount=-1 +kerning first=81 second=344 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=267 second=8222 amount=-1 +kerning first=231 second=8222 amount=-1 +kerning first=68 second=115 amount=-1 +kerning first=8220 second=193 amount=-2 +kerning first=78 second=353 amount=-1 +kerning first=288 second=310 amount=-1 +kerning first=1051 second=1070 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=264 second=205 amount=-1 +kerning first=281 second=115 amount=-1 +kerning first=263 second=244 amount=-1 +kerning first=219 second=353 amount=-1 +kerning first=1056 second=1027 amount=-1 +kerning first=89 second=258 amount=-1 +kerning first=205 second=284 amount=-1 +kerning first=1031 second=1053 amount=-1 +kerning first=291 second=353 amount=-1 +kerning first=1067 second=1053 amount=-1 +kerning first=200 second=81 amount=-1 +kerning first=289 second=235 amount=-1 +kerning first=375 second=252 amount=-1 +kerning first=325 second=235 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=1055 second=1037 amount=-1 +kerning first=233 second=249 amount=-1 +kerning first=288 second=362 amount=-1 +kerning first=1030 second=1092 amount=-1 +kerning first=232 second=242 amount=-1 +kerning first=316 second=380 amount=-1 +kerning first=268 second=242 amount=-1 +kerning first=8218 second=107 amount=-1 +kerning first=8222 second=311 amount=-1 +kerning first=1027 second=1116 amount=-1 +kerning first=248 second=106 amount=-1 +kerning first=209 second=200 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=304 second=242 amount=-1 +kerning first=366 second=223 amount=-1 +kerning first=330 second=223 amount=-1 +kerning first=1034 second=1044 amount=-1 +kerning first=324 second=248 amount=-1 +kerning first=269 second=249 amount=-1 +kerning first=75 second=362 amount=-1 +kerning first=231 second=252 amount=-1 +kerning first=339 second=252 amount=-1 +kerning first=204 second=71 amount=-1 +kerning first=364 second=226 amount=-1 +kerning first=316 second=275 amount=-1 +kerning first=71 second=270 amount=-1 +kerning first=235 second=233 amount=-1 +kerning first=370 second=67 amount=-1 +kerning first=271 second=233 amount=-1 +kerning first=45 second=223 amount=-1 +kerning first=70 second=364 amount=-1 +kerning first=199 second=233 amount=-1 +kerning first=199 second=302 amount=-1 +kerning first=258 second=223 amount=-1 +kerning first=115 second=291 amount=-1 +kerning first=307 second=233 amount=-1 +kerning first=67 second=327 amount=-1 +kerning first=200 second=361 amount=-1 +kerning first=250 second=101 amount=-1 +kerning first=1048 second=1113 amount=-1 +kerning first=224 second=122 amount=-1 +kerning first=369 second=335 amount=-1 +kerning first=234 second=243 amount=-1 +kerning first=327 second=232 amount=-1 +kerning first=291 second=232 amount=-1 +kerning first=119 second=122 amount=-1 +kerning first=1101 second=1083 amount=-1 +kerning first=209 second=8217 amount=-1 +kerning first=218 second=284 amount=-1 +kerning first=219 second=232 amount=-1 +kerning first=1058 second=1080 amount=-1 +kerning first=110 second=8221 amount=-2 +kerning first=280 second=327 amount=-1 +kerning first=255 second=187 amount=-1 +kerning first=8218 second=382 amount=-1 +kerning first=264 second=107 amount=-1 +kerning first=352 second=327 amount=-1 +kerning first=268 second=311 amount=-1 +kerning first=251 second=8221 amount=-1 +kerning first=363 second=232 amount=-1 +kerning first=207 second=337 amount=-1 +kerning first=1048 second=1094 amount=-1 +kerning first=338 second=250 amount=-1 +kerning first=1051 second=1077 amount=-1 +kerning first=204 second=225 amount=-1 +kerning first=45 second=211 amount=-1 +kerning first=8222 second=363 amount=-1 +kerning first=70 second=318 amount=-1 +kerning first=225 second=335 amount=-1 +kerning first=1059 second=1113 amount=-1 +kerning first=220 second=72 amount=-1 +kerning first=270 second=89 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=78 second=232 amount=-1 +kerning first=71 second=76 amount=-1 +kerning first=261 second=335 amount=-1 +kerning first=1075 second=1088 amount=-1 +kerning first=1051 second=1104 amount=-1 +kerning first=353 second=46 amount=-1 +kerning first=364 second=72 amount=-1 +kerning first=1049 second=1055 amount=-1 +kerning first=267 second=98 amount=-1 +kerning first=231 second=98 amount=-1 +kerning first=263 second=267 amount=-1 +kerning first=195 second=98 amount=-1 +kerning first=8222 second=107 amount=-1 +kerning first=88 second=199 amount=-1 +kerning first=366 second=344 amount=-1 +kerning first=1053 second=1036 amount=-1 +kerning first=193 second=199 amount=-1 +kerning first=375 second=98 amount=-1 +kerning first=86 second=267 amount=-1 +kerning first=339 second=98 amount=-1 +kerning first=324 second=267 amount=-1 +kerning first=362 second=212 amount=-1 +kerning first=1056 second=1070 amount=-1 +kerning first=8218 second=235 amount=-1 +kerning first=218 second=212 amount=-1 +kerning first=337 second=114 amount=-1 +kerning first=1036 second=1028 amount=-1 +kerning first=67 second=206 amount=-1 +kerning first=252 second=267 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=229 second=114 amount=-1 +kerning first=1053 second=1079 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=352 second=206 amount=-1 +kerning first=193 second=114 amount=-1 +kerning first=374 second=268 amount=-1 +kerning first=287 second=46 amount=-1 +kerning first=101 second=111 amount=-1 +kerning first=77 second=212 amount=-1 +kerning first=1118 second=1096 amount=-1 +kerning first=219 second=258 amount=-1 +kerning first=282 second=315 amount=-1 +kerning first=355 second=8249 amount=-1 +kerning first=280 second=206 amount=-1 +kerning first=206 second=111 amount=-1 +kerning first=8222 second=242 amount=-1 +kerning first=73 second=352 amount=-1 +kerning first=314 second=111 amount=-1 +kerning first=88 second=114 amount=-1 +kerning first=74 second=368 amount=-1 +kerning first=302 second=310 amount=-1 +kerning first=235 second=263 amount=-1 +kerning first=8217 second=336 amount=-1 +kerning first=266 second=310 amount=-1 +kerning first=271 second=263 amount=-1 +kerning first=70 second=197 amount=-1 +kerning first=67 second=370 amount=-1 +kerning first=8250 second=117 amount=-1 +kerning first=307 second=263 amount=-1 +kerning first=211 second=197 amount=-1 +kerning first=220 second=263 amount=-1 +kerning first=70 second=8249 amount=-2 +kerning first=87 second=365 amount=-1 +kerning first=106 second=8249 amount=-1 +kerning first=240 second=8221 amount=-2 +kerning first=255 second=8222 amount=-1 +kerning first=70 second=331 amount=-1 +kerning first=264 second=68 amount=-1 +kerning first=1033 second=1037 amount=-1 +kerning first=209 second=72 amount=-1 +kerning first=352 second=370 amount=-1 +kerning first=1069 second=1037 amount=-1 +kerning first=368 second=8249 amount=-2 +kerning first=115 second=8250 amount=-1 +kerning first=280 second=370 amount=-1 +kerning first=204 second=199 amount=-1 +kerning first=121 second=106 amount=-1 +kerning first=70 second=361 amount=-1 +kerning first=1064 second=1101 amount=-1 +kerning first=338 second=310 amount=-1 +kerning first=202 second=67 amount=-1 +kerning first=80 second=203 amount=-1 +kerning first=364 second=8222 amount=-2 +kerning first=362 second=346 amount=-1 +kerning first=70 second=227 amount=-1 +kerning first=68 second=282 amount=-1 +kerning first=218 second=346 amount=-1 +kerning first=266 second=327 amount=-1 +kerning first=73 second=207 amount=-1 +kerning first=302 second=327 amount=-1 +kerning first=115 second=8222 amount=-1 +kerning first=338 second=327 amount=-1 +kerning first=79 second=8222 amount=-1 +kerning first=77 second=346 amount=-1 +kerning first=80 second=350 amount=-1 +kerning first=219 second=288 amount=-1 +kerning first=116 second=337 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=78 second=288 amount=-1 +kerning first=80 second=337 amount=-1 +kerning first=242 second=291 amount=-1 +kerning first=346 second=44 amount=-1 +kerning first=219 second=8218 amount=-2 +kerning first=327 second=288 amount=-1 +kerning first=206 second=81 amount=-1 +kerning first=1066 second=1046 amount=-1 +kerning first=197 second=318 amount=-1 +kerning first=192 second=253 amount=-1 +kerning first=233 second=318 amount=-1 +kerning first=290 second=75 amount=-1 +kerning first=269 second=318 amount=-1 +kerning first=1033 second=1050 amount=-1 +kerning first=1053 second=1098 amount=-1 +kerning first=218 second=75 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=365 second=337 amount=-1 +kerning first=234 second=187 amount=-1 +kerning first=1058 second=1119 amount=-1 +kerning first=270 second=187 amount=-1 +kerning first=1060 second=1064 amount=-1 +kerning first=77 second=75 amount=-1 +kerning first=277 second=245 amount=-1 +kerning first=257 second=337 amount=-1 +kerning first=241 second=245 amount=-1 +kerning first=198 second=187 amount=-1 +kerning first=221 second=337 amount=-1 +kerning first=205 second=245 amount=-1 +kerning first=356 second=230 amount=-1 +kerning first=330 second=279 amount=-1 +kerning first=1039 second=1036 amount=-1 +kerning first=80 second=66 amount=-1 +kerning first=366 second=279 amount=-1 +kerning first=345 second=226 amount=-1 +kerning first=268 second=199 amount=-1 +kerning first=268 second=234 amount=-1 +kerning first=305 second=8250 amount=-1 +kerning first=199 second=243 amount=-1 +kerning first=8218 second=339 amount=-1 +kerning first=196 second=105 amount=-1 +kerning first=1066 second=1059 amount=-2 +kerning first=362 second=75 amount=-1 +kerning first=262 second=316 amount=-1 +kerning first=82 second=8217 amount=-1 +kerning first=205 second=202 amount=-1 +kerning first=187 second=90 amount=-1 +kerning first=118 second=8217 amount=-2 +kerning first=86 second=8250 amount=-1 +kerning first=374 second=117 amount=-1 +kerning first=323 second=264 amount=-1 +kerning first=201 second=362 amount=-1 +kerning first=345 second=8220 amount=-1 +kerning first=338 second=117 amount=-1 +kerning first=270 second=351 amount=-1 +kerning first=234 second=351 amount=-1 +kerning first=1071 second=1025 amount=-1 +kerning first=8222 second=105 amount=-1 +kerning first=88 second=307 amount=-1 +kerning first=233 second=108 amount=-1 +kerning first=74 second=264 amount=-1 +kerning first=280 second=69 amount=-1 +kerning first=1057 second=1073 amount=-1 +kerning first=325 second=8217 amount=-1 +kerning first=1068 second=1034 amount=-1 +kerning first=193 second=307 amount=-1 +kerning first=330 second=82 amount=-1 +kerning first=284 second=364 amount=-1 +kerning first=364 second=73 amount=-1 +kerning first=197 second=108 amount=-1 +kerning first=223 second=8217 amount=-2 +kerning first=212 second=364 amount=-1 +kerning first=1069 second=1050 amount=-1 +kerning first=338 second=323 amount=-1 +kerning first=366 second=82 amount=-1 +kerning first=356 second=273 amount=-1 +kerning first=266 second=323 amount=-1 +kerning first=201 second=338 amount=-1 +kerning first=71 second=364 amount=-1 +kerning first=262 second=286 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=200 second=310 amount=-1 +kerning first=8250 second=194 amount=-1 +kerning first=298 second=286 amount=-1 +kerning first=1062 second=1117 amount=-1 +kerning first=249 second=113 amount=-1 +kerning first=67 second=69 amount=-1 +kerning first=268 second=262 amount=-1 +kerning first=268 second=171 amount=-1 +kerning first=187 second=325 amount=-1 +kerning first=370 second=286 amount=-1 +kerning first=74 second=355 amount=-1 +kerning first=1047 second=1067 amount=-1 +kerning first=85 second=286 amount=-1 +kerning first=335 second=316 amount=-1 +kerning first=197 second=314 amount=-1 +kerning first=81 second=82 amount=-1 +kerning first=68 second=72 amount=-1 +kerning first=197 second=171 amount=-1 +kerning first=1073 second=1078 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=73 second=8250 amount=-1 +kerning first=1040 second=1069 amount=-1 +kerning first=325 second=317 amount=-1 +kerning first=269 second=314 amount=-1 +kerning first=233 second=314 amount=-1 +kerning first=8222 second=229 amount=-1 +kerning first=323 second=355 amount=-1 +kerning first=287 second=355 amount=-1 +kerning first=230 second=117 amount=-1 +kerning first=209 second=282 amount=-1 +kerning first=121 second=316 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=1048 second=1100 amount=-1 +kerning first=235 second=289 amount=-1 +kerning first=264 second=339 amount=-1 +kerning first=268 second=229 amount=-1 +kerning first=307 second=289 amount=-1 +kerning first=195 second=356 amount=-1 +kerning first=1049 second=1042 amount=-1 +kerning first=271 second=289 amount=-1 +kerning first=304 second=229 amount=-1 +kerning first=269 second=171 amount=-1 +kerning first=1053 second=1049 amount=-1 +kerning first=232 second=101 amount=-1 +kerning first=365 second=246 amount=-1 +kerning first=369 second=103 amount=-1 +kerning first=364 second=304 amount=-1 +kerning first=333 second=103 amount=-1 +kerning first=304 second=101 amount=-1 +kerning first=368 second=194 amount=-1 +kerning first=66 second=315 amount=-1 +kerning first=257 second=246 amount=-1 +kerning first=240 second=333 amount=-1 +kerning first=203 second=296 amount=-1 +kerning first=362 second=246 amount=-1 +kerning first=221 second=246 amount=-1 +kerning first=225 second=103 amount=-1 +kerning first=220 second=304 amount=-1 +kerning first=199 second=220 amount=-1 +kerning first=1051 second=1091 amount=-1 +kerning first=116 second=246 amount=-1 +kerning first=120 second=103 amount=-1 +kerning first=80 second=246 amount=-1 +kerning first=275 second=120 amount=-1 +kerning first=69 second=315 amount=-1 +kerning first=202 second=211 amount=-1 +kerning first=72 second=109 amount=-1 +kerning first=79 second=304 amount=-1 +kerning first=81 second=86 amount=-1 +kerning first=325 second=313 amount=-1 +kerning first=347 second=8218 amount=-1 +kerning first=195 second=85 amount=-1 +kerning first=311 second=8218 amount=-1 +kerning first=288 second=202 amount=-1 +kerning first=229 second=281 amount=-1 +kerning first=101 second=382 amount=-1 +kerning first=87 second=339 amount=-1 +kerning first=101 second=287 amount=-1 +kerning first=206 second=382 amount=-1 +kerning first=304 second=298 amount=-1 +kerning first=85 second=216 amount=-1 +kerning first=234 second=347 amount=-1 +kerning first=8217 second=332 amount=-1 +kerning first=274 second=211 amount=-1 +kerning first=335 second=8250 amount=-1 +kerning first=262 second=290 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=98 second=120 amount=-1 +kerning first=305 second=242 amount=-1 +kerning first=8250 second=198 amount=-1 +kerning first=298 second=290 amount=-1 +kerning first=242 second=287 amount=-1 +kerning first=263 second=8250 amount=-1 +kerning first=310 second=211 amount=-1 +kerning first=258 second=86 amount=-1 +kerning first=370 second=290 amount=-1 +kerning first=1046 second=1090 amount=-1 +kerning first=289 second=339 amount=-1 +kerning first=289 second=107 amount=-1 +kerning first=83 second=302 amount=-1 +kerning first=253 second=107 amount=-1 +kerning first=246 second=289 amount=-1 +kerning first=325 second=339 amount=-1 +kerning first=83 second=8220 amount=-1 +kerning first=8217 second=362 amount=-1 +kerning first=1052 second=1067 amount=-1 +kerning first=338 second=219 amount=-1 +kerning first=356 second=234 amount=-1 +kerning first=1118 second=1090 amount=-1 +kerning first=252 second=101 amount=-1 +kerning first=68 second=278 amount=-1 +kerning first=70 second=223 amount=-1 +kerning first=217 second=339 amount=-1 +kerning first=8222 second=268 amount=-1 +kerning first=119 second=8220 amount=-2 +kerning first=302 second=219 amount=-1 +kerning first=194 second=219 amount=-1 +kerning first=79 second=330 amount=-1 +kerning first=103 second=232 amount=-1 +kerning first=106 second=8222 amount=-1 +kerning first=220 second=330 amount=-1 +kerning first=67 second=232 amount=-1 +kerning first=279 second=365 amount=-1 +kerning first=271 second=122 amount=-1 +kerning first=1059 second=1057 amount=-1 +kerning first=1042 second=1118 amount=-1 +kerning first=209 second=278 amount=-1 +kerning first=72 second=280 amount=-1 +kerning first=316 second=232 amount=-1 +kerning first=199 second=122 amount=-1 +kerning first=253 second=187 amount=-1 +kerning first=205 second=74 amount=-1 +kerning first=1046 second=1101 amount=-1 +kerning first=66 second=298 amount=-1 +kerning first=1046 second=1094 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=1060 second=1047 amount=-1 +kerning first=323 second=225 amount=-1 +kerning first=66 second=363 amount=-1 +kerning first=187 second=89 amount=-2 +kerning first=1027 second=1094 amount=-1 +kerning first=263 second=228 amount=-1 +kerning first=350 second=85 amount=-1 +kerning first=101 second=246 amount=-1 +kerning first=352 second=8217 amount=-1 +kerning first=370 second=296 amount=-1 +kerning first=8218 second=314 amount=-1 +kerning first=279 second=363 amount=-1 +kerning first=278 second=85 amount=-1 +kerning first=77 second=216 amount=-1 +kerning first=260 second=8220 amount=-2 +kerning first=234 second=46 amount=-1 +kerning first=224 second=8220 amount=-2 +kerning first=206 second=85 amount=-1 +kerning first=332 second=8220 amount=-2 +kerning first=74 second=225 amount=-1 +kerning first=1051 second=1028 amount=-1 +kerning first=65 second=85 amount=-1 +kerning first=205 second=241 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=368 second=8220 amount=-1 +kerning first=368 second=302 amount=-1 +kerning first=355 second=283 amount=-1 +kerning first=267 second=114 amount=-1 +kerning first=105 second=289 amount=-1 +kerning first=296 second=302 amount=-1 +kerning first=1060 second=1038 amount=-1 +kerning first=72 second=70 amount=-1 +kerning first=202 second=250 amount=-1 +kerning first=287 second=109 amount=-1 +kerning first=261 second=378 amount=-1 +kerning first=78 second=262 amount=-1 +kerning first=80 second=207 amount=-1 +kerning first=225 second=378 amount=-1 +kerning first=277 second=104 amount=-1 +kerning first=213 second=70 amount=-1 +kerning first=1053 second=1075 amount=-1 +kerning first=352 second=366 amount=-1 +kerning first=346 second=250 amount=-1 +kerning first=310 second=250 amount=-1 +kerning first=280 second=366 amount=-1 +kerning first=210 second=192 amount=-1 +kerning first=274 second=250 amount=-1 +kerning first=219 second=262 amount=-1 +kerning first=333 second=378 amount=-1 +kerning first=8218 second=231 amount=-1 +kerning first=218 second=216 amount=-1 +kerning first=283 second=357 amount=-1 +kerning first=1053 second=1070 amount=-1 +kerning first=1042 second=1053 amount=-1 +kerning first=324 second=8221 amount=-2 +kerning first=209 second=76 amount=-1 +kerning first=304 second=225 amount=-1 +kerning first=362 second=216 amount=-1 +kerning first=1046 second=1073 amount=-1 +kerning first=84 second=378 amount=-1 +kerning first=83 second=369 amount=-1 +kerning first=45 second=253 amount=-1 +kerning first=272 second=201 amount=-1 +kerning first=218 second=251 amount=-1 +kerning first=1086 second=1084 amount=-1 +kerning first=200 second=201 amount=-1 +kerning first=97 second=113 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=362 second=251 amount=-1 +kerning first=8220 second=353 amount=-1 +kerning first=250 second=45 amount=-1 +kerning first=80 second=242 amount=-1 +kerning first=199 second=259 amount=-1 +kerning first=201 second=204 amount=-1 +kerning first=255 second=250 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=202 second=116 amount=-1 +kerning first=257 second=242 amount=-1 +kerning first=196 second=268 amount=-1 +kerning first=87 second=369 amount=-1 +kerning first=206 second=317 amount=-1 +kerning first=275 second=8218 amount=-1 +kerning first=267 second=8217 amount=-2 +kerning first=278 second=317 amount=-1 +kerning first=187 second=256 amount=-1 +kerning first=197 second=210 amount=-1 +kerning first=67 second=366 amount=-1 +kerning first=350 second=317 amount=-1 +kerning first=1060 second=1061 amount=-1 +kerning first=304 second=268 amount=-1 +kerning first=192 second=369 amount=-1 +kerning first=365 second=242 amount=-1 +kerning first=1073 second=1113 amount=-1 +kerning first=324 second=171 amount=-1 +kerning first=218 second=207 amount=-1 +kerning first=369 second=244 amount=-1 +kerning first=325 second=209 amount=-1 +kerning first=78 second=327 amount=-1 +kerning first=224 second=233 amount=-1 +kerning first=305 second=279 amount=-1 +kerning first=1105 second=1080 amount=-1 +kerning first=368 second=371 amount=-1 +kerning first=217 second=209 amount=-1 +kerning first=233 second=279 amount=-1 +kerning first=219 second=327 amount=-1 +kerning first=8250 second=302 amount=-1 +kerning first=269 second=279 amount=-1 +kerning first=368 second=233 amount=-1 +kerning first=302 second=288 amount=-1 +kerning first=87 second=235 amount=-1 +kerning first=198 second=213 amount=-1 +kerning first=338 second=288 amount=-1 +kerning first=298 second=280 amount=-1 +kerning first=327 second=327 amount=-1 +kerning first=296 second=233 amount=-1 +kerning first=207 second=335 amount=-1 +kerning first=220 second=200 amount=-1 +kerning first=266 second=288 amount=-1 +kerning first=228 second=235 amount=-1 +kerning first=83 second=371 amount=-1 +kerning first=264 second=235 amount=-1 +kerning first=86 second=224 amount=-1 +kerning first=79 second=200 amount=-1 +kerning first=344 second=266 amount=-1 +kerning first=374 second=288 amount=-1 +kerning first=321 second=370 amount=-1 +kerning first=73 second=284 amount=-1 +kerning first=99 second=8221 amount=-2 +kerning first=334 second=84 amount=-1 +kerning first=264 second=231 amount=-1 +kerning first=1053 second=1077 amount=-1 +kerning first=250 second=283 amount=-1 +kerning first=286 second=218 amount=-1 +kerning first=80 second=380 amount=-1 +kerning first=263 second=224 amount=-1 +kerning first=214 second=218 amount=-1 +kerning first=364 second=196 amount=-1 +kerning first=272 second=270 amount=-1 +kerning first=87 second=231 amount=-1 +kerning first=73 second=283 amount=-1 +kerning first=257 second=380 amount=-1 +kerning first=206 second=248 amount=-1 +kerning first=109 second=283 amount=-1 +kerning first=73 second=218 amount=-1 +kerning first=221 second=380 amount=-1 +kerning first=314 second=248 amount=-1 +kerning first=1031 second=1027 amount=-1 +kerning first=213 second=280 amount=-1 +kerning first=228 second=231 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=268 second=66 amount=-1 +kerning first=282 second=79 amount=-1 +kerning first=368 second=367 amount=-1 +kerning first=74 second=323 amount=-1 +kerning first=84 second=244 amount=-1 +kerning first=66 second=266 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=72 second=218 amount=-1 +kerning first=8217 second=228 amount=-1 +kerning first=200 second=270 amount=-1 +kerning first=225 second=244 amount=-1 +kerning first=261 second=244 amount=-1 +kerning first=1039 second=1062 amount=-1 +kerning first=83 second=367 amount=-1 +kerning first=326 second=45 amount=-1 +kerning first=259 second=99 amount=-1 +kerning first=85 second=80 amount=-1 +kerning first=362 second=114 amount=-1 +kerning first=332 second=8250 amount=-1 +kerning first=362 second=45 amount=-2 +kerning first=241 second=283 amount=-1 +kerning first=198 second=217 amount=-1 +kerning first=210 second=354 amount=-1 +kerning first=119 second=367 amount=-1 +kerning first=290 second=45 amount=-1 +kerning first=217 second=205 amount=-1 +kerning first=298 second=80 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=254 second=114 amount=-1 +kerning first=270 second=217 amount=-1 +kerning first=266 second=284 amount=-1 +kerning first=262 second=80 amount=-1 +kerning first=187 second=69 amount=-1 +kerning first=8249 second=364 amount=-1 +kerning first=326 second=114 amount=-1 +kerning first=338 second=284 amount=-1 +kerning first=101 second=252 amount=-1 +kerning first=304 second=66 amount=-1 +kerning first=302 second=284 amount=-1 +kerning first=72 second=232 amount=-1 +kerning first=77 second=114 amount=-1 +kerning first=1027 second=1098 amount=-1 +kerning first=89 second=284 amount=-1 +kerning first=1052 second=1072 amount=-1 +kerning first=108 second=243 amount=-1 +kerning first=302 second=353 amount=-1 +kerning first=194 second=284 amount=-1 +kerning first=266 second=353 amount=-1 +kerning first=72 second=345 amount=-1 +kerning first=374 second=353 amount=-1 +kerning first=108 second=345 amount=-1 +kerning first=262 second=268 amount=-1 +kerning first=234 second=115 amount=-1 +kerning first=270 second=115 amount=-1 +kerning first=249 second=345 amount=-1 +kerning first=364 second=45 amount=-2 +kerning first=1031 second=1054 amount=-1 +kerning first=108 second=250 amount=-1 +kerning first=45 second=249 amount=-1 +kerning first=200 second=266 amount=-1 +kerning first=73 second=214 amount=-1 +kerning first=1049 second=1077 amount=-1 +kerning first=104 second=243 amount=-1 +kerning first=193 second=71 amount=-1 +kerning first=204 second=368 amount=-1 +kerning first=209 second=243 amount=-1 +kerning first=364 second=200 amount=-1 +kerning first=231 second=226 amount=-1 +kerning first=281 second=243 amount=-1 +kerning first=75 second=336 amount=-1 +kerning first=205 second=310 amount=-1 +kerning first=267 second=226 amount=-1 +kerning first=269 second=275 amount=-1 +kerning first=272 second=197 amount=-1 +kerning first=233 second=275 amount=-1 +kerning first=362 second=288 amount=-1 +kerning first=370 second=80 amount=-1 +kerning first=314 second=252 amount=-1 +kerning first=334 second=80 amount=-1 +kerning first=278 second=252 amount=-1 +kerning first=1030 second=1089 amount=-1 +kerning first=374 second=8220 amount=-1 +kerning first=305 second=275 amount=-1 +kerning first=73 second=270 amount=-1 +kerning first=350 second=252 amount=-1 +kerning first=218 second=45 amount=-2 +kerning first=88 second=71 amount=-1 +kerning first=77 second=45 amount=-1 +kerning first=1046 second=1087 amount=-1 +kerning first=258 second=249 amount=-1 +kerning first=113 second=45 amount=-1 +kerning first=1046 second=1086 amount=-1 +kerning first=374 second=275 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=8217 second=338 amount=-1 +kerning first=233 second=353 amount=-1 +kerning first=317 second=217 amount=-1 +kerning first=102 second=45 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=230 second=275 amount=-1 +kerning first=262 second=71 amount=-1 +kerning first=274 second=8249 amount=-1 +kerning first=209 second=79 amount=-1 +kerning first=269 second=353 amount=-1 +kerning first=302 second=275 amount=-1 +kerning first=266 second=275 amount=-1 +kerning first=1052 second=1068 amount=-1 +kerning first=217 second=66 amount=-1 +kerning first=302 second=362 amount=-1 +kerning first=67 second=318 amount=-1 +kerning first=1047 second=1045 amount=-1 +kerning first=246 second=122 amount=-1 +kerning first=219 second=223 amount=-1 +kerning first=8217 second=224 amount=-1 +kerning first=103 second=318 amount=-1 +kerning first=362 second=97 amount=-1 +kerning first=1042 second=1062 amount=-1 +kerning first=187 second=80 amount=-1 +kerning first=338 second=362 amount=-1 +kerning first=89 second=275 amount=-1 +kerning first=1058 second=1097 amount=-1 +kerning first=244 second=318 amount=-1 +kerning first=218 second=97 amount=-1 +kerning first=327 second=223 amount=-1 +kerning first=316 second=318 amount=-1 +kerning first=291 second=223 amount=-1 +kerning first=211 second=315 amount=-1 +kerning first=187 second=200 amount=-1 +kerning first=240 second=234 amount=-1 +kerning first=324 second=232 amount=-1 +kerning first=206 second=226 amount=-1 +kerning first=8222 second=354 amount=-1 +kerning first=1038 second=1085 amount=-1 +kerning first=78 second=223 amount=-1 +kerning first=75 second=249 amount=-1 +kerning first=194 second=362 amount=-1 +kerning first=364 second=209 amount=-1 +kerning first=264 second=283 amount=-1 +kerning first=368 second=198 amount=-1 +kerning first=197 second=266 amount=-1 +kerning first=86 second=371 amount=-1 +kerning first=370 second=71 amount=-1 +kerning first=1077 second=1076 amount=-1 +kerning first=1042 second=1079 amount=-1 +kerning first=298 second=71 amount=-1 +kerning first=283 second=249 amount=-1 +kerning first=75 second=332 amount=-1 +kerning first=68 second=217 amount=-1 +kerning first=66 second=45 amount=-1 +kerning first=197 second=8250 amount=-1 +kerning first=70 second=249 amount=-1 +kerning first=209 second=217 amount=-1 +kerning first=289 second=98 amount=-1 +kerning first=366 second=361 amount=-1 +kerning first=270 second=206 amount=-1 +kerning first=253 second=98 amount=-1 +kerning first=8250 second=66 amount=-1 +kerning first=205 second=267 amount=-1 +kerning first=258 second=361 amount=-1 +kerning first=241 second=267 amount=-1 +kerning first=201 second=250 amount=-1 +kerning first=1042 second=1051 amount=-1 +kerning first=277 second=267 amount=-1 +kerning first=1047 second=1042 amount=-1 +kerning first=1050 second=1080 amount=-1 +kerning first=69 second=216 amount=-1 +kerning first=199 second=345 amount=-1 +kerning first=100 second=267 amount=-1 +kerning first=235 second=345 amount=-1 +kerning first=8250 second=380 amount=-1 +kerning first=271 second=345 amount=-1 +kerning first=1071 second=1107 amount=-1 +kerning first=207 second=225 amount=-1 +kerning first=1064 second=1079 amount=-1 +kerning first=1036 second=1080 amount=-1 +kerning first=219 second=323 amount=-1 +kerning first=72 second=241 amount=-1 +kerning first=1041 second=1063 amount=-1 +kerning first=80 second=302 amount=-1 +kerning first=78 second=323 amount=-1 +kerning first=240 second=114 amount=-1 +kerning first=262 second=171 amount=-1 +kerning first=272 second=344 amount=-1 +kerning first=325 second=378 amount=-1 +kerning first=327 second=323 amount=-1 +kerning first=69 second=250 amount=-1 +kerning first=78 second=310 amount=-1 +kerning first=289 second=378 amount=-1 +kerning first=78 second=370 amount=-1 +kerning first=99 second=114 amount=-1 +kerning first=202 second=336 amount=-1 +kerning first=253 second=378 amount=-1 +kerning first=326 second=103 amount=-1 +kerning first=327 second=370 amount=-1 +kerning first=282 second=250 amount=-1 +kerning first=274 second=336 amount=-1 +kerning first=74 second=199 amount=-1 +kerning first=213 second=207 amount=-1 +kerning first=219 second=378 amount=-1 +kerning first=310 second=336 amount=-1 +kerning first=65 second=46 amount=-1 +kerning first=86 second=284 amount=-1 +kerning first=282 second=216 amount=-1 +kerning first=45 second=361 amount=-1 +kerning first=1039 second=1071 amount=-1 +kerning first=207 second=259 amount=-1 +kerning first=323 second=199 amount=-1 +kerning first=327 second=310 amount=-1 +kerning first=217 second=378 amount=-1 +kerning first=270 second=72 amount=-1 +kerning first=1044 second=1054 amount=-1 +kerning first=200 second=344 amount=-1 +kerning first=112 second=378 amount=-1 +kerning first=1056 second=1105 amount=-1 +kerning first=219 second=310 amount=-1 +kerning first=302 second=210 amount=-1 +kerning first=258 second=314 amount=-1 +kerning first=45 second=288 amount=-1 +kerning first=207 second=346 amount=-1 +kerning first=307 second=235 amount=-1 +kerning first=195 second=334 amount=-1 +kerning first=220 second=282 amount=-1 +kerning first=67 second=331 amount=-1 +kerning first=66 second=346 amount=-1 +kerning first=321 second=87 amount=-1 +kerning first=1052 second=1055 amount=-1 +kerning first=67 second=220 amount=-1 +kerning first=258 second=288 amount=-1 +kerning first=362 second=110 amount=-1 +kerning first=368 second=109 amount=-1 +kerning first=79 second=282 amount=-1 +kerning first=1058 second=1095 amount=-1 +kerning first=219 second=344 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=336 second=187 amount=-1 +kerning first=307 second=333 amount=-1 +kerning first=116 second=101 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=209 second=230 amount=-1 +kerning first=221 second=101 amount=-1 +kerning first=8250 second=220 amount=-1 +kerning first=289 second=291 amount=-1 +kerning first=262 second=296 amount=-1 +kerning first=104 second=263 amount=-1 +kerning first=198 second=325 amount=-1 +kerning first=257 second=101 amount=-1 +kerning first=354 second=337 amount=-1 +kerning first=67 second=245 amount=-1 +kerning first=112 second=291 amount=-1 +kerning first=74 second=212 amount=-1 +kerning first=8217 second=211 amount=-1 +kerning first=261 second=279 amount=-1 +kerning first=1070 second=1061 amount=-1 +kerning first=304 second=344 amount=-1 +kerning first=286 second=8218 amount=-1 +kerning first=1034 second=1061 amount=-1 +kerning first=84 second=99 amount=-1 +kerning first=88 second=303 amount=-1 +kerning first=369 second=279 amount=-1 +kerning first=1066 second=1098 amount=-1 +kerning first=1030 second=1098 amount=-1 +kerning first=105 second=337 amount=-1 +kerning first=264 second=296 amount=-1 +kerning first=193 second=303 amount=-1 +kerning first=1049 second=1064 amount=-1 +kerning first=261 second=99 amount=-1 +kerning first=366 second=288 amount=-1 +kerning first=1055 second=1119 amount=-1 +kerning first=231 second=187 amount=-1 +kerning first=1091 second=1119 amount=-1 +kerning first=316 second=245 amount=-1 +kerning first=1039 second=1118 amount=-1 +kerning first=80 second=75 amount=-1 +kerning first=225 second=99 amount=-1 +kerning first=216 second=8250 amount=-1 +kerning first=330 second=288 amount=-1 +kerning first=339 second=187 amount=-1 +kerning first=214 second=8218 amount=-1 +kerning first=352 second=363 amount=-1 +kerning first=84 second=279 amount=-1 +kerning first=212 second=221 amount=-1 +kerning first=307 second=243 amount=-1 +kerning first=291 second=117 amount=-1 +kerning first=80 second=226 amount=-1 +kerning first=365 second=8220 amount=-1 +kerning first=1071 second=1065 amount=-1 +kerning first=296 second=380 amount=-1 +kerning first=255 second=117 amount=-1 +kerning first=219 second=117 amount=-1 +kerning first=267 second=287 amount=-1 +kerning first=275 second=248 amount=-1 +kerning first=368 second=380 amount=-1 +kerning first=231 second=287 amount=-1 +kerning first=325 second=218 amount=-1 +kerning first=267 second=363 amount=-1 +kerning first=99 second=307 amount=-1 +kerning first=298 second=264 amount=-1 +kerning first=1068 second=1030 amount=-1 +kerning first=262 second=264 amount=-1 +kerning first=291 second=171 amount=-1 +kerning first=198 second=278 amount=-1 +kerning first=296 second=66 amount=-1 +kerning first=201 second=364 amount=-1 +kerning first=116 second=8220 amount=-1 +kerning first=194 second=121 amount=-1 +kerning first=220 second=209 amount=-1 +kerning first=80 second=8220 amount=-1 +kerning first=85 second=264 amount=-1 +kerning first=196 second=367 amount=-1 +kerning first=266 second=202 amount=-1 +kerning first=119 second=380 amount=-1 +kerning first=264 second=270 amount=-1 +kerning first=79 second=209 amount=-1 +kerning first=83 second=66 amount=-1 +kerning first=270 second=278 amount=-1 +kerning first=327 second=69 amount=-1 +kerning first=257 second=8220 amount=-2 +kerning first=89 second=74 amount=-1 +kerning first=302 second=202 amount=-1 +kerning first=270 second=325 amount=-1 +kerning first=78 second=69 amount=-1 +kerning first=208 second=8220 amount=-2 +kerning first=362 second=330 amount=-1 +kerning first=201 second=202 amount=-1 +kerning first=219 second=69 amount=-1 +kerning first=1040 second=1091 amount=-1 +kerning first=352 second=203 amount=-1 +kerning first=302 second=74 amount=-1 +kerning first=264 second=311 amount=-1 +kerning first=364 second=330 amount=-1 +kerning first=234 second=252 amount=-1 +kerning first=374 second=74 amount=-1 +kerning first=275 second=252 amount=-1 +kerning first=198 second=252 amount=-1 +kerning first=206 second=261 amount=-1 +kerning first=368 second=66 amount=-1 +kerning first=280 second=313 amount=-1 +kerning first=73 second=227 amount=-1 +kerning first=217 second=218 amount=-1 +kerning first=235 second=44 amount=-1 +kerning first=288 second=78 amount=-1 +kerning first=366 second=214 amount=-1 +kerning first=1055 second=1057 amount=-1 +kerning first=330 second=214 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=8217 second=284 amount=-1 +kerning first=368 second=281 amount=-1 +kerning first=269 second=112 amount=-1 +kerning first=204 second=68 amount=-1 +kerning first=204 second=355 amount=-1 +kerning first=1104 second=1103 amount=-1 +kerning first=1043 second=1082 amount=-1 +kerning first=364 second=282 amount=-1 +kerning first=307 second=44 amount=-1 +kerning first=200 second=365 amount=-1 +kerning first=82 second=286 amount=-1 +kerning first=103 second=117 amount=-1 +kerning first=200 second=171 amount=-1 +kerning first=70 second=252 amount=-1 +kerning first=368 second=204 amount=-1 +kerning first=103 second=112 amount=-1 +kerning first=316 second=117 amount=-1 +kerning first=116 second=229 amount=-1 +kerning first=1051 second=1108 amount=-1 +kerning first=1049 second=1051 amount=-1 +kerning first=280 second=117 amount=-1 +kerning first=80 second=229 amount=-1 +kerning first=344 second=171 amount=-1 +kerning first=364 second=68 amount=-1 +kerning first=380 second=171 amount=-1 +kerning first=212 second=192 amount=-1 +kerning first=362 second=8218 amount=-2 +kerning first=240 second=287 amount=-1 +kerning first=83 second=220 amount=-1 +kerning first=1052 second=1042 amount=-1 +kerning first=352 second=117 amount=-1 +kerning first=195 second=361 amount=-1 +kerning first=227 second=263 amount=-1 +kerning first=197 second=374 amount=-1 +kerning first=1054 second=1039 amount=-1 +kerning first=77 second=298 amount=-1 +kerning first=263 second=263 amount=-1 +kerning first=304 second=246 amount=-1 +kerning first=72 second=100 amount=-1 +kerning first=279 second=251 amount=-1 +kerning first=268 second=246 amount=-1 +kerning first=339 second=382 amount=-1 +kerning first=232 second=246 amount=-1 +kerning first=1054 second=1034 amount=-1 +kerning first=375 second=382 amount=-1 +kerning first=283 second=103 amount=-1 +kerning first=325 second=77 amount=-1 +kerning first=296 second=220 amount=-1 +kerning first=1047 second=1062 amount=-1 +kerning first=368 second=220 amount=-1 +kerning first=212 second=206 amount=-1 +kerning first=325 second=304 amount=-1 +kerning first=107 second=316 amount=-1 +kerning first=209 second=330 amount=-1 +kerning first=8217 second=198 amount=-2 +kerning first=106 second=103 amount=-1 +kerning first=248 second=316 amount=-1 +kerning first=279 second=333 amount=-1 +kerning first=193 second=118 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=365 second=281 amount=-1 +kerning first=8250 second=207 amount=-1 +kerning first=207 second=333 amount=-1 +kerning first=328 second=248 amount=-1 +kerning first=325 second=8222 amount=-1 +kerning first=217 second=304 amount=-1 +kerning first=1051 second=1048 amount=-1 +kerning first=289 second=8222 amount=-1 +kerning first=86 second=211 amount=-1 +kerning first=253 second=8222 amount=-1 +kerning first=334 second=221 amount=-1 +kerning first=193 second=255 amount=-1 +kerning first=8217 second=83 amount=-1 +kerning first=80 second=331 amount=-1 +kerning first=217 second=8222 amount=-2 +kerning first=1044 second=1087 amount=-1 +kerning first=267 second=382 amount=-1 +kerning first=262 second=310 amount=-1 +kerning first=82 second=221 amount=-1 +kerning first=286 second=313 amount=-1 +kerning first=195 second=375 amount=-1 +kerning first=187 second=221 amount=-2 +kerning first=67 second=210 amount=-1 +kerning first=206 second=339 amount=-1 +kerning first=213 second=315 amount=-1 +kerning first=354 second=242 amount=-1 +kerning first=72 second=233 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=108 second=233 amount=-1 +kerning first=83 second=280 amount=-1 +kerning first=209 second=111 amount=-1 +kerning first=305 second=245 amount=-1 +kerning first=206 second=205 amount=-1 +kerning first=214 second=313 amount=-1 +kerning first=269 second=245 amount=-1 +kerning first=249 second=233 amount=-1 +kerning first=1048 second=1057 amount=-1 +kerning first=101 second=120 amount=-1 +kerning first=364 second=230 amount=-1 +kerning first=68 second=330 amount=-1 +kerning first=314 second=339 amount=-1 +kerning first=72 second=315 amount=-1 +kerning first=296 second=280 amount=-1 +kerning first=220 second=230 amount=-1 +kerning first=368 second=280 amount=-1 +kerning first=80 second=317 amount=-1 +kerning first=262 second=212 amount=-1 +kerning first=218 second=298 amount=-1 +kerning first=110 second=8217 amount=-2 +kerning first=298 second=212 amount=-1 +kerning first=220 second=76 amount=-1 +kerning first=290 second=298 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=370 second=212 amount=-1 +kerning first=251 second=8217 amount=-1 +kerning first=85 second=212 amount=-1 +kerning first=362 second=298 amount=-1 +kerning first=45 second=344 amount=-1 +kerning first=75 second=118 amount=-1 +kerning first=1055 second=1113 amount=-1 +kerning first=8222 second=367 amount=-1 +kerning first=345 second=46 amount=-1 +kerning first=281 second=111 amount=-1 +kerning first=233 second=245 amount=-1 +kerning first=325 second=85 amount=-1 +kerning first=194 second=254 amount=-1 +kerning first=116 second=289 amount=-1 +kerning first=230 second=254 amount=-1 +kerning first=266 second=254 amount=-1 +kerning first=217 second=85 amount=-1 +kerning first=287 second=8217 amount=-2 +kerning first=323 second=8217 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=257 second=289 amount=-1 +kerning first=80 second=216 amount=-1 +kerning first=89 second=262 amount=-1 +kerning first=267 second=46 amount=-1 +kerning first=1055 second=1099 amount=-1 +kerning first=375 second=46 amount=-1 +kerning first=302 second=218 amount=-1 +kerning first=339 second=46 amount=-1 +kerning first=302 second=262 amount=-1 +kerning first=187 second=67 amount=-1 +kerning first=224 second=8250 amount=-1 +kerning first=266 second=262 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=221 second=216 amount=-1 +kerning first=374 second=262 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=1104 second=1095 amount=-1 +kerning first=338 second=262 amount=-1 +kerning first=197 second=366 amount=-1 +kerning first=83 second=345 amount=-1 +kerning first=45 second=206 amount=-1 +kerning first=272 second=304 amount=-1 +kerning first=274 second=70 amount=-1 +kerning first=204 second=110 amount=-1 +kerning first=355 second=353 amount=-1 +kerning first=214 second=192 amount=-1 +kerning first=8217 second=380 amount=-1 +kerning first=235 second=250 amount=-1 +kerning first=346 second=70 amount=-1 +kerning first=224 second=345 amount=-1 +kerning first=8250 second=75 amount=-1 +kerning first=67 second=104 amount=-1 +kerning first=362 second=225 amount=-1 +kerning first=364 second=76 amount=-1 +kerning first=77 second=229 amount=-1 +kerning first=1039 second=1084 amount=-1 +kerning first=231 second=46 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=350 second=274 amount=-1 +kerning first=368 second=345 amount=-1 +kerning first=302 second=224 amount=-1 +kerning first=206 second=366 amount=-1 +kerning first=366 second=206 amount=-1 +kerning first=217 second=44 amount=-2 +kerning first=193 second=368 amount=-1 +kerning first=8220 second=362 amount=-1 +kerning first=68 second=317 amount=-1 +kerning first=296 second=207 amount=-1 +kerning first=1031 second=1105 amount=-1 +kerning first=86 second=271 amount=-1 +kerning first=194 second=375 amount=-1 +kerning first=330 second=206 amount=-1 +kerning first=88 second=8221 amount=-1 +kerning first=368 second=207 amount=-1 +kerning first=195 second=369 amount=-1 +kerning first=209 second=317 amount=-1 +kerning first=97 second=122 amount=-1 +kerning first=193 second=8221 amount=-2 +kerning first=211 second=201 amount=-1 +kerning first=263 second=271 amount=-1 +kerning first=229 second=8221 amount=-2 +kerning first=88 second=368 amount=-1 +kerning first=70 second=201 amount=-1 +kerning first=1054 second=1047 amount=-1 +kerning first=1108 second=1093 amount=-1 +kerning first=212 second=256 amount=-1 +kerning first=228 second=378 amount=-1 +kerning first=283 second=116 amount=-1 +kerning first=100 second=113 amount=-1 +kerning first=337 second=8221 amount=-2 +kerning first=1056 second=1031 amount=-1 +kerning first=304 second=122 amount=-1 +kerning first=87 second=378 amount=-1 +kerning first=214 second=270 amount=-1 +kerning first=85 second=204 amount=-1 +kerning first=78 second=267 amount=-1 +kerning first=88 second=219 amount=-1 +kerning first=370 second=204 amount=-1 +kerning first=304 second=259 amount=-1 +kerning first=1067 second=1105 amount=-1 +kerning first=334 second=204 amount=-1 +kerning first=268 second=259 amount=-1 +kerning first=298 second=204 amount=-1 +kerning first=83 second=207 amount=-1 +kerning first=264 second=378 amount=-1 +kerning first=280 second=210 amount=-1 +kerning first=214 second=86 amount=-1 +kerning first=80 second=281 amount=-1 +kerning first=1041 second=1068 amount=-1 +kerning first=8250 second=280 amount=-1 +kerning first=1055 second=1091 amount=-1 +kerning first=221 second=281 amount=-1 +kerning first=257 second=281 amount=-1 +kerning first=365 second=333 amount=-1 +kerning first=206 second=347 amount=-1 +kerning first=199 second=350 amount=-1 +kerning first=275 second=235 amount=-1 +kerning first=218 second=290 amount=-1 +kerning first=101 second=347 amount=-1 +kerning first=370 second=277 amount=-1 +kerning first=86 second=198 amount=-1 +kerning first=1051 second=1056 amount=-1 +kerning first=366 second=73 amount=-1 +kerning first=330 second=73 amount=-1 +kerning first=88 second=268 amount=-1 +kerning first=351 second=8220 amount=-2 +kerning first=333 second=8218 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=375 second=369 amount=-1 +kerning first=204 second=282 amount=-1 +kerning first=352 second=8249 amount=-1 +kerning first=327 second=82 amount=-1 +kerning first=8250 second=328 amount=-1 +kerning first=275 second=108 amount=-1 +kerning first=218 second=363 amount=-1 +kerning first=85 second=277 amount=-1 +kerning first=249 second=235 amount=-1 +kerning first=45 second=73 amount=-1 +kerning first=1027 second=1072 amount=-1 +kerning first=298 second=277 amount=-1 +kerning first=99 second=246 amount=-1 +kerning first=362 second=363 amount=-1 +kerning first=262 second=277 amount=-1 +kerning first=77 second=290 amount=-1 +kerning first=226 second=277 amount=-1 +kerning first=81 second=73 amount=-1 +kerning first=353 second=103 amount=-1 +kerning first=1068 second=1041 amount=-1 +kerning first=67 second=8249 amount=-1 +kerning first=78 second=73 amount=-1 +kerning first=103 second=8249 amount=-1 +kerning first=199 second=79 amount=-1 +kerning first=78 second=82 amount=-1 +kerning first=219 second=82 amount=-1 +kerning first=289 second=231 amount=-1 +kerning first=325 second=231 amount=-1 +kerning first=275 second=283 amount=-1 +kerning first=209 second=338 amount=-1 +kerning first=67 second=242 amount=-1 +kerning first=316 second=8249 amount=-1 +kerning first=1048 second=1065 amount=-1 +kerning first=217 second=196 amount=-1 +kerning first=199 second=66 amount=-1 +kerning first=73 second=235 amount=-1 +kerning first=69 second=345 amount=-1 +kerning first=109 second=235 amount=-1 +kerning first=105 second=345 amount=-1 +kerning first=87 second=248 amount=-1 +kerning first=330 second=270 amount=-1 +kerning first=246 second=345 amount=-1 +kerning first=325 second=283 amount=-1 +kerning first=282 second=345 amount=-1 +kerning first=217 second=283 amount=-1 +kerning first=1030 second=1076 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=8216 second=370 amount=-1 +kerning first=1033 second=1067 amount=-1 +kerning first=221 second=367 amount=-1 +kerning first=1069 second=1067 amount=-1 +kerning first=235 second=380 amount=-1 +kerning first=286 second=205 amount=-1 +kerning first=78 second=337 amount=-1 +kerning first=220 second=274 amount=-1 +kerning first=272 second=192 amount=-1 +kerning first=79 second=274 amount=-1 +kerning first=67 second=323 amount=-1 +kerning first=72 second=336 amount=-1 +kerning first=1047 second=1080 amount=-1 +kerning first=204 second=310 amount=-1 +kerning first=84 second=257 amount=-1 +kerning first=195 second=249 amount=-1 +kerning first=288 second=70 amount=-1 +kerning first=332 second=44 amount=-1 +kerning first=73 second=205 amount=-1 +kerning first=368 second=44 amount=-2 +kerning first=260 second=44 amount=-1 +kerning first=101 second=231 amount=-1 +kerning first=214 second=205 amount=-1 +kerning first=70 second=244 amount=-1 +kerning first=106 second=244 amount=-1 +kerning first=1048 second=1052 amount=-1 +kerning first=352 second=323 amount=-1 +kerning first=365 second=235 amount=-1 +kerning first=364 second=274 amount=-1 +kerning first=280 second=323 amount=-1 +kerning first=70 second=314 amount=-1 +kerning first=1055 second=1054 amount=-1 +kerning first=283 second=244 amount=-1 +kerning first=264 second=218 amount=-1 +kerning first=197 second=355 amount=-1 +kerning first=355 second=244 amount=-1 +kerning first=192 second=218 amount=-1 +kerning first=228 second=248 amount=-1 +kerning first=206 second=231 amount=-1 +kerning first=288 second=327 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=187 second=290 amount=-1 +kerning first=264 second=248 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=364 second=217 amount=-1 +kerning first=1039 second=1049 amount=-1 +kerning first=219 second=275 amount=-1 +kerning first=1046 second=1081 amount=-1 +kerning first=356 second=243 amount=-1 +kerning first=327 second=275 amount=-1 +kerning first=207 second=110 amount=-1 +kerning first=352 second=223 amount=-1 +kerning first=283 second=314 amount=-1 +kerning first=291 second=275 amount=-1 +kerning first=117 second=8220 amount=-1 +kerning first=1036 second=1088 amount=-1 +kerning first=70 second=214 amount=-1 +kerning first=196 second=45 amount=-1 +kerning first=1038 second=1107 amount=-1 +kerning first=78 second=275 amount=-1 +kerning first=200 second=249 amount=-1 +kerning first=8222 second=259 amount=-1 +kerning first=1069 second=1031 amount=-1 +kerning first=330 second=298 amount=-1 +kerning first=1118 second=1081 amount=-1 +kerning first=103 second=223 amount=-1 +kerning first=1105 second=1097 amount=-1 +kerning first=71 second=80 amount=-1 +kerning first=207 second=97 amount=-1 +kerning first=67 second=223 amount=-1 +kerning first=268 second=45 amount=-1 +kerning first=194 second=370 amount=-1 +kerning first=284 second=80 amount=-1 +kerning first=103 second=353 amount=-1 +kerning first=280 second=223 amount=-1 +kerning first=101 second=122 amount=-1 +kerning first=67 second=353 amount=-1 +kerning first=212 second=80 amount=-1 +kerning first=1028 second=1091 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=69 second=200 amount=-1 +kerning first=277 second=232 amount=-1 +kerning first=366 second=266 amount=-1 +kerning first=270 second=200 amount=-1 +kerning first=330 second=266 amount=-1 +kerning first=205 second=232 amount=-1 +kerning first=1049 second=1072 amount=-1 +kerning first=205 second=362 amount=-1 +kerning first=198 second=200 amount=-1 +kerning first=325 second=226 amount=-1 +kerning first=217 second=296 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=220 second=8222 amount=-2 +kerning first=277 second=8250 amount=-1 +kerning first=219 second=122 amount=-1 +kerning first=258 second=266 amount=-1 +kerning first=313 second=362 amount=-1 +kerning first=310 second=371 amount=-1 +kerning first=74 second=234 amount=-1 +kerning first=45 second=266 amount=-1 +kerning first=79 second=217 amount=-1 +kerning first=274 second=371 amount=-1 +kerning first=89 second=251 amount=-1 +kerning first=100 second=8250 amount=-1 +kerning first=207 second=209 amount=-1 +kerning first=315 second=354 amount=-1 +kerning first=110 second=234 amount=-1 +kerning first=8217 second=219 amount=-1 +kerning first=220 second=217 amount=-1 +kerning first=100 second=232 amount=-1 +kerning first=251 second=234 amount=-1 +kerning first=1044 second=1089 amount=-1 +kerning first=203 second=264 amount=-1 +kerning first=363 second=275 amount=-1 +kerning first=210 second=88 amount=-1 +kerning first=70 second=274 amount=-1 +kerning first=323 second=71 amount=-1 +kerning first=323 second=234 amount=-1 +kerning first=287 second=234 amount=-1 +kerning first=1069 second=1065 amount=-1 +kerning first=1047 second=1037 amount=-1 +kerning first=262 second=380 amount=-1 +kerning first=207 second=203 amount=-1 +kerning first=115 second=287 amount=-1 +kerning first=282 second=8220 amount=-1 +kerning first=203 second=313 amount=-1 +kerning first=69 second=8221 amount=-1 +kerning first=368 second=315 amount=-1 +kerning first=220 second=111 amount=-1 +kerning first=1042 second=1070 amount=-1 +kerning first=84 second=8218 amount=-1 +kerning first=354 second=8220 amount=-1 +kerning first=328 second=287 amount=-1 +kerning first=1033 second=1024 amount=-1 +kerning first=211 second=374 amount=-1 +kerning first=328 second=111 amount=-1 +kerning first=66 second=203 amount=-1 +kerning first=364 second=111 amount=-1 +kerning first=8218 second=248 amount=-1 +kerning first=83 second=315 amount=-1 +kerning first=289 second=120 amount=-1 +kerning first=1064 second=1054 amount=-1 +kerning first=374 second=267 amount=-1 +kerning first=1050 second=1028 amount=-1 +kerning first=8216 second=364 amount=-1 +kerning first=323 second=114 amount=-1 +kerning first=296 second=315 amount=-1 +kerning first=196 second=118 amount=-1 +kerning first=230 second=267 amount=-1 +kerning first=204 second=212 amount=-1 +kerning first=105 second=8220 amount=-1 +kerning first=266 second=267 amount=-1 +kerning first=187 second=220 amount=-1 +kerning first=69 second=8220 amount=-1 +kerning first=302 second=267 amount=-1 +kerning first=338 second=370 amount=-1 +kerning first=110 second=114 amount=-1 +kerning first=76 second=356 amount=-1 +kerning first=85 second=199 amount=-1 +kerning first=206 second=68 amount=-1 +kerning first=266 second=370 amount=-1 +kerning first=8217 second=113 amount=-1 +kerning first=251 second=114 amount=-1 +kerning first=78 second=74 amount=-1 +kerning first=302 second=370 amount=-1 +kerning first=72 second=263 amount=-1 +kerning first=330 second=242 amount=-1 +kerning first=108 second=263 amount=-1 +kerning first=270 second=75 amount=-1 +kerning first=262 second=199 amount=-1 +kerning first=210 second=194 amount=-1 +kerning first=74 second=114 amount=-1 +kerning first=1069 second=1059 amount=-1 +kerning first=298 second=199 amount=-1 +kerning first=220 second=81 amount=-1 +kerning first=249 second=263 amount=-1 +kerning first=352 second=310 amount=-1 +kerning first=327 second=74 amount=-1 +kerning first=370 second=199 amount=-1 +kerning first=197 second=361 amount=-1 +kerning first=99 second=106 amount=-1 +kerning first=280 second=310 amount=-1 +kerning first=364 second=81 amount=-1 +kerning first=218 second=382 amount=-1 +kerning first=278 second=68 amount=-1 +kerning first=298 second=269 amount=-1 +kerning first=45 second=65 amount=-1 +kerning first=350 second=68 amount=-1 +kerning first=226 second=269 amount=-1 +kerning first=1107 second=1116 amount=-1 +kerning first=67 second=310 amount=-1 +kerning first=209 second=315 amount=-1 +kerning first=206 second=334 amount=-1 +kerning first=197 second=288 amount=-1 +kerning first=366 second=65 amount=-1 +kerning first=1050 second=1101 amount=-1 +kerning first=1051 second=1043 amount=-1 +kerning first=1041 second=1055 amount=-1 +kerning first=68 second=325 amount=-1 +kerning first=193 second=84 amount=-1 +kerning first=255 second=318 amount=-1 +kerning first=8220 second=370 amount=-1 +kerning first=84 second=227 amount=-1 +kerning first=304 second=346 amount=-1 +kerning first=268 second=346 amount=-1 +kerning first=1069 second=1051 amount=-1 +kerning first=209 second=325 amount=-1 +kerning first=283 second=108 amount=-1 +kerning first=219 second=245 amount=-1 +kerning first=235 second=337 amount=-1 +kerning first=364 second=187 amount=-2 +kerning first=98 second=318 amount=-1 +kerning first=228 second=291 amount=-1 +kerning first=256 second=187 amount=-1 +kerning first=333 second=122 amount=-1 +kerning first=78 second=245 amount=-1 +kerning first=1027 second=1085 amount=-1 +kerning first=8250 second=315 amount=-1 +kerning first=281 second=351 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=345 second=8217 amount=-1 +kerning first=232 second=251 amount=-1 +kerning first=381 second=8217 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=304 second=75 amount=-1 +kerning first=217 second=274 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=268 second=75 amount=-1 +kerning first=363 second=245 amount=-1 +kerning first=250 second=99 amount=-1 +kerning first=327 second=245 amount=-1 +kerning first=220 second=187 amount=-2 +kerning first=1044 second=1119 amount=-1 +kerning first=291 second=245 amount=-1 +kerning first=79 second=187 amount=-1 +kerning first=307 second=337 amount=-1 +kerning first=65 second=334 amount=-1 +kerning first=1064 second=1027 amount=-1 +kerning first=115 second=187 amount=-1 +kerning first=271 second=337 amount=-1 +kerning first=197 second=375 amount=-1 +kerning first=275 second=99 amount=-1 +kerning first=271 second=242 amount=-1 +kerning first=277 second=122 amount=-1 +kerning first=70 second=330 amount=-1 +kerning first=375 second=347 amount=-1 +kerning first=1054 second=1069 amount=-1 +kerning first=307 second=242 amount=-1 +kerning first=325 second=334 amount=-1 +kerning first=77 second=268 amount=-1 +kerning first=199 second=242 amount=-1 +kerning first=268 second=281 amount=-1 +kerning first=235 second=242 amount=-1 +kerning first=304 second=281 amount=-1 +kerning first=85 second=362 amount=-1 +kerning first=231 second=347 amount=-1 +kerning first=218 second=268 amount=-1 +kerning first=79 second=325 amount=-1 +kerning first=85 second=364 amount=-1 +kerning first=97 second=233 amount=-1 +kerning first=323 second=277 amount=-1 +kerning first=287 second=277 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=327 second=202 amount=-1 +kerning first=8222 second=118 amount=-1 +kerning first=364 second=325 amount=-1 +kerning first=78 second=202 amount=-1 +kerning first=219 second=202 amount=-1 +kerning first=201 second=264 amount=-1 +kerning first=1071 second=1073 amount=-1 +kerning first=262 second=8217 amount=-1 +kerning first=339 second=337 amount=-1 +kerning first=105 second=267 amount=-1 +kerning first=302 second=69 amount=-1 +kerning first=370 second=364 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=266 second=69 amount=-1 +kerning first=1070 second=1083 amount=-1 +kerning first=334 second=8217 amount=-2 +kerning first=334 second=364 amount=-1 +kerning first=280 second=82 amount=-1 +kerning first=298 second=364 amount=-1 +kerning first=88 second=290 amount=-1 +kerning first=356 second=351 amount=-1 +kerning first=338 second=69 amount=-1 +kerning first=85 second=8217 amount=-1 +kerning first=262 second=364 amount=-1 +kerning first=121 second=8217 amount=-2 +kerning first=352 second=82 amount=-1 +kerning first=193 second=290 amount=-1 +kerning first=374 second=338 amount=-1 +kerning first=110 second=277 amount=-1 +kerning first=1065 second=1091 amount=-1 +kerning first=226 second=8217 amount=-2 +kerning first=355 second=103 amount=-1 +kerning first=198 second=338 amount=-1 +kerning first=234 second=273 amount=-1 +kerning first=1056 second=1061 amount=-1 +kerning first=193 second=355 amount=-1 +kerning first=70 second=266 amount=-1 +kerning first=1051 second=1113 amount=-1 +kerning first=251 second=277 amount=-1 +kerning first=289 second=380 amount=-1 +kerning first=88 second=355 amount=-1 +kerning first=366 second=193 amount=-1 +kerning first=217 second=334 amount=-1 +kerning first=1042 second=1059 amount=-2 +kerning first=212 second=351 amount=-1 +kerning first=77 second=333 amount=-1 +kerning first=290 second=203 amount=-1 +kerning first=355 second=171 amount=-1 +kerning first=45 second=122 amount=-1 +kerning first=291 second=112 amount=-1 +kerning first=1093 second=1095 amount=-1 +kerning first=362 second=203 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=80 second=73 amount=-1 +kerning first=218 second=333 amount=-1 +kerning first=218 second=203 amount=-1 +kerning first=258 second=374 amount=-1 +kerning first=97 second=263 amount=-1 +kerning first=72 second=220 amount=-1 +kerning first=269 second=117 amount=-1 +kerning first=8222 second=216 amount=-1 +kerning first=70 second=171 amount=-2 +kerning first=233 second=117 amount=-1 +kerning first=81 second=374 amount=-1 +kerning first=106 second=171 amount=-1 +kerning first=8222 second=251 amount=-1 +kerning first=70 second=206 amount=-1 +kerning first=65 second=367 amount=-1 +kerning first=344 second=264 amount=-1 +kerning first=275 second=44 amount=-1 +kerning first=323 second=212 amount=-1 +kerning first=354 second=229 amount=-1 +kerning first=321 second=220 amount=-1 +kerning first=8250 second=87 amount=-2 +kerning first=278 second=304 amount=-1 +kerning first=77 second=368 amount=-1 +kerning first=220 second=382 amount=-1 +kerning first=118 second=316 amount=-1 +kerning first=350 second=304 amount=-1 +kerning first=192 second=356 amount=-1 +kerning first=279 second=246 amount=-1 +kerning first=211 second=206 amount=-1 +kerning first=1056 second=1118 amount=-1 +kerning first=366 second=103 amount=-1 +kerning first=223 second=316 amount=-1 +kerning first=112 second=120 amount=-1 +kerning first=207 second=246 amount=-1 +kerning first=364 second=382 amount=-1 +kerning first=217 second=120 amount=-1 +kerning first=77 second=8221 amount=-1 +kerning first=213 second=220 amount=-1 +kerning first=259 second=316 amount=-1 +kerning first=253 second=120 amount=-1 +kerning first=221 second=197 amount=-1 +kerning first=80 second=194 amount=-1 +kerning first=362 second=368 amount=-1 +kerning first=75 second=211 amount=-1 +kerning first=199 second=109 amount=-1 +kerning first=218 second=8221 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=1060 second=1051 amount=-1 +kerning first=378 second=8220 amount=-1 +kerning first=326 second=333 amount=-1 +kerning first=254 second=8221 amount=-2 +kerning first=221 second=194 amount=-1 +kerning first=120 second=8218 amount=-1 +kerning first=362 second=333 amount=-1 +kerning first=290 second=8221 amount=-1 +kerning first=218 second=368 amount=-1 +kerning first=326 second=8221 amount=-2 +kerning first=270 second=330 amount=-1 +kerning first=362 second=8221 amount=-1 +kerning first=1064 second=1092 amount=-1 +kerning first=290 second=368 amount=-1 +kerning first=1050 second=1088 amount=-1 +kerning first=214 second=197 amount=-1 +kerning first=192 second=85 amount=-1 +kerning first=269 second=223 amount=-1 +kerning first=327 second=210 amount=-1 +kerning first=101 second=98 amount=-1 +kerning first=65 second=98 amount=-1 +kerning first=367 second=243 amount=-1 +kerning first=197 second=223 amount=-1 +kerning first=85 second=234 amount=-1 +kerning first=219 second=210 amount=-1 +kerning first=1050 second=1108 amount=-1 +kerning first=78 second=210 amount=-1 +kerning first=199 second=280 amount=-1 +kerning first=289 second=326 amount=-1 +kerning first=282 second=302 amount=-1 +kerning first=72 second=122 amount=-1 +kerning first=339 second=339 amount=-1 +kerning first=275 second=107 amount=-1 +kerning first=108 second=122 amount=-1 +kerning first=210 second=302 amount=-1 +kerning first=264 second=213 amount=-1 +kerning first=69 second=302 amount=-1 +kerning first=259 second=243 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=267 second=339 amount=-1 +kerning first=193 second=363 amount=-1 +kerning first=288 second=219 amount=-1 +kerning first=231 second=339 amount=-1 +kerning first=75 second=284 amount=-1 +kerning first=1033 second=1059 amount=-2 +kerning first=269 second=8249 amount=-1 +kerning first=368 second=350 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=8218 second=218 amount=-1 +kerning first=75 second=219 amount=-1 +kerning first=305 second=8249 amount=-1 +kerning first=251 second=235 amount=-1 +kerning first=205 second=78 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=262 second=68 amount=-1 +kerning first=73 second=335 amount=-1 +kerning first=302 second=232 amount=-1 +kerning first=266 second=232 amount=-1 +kerning first=230 second=232 amount=-1 +kerning first=109 second=335 amount=-1 +kerning first=296 second=350 amount=-1 +kerning first=317 second=89 amount=-1 +kerning first=262 second=234 amount=-1 +kerning first=8250 second=79 amount=-1 +kerning first=252 second=281 amount=-1 +kerning first=69 second=262 amount=-1 +kerning first=263 second=241 amount=-1 +kerning first=226 second=234 amount=-1 +kerning first=291 second=116 amount=-1 +kerning first=70 second=344 amount=-1 +kerning first=1071 second=1081 amount=-1 +kerning first=196 second=354 amount=-1 +kerning first=211 second=344 amount=-1 +kerning first=278 second=8222 amount=-1 +kerning first=298 second=234 amount=-1 +kerning first=232 second=289 amount=-1 +kerning first=117 second=171 amount=-1 +kerning first=1030 second=1068 amount=-1 +kerning first=370 second=234 amount=-1 +kerning first=1067 second=1075 amount=-1 +kerning first=68 second=89 amount=-1 +kerning first=264 second=85 amount=-1 +kerning first=1031 second=1075 amount=-1 +kerning first=197 second=8249 amount=-1 +kerning first=1066 second=1068 amount=-1 +kerning first=296 second=79 amount=-1 +kerning first=258 second=366 amount=-1 +kerning first=196 second=216 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=1062 second=1108 amount=-1 +kerning first=304 second=216 amount=-1 +kerning first=323 second=204 amount=-1 +kerning first=368 second=79 amount=-1 +kerning first=268 second=216 amount=-1 +kerning first=368 second=250 amount=-1 +kerning first=81 second=366 amount=-1 +kerning first=89 second=332 amount=-1 +kerning first=86 second=241 amount=-1 +kerning first=98 second=378 amount=-1 +kerning first=1056 second=1053 amount=-1 +kerning first=350 second=8222 amount=-1 +kerning first=45 second=366 amount=-1 +kerning first=1046 second=1038 amount=-1 +kerning first=218 second=195 amount=-1 +kerning first=266 second=332 amount=-1 +kerning first=1064 second=1084 amount=-1 +kerning first=233 second=380 amount=-1 +kerning first=198 second=67 amount=-1 +kerning first=83 second=250 amount=-1 +kerning first=291 second=104 amount=-1 +kerning first=194 second=332 amount=-1 +kerning first=369 second=99 amount=-1 +kerning first=362 second=195 amount=-1 +kerning first=255 second=104 amount=-1 +kerning first=374 second=332 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=330 second=366 amount=-1 +kerning first=338 second=332 amount=-1 +kerning first=366 second=366 amount=-1 +kerning first=302 second=332 amount=-1 +kerning first=1078 second=1105 amount=-1 +kerning first=220 second=317 amount=-1 +kerning first=366 second=201 amount=-1 +kerning first=101 second=369 amount=-1 +kerning first=291 second=110 amount=-1 +kerning first=221 second=259 amount=-1 +kerning first=279 second=311 amount=-1 +kerning first=344 second=116 amount=-1 +kerning first=65 second=369 amount=-1 +kerning first=330 second=201 amount=-1 +kerning first=187 second=381 amount=-1 +kerning first=314 second=369 amount=-1 +kerning first=364 second=317 amount=-1 +kerning first=278 second=369 amount=-1 +kerning first=99 second=316 amount=-1 +kerning first=282 second=355 amount=-1 +kerning first=1049 second=1062 amount=-1 +kerning first=74 second=204 amount=-1 +kerning first=8218 second=356 amount=-1 +kerning first=88 second=119 amount=-1 +kerning first=252 second=113 amount=-1 +kerning first=275 second=378 amount=-1 +kerning first=45 second=201 amount=-1 +kerning first=242 second=8222 amount=-1 +kerning first=81 second=201 amount=-1 +kerning first=1039 second=1041 amount=-1 +kerning first=362 second=268 amount=-1 +kerning first=116 second=259 amount=-1 +kerning first=101 second=8222 amount=-1 +kerning first=1041 second=1027 amount=-1 +kerning first=80 second=259 amount=-1 +kerning first=79 second=317 amount=-1 +kerning first=1059 second=1044 amount=-1 +kerning first=78 second=331 amount=-1 +kerning first=200 second=116 amount=-1 +kerning first=205 second=262 amount=-1 +kerning first=1062 second=1095 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=99 second=311 amount=-1 +kerning first=233 second=116 amount=-1 +kerning first=205 second=271 amount=-1 +kerning first=73 second=313 amount=-1 +kerning first=197 second=116 amount=-1 +kerning first=89 second=198 amount=-1 +kerning first=334 second=8221 amount=-2 +kerning first=83 second=363 amount=-1 +kerning first=364 second=357 amount=-1 +kerning first=362 second=67 amount=-1 +kerning first=119 second=363 amount=-1 +kerning first=187 second=110 amount=-1 +kerning first=66 second=195 amount=-1 +kerning first=375 second=378 amount=-1 +kerning first=370 second=268 amount=-1 +kerning first=77 second=207 amount=-1 +kerning first=339 second=378 amount=-1 +kerning first=187 second=317 amount=-1 +kerning first=354 second=113 amount=-1 +kerning first=218 second=67 amount=-1 +kerning first=346 second=366 amount=-1 +kerning first=205 second=210 amount=-1 +kerning first=298 second=268 amount=-1 +kerning first=266 second=296 amount=-1 +kerning first=310 second=366 amount=-1 +kerning first=1030 second=1081 amount=-1 +kerning first=8222 second=97 amount=-1 +kerning first=202 second=366 amount=-1 +kerning first=77 second=67 amount=-1 +kerning first=8250 second=249 amount=-1 +kerning first=370 second=115 amount=-1 +kerning first=85 second=268 amount=-1 +kerning first=374 second=8250 amount=-1 +kerning first=1086 second=1093 amount=-1 +kerning first=288 second=302 amount=-1 +kerning first=338 second=8250 amount=-1 +kerning first=75 second=8220 amount=-1 +kerning first=199 second=101 amount=-1 +kerning first=281 second=107 amount=-1 +kerning first=327 second=73 amount=-1 +kerning first=266 second=8250 amount=-1 +kerning first=271 second=101 amount=-1 +kerning first=230 second=8250 amount=-1 +kerning first=111 second=8220 amount=-2 +kerning first=235 second=101 amount=-1 +kerning first=194 second=8250 amount=-1 +kerning first=252 second=8220 amount=-1 +kerning first=78 second=8218 amount=-1 +kerning first=211 second=219 amount=-1 +kerning first=216 second=8220 amount=-2 +kerning first=287 second=351 amount=-1 +kerning first=307 second=101 amount=-1 +kerning first=89 second=8250 amount=-1 +kerning first=268 second=277 amount=-1 +kerning first=221 second=266 amount=-1 +kerning first=232 second=277 amount=-1 +kerning first=70 second=219 amount=-1 +kerning first=111 second=122 amount=-1 +kerning first=1056 second=1089 amount=-1 +kerning first=220 second=334 amount=-1 +kerning first=374 second=198 amount=-1 +kerning first=89 second=345 amount=-1 +kerning first=350 second=296 amount=-1 +kerning first=219 second=73 amount=-1 +kerning first=1038 second=1102 amount=-1 +kerning first=194 second=345 amount=-1 +kerning first=304 second=277 amount=-1 +kerning first=225 second=235 amount=-1 +kerning first=261 second=235 amount=-1 +kerning first=233 second=283 amount=-1 +kerning first=269 second=283 amount=-1 +kerning first=369 second=235 amount=-1 +kerning first=1041 second=1047 amount=-1 +kerning first=339 second=231 amount=-1 +kerning first=204 second=338 amount=-1 +kerning first=364 second=286 amount=-1 +kerning first=8217 second=328 amount=-1 +kerning first=8250 second=256 amount=-1 +kerning first=310 second=79 amount=-1 +kerning first=324 second=8220 amount=-2 +kerning first=231 second=351 amount=-1 +kerning first=288 second=8220 amount=-1 +kerning first=367 second=263 amount=-1 +kerning first=68 second=197 amount=-1 +kerning first=1064 second=1076 amount=-1 +kerning first=192 second=86 amount=-1 +kerning first=68 second=274 amount=-1 +kerning first=375 second=351 amount=-1 +kerning first=205 second=83 amount=-1 +kerning first=202 second=79 amount=-1 +kerning first=339 second=351 amount=-1 +kerning first=1062 second=1074 amount=-1 +kerning first=274 second=79 amount=-1 +kerning first=257 second=8250 amount=-1 +kerning first=267 second=351 amount=-1 +kerning first=1043 second=1051 amount=-1 +kerning first=264 second=347 amount=-1 +kerning first=258 second=104 amount=-1 +kerning first=212 second=8220 amount=-2 +kerning first=374 second=171 amount=-2 +kerning first=71 second=278 amount=-1 +kerning first=268 second=70 amount=-1 +kerning first=8250 second=323 amount=-1 +kerning first=70 second=192 amount=-1 +kerning first=231 second=244 amount=-1 +kerning first=8216 second=115 amount=-1 +kerning first=267 second=244 amount=-1 +kerning first=284 second=278 amount=-1 +kerning first=209 second=274 amount=-1 +kerning first=339 second=244 amount=-1 +kerning first=45 second=121 amount=-1 +kerning first=1034 second=1065 amount=-1 +kerning first=8250 second=216 amount=-1 +kerning first=108 second=382 amount=-1 +kerning first=1070 second=1065 amount=-1 +kerning first=1057 second=1094 amount=-1 +kerning first=231 second=231 amount=-1 +kerning first=325 second=201 amount=-1 +kerning first=267 second=231 amount=-1 +kerning first=194 second=171 amount=-1 +kerning first=219 second=100 amount=-1 +kerning first=304 second=70 amount=-1 +kerning first=327 second=100 amount=-1 +kerning first=84 second=235 amount=-1 +kerning first=266 second=171 amount=-1 +kerning first=206 second=269 amount=-1 +kerning first=45 second=86 amount=-2 +kerning first=338 second=171 amount=-1 +kerning first=217 second=201 amount=-1 +kerning first=101 second=269 amount=-1 +kerning first=192 second=266 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=1053 second=1071 amount=-1 +kerning first=264 second=266 amount=-1 +kerning first=280 second=214 amount=-1 +kerning first=8250 second=363 amount=-1 +kerning first=1064 second=1048 amount=-1 +kerning first=8222 second=250 amount=-1 +kerning first=194 second=318 amount=-1 +kerning first=71 second=45 amount=-1 +kerning first=1107 second=1090 amount=-1 +kerning first=70 second=353 amount=-1 +kerning first=87 second=266 amount=-1 +kerning first=266 second=318 amount=-1 +kerning first=220 second=313 amount=-1 +kerning first=316 second=171 amount=-1 +kerning first=264 second=200 amount=-1 +kerning first=324 second=275 amount=-1 +kerning first=210 second=200 amount=-1 +kerning first=218 second=260 amount=-1 +kerning first=214 second=370 amount=-1 +kerning first=214 second=8222 amount=-1 +kerning first=107 second=45 amount=-1 +kerning first=73 second=370 amount=-1 +kerning first=114 second=240 amount=-1 +kerning first=261 second=243 amount=-1 +kerning first=1044 second=1097 amount=-1 +kerning first=356 second=45 amount=-1 +kerning first=199 second=362 amount=-1 +kerning first=73 second=8222 amount=-1 +kerning first=362 second=260 amount=-1 +kerning first=1051 second=1050 amount=-1 +kerning first=263 second=100 amount=-1 +kerning first=1038 second=1092 amount=-1 +kerning first=284 second=45 amount=-1 +kerning first=375 second=187 amount=-1 +kerning first=252 second=275 amount=-1 +kerning first=67 second=214 amount=-1 +kerning first=286 second=370 amount=-1 +kerning first=80 second=71 amount=-1 +kerning first=330 second=257 amount=-1 +kerning first=194 second=357 amount=-1 +kerning first=73 second=223 amount=-1 +kerning first=366 second=257 amount=-1 +kerning first=270 second=209 amount=-1 +kerning first=363 second=267 amount=-1 +kerning first=198 second=209 amount=-1 +kerning first=268 second=97 amount=-1 +kerning first=229 second=267 amount=-1 +kerning first=286 second=223 amount=-1 +kerning first=304 second=97 amount=-1 +kerning first=218 second=234 amount=-1 +kerning first=195 second=217 amount=-1 +kerning first=337 second=380 amount=-1 +kerning first=101 second=243 amount=-1 +kerning first=1048 second=1027 amount=-1 +kerning first=206 second=243 amount=-1 +kerning first=213 second=258 amount=-1 +kerning first=314 second=243 amount=-1 +kerning first=8218 second=224 amount=-1 +kerning first=71 second=72 amount=-1 +kerning first=232 second=8221 amount=-2 +kerning first=1030 second=1119 amount=-1 +kerning first=8222 second=277 amount=-1 +kerning first=268 second=8221 amount=-1 +kerning first=266 second=345 amount=-1 +kerning first=217 second=335 amount=-1 +kerning first=302 second=345 amount=-1 +kerning first=338 second=345 amount=-1 +kerning first=296 second=242 amount=-1 +kerning first=374 second=345 amount=-1 +kerning first=284 second=72 amount=-1 +kerning first=1030 second=1054 amount=-1 +kerning first=250 second=245 amount=-1 +kerning first=224 second=242 amount=-1 +kerning first=220 second=352 amount=-1 +kerning first=354 second=99 amount=-1 +kerning first=325 second=335 amount=-1 +kerning first=356 second=225 amount=-1 +kerning first=97 second=232 amount=-1 +kerning first=370 second=211 amount=-1 +kerning first=326 second=234 amount=-1 +kerning first=368 second=242 amount=-1 +kerning first=364 second=352 amount=-1 +kerning first=327 second=267 amount=-1 +kerning first=362 second=234 amount=-1 +kerning first=193 second=105 amount=-1 +kerning first=103 second=241 amount=-1 +kerning first=296 second=336 amount=-1 +kerning first=249 second=8221 amount=-1 +kerning first=1039 second=1028 amount=-1 +kerning first=77 second=233 amount=-1 +kerning first=275 second=98 amount=-1 +kerning first=296 second=216 amount=-1 +kerning first=209 second=80 amount=-1 +kerning first=368 second=336 amount=-1 +kerning first=201 second=199 amount=-1 +kerning first=1042 second=1045 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=1102 second=1093 amount=-1 +kerning first=271 second=114 amount=-1 +kerning first=326 second=233 amount=-1 +kerning first=368 second=216 amount=-1 +kerning first=1043 second=1077 amount=-1 +kerning first=218 second=233 amount=-1 +kerning first=1050 second=1079 amount=-1 +kerning first=267 second=378 amount=-1 +kerning first=8218 second=227 amount=-1 +kerning first=1077 second=1080 amount=-1 +kerning first=330 second=284 amount=-1 +kerning first=67 second=241 amount=-1 +kerning first=231 second=378 amount=-1 +kerning first=1041 second=1080 amount=-1 +kerning first=1067 second=1113 amount=-1 +kerning first=235 second=114 amount=-1 +kerning first=362 second=233 amount=-1 +kerning first=205 second=344 amount=-1 +kerning first=286 second=8222 amount=-1 +kerning first=199 second=114 amount=-1 +kerning first=366 second=284 amount=-1 +kerning first=1033 second=1046 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=200 second=327 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=352 second=361 amount=-1 +kerning first=272 second=327 amount=-1 +kerning first=258 second=284 amount=-1 +kerning first=211 second=353 amount=-1 +kerning first=280 second=361 amount=-1 +kerning first=266 second=224 amount=-1 +kerning first=283 second=353 amount=-1 +kerning first=86 second=332 amount=-1 +kerning first=232 second=250 amount=-1 +kerning first=201 second=8222 amount=-1 +kerning first=298 second=115 amount=-1 +kerning first=344 second=81 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=334 second=115 amount=-1 +kerning first=196 second=8221 amount=-2 +kerning first=45 second=284 amount=-1 +kerning first=351 second=8221 amount=-2 +kerning first=70 second=218 amount=-1 +kerning first=77 second=273 amount=-1 +kerning first=196 second=44 amount=-1 +kerning first=374 second=224 amount=-1 +kerning first=232 second=44 amount=-1 +kerning first=281 second=355 amount=-1 +kerning first=203 second=8249 amount=-1 +kerning first=70 second=78 amount=-1 +kerning first=209 second=355 amount=-1 +kerning first=350 second=282 amount=-1 +kerning first=325 second=227 amount=-1 +kerning first=1049 second=1104 amount=-1 +kerning first=77 second=380 amount=-1 +kerning first=311 second=8249 amount=-1 +kerning first=67 second=267 amount=-1 +kerning first=103 second=267 amount=-1 +kerning first=1043 second=1104 amount=-1 +kerning first=206 second=282 amount=-1 +kerning first=201 second=72 amount=-1 +kerning first=80 second=346 amount=-1 +kerning first=104 second=248 amount=-1 +kerning first=253 second=291 amount=-1 +kerning first=279 second=273 amount=-1 +kerning first=211 second=218 amount=-1 +kerning first=1059 second=1079 amount=-1 +kerning first=209 second=248 amount=-1 +kerning first=1036 second=1089 amount=-1 +kerning first=1052 second=1119 amount=-1 +kerning first=116 second=224 amount=-1 +kerning first=74 second=337 amount=-1 +kerning first=290 second=114 amount=-1 +kerning first=1051 second=1031 amount=-1 +kerning first=1049 second=1086 amount=-1 +kerning first=344 second=288 amount=-1 +kerning first=83 second=8222 amount=-1 +kerning first=323 second=230 amount=-1 +kerning first=1051 second=1073 amount=-1 +kerning first=8250 second=324 amount=-1 +kerning first=89 second=279 amount=-1 +kerning first=272 second=206 amount=-1 +kerning first=70 second=337 amount=-1 +kerning first=248 second=291 amount=-1 +kerning first=74 second=230 amount=-1 +kerning first=8222 second=71 amount=-1 +kerning first=219 second=361 amount=-1 +kerning first=200 second=206 amount=-1 +kerning first=207 second=368 amount=-1 +kerning first=107 second=291 amount=-1 +kerning first=66 second=8221 amount=-2 +kerning first=217 second=227 amount=-1 +kerning first=344 second=8218 amount=-1 +kerning first=1027 second=1117 amount=-1 +kerning first=8217 second=275 amount=-1 +kerning first=323 second=337 amount=-1 +kerning first=1030 second=1080 amount=-1 +kerning first=315 second=368 amount=-1 +kerning first=287 second=337 amount=-1 +kerning first=251 second=337 amount=-1 +kerning first=243 second=8221 amount=-2 +kerning first=66 second=368 amount=-1 +kerning first=279 second=8221 amount=-2 +kerning first=187 second=84 amount=-1 +kerning first=200 second=288 amount=-1 +kerning first=315 second=8221 amount=-1 +kerning first=171 second=368 amount=-1 +kerning first=110 second=337 amount=-1 +kerning first=121 second=187 amount=-1 +kerning first=304 second=211 amount=-1 +kerning first=375 second=107 amount=-1 +kerning first=268 second=211 amount=-1 +kerning first=325 second=200 amount=-1 +kerning first=85 second=187 amount=-2 +kerning first=78 second=99 amount=-1 +kerning first=291 second=99 amount=-1 +kerning first=334 second=187 amount=-1 +kerning first=278 second=270 amount=-1 +kerning first=296 second=362 amount=-1 +kerning first=217 second=200 amount=-1 +kerning first=200 second=8218 amount=-1 +kerning first=226 second=187 amount=-1 +kerning first=8250 second=336 amount=-1 +kerning first=219 second=99 amount=-1 +kerning first=206 second=270 amount=-1 +kerning first=196 second=211 amount=-1 +kerning first=203 second=266 amount=-1 +kerning first=196 second=71 amount=-1 +kerning first=98 second=8222 amount=-1 +kerning first=266 second=279 amount=-1 +kerning first=337 second=8218 amount=-1 +kerning first=302 second=279 amount=-1 +kerning first=363 second=99 amount=-1 +kerning first=230 second=279 amount=-1 +kerning first=171 second=218 amount=-1 +kerning first=304 second=71 amount=-1 +kerning first=268 second=71 amount=-1 +kerning first=67 second=202 amount=-1 +kerning first=83 second=362 amount=-1 +kerning first=374 second=279 amount=-1 +kerning first=263 second=367 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=187 second=209 amount=-1 +kerning first=89 second=371 amount=-1 +kerning first=120 second=108 amount=-1 +kerning first=74 second=364 amount=-1 +kerning first=194 second=371 amount=-1 +kerning first=72 second=350 amount=-1 +kerning first=1030 second=1107 amount=-1 +kerning first=352 second=202 amount=-1 +kerning first=1055 second=1068 amount=-1 +kerning first=314 second=122 amount=-1 +kerning first=218 second=380 amount=-1 +kerning first=347 second=8249 amount=-1 +kerning first=220 second=205 amount=-1 +kerning first=333 second=108 amount=-1 +kerning first=362 second=273 amount=-1 +kerning first=79 second=205 amount=-1 +kerning first=338 second=270 amount=-1 +kerning first=205 second=69 amount=-1 +kerning first=225 second=108 amount=-1 +kerning first=201 second=334 amount=-1 +kerning first=196 second=303 amount=-1 +kerning first=350 second=270 amount=-1 +kerning first=254 second=380 amount=-1 +kerning first=261 second=108 amount=-1 +kerning first=362 second=380 amount=-1 +kerning first=364 second=205 amount=-1 +kerning first=218 second=273 amount=-1 +kerning first=187 second=117 amount=-1 +kerning first=323 second=364 amount=-1 +kerning first=198 second=68 amount=-1 +kerning first=220 second=8221 amount=-1 +kerning first=270 second=68 amount=-1 +kerning first=85 second=229 amount=-1 +kerning first=73 second=82 amount=-1 +kerning first=100 second=263 amount=-1 +kerning first=209 second=286 amount=-1 +kerning first=205 second=263 amount=-1 +kerning first=366 second=365 amount=-1 +kerning first=241 second=263 amount=-1 +kerning first=258 second=365 amount=-1 +kerning first=86 second=194 amount=-1 +kerning first=277 second=263 amount=-1 +kerning first=214 second=82 amount=-1 +kerning first=298 second=229 amount=-1 +kerning first=370 second=229 amount=-1 +kerning first=1054 second=1051 amount=-1 +kerning first=45 second=365 amount=-1 +kerning first=262 second=229 amount=-1 +kerning first=366 second=219 amount=-1 +kerning first=323 second=203 amount=-1 +kerning first=1030 second=1091 amount=-1 +kerning first=1051 second=1100 amount=-1 +kerning first=45 second=77 amount=-1 +kerning first=1027 second=1076 amount=-1 +kerning first=1064 second=1083 amount=-1 +kerning first=81 second=77 amount=-1 +kerning first=356 second=333 amount=-1 +kerning first=279 second=316 amount=-1 +kerning first=73 second=330 amount=-1 +kerning first=243 second=316 amount=-1 +kerning first=202 second=220 amount=-1 +kerning first=351 second=316 amount=-1 +kerning first=328 second=339 amount=-1 +kerning first=270 second=368 amount=-1 +kerning first=72 second=323 amount=-1 +kerning first=326 second=246 amount=-1 +kerning first=1043 second=1090 amount=-1 +kerning first=1056 second=1048 amount=-1 +kerning first=245 second=382 amount=-1 +kerning first=1091 second=1102 amount=-1 +kerning first=281 second=382 amount=-1 +kerning first=1030 second=1079 amount=-1 +kerning first=364 second=339 amount=-1 +kerning first=366 second=77 amount=-1 +kerning first=218 second=246 amount=-1 +kerning first=8216 second=256 amount=-2 +kerning first=314 second=103 amount=-1 +kerning first=286 second=330 amount=-1 +kerning first=1049 second=1034 amount=-1 +kerning first=1049 second=1099 amount=-1 +kerning first=1073 second=1093 amount=-1 +kerning first=213 second=323 amount=-1 +kerning first=8220 second=197 amount=-2 +kerning first=242 second=103 amount=-1 +kerning first=330 second=77 amount=-1 +kerning first=67 second=100 amount=-1 +kerning first=270 second=356 amount=-1 +kerning first=206 second=103 amount=-1 +kerning first=199 second=281 amount=-1 +kerning first=203 second=304 amount=-1 +kerning first=350 second=315 amount=-1 +kerning first=310 second=220 amount=-1 +kerning first=235 second=281 amount=-1 +kerning first=274 second=220 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=271 second=281 amount=-1 +kerning first=307 second=281 amount=-1 +kerning first=346 second=220 amount=-1 +kerning first=283 second=245 amount=-1 +kerning first=284 second=85 amount=-1 +kerning first=78 second=280 amount=-1 +kerning first=87 second=196 amount=-1 +kerning first=374 second=210 amount=-1 +kerning first=219 second=280 amount=-1 +kerning first=212 second=85 amount=-1 +kerning first=283 second=120 amount=-1 +kerning first=326 second=119 amount=-1 +kerning first=106 second=245 amount=-1 +kerning first=85 second=256 amount=-1 +kerning first=261 second=314 amount=-1 +kerning first=337 second=8217 amount=-2 +kerning first=338 second=210 amount=-1 +kerning first=70 second=245 amount=-1 +kerning first=225 second=314 amount=-1 +kerning first=298 second=216 amount=-1 +kerning first=317 second=221 amount=-1 +kerning first=1059 second=1114 amount=-1 +kerning first=266 second=210 amount=-1 +kerning first=327 second=280 amount=-1 +kerning first=120 second=314 amount=-1 +kerning first=77 second=315 amount=-1 +kerning first=112 second=8222 amount=-1 +kerning first=209 second=313 amount=-1 +kerning first=194 second=210 amount=-1 +kerning first=8250 second=255 amount=-1 +kerning first=310 second=118 amount=-1 +kerning first=333 second=314 amount=-1 +kerning first=223 second=8218 amount=-1 +kerning first=370 second=246 amount=-1 +kerning first=89 second=210 amount=-1 +kerning first=220 second=339 amount=-1 +kerning first=72 second=271 amount=-1 +kerning first=68 second=313 amount=-1 +kerning first=70 second=120 amount=-1 +kerning first=289 second=283 amount=-1 +kerning first=355 second=245 amount=-1 +kerning first=327 second=8250 amount=-1 +kerning first=266 second=352 amount=-1 +kerning first=1059 second=1107 amount=-1 +kerning first=370 second=256 amount=-1 +kerning first=1043 second=1117 amount=-1 +kerning first=255 second=8250 amount=-1 +kerning first=199 second=254 amount=-1 +kerning first=74 second=203 amount=-1 +kerning first=1066 second=1042 amount=-1 +kerning first=219 second=8250 amount=-2 +kerning first=367 second=111 amount=-1 +kerning first=235 second=254 amount=-1 +kerning first=350 second=76 amount=-1 +kerning first=272 second=219 amount=-1 +kerning first=114 second=8250 amount=-1 +kerning first=78 second=8250 amount=-1 +kerning first=278 second=76 amount=-1 +kerning first=200 second=219 amount=-1 +kerning first=205 second=327 amount=-1 +kerning first=192 second=374 amount=-1 +kerning first=243 second=289 amount=-1 +kerning first=1101 second=1084 amount=-1 +kerning first=224 second=101 amount=-1 +kerning first=206 second=76 amount=-1 +kerning first=291 second=305 amount=-1 +kerning first=1058 second=1101 amount=-1 +kerning first=316 second=367 amount=-1 +kerning first=221 second=212 amount=-1 +kerning first=296 second=101 amount=-1 +kerning first=193 second=8217 amount=-2 +kerning first=279 second=289 amount=-1 +kerning first=8217 second=367 amount=-1 +kerning first=261 second=114 amount=-1 +kerning first=229 second=8217 amount=-2 +kerning first=368 second=101 amount=-1 +kerning first=351 second=289 amount=-1 +kerning first=80 second=212 amount=-1 +kerning first=259 second=111 amount=-1 +kerning first=362 second=315 amount=-1 +kerning first=88 second=8217 amount=-1 +kerning first=1040 second=1059 amount=-2 +kerning first=302 second=280 amount=-1 +kerning first=1028 second=1044 amount=-1 +kerning first=266 second=280 amount=-1 +kerning first=264 second=335 amount=-1 +kerning first=8217 second=79 amount=-1 +kerning first=338 second=280 amount=-1 +kerning first=267 second=120 amount=-1 +kerning first=86 second=232 amount=-1 +kerning first=324 second=233 amount=-1 +kerning first=1060 second=1067 amount=-1 +kerning first=45 second=326 amount=-1 +kerning first=1071 second=1099 amount=-1 +kerning first=369 second=263 amount=-1 +kerning first=261 second=287 amount=-1 +kerning first=225 second=287 amount=-1 +kerning first=262 second=46 amount=-1 +kerning first=277 second=8220 amount=-2 +kerning first=82 second=85 amount=-1 +kerning first=104 second=339 amount=-1 +kerning first=241 second=8220 amount=-2 +kerning first=120 second=287 amount=-1 +kerning first=334 second=46 amount=-1 +kerning first=264 second=98 amount=-1 +kerning first=269 second=241 amount=-1 +kerning first=296 second=271 amount=-1 +kerning first=313 second=8220 amount=-1 +kerning first=369 second=287 amount=-1 +kerning first=87 second=335 amount=-1 +kerning first=192 second=98 amount=-1 +kerning first=205 second=302 amount=-1 +kerning first=368 second=271 amount=-1 +kerning first=228 second=335 amount=-1 +kerning first=88 second=67 amount=-1 +kerning first=242 second=378 amount=-1 +kerning first=266 second=83 amount=-1 +kerning first=206 second=378 amount=-1 +kerning first=302 second=83 amount=-1 +kerning first=1065 second=1090 amount=-1 +kerning first=101 second=378 amount=-1 +kerning first=262 second=311 amount=-1 +kerning first=288 second=344 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=198 second=80 amount=-1 +kerning first=254 second=289 amount=-1 +kerning first=201 second=278 amount=-1 +kerning first=85 second=46 amount=-2 +kerning first=314 second=378 amount=-1 +kerning first=1042 second=1114 amount=-1 +kerning first=326 second=289 amount=-1 +kerning first=325 second=76 amount=-1 +kerning first=217 second=76 amount=-1 +kerning first=366 second=353 amount=-1 +kerning first=199 second=216 amount=-1 +kerning first=330 second=353 amount=-1 +kerning first=1054 second=1061 amount=-1 +kerning first=70 second=284 amount=-1 +kerning first=1036 second=1105 amount=-1 +kerning first=1059 second=1118 amount=-1 +kerning first=203 second=357 amount=-1 +kerning first=296 second=74 amount=-1 +kerning first=275 second=357 amount=-1 +kerning first=240 second=246 amount=-1 +kerning first=257 second=113 amount=-1 +kerning first=368 second=74 amount=-1 +kerning first=86 second=259 amount=-1 +kerning first=264 second=201 amount=-1 +kerning first=231 second=269 amount=-1 +kerning first=45 second=116 amount=-1 +kerning first=1064 second=1071 amount=-1 +kerning first=221 second=113 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=80 second=113 amount=-1 +kerning first=339 second=269 amount=-1 +kerning first=263 second=259 amount=-1 +kerning first=258 second=116 amount=-1 +kerning first=220 second=204 amount=-1 +kerning first=267 second=269 amount=-1 +kerning first=218 second=117 amount=-1 +kerning first=370 second=302 amount=-1 +kerning first=270 second=317 amount=-1 +kerning first=1058 second=1085 amount=-1 +kerning first=200 second=330 amount=-1 +kerning first=364 second=204 amount=-1 +kerning first=193 second=334 amount=-1 +kerning first=272 second=65 amount=-1 +kerning first=1048 second=1069 amount=-1 +kerning first=212 second=200 amount=-1 +kerning first=259 second=187 amount=-1 +kerning first=200 second=369 amount=-1 +kerning first=362 second=350 amount=-1 +kerning first=193 second=67 amount=-1 +kerning first=101 second=244 amount=-1 +kerning first=365 second=113 amount=-1 +kerning first=323 second=268 amount=-1 +kerning first=374 second=103 amount=-1 +kerning first=278 second=278 amount=-1 +kerning first=75 second=210 amount=-1 +kerning first=86 second=122 amount=-1 +kerning first=1052 second=1094 amount=-1 +kerning first=365 second=277 amount=-1 +kerning first=298 second=225 amount=-1 +kerning first=1042 second=1087 amount=-1 +kerning first=206 second=351 amount=-1 +kerning first=1034 second=1053 amount=-1 +kerning first=85 second=213 amount=-1 +kerning first=74 second=268 amount=-1 +kerning first=280 second=73 amount=-1 +kerning first=101 second=351 amount=-1 +kerning first=200 second=262 amount=-1 +kerning first=330 second=219 amount=-1 +kerning first=86 second=199 amount=-1 +kerning first=198 second=317 amount=-1 +kerning first=374 second=110 amount=-1 +kerning first=352 second=73 amount=-1 +kerning first=298 second=213 amount=-1 +kerning first=116 second=277 amount=-1 +kerning first=258 second=219 amount=-1 +kerning first=262 second=213 amount=-1 +kerning first=80 second=277 amount=-1 +kerning first=286 second=82 amount=-1 +kerning first=201 second=251 amount=-1 +kerning first=366 second=116 amount=-1 +kerning first=344 second=262 amount=-1 +kerning first=335 second=122 amount=-1 +kerning first=330 second=116 amount=-1 +kerning first=283 second=8218 amount=-1 +kerning first=1027 second=1102 amount=-1 +kerning first=81 second=219 amount=-1 +kerning first=263 second=122 amount=-1 +kerning first=257 second=277 amount=-1 +kerning first=1052 second=1076 amount=-1 +kerning first=193 second=311 amount=-1 +kerning first=370 second=213 amount=-1 +kerning first=221 second=277 amount=-1 +kerning first=1065 second=1117 amount=-1 +kerning first=1041 second=1038 amount=-1 +kerning first=45 second=219 amount=-1 +kerning first=227 second=122 amount=-1 +kerning first=204 second=380 amount=-1 +kerning first=217 second=270 amount=-1 +kerning first=8217 second=232 amount=-1 +kerning first=364 second=231 amount=-1 +kerning first=80 second=8221 amount=-1 +kerning first=282 second=75 amount=-1 +kerning first=338 second=202 amount=-1 +kerning first=117 second=283 amount=-1 +kerning first=367 second=248 amount=-1 +kerning first=1058 second=1089 amount=-1 +kerning first=221 second=8221 amount=-1 +kerning first=210 second=75 amount=-1 +kerning first=220 second=231 amount=-1 +kerning first=197 second=218 amount=-1 +kerning first=257 second=382 amount=-1 +kerning first=257 second=8221 amount=-2 +kerning first=72 second=242 amount=-1 +kerning first=259 second=248 amount=-1 +kerning first=325 second=270 amount=-1 +kerning first=108 second=242 amount=-1 +kerning first=69 second=75 amount=-1 +kerning first=209 second=209 amount=-1 +kerning first=204 second=66 amount=-1 +kerning first=365 second=8221 amount=-1 +kerning first=199 second=336 amount=-1 +kerning first=249 second=242 amount=-1 +kerning first=68 second=209 amount=-1 +kerning first=330 second=283 amount=-1 +kerning first=356 second=226 amount=-1 +kerning first=366 second=283 amount=-1 +kerning first=8249 second=85 amount=-1 +kerning first=99 second=380 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=268 second=268 amount=-1 +kerning first=210 second=8220 amount=-2 +kerning first=206 second=244 amount=-1 +kerning first=207 second=233 amount=-1 +kerning first=70 second=327 amount=-1 +kerning first=347 second=8222 amount=-1 +kerning first=270 second=274 amount=-1 +kerning first=311 second=8222 amount=-1 +kerning first=345 second=45 amount=-1 +kerning first=366 second=192 amount=-1 +kerning first=211 second=327 amount=-1 +kerning first=1056 second=1113 amount=-1 +kerning first=203 second=8222 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=279 second=233 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=354 second=44 amount=-1 +kerning first=246 second=44 amount=-1 +kerning first=70 second=261 amount=-1 +kerning first=45 second=192 amount=-1 +kerning first=198 second=211 amount=-1 +kerning first=327 second=337 amount=-1 +kerning first=1046 second=1060 amount=-1 +kerning first=1028 second=1071 amount=-1 +kerning first=68 second=205 amount=-1 +kerning first=78 second=224 amount=-1 +kerning first=366 second=310 amount=-1 +kerning first=330 second=310 amount=-1 +kerning first=197 second=214 amount=-1 +kerning first=327 second=224 amount=-1 +kerning first=254 second=8218 amount=-1 +kerning first=219 second=224 amount=-1 +kerning first=206 second=332 amount=-1 +kerning first=81 second=353 amount=-1 +kerning first=289 second=248 amount=-1 +kerning first=272 second=84 amount=-1 +kerning first=205 second=224 amount=-1 +kerning first=67 second=277 amount=-1 +kerning first=81 second=310 amount=-1 +kerning first=217 second=243 amount=-1 +kerning first=282 second=71 amount=-1 +kerning first=116 second=243 amount=-1 +kerning first=187 second=252 amount=-1 +kerning first=205 second=275 amount=-1 +kerning first=118 second=252 amount=-1 +kerning first=277 second=275 amount=-1 +kerning first=210 second=362 amount=-1 +kerning first=270 second=80 amount=-1 +kerning first=241 second=275 amount=-1 +kerning first=69 second=71 amount=-1 +kerning first=282 second=362 amount=-1 +kerning first=369 second=242 amount=-1 +kerning first=245 second=106 amount=-1 +kerning first=1052 second=1107 amount=-1 +kerning first=281 second=106 amount=-1 +kerning first=100 second=275 amount=-1 +kerning first=193 second=354 amount=-1 +kerning first=1077 second=1081 amount=-1 +kerning first=221 second=97 amount=-1 +kerning first=1055 second=1097 amount=-1 +kerning first=65 second=217 amount=-1 +kerning first=1091 second=1097 amount=-1 +kerning first=229 second=234 amount=-1 +kerning first=8218 second=98 amount=-1 +kerning first=206 second=217 amount=-1 +kerning first=80 second=97 amount=-1 +kerning first=203 second=223 amount=-1 +kerning first=69 second=362 amount=-1 +kerning first=116 second=97 amount=-1 +kerning first=316 second=267 amount=-1 +kerning first=278 second=217 amount=-1 +kerning first=325 second=243 amount=-1 +kerning first=350 second=217 amount=-1 +kerning first=263 second=232 amount=-1 +kerning first=289 second=243 amount=-1 +kerning first=325 second=266 amount=-1 +kerning first=223 second=46 amount=-1 +kerning first=227 second=232 amount=-1 +kerning first=1046 second=1098 amount=-1 +kerning first=75 second=371 amount=-1 +kerning first=196 second=368 amount=-1 +kerning first=1071 second=1072 amount=-1 +kerning first=203 second=200 amount=-1 +kerning first=217 second=266 amount=-1 +kerning first=330 second=68 amount=-1 +kerning first=205 second=345 amount=-1 +kerning first=241 second=345 amount=-1 +kerning first=277 second=345 amount=-1 +kerning first=199 second=263 amount=-1 +kerning first=220 second=325 amount=-1 +kerning first=1118 second=1098 amount=-1 +kerning first=211 second=8218 amount=-1 +kerning first=80 second=109 amount=-1 +kerning first=194 second=86 amount=-1 +kerning first=366 second=245 amount=-1 +kerning first=270 second=221 amount=-1 +kerning first=106 second=8218 amount=-1 +kerning first=366 second=120 amount=-1 +kerning first=330 second=245 amount=-1 +kerning first=355 second=8218 amount=-1 +kerning first=219 second=197 amount=-1 +kerning first=272 second=370 amount=-1 +kerning first=268 second=368 amount=-1 +kerning first=270 second=313 amount=-1 +kerning first=1065 second=1116 amount=-1 +kerning first=304 second=368 amount=-1 +kerning first=200 second=370 amount=-1 +kerning first=1059 second=1092 amount=-1 +kerning first=221 second=109 amount=-1 +kerning first=117 second=245 amount=-1 +kerning first=1052 second=1037 amount=-1 +kerning first=335 second=378 amount=-1 +kerning first=66 second=288 amount=-1 +kerning first=70 second=108 amount=-1 +kerning first=187 second=199 amount=-1 +kerning first=275 second=249 amount=-1 +kerning first=8218 second=266 amount=-1 +kerning first=45 second=120 amount=-1 +kerning first=344 second=370 amount=-1 +kerning first=198 second=313 amount=-1 +kerning first=350 second=72 amount=-1 +kerning first=1047 second=1101 amount=-1 +kerning first=89 second=361 amount=-1 +kerning first=368 second=275 amount=-1 +kerning first=85 second=45 amount=-2 +kerning first=99 second=105 amount=-1 +kerning first=121 second=45 amount=-1 +kerning first=1038 second=1086 amount=-1 +kerning first=233 second=267 amount=-1 +kerning first=269 second=267 amount=-1 +kerning first=217 second=217 amount=-1 +kerning first=370 second=72 amount=-1 +kerning first=305 second=267 amount=-1 +kerning first=1030 second=1097 amount=-1 +kerning first=1041 second=1042 amount=-1 +kerning first=325 second=217 amount=-1 +kerning first=282 second=212 amount=-1 +kerning first=1053 second=1113 amount=-1 +kerning first=282 second=114 amount=-1 +kerning first=1030 second=1042 amount=-1 +kerning first=268 second=205 amount=-1 +kerning first=264 second=102 amount=-1 +kerning first=69 second=212 amount=-1 +kerning first=228 second=8249 amount=-1 +kerning first=105 second=114 amount=-1 +kerning first=86 second=258 amount=-1 +kerning first=264 second=8249 amount=-1 +kerning first=246 second=114 amount=-1 +kerning first=287 second=115 amount=-1 +kerning first=73 second=262 amount=-1 +kerning first=264 second=331 amount=-1 +kerning first=88 second=332 amount=-1 +kerning first=8217 second=193 amount=-2 +kerning first=1071 second=1098 amount=-1 +kerning first=74 second=115 amount=-1 +kerning first=69 second=114 amount=-1 +kerning first=87 second=331 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=366 second=78 amount=-1 +kerning first=234 second=355 amount=-1 +kerning first=1042 second=1061 amount=-1 +kerning first=198 second=355 amount=-1 +kerning first=277 second=318 amount=-1 +kerning first=80 second=44 amount=-2 +kerning first=1052 second=1064 amount=-1 +kerning first=70 second=288 amount=-1 +kerning first=45 second=218 amount=-1 +kerning first=1031 second=1074 amount=-1 +kerning first=330 second=78 amount=-1 +kerning first=221 second=44 amount=-1 +kerning first=229 second=380 amount=-1 +kerning first=81 second=78 amount=-1 +kerning first=45 second=78 amount=-1 +kerning first=234 second=248 amount=-1 +kerning first=221 second=345 amount=-1 +kerning first=85 second=72 amount=-1 +kerning first=1047 second=1036 amount=-1 +kerning first=1066 second=1055 amount=-1 +kerning first=366 second=218 amount=-1 +kerning first=334 second=72 amount=-1 +kerning first=67 second=332 amount=-1 +kerning first=1039 second=1068 amount=-1 +kerning first=258 second=218 amount=-1 +kerning first=99 second=230 amount=-1 +kerning first=114 second=224 amount=-1 +kerning first=87 second=227 amount=-1 +kerning first=264 second=8222 amount=-1 +kerning first=280 second=332 amount=-1 +kerning first=100 second=279 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=1067 second=1092 amount=-1 +kerning first=241 second=279 amount=-1 +kerning first=87 second=8222 amount=-2 +kerning first=367 second=291 amount=-1 +kerning first=277 second=279 amount=-1 +kerning first=338 second=361 amount=-1 +kerning first=1048 second=1070 amount=-1 +kerning first=227 second=267 amount=-1 +kerning first=374 second=361 amount=-1 +kerning first=1040 second=1073 amount=-1 +kerning first=205 second=279 amount=-1 +kerning first=259 second=291 amount=-1 +kerning first=323 second=187 amount=-1 +kerning first=223 second=291 amount=-1 +kerning first=240 second=337 amount=-1 +kerning first=79 second=207 amount=-1 +kerning first=204 second=337 amount=-1 +kerning first=1036 second=1079 amount=-1 +kerning first=118 second=291 amount=-1 +kerning first=287 second=187 amount=-1 +kerning first=264 second=227 amount=-1 +kerning first=99 second=337 amount=-1 +kerning first=8217 second=283 amount=-1 +kerning first=8222 second=368 amount=-1 +kerning first=274 second=323 amount=-1 +kerning first=336 second=8222 amount=-1 +kerning first=206 second=352 amount=-1 +kerning first=202 second=323 amount=-1 +kerning first=270 second=84 amount=-1 +kerning first=73 second=81 amount=-1 +kerning first=206 second=325 amount=-1 +kerning first=1046 second=1072 amount=-1 +kerning first=193 second=338 amount=-1 +kerning first=278 second=325 amount=-1 +kerning first=346 second=323 amount=-1 +kerning first=88 second=338 amount=-1 +kerning first=350 second=325 amount=-1 +kerning first=1101 second=1078 amount=-1 +kerning first=105 second=281 amount=-1 +kerning first=80 second=211 amount=-1 +kerning first=103 second=99 amount=-1 +kerning first=325 second=347 amount=-1 +kerning first=316 second=99 amount=-1 +kerning first=255 second=251 amount=-1 +kerning first=352 second=8250 amount=-1 +kerning first=234 second=382 amount=-1 +kerning first=1048 second=1043 amount=-1 +kerning first=8218 second=335 amount=-1 +kerning first=253 second=347 amount=-1 +kerning first=1075 second=1116 amount=-1 +kerning first=282 second=214 amount=-1 +kerning first=289 second=347 amount=-1 +kerning first=280 second=8250 amount=-1 +kerning first=70 second=369 amount=-1 +kerning first=244 second=8250 amount=-1 +kerning first=198 second=290 amount=-1 +kerning first=8218 second=243 amount=-1 +kerning first=217 second=347 amount=-1 +kerning first=208 second=8250 amount=-1 +kerning first=113 second=316 amount=-1 +kerning first=1053 second=1097 amount=-1 +kerning first=283 second=369 amount=-1 +kerning first=8250 second=212 amount=-1 +kerning first=204 second=268 amount=-1 +kerning first=103 second=8250 amount=-1 +kerning first=278 second=334 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=103 second=305 amount=-1 +kerning first=67 second=8250 amount=-1 +kerning first=8250 second=379 amount=-1 +kerning first=217 second=351 amount=-1 +kerning first=346 second=203 amount=-1 +kerning first=310 second=117 amount=-1 +kerning first=99 second=8217 amount=-2 +kerning first=274 second=117 amount=-1 +kerning first=233 second=104 amount=-1 +kerning first=282 second=202 amount=-1 +kerning first=269 second=104 amount=-1 +kerning first=325 second=351 amount=-1 +kerning first=289 second=351 amount=-1 +kerning first=82 second=264 amount=-1 +kerning first=364 second=366 amount=-1 +kerning first=197 second=104 amount=-1 +kerning first=253 second=351 amount=-1 +kerning first=203 second=82 amount=-1 +kerning first=1051 second=1030 amount=-1 +kerning first=8218 second=336 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=86 second=193 amount=-1 +kerning first=1034 second=1049 amount=-1 +kerning first=288 second=69 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=79 second=296 amount=-1 +kerning first=249 second=101 amount=-1 +kerning first=1054 second=1052 amount=-1 +kerning first=105 second=277 amount=-1 +kerning first=240 second=8217 amount=-2 +kerning first=204 second=364 amount=-1 +kerning first=198 second=286 amount=-1 +kerning first=1065 second=1074 amount=-1 +kerning first=112 second=103 amount=-1 +kerning first=283 second=365 amount=-1 +kerning first=252 second=263 amount=-1 +kerning first=75 second=171 amount=-1 +kerning first=204 second=220 amount=-1 +kerning first=8217 second=366 amount=-1 +kerning first=324 second=263 amount=-1 +kerning first=364 second=296 amount=-1 +kerning first=83 second=298 amount=-1 +kerning first=87 second=8249 amount=-2 +kerning first=1070 second=1049 amount=-1 +kerning first=252 second=171 amount=-1 +kerning first=209 second=68 amount=-1 +kerning first=288 second=171 amount=-1 +kerning first=296 second=298 amount=-1 +kerning first=70 second=365 amount=-1 +kerning first=1067 second=1071 amount=-1 +kerning first=368 second=298 amount=-1 +kerning first=250 second=287 amount=-1 +kerning first=364 second=46 amount=-2 +kerning first=202 second=117 amount=-1 +kerning first=109 second=287 amount=-1 +kerning first=45 second=282 amount=-1 +kerning first=204 second=203 amount=-1 +kerning first=233 second=100 amount=-1 +kerning first=1054 second=1025 amount=-1 +kerning first=78 second=83 amount=-1 +kerning first=367 second=333 amount=-1 +kerning first=269 second=100 amount=-1 +kerning first=219 second=83 amount=-1 +kerning first=1053 second=1083 amount=-1 +kerning first=85 second=278 amount=-1 +kerning first=209 second=339 amount=-1 +kerning first=323 second=229 amount=-1 +kerning first=327 second=83 amount=-1 +kerning first=281 second=339 amount=-1 +kerning first=187 second=356 amount=-1 +kerning first=203 second=330 amount=-1 +kerning first=264 second=304 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=229 second=246 amount=-1 +kerning first=80 second=267 amount=-1 +kerning first=325 second=103 amount=-1 +kerning first=72 second=74 amount=-1 +kerning first=354 second=281 amount=-1 +kerning first=1051 second=1057 amount=-1 +kerning first=370 second=278 amount=-1 +kerning first=253 second=103 amount=-1 +kerning first=334 second=278 amount=-1 +kerning first=217 second=103 amount=-1 +kerning first=206 second=296 amount=-1 +kerning first=298 second=278 amount=-1 +kerning first=248 second=382 amount=-1 +kerning first=200 second=8222 amount=-1 +kerning first=287 second=246 amount=-1 +kerning first=205 second=100 amount=-1 +kerning first=8222 second=87 amount=-2 +kerning first=199 second=298 amount=-1 +kerning first=228 second=103 amount=-1 +kerning first=356 second=382 amount=-1 +kerning first=220 second=269 amount=-1 +kerning first=272 second=77 amount=-1 +kerning first=205 second=220 amount=-1 +kerning first=1048 second=1091 amount=-1 +kerning first=313 second=220 amount=-1 +kerning first=198 second=330 amount=-1 +kerning first=74 second=246 amount=-1 +kerning first=200 second=77 amount=-1 +kerning first=79 second=356 amount=-1 +kerning first=364 second=269 amount=-1 +kerning first=212 second=68 amount=-1 +kerning first=1053 second=1062 amount=-1 +kerning first=213 second=194 amount=-1 +kerning first=199 second=211 amount=-1 +kerning first=251 second=333 amount=-1 +kerning first=110 second=333 amount=-1 +kerning first=284 second=68 amount=-1 +kerning first=352 second=365 amount=-1 +kerning first=280 second=365 amount=-1 +kerning first=344 second=8222 amount=-1 +kerning first=1070 second=1048 amount=-1 +kerning first=316 second=365 amount=-1 +kerning first=1034 second=1048 amount=-1 +kerning first=229 second=289 amount=-1 +kerning first=272 second=8222 amount=-1 +kerning first=323 second=333 amount=-1 +kerning first=234 second=339 amount=-1 +kerning first=72 second=281 amount=-1 +kerning first=350 second=313 amount=-1 +kerning first=108 second=281 amount=-1 +kerning first=80 second=315 amount=-1 +kerning first=70 second=202 amount=-1 +kerning first=214 second=193 amount=-1 +kerning first=8217 second=220 amount=-1 +kerning first=249 second=281 amount=-1 +kerning first=206 second=313 amount=-1 +kerning first=85 second=111 amount=-1 +kerning first=267 second=224 amount=-1 +kerning first=214 second=347 amount=-1 +kerning first=278 second=313 amount=-1 +kerning first=65 second=86 amount=-1 +kerning first=1036 second=1087 amount=-1 +kerning first=8222 second=336 amount=-1 +kerning first=1040 second=1057 amount=-1 +kerning first=77 second=364 amount=-1 +kerning first=1040 second=1117 amount=-1 +kerning first=263 second=324 amount=-1 +kerning first=73 second=347 amount=-1 +kerning first=1069 second=1042 amount=-1 +kerning first=230 second=271 amount=-1 +kerning first=211 second=202 amount=-1 +kerning first=209 second=264 amount=-1 +kerning first=1044 second=1088 amount=-1 +kerning first=214 second=325 amount=-1 +kerning first=346 second=69 amount=-1 +kerning first=85 second=251 amount=-1 +kerning first=121 second=251 amount=-1 +kerning first=370 second=251 amount=-1 +kerning first=243 second=8217 amount=-2 +kerning first=207 second=212 amount=-1 +kerning first=1048 second=1118 amount=-1 +kerning first=279 second=8217 amount=-2 +kerning first=315 second=8217 amount=-1 +kerning first=107 second=46 amount=-1 +kerning first=220 second=102 amount=-1 +kerning first=66 second=8217 amount=-2 +kerning first=105 second=8221 amount=-1 +kerning first=199 second=271 amount=-1 +kerning first=66 second=212 amount=-1 +kerning first=8250 second=367 amount=-1 +kerning first=210 second=8221 amount=-2 +kerning first=246 second=8221 amount=-2 +kerning first=270 second=85 amount=-1 +kerning first=261 second=245 amount=-1 +kerning first=225 second=245 amount=-1 +kerning first=198 second=85 amount=-1 +kerning first=97 second=242 amount=-1 +kerning first=354 second=8221 amount=-1 +kerning first=280 second=334 amount=-1 +kerning first=351 second=8217 amount=-2 +kerning first=195 second=221 amount=-1 +kerning first=370 second=111 amount=-1 +kerning first=84 second=245 amount=-1 +kerning first=363 second=263 amount=-1 +kerning first=103 second=365 amount=-1 +kerning first=362 second=8217 amount=-1 +kerning first=85 second=231 amount=-1 +kerning first=337 second=289 amount=-1 +kerning first=1039 second=1024 amount=-1 +kerning first=204 second=67 amount=-1 +kerning first=288 second=366 amount=-1 +kerning first=203 second=288 amount=-1 +kerning first=304 second=109 amount=-1 +kerning first=1069 second=1064 amount=-1 +kerning first=221 second=195 amount=-1 +kerning first=264 second=357 amount=-1 +kerning first=304 second=233 amount=-1 +kerning first=364 second=102 amount=-1 +kerning first=83 second=78 amount=-1 +kerning first=78 second=263 amount=-1 +kerning first=232 second=233 amount=-1 +kerning first=99 second=45 amount=-1 +kerning first=205 second=280 amount=-1 +kerning first=214 second=374 amount=-1 +kerning first=268 second=233 amount=-1 +kerning first=8222 second=232 amount=-1 +kerning first=264 second=76 amount=-1 +kerning first=1036 second=1059 amount=-1 +kerning first=192 second=357 amount=-1 +kerning first=291 second=263 amount=-1 +kerning first=1058 second=1084 amount=-1 +kerning first=327 second=263 amount=-1 +kerning first=204 second=267 amount=-1 +kerning first=302 second=122 amount=-1 +kerning first=282 second=363 amount=-1 +kerning first=230 second=122 amount=-1 +kerning first=201 second=317 amount=-1 +kerning first=258 second=375 amount=-1 +kerning first=266 second=122 amount=-1 +kerning first=323 second=213 amount=-1 +kerning first=231 second=107 amount=-1 +kerning first=304 second=207 amount=-1 +kerning first=218 second=250 amount=-1 +kerning first=195 second=107 amount=-1 +kerning first=268 second=207 amount=-1 +kerning first=68 second=204 amount=-1 +kerning first=121 second=311 amount=-1 +kerning first=232 second=8250 amount=-1 +kerning first=89 second=122 amount=-1 +kerning first=203 second=201 amount=-1 +kerning first=296 second=232 amount=-1 +kerning first=219 second=116 amount=-1 +kerning first=198 second=282 amount=-1 +kerning first=310 second=216 amount=-1 +kerning first=8218 second=103 amount=-1 +kerning first=209 second=204 amount=-1 +kerning first=304 second=337 amount=-1 +kerning first=75 second=366 amount=-1 +kerning first=1052 second=1081 amount=-1 +kerning first=78 second=116 amount=-1 +kerning first=217 second=244 amount=-1 +kerning first=281 second=378 amount=-1 +kerning first=368 second=259 amount=-1 +kerning first=245 second=378 amount=-1 +kerning first=327 second=116 amount=-1 +kerning first=289 second=244 amount=-1 +kerning first=209 second=378 amount=-1 +kerning first=296 second=259 amount=-1 +kerning first=1058 second=1102 amount=-1 +kerning first=325 second=244 amount=-1 +kerning first=70 second=262 amount=-1 +kerning first=1042 second=1024 amount=-1 +kerning first=1051 second=1096 amount=-1 +kerning first=1058 second=1094 amount=-1 +kerning first=86 second=210 amount=-1 +kerning first=75 second=345 amount=-1 +kerning first=278 second=290 amount=-1 +kerning first=111 second=345 amount=-1 +kerning first=1042 second=1049 amount=-1 +kerning first=346 second=302 amount=-1 +kerning first=275 second=369 amount=-1 +kerning first=339 second=107 amount=-1 +kerning first=274 second=302 amount=-1 +kerning first=74 second=213 amount=-1 +kerning first=252 second=345 amount=-1 +kerning first=203 second=369 amount=-1 +kerning first=267 second=335 amount=-1 +kerning first=267 second=107 amount=-1 +kerning first=288 second=345 amount=-1 +kerning first=73 second=206 amount=-1 +kerning first=231 second=335 amount=-1 +kerning first=202 second=302 amount=-1 +kerning first=324 second=345 amount=-1 +kerning first=286 second=206 amount=-1 +kerning first=339 second=335 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=197 second=219 amount=-1 +kerning first=214 second=206 amount=-1 +kerning first=209 second=231 amount=-1 +kerning first=218 second=277 amount=-1 +kerning first=270 second=193 amount=-1 +kerning first=277 second=254 amount=-1 +kerning first=281 second=231 amount=-1 +kerning first=209 second=351 amount=-1 +kerning first=78 second=218 amount=-1 +kerning first=80 second=368 amount=-1 +kerning first=362 second=277 amount=-1 +kerning first=205 second=73 amount=-1 +kerning first=326 second=277 amount=-1 +kerning first=347 second=103 amount=-1 +kerning first=201 second=290 amount=-1 +kerning first=370 second=338 amount=-1 +kerning first=1066 second=1067 amount=-1 +kerning first=74 second=345 amount=-1 +kerning first=262 second=338 amount=-1 +kerning first=70 second=82 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=298 second=338 amount=-1 +kerning first=211 second=82 amount=-1 +kerning first=200 second=8249 amount=-1 +kerning first=283 second=283 amount=-1 +kerning first=278 second=286 amount=-1 +kerning first=77 second=277 amount=-1 +kerning first=1047 second=1097 amount=-1 +kerning first=85 second=338 amount=-1 +kerning first=68 second=351 amount=-1 +kerning first=344 second=8249 amount=-1 +kerning first=70 second=283 amount=-1 +kerning first=1027 second=1086 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=380 second=8249 amount=-1 +kerning first=106 second=283 amount=-1 +kerning first=1048 second=1031 amount=-1 +kerning first=187 second=274 amount=-1 +kerning first=262 second=45 amount=-1 +kerning first=67 second=171 amount=-1 +kerning first=1033 second=1068 amount=-1 +kerning first=103 second=171 amount=-1 +kerning first=206 second=286 amount=-1 +kerning first=368 second=113 amount=-1 +kerning first=8222 second=233 amount=-1 +kerning first=226 second=45 amount=-1 +kerning first=296 second=113 amount=-1 +kerning first=87 second=371 amount=-1 +kerning first=74 second=333 amount=-1 +kerning first=280 second=171 amount=-1 +kerning first=70 second=235 amount=-1 +kerning first=224 second=113 amount=-1 +kerning first=65 second=286 amount=-1 +kerning first=106 second=235 amount=-1 +kerning first=352 second=171 amount=-1 +kerning first=70 second=73 amount=-1 +kerning first=210 second=70 amount=-1 +kerning first=282 second=70 amount=-1 +kerning first=352 second=280 amount=-1 +kerning first=8217 second=192 amount=-2 +kerning first=283 second=235 amount=-1 +kerning first=214 second=221 amount=-1 +kerning first=69 second=363 amount=-1 +kerning first=269 second=240 amount=-1 +kerning first=355 second=235 amount=-1 +kerning first=217 second=273 amount=-1 +kerning first=1051 second=1069 amount=-1 +kerning first=1068 second=1056 amount=-1 +kerning first=211 second=310 amount=-1 +kerning first=121 second=252 amount=-1 +kerning first=280 second=344 amount=-1 +kerning first=1070 second=1027 amount=-1 +kerning first=85 second=252 amount=-1 +kerning first=327 second=284 amount=-1 +kerning first=1091 second=1085 amount=-1 +kerning first=1034 second=1027 amount=-1 +kerning first=352 second=344 amount=-1 +kerning first=278 second=205 amount=-1 +kerning first=78 second=284 amount=-1 +kerning first=262 second=331 amount=-1 +kerning first=219 second=284 amount=-1 +kerning first=1044 second=1080 amount=-1 +kerning first=314 second=283 amount=-1 +kerning first=234 second=106 amount=-1 +kerning first=302 second=214 amount=-1 +kerning first=266 second=214 amount=-1 +kerning first=290 second=315 amount=-1 +kerning first=192 second=365 amount=-1 +kerning first=234 second=231 amount=-1 +kerning first=192 second=217 amount=-1 +kerning first=366 second=46 amount=-2 +kerning first=187 second=112 amount=-1 +kerning first=264 second=217 amount=-1 +kerning first=288 second=223 amount=-1 +kerning first=212 second=89 amount=-1 +kerning first=374 second=214 amount=-1 +kerning first=220 second=243 amount=-1 +kerning first=197 second=332 amount=-1 +kerning first=110 second=45 amount=-1 +kerning first=375 second=287 amount=-1 +kerning first=339 second=122 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=73 second=353 amount=-1 +kerning first=117 second=235 amount=-1 +kerning first=364 second=243 amount=-1 +kerning first=214 second=353 amount=-1 +kerning first=194 second=214 amount=-1 +kerning first=287 second=45 amount=-1 +kerning first=328 second=243 amount=-1 +kerning first=199 second=70 amount=-1 +kerning first=249 second=275 amount=-1 +kerning first=89 second=214 amount=-1 +kerning first=1049 second=1076 amount=-1 +kerning first=218 second=71 amount=-1 +kerning first=1053 second=1028 amount=-1 +kerning first=251 second=45 amount=-1 +kerning first=370 second=252 amount=-1 +kerning first=328 second=269 amount=-1 +kerning first=354 second=97 amount=-1 +kerning first=200 second=223 amount=-1 +kerning first=202 second=362 amount=-1 +kerning first=278 second=80 amount=-1 +kerning first=366 second=235 amount=-1 +kerning first=1039 second=1050 amount=-1 +kerning first=72 second=275 amount=-1 +kerning first=85 second=8250 amount=-2 +kerning first=323 second=44 amount=-1 +kerning first=274 second=362 amount=-1 +kerning first=206 second=80 amount=-1 +kerning first=344 second=223 amount=-1 +kerning first=346 second=362 amount=-1 +kerning first=350 second=80 amount=-1 +kerning first=72 second=302 amount=-1 +kerning first=304 second=234 amount=-1 +kerning first=69 second=336 amount=-1 +kerning first=101 second=107 amount=-1 +kerning first=8218 second=244 amount=-1 +kerning first=78 second=122 amount=-1 +kerning first=65 second=107 amount=-1 +kerning first=363 second=234 amount=-1 +kerning first=211 second=370 amount=-1 +kerning first=66 second=364 amount=-1 +kerning first=196 second=119 amount=-1 +kerning first=229 second=337 amount=-1 +kerning first=1047 second=1079 amount=-1 +kerning first=198 second=199 amount=-1 +kerning first=85 second=225 amount=-1 +kerning first=280 second=8249 amount=-1 +kerning first=282 second=336 amount=-1 +kerning first=289 second=267 amount=-1 +kerning first=262 second=317 amount=-1 +kerning first=209 second=224 amount=-1 +kerning first=269 second=8250 amount=-1 +kerning first=87 second=249 amount=-1 +kerning first=338 second=116 amount=-1 +kerning first=98 second=314 amount=-1 +kerning first=302 second=116 amount=-1 +kerning first=192 second=249 amount=-1 +kerning first=266 second=116 amount=-1 +kerning first=374 second=241 amount=-1 +kerning first=287 second=105 amount=-1 +kerning first=1039 second=1105 amount=-1 +kerning first=327 second=122 amount=-1 +kerning first=1056 second=1071 amount=-1 +kerning first=275 second=314 amount=-1 +kerning first=45 second=327 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=81 second=327 amount=-1 +kerning first=232 second=234 amount=-1 +kerning first=1052 second=1054 amount=-1 +kerning first=77 second=382 amount=-1 +kerning first=364 second=335 amount=-1 +kerning first=101 second=345 amount=-1 +kerning first=323 second=72 amount=-1 +kerning first=328 second=335 amount=-1 +kerning first=1065 second=1087 amount=-1 +kerning first=89 second=241 amount=-1 +kerning first=262 second=110 amount=-1 +kerning first=1031 second=1049 amount=-1 +kerning first=347 second=314 amount=-1 +kerning first=171 second=374 amount=-1 +kerning first=1067 second=1049 amount=-1 +kerning first=202 second=216 amount=-1 +kerning first=330 second=327 amount=-1 +kerning first=302 second=241 amount=-1 +kerning first=298 second=110 amount=-1 +kerning first=366 second=327 amount=-1 +kerning first=266 second=241 amount=-1 +kerning first=302 second=245 amount=-1 +kerning first=274 second=216 amount=-1 +kerning first=270 second=205 amount=-1 +kerning first=370 second=110 amount=-1 +kerning first=74 second=254 amount=-1 +kerning first=362 second=250 amount=-1 +kerning first=257 second=114 amount=-1 +kerning first=1041 second=1097 amount=-1 +kerning first=99 second=115 amount=-1 +kerning first=118 second=46 amount=-1 +kerning first=75 second=262 amount=-1 +kerning first=82 second=46 amount=-1 +kerning first=1064 second=1045 amount=-1 +kerning first=204 second=115 amount=-1 +kerning first=111 second=318 amount=-1 +kerning first=199 second=207 amount=-1 +kerning first=213 second=302 amount=-1 +kerning first=70 second=370 amount=-1 +kerning first=220 second=335 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=67 second=261 amount=-1 +kerning first=221 second=114 amount=-1 +kerning first=1047 second=1046 amount=-1 +kerning first=330 second=267 amount=-1 +kerning first=370 second=225 amount=-1 +kerning first=83 second=187 amount=-1 +kerning first=366 second=267 amount=-1 +kerning first=230 second=347 amount=-1 +kerning first=203 second=81 amount=-1 +kerning first=82 second=355 amount=-1 +kerning first=352 second=44 amount=-1 +kerning first=1033 second=1055 amount=-1 +kerning first=204 second=273 amount=-1 +kerning first=209 second=296 amount=-1 +kerning first=99 second=273 amount=-1 +kerning first=8218 second=217 amount=-1 +kerning first=264 second=284 amount=-1 +kerning first=289 second=103 amount=-1 +kerning first=254 second=44 amount=-1 +kerning first=290 second=44 amount=-1 +kerning first=110 second=243 amount=-1 +kerning first=262 second=204 amount=-1 +kerning first=218 second=44 amount=-2 +kerning first=1038 second=1098 amount=-1 +kerning first=98 second=287 amount=-1 +kerning first=82 second=334 amount=-1 +kerning first=257 second=291 amount=-1 +kerning first=201 second=114 amount=-1 +kerning first=8217 second=117 amount=-1 +kerning first=74 second=72 amount=-1 +kerning first=187 second=355 amount=-1 +kerning first=264 second=282 amount=-1 +kerning first=275 second=287 amount=-1 +kerning first=199 second=346 amount=-1 +kerning first=67 second=83 amount=-1 +kerning first=73 second=288 amount=-1 +kerning first=288 second=8250 amount=-1 +kerning first=98 second=8220 amount=-2 +kerning first=258 second=311 amount=-1 +kerning first=80 second=199 amount=-1 +kerning first=347 second=287 amount=-1 +kerning first=1050 second=1089 amount=-1 +kerning first=369 second=245 amount=-1 +kerning first=311 second=287 amount=-1 +kerning first=74 second=278 amount=-1 +kerning first=224 second=8249 amount=-1 +kerning first=217 second=352 amount=-1 +kerning first=1031 second=1118 amount=-1 +kerning first=234 second=291 amount=-1 +kerning first=67 second=233 amount=-1 +kerning first=325 second=352 amount=-1 +kerning first=8222 second=119 amount=-1 +kerning first=347 second=108 amount=-1 +kerning first=78 second=257 amount=-1 +kerning first=120 second=44 amount=-1 +kerning first=1059 second=1091 amount=-1 +kerning first=316 second=279 amount=-1 +kerning first=352 second=371 amount=-1 +kerning first=323 second=278 amount=-1 +kerning first=69 second=211 amount=-1 +kerning first=311 second=108 amount=-1 +kerning first=356 second=187 amount=-1 +kerning first=296 second=100 amount=-1 +kerning first=268 second=116 amount=-1 +kerning first=366 second=8218 amount=-2 +kerning first=344 second=355 amount=-1 +kerning first=71 second=187 amount=-1 +kerning first=209 second=269 amount=-1 +kerning first=267 second=252 amount=-1 +kerning first=233 second=99 amount=-1 +kerning first=213 second=75 amount=-1 +kerning first=118 second=382 amount=-1 +kerning first=229 second=316 amount=-1 +kerning first=362 second=71 amount=-1 +kerning first=193 second=316 amount=-1 +kerning first=103 second=279 amount=-1 +kerning first=248 second=187 amount=-1 +kerning first=223 second=382 amount=-1 +kerning first=1055 second=1098 amount=-1 +kerning first=45 second=357 amount=-1 +kerning first=284 second=187 amount=-1 +kerning first=282 second=211 amount=-1 +kerning first=269 second=99 amount=-1 +kerning first=81 second=8218 amount=-1 +kerning first=187 second=313 amount=-1 +kerning first=214 second=65 amount=-1 +kerning first=67 second=279 amount=-1 +kerning first=212 second=187 amount=-1 +kerning first=280 second=371 amount=-1 +kerning first=337 second=316 amount=-1 +kerning first=268 second=380 amount=-1 +kerning first=272 second=196 amount=-1 +kerning first=267 second=248 amount=-1 +kerning first=232 second=380 amount=-1 +kerning first=66 second=66 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=231 second=248 amount=-1 +kerning first=364 second=270 amount=-1 +kerning first=304 second=380 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=187 second=334 amount=-1 +kerning first=302 second=225 amount=-1 +kerning first=73 second=261 amount=-1 +kerning first=77 second=44 amount=-1 +kerning first=221 second=260 amount=-1 +kerning first=280 second=202 amount=-1 +kerning first=81 second=202 amount=-1 +kerning first=45 second=202 amount=-1 +kerning first=198 second=264 amount=-1 +kerning first=108 second=8220 amount=-1 +kerning first=72 second=8220 amount=-1 +kerning first=201 second=209 amount=-1 +kerning first=213 second=8220 amount=-2 +kerning first=350 second=205 amount=-1 +kerning first=258 second=121 amount=-1 +kerning first=193 second=364 amount=-1 +kerning first=79 second=270 amount=-1 +kerning first=108 second=367 amount=-1 +kerning first=330 second=202 amount=-1 +kerning first=219 second=257 amount=-1 +kerning first=248 second=345 amount=-1 +kerning first=88 second=364 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=207 second=66 amount=-1 +kerning first=327 second=257 amount=-1 +kerning first=220 second=270 amount=-1 +kerning first=217 second=325 amount=-1 +kerning first=323 second=216 amount=-1 +kerning first=366 second=202 amount=-1 +kerning first=326 second=8217 amount=-2 +kerning first=197 second=121 amount=-1 +kerning first=192 second=108 amount=-1 +kerning first=315 second=364 amount=-1 +kerning first=272 second=82 amount=-1 +kerning first=364 second=351 amount=-1 +kerning first=1051 second=1047 amount=-1 +kerning first=89 second=193 amount=-1 +kerning first=279 second=277 amount=-1 +kerning first=207 second=364 amount=-1 +kerning first=213 second=69 amount=-1 +kerning first=323 second=338 amount=-1 +kerning first=207 second=277 amount=-1 +kerning first=254 second=8217 amount=-2 +kerning first=287 second=251 amount=-1 +kerning first=8222 second=212 amount=-1 +kerning first=290 second=8217 amount=-1 +kerning first=1038 second=1060 amount=-1 +kerning first=370 second=273 amount=-1 +kerning first=201 second=355 amount=-1 +kerning first=76 second=86 amount=-1 +kerning first=374 second=193 amount=-1 +kerning first=79 second=351 amount=-1 +kerning first=298 second=273 amount=-1 +kerning first=199 second=8221 amount=-1 +kerning first=262 second=273 amount=-1 +kerning first=74 second=338 amount=-1 +kerning first=72 second=69 amount=-1 +kerning first=271 second=8221 amount=-1 +kerning first=1055 second=1064 amount=-1 +kerning first=282 second=334 amount=-1 +kerning first=201 second=203 amount=-1 +kerning first=307 second=8221 amount=-1 +kerning first=327 second=78 amount=-1 +kerning first=220 second=351 amount=-1 +kerning first=227 second=242 amount=-1 +kerning first=85 second=273 amount=-1 +kerning first=379 second=8221 amount=-1 +kerning first=200 second=82 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=219 second=171 amount=-2 +kerning first=251 second=8249 amount=-1 +kerning first=255 second=171 amount=-1 +kerning first=67 second=229 amount=-1 +kerning first=255 second=98 amount=-1 +kerning first=311 second=314 amount=-1 +kerning first=263 second=242 amount=-1 +kerning first=269 second=108 amount=-1 +kerning first=214 second=8220 amount=-2 +kerning first=70 second=104 amount=-1 +kerning first=1071 second=1064 amount=-1 +kerning first=363 second=171 amount=-1 +kerning first=226 second=333 amount=-1 +kerning first=286 second=282 amount=-1 +kerning first=85 second=333 amount=-1 +kerning first=78 second=78 amount=-1 +kerning first=214 second=282 amount=-1 +kerning first=302 second=100 amount=-1 +kerning first=221 second=233 amount=-1 +kerning first=266 second=100 amount=-1 +kerning first=80 second=233 amount=-1 +kerning first=77 second=8217 amount=-1 +kerning first=374 second=100 amount=-1 +kerning first=70 second=357 amount=-1 +kerning first=73 second=282 amount=-1 +kerning first=1071 second=1039 amount=-1 +kerning first=283 second=104 amount=-1 +kerning first=365 second=233 amount=-1 +kerning first=78 second=171 amount=-1 +kerning first=264 second=325 amount=-1 +kerning first=257 second=233 amount=-1 +kerning first=315 second=87 amount=-1 +kerning first=282 second=298 amount=-1 +kerning first=222 second=8221 amount=-2 +kerning first=217 second=330 amount=-1 +kerning first=194 second=220 amount=-1 +kerning first=264 second=103 amount=-1 +kerning first=302 second=220 amount=-1 +kerning first=68 second=356 amount=-1 +kerning first=266 second=220 amount=-1 +kerning first=298 second=246 amount=-1 +kerning first=311 second=103 amount=-1 +kerning first=262 second=246 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=79 second=362 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=226 second=246 amount=-1 +kerning first=230 second=100 amount=-1 +kerning first=218 second=109 amount=-1 +kerning first=1051 second=1074 amount=-1 +kerning first=99 second=289 amount=-1 +kerning first=85 second=246 amount=-1 +kerning first=370 second=333 amount=-1 +kerning first=233 second=365 amount=-1 +kerning first=262 second=333 amount=-1 +kerning first=269 second=224 amount=-1 +kerning first=269 second=365 amount=-1 +kerning first=208 second=8218 amount=-1 +kerning first=362 second=109 amount=-1 +kerning first=187 second=193 amount=-1 +kerning first=187 second=68 amount=-1 +kerning first=1070 second=1113 amount=-1 +kerning first=197 second=365 amount=-1 +kerning first=240 second=289 amount=-1 +kerning first=338 second=220 amount=-1 +kerning first=1069 second=1024 amount=-1 +kerning first=1056 second=1046 amount=-1 +kerning first=352 second=8218 amount=-1 +kerning first=224 second=281 amount=-1 +kerning first=368 second=211 amount=-1 +kerning first=275 second=347 amount=-1 +kerning first=122 second=8220 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=203 second=371 amount=-1 +kerning first=86 second=8220 amount=-1 +kerning first=296 second=281 amount=-1 +kerning first=268 second=315 amount=-1 +kerning first=242 second=120 amount=-1 +kerning first=196 second=255 amount=-1 +kerning first=304 second=315 amount=-1 +kerning first=296 second=72 amount=-1 +kerning first=302 second=357 amount=-1 +kerning first=8218 second=216 amount=-1 +kerning first=77 second=109 amount=-1 +kerning first=103 second=8218 amount=-1 +kerning first=263 second=8220 amount=-2 +kerning first=1065 second=1057 amount=-1 +kerning first=67 second=8218 amount=-1 +kerning first=1040 second=1095 amount=-1 +kerning first=368 second=338 amount=-1 +kerning first=335 second=8220 amount=-2 +kerning first=67 second=116 amount=-1 +kerning first=367 second=339 amount=-1 +kerning first=272 second=202 amount=-1 +kerning first=211 second=77 amount=-1 +kerning first=333 second=120 amount=-1 +kerning first=364 second=264 amount=-1 +kerning first=1039 second=1083 amount=-1 +kerning first=259 second=339 amount=-1 +kerning first=233 second=111 amount=-1 +kerning first=1042 second=1088 amount=-1 +kerning first=69 second=298 amount=-1 +kerning first=317 second=356 amount=-1 +kerning first=210 second=298 amount=-1 +kerning first=220 second=264 amount=-1 +kerning first=280 second=219 amount=-1 +kerning first=192 second=81 amount=-1 +kerning first=108 second=232 amount=-1 +kerning first=369 second=8249 amount=-1 +kerning first=210 second=368 amount=-1 +kerning first=1071 second=1060 amount=-1 +kerning first=1050 second=1105 amount=-1 +kerning first=112 second=8250 amount=-1 +kerning first=203 second=76 amount=-1 +kerning first=67 second=219 amount=-1 +kerning first=334 second=89 amount=-1 +kerning first=101 second=335 amount=-1 +kerning first=217 second=357 amount=-1 +kerning first=325 second=357 amount=-1 +kerning first=249 second=232 amount=-1 +kerning first=206 second=335 amount=-1 +kerning first=69 second=368 amount=-1 +kerning first=289 second=357 amount=-1 +kerning first=327 second=241 amount=-1 +kerning first=354 second=271 amount=-1 +kerning first=1064 second=1067 amount=-1 +kerning first=1042 second=1044 amount=-1 +kerning first=291 second=241 amount=-1 +kerning first=1052 second=1086 amount=-1 +kerning first=266 second=344 amount=-1 +kerning first=317 second=85 amount=-1 +kerning first=84 second=8249 amount=-1 +kerning first=207 second=234 amount=-1 +kerning first=45 second=262 amount=-1 +kerning first=120 second=8249 amount=-1 +kerning first=282 second=368 amount=-1 +kerning first=338 second=344 amount=-1 +kerning first=365 second=8249 amount=-1 +kerning first=302 second=344 amount=-1 +kerning first=209 second=85 amount=-1 +kerning first=225 second=8249 amount=-1 +kerning first=261 second=8249 amount=-1 +kerning first=1059 second=1075 amount=-1 +kerning first=313 second=366 amount=-1 +kerning first=364 second=80 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=323 second=67 amount=-1 +kerning first=263 second=275 amount=-1 +kerning first=194 second=266 amount=-1 +kerning first=227 second=275 amount=-1 +kerning first=280 second=298 amount=-1 +kerning first=219 second=241 amount=-1 +kerning first=219 second=345 amount=-1 +kerning first=205 second=366 amount=-1 +kerning first=86 second=275 amount=-1 +kerning first=1027 second=1081 amount=-1 +kerning first=78 second=241 amount=-1 +kerning first=187 second=213 amount=-1 +kerning first=74 second=67 amount=-1 +kerning first=362 second=229 amount=-1 +kerning first=210 second=195 amount=-1 +kerning first=288 second=280 amount=-1 +kerning first=345 second=225 amount=-1 +kerning first=72 second=73 amount=-1 +kerning first=1047 second=1084 amount=-1 +kerning first=197 second=284 amount=-1 +kerning first=71 second=46 amount=-1 +kerning first=207 second=216 amount=-1 +kerning first=218 second=229 amount=-1 +kerning first=221 second=363 amount=-1 +kerning first=1046 second=1077 amount=-1 +kerning first=272 second=353 amount=-1 +kerning first=72 second=216 amount=-1 +kerning first=279 second=250 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=287 second=311 amount=-1 +kerning first=284 second=317 amount=-1 +kerning first=70 second=375 amount=-1 +kerning first=280 second=116 amount=-1 +kerning first=204 second=213 amount=-1 +kerning first=66 second=250 amount=-1 +kerning first=262 second=111 amount=-1 +kerning first=1042 second=1071 amount=-1 +kerning first=286 second=201 amount=-1 +kerning first=87 second=244 amount=-1 +kerning first=1089 second=1093 amount=-1 +kerning first=314 second=171 amount=-1 +kerning first=72 second=259 amount=-1 +kerning first=214 second=201 amount=-1 +kerning first=1055 second=1062 amount=-1 +kerning first=271 second=113 amount=-1 +kerning first=228 second=244 amount=-1 +kerning first=307 second=113 amount=-1 +kerning first=333 second=8222 amount=-1 +kerning first=220 second=378 amount=-1 +kerning first=264 second=244 amount=-1 +kerning first=199 second=113 amount=-1 +kerning first=66 second=207 amount=-1 +kerning first=235 second=113 amount=-1 +kerning first=8218 second=249 amount=-1 +kerning first=73 second=201 amount=-1 +kerning first=8250 second=362 amount=-1 +kerning first=270 second=204 amount=-1 +kerning first=364 second=378 amount=-1 +kerning first=120 second=8222 amount=-1 +kerning first=1034 second=1063 amount=-2 +kerning first=304 second=345 amount=-1 +kerning first=198 second=204 amount=-1 +kerning first=84 second=8222 amount=-1 +kerning first=212 second=317 amount=-1 +kerning first=362 second=256 amount=-1 +kerning first=201 second=268 amount=-1 +kerning first=310 second=210 amount=-1 +kerning first=258 second=262 amount=-1 +kerning first=81 second=195 amount=-1 +kerning first=366 second=262 amount=-1 +kerning first=1064 second=1050 amount=-1 +kerning first=1041 second=1102 amount=-1 +kerning first=330 second=262 amount=-1 +kerning first=274 second=210 amount=-1 +kerning first=218 second=256 amount=-1 +kerning first=202 second=210 amount=-1 +kerning first=1062 second=1096 amount=-1 +kerning first=45 second=332 amount=-1 +kerning first=314 second=335 amount=-1 +kerning first=330 second=332 amount=-1 +kerning first=8222 second=255 amount=-1 +kerning first=205 second=122 amount=-1 +kerning first=325 second=80 amount=-1 +kerning first=219 second=198 amount=-1 +kerning first=8250 second=118 amount=-1 +kerning first=258 second=332 amount=-1 +kerning first=100 second=122 amount=-1 +kerning first=302 second=73 amount=-1 +kerning first=266 second=73 amount=-1 +kerning first=1048 second=1053 amount=-1 +kerning first=352 second=219 amount=-1 +kerning first=338 second=73 amount=-1 +kerning first=366 second=332 amount=-1 +kerning first=83 second=75 amount=-1 +kerning first=193 second=213 amount=-1 +kerning first=89 second=196 amount=-1 +kerning first=84 second=283 amount=-1 +kerning first=206 second=200 amount=-1 +kerning first=327 second=279 amount=-1 +kerning first=221 second=336 amount=-1 +kerning first=88 second=213 amount=-1 +kerning first=279 second=254 amount=-1 +kerning first=201 second=187 amount=-1 +kerning first=363 second=279 amount=-1 +kerning first=72 second=362 amount=-1 +kerning first=213 second=362 amount=-1 +kerning first=258 second=8250 amount=-1 +kerning first=288 second=323 amount=-1 +kerning first=222 second=8250 amount=-1 +kerning first=325 second=344 amount=-1 +kerning first=1039 second=1045 amount=-1 +kerning first=275 second=244 amount=-1 +kerning first=219 second=371 amount=-1 +kerning first=368 second=75 amount=-1 +kerning first=73 second=266 amount=-1 +kerning first=81 second=8250 amount=-1 +kerning first=305 second=113 amount=-1 +kerning first=296 second=75 amount=-1 +kerning first=207 second=71 amount=-1 +kerning first=209 second=288 amount=-1 +kerning first=192 second=314 amount=-1 +kerning first=291 second=279 amount=-1 +kerning first=350 second=200 amount=-1 +kerning first=1036 second=1119 amount=-1 +kerning first=278 second=200 amount=-1 +kerning first=205 second=79 amount=-1 +kerning first=218 second=66 amount=-1 +kerning first=1069 second=1036 amount=-1 +kerning first=264 second=314 amount=-1 +kerning first=220 second=248 amount=-1 +kerning first=1033 second=1036 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=228 second=314 amount=-1 +kerning first=74 second=110 amount=-1 +kerning first=77 second=66 amount=-1 +kerning first=8222 second=228 amount=-1 +kerning first=310 second=367 amount=-1 +kerning first=274 second=367 amount=-1 +kerning first=344 second=218 amount=-1 +kerning first=1055 second=1030 amount=-1 +kerning first=287 second=110 amount=-1 +kerning first=104 second=242 amount=-1 +kerning first=346 second=367 amount=-1 +kerning first=66 second=380 amount=-1 +kerning first=323 second=110 amount=-1 +kerning first=227 second=318 amount=-1 +kerning first=284 second=274 amount=-1 +kerning first=263 second=318 amount=-1 +kerning first=202 second=367 amount=-1 +kerning first=243 second=380 amount=-1 +kerning first=362 second=66 amount=-1 +kerning first=67 second=257 amount=-1 +kerning first=207 second=380 amount=-1 +kerning first=212 second=274 amount=-1 +kerning first=335 second=318 amount=-1 +kerning first=86 second=101 amount=-1 +kerning first=307 second=8249 amount=-1 +kerning first=1056 second=1049 amount=-1 +kerning first=279 second=380 amount=-1 +kerning first=193 second=8249 amount=-1 +kerning first=327 second=344 amount=-1 +kerning first=1055 second=1042 amount=-1 +kerning first=8218 second=81 amount=-1 +kerning first=263 second=101 amount=-1 +kerning first=250 second=8249 amount=-1 +kerning first=196 second=114 amount=-1 +kerning first=227 second=101 amount=-1 +kerning first=286 second=8249 amount=-1 +kerning first=1049 second=1098 amount=-1 +kerning first=67 second=284 amount=-1 +kerning first=85 second=315 amount=-1 +kerning first=316 second=283 amount=-1 +kerning first=259 second=231 amount=-1 +kerning first=1036 second=1091 amount=-1 +kerning first=118 second=106 amount=-1 +kerning first=270 second=296 amount=-1 +kerning first=187 second=106 amount=-1 +kerning first=203 second=217 amount=-1 +kerning first=1078 second=1077 amount=-1 +kerning first=223 second=106 amount=-1 +kerning first=78 second=344 amount=-1 +kerning first=198 second=296 amount=-1 +kerning first=327 second=214 amount=-1 +kerning first=272 second=310 amount=-1 +kerning first=73 second=8249 amount=-1 +kerning first=219 second=214 amount=-1 +kerning first=109 second=8249 amount=-1 +kerning first=366 second=330 amount=-1 +kerning first=339 second=243 amount=-1 +kerning first=289 second=249 amount=-1 +kerning first=233 second=235 amount=-1 +kerning first=363 second=8221 amount=-1 +kerning first=269 second=235 amount=-1 +kerning first=86 second=345 amount=-1 +kerning first=305 second=235 amount=-1 +kerning first=97 second=275 amount=-1 +kerning first=227 second=345 amount=-1 +kerning first=228 second=287 amount=-1 +kerning first=217 second=249 amount=-1 +kerning first=263 second=345 amount=-1 +kerning first=335 second=345 amount=-1 +kerning first=73 second=69 amount=-1 +kerning first=321 second=362 amount=-1 +kerning first=8217 second=103 amount=-1 +kerning first=1033 second=1063 amount=-2 +kerning first=1091 second=1080 amount=-1 +kerning first=1055 second=1080 amount=-1 +kerning first=280 second=284 amount=-1 +kerning first=82 second=219 amount=-1 +kerning first=209 second=226 amount=-1 +kerning first=267 second=243 amount=-1 +kerning first=1069 second=1063 amount=-1 +kerning first=80 second=336 amount=-1 +kerning first=84 second=353 amount=-1 +kerning first=199 second=97 amount=-1 +kerning first=8220 second=198 amount=-2 +kerning first=214 second=304 amount=-1 +kerning first=1058 second=1079 amount=-1 +kerning first=218 second=337 amount=-1 +kerning first=204 second=278 amount=-1 +kerning first=330 second=370 amount=-1 +kerning first=104 second=291 amount=-1 +kerning first=209 second=199 amount=-1 +kerning first=366 second=370 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=86 second=74 amount=-1 +kerning first=77 second=337 amount=-1 +kerning first=263 second=107 amount=-1 +kerning first=73 second=304 amount=-1 +kerning first=78 second=100 amount=-1 +kerning first=1034 second=1043 amount=-1 +kerning first=364 second=313 amount=-1 +kerning first=1043 second=1096 amount=-1 +kerning first=1049 second=1049 amount=-1 +kerning first=257 second=187 amount=-1 +kerning first=234 second=269 amount=-1 +kerning first=79 second=221 amount=-1 +kerning first=305 second=8218 amount=-1 +kerning first=362 second=337 amount=-1 +kerning first=1066 second=1037 amount=-1 +kerning first=280 second=278 amount=-1 +kerning first=269 second=8218 amount=-1 +kerning first=287 second=283 amount=-1 +kerning first=326 second=337 amount=-1 +kerning first=1043 second=1116 amount=-1 +kerning first=233 second=8218 amount=-1 +kerning first=195 second=286 amount=-1 +kerning first=207 second=109 amount=-1 +kerning first=274 second=8220 amount=-1 +kerning first=204 second=72 amount=-1 +kerning first=79 second=313 amount=-1 +kerning first=82 second=8218 amount=-1 +kerning first=346 second=8220 amount=-1 +kerning first=262 second=203 amount=-1 +kerning first=70 second=267 amount=-1 +kerning first=310 second=8220 amount=-1 +kerning first=298 second=203 amount=-1 +kerning first=356 second=111 amount=-1 +kerning first=382 second=8220 amount=-1 +kerning first=1060 second=1055 amount=-1 +kerning first=85 second=203 amount=-1 +kerning first=328 second=8220 amount=-2 +kerning first=283 second=267 amount=-1 +kerning first=81 second=370 amount=-1 +kerning first=207 second=315 amount=-1 +kerning first=230 second=263 amount=-1 +kerning first=1055 second=1107 amount=-1 +kerning first=355 second=267 amount=-1 +kerning first=8217 second=101 amount=-1 +kerning first=302 second=263 amount=-1 +kerning first=45 second=370 amount=-1 +kerning first=1104 second=1094 amount=-1 +kerning first=106 second=267 amount=-1 +kerning first=346 second=371 amount=-1 +kerning first=196 second=212 amount=-1 +kerning first=97 second=8220 amount=-2 +kerning first=268 second=114 amount=-1 +kerning first=374 second=263 amount=-1 +kerning first=232 second=114 amount=-1 +kerning first=1052 second=1097 amount=-1 +kerning first=268 second=212 amount=-1 +kerning first=202 second=8220 amount=-1 +kerning first=8218 second=108 amount=-1 +kerning first=304 second=212 amount=-1 +kerning first=304 second=114 amount=-1 +kerning first=1044 second=1085 amount=-1 +kerning first=254 second=46 amount=-1 +kerning first=202 second=69 amount=-1 +kerning first=351 second=44 amount=-1 +kerning first=362 second=364 amount=-1 +kerning first=274 second=69 amount=-1 +kerning first=116 second=99 amount=-1 +kerning first=290 second=364 amount=-1 +kerning first=323 second=273 amount=-1 +kerning first=87 second=81 amount=-1 +kerning first=99 second=251 amount=-1 +kerning first=206 second=227 amount=-1 +kerning first=240 second=44 amount=-1 +kerning first=218 second=364 amount=-1 +kerning first=272 second=218 amount=-1 +kerning first=1030 second=1064 amount=-1 +kerning first=291 second=103 amount=-1 +kerning first=1028 second=1061 amount=-1 +kerning first=352 second=78 amount=-1 +kerning first=200 second=218 amount=-1 +kerning first=1066 second=1064 amount=-1 +kerning first=366 second=302 amount=-1 +kerning first=74 second=273 amount=-1 +kerning first=279 second=44 amount=-1 +kerning first=198 second=334 amount=-1 +kerning first=364 second=248 amount=-1 +kerning first=243 second=44 amount=-1 +kerning first=8217 second=345 amount=-1 +kerning first=280 second=78 amount=-1 +kerning first=197 second=370 amount=-1 +kerning first=67 second=78 amount=-1 +kerning first=330 second=99 amount=-1 +kerning first=252 second=242 amount=-1 +kerning first=370 second=230 amount=-1 +kerning first=366 second=99 amount=-1 +kerning first=82 second=199 amount=-1 +kerning first=262 second=230 amount=-1 +kerning first=203 second=282 amount=-1 +kerning first=1071 second=1092 amount=-1 +kerning first=264 second=352 amount=-1 +kerning first=86 second=367 amount=-1 +kerning first=324 second=242 amount=-1 +kerning first=187 second=241 amount=-1 +kerning first=85 second=230 amount=-1 +kerning first=196 second=87 amount=-1 +kerning first=212 second=84 amount=-1 +kerning first=368 second=346 amount=-1 +kerning first=353 second=291 amount=-1 +kerning first=296 second=346 amount=-1 +kerning first=1034 second=1031 amount=-1 +kerning first=325 second=44 amount=-1 +kerning first=281 second=291 amount=-1 +kerning first=105 second=233 amount=-1 +kerning first=245 second=291 amount=-1 +kerning first=171 second=217 amount=-1 +kerning first=364 second=346 amount=-1 +kerning first=8217 second=214 amount=-1 +kerning first=1049 second=1117 amount=-1 +kerning first=67 second=81 amount=-1 +kerning first=1058 second=1107 amount=-1 +kerning first=73 second=230 amount=-1 +kerning first=1060 second=1052 amount=-1 +kerning first=88 second=45 amount=-1 +kerning first=204 second=224 amount=-1 +kerning first=277 second=337 amount=-1 +kerning first=117 second=291 amount=-1 +kerning first=77 second=334 amount=-1 +kerning first=99 second=224 amount=-1 +kerning first=327 second=8218 amount=-1 +kerning first=205 second=337 amount=-1 +kerning first=199 second=288 amount=-1 +kerning first=195 second=84 amount=-1 +kerning first=1043 second=1098 amount=-1 +kerning first=362 second=334 amount=-1 +kerning first=86 second=227 amount=-1 +kerning first=280 second=81 amount=-1 +kerning first=218 second=187 amount=-2 +kerning first=220 second=99 amount=-1 +kerning first=254 second=187 amount=-1 +kerning first=332 second=8221 amount=-2 +kerning first=103 second=328 amount=-1 +kerning first=275 second=245 amount=-1 +kerning first=1056 second=1095 amount=-1 +kerning first=362 second=187 amount=-2 +kerning first=8217 second=281 amount=-1 +kerning first=364 second=99 amount=-1 +kerning first=187 second=270 amount=-1 +kerning first=255 second=8218 amount=-1 +kerning first=290 second=187 amount=-1 +kerning first=321 second=218 amount=-1 +kerning first=81 second=203 amount=-1 +kerning first=328 second=99 amount=-1 +kerning first=366 second=241 amount=-1 +kerning first=220 second=279 amount=-1 +kerning first=194 second=105 amount=-1 +kerning first=328 second=279 amount=-1 +kerning first=274 second=366 amount=-1 +kerning first=77 second=187 amount=-1 +kerning first=1071 second=1104 amount=-1 +kerning first=364 second=279 amount=-1 +kerning first=212 second=278 amount=-1 +kerning first=327 second=66 amount=-1 +kerning first=323 second=209 amount=-1 +kerning first=101 second=316 amount=-1 +kerning first=196 second=364 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=65 second=316 amount=-1 +kerning first=1077 second=1096 amount=-1 +kerning first=195 second=264 amount=-1 +kerning first=219 second=66 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=353 second=187 amount=-1 +kerning first=235 second=108 amount=-1 +kerning first=350 second=69 amount=-1 +kerning first=207 second=202 amount=-1 +kerning first=242 second=316 amount=-1 +kerning first=1059 second=1073 amount=-1 +kerning first=330 second=275 amount=-1 +kerning first=291 second=367 amount=-1 +kerning first=78 second=66 amount=-1 +kerning first=74 second=209 amount=-1 +kerning first=1059 second=1086 amount=-1 +kerning first=264 second=206 amount=-1 +kerning first=199 second=108 amount=-1 +kerning first=314 second=316 amount=-1 +kerning first=206 second=69 amount=-1 +kerning first=266 second=205 amount=-1 +kerning first=325 second=368 amount=-1 +kerning first=278 second=69 amount=-1 +kerning first=345 second=8218 amount=-1 +kerning first=354 second=273 amount=-1 +kerning first=304 second=364 amount=-1 +kerning first=213 second=197 amount=-1 +kerning first=302 second=205 amount=-1 +kerning first=217 second=368 amount=-1 +kerning first=268 second=364 amount=-1 +kerning first=87 second=193 amount=-1 +kerning first=338 second=205 amount=-1 +kerning first=283 second=252 amount=-1 +kerning first=222 second=44 amount=-1 +kerning first=258 second=44 amount=-1 +kerning first=119 second=316 amount=-1 +kerning first=71 second=218 amount=-1 +kerning first=77 second=234 amount=-1 +kerning first=289 second=355 amount=-1 +kerning first=374 second=249 amount=-1 +kerning first=231 second=8249 amount=-1 +kerning first=370 second=248 amount=-1 +kerning first=366 second=44 amount=-2 +kerning first=267 second=8249 amount=-1 +kerning first=203 second=325 amount=-1 +kerning first=375 second=8249 amount=-1 +kerning first=86 second=214 amount=-1 +kerning first=219 second=120 amount=-1 +kerning first=232 second=117 amount=-1 +kerning first=365 second=171 amount=-1 +kerning first=298 second=248 amount=-1 +kerning first=196 second=117 amount=-1 +kerning first=1044 second=1077 amount=-1 +kerning first=277 second=314 amount=-1 +kerning first=262 second=248 amount=-1 +kerning first=1091 second=1116 amount=-1 +kerning first=235 second=122 amount=-1 +kerning first=207 second=282 amount=-1 +kerning first=80 second=78 amount=-1 +kerning first=1042 second=1039 amount=-1 +kerning first=284 second=218 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=8217 second=361 amount=-1 +kerning first=66 second=282 amount=-1 +kerning first=212 second=218 amount=-1 +kerning first=85 second=248 amount=-1 +kerning first=78 second=220 amount=-1 +kerning first=187 second=77 amount=-1 +kerning first=362 second=100 amount=-1 +kerning first=77 second=248 amount=-1 +kerning first=220 second=333 amount=-1 +kerning first=327 second=362 amount=-1 +kerning first=67 second=382 amount=-1 +kerning first=103 second=382 amount=-1 +kerning first=356 second=339 amount=-1 +kerning first=328 second=333 amount=-1 +kerning first=363 second=246 amount=-1 +kerning first=205 second=350 amount=-1 +kerning first=110 second=289 amount=-1 +kerning first=364 second=333 amount=-1 +kerning first=327 second=246 amount=-1 +kerning first=1039 second=1048 amount=-1 +kerning first=244 second=382 amount=-1 +kerning first=251 second=289 amount=-1 +kerning first=277 second=103 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=241 second=103 amount=-1 +kerning first=1042 second=1065 amount=-1 +kerning first=205 second=103 amount=-1 +kerning first=219 second=246 amount=-1 +kerning first=287 second=289 amount=-1 +kerning first=231 second=171 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=267 second=171 amount=-1 +kerning first=334 second=194 amount=-1 +kerning first=78 second=246 amount=-1 +kerning first=219 second=220 amount=-1 +kerning first=218 second=100 amount=-1 +kerning first=1047 second=1068 amount=-1 +kerning first=370 second=194 amount=-1 +kerning first=327 second=220 amount=-1 +kerning first=375 second=171 amount=-1 +kerning first=296 second=290 amount=-1 +kerning first=323 second=109 amount=-1 +kerning first=263 second=307 amount=-1 +kerning first=204 second=211 amount=-1 +kerning first=248 second=120 amount=-1 +kerning first=204 second=304 amount=-1 +kerning first=193 second=85 amount=-1 +kerning first=203 second=338 amount=-1 +kerning first=85 second=97 amount=-1 +kerning first=257 second=245 amount=-1 +kerning first=291 second=120 amount=-1 +kerning first=66 second=202 amount=-1 +kerning first=193 second=332 amount=-1 +kerning first=327 second=313 amount=-1 +kerning first=1069 second=1025 amount=-1 +kerning first=1033 second=1025 amount=-1 +kerning first=255 second=114 amount=-1 +kerning first=8217 second=335 amount=-1 +kerning first=266 second=298 amount=-1 +kerning first=1068 second=1059 amount=-2 +kerning first=1078 second=1117 amount=-1 +kerning first=272 second=347 amount=-1 +kerning first=338 second=298 amount=-1 +kerning first=264 second=8250 amount=-1 +kerning first=74 second=109 amount=-1 +kerning first=219 second=313 amount=-1 +kerning first=117 second=45 amount=-1 +kerning first=302 second=298 amount=-1 +kerning first=1038 second=1108 amount=-1 +kerning first=187 second=324 amount=-1 +kerning first=296 second=357 amount=-1 +kerning first=1118 second=1076 amount=-1 +kerning first=229 second=8250 amount=-1 +kerning first=368 second=357 amount=-1 +kerning first=1054 second=1083 amount=-1 +kerning first=282 second=219 amount=-1 +kerning first=330 second=111 amount=-1 +kerning first=193 second=8250 amount=-1 +kerning first=1046 second=1076 amount=-1 +kerning first=275 second=271 amount=-1 +kerning first=207 second=232 amount=-1 +kerning first=366 second=111 amount=-1 +kerning first=310 second=212 amount=-1 +kerning first=214 second=323 amount=-1 +kerning first=210 second=219 amount=-1 +kerning first=214 second=76 amount=-1 +kerning first=88 second=8250 amount=-1 +kerning first=1056 second=1041 amount=-1 +kerning first=1062 second=1118 amount=-1 +kerning first=73 second=323 amount=-1 +kerning first=202 second=212 amount=-1 +kerning first=280 second=315 amount=-1 +kerning first=275 second=8217 amount=-2 +kerning first=69 second=219 amount=-1 +kerning first=73 second=76 amount=-1 +kerning first=286 second=323 amount=-1 +kerning first=65 second=262 amount=-1 +kerning first=347 second=8217 amount=-2 +kerning first=206 second=262 amount=-1 +kerning first=101 second=113 amount=-1 +kerning first=1030 second=1075 amount=-1 +kerning first=98 second=8217 amount=-2 +kerning first=192 second=119 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=278 second=262 amount=-1 +kerning first=356 second=46 amount=-1 +kerning first=352 second=315 amount=-1 +kerning first=203 second=8217 amount=-1 +kerning first=77 second=280 amount=-1 +kerning first=304 second=204 amount=-1 +kerning first=110 second=263 amount=-1 +kerning first=112 second=314 amount=-1 +kerning first=334 second=68 amount=-1 +kerning first=80 second=366 amount=-1 +kerning first=298 second=68 amount=-1 +kerning first=85 second=68 amount=-1 +kerning first=251 second=263 amount=-1 +kerning first=287 second=263 amount=-1 +kerning first=218 second=280 amount=-1 +kerning first=289 second=314 amount=-1 +kerning first=323 second=263 amount=-1 +kerning first=253 second=314 amount=-1 +kerning first=72 second=110 amount=-1 +kerning first=85 second=194 amount=-1 +kerning first=290 second=280 amount=-1 +kerning first=325 second=67 amount=-1 +kerning first=1065 second=1105 amount=-1 +kerning first=8218 second=232 amount=-1 +kerning first=1065 second=1028 amount=-1 +kerning first=217 second=67 amount=-1 +kerning first=1027 second=1084 amount=-1 +kerning first=1066 second=1101 amount=-1 +kerning first=338 second=213 amount=-1 +kerning first=1069 second=1046 amount=-1 +kerning first=1053 second=1024 amount=-1 +kerning first=370 second=68 amount=-1 +kerning first=1033 second=1101 amount=-1 +kerning first=251 second=103 amount=-1 +kerning first=187 second=378 amount=-1 +kerning first=118 second=378 amount=-1 +kerning first=219 second=192 amount=-1 +kerning first=72 second=357 amount=-1 +kerning first=323 second=70 amount=-1 +kerning first=77 second=46 amount=-1 +kerning first=218 second=46 amount=-2 +kerning first=74 second=70 amount=-1 +kerning first=259 second=378 amount=-1 +kerning first=290 second=46 amount=-1 +kerning first=223 second=378 amount=-1 +kerning first=368 second=195 amount=-1 +kerning first=327 second=274 amount=-1 +kerning first=327 second=46 amount=-1 +kerning first=78 second=207 amount=-1 +kerning first=81 second=65 amount=-1 +kerning first=1055 second=1075 amount=-1 +kerning first=87 second=8217 amount=-1 +kerning first=217 second=262 amount=-1 +kerning first=324 second=101 amount=-1 +kerning first=270 second=201 amount=-1 +kerning first=192 second=8217 amount=-2 +kerning first=1062 second=1101 amount=-1 +kerning first=228 second=8217 amount=-2 +kerning first=198 second=201 amount=-1 +kerning first=1050 second=1072 amount=-1 +kerning first=8218 second=121 amount=-1 +kerning first=198 second=216 amount=-1 +kerning first=325 second=262 amount=-1 +kerning first=99 second=250 amount=-1 +kerning first=70 second=345 amount=-1 +kerning first=316 second=369 amount=-1 +kerning first=264 second=267 amount=-1 +kerning first=280 second=369 amount=-1 +kerning first=114 second=259 amount=-1 +kerning first=69 second=366 amount=-1 +kerning first=117 second=246 amount=-1 +kerning first=81 second=198 amount=-1 +kerning first=66 second=256 amount=-1 +kerning first=78 second=259 amount=-1 +kerning first=1048 second=1089 amount=-1 +kerning first=80 second=204 amount=-1 +kerning first=1088 second=1084 amount=-1 +kerning first=45 second=198 amount=-1 +kerning first=118 second=311 amount=-1 +kerning first=121 second=287 amount=-1 +kerning first=1062 second=1105 amount=-1 +kerning first=283 second=345 amount=-1 +kerning first=327 second=259 amount=-1 +kerning first=287 second=122 amount=-1 +kerning first=1038 second=1054 amount=-1 +kerning first=219 second=259 amount=-1 +kerning first=323 second=122 amount=-1 +kerning first=1065 second=1096 amount=-1 +kerning first=218 second=85 amount=-1 +kerning first=219 second=207 amount=-1 +kerning first=226 second=287 amount=-1 +kerning first=282 second=366 amount=-1 +kerning first=264 second=67 amount=-1 +kerning first=73 second=271 amount=-1 +kerning first=195 second=210 amount=-1 +kerning first=198 second=116 amount=-1 +kerning first=210 second=366 amount=-1 +kerning first=192 second=67 amount=-1 +kerning first=268 second=264 amount=-1 +kerning first=204 second=83 amount=-1 +kerning first=196 second=336 amount=-1 +kerning first=204 second=317 amount=-1 +kerning first=87 second=67 amount=-1 +kerning first=337 second=8250 amount=-1 +kerning first=268 second=336 amount=-1 +kerning first=324 second=281 amount=-1 +kerning first=205 second=244 amount=-1 +kerning first=241 second=244 amount=-1 +kerning first=242 second=46 amount=-1 +kerning first=121 second=8220 amount=-2 +kerning first=104 second=171 amount=-1 +kerning first=277 second=244 amount=-1 +kerning first=1056 second=1056 amount=-1 +kerning first=85 second=8220 amount=-1 +kerning first=1062 second=1090 amount=-1 +kerning first=200 second=213 amount=-1 +kerning first=70 second=347 amount=-1 +kerning first=75 second=268 amount=-1 +kerning first=84 second=74 amount=-1 +kerning first=262 second=8220 amount=-1 +kerning first=8218 second=119 amount=-1 +kerning first=231 second=277 amount=-1 +kerning first=344 second=213 amount=-1 +kerning first=70 second=380 amount=-1 +kerning first=366 second=198 amount=-1 +kerning first=85 second=235 amount=-1 +kerning first=334 second=356 amount=-1 +kerning first=284 second=77 amount=-1 +kerning first=73 second=269 amount=-1 +kerning first=339 second=277 amount=-1 +kerning first=212 second=77 amount=-1 +kerning first=272 second=296 amount=-1 +kerning first=226 second=235 amount=-1 +kerning first=71 second=77 amount=-1 +kerning first=267 second=277 amount=-1 +kerning first=262 second=235 amount=-1 +kerning first=1065 second=1081 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=1089 second=1078 amount=-1 +kerning first=194 second=79 amount=-1 +kerning first=187 second=296 amount=-1 +kerning first=264 second=286 amount=-1 +kerning first=87 second=65 amount=-1 +kerning first=206 second=82 amount=-1 +kerning first=1047 second=1094 amount=-1 +kerning first=1053 second=1065 amount=-1 +kerning first=356 second=231 amount=-1 +kerning first=118 second=363 amount=-1 +kerning first=278 second=82 amount=-1 +kerning first=374 second=79 amount=-1 +kerning first=219 second=274 amount=-1 +kerning first=187 second=363 amount=-1 +kerning first=87 second=286 amount=-1 +kerning first=304 second=351 amount=-1 +kerning first=268 second=351 amount=-1 +kerning first=73 second=338 amount=-1 +kerning first=192 second=286 amount=-1 +kerning first=232 second=351 amount=-1 +kerning first=1050 second=1085 amount=-1 +kerning first=210 second=77 amount=-1 +kerning first=355 second=347 amount=-1 +kerning first=266 second=79 amount=-1 +kerning first=78 second=274 amount=-1 +kerning first=266 second=337 amount=-1 +kerning first=291 second=382 amount=-1 +kerning first=302 second=79 amount=-1 +kerning first=283 second=347 amount=-1 +kerning first=338 second=79 amount=-1 +kerning first=100 second=244 amount=-1 +kerning first=217 second=260 amount=-1 +kerning first=72 second=290 amount=-1 +kerning first=1064 second=1042 amount=-1 +kerning first=282 second=80 amount=-1 +kerning first=250 second=279 amount=-1 +kerning first=234 second=114 amount=-1 +kerning first=219 second=261 amount=-1 +kerning first=8217 second=227 amount=-1 +kerning first=210 second=80 amount=-1 +kerning first=327 second=205 amount=-1 +kerning first=199 second=275 amount=-1 +kerning first=327 second=261 amount=-1 +kerning first=8218 second=67 amount=-1 +kerning first=338 second=66 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=280 second=367 amount=-1 +kerning first=73 second=217 amount=-1 +kerning first=302 second=66 amount=-1 +kerning first=72 second=344 amount=-1 +kerning first=266 second=66 amount=-1 +kerning first=72 second=113 amount=-1 +kerning first=198 second=114 amount=-1 +kerning first=214 second=217 amount=-1 +kerning first=77 second=115 amount=-1 +kerning first=103 second=367 amount=-1 +kerning first=78 second=205 amount=-1 +kerning first=286 second=217 amount=-1 +kerning first=344 second=357 amount=-1 +kerning first=274 second=251 amount=-1 +kerning first=207 second=310 amount=-1 +kerning first=202 second=251 amount=-1 +kerning first=374 second=284 amount=-1 +kerning first=78 second=261 amount=-1 +kerning first=69 second=80 amount=-1 +kerning first=66 second=310 amount=-1 +kerning first=362 second=209 amount=-1 +kerning first=310 second=251 amount=-1 +kerning first=205 second=333 amount=-1 +kerning first=346 second=251 amount=-1 +kerning first=219 second=205 amount=-1 +kerning first=275 second=106 amount=-1 +kerning first=298 second=235 amount=-1 +kerning first=119 second=249 amount=-1 +kerning first=366 second=252 amount=-1 +kerning first=100 second=242 amount=-1 +kerning first=202 second=266 amount=-1 +kerning first=370 second=235 amount=-1 +kerning first=310 second=266 amount=-1 +kerning first=98 second=106 amount=-1 +kerning first=241 second=242 amount=-1 +kerning first=229 second=287 amount=-1 +kerning first=277 second=242 amount=-1 +kerning first=117 second=267 amount=-1 +kerning first=272 second=200 amount=-1 +kerning first=205 second=242 amount=-1 +kerning first=83 second=249 amount=-1 +kerning first=200 second=200 amount=-1 +kerning first=115 second=45 amount=-1 +kerning first=45 second=252 amount=-1 +kerning first=305 second=8220 amount=-1 +kerning first=72 second=71 amount=-1 +kerning first=99 second=8222 amount=-1 +kerning first=274 second=71 amount=-1 +kerning first=217 second=226 amount=-1 +kerning first=264 second=101 amount=-1 +kerning first=206 second=97 amount=-1 +kerning first=85 second=242 amount=-1 +kerning first=258 second=252 amount=-1 +kerning first=271 second=275 amount=-1 +kerning first=328 second=45 amount=-1 +kerning first=75 second=214 amount=-1 +kerning first=235 second=275 amount=-1 +kerning first=85 second=233 amount=-1 +kerning first=220 second=45 amount=-2 +kerning first=368 second=249 amount=-1 +kerning first=1049 second=1028 amount=-1 +kerning first=256 second=45 amount=-1 +kerning first=355 second=291 amount=-1 +kerning first=304 second=336 amount=-1 +kerning first=226 second=233 amount=-1 +kerning first=274 second=199 amount=-1 +kerning first=198 second=332 amount=-1 +kerning first=262 second=233 amount=-1 +kerning first=310 second=199 amount=-1 +kerning first=283 second=291 amount=-1 +kerning first=201 second=315 amount=-1 +kerning first=220 second=363 amount=-1 +kerning first=171 second=87 amount=-1 +kerning first=262 second=302 amount=-1 +kerning first=80 second=258 amount=-1 +kerning first=105 second=234 amount=-1 +kerning first=298 second=302 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=289 second=104 amount=-1 +kerning first=267 second=223 amount=-1 +kerning first=106 second=291 amount=-1 +kerning first=231 second=223 amount=-1 +kerning first=298 second=233 amount=-1 +kerning first=1105 second=1103 amount=-1 +kerning first=195 second=223 amount=-1 +kerning first=264 second=232 amount=-1 +kerning first=45 second=356 amount=-1 +kerning first=207 second=243 amount=-1 +kerning first=199 second=327 amount=-1 +kerning first=1067 second=1080 amount=-1 +kerning first=228 second=232 amount=-1 +kerning first=1031 second=1080 amount=-1 +kerning first=1041 second=1095 amount=-1 +kerning first=206 second=225 amount=-1 +kerning first=119 second=8221 amount=-2 +kerning first=324 second=337 amount=-1 +kerning first=310 second=262 amount=-1 +kerning first=1033 second=1079 amount=-1 +kerning first=74 second=122 amount=-1 +kerning first=221 second=258 amount=-1 +kerning first=224 second=8221 amount=-2 +kerning first=8217 second=382 amount=-1 +kerning first=260 second=8221 amount=-2 +kerning first=291 second=328 amount=-1 +kerning first=1068 second=1039 amount=-1 +kerning first=220 second=216 amount=-1 +kerning first=217 second=233 amount=-1 +kerning first=231 second=225 amount=-1 +kerning first=314 second=287 amount=-1 +kerning first=8220 second=351 amount=-1 +kerning first=267 second=225 amount=-1 +kerning first=65 second=370 amount=-1 +kerning first=252 second=335 amount=-1 +kerning first=115 second=318 amount=-1 +kerning first=211 second=72 amount=-1 +kerning first=87 second=232 amount=-1 +kerning first=70 second=72 amount=-1 +kerning first=1034 second=1071 amount=-1 +kerning first=291 second=105 amount=-1 +kerning first=1070 second=1071 amount=-1 +kerning first=209 second=8222 amount=-1 +kerning first=1048 second=1096 amount=-1 +kerning first=362 second=46 amount=-2 +kerning first=213 second=344 amount=-1 +kerning first=354 second=234 amount=-1 +kerning first=278 second=370 amount=-1 +kerning first=258 second=98 amount=-1 +kerning first=206 second=370 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=8218 second=286 amount=-1 +kerning first=193 second=89 amount=-1 +kerning first=199 second=44 amount=-1 +kerning first=202 second=199 amount=-1 +kerning first=207 second=241 amount=-1 +kerning first=350 second=370 amount=-1 +kerning first=202 second=361 amount=-1 +kerning first=194 second=314 amount=-1 +kerning first=1030 second=1062 amount=-1 +kerning first=369 second=267 amount=-1 +kerning first=1048 second=1086 amount=-1 +kerning first=67 second=243 amount=-1 +kerning first=1047 second=1070 amount=-1 +kerning first=364 second=114 amount=-1 +kerning first=1043 second=1083 amount=-1 +kerning first=217 second=206 amount=-1 +kerning first=328 second=114 amount=-1 +kerning first=274 second=361 amount=-1 +kerning first=8218 second=365 amount=-1 +kerning first=225 second=267 amount=-1 +kerning first=310 second=361 amount=-1 +kerning first=261 second=267 amount=-1 +kerning first=291 second=8250 amount=-1 +kerning first=325 second=206 amount=-1 +kerning first=1044 second=1079 amount=-1 +kerning first=220 second=114 amount=-1 +kerning first=210 second=258 amount=-1 +kerning first=206 second=368 amount=-1 +kerning first=109 second=245 amount=-1 +kerning first=1058 second=1092 amount=-1 +kerning first=218 second=275 amount=-1 +kerning first=328 second=8249 amount=-1 +kerning first=232 second=115 amount=-1 +kerning first=197 second=213 amount=-1 +kerning first=327 second=315 amount=-1 +kerning first=364 second=8249 amount=-2 +kerning first=207 second=351 amount=-1 +kerning first=278 second=368 amount=-1 +kerning first=268 second=115 amount=-1 +kerning first=86 second=212 amount=-1 +kerning first=205 second=352 amount=-1 +kerning first=364 second=331 amount=-1 +kerning first=235 second=316 amount=-1 +kerning first=283 second=254 amount=-1 +kerning first=305 second=111 amount=-1 +kerning first=65 second=368 amount=-1 +kerning first=1081 second=1095 amount=-1 +kerning first=1045 second=1095 amount=-1 +kerning first=226 second=263 amount=-1 +kerning first=220 second=331 amount=-1 +kerning first=262 second=263 amount=-1 +kerning first=298 second=263 amount=-1 +kerning first=201 second=365 amount=-1 +kerning first=116 second=263 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=370 second=263 amount=-1 +kerning first=304 second=115 amount=-1 +kerning first=1030 second=1055 amount=-1 +kerning first=115 second=8249 amount=-1 +kerning first=201 second=68 amount=-1 +kerning first=350 second=368 amount=-1 +kerning first=80 second=310 amount=-1 +kerning first=220 second=8249 amount=-2 +kerning first=200 second=72 amount=-1 +kerning first=218 second=102 amount=-1 +kerning first=1067 second=1067 amount=-1 +kerning first=212 second=203 amount=-1 +kerning first=1060 second=1037 amount=-1 +kerning first=325 second=370 amount=-1 +kerning first=284 second=203 amount=-1 +kerning first=1059 second=1088 amount=-1 +kerning first=84 second=267 amount=-1 +kerning first=362 second=102 amount=-1 +kerning first=112 second=106 amount=-1 +kerning first=85 second=263 amount=-1 +kerning first=1055 second=1101 amount=-1 +kerning first=1027 second=1118 amount=-1 +kerning first=272 second=72 amount=-1 +kerning first=71 second=203 amount=-1 +kerning first=1091 second=1101 amount=-1 +kerning first=253 second=106 amount=-1 +kerning first=1064 second=1024 amount=-1 +kerning first=80 second=327 amount=-1 +kerning first=337 second=8222 amount=-1 +kerning first=1038 second=1028 amount=-1 +kerning first=77 second=282 amount=-1 +kerning first=65 second=84 amount=-1 +kerning first=1071 second=1052 amount=-1 +kerning first=209 second=346 amount=-1 +kerning first=1047 second=1117 amount=-1 +kerning first=88 second=8222 amount=-1 +kerning first=88 second=334 amount=-1 +kerning first=305 second=291 amount=-1 +kerning first=269 second=291 amount=-1 +kerning first=89 second=337 amount=-1 +kerning first=69 second=288 amount=-1 +kerning first=233 second=291 amount=-1 +kerning first=351 second=187 amount=-1 +kerning first=266 second=350 amount=-1 +kerning first=302 second=350 amount=-1 +kerning first=101 second=318 amount=-1 +kerning first=350 second=73 amount=-1 +kerning first=282 second=288 amount=-1 +kerning first=66 second=187 amount=-1 +kerning first=242 second=318 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=198 second=270 amount=-1 +kerning first=314 second=318 amount=-1 +kerning first=209 second=75 amount=-1 +kerning first=1067 second=1119 amount=-1 +kerning first=243 second=187 amount=-1 +kerning first=8217 second=266 amount=-1 +kerning first=302 second=337 amount=-1 +kerning first=281 second=99 amount=-1 +kerning first=279 second=187 amount=-1 +kerning first=1051 second=1064 amount=-1 +kerning first=1051 second=1027 amount=-1 +kerning first=230 second=337 amount=-1 +kerning first=209 second=99 amount=-1 +kerning first=270 second=270 amount=-1 +kerning first=79 second=203 amount=-1 +kerning first=339 second=279 amount=-1 +kerning first=1048 second=1036 amount=-1 +kerning first=231 second=279 amount=-1 +kerning first=266 second=187 amount=-1 +kerning first=269 second=328 amount=-1 +kerning first=267 second=279 amount=-1 +kerning first=1039 second=1074 amount=-1 +kerning first=218 second=332 amount=-1 +kerning first=116 second=232 amount=-1 +kerning first=368 second=262 amount=-1 +kerning first=323 second=8222 amount=-1 +kerning first=214 second=278 amount=-1 +kerning first=268 second=202 amount=-1 +kerning first=364 second=277 amount=-1 +kerning first=362 second=332 amount=-1 +kerning first=66 second=351 amount=-1 +kerning first=328 second=277 amount=-1 +kerning first=109 second=8217 amount=-2 +kerning first=77 second=8250 amount=-1 +kerning first=304 second=202 amount=-1 +kerning first=289 second=316 amount=-1 +kerning first=278 second=264 amount=-1 +kerning first=279 second=351 amount=-1 +kerning first=274 second=116 amount=-1 +kerning first=206 second=264 amount=-1 +kerning first=283 second=8221 amount=-2 +kerning first=291 second=267 amount=-1 +kerning first=288 second=73 amount=-1 +kerning first=209 second=115 amount=-1 +kerning first=325 second=69 amount=-1 +kerning first=203 second=323 amount=-1 +kerning first=1048 second=1073 amount=-1 +kerning first=65 second=264 amount=-1 +kerning first=219 second=279 amount=-1 +kerning first=119 second=108 amount=-1 +kerning first=1052 second=1030 amount=-1 +kerning first=214 second=8217 amount=-2 +kerning first=264 second=338 amount=-1 +kerning first=220 second=277 amount=-1 +kerning first=250 second=8217 amount=-1 +kerning first=1060 second=1050 amount=-1 +kerning first=171 second=350 amount=-1 +kerning first=1052 second=1060 amount=-1 +kerning first=286 second=8217 amount=-1 +kerning first=192 second=338 amount=-1 +kerning first=194 second=356 amount=-1 +kerning first=310 second=307 amount=-1 +kerning first=217 second=69 amount=-1 +kerning first=80 second=364 amount=-1 +kerning first=8217 second=212 amount=-1 +kerning first=255 second=8249 amount=-1 +kerning first=8217 second=347 amount=-1 +kerning first=330 second=113 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=116 second=333 amount=-1 +kerning first=73 second=325 amount=-1 +kerning first=366 second=113 amount=-1 +kerning first=325 second=286 amount=-1 +kerning first=221 second=273 amount=-1 +kerning first=116 second=242 amount=-1 +kerning first=101 second=355 amount=-1 +kerning first=1067 second=1025 amount=-1 +kerning first=65 second=171 amount=-1 +kerning first=65 second=355 amount=-1 +kerning first=286 second=325 amount=-1 +kerning first=80 second=273 amount=-1 +kerning first=304 second=78 amount=-1 +kerning first=76 second=370 amount=-1 +kerning first=217 second=193 amount=-1 +kerning first=1031 second=1039 amount=-1 +kerning first=217 second=286 amount=-1 +kerning first=101 second=314 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=1067 second=1039 amount=-1 +kerning first=65 second=314 amount=-1 +kerning first=279 second=335 amount=-1 +kerning first=1055 second=1047 amount=-1 +kerning first=334 second=317 amount=-1 +kerning first=1034 second=1056 amount=-1 +kerning first=314 second=314 amount=-1 +kerning first=1027 second=1082 amount=-1 +kerning first=370 second=317 amount=-1 +kerning first=1049 second=1069 amount=-1 +kerning first=1070 second=1056 amount=-1 +kerning first=217 second=81 amount=-1 +kerning first=362 second=282 amount=-1 +kerning first=242 second=314 amount=-1 +kerning first=368 second=8221 amount=-1 +kerning first=290 second=282 amount=-1 +kerning first=171 second=364 amount=-1 +kerning first=1039 second=1119 amount=-1 +kerning first=278 second=355 amount=-1 +kerning first=221 second=117 amount=-1 +kerning first=218 second=282 amount=-1 +kerning first=112 second=316 amount=-1 +kerning first=270 second=77 amount=-1 +kerning first=279 second=100 amount=-1 +kerning first=198 second=77 amount=-1 +kerning first=121 second=289 amount=-1 +kerning first=367 second=234 amount=-1 +kerning first=1039 second=1100 amount=-1 +kerning first=339 second=333 amount=-1 +kerning first=226 second=289 amount=-1 +kerning first=286 second=76 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=263 second=305 amount=-1 +kerning first=205 second=101 amount=-1 +kerning first=278 second=171 amount=-1 +kerning first=280 second=220 amount=-1 +kerning first=374 second=246 amount=-1 +kerning first=277 second=101 amount=-1 +kerning first=350 second=171 amount=-1 +kerning first=352 second=220 amount=-1 +kerning first=241 second=101 amount=-1 +kerning first=302 second=246 amount=-1 +kerning first=324 second=103 amount=-1 +kerning first=311 second=8217 amount=-1 +kerning first=266 second=246 amount=-1 +kerning first=231 second=333 amount=-1 +kerning first=291 second=246 amount=-1 +kerning first=230 second=246 amount=-1 +kerning first=1046 second=1054 amount=-1 +kerning first=267 second=333 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=1067 second=1065 amount=-1 +kerning first=207 second=100 amount=-1 +kerning first=1104 second=1096 amount=-1 +kerning first=284 second=325 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=87 second=338 amount=-1 +kerning first=88 second=211 amount=-1 +kerning first=78 second=315 amount=-1 +kerning first=230 second=8218 amount=-1 +kerning first=266 second=120 amount=-1 +kerning first=302 second=296 amount=-1 +kerning first=1046 second=1074 amount=-1 +kerning first=193 second=211 amount=-1 +kerning first=219 second=315 amount=-1 +kerning first=374 second=120 amount=-1 +kerning first=97 second=281 amount=-1 +kerning first=374 second=8218 amount=-2 +kerning first=352 second=313 amount=-1 +kerning first=338 second=8218 amount=-1 +kerning first=1038 second=1084 amount=-1 +kerning first=290 second=207 amount=-1 +kerning first=262 second=225 amount=-1 +kerning first=205 second=298 amount=-1 +kerning first=199 second=290 amount=-1 +kerning first=233 second=382 amount=-1 +kerning first=8250 second=221 amount=-2 +kerning first=253 second=114 amount=-1 +kerning first=362 second=8250 amount=-2 +kerning first=269 second=382 amount=-1 +kerning first=89 second=8218 amount=-2 +kerning first=287 second=287 amount=-1 +kerning first=89 second=120 amount=-1 +kerning first=290 second=8250 amount=-1 +kerning first=251 second=287 amount=-1 +kerning first=213 second=86 amount=-1 +kerning first=67 second=313 amount=-1 +kerning first=254 second=8250 amount=-1 +kerning first=352 second=204 amount=-1 +kerning first=218 second=8250 amount=-2 +kerning first=221 second=234 amount=-1 +kerning first=298 second=339 amount=-1 +kerning first=262 second=339 amount=-1 +kerning first=74 second=302 amount=-1 +kerning first=370 second=339 amount=-1 +kerning first=262 second=107 amount=-1 +kerning first=257 second=234 amount=-1 +kerning first=365 second=234 amount=-1 +kerning first=85 second=339 amount=-1 +kerning first=321 second=354 amount=-1 +kerning first=226 second=339 amount=-1 +kerning first=77 second=278 amount=-1 +kerning first=110 second=8220 amount=-2 +kerning first=362 second=243 amount=-1 +kerning first=370 second=122 amount=-1 +kerning first=290 second=278 amount=-1 +kerning first=262 second=122 amount=-1 +kerning first=211 second=330 amount=-1 +kerning first=1051 second=1118 amount=-1 +kerning first=298 second=122 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=218 second=278 amount=-1 +kerning first=204 second=280 amount=-1 +kerning first=325 second=232 amount=-1 +kerning first=289 second=232 amount=-1 +kerning first=121 second=107 amount=-1 +kerning first=80 second=219 amount=-1 +kerning first=226 second=122 amount=-1 +kerning first=116 second=234 amount=-1 +kerning first=85 second=122 amount=-1 +kerning first=335 second=103 amount=-1 +kerning first=80 second=234 amount=-1 +kerning first=217 second=232 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=362 second=278 amount=-1 +kerning first=227 second=335 amount=-1 +kerning first=1066 second=1039 amount=-1 +kerning first=1036 second=1094 amount=-1 +kerning first=268 second=241 amount=-1 +kerning first=304 second=209 amount=-1 +kerning first=263 second=335 amount=-1 +kerning first=275 second=269 amount=-1 +kerning first=1031 second=1083 amount=-1 +kerning first=198 second=363 amount=-1 +kerning first=323 second=115 amount=-1 +kerning first=234 second=363 amount=-1 +kerning first=288 second=298 amount=-1 +kerning first=323 second=85 amount=-1 +kerning first=368 second=344 amount=-1 +kerning first=251 second=8220 amount=-1 +kerning first=72 second=202 amount=-1 +kerning first=279 second=46 amount=-1 +kerning first=205 second=229 amount=-1 +kerning first=217 second=65 amount=-1 +kerning first=243 second=46 amount=-1 +kerning first=287 second=8220 amount=-2 +kerning first=323 second=302 amount=-1 +kerning first=351 second=46 amount=-1 +kerning first=1040 second=1081 amount=-1 +kerning first=74 second=85 amount=-1 +kerning first=338 second=114 amount=-1 +kerning first=1076 second=1081 amount=-1 +kerning first=283 second=98 amount=-1 +kerning first=291 second=316 amount=-1 +kerning first=86 second=335 amount=-1 +kerning first=1069 second=1038 amount=-1 +kerning first=203 second=67 amount=-1 +kerning first=262 second=284 amount=-1 +kerning first=213 second=195 amount=-1 +kerning first=352 second=274 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=374 second=192 amount=-1 +kerning first=87 second=262 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=234 second=378 amount=-1 +kerning first=8250 second=112 amount=-1 +kerning first=204 second=70 amount=-1 +kerning first=192 second=262 amount=-1 +kerning first=289 second=8218 amount=-1 +kerning first=102 second=46 amount=-1 +kerning first=264 second=262 amount=-1 +kerning first=266 second=207 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=1075 second=1085 amount=-1 +kerning first=86 second=251 amount=-1 +kerning first=310 second=357 amount=-1 +kerning first=1069 second=1053 amount=-1 +kerning first=209 second=216 amount=-1 +kerning first=233 second=8250 amount=-1 +kerning first=1102 second=1078 amount=-1 +kerning first=274 second=357 amount=-1 +kerning first=224 second=171 amount=-1 +kerning first=272 second=76 amount=-1 +kerning first=346 second=200 amount=-1 +kerning first=326 second=243 amount=-1 +kerning first=1033 second=1053 amount=-1 +kerning first=87 second=277 amount=-1 +kerning first=214 second=310 amount=-1 +kerning first=187 second=369 amount=-1 +kerning first=263 second=251 amount=-1 +kerning first=1064 second=1117 amount=-1 +kerning first=8250 second=344 amount=-1 +kerning first=103 second=314 amount=-1 +kerning first=280 second=68 amount=-1 +kerning first=202 second=357 amount=-1 +kerning first=187 second=116 amount=-1 +kerning first=250 second=335 amount=-1 +kerning first=1041 second=1084 amount=-1 +kerning first=209 second=201 amount=-1 +kerning first=68 second=201 amount=-1 +kerning first=70 second=113 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=106 second=113 amount=-1 +kerning first=8218 second=316 amount=-1 +kerning first=100 second=8220 amount=-1 +kerning first=210 second=204 amount=-1 +kerning first=1054 second=1044 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=84 second=271 amount=-1 +kerning first=69 second=204 amount=-1 +kerning first=67 second=259 amount=-1 +kerning first=338 second=207 amount=-1 +kerning first=205 second=268 amount=-1 +kerning first=302 second=207 amount=-1 +kerning first=278 second=210 amount=-1 +kerning first=282 second=204 amount=-1 +kerning first=8216 second=194 amount=-2 +kerning first=199 second=366 amount=-1 +kerning first=206 second=210 amount=-1 +kerning first=291 second=369 amount=-1 +kerning first=374 second=242 amount=-1 +kerning first=255 second=369 amount=-1 +kerning first=355 second=113 amount=-1 +kerning first=219 second=369 amount=-1 +kerning first=302 second=242 amount=-1 +kerning first=1076 second=1096 amount=-1 +kerning first=283 second=113 amount=-1 +kerning first=304 second=226 amount=-1 +kerning first=74 second=233 amount=-1 +kerning first=267 second=97 amount=-1 +kerning first=1118 second=1113 amount=-1 +kerning first=324 second=244 amount=-1 +kerning first=110 second=233 amount=-1 +kerning first=206 second=279 amount=-1 +kerning first=370 second=209 amount=-1 +kerning first=69 second=327 amount=-1 +kerning first=101 second=279 amount=-1 +kerning first=251 second=233 amount=-1 +kerning first=298 second=209 amount=-1 +kerning first=314 second=279 amount=-1 +kerning first=287 second=233 amount=-1 +kerning first=76 second=84 amount=-1 +kerning first=253 second=171 amount=-1 +kerning first=210 second=327 amount=-1 +kerning first=231 second=97 amount=-1 +kerning first=1042 second=1080 amount=-1 +kerning first=232 second=187 amount=-1 +kerning first=282 second=327 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=268 second=187 amount=-1 +kerning first=211 second=200 amount=-1 +kerning first=323 second=233 amount=-1 +kerning first=196 second=187 amount=-1 +kerning first=74 second=371 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=70 second=200 amount=-1 +kerning first=228 second=339 amount=-1 +kerning first=1052 second=1045 amount=-1 +kerning first=1067 second=1070 amount=-1 +kerning first=70 second=44 amount=-2 +kerning first=277 second=283 amount=-1 +kerning first=209 second=270 amount=-1 +kerning first=364 second=75 amount=-1 +kerning first=195 second=318 amount=-1 +kerning first=205 second=283 amount=-1 +kerning first=187 second=218 amount=-1 +kerning first=362 second=224 amount=-1 +kerning first=267 second=318 amount=-1 +kerning first=251 second=248 amount=-1 +kerning first=283 second=44 amount=-1 +kerning first=107 second=8221 amount=-1 +kerning first=82 second=218 amount=-1 +kerning first=356 second=380 amount=-1 +kerning first=220 second=75 amount=-1 +kerning first=339 second=318 amount=-1 +kerning first=323 second=248 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=375 second=318 amount=-1 +kerning first=287 second=248 amount=-1 +kerning first=74 second=248 amount=-1 +kerning first=67 second=274 amount=-1 +kerning first=85 second=209 amount=-1 +kerning first=327 second=79 amount=-1 +kerning first=110 second=248 amount=-1 +kerning first=233 second=246 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=356 second=257 amount=-1 +kerning first=233 second=367 amount=-1 +kerning first=8218 second=354 amount=-1 +kerning first=1067 second=1084 amount=-1 +kerning first=68 second=270 amount=-1 +kerning first=280 second=205 amount=-1 +kerning first=374 second=261 amount=-1 +kerning first=353 second=45 amount=-1 +kerning first=367 second=8217 amount=-1 +kerning first=197 second=367 amount=-1 +kerning first=8250 second=201 amount=-1 +kerning first=83 second=344 amount=-1 +kerning first=66 second=115 amount=-1 +kerning first=245 second=114 amount=-1 +kerning first=8217 second=251 amount=-1 +kerning first=209 second=114 amount=-1 +kerning first=226 second=248 amount=-1 +kerning first=352 second=205 amount=-1 +kerning first=296 second=344 amount=-1 +kerning first=8222 second=364 amount=-1 +kerning first=1056 second=1097 amount=-1 +kerning first=281 second=114 amount=-1 +kerning first=199 second=80 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=206 second=206 amount=-1 +kerning first=8249 second=218 amount=-1 +kerning first=279 second=115 amount=-1 +kerning first=203 second=284 amount=-1 +kerning first=45 second=345 amount=-1 +kerning first=275 second=353 amount=-1 +kerning first=214 second=89 amount=-1 +kerning first=1031 second=1048 amount=-1 +kerning first=266 second=261 amount=-1 +kerning first=330 second=109 amount=-1 +kerning first=350 second=206 amount=-1 +kerning first=117 second=345 amount=-1 +kerning first=278 second=206 amount=-1 +kerning first=207 second=115 amount=-1 +kerning first=67 second=205 amount=-1 +kerning first=258 second=345 amount=-1 +kerning first=310 second=71 amount=-1 +kerning first=86 second=266 amount=-1 +kerning first=344 second=362 amount=-1 +kerning first=330 second=345 amount=-1 +kerning first=1046 second=1089 amount=-1 +kerning first=366 second=345 amount=-1 +kerning first=286 second=44 amount=-1 +kerning first=77 second=243 amount=-1 +kerning first=202 second=71 amount=-1 +kerning first=99 second=226 amount=-1 +kerning first=218 second=243 amount=-1 +kerning first=304 second=310 amount=-1 +kerning first=291 second=291 amount=-1 +kerning first=321 second=8221 amount=-1 +kerning first=220 second=286 amount=-1 +kerning first=204 second=226 amount=-1 +kerning first=1071 second=1037 amount=-1 +kerning first=205 second=214 amount=-1 +kerning first=66 second=336 amount=-1 +kerning first=233 second=252 amount=-1 +kerning first=197 second=252 amount=-1 +kerning first=224 second=275 amount=-1 +kerning first=207 second=336 amount=-1 +kerning first=269 second=252 amount=-1 +kerning first=296 second=275 amount=-1 +kerning first=87 second=263 amount=-1 +kerning first=220 second=223 amount=-1 +kerning first=108 second=249 amount=-1 +kerning first=209 second=45 amount=-1 +kerning first=200 second=362 amount=-1 +kerning first=8218 second=262 amount=-1 +kerning first=104 second=45 amount=-1 +kerning first=272 second=362 amount=-1 +kerning first=364 second=223 amount=-1 +kerning first=101 second=353 amount=-1 +kerning first=1056 second=1051 amount=-1 +kerning first=198 second=45 amount=-1 +kerning first=365 second=275 amount=-1 +kerning first=272 second=217 amount=-1 +kerning first=268 second=327 amount=-1 +kerning first=304 second=327 amount=-1 +kerning first=369 second=8217 amount=-1 +kerning first=344 second=217 amount=-1 +kerning first=78 second=350 amount=-1 +kerning first=310 second=249 amount=-1 +kerning first=314 second=106 amount=-1 +kerning first=221 second=275 amount=-1 +kerning first=346 second=249 amount=-1 +kerning first=199 second=71 amount=-1 +kerning first=378 second=45 amount=-1 +kerning first=354 second=243 amount=-1 +kerning first=257 second=275 amount=-1 +kerning first=268 second=80 amount=-1 +kerning first=264 second=223 amount=-1 +kerning first=327 second=350 amount=-1 +kerning first=8250 second=253 amount=-1 +kerning first=1069 second=1062 amount=-1 +kerning first=112 second=318 amount=-1 +kerning first=1031 second=1097 amount=-1 +kerning first=192 second=223 amount=-1 +kerning first=8218 second=210 amount=-1 +kerning first=80 second=275 amount=-1 +kerning first=344 second=284 amount=-1 +kerning first=219 second=350 amount=-1 +kerning first=304 second=80 amount=-1 +kerning first=1060 second=1034 amount=-1 +kerning first=249 second=234 amount=-1 +kerning first=369 second=232 amount=-1 +kerning first=210 second=87 amount=-1 +kerning first=8250 second=73 amount=-1 +kerning first=73 second=200 amount=-1 +kerning first=231 second=8221 amount=-2 +kerning first=69 second=278 amount=-1 +kerning first=368 second=266 amount=-1 +kerning first=1047 second=1085 amount=-1 +kerning first=87 second=223 amount=-1 +kerning first=323 second=226 amount=-1 +kerning first=203 second=362 amount=-1 +kerning first=207 second=70 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=202 second=249 amount=-1 +kerning first=291 second=283 amount=-1 +kerning first=8218 second=277 amount=-1 +kerning first=296 second=266 amount=-1 +kerning first=274 second=249 amount=-1 +kerning first=220 second=296 amount=-1 +kerning first=218 second=371 amount=-1 +kerning first=219 second=283 amount=-1 +kerning first=108 second=234 amount=-1 +kerning first=261 second=232 amount=-1 +kerning first=78 second=283 amount=-1 +kerning first=66 second=332 amount=-1 +kerning first=72 second=234 amount=-1 +kerning first=225 second=232 amount=-1 +kerning first=286 second=200 amount=-1 +kerning first=200 second=217 amount=-1 +kerning first=362 second=371 amount=-1 +kerning first=214 second=200 amount=-1 +kerning first=85 second=8249 amount=-2 +kerning first=187 second=85 amount=-1 +kerning first=374 second=335 amount=-1 +kerning first=207 second=332 amount=-1 +kerning first=1050 second=1063 amount=-1 +kerning first=1034 second=1041 amount=-1 +kerning first=8250 second=211 amount=-1 +kerning first=204 second=241 amount=-1 +kerning first=67 second=345 amount=-1 +kerning first=103 second=345 amount=-1 +kerning first=204 second=350 amount=-1 +kerning first=1104 second=1076 amount=-1 +kerning first=201 second=216 amount=-1 +kerning first=366 second=217 amount=-1 +kerning first=75 second=105 amount=-1 +kerning first=109 second=267 amount=-1 +kerning first=244 second=345 amount=-1 +kerning first=284 second=302 amount=-1 +kerning first=89 second=335 amount=-1 +kerning first=339 second=114 amount=-1 +kerning first=280 second=345 amount=-1 +kerning first=1052 second=1028 amount=-1 +kerning first=316 second=345 amount=-1 +kerning first=212 second=302 amount=-1 +kerning first=80 second=115 amount=-1 +kerning first=1091 second=1079 amount=-1 +kerning first=352 second=345 amount=-1 +kerning first=73 second=171 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=375 second=114 amount=-1 +kerning first=1055 second=1079 amount=-1 +kerning first=103 second=98 amount=-1 +kerning first=266 second=335 amount=-1 +kerning first=195 second=114 amount=-1 +kerning first=99 second=241 amount=-1 +kerning first=67 second=98 amount=-1 +kerning first=230 second=335 amount=-1 +kerning first=1071 second=1067 amount=-1 +kerning first=1049 second=1050 amount=-1 +kerning first=323 second=46 amount=-1 +kerning first=71 second=302 amount=-1 +kerning first=302 second=335 amount=-1 +kerning first=231 second=114 amount=-1 +kerning first=65 second=119 amount=-1 +kerning first=81 second=207 amount=-1 +kerning first=370 second=378 amount=-1 +kerning first=192 second=370 amount=-1 +kerning first=200 second=284 amount=-1 +kerning first=255 second=103 amount=-1 +kerning first=45 second=207 amount=-1 +kerning first=258 second=81 amount=-1 +kerning first=69 second=310 amount=-1 +kerning first=298 second=378 amount=-1 +kerning first=193 second=336 amount=-1 +kerning first=262 second=378 amount=-1 +kerning first=264 second=323 amount=-1 +kerning first=8217 second=244 amount=-1 +kerning first=366 second=81 amount=-1 +kerning first=221 second=115 amount=-1 +kerning first=330 second=207 amount=-1 +kerning first=264 second=370 amount=-1 +kerning first=201 second=368 amount=-1 +kerning first=235 second=8218 amount=-1 +kerning first=79 second=315 amount=-1 +kerning first=231 second=314 amount=-1 +kerning first=1068 second=1063 amount=-2 +kerning first=195 second=314 amount=-1 +kerning first=187 second=264 amount=-1 +kerning first=195 second=79 amount=-1 +kerning first=296 second=199 amount=-1 +kerning first=242 second=106 amount=-1 +kerning first=1049 second=1037 amount=-1 +kerning first=375 second=314 amount=-1 +kerning first=368 second=199 amount=-1 +kerning first=86 second=110 amount=-1 +kerning first=1070 second=1041 amount=-1 +kerning first=282 second=310 amount=-1 +kerning first=211 second=89 amount=-1 +kerning first=8216 second=218 amount=-1 +kerning first=121 second=378 amount=-1 +kerning first=1048 second=1071 amount=-1 +kerning first=210 second=310 amount=-1 +kerning first=101 second=106 amount=-1 +kerning first=72 second=288 amount=-1 +kerning first=263 second=110 amount=-1 +kerning first=204 second=334 amount=-1 +kerning first=8250 second=266 amount=-1 +kerning first=66 second=78 amount=-1 +kerning first=1052 second=1101 amount=-1 +kerning first=80 second=221 amount=-1 +kerning first=1033 second=1042 amount=-1 +kerning first=289 second=122 amount=-1 +kerning first=1077 second=1078 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=274 second=286 amount=-1 +kerning first=230 second=101 amount=-1 +kerning first=316 second=291 amount=-1 +kerning first=45 second=81 amount=-1 +kerning first=280 second=114 amount=-1 +kerning first=302 second=101 amount=-1 +kerning first=244 second=291 amount=-1 +kerning first=289 second=246 amount=-1 +kerning first=8218 second=370 amount=-1 +kerning first=217 second=362 amount=-1 +kerning first=266 second=101 amount=-1 +kerning first=374 second=101 amount=-1 +kerning first=219 second=296 amount=-1 +kerning first=363 second=337 amount=-1 +kerning first=234 second=279 amount=-1 +kerning first=103 second=291 amount=-1 +kerning first=317 second=84 amount=-1 +kerning first=291 second=337 amount=-1 +kerning first=78 second=296 amount=-1 +kerning first=310 second=303 amount=-1 +kerning first=219 second=337 amount=-1 +kerning first=121 second=8250 amount=-1 +kerning first=327 second=296 amount=-1 +kerning first=365 second=114 amount=-1 +kerning first=68 second=84 amount=-1 +kerning first=212 second=75 amount=-1 +kerning first=351 second=8250 amount=-1 +kerning first=234 second=99 amount=-1 +kerning first=1028 second=1119 amount=-1 +kerning first=325 second=245 amount=-1 +kerning first=279 second=8250 amount=-1 +kerning first=1064 second=1119 amount=-1 +kerning first=45 second=328 amount=-1 +kerning first=243 second=8250 amount=-1 +kerning first=220 second=261 amount=-1 +kerning first=277 second=8218 amount=-1 +kerning first=217 second=245 amount=-1 +kerning first=1065 second=1094 amount=-1 +kerning first=99 second=287 amount=-1 +kerning first=66 second=8250 amount=-1 +kerning first=356 second=8220 amount=-1 +kerning first=323 second=380 amount=-1 +kerning first=80 second=202 amount=-1 +kerning first=298 second=317 amount=-1 +kerning first=287 second=380 amount=-1 +kerning first=282 second=117 amount=-1 +kerning first=1055 second=1025 amount=-1 +kerning first=77 second=83 amount=-1 +kerning first=204 second=246 amount=-1 +kerning first=370 second=218 amount=-1 +kerning first=334 second=218 amount=-1 +kerning first=298 second=218 amount=-1 +kerning first=218 second=83 amount=-1 +kerning first=284 second=75 amount=-1 +kerning first=262 second=218 amount=-1 +kerning first=1041 second=1030 amount=-1 +kerning first=325 second=264 amount=-1 +kerning first=208 second=187 amount=-1 +kerning first=374 second=122 amount=-1 +kerning first=210 second=364 amount=-1 +kerning first=362 second=83 amount=-1 +kerning first=66 second=278 amount=-1 +kerning first=107 second=8220 amount=-1 +kerning first=74 second=380 amount=-1 +kerning first=217 second=264 amount=-1 +kerning first=71 second=8220 amount=-1 +kerning first=201 second=270 amount=-1 +kerning first=69 second=364 amount=-1 +kerning first=209 second=257 amount=-1 +kerning first=264 second=69 amount=-1 +kerning first=284 second=8220 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=207 second=278 amount=-1 +kerning first=248 second=8220 amount=-2 +kerning first=263 second=103 amount=-1 +kerning first=227 second=103 amount=-1 +kerning first=1056 second=1039 amount=-1 +kerning first=8250 second=199 amount=-1 +kerning first=113 second=8221 amount=-2 +kerning first=268 second=273 amount=-1 +kerning first=205 second=227 amount=-1 +kerning first=86 second=103 amount=-1 +kerning first=305 second=171 amount=-1 +kerning first=187 second=278 amount=-1 +kerning first=232 second=273 amount=-1 +kerning first=288 second=205 amount=-1 +kerning first=1070 second=1034 amount=-1 +kerning first=87 second=269 amount=-1 +kerning first=104 second=8220 amount=-2 +kerning first=1034 second=1034 amount=-1 +kerning first=8217 second=110 amount=-1 +kerning first=70 second=258 amount=-1 +kerning first=1065 second=1102 amount=-1 +kerning first=339 second=355 amount=-1 +kerning first=1067 second=1043 amount=-1 +kerning first=192 second=316 amount=-1 +kerning first=85 second=218 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=1031 second=1043 amount=-1 +kerning first=264 second=269 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=330 second=261 amount=-1 +kerning first=264 second=316 amount=-1 +kerning first=356 second=248 amount=-1 +kerning first=287 second=382 amount=-1 +kerning first=228 second=316 amount=-1 +kerning first=195 second=355 amount=-1 +kerning first=244 second=44 amount=-1 +kerning first=69 second=117 amount=-1 +kerning first=366 second=261 amount=-1 +kerning first=207 second=78 amount=-1 +kerning first=302 second=229 amount=-1 +kerning first=73 second=286 amount=-1 +kerning first=326 second=263 amount=-1 +kerning first=266 second=229 amount=-1 +kerning first=362 second=263 amount=-1 +kerning first=374 second=229 amount=-1 +kerning first=8217 second=352 amount=-1 +kerning first=316 second=382 amount=-1 +kerning first=353 second=171 amount=-1 +kerning first=1030 second=1030 amount=-1 +kerning first=291 second=8218 amount=-1 +kerning first=235 second=117 amount=-1 +kerning first=1064 second=1100 amount=-1 +kerning first=364 second=203 amount=-1 +kerning first=77 second=263 amount=-1 +kerning first=220 second=203 amount=-1 +kerning first=97 second=108 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=316 second=252 amount=-1 +kerning first=1066 second=1025 amount=-1 +kerning first=218 second=263 amount=-1 +kerning first=1030 second=1025 amount=-1 +kerning first=1047 second=1050 amount=-1 +kerning first=277 second=246 amount=-1 +kerning first=241 second=246 amount=-1 +kerning first=334 second=77 amount=-1 +kerning first=121 second=8222 amount=-1 +kerning first=205 second=246 amount=-1 +kerning first=370 second=77 amount=-1 +kerning first=1069 second=1113 amount=-1 +kerning first=330 second=382 amount=-1 +kerning first=85 second=8222 amount=-2 +kerning first=1055 second=1060 amount=-1 +kerning first=262 second=77 amount=-1 +kerning first=366 second=382 amount=-1 +kerning first=259 second=8249 amount=-1 +kerning first=298 second=77 amount=-1 +kerning first=99 second=100 amount=-1 +kerning first=212 second=356 amount=-1 +kerning first=355 second=337 amount=-1 +kerning first=262 second=304 amount=-1 +kerning first=204 second=100 amount=-1 +kerning first=298 second=304 amount=-1 +kerning first=85 second=77 amount=-1 +kerning first=334 second=304 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=98 second=316 amount=-1 +kerning first=8250 second=361 amount=-1 +kerning first=370 second=304 amount=-1 +kerning first=85 second=304 amount=-1 +kerning first=78 second=242 amount=-1 +kerning first=374 second=281 amount=-1 +kerning first=362 second=211 amount=-1 +kerning first=268 second=101 amount=-1 +kerning first=311 second=316 amount=-1 +kerning first=275 second=316 amount=-1 +kerning first=334 second=8222 amount=-1 +kerning first=234 second=333 amount=-1 +kerning first=1042 second=1048 amount=-1 +kerning first=211 second=73 amount=-1 +kerning first=351 second=45 amount=-1 +kerning first=347 second=316 amount=-1 +kerning first=262 second=8222 amount=-1 +kerning first=257 second=248 amount=-1 +kerning first=218 second=211 amount=-1 +kerning first=187 second=194 amount=-1 +kerning first=219 second=242 amount=-1 +kerning first=110 second=339 amount=-1 +kerning first=1031 second=1024 amount=-1 +kerning first=217 second=210 amount=-1 +kerning first=196 second=221 amount=-1 +kerning first=251 second=339 amount=-1 +kerning first=1067 second=1024 amount=-1 +kerning first=327 second=242 amount=-1 +kerning first=210 second=8250 amount=-1 +kerning first=363 second=242 amount=-1 +kerning first=99 second=233 amount=-1 +kerning first=307 second=269 amount=-1 +kerning first=304 second=110 amount=-1 +kerning first=74 second=280 amount=-1 +kerning first=74 second=339 amount=-1 +kerning first=314 second=245 amount=-1 +kerning first=330 second=315 amount=-1 +kerning first=205 second=313 amount=-1 +kerning first=366 second=315 amount=-1 +kerning first=240 second=233 amount=-1 +kerning first=217 second=370 amount=-1 +kerning first=355 second=240 amount=-1 +kerning first=268 second=219 amount=-1 +kerning first=233 second=120 amount=-1 +kerning first=304 second=219 amount=-1 +kerning first=204 second=233 amount=-1 +kerning first=269 second=120 amount=-1 +kerning first=355 second=230 amount=-1 +kerning first=196 second=219 amount=-1 +kerning first=323 second=280 amount=-1 +kerning first=323 second=339 amount=-1 +kerning first=78 second=279 amount=-1 +kerning first=81 second=315 amount=-1 +kerning first=287 second=339 amount=-1 +kerning first=324 second=118 amount=-1 +kerning first=80 second=206 amount=-1 +kerning first=1027 second=1101 amount=-1 +kerning first=1076 second=1118 amount=-1 +kerning first=45 second=315 amount=-1 +kerning first=1040 second=1118 amount=-1 +kerning first=101 second=8217 amount=-2 +kerning first=211 second=76 amount=-1 +kerning first=8217 second=290 amount=-1 +kerning first=70 second=76 amount=-1 +kerning first=242 second=8217 amount=-2 +kerning first=198 second=206 amount=-1 +kerning first=73 second=213 amount=-1 +kerning first=65 second=8217 amount=-2 +kerning first=207 second=224 amount=-1 +kerning first=368 second=117 amount=-1 +kerning first=370 second=85 amount=-1 +kerning first=334 second=85 amount=-1 +kerning first=350 second=327 amount=-1 +kerning first=1036 second=1060 amount=-1 +kerning first=298 second=85 amount=-1 +kerning first=107 second=289 amount=-1 +kerning first=262 second=85 amount=-1 +kerning first=101 second=245 amount=-1 +kerning first=275 second=254 amount=-1 +kerning first=278 second=8217 amount=-1 +kerning first=8222 second=273 amount=-1 +kerning first=314 second=8217 amount=-1 +kerning first=1041 second=1119 amount=-1 +kerning first=350 second=8217 amount=-1 +kerning first=217 second=331 amount=-1 +kerning first=1071 second=1113 amount=-1 +kerning first=248 second=289 amount=-1 +kerning first=368 second=366 amount=-1 +kerning first=258 second=318 amount=-1 +kerning first=296 second=366 amount=-1 +kerning first=203 second=262 amount=-1 +kerning first=1059 second=1095 amount=-1 +kerning first=250 second=113 amount=-1 +kerning first=280 second=79 amount=-1 +kerning first=194 second=311 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=1095 second=1095 amount=-1 +kerning first=197 second=307 amount=-1 +kerning first=339 second=287 amount=-1 +kerning first=362 second=317 amount=-1 +kerning first=253 second=104 amount=-1 +kerning first=209 second=225 amount=-1 +kerning first=321 second=84 amount=-1 +kerning first=197 second=345 amount=-1 +kerning first=1102 second=1084 amount=-1 +kerning first=241 second=337 amount=-1 +kerning first=233 second=345 amount=-1 +kerning first=269 second=345 amount=-1 +kerning first=99 second=46 amount=-1 +kerning first=1030 second=1084 amount=-1 +kerning first=305 second=345 amount=-1 +kerning first=240 second=46 amount=-1 +kerning first=370 second=250 amount=-1 +kerning first=118 second=107 amount=-1 +kerning first=45 second=369 amount=-1 +kerning first=220 second=368 amount=-1 +kerning first=77 second=317 amount=-1 +kerning first=364 second=201 amount=-1 +kerning first=229 second=122 amount=-1 +kerning first=244 second=314 amount=-1 +kerning first=97 second=8221 amount=-2 +kerning first=77 second=336 amount=-1 +kerning first=77 second=203 amount=-1 +kerning first=218 second=317 amount=-1 +kerning first=121 second=250 amount=-1 +kerning first=105 second=335 amount=-1 +kerning first=220 second=201 amount=-1 +kerning first=85 second=250 amount=-1 +kerning first=79 second=368 amount=-1 +kerning first=79 second=201 amount=-1 +kerning first=218 second=336 amount=-1 +kerning first=274 second=8221 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=221 second=256 amount=-1 +kerning first=310 second=8221 amount=-1 +kerning first=83 second=366 amount=-1 +kerning first=199 second=204 amount=-1 +kerning first=8216 second=197 amount=-2 +kerning first=346 second=8221 amount=-1 +kerning first=220 second=116 amount=-1 +kerning first=1066 second=1038 amount=-2 +kerning first=382 second=8221 amount=-1 +kerning first=362 second=336 amount=-1 +kerning first=287 second=326 amount=-1 +kerning first=71 second=68 amount=-1 +kerning first=1062 second=1086 amount=-1 +kerning first=325 second=210 amount=-1 +kerning first=364 second=368 amount=-1 +kerning first=80 second=256 amount=-1 +kerning first=1047 second=1031 amount=-1 +kerning first=337 second=122 amount=-1 +kerning first=364 second=116 amount=-1 +kerning first=104 second=114 amount=-1 +kerning first=205 second=259 amount=-1 +kerning first=310 second=268 amount=-1 +kerning first=274 second=268 amount=-1 +kerning first=220 second=97 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=280 second=8220 amount=-1 +kerning first=8216 second=85 amount=-1 +kerning first=286 second=304 amount=-1 +kerning first=8222 second=221 amount=-2 +kerning first=1038 second=1116 amount=-1 +kerning first=230 second=281 amount=-1 +kerning first=269 second=347 amount=-1 +kerning first=266 second=281 amount=-1 +kerning first=119 second=187 amount=-1 +kerning first=302 second=281 amount=-1 +kerning first=213 second=73 amount=-1 +kerning first=366 second=369 amount=-1 +kerning first=233 second=347 amount=-1 +kerning first=202 second=8221 amount=-1 +kerning first=258 second=369 amount=-1 +kerning first=356 second=235 amount=-1 +kerning first=262 second=8218 amount=-1 +kerning first=1052 second=1069 amount=-1 +kerning first=364 second=97 amount=-1 +kerning first=107 second=287 amount=-1 +kerning first=231 second=382 amount=-1 +kerning first=225 second=279 amount=-1 +kerning first=313 second=86 amount=-1 +kerning first=272 second=198 amount=-1 +kerning first=89 second=283 amount=-1 +kerning first=8222 second=219 amount=-1 +kerning first=226 second=231 amount=-1 +kerning first=210 second=351 amount=-1 +kerning first=262 second=231 amount=-1 +kerning first=325 second=277 amount=-1 +kerning first=281 second=363 amount=-1 +kerning first=1036 second=1072 amount=-1 +kerning first=289 second=277 amount=-1 +kerning first=86 second=290 amount=-1 +kerning first=354 second=351 amount=-1 +kerning first=217 second=277 amount=-1 +kerning first=344 second=338 amount=-1 +kerning first=86 second=244 amount=-1 +kerning first=1051 second=1081 amount=-1 +kerning first=374 second=283 amount=-1 +kerning first=266 second=355 amount=-1 +kerning first=227 second=244 amount=-1 +kerning first=266 second=283 amount=-1 +kerning first=200 second=338 amount=-1 +kerning first=298 second=231 amount=-1 +kerning first=268 second=109 amount=-1 +kerning first=302 second=283 amount=-1 +kerning first=253 second=8249 amount=-1 +kerning first=289 second=8249 amount=-1 +kerning first=370 second=231 amount=-1 +kerning first=194 second=354 amount=-1 +kerning first=230 second=283 amount=-1 +kerning first=325 second=8249 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=78 second=345 amount=-1 +kerning first=67 second=66 amount=-1 +kerning first=85 second=196 amount=-1 +kerning first=258 second=79 amount=-1 +kerning first=278 second=8220 amount=-1 +kerning first=248 second=46 amount=-1 +kerning first=268 second=332 amount=-1 +kerning first=334 second=196 amount=-1 +kerning first=374 second=367 amount=-1 +kerning first=88 second=371 amount=-1 +kerning first=255 second=345 amount=-1 +kerning first=259 second=235 amount=-1 +kerning first=370 second=196 amount=-1 +kerning first=338 second=367 amount=-1 +kerning first=196 second=332 amount=-1 +kerning first=193 second=371 amount=-1 +kerning first=327 second=345 amount=-1 +kerning first=363 second=345 amount=-1 +kerning first=121 second=380 amount=-1 +kerning first=367 second=235 amount=-1 +kerning first=230 second=367 amount=-1 +kerning first=85 second=380 amount=-1 +kerning first=194 second=367 amount=-1 +kerning first=211 second=274 amount=-1 +kerning first=1042 second=1091 amount=-1 +kerning first=226 second=380 amount=-1 +kerning first=85 second=368 amount=-1 +kerning first=66 second=70 amount=-1 +kerning first=304 second=332 amount=-1 +kerning first=352 second=66 amount=-1 +kerning first=298 second=380 amount=-1 +kerning first=330 second=79 amount=-1 +kerning first=280 second=66 amount=-1 +kerning first=105 second=287 amount=-1 +kerning first=85 second=226 amount=-1 +kerning first=366 second=79 amount=-1 +kerning first=370 second=380 amount=-1 +kerning first=284 second=270 amount=-1 +kerning first=204 second=209 amount=-1 +kerning first=1056 second=1080 amount=-1 +kerning first=204 second=336 amount=-1 +kerning first=89 second=367 amount=-1 +kerning first=86 second=192 amount=-1 +kerning first=217 second=323 amount=-1 +kerning first=327 second=99 amount=-1 +kerning first=269 second=44 amount=-1 +kerning first=200 second=252 amount=-1 +kerning first=110 second=231 amount=-1 +kerning first=1049 second=1045 amount=-1 +kerning first=205 second=205 amount=-1 +kerning first=268 second=355 amount=-1 +kerning first=97 second=244 amount=-1 +kerning first=195 second=119 amount=-1 +kerning first=350 second=201 amount=-1 +kerning first=278 second=201 amount=-1 +kerning first=1070 second=1063 amount=-1 +kerning first=221 second=120 amount=-1 +kerning first=323 second=231 amount=-1 +kerning first=66 second=327 amount=-1 +kerning first=206 second=201 amount=-1 +kerning first=202 second=214 amount=-1 +kerning first=207 second=327 amount=-1 +kerning first=201 second=218 amount=-1 +kerning first=197 second=44 amount=-1 +kerning first=233 second=44 amount=-1 +kerning first=257 second=8217 amount=-2 +kerning first=251 second=231 amount=-1 +kerning first=115 second=314 amount=-1 +kerning first=8217 second=246 amount=-1 +kerning first=310 second=214 amount=-1 +kerning first=339 second=106 amount=-1 +kerning first=289 second=353 amount=-1 +kerning first=375 second=106 amount=-1 +kerning first=1048 second=1049 amount=-1 +kerning first=257 second=243 amount=-1 +kerning first=253 second=353 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=325 second=223 amount=-1 +kerning first=365 second=243 amount=-1 +kerning first=8249 second=346 amount=-1 +kerning first=289 second=223 amount=-1 +kerning first=325 second=353 amount=-1 +kerning first=231 second=106 amount=-1 +kerning first=259 second=45 amount=-1 +kerning first=267 second=106 amount=-1 +kerning first=75 second=114 amount=-1 +kerning first=263 second=249 amount=-1 +kerning first=118 second=45 amount=-1 +kerning first=105 second=275 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=1078 second=1097 amount=-1 +kerning first=367 second=45 amount=-1 +kerning first=1091 second=1114 amount=-1 +kerning first=195 second=363 amount=-1 +kerning first=231 second=363 amount=-1 +kerning first=307 second=275 amount=-1 +kerning first=1050 second=1054 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=80 second=243 amount=-1 +kerning first=203 second=370 amount=-1 +kerning first=339 second=363 amount=-1 +kerning first=217 second=353 amount=-1 +kerning first=280 second=325 amount=-1 +kerning first=217 second=250 amount=-1 +kerning first=226 second=111 amount=-1 +kerning first=375 second=363 amount=-1 +kerning first=1042 second=1097 amount=-1 +kerning first=212 second=87 amount=-1 +kerning first=73 second=362 amount=-1 +kerning first=219 second=101 amount=-1 +kerning first=368 second=234 amount=-1 +kerning first=250 second=232 amount=-1 +kerning first=214 second=362 amount=-1 +kerning first=327 second=101 amount=-1 +kerning first=298 second=226 amount=-1 +kerning first=291 second=101 amount=-1 +kerning first=286 second=362 amount=-1 +kerning first=370 second=226 amount=-1 +kerning first=363 second=101 amount=-1 +kerning first=268 second=8250 amount=-1 +kerning first=365 second=245 amount=-1 +kerning first=8218 second=245 amount=-1 +kerning first=67 second=296 amount=-1 +kerning first=1068 second=1098 amount=-1 +kerning first=364 second=241 amount=-1 +kerning first=72 second=266 amount=-1 +kerning first=103 second=283 amount=-1 +kerning first=70 second=217 amount=-1 +kerning first=280 second=296 amount=-1 +kerning first=86 second=249 amount=-1 +kerning first=1099 second=1095 amount=-1 +kerning first=67 second=283 amount=-1 +kerning first=211 second=217 amount=-1 +kerning first=218 second=334 amount=-1 +kerning first=109 second=232 amount=-1 +kerning first=224 second=234 amount=-1 +kerning first=73 second=232 amount=-1 +kerning first=296 second=71 amount=-1 +kerning first=230 second=242 amount=-1 +kerning first=296 second=234 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=258 second=214 amount=-1 +kerning first=296 second=317 amount=-1 +kerning first=286 second=72 amount=-1 +kerning first=1069 second=1070 amount=-1 +kerning first=1034 second=1062 amount=-1 +kerning first=1033 second=1070 amount=-1 +kerning first=104 second=283 amount=-1 +kerning first=381 second=8220 amount=-1 +kerning first=283 second=111 amount=-1 +kerning first=75 second=8218 amount=-1 +kerning first=66 second=83 amount=-1 +kerning first=337 second=287 amount=-1 +kerning first=263 second=105 amount=-1 +kerning first=355 second=111 amount=-1 +kerning first=334 second=205 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=171 second=83 amount=-1 +kerning first=219 second=370 amount=-1 +kerning first=207 second=83 amount=-1 +kerning first=368 second=83 amount=-1 +kerning first=8250 second=369 amount=-1 +kerning first=350 second=114 amount=-1 +kerning first=1055 second=1041 amount=-1 +kerning first=187 second=286 amount=-1 +kerning first=275 second=267 amount=-1 +kerning first=8216 second=196 amount=-2 +kerning first=85 second=378 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=210 second=115 amount=-1 +kerning first=206 second=114 amount=-1 +kerning first=74 second=68 amount=-1 +kerning first=304 second=278 amount=-1 +kerning first=1044 second=1092 amount=-1 +kerning first=87 second=74 amount=-1 +kerning first=268 second=278 amount=-1 +kerning first=278 second=114 amount=-1 +kerning first=83 second=200 amount=-1 +kerning first=199 second=199 amount=-1 +kerning first=99 second=263 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=204 second=263 amount=-1 +kerning first=259 second=242 amount=-1 +kerning first=1066 second=1079 amount=-1 +kerning first=65 second=114 amount=-1 +kerning first=240 second=263 amount=-1 +kerning first=1044 second=1116 amount=-1 +kerning first=370 second=117 amount=-1 +kerning first=187 second=365 amount=-1 +kerning first=206 second=331 amount=-1 +kerning first=354 second=115 amount=-1 +kerning first=199 second=310 amount=-1 +kerning first=73 second=72 amount=-1 +kerning first=1055 second=1065 amount=-1 +kerning first=118 second=365 amount=-1 +kerning first=368 second=361 amount=-1 +kerning first=325 second=269 amount=-1 +kerning first=338 second=371 amount=-1 +kerning first=323 second=68 amount=-1 +kerning first=1070 second=1036 amount=-1 +kerning first=77 second=78 amount=-1 +kerning first=1034 second=1036 amount=-1 +kerning first=323 second=334 amount=-1 +kerning first=218 second=78 amount=-1 +kerning first=367 second=99 amount=-1 +kerning first=1043 second=1071 amount=-1 +kerning first=368 second=288 amount=-1 +kerning first=364 second=355 amount=-1 +kerning first=1041 second=1101 amount=-1 +kerning first=248 second=380 amount=-1 +kerning first=1042 second=1043 amount=-1 +kerning first=296 second=288 amount=-1 +kerning first=1034 second=1070 amount=-1 +kerning first=8250 second=71 amount=-1 +kerning first=79 second=260 amount=-1 +kerning first=194 second=199 amount=-1 +kerning first=228 second=318 amount=-1 +kerning first=84 second=230 amount=-1 +kerning first=220 second=260 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=249 second=8220 amount=-1 +kerning first=1107 second=1082 amount=-1 +kerning first=1105 second=1094 amount=-1 +kerning first=200 second=325 amount=-1 +kerning first=363 second=291 amount=-1 +kerning first=338 second=357 amount=-1 +kerning first=364 second=260 amount=-1 +kerning first=272 second=325 amount=-1 +kerning first=228 second=245 amount=-1 +kerning first=315 second=218 amount=-1 +kerning first=337 second=187 amount=-1 +kerning first=255 second=291 amount=-1 +kerning first=334 second=8220 amount=-2 +kerning first=198 second=367 amount=-1 +kerning first=281 second=279 amount=-1 +kerning first=1036 second=1085 amount=-1 +kerning first=87 second=245 amount=-1 +kerning first=72 second=212 amount=-1 +kerning first=103 second=337 amount=-1 +kerning first=67 second=337 amount=-1 +kerning first=264 second=8217 amount=-1 +kerning first=277 second=251 amount=-1 +kerning first=103 second=120 amount=-1 +kerning first=363 second=114 amount=-1 +kerning first=336 second=8217 amount=-2 +kerning first=298 second=67 amount=-1 +kerning first=104 second=269 amount=-1 +kerning first=220 second=68 amount=-1 +kerning first=210 second=221 amount=-1 +kerning first=103 second=242 amount=-1 +kerning first=187 second=75 amount=-1 +kerning first=209 second=279 amount=-1 +kerning first=193 second=187 amount=-1 +kerning first=1053 second=1119 amount=-1 +kerning first=229 second=187 amount=-1 +kerning first=1071 second=1057 amount=-1 +kerning first=316 second=337 amount=-1 +kerning first=104 second=279 amount=-1 +kerning first=88 second=187 amount=-1 +kerning first=264 second=245 amount=-1 +kerning first=74 second=334 amount=-1 +kerning first=1067 second=1056 amount=-1 +kerning first=316 second=242 amount=-1 +kerning first=346 second=73 amount=-1 +kerning first=205 second=281 amount=-1 +kerning first=86 second=268 amount=-1 +kerning first=1053 second=1043 amount=-1 +kerning first=241 second=281 amount=-1 +kerning first=370 second=334 amount=-1 +kerning first=330 second=347 amount=-1 +kerning first=1041 second=1082 amount=-1 +kerning first=277 second=281 amount=-1 +kerning first=8222 second=375 amount=-1 +kerning first=356 second=99 amount=-1 +kerning first=70 second=325 amount=-1 +kerning first=211 second=198 amount=-1 +kerning first=89 second=229 amount=-1 +kerning first=310 second=290 amount=-1 +kerning first=211 second=325 amount=-1 +kerning first=213 second=115 amount=-1 +kerning first=81 second=347 amount=-1 +kerning first=218 second=366 amount=-1 +kerning first=231 second=318 amount=-1 +kerning first=313 second=8217 amount=-1 +kerning first=264 second=264 amount=-1 +kerning first=202 second=73 amount=-1 +kerning first=69 second=202 amount=-1 +kerning first=1056 second=1083 amount=-1 +kerning first=274 second=296 amount=-1 +kerning first=210 second=202 amount=-1 +kerning first=229 second=233 amount=-1 +kerning first=274 second=73 amount=-1 +kerning first=100 second=281 amount=-1 +kerning first=217 second=82 amount=-1 +kerning first=87 second=264 amount=-1 +kerning first=289 second=8217 amount=-2 +kerning first=355 second=101 amount=-1 +kerning first=268 second=337 amount=-1 +kerning first=77 second=283 amount=-1 +kerning first=1064 second=1065 amount=-1 +kerning first=1050 second=1117 amount=-1 +kerning first=206 second=277 amount=-1 +kerning first=112 second=8217 amount=-2 +kerning first=335 second=108 amount=-1 +kerning first=325 second=82 amount=-1 +kerning first=1068 second=1052 amount=-1 +kerning first=202 second=290 amount=-1 +kerning first=203 second=69 amount=-1 +kerning first=227 second=108 amount=-1 +kerning first=101 second=277 amount=-1 +kerning first=198 second=69 amount=-1 +kerning first=217 second=8217 amount=-1 +kerning first=1038 second=1091 amount=-1 +kerning first=263 second=108 amount=-1 +kerning first=274 second=290 amount=-1 +kerning first=253 second=8217 amount=-2 +kerning first=85 second=334 amount=-1 +kerning first=268 second=224 amount=-1 +kerning first=1049 second=1092 amount=-1 +kerning first=220 second=355 amount=-1 +kerning first=116 second=351 amount=-1 +kerning first=1041 second=1053 amount=-1 +kerning first=1060 second=1113 amount=-1 +kerning first=80 second=351 amount=-1 +kerning first=119 second=291 amount=-1 +kerning first=290 second=78 amount=-1 +kerning first=262 second=334 amount=-1 +kerning first=217 second=282 amount=-1 +kerning first=298 second=334 amount=-1 +kerning first=362 second=78 amount=-1 +kerning first=203 second=286 amount=-1 +kerning first=221 second=351 amount=-1 +kerning first=104 second=333 amount=-1 +kerning first=1048 second=1095 amount=-1 +kerning first=114 second=229 amount=-1 +kerning first=328 second=171 amount=-1 +kerning first=8218 second=318 amount=-1 +kerning first=364 second=171 amount=-2 +kerning first=219 second=229 amount=-1 +kerning first=1084 second=1095 amount=-1 +kerning first=281 second=333 amount=-1 +kerning first=68 second=203 amount=-1 +kerning first=291 second=122 amount=-1 +kerning first=209 second=333 amount=-1 +kerning first=78 second=229 amount=-1 +kerning first=344 second=290 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=1043 second=1074 amount=-1 +kerning first=209 second=203 amount=-1 +kerning first=321 second=374 amount=-1 +kerning first=213 second=374 amount=-1 +kerning first=229 second=263 amount=-1 +kerning first=1053 second=1100 amount=-1 +kerning first=76 second=8217 amount=-1 +kerning first=327 second=229 amount=-1 +kerning first=115 second=171 amount=-1 +kerning first=79 second=206 amount=-1 +kerning first=296 second=212 amount=-1 +kerning first=1034 second=1039 amount=-1 +kerning first=274 second=298 amount=-1 +kerning first=1054 second=1042 amount=-1 +kerning first=278 second=213 amount=-1 +kerning first=220 second=171 amount=-2 +kerning first=368 second=212 amount=-1 +kerning first=256 second=171 amount=-1 +kerning first=220 second=206 amount=-1 +kerning first=68 second=368 amount=-1 +kerning first=258 second=220 amount=-1 +kerning first=323 second=304 amount=-1 +kerning first=370 second=109 amount=-1 +kerning first=324 second=246 amount=-1 +kerning first=366 second=220 amount=-1 +kerning first=283 second=382 amount=-1 +kerning first=330 second=220 amount=-1 +kerning first=364 second=206 amount=-1 +kerning first=74 second=304 amount=-1 +kerning first=8218 second=375 amount=-1 +kerning first=1051 second=1086 amount=-1 +kerning first=252 second=246 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=1030 second=1060 amount=-1 +kerning first=81 second=220 amount=-1 +kerning first=86 second=8221 amount=-1 +kerning first=302 second=282 amount=-1 +kerning first=249 second=103 amount=-1 +kerning first=244 second=120 amount=-1 +kerning first=219 second=46 amount=-2 +kerning first=1067 second=1048 amount=-1 +kerning first=82 second=220 amount=-1 +kerning first=1051 second=1051 amount=-1 +kerning first=216 second=8218 amount=-1 +kerning first=263 second=8221 amount=-2 +kerning first=108 second=103 amount=-1 +kerning first=8250 second=204 amount=-1 +kerning first=207 second=211 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=111 second=8218 amount=-1 +kerning first=105 second=255 amount=-1 +kerning first=266 second=313 amount=-1 +kerning first=234 second=365 amount=-1 +kerning first=298 second=109 amount=-1 +kerning first=1056 second=1034 amount=-1 +kerning first=338 second=313 amount=-1 +kerning first=66 second=211 amount=-1 +kerning first=70 second=382 amount=-1 +kerning first=198 second=365 amount=-1 +kerning first=262 second=109 amount=-1 +kerning first=317 second=368 amount=-1 +kerning first=201 second=85 amount=-1 +kerning first=278 second=223 amount=-1 +kerning first=8222 second=365 amount=-1 +kerning first=206 second=223 amount=-1 +kerning first=85 second=280 amount=-1 +kerning first=264 second=210 amount=-1 +kerning first=1070 second=1053 amount=-1 +kerning first=288 second=304 amount=-1 +kerning first=269 second=98 amount=-1 +kerning first=192 second=210 amount=-1 +kerning first=1046 second=1057 amount=-1 +kerning first=350 second=223 amount=-1 +kerning first=262 second=280 amount=-1 +kerning first=197 second=98 amount=-1 +kerning first=210 second=256 amount=-1 +kerning first=87 second=210 amount=-1 +kerning first=1078 second=1092 amount=-1 +kerning first=241 second=335 amount=-1 +kerning first=334 second=280 amount=-1 +kerning first=1036 second=1077 amount=-1 +kerning first=99 second=122 amount=-1 +kerning first=205 second=335 amount=-1 +kerning first=72 second=380 amount=-1 +kerning first=201 second=302 amount=-1 +kerning first=277 second=335 amount=-1 +kerning first=370 second=280 amount=-1 +kerning first=268 second=243 amount=-1 +kerning first=282 second=371 amount=-1 +kerning first=315 second=219 amount=-1 +kerning first=232 second=243 amount=-1 +kerning first=65 second=223 amount=-1 +kerning first=99 second=339 amount=-1 +kerning first=8217 second=268 amount=-1 +kerning first=70 second=271 amount=-1 +kerning first=240 second=339 amount=-1 +kerning first=219 second=78 amount=-1 +kerning first=304 second=243 amount=-1 +kerning first=1070 second=1047 amount=-1 +kerning first=204 second=339 amount=-1 +kerning first=346 second=298 amount=-1 +kerning first=8222 second=224 amount=-1 +kerning first=272 second=89 amount=-1 +kerning first=171 second=219 amount=-1 +kerning first=278 second=8249 amount=-1 +kerning first=330 second=76 amount=-1 +kerning first=314 second=8249 amount=-1 +kerning first=66 second=219 amount=-1 +kerning first=1060 second=1059 amount=-1 +kerning first=210 second=323 amount=-1 +kerning first=364 second=363 amount=-1 +kerning first=1070 second=1039 amount=-1 +kerning first=8218 second=264 amount=-1 +kerning first=275 second=232 amount=-1 +kerning first=344 second=89 amount=-1 +kerning first=45 second=76 amount=-1 +kerning first=100 second=335 amount=-1 +kerning first=81 second=76 amount=-1 +kerning first=235 second=234 amount=-1 +kerning first=8217 second=112 amount=-1 +kerning first=118 second=289 amount=-1 +kerning first=199 second=234 amount=-1 +kerning first=259 second=289 amount=-1 +kerning first=218 second=241 amount=-1 +kerning first=307 second=234 amount=-1 +kerning first=202 second=344 amount=-1 +kerning first=223 second=289 amount=-1 +kerning first=291 second=98 amount=-1 +kerning first=271 second=234 amount=-1 +kerning first=8250 second=355 amount=-1 +kerning first=74 second=120 amount=-1 +kerning first=65 second=8249 amount=-1 +kerning first=274 second=344 amount=-1 +kerning first=313 second=354 amount=-1 +kerning first=1058 second=1075 amount=-1 +kerning first=362 second=241 amount=-1 +kerning first=346 second=344 amount=-1 +kerning first=367 second=289 amount=-1 +kerning first=81 second=274 amount=-1 +kerning first=193 second=46 amount=-1 +kerning first=1071 second=1091 amount=-1 +kerning first=187 second=216 amount=-1 +kerning first=1071 second=1108 amount=-1 +kerning first=45 second=274 amount=-1 +kerning first=296 second=204 amount=-1 +kerning first=213 second=366 amount=-1 +kerning first=369 second=113 amount=-1 +kerning first=337 second=46 amount=-1 +kerning first=80 second=332 amount=-1 +kerning first=1034 second=1038 amount=-2 +kerning first=197 second=79 amount=-1 +kerning first=363 second=283 amount=-1 +kerning first=1091 second=1084 amount=-1 +kerning first=1075 second=1087 amount=-1 +kerning first=364 second=225 amount=-1 +kerning first=1055 second=1084 amount=-1 +kerning first=330 second=274 amount=-1 +kerning first=221 second=332 amount=-1 +kerning first=366 second=274 amount=-1 +kerning first=75 second=357 amount=-1 +kerning first=86 second=195 amount=-1 +kerning first=287 second=250 amount=-1 +kerning first=264 second=104 amount=-1 +kerning first=321 second=366 amount=-1 +kerning first=88 second=46 amount=-1 +kerning first=366 second=76 amount=-1 +kerning first=82 second=216 amount=-1 +kerning first=192 second=104 amount=-1 +kerning first=77 second=70 amount=-1 +kerning first=352 second=207 amount=-1 +kerning first=197 second=369 amount=-1 +kerning first=302 second=259 amount=-1 +kerning first=1051 second=1105 amount=-1 +kerning first=8250 second=345 amount=-1 +kerning first=203 second=213 amount=-1 +kerning first=1047 second=1053 amount=-1 +kerning first=121 second=347 amount=-1 +kerning first=240 second=122 amount=-1 +kerning first=278 second=323 amount=-1 +kerning first=8217 second=122 amount=-1 +kerning first=290 second=70 amount=-1 +kerning first=283 second=271 amount=-1 +kerning first=206 second=323 amount=-1 +kerning first=269 second=369 amount=-1 +kerning first=204 second=122 amount=-1 +kerning first=374 second=259 amount=-1 +kerning first=70 second=198 amount=-1 +kerning first=233 second=369 amount=-1 +kerning first=225 second=113 amount=-1 +kerning first=83 second=204 amount=-1 +kerning first=356 second=378 amount=-1 +kerning first=261 second=113 amount=-1 +kerning first=287 second=8222 amount=-1 +kerning first=350 second=323 amount=-1 +kerning first=80 second=83 amount=-1 +kerning first=67 second=207 amount=-1 +kerning first=248 second=378 amount=-1 +kerning first=1048 second=1041 amount=-1 +kerning first=198 second=75 amount=-1 +kerning first=72 second=46 amount=-1 +kerning first=1038 second=1099 amount=-1 +kerning first=84 second=113 amount=-1 +kerning first=281 second=116 amount=-1 +kerning first=280 second=207 amount=-1 +kerning first=89 second=259 amount=-1 +kerning first=89 second=197 amount=-1 +kerning first=8217 second=249 amount=-1 +kerning first=209 second=116 amount=-1 +kerning first=328 second=119 amount=-1 +kerning first=278 second=116 amount=-1 +kerning first=85 second=201 amount=-1 +kerning first=88 second=366 amount=-1 +kerning first=78 second=113 amount=-1 +kerning first=245 second=314 amount=-1 +kerning first=206 second=116 amount=-1 +kerning first=204 second=204 amount=-1 +kerning first=1057 second=1081 amount=-1 +kerning first=101 second=271 amount=-1 +kerning first=74 second=363 amount=-1 +kerning first=105 second=253 amount=-1 +kerning first=355 second=259 amount=-1 +kerning first=353 second=314 amount=-1 +kerning first=1071 second=1084 amount=-1 +kerning first=281 second=314 amount=-1 +kerning first=268 second=110 amount=-1 +kerning first=287 second=363 amount=-1 +kerning first=332 second=187 amount=-1 +kerning first=327 second=113 amount=-1 +kerning first=209 second=67 amount=-1 +kerning first=368 second=256 amount=-1 +kerning first=363 second=113 amount=-1 +kerning first=69 second=82 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=70 second=259 amount=-1 +kerning first=65 second=116 amount=-1 +kerning first=291 second=113 amount=-1 +kerning first=268 second=317 amount=-1 +kerning first=193 second=366 amount=-1 +kerning first=8218 second=240 amount=-1 +kerning first=304 second=317 amount=-1 +kerning first=73 second=210 amount=-1 +kerning first=219 second=113 amount=-1 +kerning first=87 second=213 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=282 second=73 amount=-1 +kerning first=8217 second=234 amount=-1 +kerning first=67 second=101 amount=-1 +kerning first=366 second=271 amount=-1 +kerning first=119 second=254 amount=-1 +kerning first=207 second=302 amount=-1 +kerning first=330 second=271 amount=-1 +kerning first=66 second=302 amount=-1 +kerning first=274 second=219 amount=-1 +kerning first=310 second=219 amount=-1 +kerning first=116 second=8250 amount=-1 +kerning first=199 second=268 amount=-1 +kerning first=202 second=219 amount=-1 +kerning first=243 second=8220 amount=-2 +kerning first=80 second=8250 amount=-1 +kerning first=77 second=296 amount=-1 +kerning first=316 second=101 amount=-1 +kerning first=279 second=122 amount=-1 +kerning first=259 second=277 amount=-1 +kerning first=1038 second=1113 amount=-1 +kerning first=198 second=262 amount=-1 +kerning first=339 second=311 amount=-1 +kerning first=69 second=73 amount=-1 +kerning first=323 second=317 amount=-1 +kerning first=207 second=122 amount=-1 +kerning first=203 second=290 amount=-1 +kerning first=243 second=122 amount=-1 +kerning first=334 second=203 amount=-1 +kerning first=281 second=380 amount=-1 +kerning first=68 second=218 amount=-1 +kerning first=367 second=277 amount=-1 +kerning first=195 second=311 amount=-1 +kerning first=98 second=345 amount=-1 +kerning first=1047 second=1102 amount=-1 +kerning first=231 second=311 amount=-1 +kerning first=210 second=73 amount=-1 +kerning first=1058 second=1087 amount=-1 +kerning first=234 second=235 amount=-1 +kerning first=296 second=283 amount=-1 +kerning first=268 second=290 amount=-1 +kerning first=8218 second=267 amount=-1 +kerning first=304 second=290 amount=-1 +kerning first=224 second=283 amount=-1 +kerning first=198 second=82 amount=-1 +kerning first=187 second=82 amount=-1 +kerning first=305 second=114 amount=-1 +kerning first=245 second=287 amount=-1 +kerning first=85 second=269 amount=-1 +kerning first=195 second=338 amount=-1 +kerning first=270 second=82 amount=-1 +kerning first=68 second=8222 amount=-1 +kerning first=104 second=287 amount=-1 +kerning first=315 second=8220 amount=-1 +kerning first=204 second=351 amount=-1 +kerning first=353 second=287 amount=-1 +kerning first=1053 second=1031 amount=-1 +kerning first=1044 second=1091 amount=-1 +kerning first=100 second=187 amount=-1 +kerning first=99 second=351 amount=-1 +kerning first=281 second=287 amount=-1 +kerning first=262 second=278 amount=-1 +kerning first=291 second=347 amount=-1 +kerning first=327 second=347 amount=-1 +kerning first=304 second=83 amount=-1 +kerning first=70 second=286 amount=-1 +kerning first=219 second=347 amount=-1 +kerning first=368 second=283 amount=-1 +kerning first=196 second=290 amount=-1 +kerning first=255 second=347 amount=-1 +kerning first=8217 second=81 amount=-1 +kerning first=347 second=171 amount=-1 +kerning first=267 second=104 amount=-1 +kerning first=187 second=70 amount=-1 +kerning first=228 second=333 amount=-1 +kerning first=1052 second=1099 amount=-1 +kerning first=87 second=333 amount=-1 +kerning first=195 second=104 amount=-1 +kerning first=117 second=244 amount=-1 +kerning first=80 second=278 amount=-1 +kerning first=231 second=104 amount=-1 +kerning first=272 second=274 amount=-1 +kerning first=1068 second=1101 amount=-1 +kerning first=264 second=333 amount=-1 +kerning first=200 second=274 amount=-1 +kerning first=330 second=244 amount=-1 +kerning first=1030 second=1094 amount=-1 +kerning first=366 second=244 amount=-1 +kerning first=259 second=8217 amount=-2 +kerning first=240 second=231 amount=-1 +kerning first=334 second=201 amount=-1 +kerning first=370 second=201 amount=-1 +kerning first=212 second=195 amount=-1 +kerning first=262 second=201 amount=-1 +kerning first=203 second=171 amount=-1 +kerning first=298 second=201 amount=-1 +kerning first=315 second=89 amount=-1 +kerning first=8250 second=310 amount=-1 +kerning first=339 second=104 amount=-1 +kerning first=99 second=231 amount=-1 +kerning first=311 second=171 amount=-1 +kerning first=354 second=100 amount=-1 +kerning first=287 second=316 amount=-1 +kerning first=374 second=71 amount=-1 +kerning first=305 second=269 amount=-1 +kerning first=1065 second=1088 amount=-1 +kerning first=280 second=362 amount=-1 +kerning first=338 second=71 amount=-1 +kerning first=283 second=106 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=270 second=87 amount=-1 +kerning first=233 second=269 amount=-1 +kerning first=352 second=362 amount=-1 +kerning first=266 second=71 amount=-1 +kerning first=219 second=266 amount=-1 +kerning first=8217 second=288 amount=-1 +kerning first=368 second=310 amount=-1 +kerning first=327 second=200 amount=-1 +kerning first=89 second=245 amount=-1 +kerning first=220 second=65 amount=-1 +kerning first=275 second=318 amount=-1 +kerning first=78 second=266 amount=-1 +kerning first=311 second=318 amount=-1 +kerning first=347 second=318 amount=-1 +kerning first=223 second=8222 amount=-1 +kerning first=364 second=65 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=67 second=362 amount=-1 +kerning first=118 second=8222 amount=-1 +kerning first=82 second=370 amount=-1 +kerning first=203 second=45 amount=-1 +kerning first=199 second=214 amount=-1 +kerning first=82 second=8222 amount=-1 +kerning first=207 second=275 amount=-1 +kerning first=194 second=71 amount=-1 +kerning first=103 second=231 amount=-1 +kerning first=69 second=199 amount=-1 +kerning first=279 second=275 amount=-1 +kerning first=311 second=45 amount=-1 +kerning first=89 second=71 amount=-1 +kerning first=347 second=45 amount=-1 +kerning first=196 second=371 amount=-1 +kerning first=354 second=226 amount=-1 +kerning first=235 second=8221 amount=-2 +kerning first=82 second=223 amount=-1 +kerning first=45 second=217 amount=-1 +kerning first=86 second=234 amount=-1 +kerning first=227 second=234 amount=-1 +kerning first=364 second=380 amount=-1 +kerning first=219 second=200 amount=-1 +kerning first=258 second=217 amount=-1 +kerning first=355 second=232 amount=-1 +kerning first=251 second=243 amount=-1 +kerning first=221 second=251 amount=-1 +kerning first=78 second=200 amount=-1 +kerning first=330 second=217 amount=-1 +kerning first=283 second=232 amount=-1 +kerning first=226 second=8220 amount=-2 +kerning first=323 second=243 amount=-1 +kerning first=327 second=266 amount=-1 +kerning first=287 second=243 amount=-1 +kerning first=65 second=89 amount=-1 +kerning first=203 second=345 amount=-1 +kerning first=70 second=232 amount=-1 +kerning first=241 second=8221 amount=-2 +kerning first=103 second=335 amount=-1 +kerning first=214 second=8250 amount=-1 +kerning first=275 second=345 amount=-1 +kerning first=277 second=8221 amount=-2 +kerning first=70 second=352 amount=-1 +kerning first=1054 second=1037 amount=-1 +kerning first=313 second=8221 amount=-1 +kerning first=73 second=44 amount=-1 +kerning first=310 second=105 amount=-1 +kerning first=233 second=242 amount=-1 +kerning first=283 second=99 amount=-1 +kerning first=203 second=72 amount=-1 +kerning first=269 second=242 amount=-1 +kerning first=106 second=232 amount=-1 +kerning first=228 second=267 amount=-1 +kerning first=230 second=98 amount=-1 +kerning first=199 second=241 amount=-1 +kerning first=268 second=344 amount=-1 +kerning first=263 second=234 amount=-1 +kerning first=194 second=98 amount=-1 +kerning first=74 second=336 amount=-1 +kerning first=1046 second=1096 amount=-1 +kerning first=104 second=233 amount=-1 +kerning first=87 second=267 amount=-1 +kerning first=368 second=284 amount=-1 +kerning first=67 second=335 amount=-1 +kerning first=1030 second=1028 amount=-1 +kerning first=266 second=98 amount=-1 +kerning first=323 second=336 amount=-1 +kerning first=281 second=233 amount=-1 +kerning first=218 second=80 amount=-1 +kerning first=99 second=378 amount=-1 +kerning first=1033 second=1045 amount=-1 +kerning first=298 second=114 amount=-1 +kerning first=209 second=233 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=282 second=199 amount=-1 +kerning first=77 second=80 amount=-1 +kerning first=1041 second=1079 amount=-1 +kerning first=1069 second=1045 amount=-1 +kerning first=362 second=80 amount=-1 +kerning first=240 second=378 amount=-1 +kerning first=121 second=114 amount=-1 +kerning first=246 second=46 amount=-1 +kerning first=1040 second=1094 amount=-1 +kerning first=290 second=80 amount=-1 +kerning first=204 second=378 amount=-1 +kerning first=354 second=46 amount=-1 +kerning first=366 second=268 amount=-1 +kerning first=226 second=114 amount=-1 +kerning first=1042 second=1046 amount=-1 +kerning first=8250 second=364 amount=-1 +kerning first=80 second=224 amount=-1 +kerning first=195 second=284 amount=-1 +kerning first=289 second=318 amount=-1 +kerning first=228 second=108 amount=-1 +kerning first=85 second=114 amount=-1 +kerning first=8217 second=261 amount=-1 +kerning first=83 second=310 amount=-1 +kerning first=220 second=353 amount=-1 +kerning first=199 second=115 amount=-1 +kerning first=74 second=216 amount=-1 +kerning first=356 second=115 amount=-1 +kerning first=235 second=115 amount=-1 +kerning first=187 second=250 amount=-1 +kerning first=100 second=8221 amount=-1 +kerning first=85 second=290 amount=-1 +kerning first=118 second=250 amount=-1 +kerning first=221 second=224 amount=-1 +kerning first=364 second=353 amount=-1 +kerning first=274 second=78 amount=-1 +kerning first=277 second=44 amount=-1 +kerning first=86 second=273 amount=-1 +kerning first=80 second=45 amount=-1 +kerning first=346 second=78 amount=-1 +kerning first=71 second=8249 amount=-1 +kerning first=1051 second=1098 amount=-1 +kerning first=107 second=8249 amount=-1 +kerning first=100 second=283 amount=-1 +kerning first=200 second=355 amount=-1 +kerning first=330 second=352 amount=-1 +kerning first=323 second=282 amount=-1 +kerning first=284 second=8249 amount=-1 +kerning first=366 second=352 amount=-1 +kerning first=199 second=8220 amount=-1 +kerning first=264 second=72 amount=-1 +kerning first=364 second=218 amount=-1 +kerning first=362 second=248 amount=-1 +kerning first=1052 second=1104 amount=-1 +kerning first=326 second=248 amount=-1 +kerning first=262 second=102 amount=-1 +kerning first=74 second=282 amount=-1 +kerning first=220 second=218 amount=-1 +kerning first=102 second=44 amount=-1 +kerning first=218 second=248 amount=-1 +kerning first=370 second=102 amount=-1 +kerning first=267 second=263 amount=-1 +kerning first=1027 second=1089 amount=-1 +kerning first=334 second=87 amount=-1 +kerning first=68 second=75 amount=-1 +kerning first=68 second=206 amount=-1 +kerning first=229 second=101 amount=-1 +kerning first=1042 second=1031 amount=-1 +kerning first=347 second=291 amount=-1 +kerning first=69 second=361 amount=-1 +kerning first=311 second=291 amount=-1 +kerning first=1054 second=1024 amount=-1 +kerning first=282 second=361 amount=-1 +kerning first=275 second=291 amount=-1 +kerning first=271 second=279 amount=-1 +kerning first=119 second=345 amount=-1 +kerning first=206 second=230 amount=-1 +kerning first=209 second=206 amount=-1 +kerning first=1059 second=1100 amount=-1 +kerning first=86 second=288 amount=-1 +kerning first=335 second=8218 amount=-1 +kerning first=1039 second=1080 amount=-1 +kerning first=75 second=8221 amount=-1 +kerning first=368 second=337 amount=-1 +kerning first=111 second=8221 amount=-2 +kerning first=263 second=8218 amount=-1 +kerning first=262 second=8221 amount=-1 +kerning first=75 second=81 amount=-1 +kerning first=296 second=337 amount=-1 +kerning first=216 second=8221 amount=-2 +kerning first=1064 second=1095 amount=-1 +kerning first=67 second=227 amount=-1 +kerning first=252 second=8221 amount=-1 +kerning first=224 second=337 amount=-1 +kerning first=1054 second=1064 amount=-1 +kerning first=288 second=8221 amount=-1 +kerning first=1052 second=1079 amount=-1 +kerning first=80 second=197 amount=-1 +kerning first=198 second=368 amount=-1 +kerning first=45 second=325 amount=-1 +kerning first=302 second=266 amount=-1 +kerning first=197 second=362 amount=-1 +kerning first=199 second=187 amount=-1 +kerning first=70 second=351 amount=-1 +kerning first=266 second=266 amount=-1 +kerning first=352 second=200 amount=-1 +kerning first=204 second=262 amount=-1 +kerning first=374 second=266 amount=-1 +kerning first=81 second=325 amount=-1 +kerning first=87 second=99 amount=-1 +kerning first=338 second=266 amount=-1 +kerning first=85 second=75 amount=-1 +kerning first=280 second=200 amount=-1 +kerning first=307 second=187 amount=-1 +kerning first=1052 second=1077 amount=-1 +kerning first=89 second=266 amount=-1 +kerning first=235 second=187 amount=-1 +kerning first=228 second=99 amount=-1 +kerning first=86 second=8218 amount=-2 +kerning first=271 second=187 amount=-1 +kerning first=264 second=99 amount=-1 +kerning first=266 second=219 amount=-1 +kerning first=107 second=8222 amount=-1 +kerning first=366 second=325 amount=-1 +kerning first=205 second=71 amount=-1 +kerning first=71 second=8222 amount=-1 +kerning first=275 second=279 amount=-1 +kerning first=231 second=353 amount=-1 +kerning first=199 second=202 amount=-1 +kerning first=326 second=275 amount=-1 +kerning first=370 second=75 amount=-1 +kerning first=334 second=75 amount=-1 +kerning first=298 second=75 amount=-1 +kerning first=266 second=8218 amount=-1 +kerning first=362 second=275 amount=-1 +kerning first=262 second=75 amount=-1 +kerning first=187 second=192 amount=-1 +kerning first=263 second=245 amount=-1 +kerning first=211 second=78 amount=-1 +kerning first=346 second=66 amount=-1 +kerning first=1052 second=1052 amount=-1 +kerning first=274 second=66 amount=-1 +kerning first=221 second=371 amount=-1 +kerning first=69 second=334 amount=-1 +kerning first=286 second=69 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=202 second=66 amount=-1 +kerning first=366 second=249 amount=-1 +kerning first=1039 second=1107 amount=-1 +kerning first=200 second=367 amount=-1 +kerning first=1064 second=1068 amount=-1 +kerning first=209 second=380 amount=-1 +kerning first=67 second=200 amount=-1 +kerning first=211 second=205 amount=-1 +kerning first=70 second=205 amount=-1 +kerning first=323 second=270 amount=-1 +kerning first=214 second=69 amount=-1 +kerning first=206 second=257 amount=-1 +kerning first=245 second=380 amount=-1 +kerning first=310 second=284 amount=-1 +kerning first=263 second=273 amount=-1 +kerning first=366 second=350 amount=-1 +kerning first=1071 second=1030 amount=-1 +kerning first=70 second=193 amount=-1 +kerning first=368 second=364 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=86 second=261 amount=-1 +kerning first=268 second=209 amount=-1 +kerning first=296 second=364 amount=-1 +kerning first=218 second=194 amount=-1 +kerning first=344 second=286 amount=-1 +kerning first=73 second=355 amount=-1 +kerning first=207 second=68 amount=-1 +kerning first=339 second=365 amount=-1 +kerning first=200 second=286 amount=-1 +kerning first=8217 second=273 amount=-1 +kerning first=375 second=365 amount=-1 +kerning first=232 second=263 amount=-1 +kerning first=267 second=365 amount=-1 +kerning first=81 second=298 amount=-1 +kerning first=109 second=171 amount=-1 +kerning first=268 second=263 amount=-1 +kerning first=66 second=68 amount=-1 +kerning first=45 second=298 amount=-1 +kerning first=304 second=263 amount=-1 +kerning first=195 second=365 amount=-1 +kerning first=350 second=203 amount=-1 +kerning first=231 second=365 amount=-1 +kerning first=323 second=351 amount=-1 +kerning first=69 second=332 amount=-1 +kerning first=99 second=117 amount=-1 +kerning first=351 second=8218 amount=-1 +kerning first=199 second=229 amount=-1 +kerning first=282 second=332 amount=-1 +kerning first=1042 second=1085 amount=-1 +kerning first=1046 second=1108 amount=-1 +kerning first=278 second=203 amount=-1 +kerning first=366 second=298 amount=-1 +kerning first=1073 second=1083 amount=-1 +kerning first=8217 second=217 amount=-1 +kerning first=210 second=69 amount=-1 +kerning first=211 second=220 amount=-1 +kerning first=219 second=332 amount=-1 +kerning first=267 second=242 amount=-1 +kerning first=81 second=323 amount=-1 +kerning first=88 second=217 amount=-1 +kerning first=1047 second=1048 amount=-1 +kerning first=1052 second=1025 amount=-1 +kerning first=45 second=323 amount=-1 +kerning first=70 second=220 amount=-1 +kerning first=214 second=66 amount=-1 +kerning first=263 second=246 amount=-1 +kerning first=315 second=356 amount=-1 +kerning first=227 second=246 amount=-1 +kerning first=67 second=281 amount=-1 +kerning first=305 second=103 amount=-1 +kerning first=103 second=281 amount=-1 +kerning first=82 second=211 amount=-1 +kerning first=233 second=103 amount=-1 +kerning first=86 second=246 amount=-1 +kerning first=212 second=304 amount=-1 +kerning first=205 second=330 amount=-1 +kerning first=362 second=194 amount=-1 +kerning first=199 second=100 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=284 second=304 amount=-1 +kerning first=366 second=323 amount=-1 +kerning first=316 second=281 amount=-1 +kerning first=330 second=323 amount=-1 +kerning first=235 second=100 amount=-1 +kerning first=71 second=304 amount=-1 +kerning first=1058 second=1077 amount=-1 +kerning first=220 second=245 amount=-1 +kerning first=187 second=109 amount=-1 +kerning first=210 second=280 amount=-1 +kerning first=74 second=231 amount=-1 +kerning first=1030 second=1067 amount=-1 +kerning first=282 second=280 amount=-1 +kerning first=364 second=8217 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=110 amount=-1 +kerning first=203 second=210 amount=-1 +kerning first=272 second=313 amount=-1 +kerning first=221 second=110 amount=-1 +kerning first=8217 second=369 amount=-1 +kerning first=229 second=339 amount=-1 +kerning first=8218 second=213 amount=-1 +kerning first=287 second=324 amount=-1 +kerning first=354 second=8250 amount=-1 +kerning first=364 second=245 amount=-1 +kerning first=328 second=245 amount=-1 +kerning first=200 second=313 amount=-1 +kerning first=282 second=8250 amount=-1 +kerning first=70 second=118 amount=-1 +kerning first=205 second=357 amount=-1 +kerning first=1077 second=1118 amount=-1 +kerning first=277 second=357 amount=-1 +kerning first=105 second=8250 amount=-1 +kerning first=374 second=212 amount=-1 +kerning first=69 second=8250 amount=-1 +kerning first=255 second=8220 amount=-2 +kerning first=234 second=289 amount=-1 +kerning first=1049 second=1101 amount=-1 +kerning first=254 second=120 amount=-1 +kerning first=314 second=101 amount=-1 +kerning first=8250 second=270 amount=-1 +kerning first=269 second=101 amount=-1 +kerning first=8218 second=86 amount=-2 +kerning first=81 second=296 amount=-1 +kerning first=266 second=212 amount=-1 +kerning first=220 second=8217 amount=-1 +kerning first=45 second=296 amount=-1 +kerning first=302 second=212 amount=-1 +kerning first=256 second=8217 amount=-2 +kerning first=73 second=111 amount=-1 +kerning first=338 second=212 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=89 second=212 amount=-1 +kerning first=67 second=254 amount=-1 +kerning first=69 second=280 amount=-1 +kerning first=79 second=8217 amount=-2 +kerning first=250 second=111 amount=-1 +kerning first=194 second=212 amount=-1 +kerning first=103 second=254 amount=-1 +kerning first=115 second=8217 amount=-2 +kerning first=291 second=335 amount=-1 +kerning first=67 second=347 amount=-1 +kerning first=366 second=296 amount=-1 +kerning first=368 second=241 amount=-1 +kerning first=363 second=335 amount=-1 +kerning first=330 second=296 amount=-1 +kerning first=345 second=228 amount=-1 +kerning first=327 second=335 amount=-1 +kerning first=296 second=241 amount=-1 +kerning first=304 second=85 amount=-1 +kerning first=1052 second=1080 amount=-1 +kerning first=268 second=85 amount=-1 +kerning first=196 second=85 amount=-1 +kerning first=1031 second=1056 amount=-1 +kerning first=234 second=287 amount=-1 +kerning first=196 second=8220 amount=-2 +kerning first=192 second=364 amount=-1 +kerning first=219 second=231 amount=-1 +kerning first=235 second=46 amount=-1 +kerning first=268 second=8220 amount=-1 +kerning first=89 second=65 amount=-1 +kerning first=77 second=339 amount=-1 +kerning first=72 second=229 amount=-1 +kerning first=269 second=271 amount=-1 +kerning first=268 second=302 amount=-1 +kerning first=249 second=243 amount=-1 +kerning first=233 second=271 amount=-1 +kerning first=73 second=225 amount=-1 +kerning first=304 second=302 amount=-1 +kerning first=78 second=335 amount=-1 +kerning first=364 second=83 amount=-1 +kerning first=1057 second=1096 amount=-1 +kerning first=219 second=335 amount=-1 +kerning first=245 second=187 amount=-1 +kerning first=364 second=284 amount=-1 +kerning first=204 second=206 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=104 second=289 amount=-1 +kerning first=245 second=289 amount=-1 +kerning first=321 second=86 amount=-1 +kerning first=8250 second=78 amount=-1 +kerning first=207 second=344 amount=-1 +kerning first=220 second=284 amount=-1 +kerning first=281 second=289 amount=-1 +kerning first=207 second=80 amount=-1 +kerning first=323 second=378 amount=-1 +kerning first=199 second=46 amount=-1 +kerning first=352 second=76 amount=-1 +kerning first=1038 second=1094 amount=-1 +kerning first=202 second=207 amount=-1 +kerning first=287 second=378 amount=-1 +kerning first=353 second=289 amount=-1 +kerning first=287 second=353 amount=-1 +kerning first=280 second=76 amount=-1 +kerning first=193 second=79 amount=-1 +kerning first=267 second=353 amount=-1 +kerning first=100 second=114 amount=-1 +kerning first=375 second=353 amount=-1 +kerning first=195 second=89 amount=-1 +kerning first=339 second=353 amount=-1 +kerning first=370 second=337 amount=-1 +kerning first=282 second=278 amount=-1 +kerning first=74 second=378 amount=-1 +kerning first=230 second=357 amount=-1 +kerning first=8217 second=350 amount=-1 +kerning first=262 second=216 amount=-1 +kerning first=80 second=280 amount=-1 +kerning first=249 second=246 amount=-1 +kerning first=66 second=344 amount=-1 +kerning first=67 second=76 amount=-1 +kerning first=266 second=357 amount=-1 +kerning first=1104 second=1118 amount=-1 +kerning first=266 second=113 amount=-1 +kerning first=302 second=113 amount=-1 +kerning first=1060 second=1084 amount=-1 +kerning first=218 second=114 amount=-1 +kerning first=230 second=113 amount=-1 +kerning first=201 second=201 amount=-1 +kerning first=117 second=269 amount=-1 +kerning first=1055 second=1094 amount=-1 +kerning first=89 second=113 amount=-1 +kerning first=330 second=269 amount=-1 +kerning first=1091 second=1094 amount=-1 +kerning first=214 second=198 amount=-1 +kerning first=366 second=269 amount=-1 +kerning first=195 second=116 amount=-1 +kerning first=65 second=104 amount=-1 +kerning first=274 second=207 amount=-1 +kerning first=1066 second=1045 amount=-1 +kerning first=253 second=8220 amount=-2 +kerning first=346 second=207 amount=-1 +kerning first=213 second=256 amount=-1 +kerning first=364 second=67 amount=-1 +kerning first=368 second=268 amount=-1 +kerning first=333 second=287 amount=-1 +kerning first=374 second=113 amount=-1 +kerning first=86 second=369 amount=-1 +kerning first=77 second=366 amount=-1 +kerning first=220 second=67 amount=-1 +kerning first=279 second=107 amount=-1 +kerning first=77 second=122 amount=-1 +kerning first=1046 second=1102 amount=-1 +kerning first=270 second=260 amount=-1 +kerning first=356 second=277 amount=-1 +kerning first=263 second=250 amount=-1 +kerning first=199 second=73 amount=-1 +kerning first=66 second=317 amount=-1 +kerning first=209 second=262 amount=-1 +kerning first=207 second=317 amount=-1 +kerning first=74 second=351 amount=-1 +kerning first=321 second=219 amount=-1 +kerning first=69 second=251 amount=-1 +kerning first=213 second=219 amount=-1 +kerning first=339 second=116 amount=-1 +kerning first=65 second=375 amount=-1 +kerning first=362 second=122 amount=-1 +kerning first=1036 second=1102 amount=-1 +kerning first=267 second=326 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=254 second=122 amount=-1 +kerning first=231 second=326 amount=-1 +kerning first=8222 second=356 amount=-1 +kerning first=66 second=218 amount=-1 +kerning first=1056 second=1117 amount=-1 +kerning first=1050 second=1038 amount=-1 +kerning first=282 second=251 amount=-1 +kerning first=72 second=219 amount=-1 +kerning first=218 second=122 amount=-1 +kerning first=1068 second=1061 amount=-1 +kerning first=8250 second=219 amount=-1 +kerning first=350 second=218 amount=-1 +kerning first=262 second=270 amount=-1 +kerning first=304 second=248 amount=-1 +kerning first=89 second=8221 amount=-1 +kerning first=72 second=283 amount=-1 +kerning first=267 second=380 amount=-1 +kerning first=278 second=218 amount=-1 +kerning first=108 second=283 amount=-1 +kerning first=231 second=380 amount=-1 +kerning first=194 second=8221 amount=-2 +kerning first=1049 second=1089 amount=-1 +kerning first=339 second=380 amount=-1 +kerning first=370 second=270 amount=-1 +kerning first=206 second=218 amount=-1 +kerning first=117 second=242 amount=-1 +kerning first=230 second=8221 amount=-2 +kerning first=201 second=75 amount=-1 +kerning first=229 second=231 amount=-1 +kerning first=266 second=8221 amount=-1 +kerning first=85 second=336 amount=-1 +kerning first=298 second=270 amount=-1 +kerning first=268 second=248 amount=-1 +kerning first=114 second=44 amount=-1 +kerning first=375 second=380 amount=-1 +kerning first=334 second=270 amount=-1 +kerning first=65 second=218 amount=-1 +kerning first=232 second=248 amount=-1 +kerning first=338 second=8221 amount=-1 +kerning first=200 second=79 amount=-1 +kerning first=218 second=209 amount=-1 +kerning first=374 second=8221 amount=-1 +kerning first=212 second=196 amount=-1 +kerning first=221 second=226 amount=-1 +kerning first=262 second=336 amount=-1 +kerning first=298 second=336 amount=-1 +kerning first=77 second=209 amount=-1 +kerning first=8250 second=241 amount=-1 +kerning first=80 second=225 amount=-1 +kerning first=370 second=336 amount=-1 +kerning first=85 second=270 amount=-1 +kerning first=249 second=283 amount=-1 +kerning first=366 second=242 amount=-1 +kerning first=364 second=257 amount=-1 +kerning first=233 second=244 amount=-1 +kerning first=269 second=244 amount=-1 +kerning first=272 second=205 amount=-1 +kerning first=305 second=244 amount=-1 +kerning first=71 second=70 amount=-1 +kerning first=78 second=209 amount=-1 +kerning first=8222 second=275 amount=-1 +kerning first=1101 second=1113 amount=-1 +kerning first=72 second=199 amount=-1 +kerning first=284 second=8222 amount=-1 +kerning first=344 second=79 amount=-1 +kerning first=202 second=327 amount=-1 +kerning first=248 second=8222 amount=-1 +kerning first=212 second=8222 amount=-1 +kerning first=274 second=327 amount=-1 +kerning first=106 second=8220 amount=-1 +kerning first=115 second=8221 amount=-2 +kerning first=213 second=192 amount=-1 +kerning first=327 second=44 amount=-1 +kerning first=346 second=327 amount=-1 +kerning first=261 second=8217 amount=-2 +kerning first=291 second=318 amount=-1 +kerning first=255 second=44 amount=-1 +kerning first=104 second=235 amount=-1 +kerning first=193 second=44 amount=-1 +kerning first=291 second=44 amount=-1 +kerning first=99 second=110 amount=-1 +kerning first=200 second=205 amount=-1 +kerning first=209 second=235 amount=-1 +kerning first=374 second=227 amount=-1 +kerning first=212 second=70 amount=-1 +kerning first=281 second=235 amount=-1 +kerning first=302 second=227 amount=-1 +kerning first=270 second=347 amount=-1 +kerning first=284 second=70 amount=-1 +kerning first=266 second=227 amount=-1 +kerning first=100 second=171 amount=-1 +kerning first=219 second=71 amount=-1 +kerning first=85 second=363 amount=-1 +kerning first=117 second=289 amount=-1 +kerning first=121 second=363 amount=-1 +kerning first=67 second=266 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=368 second=214 amount=-1 +kerning first=368 second=115 amount=-1 +kerning first=198 second=370 amount=-1 +kerning first=85 second=243 amount=-1 +kerning first=304 second=275 amount=-1 +kerning first=213 second=310 amount=-1 +kerning first=354 second=224 amount=-1 +kerning first=296 second=214 amount=-1 +kerning first=226 second=243 amount=-1 +kerning first=370 second=363 amount=-1 +kerning first=87 second=45 amount=-2 +kerning first=268 second=275 amount=-1 +kerning first=219 second=362 amount=-1 +kerning first=270 second=370 amount=-1 +kerning first=232 second=275 amount=-1 +kerning first=284 second=223 amount=-1 +kerning first=228 second=45 amount=-1 +kerning first=1104 second=1081 amount=-1 +kerning first=264 second=45 amount=-1 +kerning first=221 second=199 amount=-1 +kerning first=277 second=249 amount=-1 +kerning first=192 second=45 amount=-1 +kerning first=1028 second=1097 amount=-1 +kerning first=71 second=223 amount=-1 +kerning first=1064 second=1097 amount=-1 +kerning first=97 second=234 amount=-1 +kerning first=241 second=235 amount=-1 +kerning first=220 second=257 amount=-1 +kerning first=1055 second=1028 amount=-1 +kerning first=338 second=216 amount=-1 +kerning first=1056 second=1063 amount=-1 +kerning first=217 second=267 amount=-1 +kerning first=197 second=217 amount=-1 +kerning first=78 second=362 amount=-1 +kerning first=290 second=209 amount=-1 +kerning first=325 second=267 amount=-1 +kerning first=338 second=200 amount=-1 +kerning first=298 second=243 amount=-1 +kerning first=1089 second=1095 amount=-1 +kerning first=82 second=368 amount=-1 +kerning first=302 second=200 amount=-1 +kerning first=262 second=243 amount=-1 +kerning first=73 second=345 amount=-1 +kerning first=266 second=200 amount=-1 +kerning first=66 second=371 amount=-1 +kerning first=109 second=345 amount=-1 +kerning first=45 second=379 amount=-1 +kerning first=1044 second=1072 amount=-1 +kerning first=187 second=368 amount=-1 +kerning first=356 second=97 amount=-1 +kerning first=100 second=248 amount=-1 +kerning first=250 second=345 amount=-1 +kerning first=280 second=266 amount=-1 +kerning first=286 second=345 amount=-1 +kerning first=8218 second=99 amount=-1 +kerning first=1030 second=1049 amount=-1 +kerning first=202 second=8218 amount=-1 +kerning first=339 second=245 amount=-1 +kerning first=315 second=221 amount=-1 +kerning first=8218 second=378 amount=-1 +kerning first=68 second=370 amount=-1 +kerning first=346 second=8218 amount=-1 +kerning first=267 second=245 amount=-1 +kerning first=66 second=221 amount=-1 +kerning first=274 second=315 amount=-1 +kerning first=210 second=197 amount=-1 +kerning first=317 second=370 amount=-1 +kerning first=310 second=8218 amount=-1 +kerning first=231 second=245 amount=-1 +kerning first=209 second=370 amount=-1 +kerning first=274 second=8218 amount=-1 +kerning first=1067 second=1073 amount=-1 +kerning first=171 second=221 amount=-1 +kerning first=202 second=315 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=362 second=258 amount=-1 +kerning first=1050 second=1092 amount=-1 +kerning first=350 second=46 amount=-1 +kerning first=196 second=199 amount=-1 +kerning first=1038 second=1101 amount=-1 +kerning first=338 second=249 amount=-1 +kerning first=200 second=45 amount=-1 +kerning first=231 second=117 amount=-1 +kerning first=304 second=199 amount=-1 +kerning first=89 second=249 amount=-1 +kerning first=1065 second=1086 amount=-1 +kerning first=267 second=230 amount=-1 +kerning first=1056 second=1024 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=70 second=350 amount=-1 +kerning first=314 second=267 amount=-1 +kerning first=280 second=217 amount=-1 +kerning first=1053 second=1068 amount=-1 +kerning first=219 second=212 amount=-1 +kerning first=352 second=217 amount=-1 +kerning first=101 second=267 amount=-1 +kerning first=8222 second=226 amount=-1 +kerning first=277 second=271 amount=-1 +kerning first=327 second=212 amount=-1 +kerning first=206 second=267 amount=-1 +kerning first=201 second=8249 amount=-1 +kerning first=72 second=310 amount=-1 +kerning first=245 second=122 amount=-1 +kerning first=78 second=212 amount=-1 +kerning first=225 second=111 amount=-1 +kerning first=296 second=115 amount=-1 +kerning first=346 second=315 amount=-1 +kerning first=8222 second=253 amount=-1 +kerning first=261 second=111 amount=-1 +kerning first=218 second=258 amount=-1 +kerning first=1039 second=1101 amount=-1 +kerning first=345 second=8249 amount=-1 +kerning first=240 second=242 amount=-1 +kerning first=194 second=67 amount=-1 +kerning first=1062 second=1098 amount=-1 +kerning first=369 second=111 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=255 second=254 amount=-1 +kerning first=291 second=254 amount=-1 +kerning first=194 second=44 amount=-1 +kerning first=195 second=218 amount=-1 +kerning first=1050 second=1119 amount=-1 +kerning first=270 second=323 amount=-1 +kerning first=205 second=81 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=220 second=380 amount=-1 +kerning first=272 second=193 amount=-1 +kerning first=279 second=248 amount=-1 +kerning first=230 second=44 amount=-1 +kerning first=1068 second=1027 amount=-1 +kerning first=1039 second=1117 amount=-1 +kerning first=266 second=44 amount=-1 +kerning first=66 second=209 amount=-1 +kerning first=370 second=282 amount=-1 +kerning first=314 second=337 amount=-1 +kerning first=72 second=78 amount=-1 +kerning first=334 second=282 amount=-1 +kerning first=213 second=78 amount=-1 +kerning first=298 second=282 amount=-1 +kerning first=1067 second=1097 amount=-1 +kerning first=207 second=248 amount=-1 +kerning first=262 second=282 amount=-1 +kerning first=325 second=72 amount=-1 +kerning first=8250 second=214 amount=-1 +kerning first=325 second=202 amount=-1 +kerning first=1055 second=1055 amount=-1 +kerning first=78 second=227 amount=-1 +kerning first=85 second=282 amount=-1 +kerning first=1053 second=1041 amount=-1 +kerning first=73 second=279 amount=-1 +kerning first=109 second=279 amount=-1 +kerning first=218 second=224 amount=-1 +kerning first=231 second=230 amount=-1 +kerning first=221 second=361 amount=-1 +kerning first=199 second=332 amount=-1 +kerning first=1067 second=1054 amount=-1 +kerning first=274 second=187 amount=-1 +kerning first=274 second=288 amount=-1 +kerning first=327 second=330 amount=-1 +kerning first=70 second=323 amount=-1 +kerning first=206 second=278 amount=-1 +kerning first=327 second=227 amount=-1 +kerning first=374 second=44 amount=-1 +kerning first=224 second=187 amount=-1 +kerning first=212 second=270 amount=-1 +kerning first=108 second=337 amount=-1 +kerning first=202 second=288 amount=-1 +kerning first=260 second=187 amount=-1 +kerning first=109 second=291 amount=-1 +kerning first=72 second=337 amount=-1 +kerning first=219 second=227 amount=-1 +kerning first=1067 second=1094 amount=-1 +kerning first=1067 second=1057 amount=-1 +kerning first=8249 second=368 amount=-1 +kerning first=310 second=288 amount=-1 +kerning first=368 second=187 amount=-2 +kerning first=211 second=323 amount=-1 +kerning first=345 second=8222 amount=-1 +kerning first=220 second=338 amount=-1 +kerning first=1055 second=1067 amount=-1 +kerning first=8222 second=199 amount=-1 +kerning first=118 second=314 amount=-1 +kerning first=1051 second=1034 amount=-1 +kerning first=194 second=303 amount=-1 +kerning first=84 second=259 amount=-1 +kerning first=217 second=99 amount=-1 +kerning first=78 second=281 amount=-1 +kerning first=65 second=8250 amount=-1 +kerning first=325 second=99 amount=-1 +kerning first=66 second=290 amount=-1 +kerning first=259 second=314 amount=-1 +kerning first=202 second=369 amount=-1 +kerning first=72 second=268 amount=-1 +kerning first=296 second=73 amount=-1 +kerning first=1091 second=1082 amount=-1 +kerning first=223 second=314 amount=-1 +kerning first=83 second=202 amount=-1 +kerning first=289 second=99 amount=-1 +kerning first=1046 second=1091 amount=-1 +kerning first=307 second=8250 amount=-1 +kerning first=368 second=73 amount=-1 +kerning first=207 second=290 amount=-1 +kerning first=333 second=382 amount=-1 +kerning first=271 second=8250 amount=-1 +kerning first=298 second=279 amount=-1 +kerning first=235 second=8250 amount=-1 +kerning first=346 second=369 amount=-1 +kerning first=199 second=8250 amount=-1 +kerning first=310 second=369 amount=-1 +kerning first=245 second=316 amount=-1 +kerning first=1067 second=1089 amount=-1 +kerning first=274 second=369 amount=-1 +kerning first=103 second=347 amount=-1 +kerning first=98 second=103 amount=-1 +kerning first=80 second=334 amount=-1 +kerning first=121 second=351 amount=-1 +kerning first=296 second=202 amount=-1 +kerning first=72 second=364 amount=-1 +kerning first=85 second=351 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=368 second=202 amount=-1 +kerning first=90 second=8217 amount=-1 +kerning first=1067 second=1100 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=334 second=351 amount=-1 +kerning first=298 second=351 amount=-1 +kerning first=262 second=351 amount=-1 +kerning first=73 second=264 amount=-1 +kerning first=212 second=82 amount=-1 +kerning first=339 second=8217 amount=-2 +kerning first=1053 second=1092 amount=-1 +kerning first=284 second=82 amount=-1 +kerning first=375 second=8217 amount=-2 +kerning first=272 second=374 amount=-1 +kerning first=321 second=364 amount=-1 +kerning first=1043 second=1091 amount=-1 +kerning first=364 second=338 amount=-1 +kerning first=70 second=296 amount=-1 +kerning first=366 second=101 amount=-1 +kerning first=231 second=8217 amount=-2 +kerning first=213 second=364 amount=-1 +kerning first=330 second=101 amount=-1 +kerning first=277 second=108 amount=-1 +kerning first=290 second=68 amount=-1 +kerning first=207 second=263 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=364 second=365 amount=-1 +kerning first=84 second=171 amount=-1 +kerning first=211 second=296 amount=-1 +kerning first=229 second=45 amount=-1 +kerning first=120 second=171 amount=-1 +kerning first=362 second=68 amount=-1 +kerning first=279 second=263 amount=-1 +kerning first=67 second=103 amount=-1 +kerning first=1048 second=1039 amount=-1 +kerning first=338 second=330 amount=-1 +kerning first=1053 second=1076 amount=-1 +kerning first=225 second=171 amount=-1 +kerning first=302 second=330 amount=-1 +kerning first=220 second=365 amount=-1 +kerning first=261 second=171 amount=-1 +kerning first=227 second=281 amount=-1 +kerning first=218 second=68 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=209 second=97 amount=-1 +kerning first=370 second=351 amount=-1 +kerning first=259 second=287 amount=-1 +kerning first=223 second=287 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=187 second=66 amount=-1 +kerning first=118 second=287 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=362 second=339 amount=-1 +kerning first=326 second=339 amount=-1 +kerning first=367 second=287 amount=-1 +kerning first=281 second=316 amount=-1 +kerning first=1031 second=1031 amount=-1 +kerning first=305 second=283 amount=-1 +kerning first=330 second=103 amount=-1 +kerning first=69 second=66 amount=-1 +kerning first=353 second=316 amount=-1 +kerning first=218 second=339 amount=-1 +kerning first=368 second=100 amount=-1 +kerning first=296 second=229 amount=-1 +kerning first=84 second=382 amount=-1 +kerning first=368 second=229 amount=-1 +kerning first=196 second=356 amount=-1 +kerning first=344 second=220 amount=-1 +kerning first=199 second=278 amount=-1 +kerning first=1043 second=1118 amount=-1 +kerning first=219 second=281 amount=-1 +kerning first=77 second=68 amount=-1 +kerning first=266 second=330 amount=-1 +kerning first=291 second=281 amount=-1 +kerning first=74 second=311 amount=-1 +kerning first=73 second=333 amount=-1 +kerning first=1044 second=1060 amount=-1 +kerning first=350 second=77 amount=-1 +kerning first=327 second=281 amount=-1 +kerning first=200 second=220 amount=-1 +kerning first=1067 second=1031 amount=-1 +kerning first=316 second=103 amount=-1 +kerning first=278 second=77 amount=-1 +kerning first=97 second=246 amount=-1 +kerning first=272 second=220 amount=-1 +kerning first=244 second=103 amount=-1 +kerning first=250 second=333 amount=-1 +kerning first=201 second=304 amount=-1 +kerning first=323 second=362 amount=-1 +kerning first=1047 second=1065 amount=-1 +kerning first=70 second=269 amount=-1 +kerning first=67 second=298 amount=-1 +kerning first=296 second=246 amount=-1 +kerning first=1047 second=1063 amount=-1 +kerning first=232 second=100 amount=-1 +kerning first=193 second=356 amount=-1 +kerning first=8218 second=230 amount=-1 +kerning first=8249 second=87 amount=-1 +kerning first=330 second=74 amount=-1 +kerning first=224 second=246 amount=-1 +kerning first=304 second=100 amount=-1 +kerning first=366 second=74 amount=-1 +kerning first=219 second=330 amount=-1 +kerning first=214 second=220 amount=-1 +kerning first=241 second=171 amount=-1 +kerning first=268 second=100 amount=-1 +kerning first=1031 second=1117 amount=-1 +kerning first=106 second=269 amount=-1 +kerning first=352 second=298 amount=-1 +kerning first=78 second=103 amount=-1 +kerning first=209 second=77 amount=-1 +kerning first=355 second=269 amount=-1 +kerning first=206 second=333 amount=-1 +kerning first=364 second=109 amount=-1 +kerning first=8222 second=334 amount=-1 +kerning first=209 second=304 amount=-1 +kerning first=298 second=211 amount=-1 +kerning first=283 second=269 amount=-1 +kerning first=101 second=333 amount=-1 +kerning first=262 second=211 amount=-1 +kerning first=1031 second=1096 amount=-1 +kerning first=115 second=289 amount=-1 +kerning first=270 second=65 amount=-1 +kerning first=98 second=382 amount=-1 +kerning first=217 second=365 amount=-1 +kerning first=281 second=8222 amount=-1 +kerning first=68 second=304 amount=-1 +kerning first=85 second=211 amount=-1 +kerning first=80 second=68 amount=-1 +kerning first=253 second=365 amount=-1 +kerning first=314 second=333 amount=-1 +kerning first=187 second=260 amount=-1 +kerning first=252 second=244 amount=-1 +kerning first=207 second=339 amount=-1 +kerning first=117 second=281 amount=-1 +kerning first=264 second=353 amount=-1 +kerning first=197 second=86 amount=-1 +kerning first=279 second=339 amount=-1 +kerning first=277 second=347 amount=-1 +kerning first=338 second=315 amount=-1 +kerning first=220 second=109 amount=-1 +kerning first=1071 second=1074 amount=-1 +kerning first=205 second=347 amount=-1 +kerning first=330 second=281 amount=-1 +kerning first=266 second=315 amount=-1 +kerning first=1043 second=1108 amount=-1 +kerning first=196 second=307 amount=-1 +kerning first=1048 second=1051 amount=-1 +kerning first=366 second=281 amount=-1 +kerning first=302 second=315 amount=-1 +kerning first=346 second=202 amount=-1 +kerning first=1059 second=1083 amount=-1 +kerning first=380 second=8221 amount=-1 +kerning first=282 second=290 amount=-1 +kerning first=1067 second=1117 amount=-1 +kerning first=1049 second=1057 amount=-1 +kerning first=193 second=119 amount=-1 +kerning first=78 second=330 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=200 second=264 amount=-1 +kerning first=235 second=251 amount=-1 +kerning first=277 second=120 amount=-1 +kerning first=274 second=202 amount=-1 +kerning first=8218 second=242 amount=-1 +kerning first=363 second=103 amount=-1 +kerning first=83 second=219 amount=-1 +kerning first=78 second=76 amount=-1 +kerning first=234 second=8217 amount=-2 +kerning first=228 second=269 amount=-1 +kerning first=264 second=77 amount=-1 +kerning first=1057 second=1118 amount=-1 +kerning first=270 second=8217 amount=-2 +kerning first=78 second=8221 amount=-1 +kerning first=325 second=274 amount=-1 +kerning first=114 second=8221 amount=-1 +kerning first=67 second=271 amount=-1 +kerning first=75 second=212 amount=-1 +kerning first=206 second=345 amount=-1 +kerning first=219 second=8221 amount=-1 +kerning first=217 second=111 amount=-1 +kerning first=315 second=85 amount=-1 +kerning first=291 second=8221 amount=-2 +kerning first=258 second=254 amount=-1 +kerning first=289 second=111 amount=-1 +kerning first=234 second=245 amount=-1 +kerning first=73 second=103 amount=-1 +kerning first=70 second=242 amount=-1 +kerning first=325 second=111 amount=-1 +kerning first=207 second=85 amount=-1 +kerning first=106 second=242 amount=-1 +kerning first=209 second=331 amount=-1 +kerning first=171 second=85 amount=-1 +kerning first=378 second=8217 amount=-1 +kerning first=355 second=242 amount=-1 +kerning first=70 second=279 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=283 second=242 amount=-1 +kerning first=354 second=263 amount=-1 +kerning first=89 second=195 amount=-1 +kerning first=1071 second=1101 amount=-1 +kerning first=195 second=67 amount=-1 +kerning first=328 second=289 amount=-1 +kerning first=1048 second=1024 amount=-1 +kerning first=315 second=366 amount=-1 +kerning first=194 second=288 amount=-1 +kerning first=264 second=203 amount=-1 +kerning first=1051 second=1095 amount=-1 +kerning first=89 second=288 amount=-1 +kerning first=99 second=335 amount=-1 +kerning first=1055 second=1036 amount=-1 +kerning first=219 second=357 amount=-1 +kerning first=367 second=233 amount=-1 +kerning first=374 second=195 amount=-1 +kerning first=313 second=374 amount=-1 +kerning first=105 second=263 amount=-1 +kerning first=327 second=357 amount=-1 +kerning first=259 second=233 amount=-1 +kerning first=327 second=76 amount=-1 +kerning first=291 second=345 amount=-1 +kerning first=291 second=357 amount=-1 +kerning first=73 second=220 amount=-1 +kerning first=268 second=280 amount=-1 +kerning first=78 second=357 amount=-1 +kerning first=8222 second=214 amount=-1 +kerning first=304 second=280 amount=-1 +kerning first=1049 second=1084 amount=-1 +kerning first=219 second=76 amount=-1 +kerning first=368 second=246 amount=-1 +kerning first=201 second=363 amount=-1 +kerning first=199 second=224 amount=-1 +kerning first=257 second=122 amount=-1 +kerning first=210 second=317 amount=-1 +kerning first=362 second=378 amount=-1 +kerning first=205 second=207 amount=-1 +kerning first=282 second=317 amount=-1 +kerning first=253 second=311 amount=-1 +kerning first=1030 second=1104 amount=-1 +kerning first=221 second=122 amount=-1 +kerning first=284 second=201 amount=-1 +kerning first=289 second=311 amount=-1 +kerning first=80 second=122 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=212 second=201 amount=-1 +kerning first=1055 second=1072 amount=-1 +kerning first=199 second=269 amount=-1 +kerning first=171 second=366 amount=-1 +kerning first=1046 second=1118 amount=-1 +kerning first=67 second=244 amount=-1 +kerning first=192 second=116 amount=-1 +kerning first=77 second=378 amount=-1 +kerning first=207 second=366 amount=-1 +kerning first=103 second=244 amount=-1 +kerning first=218 second=204 amount=-1 +kerning first=66 second=366 amount=-1 +kerning first=1043 second=1081 amount=-1 +kerning first=213 second=354 amount=-1 +kerning first=8222 second=100 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=254 second=378 amount=-1 +kerning first=362 second=204 amount=-1 +kerning first=218 second=378 amount=-1 +kerning first=269 second=259 amount=-1 +kerning first=69 second=317 amount=-1 +kerning first=264 second=116 amount=-1 +kerning first=344 second=210 amount=-1 +kerning first=8222 second=307 amount=-1 +kerning first=1044 second=1102 amount=-1 +kerning first=72 second=75 amount=-1 +kerning first=200 second=210 amount=-1 +kerning first=1078 second=1095 amount=-1 +kerning first=220 second=262 amount=-1 +kerning first=1051 second=1049 amount=-1 +kerning first=268 second=73 amount=-1 +kerning first=117 second=335 amount=-1 +kerning first=364 second=262 amount=-1 +kerning first=187 second=206 amount=-1 +kerning first=225 second=345 amount=-1 +kerning first=65 second=213 amount=-1 +kerning first=230 second=369 amount=-1 +kerning first=261 second=345 amount=-1 +kerning first=368 second=219 amount=-1 +kerning first=1027 second=1040 amount=-1 +kerning first=194 second=369 amount=-1 +kerning first=304 second=73 amount=-1 +kerning first=327 second=207 amount=-1 +kerning first=330 second=335 amount=-1 +kerning first=221 second=268 amount=-1 +kerning first=333 second=345 amount=-1 +kerning first=296 second=219 amount=-1 +kerning first=105 second=244 amount=-1 +kerning first=369 second=345 amount=-1 +kerning first=374 second=369 amount=-1 +kerning first=206 second=213 amount=-1 +kerning first=366 second=335 amount=-1 +kerning first=338 second=369 amount=-1 +kerning first=80 second=268 amount=-1 +kerning first=217 second=198 amount=-1 +kerning first=213 second=88 amount=-1 +kerning first=8249 second=86 amount=-1 +kerning first=218 second=231 amount=-1 +kerning first=284 second=368 amount=-1 +kerning first=218 second=351 amount=-1 +kerning first=209 second=277 amount=-1 +kerning first=1030 second=1077 amount=-1 +kerning first=264 second=318 amount=-1 +kerning first=104 second=277 amount=-1 +kerning first=71 second=368 amount=-1 +kerning first=69 second=290 amount=-1 +kerning first=362 second=351 amount=-1 +kerning first=1071 second=1047 amount=-1 +kerning first=77 second=231 amount=-1 +kerning first=268 second=226 amount=-1 +kerning first=325 second=338 amount=-1 +kerning first=212 second=368 amount=-1 +kerning first=201 second=8220 amount=-1 +kerning first=104 second=8249 amount=-1 +kerning first=334 second=200 amount=-1 +kerning first=220 second=82 amount=-1 +kerning first=209 second=8249 amount=-1 +kerning first=198 second=364 amount=-1 +kerning first=217 second=338 amount=-1 +kerning first=1039 second=1031 amount=-1 +kerning first=77 second=351 amount=-1 +kerning first=362 second=231 amount=-1 +kerning first=67 second=217 amount=-1 +kerning first=97 second=283 amount=-1 +kerning first=353 second=8249 amount=-1 +kerning first=1038 second=1089 amount=-1 +kerning first=240 second=8222 amount=-1 +kerning first=253 second=45 amount=-1 +kerning first=214 second=274 amount=-1 +kerning first=289 second=45 amount=-1 +kerning first=207 second=298 amount=-1 +kerning first=197 second=286 amount=-1 +kerning first=1042 second=1068 amount=-1 +kerning first=73 second=274 amount=-1 +kerning first=217 second=171 amount=-2 +kerning first=217 second=45 amount=-2 +kerning first=368 second=192 amount=-1 +kerning first=289 second=171 amount=-1 +kerning first=233 second=113 amount=-1 +kerning first=325 second=45 amount=-1 +kerning first=269 second=113 amount=-1 +kerning first=281 second=104 amount=-1 +kerning first=201 second=70 amount=-1 +kerning first=220 second=235 amount=-1 +kerning first=328 second=235 amount=-1 +kerning first=218 second=315 amount=-1 +kerning first=364 second=235 amount=-1 +kerning first=1060 second=1069 amount=-1 +kerning first=286 second=274 amount=-1 +kerning first=207 second=226 amount=-1 +kerning first=333 second=318 amount=-1 +kerning first=199 second=344 amount=-1 +kerning first=69 second=355 amount=-1 +kerning first=206 second=337 amount=-1 +kerning first=45 second=367 amount=-1 +kerning first=207 second=231 amount=-1 +kerning first=217 second=252 amount=-1 +kerning first=1053 second=1053 amount=-1 +kerning first=87 second=284 amount=-1 +kerning first=1054 second=1059 amount=-1 +kerning first=289 second=252 amount=-1 +kerning first=74 second=80 amount=-1 +kerning first=192 second=284 amount=-1 +kerning first=253 second=252 amount=-1 +kerning first=1030 second=1108 amount=-1 +kerning first=205 second=261 amount=-1 +kerning first=78 second=217 amount=-1 +kerning first=333 second=106 amount=-1 +kerning first=346 second=310 amount=-1 +kerning first=217 second=223 amount=-1 +kerning first=279 second=231 amount=-1 +kerning first=219 second=217 amount=-1 +kerning first=274 second=310 amount=-1 +kerning first=229 second=243 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=8218 second=311 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=85 second=81 amount=-1 +kerning first=65 second=45 amount=-1 +kerning first=278 second=45 amount=-1 +kerning first=255 second=249 amount=-1 +kerning first=81 second=221 amount=-1 +kerning first=296 second=332 amount=-1 +kerning first=314 second=45 amount=-1 +kerning first=291 second=249 amount=-1 +kerning first=325 second=330 amount=-1 +kerning first=80 second=214 amount=-1 +kerning first=231 second=235 amount=-1 +kerning first=1044 second=1028 amount=-1 +kerning first=267 second=235 amount=-1 +kerning first=231 second=240 amount=-1 +kerning first=99 second=275 amount=-1 +kerning first=1066 second=1050 amount=-1 +kerning first=323 second=80 amount=-1 +kerning first=267 second=240 amount=-1 +kerning first=211 second=362 amount=-1 +kerning first=1058 second=1040 amount=-1 +kerning first=339 second=235 amount=-1 +kerning first=1030 second=1050 amount=-1 +kerning first=204 second=275 amount=-1 +kerning first=368 second=332 amount=-1 +kerning first=8218 second=84 amount=-1 +kerning first=209 second=223 amount=-1 +kerning first=345 second=97 amount=-1 +kerning first=66 second=338 amount=-1 +kerning first=305 second=232 amount=-1 +kerning first=272 second=323 amount=-1 +kerning first=269 second=232 amount=-1 +kerning first=1053 second=1080 amount=-1 +kerning first=74 second=107 amount=-1 +kerning first=233 second=232 amount=-1 +kerning first=66 second=199 amount=-1 +kerning first=200 second=323 amount=-1 +kerning first=187 second=119 amount=-1 +kerning first=66 second=258 amount=-1 +kerning first=199 second=317 amount=-1 +kerning first=201 second=336 amount=-1 +kerning first=287 second=107 amount=-1 +kerning first=89 second=250 amount=-1 +kerning first=207 second=199 amount=-1 +kerning first=1057 second=1044 amount=-1 +kerning first=364 second=370 amount=-1 +kerning first=187 second=326 amount=-1 +kerning first=260 second=8250 amount=-1 +kerning first=334 second=256 amount=-1 +kerning first=116 second=226 amount=-1 +kerning first=107 second=314 amount=-1 +kerning first=195 second=368 amount=-1 +kerning first=100 second=234 amount=-1 +kerning first=201 second=325 amount=-1 +kerning first=275 second=116 amount=-1 +kerning first=119 second=8250 amount=-1 +kerning first=192 second=311 amount=-1 +kerning first=219 second=249 amount=-1 +kerning first=205 second=234 amount=-1 +kerning first=83 second=8250 amount=-1 +kerning first=1048 second=1105 amount=-1 +kerning first=73 second=331 amount=-1 +kerning first=227 second=233 amount=-1 +kerning first=354 second=122 amount=-1 +kerning first=1105 second=1119 amount=-1 +kerning first=277 second=234 amount=-1 +kerning first=1062 second=1088 amount=-1 +kerning first=248 second=314 amount=-1 +kerning first=72 second=327 amount=-1 +kerning first=241 second=234 amount=-1 +kerning first=221 second=241 amount=-1 +kerning first=199 second=110 amount=-1 +kerning first=327 second=217 amount=-1 +kerning first=213 second=327 amount=-1 +kerning first=263 second=98 amount=-1 +kerning first=231 second=267 amount=-1 +kerning first=278 second=72 amount=-1 +kerning first=80 second=241 amount=-1 +kerning first=8218 second=338 amount=-1 +kerning first=193 second=216 amount=-1 +kerning first=1067 second=1036 amount=-1 +kerning first=1044 second=1094 amount=-1 +kerning first=1031 second=1036 amount=-1 +kerning first=254 second=316 amount=-1 +kerning first=284 second=114 amount=-1 +kerning first=1050 second=1097 amount=-1 +kerning first=1036 second=1114 amount=-1 +kerning first=248 second=114 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=281 second=250 amount=-1 +kerning first=1041 second=1062 amount=-1 +kerning first=374 second=109 amount=-1 +kerning first=217 second=225 amount=-1 +kerning first=70 second=335 amount=-1 +kerning first=267 second=267 amount=-1 +kerning first=204 second=302 amount=-1 +kerning first=325 second=225 amount=-1 +kerning first=79 second=370 amount=-1 +kerning first=196 second=46 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=71 second=114 amount=-1 +kerning first=8250 second=192 amount=-1 +kerning first=339 second=267 amount=-1 +kerning first=225 second=318 amount=-1 +kerning first=283 second=335 amount=-1 +kerning first=261 second=318 amount=-1 +kerning first=268 second=46 amount=-1 +kerning first=89 second=290 amount=-1 +kerning first=283 second=101 amount=-1 +kerning first=194 second=81 amount=-1 +kerning first=206 second=353 amount=-1 +kerning first=89 second=81 amount=-1 +kerning first=302 second=81 amount=-1 +kerning first=368 second=78 amount=-1 +kerning first=338 second=81 amount=-1 +kerning first=200 second=296 amount=-1 +kerning first=72 second=273 amount=-1 +kerning first=346 second=364 amount=-1 +kerning first=1068 second=1064 amount=-1 +kerning first=266 second=81 amount=-1 +kerning first=263 second=44 amount=-1 +kerning first=269 second=8222 amount=-1 +kerning first=8218 second=284 amount=-1 +kerning first=86 second=281 amount=-1 +kerning first=1065 second=1098 amount=-1 +kerning first=374 second=81 amount=-1 +kerning first=296 second=78 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=1041 second=1114 amount=-1 +kerning first=8250 second=332 amount=-1 +kerning first=206 second=72 amount=-1 +kerning first=335 second=44 amount=-1 +kerning first=366 second=227 amount=-1 +kerning first=328 second=291 amount=-1 +kerning first=330 second=227 amount=-1 +kerning first=298 second=346 amount=-1 +kerning first=1048 second=1107 amount=-1 +kerning first=201 second=282 amount=-1 +kerning first=262 second=346 amount=-1 +kerning first=248 second=287 amount=-1 +kerning first=205 second=288 amount=-1 +kerning first=1055 second=1100 amount=-1 +kerning first=67 second=352 amount=-1 +kerning first=85 second=346 amount=-1 +kerning first=281 second=252 amount=-1 +kerning first=199 second=83 amount=-1 +kerning first=1047 second=1119 amount=-1 +kerning first=97 second=337 amount=-1 +kerning first=83 second=278 amount=-1 +kerning first=369 second=291 amount=-1 +kerning first=333 second=291 amount=-1 +kerning first=264 second=230 amount=-1 +kerning first=261 second=291 amount=-1 +kerning first=225 second=291 amount=-1 +kerning first=370 second=346 amount=-1 +kerning first=120 second=291 amount=-1 +kerning first=87 second=230 amount=-1 +kerning first=87 second=257 amount=-1 +kerning first=81 second=200 amount=-1 +kerning first=1047 second=1055 amount=-1 +kerning first=289 second=279 amount=-1 +kerning first=70 second=74 amount=-1 +kerning first=108 second=246 amount=-1 +kerning first=368 second=278 amount=-1 +kerning first=45 second=200 amount=-1 +kerning first=325 second=279 amount=-1 +kerning first=72 second=246 amount=-1 +kerning first=72 second=115 amount=-1 +kerning first=266 second=108 amount=-1 +kerning first=217 second=279 amount=-1 +kerning first=290 second=317 amount=-1 +kerning first=296 second=278 amount=-1 +kerning first=1104 second=1091 amount=-1 +kerning first=352 second=325 amount=-1 +kerning first=70 second=362 amount=-1 +kerning first=8222 second=361 amount=-1 +kerning first=192 second=84 amount=-1 +kerning first=217 second=231 amount=-1 +kerning first=80 second=187 amount=-1 +kerning first=115 second=316 amount=-1 +kerning first=73 second=382 amount=-1 +kerning first=206 second=99 amount=-1 +kerning first=204 second=75 amount=-1 +kerning first=330 second=200 amount=-1 +kerning first=1076 second=1103 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=213 second=8218 amount=-1 +kerning first=204 second=109 amount=-1 +kerning first=314 second=99 amount=-1 +kerning first=75 second=266 amount=-1 +kerning first=1080 second=1095 amount=-1 +kerning first=187 second=65 amount=-1 +kerning first=72 second=8218 amount=-1 +kerning first=221 second=187 amount=-1 +kerning first=259 second=380 amount=-1 +kerning first=223 second=380 amount=-1 +kerning first=112 second=8220 amount=-2 +kerning first=1041 second=1098 amount=-1 +kerning first=240 second=248 amount=-1 +kerning first=268 second=334 amount=-1 +kerning first=277 second=367 amount=-1 +kerning first=1059 second=1108 amount=-1 +kerning first=213 second=202 amount=-1 +kerning first=196 second=334 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=270 second=218 amount=-1 +kerning first=212 second=260 amount=-1 +kerning first=230 second=333 amount=-1 +kerning first=362 second=117 amount=-1 +kerning first=323 second=218 amount=-1 +kerning first=289 second=281 amount=-1 +kerning first=198 second=218 amount=-1 +kerning first=204 second=248 amount=-1 +kerning first=304 second=334 amount=-1 +kerning first=99 second=8220 amount=-2 +kerning first=310 second=364 amount=-1 +kerning first=282 second=209 amount=-1 +kerning first=1055 second=1092 amount=-1 +kerning first=274 second=364 amount=-1 +kerning first=258 second=367 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=67 second=325 amount=-1 +kerning first=210 second=209 amount=-1 +kerning first=366 second=367 amount=-1 +kerning first=202 second=364 amount=-1 +kerning first=288 second=66 amount=-1 +kerning first=264 second=257 amount=-1 +kerning first=194 second=108 amount=-1 +kerning first=1068 second=1042 amount=-1 +kerning first=195 second=121 amount=-1 +kerning first=240 second=8220 amount=-2 +kerning first=200 second=69 amount=-1 +kerning first=230 second=108 amount=-1 +kerning first=69 second=209 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=224 second=232 amount=-1 +kerning first=338 second=68 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=45 second=212 amount=-1 +kerning first=272 second=69 amount=-1 +kerning first=1053 second=1107 amount=-1 +kerning first=366 second=69 amount=-1 +kerning first=353 second=8217 amount=-2 +kerning first=255 second=108 amount=-1 +kerning first=80 second=290 amount=-1 +kerning first=330 second=69 amount=-1 +kerning first=288 second=364 amount=-1 +kerning first=70 second=264 amount=-1 +kerning first=83 second=251 amount=-1 +kerning first=119 second=251 amount=-1 +kerning first=221 second=290 amount=-1 +kerning first=208 second=8221 amount=-2 +kerning first=278 second=338 amount=-1 +kerning first=1049 second=1039 amount=-1 +kerning first=234 second=277 amount=-1 +kerning first=368 second=251 amount=-1 +kerning first=245 second=8217 amount=-2 +kerning first=231 second=316 amount=-1 +kerning first=206 second=338 amount=-1 +kerning first=67 second=8221 amount=-1 +kerning first=1058 second=1072 amount=-1 +kerning first=317 second=8217 amount=-1 +kerning first=1051 second=1079 amount=-1 +kerning first=103 second=8221 amount=-2 +kerning first=45 second=69 amount=-1 +kerning first=330 second=286 amount=-1 +kerning first=267 second=316 amount=-1 +kerning first=366 second=286 amount=-1 +kerning first=375 second=316 amount=-1 +kerning first=339 second=316 amount=-1 +kerning first=235 second=273 amount=-1 +kerning first=81 second=69 amount=-1 +kerning first=65 second=338 amount=-1 +kerning first=280 second=8221 amount=-1 +kerning first=199 second=273 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=316 second=8221 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=231 second=99 amount=-1 +kerning first=374 second=347 amount=-1 +kerning first=209 second=82 amount=-1 +kerning first=8218 second=225 amount=-1 +kerning first=258 second=286 amount=-1 +kerning first=210 second=78 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=228 second=171 amount=-1 +kerning first=1048 second=1056 amount=-1 +kerning first=264 second=171 amount=-1 +kerning first=282 second=78 amount=-1 +kerning first=1071 second=1069 amount=-1 +kerning first=1044 second=1086 amount=-1 +kerning first=217 second=333 amount=-1 +kerning first=243 second=114 amount=-1 +kerning first=1058 second=1082 amount=-1 +kerning first=264 second=355 amount=-1 +kerning first=69 second=78 amount=-1 +kerning first=187 second=282 amount=-1 +kerning first=290 second=73 amount=-1 +kerning first=68 second=8217 amount=-2 +kerning first=219 second=325 amount=-1 +kerning first=279 second=117 amount=-1 +kerning first=8250 second=278 amount=-1 +kerning first=204 second=346 amount=-1 +kerning first=356 second=233 amount=-1 +kerning first=87 second=171 amount=-2 +kerning first=192 second=171 amount=-1 +kerning first=327 second=325 amount=-1 +kerning first=325 second=362 amount=-1 +kerning first=87 second=382 amount=-1 +kerning first=203 second=220 amount=-1 +kerning first=80 second=100 amount=-1 +kerning first=278 second=216 amount=-1 +kerning first=280 second=330 amount=-1 +kerning first=327 second=298 amount=-1 +kerning first=228 second=382 amount=-1 +kerning first=67 second=330 amount=-1 +kerning first=307 second=246 amount=-1 +kerning first=198 second=304 amount=-1 +kerning first=264 second=382 amount=-1 +kerning first=266 second=103 amount=-1 +kerning first=271 second=246 amount=-1 +kerning first=80 second=263 amount=-1 +kerning first=230 second=103 amount=-1 +kerning first=235 second=246 amount=-1 +kerning first=270 second=304 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=221 second=100 amount=-1 +kerning first=199 second=246 amount=-1 +kerning first=364 second=77 amount=-1 +kerning first=307 second=8218 amount=-1 +kerning first=74 second=211 amount=-1 +kerning first=230 second=245 amount=-1 +kerning first=89 second=103 amount=-1 +kerning first=350 second=365 amount=-1 +kerning first=368 second=224 amount=-1 +kerning first=304 second=68 amount=-1 +kerning first=289 second=333 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=325 second=333 amount=-1 +kerning first=8222 second=366 amount=-1 +kerning first=278 second=365 amount=-1 +kerning first=296 second=224 amount=-1 +kerning first=267 second=289 amount=-1 +kerning first=330 second=313 amount=-1 +kerning first=1043 second=1113 amount=-1 +kerning first=325 second=203 amount=-1 +kerning first=231 second=289 amount=-1 +kerning first=366 second=313 amount=-1 +kerning first=211 second=86 amount=-1 +kerning first=339 second=289 amount=-1 +kerning first=65 second=365 amount=-1 +kerning first=268 second=68 amount=-1 +kerning first=101 second=365 amount=-1 +kerning first=98 second=8250 amount=-1 +kerning first=302 second=347 amount=-1 +kerning first=113 second=8220 amount=-2 +kerning first=233 second=281 amount=-1 +kerning first=1103 second=1095 amount=-1 +kerning first=77 second=85 amount=-1 +kerning first=77 second=8220 amount=-1 +kerning first=269 second=281 amount=-1 +kerning first=87 second=111 amount=-1 +kerning first=218 second=8220 amount=-1 +kerning first=305 second=281 amount=-1 +kerning first=305 second=118 amount=-1 +kerning first=266 second=347 amount=-1 +kerning first=290 second=8220 amount=-1 +kerning first=187 second=255 amount=-1 +kerning first=45 second=313 amount=-1 +kerning first=228 second=111 amount=-1 +kerning first=254 second=8220 amount=-2 +kerning first=289 second=369 amount=-1 +kerning first=81 second=313 amount=-1 +kerning first=323 second=211 amount=-1 +kerning first=264 second=111 amount=-1 +kerning first=362 second=8220 amount=-1 +kerning first=1031 second=1095 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=326 second=8220 amount=-2 +kerning first=1038 second=1057 amount=-1 +kerning first=1071 second=1042 amount=-1 +kerning first=370 second=233 amount=-1 +kerning first=220 second=77 amount=-1 +kerning first=1049 second=1119 amount=-1 +kerning first=232 second=339 amount=-1 +kerning first=1048 second=1083 amount=-1 +kerning first=78 second=298 amount=-1 +kerning first=205 second=315 amount=-1 +kerning first=219 second=298 amount=-1 +kerning first=304 second=339 amount=-1 +kerning first=71 second=206 amount=-1 +kerning first=268 second=310 amount=-1 +kerning first=8250 second=251 amount=-1 +kerning first=197 second=118 amount=-1 +kerning first=284 second=206 amount=-1 +kerning first=78 second=271 amount=-1 +kerning first=266 second=76 amount=-1 +kerning first=378 second=8249 amount=-1 +kerning first=65 second=284 amount=-1 +kerning first=117 second=232 amount=-1 +kerning first=1059 second=1105 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=280 second=357 amount=-1 +kerning first=1118 second=1118 amount=-1 +kerning first=366 second=232 amount=-1 +kerning first=219 second=271 amount=-1 +kerning first=330 second=232 amount=-1 +kerning first=233 second=335 amount=-1 +kerning first=327 second=271 amount=-1 +kerning first=264 second=225 amount=-1 +kerning first=323 second=242 amount=-1 +kerning first=1071 second=1054 amount=-1 +kerning first=362 second=85 amount=-1 +kerning first=1043 second=1086 amount=-1 +kerning first=252 second=234 amount=-1 +kerning first=277 second=98 amount=-1 +kerning first=201 second=213 amount=-1 +kerning first=290 second=85 amount=-1 +kerning first=324 second=234 amount=-1 +kerning first=198 second=8249 amount=-1 +kerning first=272 second=8218 amount=-1 +kerning first=330 second=235 amount=-1 +kerning first=86 second=229 amount=-1 +kerning first=375 second=289 amount=-1 +kerning first=368 second=197 amount=-1 +kerning first=221 second=46 amount=-1 +kerning first=1031 second=1068 amount=-1 +kerning first=268 second=366 amount=-1 +kerning first=233 second=101 amount=-1 +kerning first=199 second=68 amount=-1 +kerning first=66 second=280 amount=-1 +kerning first=1078 second=1119 amount=-1 +kerning first=196 second=366 amount=-1 +kerning first=278 second=67 amount=-1 +kerning first=8222 second=314 amount=-1 +kerning first=8218 second=226 amount=-1 +kerning first=80 second=344 amount=-1 +kerning first=206 second=67 amount=-1 +kerning first=103 second=357 amount=-1 +kerning first=65 second=67 amount=-1 +kerning first=234 second=250 amount=-1 +kerning first=67 second=357 amount=-1 +kerning first=207 second=280 amount=-1 +kerning first=203 second=365 amount=-1 +kerning first=1055 second=1077 amount=-1 +kerning first=278 second=284 amount=-1 +kerning first=198 second=250 amount=-1 +kerning first=219 second=195 amount=-1 +kerning first=1042 second=1090 amount=-1 +kerning first=68 second=353 amount=-1 +kerning first=263 second=229 amount=-1 +kerning first=209 second=353 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=1047 second=1114 amount=-1 +kerning first=330 second=259 amount=-1 +kerning first=259 second=333 amount=-1 +kerning first=281 second=353 amount=-1 +kerning first=302 second=76 amount=-1 +kerning first=206 second=284 amount=-1 +kerning first=338 second=76 amount=-1 +kerning first=288 second=207 amount=-1 +kerning first=370 second=70 amount=-1 +kerning first=366 second=259 amount=-1 +kerning first=325 second=116 amount=-1 +kerning first=289 second=116 amount=-1 +kerning first=195 second=213 amount=-1 +kerning first=65 second=311 amount=-1 +kerning first=1051 second=1071 amount=-1 +kerning first=277 second=369 amount=-1 +kerning first=101 second=311 amount=-1 +kerning first=1064 second=1053 amount=-1 +kerning first=262 second=70 amount=-1 +kerning first=232 second=122 amount=-1 +kerning first=1042 second=1117 amount=-1 +kerning first=78 second=244 amount=-1 +kerning first=298 second=70 amount=-1 +kerning first=268 second=122 amount=-1 +kerning first=334 second=70 amount=-1 +kerning first=187 second=203 amount=-1 +kerning first=229 second=378 amount=-1 +kerning first=219 second=244 amount=-1 +kerning first=316 second=113 amount=-1 +kerning first=66 second=204 amount=-1 +kerning first=8218 second=252 amount=-1 +kerning first=270 second=8222 amount=-1 +kerning first=291 second=244 amount=-1 +kerning first=187 second=201 amount=-1 +kerning first=234 second=8222 amount=-1 +kerning first=327 second=244 amount=-1 +kerning first=103 second=113 amount=-1 +kerning first=212 second=366 amount=-1 +kerning first=217 second=116 amount=-1 +kerning first=198 second=8222 amount=-1 +kerning first=363 second=244 amount=-1 +kerning first=337 second=378 amount=-1 +kerning first=207 second=204 amount=-1 +kerning first=225 second=316 amount=-1 +kerning first=67 second=113 amount=-1 +kerning first=88 second=85 amount=-1 +kerning first=195 second=262 amount=-1 +kerning first=250 second=244 amount=-1 +kerning first=1042 second=1102 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=362 second=302 amount=-1 +kerning first=1050 second=1102 amount=-1 +kerning first=220 second=71 amount=-1 +kerning first=1055 second=1050 amount=-1 +kerning first=1058 second=1104 amount=-1 +kerning first=290 second=302 amount=-1 +kerning first=1036 second=1038 amount=-1 +kerning first=72 second=332 amount=-1 +kerning first=86 second=256 amount=-1 +kerning first=282 second=268 amount=-1 +kerning first=218 second=302 amount=-1 +kerning first=305 second=335 amount=-1 +kerning first=70 second=210 amount=-1 +kerning first=77 second=302 amount=-1 +kerning first=210 second=278 amount=-1 +kerning first=269 second=335 amount=-1 +kerning first=193 second=107 amount=-1 +kerning first=1047 second=1087 amount=-1 +kerning first=8220 second=347 amount=-1 +kerning first=1039 second=1053 amount=-1 +kerning first=69 second=268 amount=-1 +kerning first=72 second=83 amount=-1 +kerning first=206 second=77 amount=-1 +kerning first=45 second=362 amount=-1 +kerning first=74 second=75 amount=-1 +kerning first=211 second=354 amount=-1 +kerning first=1071 second=1070 amount=-1 +kerning first=210 second=187 amount=-1 +kerning first=246 second=187 amount=-1 +kerning first=89 second=244 amount=-1 +kerning first=370 second=97 amount=-1 +kerning first=45 second=75 amount=-1 +kerning first=213 second=8250 amount=-1 +kerning first=1041 second=1067 amount=-1 +kerning first=230 second=244 amount=-1 +kerning first=258 second=362 amount=-1 +kerning first=8250 second=197 amount=-1 +kerning first=220 second=213 amount=-1 +kerning first=266 second=244 amount=-1 +kerning first=1067 second=1041 amount=-1 +kerning first=87 second=279 amount=-1 +kerning first=302 second=244 amount=-1 +kerning first=72 second=8250 amount=-1 +kerning first=1031 second=1041 amount=-1 +kerning first=227 second=283 amount=-1 +kerning first=86 second=283 amount=-1 +kerning first=374 second=244 amount=-1 +kerning first=83 second=327 amount=-1 +kerning first=205 second=266 amount=-1 +kerning first=364 second=213 amount=-1 +kerning first=105 second=187 amount=-1 +kerning first=264 second=279 amount=-1 +kerning first=8217 second=120 amount=-1 +kerning first=187 second=211 amount=-1 +kerning first=69 second=187 amount=-1 +kerning first=228 second=279 amount=-1 +kerning first=1075 second=1102 amount=-1 +kerning first=80 second=209 amount=-1 +kerning first=116 second=113 amount=-1 +kerning first=296 second=327 amount=-1 +kerning first=195 second=288 amount=-1 +kerning first=362 second=115 amount=-1 +kerning first=368 second=327 amount=-1 +kerning first=1042 second=1036 amount=-1 +kerning first=283 second=367 amount=-1 +kerning first=69 second=371 amount=-1 +kerning first=270 second=196 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=263 second=283 amount=-1 +kerning first=317 second=218 amount=-1 +kerning first=296 second=110 amount=-1 +kerning first=70 second=367 amount=-1 +kerning first=330 second=205 amount=-1 +kerning first=85 second=70 amount=-1 +kerning first=204 second=270 amount=-1 +kerning first=368 second=110 amount=-1 +kerning first=275 second=335 amount=-1 +kerning first=325 second=257 amount=-1 +kerning first=203 second=274 amount=-1 +kerning first=234 second=380 amount=-1 +kerning first=85 second=317 amount=-1 +kerning first=366 second=205 amount=-1 +kerning first=338 second=296 amount=-1 +kerning first=219 second=367 amount=-1 +kerning first=82 second=114 amount=-1 +kerning first=192 second=252 amount=-1 +kerning first=1049 second=1047 amount=-1 +kerning first=187 second=114 amount=-1 +kerning first=362 second=226 amount=-1 +kerning first=217 second=284 amount=-1 +kerning first=1030 second=1072 amount=-1 +kerning first=118 second=114 amount=-1 +kerning first=367 second=8249 amount=-1 +kerning first=1040 second=1098 amount=-1 +kerning first=45 second=205 amount=-1 +kerning first=81 second=205 amount=-1 +kerning first=232 second=231 amount=-1 +kerning first=268 second=231 amount=-1 +kerning first=194 second=217 amount=-1 +kerning first=304 second=231 amount=-1 +kerning first=266 second=217 amount=-1 +kerning first=69 second=214 amount=-1 +kerning first=69 second=344 amount=-1 +kerning first=302 second=217 amount=-1 +kerning first=210 second=344 amount=-1 +kerning first=338 second=217 amount=-1 +kerning first=87 second=252 amount=-1 +kerning first=282 second=344 amount=-1 +kerning first=118 second=8249 amount=-1 +kerning first=280 second=249 amount=-1 +kerning first=206 second=235 amount=-1 +kerning first=316 second=249 amount=-1 +kerning first=243 second=8218 amount=-1 +kerning first=270 second=353 amount=-1 +kerning first=352 second=249 amount=-1 +kerning first=365 second=248 amount=-1 +kerning first=1052 second=1089 amount=-1 +kerning first=234 second=353 amount=-1 +kerning first=1050 second=1091 amount=-1 +kerning first=103 second=249 amount=-1 +kerning first=200 second=345 amount=-1 +kerning first=75 second=71 amount=-1 +kerning first=229 second=275 amount=-1 +kerning first=366 second=362 amount=-1 +kerning first=204 second=80 amount=-1 +kerning first=330 second=362 amount=-1 +kerning first=344 second=345 amount=-1 +kerning first=262 second=97 amount=-1 +kerning first=99 second=243 amount=-1 +kerning first=298 second=97 amount=-1 +kerning first=231 second=45 amount=-1 +kerning first=77 second=226 amount=-1 +kerning first=325 second=284 amount=-1 +kerning first=296 second=83 amount=-1 +kerning first=198 second=223 amount=-1 +kerning first=377 second=8217 amount=-1 +kerning first=1064 second=1080 amount=-1 +kerning first=72 second=278 amount=-1 +kerning first=8250 second=381 amount=-1 +kerning first=8250 second=366 amount=-1 +kerning first=1028 second=1080 amount=-1 +kerning first=218 second=226 amount=-1 +kerning first=240 second=243 amount=-1 +kerning first=1042 second=1063 amount=-1 +kerning first=77 second=199 amount=-1 +kerning first=104 second=245 amount=-1 +kerning first=1049 second=1079 amount=-1 +kerning first=263 second=337 amount=-1 +kerning first=86 second=120 amount=-1 +kerning first=213 second=278 amount=-1 +kerning first=227 second=337 amount=-1 +kerning first=192 second=107 amount=-1 +kerning first=1078 second=1079 amount=-1 +kerning first=368 second=8218 amount=-2 +kerning first=66 second=361 amount=-1 +kerning first=86 second=337 amount=-1 +kerning first=263 second=120 amount=-1 +kerning first=362 second=199 amount=-1 +kerning first=8250 second=327 amount=-1 +kerning first=119 second=8218 amount=-1 +kerning first=84 second=269 amount=-1 +kerning first=83 second=8218 amount=-1 +kerning first=332 second=8218 amount=-1 +kerning first=281 second=245 amount=-1 +kerning first=98 second=291 amount=-1 +kerning first=80 second=88 amount=-1 +kerning first=261 second=269 amount=-1 +kerning first=209 second=245 amount=-1 +kerning first=193 second=221 amount=-1 +kerning first=1036 second=1092 amount=-1 +kerning first=99 second=324 amount=-1 +kerning first=352 second=330 amount=-1 +kerning first=369 second=269 amount=-1 +kerning first=8250 second=110 amount=-1 +kerning first=258 second=118 amount=-1 +kerning first=217 second=203 amount=-1 +kerning first=70 second=313 amount=-1 +kerning first=275 second=111 amount=-1 +kerning first=337 second=8220 amount=-2 +kerning first=212 second=65 amount=-1 +kerning first=233 second=254 amount=-1 +kerning first=356 second=8222 amount=-1 +kerning first=194 second=374 amount=-1 +kerning first=335 second=120 amount=-1 +kerning first=374 second=337 amount=-1 +kerning first=221 second=263 amount=-1 +kerning first=328 second=267 amount=-1 +kerning first=367 second=114 amount=-1 +kerning first=350 second=8249 amount=-1 +kerning first=257 second=263 amount=-1 +kerning first=364 second=267 amount=-1 +kerning first=1077 second=1094 amount=-1 +kerning first=1064 second=1107 amount=-1 +kerning first=45 second=118 amount=-1 +kerning first=205 second=212 amount=-1 +kerning first=259 second=114 amount=-1 +kerning first=365 second=263 amount=-1 +kerning first=88 second=8220 amount=-1 +kerning first=267 second=314 amount=-1 +kerning first=223 second=114 amount=-1 +kerning first=280 second=264 amount=-1 +kerning first=8217 second=364 amount=-1 +kerning first=220 second=267 amount=-1 +kerning first=288 second=315 amount=-1 +kerning first=193 second=8220 amount=-2 +kerning first=195 second=370 amount=-1 +kerning first=211 second=69 amount=-1 +kerning first=86 second=361 amount=-1 +kerning first=8250 second=354 amount=-1 +kerning first=368 second=273 amount=-1 +kerning first=8220 second=217 amount=-1 +kerning first=8222 second=370 amount=-1 +kerning first=1049 second=1052 amount=-1 +kerning first=219 second=81 amount=-1 +kerning first=296 second=273 amount=-1 +kerning first=78 second=81 amount=-1 +kerning first=108 second=251 amount=-1 +kerning first=70 second=69 amount=-1 +kerning first=86 second=45 amount=-2 +kerning first=218 second=355 amount=-1 +kerning first=327 second=81 amount=-1 +kerning first=75 second=44 amount=-1 +kerning first=84 second=281 amount=-1 +kerning first=66 second=334 amount=-1 +kerning first=275 second=355 amount=-1 +kerning first=209 second=218 amount=-1 +kerning first=8218 second=89 amount=-2 +kerning first=203 second=355 amount=-1 +kerning first=207 second=334 amount=-1 +kerning first=89 second=8217 amount=-1 +kerning first=199 second=78 amount=-1 +kerning first=229 second=248 amount=-1 +kerning first=198 second=72 amount=-1 +kerning first=288 second=44 amount=-1 +kerning first=1054 second=1027 amount=-1 +kerning first=216 second=44 amount=-1 +kerning first=225 second=242 amount=-1 +kerning first=339 second=99 amount=-1 +kerning first=78 second=352 amount=-1 +kerning first=261 second=242 amount=-1 +kerning first=74 second=346 amount=-1 +kerning first=267 second=99 amount=-1 +kerning first=219 second=352 amount=-1 +kerning first=1034 second=1024 amount=-1 +kerning first=217 second=230 amount=-1 +kerning first=1070 second=1024 amount=-1 +kerning first=325 second=230 amount=-1 +kerning first=214 second=187 amount=-1 +kerning first=8222 second=339 amount=-1 +kerning first=71 second=282 amount=-1 +kerning first=323 second=290 amount=-1 +kerning first=264 second=8221 amount=-1 +kerning first=327 second=352 amount=-1 +kerning first=78 second=332 amount=-1 +kerning first=323 second=346 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=8218 second=333 amount=-1 +kerning first=187 second=87 amount=-2 +kerning first=75 second=288 amount=-1 +kerning first=1031 second=1107 amount=-1 +kerning first=205 second=230 amount=-1 +kerning first=1033 second=1052 amount=-1 +kerning first=264 second=233 amount=-1 +kerning first=262 second=288 amount=-1 +kerning first=298 second=288 amount=-1 +kerning first=8218 second=220 amount=-1 +kerning first=304 second=333 amount=-1 +kerning first=249 second=291 amount=-1 +kerning first=68 second=87 amount=-1 +kerning first=1069 second=1052 amount=-1 +kerning first=199 second=81 amount=-1 +kerning first=1059 second=1046 amount=-1 +kerning first=108 second=291 amount=-1 +kerning first=231 second=224 amount=-1 +kerning first=250 second=337 amount=-1 +kerning first=354 second=8218 amount=-1 +kerning first=86 second=334 amount=-1 +kerning first=1066 second=1061 amount=-1 +kerning first=218 second=227 amount=-1 +kerning first=1034 second=1098 amount=-1 +kerning first=109 second=337 amount=-1 +kerning first=1042 second=1027 amount=-1 +kerning first=73 second=337 amount=-1 +kerning first=85 second=288 amount=-1 +kerning first=81 second=84 amount=-1 +kerning first=77 second=227 amount=-1 +kerning first=78 second=70 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=1051 second=1119 amount=-1 +kerning first=229 second=99 amount=-1 +kerning first=105 second=8218 amount=-1 +kerning first=269 second=8221 amount=-2 +kerning first=233 second=106 amount=-1 +kerning first=69 second=8218 amount=-1 +kerning first=305 second=8221 amount=-1 +kerning first=1053 second=1064 amount=-1 +kerning first=302 second=111 amount=-1 +kerning first=1047 second=1095 amount=-1 +kerning first=75 second=218 amount=-1 +kerning first=377 second=8221 amount=-1 +kerning first=282 second=8218 amount=-1 +kerning first=246 second=8218 amount=-1 +kerning first=210 second=8218 amount=-1 +kerning first=335 second=187 amount=-1 +kerning first=368 second=196 amount=-1 +kerning first=229 second=279 amount=-1 +kerning first=1044 second=1104 amount=-1 +kerning first=209 second=171 amount=-1 +kerning first=86 second=187 amount=-1 +kerning first=289 second=328 amount=-1 +kerning first=1042 second=1041 amount=-1 +kerning first=296 second=209 amount=-1 +kerning first=205 second=364 amount=-1 +kerning first=258 second=264 amount=-1 +kerning first=264 second=66 amount=-1 +kerning first=195 second=371 amount=-1 +kerning first=199 second=261 amount=-1 +kerning first=197 second=316 amount=-1 +kerning first=67 second=368 amount=-1 +kerning first=267 second=311 amount=-1 +kerning first=323 second=69 amount=-1 +kerning first=226 second=108 amount=-1 +kerning first=272 second=364 amount=-1 +kerning first=262 second=209 amount=-1 +kerning first=269 second=316 amount=-1 +kerning first=83 second=209 amount=-1 +kerning first=192 second=367 amount=-1 +kerning first=1050 second=1073 amount=-1 +kerning first=198 second=202 amount=-1 +kerning first=233 second=316 amount=-1 +kerning first=304 second=257 amount=-1 +kerning first=45 second=264 amount=-1 +kerning first=121 second=108 amount=-1 +kerning first=1052 second=1031 amount=-1 +kerning first=1050 second=1086 amount=-1 +kerning first=268 second=257 amount=-1 +kerning first=270 second=202 amount=-1 +kerning first=201 second=116 amount=-1 +kerning first=280 second=368 amount=-1 +kerning first=264 second=380 amount=-1 +kerning first=1049 second=1027 amount=-1 +kerning first=352 second=368 amount=-1 +kerning first=268 second=270 amount=-1 +kerning first=87 second=367 amount=-1 +kerning first=1031 second=1113 amount=-1 +kerning first=304 second=270 amount=-1 +kerning first=270 second=203 amount=-1 +kerning first=104 second=281 amount=-1 +kerning first=327 second=273 amount=-1 +kerning first=1119 second=1095 amount=-1 +kerning first=313 second=364 amount=-1 +kerning first=74 second=69 amount=-1 +kerning first=368 second=209 amount=-1 +kerning first=1039 second=1034 amount=-1 +kerning first=219 second=273 amount=-1 +kerning first=231 second=44 amount=-1 +kerning first=274 second=252 amount=-1 +kerning first=267 second=44 amount=-1 +kerning first=99 second=8249 amount=-1 +kerning first=280 second=355 amount=-1 +kerning first=346 second=252 amount=-1 +kerning first=78 second=273 amount=-1 +kerning first=362 second=214 amount=-1 +kerning first=310 second=252 amount=-1 +kerning first=375 second=44 amount=-1 +kerning first=212 second=78 amount=-1 +kerning first=87 second=380 amount=-1 +kerning first=80 second=205 amount=-1 +kerning first=228 second=380 amount=-1 +kerning first=284 second=78 amount=-1 +kerning first=67 second=355 amount=-1 +kerning first=362 second=227 amount=-1 +kerning first=213 second=8221 amount=-2 +kerning first=1071 second=1076 amount=-1 +kerning first=235 second=248 amount=-1 +kerning first=1047 second=1082 amount=-1 +kerning first=266 second=325 amount=-1 +kerning first=77 second=214 amount=-1 +kerning first=199 second=248 amount=-1 +kerning first=1033 second=1039 amount=-1 +kerning first=8218 second=233 amount=-1 +kerning first=70 second=346 amount=-1 +kerning first=307 second=248 amount=-1 +kerning first=338 second=325 amount=-1 +kerning first=71 second=78 amount=-1 +kerning first=271 second=248 amount=-1 +kerning first=67 second=224 amount=-1 +kerning first=317 second=87 amount=-1 +kerning first=202 second=252 amount=-1 +kerning first=218 second=214 amount=-1 +kerning first=187 second=357 amount=-1 +kerning first=283 second=333 amount=-1 +kerning first=86 second=347 amount=-1 +kerning first=85 second=352 amount=-1 +kerning first=192 second=220 amount=-1 +kerning first=1056 second=1042 amount=-1 +kerning first=1031 second=1092 amount=-1 +kerning first=1044 second=1117 amount=-1 +kerning first=73 second=350 amount=-1 +kerning first=8250 second=317 amount=-1 +kerning first=365 second=339 amount=-1 +kerning first=1066 second=1048 amount=-1 +kerning first=8217 second=334 amount=-1 +kerning first=199 second=382 amount=-1 +kerning first=101 second=289 amount=-1 +kerning first=1030 second=1048 amount=-1 +kerning first=355 second=333 amount=-1 +kerning first=235 second=382 amount=-1 +kerning first=242 second=289 amount=-1 +kerning first=304 second=103 amount=-1 +kerning first=99 second=171 amount=-1 +kerning first=368 second=330 amount=-1 +kerning first=268 second=103 amount=-1 +kerning first=264 second=246 amount=-1 +kerning first=209 second=100 amount=-1 +kerning first=314 second=289 amount=-1 +kerning first=232 second=103 amount=-1 +kerning first=228 second=246 amount=-1 +kerning first=8222 second=332 amount=-1 +kerning first=281 second=100 amount=-1 +kerning first=72 second=270 amount=-1 +kerning first=264 second=220 amount=-1 +kerning first=70 second=333 amount=-1 +kerning first=304 second=77 amount=-1 +kerning first=368 second=201 amount=-1 +kerning first=106 second=333 amount=-1 +kerning first=87 second=246 amount=-1 +kerning first=350 second=82 amount=-1 +kerning first=8222 second=378 amount=-1 +kerning first=1056 second=1068 amount=-1 +kerning first=296 second=330 amount=-1 +kerning first=268 second=77 amount=-1 +kerning first=67 second=273 amount=-1 +kerning first=274 second=85 amount=-1 +kerning first=275 second=333 amount=-1 +kerning first=266 second=338 amount=-1 +kerning first=202 second=85 amount=-1 +kerning first=213 second=304 amount=-1 +kerning first=194 second=338 amount=-1 +kerning first=271 second=8249 amount=-1 +kerning first=374 second=8217 amount=-1 +kerning first=246 second=120 amount=-1 +kerning first=89 second=338 amount=-1 +kerning first=195 second=211 amount=-1 +kerning first=72 second=304 amount=-1 +kerning first=282 second=313 amount=-1 +kerning first=220 second=332 amount=-1 +kerning first=271 second=382 amount=-1 +kerning first=1039 second=1065 amount=-1 +kerning first=187 second=364 amount=-1 +kerning first=221 second=339 amount=-1 +kerning first=203 second=298 amount=-1 +kerning first=1042 second=1025 amount=-1 +kerning first=242 second=8221 amount=-2 +kerning first=364 second=332 amount=-1 +kerning first=80 second=339 amount=-1 +kerning first=193 second=86 amount=-1 +kerning first=206 second=109 amount=-1 +kerning first=263 second=347 amount=-1 +kerning first=1030 second=1074 amount=-1 +kerning first=210 second=313 amount=-1 +kerning first=366 second=264 amount=-1 +kerning first=197 second=290 amount=-1 +kerning first=330 second=264 amount=-1 +kerning first=116 second=339 amount=-1 +kerning first=249 second=111 amount=-1 +kerning first=363 second=45 amount=-1 +kerning first=287 second=357 amount=-1 +kerning first=8222 second=231 amount=-1 +kerning first=1027 second=1083 amount=-1 +kerning first=256 second=8250 amount=-1 +kerning first=281 second=254 amount=-1 +kerning first=220 second=8250 amount=-2 +kerning first=69 second=313 amount=-1 +kerning first=323 second=357 amount=-1 +kerning first=73 second=203 amount=-1 +kerning first=187 second=323 amount=-1 +kerning first=79 second=8250 amount=-1 +kerning first=74 second=357 amount=-1 +kerning first=356 second=271 amount=-1 +kerning first=1071 second=1118 amount=-1 +kerning first=205 second=76 amount=-1 +kerning first=201 second=219 amount=-1 +kerning first=230 second=8217 amount=-2 +kerning first=217 second=315 amount=-1 +kerning first=266 second=8217 amount=-1 +kerning first=338 second=8217 amount=-1 +kerning first=74 second=262 amount=-1 +kerning first=217 second=97 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=235 second=363 amount=-1 +kerning first=346 second=85 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=194 second=8217 amount=-2 +kerning first=220 second=73 amount=-1 +kerning first=8218 second=367 amount=-1 +kerning first=325 second=315 amount=-1 +kerning first=70 second=212 amount=-1 +kerning first=77 second=330 amount=-1 +kerning first=68 second=280 amount=-1 +kerning first=101 second=263 amount=-1 +kerning first=8222 second=103 amount=-1 +kerning first=71 second=366 amount=-1 +kerning first=206 second=263 amount=-1 +kerning first=205 second=204 amount=-1 +kerning first=45 second=110 amount=-1 +kerning first=204 second=331 amount=-1 +kerning first=85 second=366 amount=-1 +kerning first=209 second=280 amount=-1 +kerning first=314 second=263 amount=-1 +kerning first=304 second=347 amount=-1 +kerning first=262 second=314 amount=-1 +kerning first=195 second=316 amount=-1 +kerning first=220 second=66 amount=-1 +kerning first=221 second=365 amount=-1 +kerning first=226 second=314 amount=-1 +kerning first=286 second=203 amount=-1 +kerning first=1071 second=1055 amount=-1 +kerning first=356 second=8249 amount=-1 +kerning first=327 second=8221 amount=-1 +kerning first=366 second=110 amount=-1 +kerning first=84 second=229 amount=-1 +kerning first=330 second=110 amount=-1 +kerning first=67 second=67 amount=-1 +kerning first=101 second=291 amount=-1 +kerning first=214 second=203 amount=-1 +kerning first=284 second=366 amount=-1 +kerning first=339 second=250 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=1047 second=1024 amount=-1 +kerning first=278 second=70 amount=-1 +kerning first=84 second=101 amount=-1 +kerning first=267 second=250 amount=-1 +kerning first=76 second=354 amount=-1 +kerning first=231 second=250 amount=-1 +kerning first=8222 second=290 amount=-1 +kerning first=350 second=70 amount=-1 +kerning first=8217 second=115 amount=-1 +kerning first=304 second=378 amount=-1 +kerning first=261 second=101 amount=-1 +kerning first=263 second=46 amount=-1 +kerning first=268 second=378 amount=-1 +kerning first=288 second=76 amount=-1 +kerning first=225 second=101 amount=-1 +kerning first=375 second=250 amount=-1 +kerning first=232 second=378 amount=-1 +kerning first=206 second=70 amount=-1 +kerning first=78 second=8217 amount=-1 +kerning first=114 second=8217 amount=-1 +kerning first=325 second=325 amount=-1 +kerning first=262 second=262 amount=-1 +kerning first=344 second=366 amount=-1 +kerning first=1039 second=1030 amount=-1 +kerning first=369 second=101 amount=-1 +kerning first=219 second=8217 amount=-1 +kerning first=1041 second=1087 amount=-1 +kerning first=195 second=250 amount=-1 +kerning first=304 second=296 amount=-1 +kerning first=352 second=367 amount=-1 +kerning first=1059 second=1072 amount=-1 +kerning first=207 second=201 amount=-1 +kerning first=298 second=262 amount=-1 +kerning first=268 second=296 amount=-1 +kerning first=45 second=375 amount=-1 +kerning first=370 second=262 amount=-1 +kerning first=73 second=45 amount=-1 +kerning first=99 second=249 amount=-1 +kerning first=45 second=354 amount=-1 +kerning first=8218 second=246 amount=-1 +kerning first=66 second=201 amount=-1 +kerning first=246 second=291 amount=-1 +kerning first=220 second=345 amount=-1 +kerning first=235 second=369 amount=-1 +kerning first=87 second=259 amount=-1 +kerning first=204 second=113 amount=-1 +kerning first=207 second=116 amount=-1 +kerning first=364 second=280 amount=-1 +kerning first=70 second=207 amount=-1 +kerning first=221 second=8250 amount=-1 +kerning first=1071 second=1105 amount=-1 +kerning first=338 second=204 amount=-1 +kerning first=1043 second=1084 amount=-1 +kerning first=328 second=345 amount=-1 +kerning first=302 second=204 amount=-1 +kerning first=364 second=345 amount=-1 +kerning first=266 second=204 amount=-1 +kerning first=264 second=259 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=307 second=287 amount=-1 +kerning first=204 second=210 amount=-1 +kerning first=230 second=345 amount=-1 +kerning first=271 second=287 amount=-1 +kerning first=278 second=274 amount=-1 +kerning first=281 second=113 amount=-1 +kerning first=264 second=207 amount=-1 +kerning first=235 second=287 amount=-1 +kerning first=72 second=317 amount=-1 +kerning first=82 second=336 amount=-1 +kerning first=209 second=113 amount=-1 +kerning first=219 second=67 amount=-1 +kerning first=201 second=366 amount=-1 +kerning first=213 second=317 amount=-1 +kerning first=187 second=336 amount=-1 +kerning first=104 second=113 amount=-1 +kerning first=364 second=8250 amount=-2 +kerning first=66 second=116 amount=-1 +kerning first=76 second=8220 amount=-1 +kerning first=218 second=73 amount=-1 +kerning first=232 second=244 amount=-1 +kerning first=369 second=281 amount=-1 +kerning first=1047 second=1056 amount=-1 +kerning first=1089 second=1103 amount=-1 +kerning first=268 second=244 amount=-1 +kerning first=269 second=97 amount=-1 +kerning first=304 second=244 amount=-1 +kerning first=362 second=73 amount=-1 +kerning first=274 second=278 amount=-1 +kerning first=325 second=8220 amount=-1 +kerning first=8217 second=216 amount=-1 +kerning first=86 second=213 amount=-1 +kerning first=289 second=8220 amount=-2 +kerning first=202 second=278 amount=-1 +kerning first=88 second=216 amount=-1 +kerning first=272 second=88 amount=-1 +kerning first=117 second=277 amount=-1 +kerning first=1050 second=1060 amount=-1 +kerning first=206 second=209 amount=-1 +kerning first=346 second=278 amount=-1 +kerning first=366 second=277 amount=-1 +kerning first=77 second=73 amount=-1 +kerning first=330 second=277 amount=-1 +kerning first=100 second=269 amount=-1 +kerning first=199 second=235 amount=-1 +kerning first=225 second=281 amount=-1 +kerning first=80 second=77 amount=-1 +kerning first=235 second=235 amount=-1 +kerning first=261 second=281 amount=-1 +kerning first=74 second=82 amount=-1 +kerning first=1056 second=1081 amount=-1 +kerning first=241 second=269 amount=-1 +kerning first=305 second=45 amount=-1 +kerning first=277 second=269 amount=-1 +kerning first=279 second=283 amount=-1 +kerning first=203 second=79 amount=-1 +kerning first=205 second=269 amount=-1 +kerning first=344 second=219 amount=-1 +kerning first=257 second=231 amount=-1 +kerning first=207 second=283 amount=-1 +kerning first=205 second=338 amount=-1 +kerning first=330 second=290 amount=-1 +kerning first=323 second=82 amount=-1 +kerning first=1047 second=1038 amount=-2 +kerning first=327 second=286 amount=-1 +kerning first=366 second=290 amount=-1 +kerning first=289 second=113 amount=-1 +kerning first=365 second=231 amount=-1 +kerning first=1053 second=1025 amount=-1 +kerning first=1056 second=1094 amount=-1 +kerning first=210 second=274 amount=-1 +kerning first=78 second=286 amount=-1 +kerning first=45 second=382 amount=-1 +kerning first=277 second=351 amount=-1 +kerning first=330 second=378 amount=-1 +kerning first=204 second=85 amount=-1 +kerning first=219 second=286 amount=-1 +kerning first=1059 second=1085 amount=-1 +kerning first=205 second=351 amount=-1 +kerning first=69 second=274 amount=-1 +kerning first=45 second=290 amount=-1 +kerning first=362 second=382 amount=-1 +kerning first=85 second=275 amount=-1 +kerning first=253 second=367 amount=-1 +kerning first=201 second=310 amount=-1 +kerning first=86 second=115 amount=-1 +kerning first=225 second=114 amount=-1 +kerning first=217 second=367 amount=-1 +kerning first=333 second=114 amount=-1 +kerning first=219 second=80 amount=-1 +kerning first=275 second=104 amount=-1 +kerning first=289 second=367 amount=-1 +kerning first=70 second=251 amount=-1 +kerning first=205 second=217 amount=-1 +kerning first=203 second=66 amount=-1 +kerning first=213 second=8222 amount=-1 +kerning first=327 second=80 amount=-1 +kerning first=270 second=310 amount=-1 +kerning first=80 second=231 amount=-1 +kerning first=69 second=205 amount=-1 +kerning first=116 second=231 amount=-1 +kerning first=283 second=251 amount=-1 +kerning first=209 second=213 amount=-1 +kerning first=198 second=310 amount=-1 +kerning first=65 second=121 amount=-1 +kerning first=221 second=231 amount=-1 +kerning first=8220 second=220 amount=-1 +kerning first=354 second=339 amount=-1 +kerning first=82 second=284 amount=-1 +kerning first=263 second=115 amount=-1 +kerning first=1071 second=1034 amount=-1 +kerning first=282 second=205 amount=-1 +kerning first=78 second=80 amount=-1 +kerning first=187 second=284 amount=-1 +kerning first=210 second=205 amount=-1 +kerning first=1049 second=1053 amount=-1 +kerning first=270 second=362 amount=-1 +kerning first=271 second=235 amount=-1 +kerning first=73 second=242 amount=-1 +kerning first=207 second=214 amount=-1 +kerning first=366 second=71 amount=-1 +kerning first=330 second=71 amount=-1 +kerning first=88 second=266 amount=-1 +kerning first=207 second=75 amount=-1 +kerning first=193 second=266 amount=-1 +kerning first=109 second=242 amount=-1 +kerning first=230 second=106 amount=-1 +kerning first=284 second=46 amount=-1 +kerning first=370 second=275 amount=-1 +kerning first=286 second=310 amount=-1 +kerning first=45 second=71 amount=-1 +kerning first=70 second=45 amount=-2 +kerning first=108 second=252 amount=-1 +kerning first=106 second=45 amount=-1 +kerning first=262 second=275 amount=-1 +kerning first=287 second=249 amount=-1 +kerning first=66 second=214 amount=-1 +kerning first=226 second=275 amount=-1 +kerning first=258 second=71 amount=-1 +kerning first=98 second=8218 amount=-1 +kerning first=355 second=45 amount=-1 +kerning first=198 second=362 amount=-1 +kerning first=8218 second=259 amount=-1 +kerning first=298 second=275 amount=-1 +kerning first=272 second=315 amount=-1 +kerning first=325 second=302 amount=-1 +kerning first=84 second=337 amount=-1 +kerning first=368 second=313 amount=-1 +kerning first=99 second=223 amount=-1 +kerning first=1068 second=1045 amount=-1 +kerning first=204 second=99 amount=-1 +kerning first=78 second=234 amount=-1 +kerning first=218 second=361 amount=-1 +kerning first=219 second=234 amount=-1 +kerning first=281 second=267 amount=-1 +kerning first=193 second=87 amount=-1 +kerning first=1102 second=1113 amount=-1 +kerning first=1034 second=1046 amount=-1 +kerning first=289 second=233 amount=-1 +kerning first=291 second=234 amount=-1 +kerning first=1070 second=1046 amount=-1 +kerning first=97 second=291 amount=-1 +kerning first=325 second=233 amount=-1 +kerning first=366 second=346 amount=-1 +kerning first=85 second=327 amount=-1 +kerning first=118 second=117 amount=-1 +kerning first=362 second=361 amount=-1 +kerning first=206 second=122 amount=-1 +kerning first=1068 second=1037 amount=-1 +kerning first=214 second=72 amount=-1 +kerning first=324 second=243 amount=-1 +kerning first=369 second=337 amount=-1 +kerning first=1076 second=1080 amount=-1 +kerning first=262 second=327 amount=-1 +kerning first=330 second=357 amount=-1 +kerning first=220 second=224 amount=-1 +kerning first=298 second=327 amount=-1 +kerning first=280 second=204 amount=-1 +kerning first=261 second=337 amount=-1 +kerning first=80 second=352 amount=-1 +kerning first=334 second=327 amount=-1 +kerning first=225 second=337 amount=-1 +kerning first=197 second=8221 amount=-2 +kerning first=212 second=258 amount=-1 +kerning first=72 second=298 amount=-1 +kerning first=233 second=8221 amount=-2 +kerning first=243 second=287 amount=-1 +kerning first=364 second=224 amount=-1 +kerning first=8218 second=380 amount=-1 +kerning first=1044 second=1076 amount=-1 +kerning first=1071 second=1036 amount=-1 +kerning first=268 second=107 amount=-1 +kerning first=366 second=225 amount=-1 +kerning first=202 second=72 amount=-1 +kerning first=330 second=225 amount=-1 +kerning first=1068 second=1044 amount=-1 +kerning first=74 second=370 amount=-1 +kerning first=193 second=318 amount=-1 +kerning first=229 second=318 amount=-1 +kerning first=220 second=211 amount=-1 +kerning first=335 second=46 amount=-1 +kerning first=8250 second=209 amount=-1 +kerning first=346 second=72 amount=-1 +kerning first=104 second=267 amount=-1 +kerning first=1058 second=1071 amount=-1 +kerning first=204 second=344 amount=-1 +kerning first=327 second=234 amount=-1 +kerning first=86 second=113 amount=-1 +kerning first=1031 second=1055 amount=-1 +kerning first=337 second=318 amount=-1 +kerning first=192 second=105 amount=-1 +kerning first=274 second=72 amount=-1 +kerning first=209 second=267 amount=-1 +kerning first=8222 second=244 amount=-1 +kerning first=70 second=199 amount=-1 +kerning first=369 second=114 amount=-1 +kerning first=323 second=370 amount=-1 +kerning first=366 second=199 amount=-1 +kerning first=193 second=361 amount=-1 +kerning first=368 second=111 amount=-1 +kerning first=344 second=212 amount=-1 +kerning first=269 second=311 amount=-1 +kerning first=8220 second=364 amount=-1 +kerning first=1039 second=1086 amount=-1 +kerning first=370 second=264 amount=-1 +kerning first=192 second=118 amount=-1 +kerning first=45 second=270 amount=-1 +kerning first=200 second=212 amount=-1 +kerning first=1052 second=1083 amount=-1 +kerning first=85 second=206 amount=-1 +kerning first=234 second=267 amount=-1 +kerning first=220 second=225 amount=-1 +kerning first=334 second=206 amount=-1 +kerning first=205 second=115 amount=-1 +kerning first=370 second=206 amount=-1 +kerning first=197 second=368 amount=-1 +kerning first=1108 second=1095 amount=-1 +kerning first=262 second=206 amount=-1 +kerning first=283 second=114 amount=-1 +kerning first=277 second=115 amount=-1 +kerning first=298 second=206 amount=-1 +kerning first=224 second=111 amount=-1 +kerning first=8216 second=193 amount=-2 +kerning first=325 second=220 amount=-1 +kerning first=296 second=111 amount=-1 +kerning first=1072 second=1095 amount=-1 +kerning first=362 second=284 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=1071 second=1079 amount=-1 +kerning first=368 second=81 amount=-1 +kerning first=85 second=370 amount=-1 +kerning first=284 second=310 amount=-1 +kerning first=289 second=263 amount=-1 +kerning first=296 second=81 amount=-1 +kerning first=325 second=263 amount=-1 +kerning first=212 second=310 amount=-1 +kerning first=88 second=8249 amount=-1 +kerning first=210 second=68 amount=-1 +kerning first=262 second=370 amount=-1 +kerning first=1053 second=1095 amount=-1 +kerning first=71 second=310 amount=-1 +kerning first=282 second=68 amount=-1 +kerning first=69 second=365 amount=-1 +kerning first=229 second=8249 amount=-1 +kerning first=45 second=199 amount=-1 +kerning first=316 second=106 amount=-1 +kerning first=370 second=370 amount=-1 +kerning first=203 second=203 amount=-1 +kerning first=278 second=330 amount=-1 +kerning first=298 second=370 amount=-1 +kerning first=334 second=370 amount=-1 +kerning first=315 second=374 amount=-1 +kerning first=258 second=199 amount=-1 +kerning first=244 second=106 amount=-1 +kerning first=1118 second=1101 amount=-1 +kerning first=330 second=199 amount=-1 +kerning first=217 second=263 amount=-1 +kerning first=71 second=327 amount=-1 +kerning first=346 second=8222 amount=-1 +kerning first=204 second=223 amount=-1 +kerning first=212 second=327 amount=-1 +kerning first=89 second=230 amount=-1 +kerning first=77 second=204 amount=-1 +kerning first=286 second=317 amount=-1 +kerning first=202 second=8222 amount=-1 +kerning first=8222 second=227 amount=-1 +kerning first=8250 second=382 amount=-1 +kerning first=202 second=334 amount=-1 +kerning first=204 second=279 amount=-1 +kerning first=99 second=279 amount=-1 +kerning first=310 second=334 amount=-1 +kerning first=65 second=210 amount=-1 +kerning first=201 second=288 amount=-1 +kerning first=364 second=44 amount=-2 +kerning first=79 second=87 amount=-1 +kerning first=288 second=187 amount=-1 +kerning first=325 second=213 amount=-1 +kerning first=274 second=334 amount=-1 +kerning first=224 second=291 amount=-1 +kerning first=74 second=318 amount=-1 +kerning first=1052 second=1056 amount=-1 +kerning first=1054 second=1045 amount=-1 +kerning first=197 second=84 amount=-1 +kerning first=197 second=221 amount=-1 +kerning first=272 second=75 amount=-1 +kerning first=75 second=187 amount=-1 +kerning first=207 second=270 amount=-1 +kerning first=287 second=318 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=365 second=101 amount=-1 +kerning first=86 second=279 amount=-1 +kerning first=8222 second=234 amount=-1 +kerning first=268 second=352 amount=-1 +kerning first=200 second=75 amount=-1 +kerning first=367 second=245 amount=-1 +kerning first=304 second=352 amount=-1 +kerning first=1060 second=1027 amount=-1 +kerning first=216 second=187 amount=-1 +kerning first=258 second=303 amount=-1 +kerning first=218 second=99 amount=-1 +kerning first=1042 second=1064 amount=-1 +kerning first=1076 second=1119 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=259 second=245 amount=-1 +kerning first=111 second=187 amount=-1 +kerning first=275 second=337 amount=-1 +kerning first=1053 second=1067 amount=-1 +kerning first=204 second=230 amount=-1 +kerning first=374 second=230 amount=-1 +kerning first=362 second=99 amount=-1 +kerning first=240 second=279 amount=-1 +kerning first=213 second=196 amount=-1 +kerning first=326 second=99 amount=-1 +kerning first=326 second=287 amount=-1 +kerning first=209 second=332 amount=-1 +kerning first=302 second=230 amount=-1 +kerning first=370 second=271 amount=-1 +kerning first=266 second=230 amount=-1 +kerning first=101 second=235 amount=-1 +kerning first=66 second=73 amount=-1 +kerning first=355 second=277 amount=-1 +kerning first=244 second=316 amount=-1 +kerning first=100 second=8217 amount=-1 +kerning first=68 second=8250 amount=-1 +kerning first=298 second=325 amount=-1 +kerning first=8218 second=118 amount=-1 +kerning first=283 second=277 amount=-1 +kerning first=316 second=316 amount=-1 +kerning first=74 second=108 amount=-1 +kerning first=363 second=281 amount=-1 +kerning first=207 second=73 amount=-1 +kerning first=234 second=104 amount=-1 +kerning first=1039 second=1073 amount=-1 +kerning first=67 second=290 amount=-1 +kerning first=203 second=116 amount=-1 +kerning first=197 second=264 amount=-1 +kerning first=70 second=277 amount=-1 +kerning first=85 second=193 amount=-1 +kerning first=334 second=69 amount=-1 +kerning first=212 second=323 amount=-1 +kerning first=338 second=364 amount=-1 +kerning first=249 second=337 amount=-1 +kerning first=327 second=338 amount=-1 +kerning first=302 second=364 amount=-1 +kerning first=1052 second=1084 amount=-1 +kerning first=266 second=364 amount=-1 +kerning first=370 second=69 amount=-1 +kerning first=71 second=323 amount=-1 +kerning first=67 second=350 amount=-1 +kerning first=241 second=8217 amount=-2 +kerning first=194 second=364 amount=-1 +kerning first=277 second=8217 amount=-2 +kerning first=262 second=69 amount=-1 +kerning first=374 second=273 amount=-1 +kerning first=106 second=277 amount=-1 +kerning first=219 second=338 amount=-1 +kerning first=233 second=355 amount=-1 +kerning first=280 second=286 amount=-1 +kerning first=302 second=273 amount=-1 +kerning first=366 second=187 amount=-2 +kerning first=370 second=193 amount=-1 +kerning first=266 second=273 amount=-1 +kerning first=205 second=325 amount=-1 +kerning first=231 second=113 amount=-1 +kerning first=85 second=69 amount=-1 +kerning first=230 second=273 amount=-1 +kerning first=267 second=113 amount=-1 +kerning first=1052 second=1091 amount=-1 +kerning first=110 second=171 amount=-1 +kerning first=204 second=82 amount=-1 +kerning first=334 second=193 amount=-1 +kerning first=74 second=314 amount=-1 +kerning first=80 second=116 amount=-1 +kerning first=187 second=78 amount=-1 +kerning first=70 second=110 amount=-1 +kerning first=1064 second=1047 amount=-1 +kerning first=287 second=314 amount=-1 +kerning first=1052 second=1070 amount=-1 +kerning first=1036 second=1082 amount=-1 +kerning first=67 second=286 amount=-1 +kerning first=194 second=84 amount=-1 +kerning first=103 second=316 amount=-1 +kerning first=67 second=316 amount=-1 +kerning first=1047 second=1043 amount=-1 +kerning first=366 second=333 amount=-1 +kerning first=234 second=100 amount=-1 +kerning first=207 second=77 amount=-1 +kerning first=321 second=356 amount=-1 +kerning first=8217 second=213 amount=-1 +kerning first=1030 second=1100 amount=-1 +kerning first=317 second=219 amount=-1 +kerning first=112 second=289 amount=-1 +kerning first=1055 second=1048 amount=-1 +kerning first=330 second=333 amount=-1 +kerning first=253 second=289 amount=-1 +kerning first=8218 second=122 amount=-1 +kerning first=241 second=231 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=122 second=8221 amount=-1 +kerning first=366 second=194 amount=-1 +kerning first=1067 second=1042 amount=-1 +kerning first=73 second=101 amount=-1 +kerning first=66 second=77 amount=-1 +kerning first=289 second=289 amount=-1 +kerning first=213 second=356 amount=-1 +kerning first=69 second=68 amount=-1 +kerning first=251 second=171 amount=-1 +kerning first=1071 second=1049 amount=-1 +kerning first=283 second=281 amount=-1 +kerning first=287 second=171 amount=-1 +kerning first=346 second=304 amount=-1 +kerning first=323 second=171 amount=-1 +kerning first=351 second=103 amount=-1 +kerning first=8249 second=89 amount=-1 +kerning first=355 second=281 amount=-1 +kerning first=275 second=246 amount=-1 +kerning first=74 second=270 amount=-1 +kerning first=279 second=103 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=72 second=330 amount=-1 +kerning first=202 second=304 amount=-1 +kerning first=243 second=103 amount=-1 +kerning first=80 second=296 amount=-1 +kerning first=217 second=220 amount=-1 +kerning first=213 second=330 amount=-1 +kerning first=207 second=103 amount=-1 +kerning first=79 second=280 amount=-1 +kerning first=230 second=46 amount=-1 +kerning first=220 second=246 amount=-1 +kerning first=274 second=304 amount=-1 +kerning first=78 second=338 amount=-1 +kerning first=201 second=345 amount=-1 +kerning first=1055 second=1074 amount=-1 +kerning first=231 second=109 amount=-1 +kerning first=321 second=85 amount=-1 +kerning first=221 second=8218 amount=-2 +kerning first=1064 second=1051 amount=-1 +kerning first=73 second=298 amount=-1 +kerning first=70 second=281 amount=-1 +kerning first=264 second=315 amount=-1 +kerning first=267 second=109 amount=-1 +kerning first=74 second=277 amount=-1 +kerning first=105 second=339 amount=-1 +kerning first=72 second=85 amount=-1 +kerning first=119 second=382 amount=-1 +kerning first=214 second=298 amount=-1 +kerning first=364 second=211 amount=-1 +kerning first=199 second=313 amount=-1 +kerning first=224 second=382 amount=-1 +kerning first=353 second=8250 amount=-1 +kerning first=286 second=298 amount=-1 +kerning first=1038 second=1040 amount=-1 +kerning first=280 second=290 amount=-1 +kerning first=116 second=8218 amount=-1 +kerning first=80 second=120 amount=-1 +kerning first=296 second=382 amount=-1 +kerning first=281 second=8250 amount=-1 +kerning first=228 second=289 amount=-1 +kerning first=326 second=231 amount=-1 +kerning first=80 second=8218 amount=-2 +kerning first=1068 second=1079 amount=-1 +kerning first=245 second=8250 amount=-1 +kerning first=368 second=382 amount=-1 +kerning first=209 second=8250 amount=-1 +kerning first=224 second=287 amount=-1 +kerning first=1024 second=1095 amount=-1 +kerning first=230 second=234 amount=-1 +kerning first=307 second=339 amount=-1 +kerning first=206 second=302 amount=-1 +kerning first=220 second=83 amount=-1 +kerning first=74 second=210 amount=-1 +kerning first=302 second=234 amount=-1 +kerning first=219 second=263 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=235 second=107 amount=-1 +kerning first=266 second=234 amount=-1 +kerning first=370 second=232 amount=-1 +kerning first=374 second=234 amount=-1 +kerning first=65 second=8220 amount=-2 +kerning first=88 second=223 amount=-1 +kerning first=8250 second=196 amount=-1 +kerning first=1043 second=1114 amount=-1 +kerning first=284 second=219 amount=-1 +kerning first=235 second=339 amount=-1 +kerning first=199 second=339 amount=-1 +kerning first=101 second=8220 amount=-2 +kerning first=83 second=317 amount=-1 +kerning first=212 second=219 amount=-1 +kerning first=73 second=267 amount=-1 +kerning first=323 second=75 amount=-1 +kerning first=8222 second=283 amount=-1 +kerning first=275 second=311 amount=-1 +kerning first=202 second=330 amount=-1 +kerning first=85 second=232 amount=-1 +kerning first=325 second=122 amount=-1 +kerning first=346 second=219 amount=-1 +kerning first=199 second=107 amount=-1 +kerning first=217 second=122 amount=-1 +kerning first=362 second=103 amount=-1 +kerning first=71 second=219 amount=-1 +kerning first=253 second=122 amount=-1 +kerning first=298 second=232 amount=-1 +kerning first=1078 second=1103 amount=-1 +kerning first=112 second=122 amount=-1 +kerning first=72 second=214 amount=-1 +kerning first=262 second=232 amount=-1 +kerning first=89 second=234 amount=-1 +kerning first=226 second=232 amount=-1 +kerning first=218 second=335 amount=-1 +kerning first=8218 second=79 amount=-1 +kerning first=89 second=269 amount=-1 +kerning first=8250 second=210 amount=-1 +kerning first=1066 second=1065 amount=-1 +kerning first=368 second=85 amount=-1 +kerning first=362 second=335 amount=-1 +kerning first=266 second=269 amount=-1 +kerning first=326 second=335 amount=-1 +kerning first=302 second=269 amount=-1 +kerning first=193 second=45 amount=-1 +kerning first=296 second=85 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=230 second=269 amount=-1 +kerning first=216 second=46 amount=-1 +kerning first=242 second=8220 amount=-2 +kerning first=73 second=229 amount=-1 +kerning first=1102 second=1083 amount=-1 +kerning first=288 second=46 amount=-1 +kerning first=314 second=8220 amount=-1 +kerning first=210 second=8217 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=374 second=269 amount=-1 +kerning first=1031 second=1081 amount=-1 +kerning first=350 second=302 amount=-1 +kerning first=1067 second=1081 amount=-1 +kerning first=334 second=65 amount=-1 +kerning first=370 second=65 amount=-1 +kerning first=269 second=225 amount=-1 +kerning first=278 second=302 amount=-1 +kerning first=77 second=335 amount=-1 +kerning first=220 second=250 amount=-1 +kerning first=1042 second=1038 amount=-2 +kerning first=279 second=378 amount=-1 +kerning first=243 second=378 amount=-1 +kerning first=89 second=67 amount=-1 +kerning first=202 second=78 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=207 second=378 amount=-1 +kerning first=187 second=72 amount=-1 +kerning first=1031 second=1071 amount=-1 +kerning first=364 second=250 amount=-1 +kerning first=1071 second=1075 amount=-1 +kerning first=370 second=366 amount=-1 +kerning first=201 second=262 amount=-1 +kerning first=203 second=207 amount=-1 +kerning first=221 second=192 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=298 second=366 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=199 second=274 amount=-1 +kerning first=75 second=46 amount=-1 +kerning first=334 second=366 amount=-1 +kerning first=110 second=345 amount=-1 +kerning first=200 second=216 amount=-1 +kerning first=334 second=330 amount=-1 +kerning first=1060 second=1053 amount=-1 +kerning first=325 second=259 amount=-1 +kerning first=354 second=227 amount=-1 +kerning first=1051 second=1076 amount=-1 +kerning first=366 second=195 amount=-1 +kerning first=344 second=216 amount=-1 +kerning first=1091 second=1117 amount=-1 +kerning first=73 second=246 amount=-1 +kerning first=362 second=201 amount=-1 +kerning first=88 second=357 amount=-1 +kerning first=66 second=378 amount=-1 +kerning first=233 second=251 amount=-1 +kerning first=302 second=338 amount=-1 +kerning first=290 second=201 amount=-1 +kerning first=200 second=251 amount=-1 +kerning first=193 second=357 amount=-1 +kerning first=196 second=116 amount=-1 +kerning first=8250 second=356 amount=-1 +kerning first=218 second=201 amount=-1 +kerning first=220 second=113 amount=-1 +kerning first=77 second=201 amount=-1 +kerning first=217 second=259 amount=-1 +kerning first=219 second=204 amount=-1 +kerning first=72 second=207 amount=-1 +kerning first=304 second=116 amount=-1 +kerning first=281 second=187 amount=-1 +kerning first=224 second=108 amount=-1 +kerning first=187 second=375 amount=-1 +kerning first=78 second=204 amount=-1 +kerning first=232 second=116 amount=-1 +kerning first=1058 second=1108 amount=-1 +kerning first=327 second=204 amount=-1 +kerning first=262 second=366 amount=-1 +kerning first=275 second=242 amount=-1 +kerning first=69 second=369 amount=-1 +kerning first=234 second=271 amount=-1 +kerning first=323 second=210 amount=-1 +kerning first=73 second=268 amount=-1 +kerning first=1101 second=1093 amount=-1 +kerning first=78 second=201 amount=-1 +kerning first=1049 second=1096 amount=-1 +kerning first=328 second=113 amount=-1 +kerning first=1039 second=1047 amount=-1 +kerning first=374 second=67 amount=-1 +kerning first=282 second=369 amount=-1 +kerning first=364 second=113 amount=-1 +kerning first=266 second=67 amount=-1 +kerning first=368 second=317 amount=-1 +kerning first=1054 second=1067 amount=-1 +kerning first=302 second=67 amount=-1 +kerning first=8217 second=243 amount=-1 +kerning first=110 second=279 amount=-1 +kerning first=278 second=371 amount=-1 +kerning first=1091 second=1113 amount=-1 +kerning first=279 second=244 amount=-1 +kerning first=101 second=233 amount=-1 +kerning first=1066 second=1030 amount=-1 +kerning first=350 second=371 amount=-1 +kerning first=330 second=97 amount=-1 +kerning first=74 second=279 amount=-1 +kerning first=366 second=97 amount=-1 +kerning first=287 second=279 amount=-1 +kerning first=80 second=257 amount=-1 +kerning first=1039 second=1079 amount=-1 +kerning first=323 second=279 amount=-1 +kerning first=1051 second=1080 amount=-1 +kerning first=201 second=327 amount=-1 +kerning first=251 second=279 amount=-1 +kerning first=199 second=209 amount=-1 +kerning first=206 second=233 amount=-1 +kerning first=274 second=200 amount=-1 +kerning first=1062 second=1102 amount=-1 +kerning first=70 second=75 amount=-1 +kerning first=362 second=266 amount=-1 +kerning first=277 second=187 amount=-1 +kerning first=202 second=200 amount=-1 +kerning first=314 second=233 amount=-1 +kerning first=75 second=213 amount=-1 +kerning first=65 second=371 amount=-1 +kerning first=218 second=266 amount=-1 +kerning first=354 second=235 amount=-1 +kerning first=81 second=8221 amount=-2 +kerning first=304 second=218 amount=-1 +kerning first=98 second=380 amount=-1 +kerning first=290 second=270 amount=-1 +kerning first=232 second=283 amount=-1 +kerning first=99 second=318 amount=-1 +kerning first=368 second=248 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=218 second=270 amount=-1 +kerning first=354 second=231 amount=-1 +kerning first=196 second=218 amount=-1 +kerning first=8216 second=65 amount=-2 +kerning first=1054 second=1071 amount=-1 +kerning first=284 second=282 amount=-1 +kerning first=275 second=380 amount=-1 +kerning first=105 second=231 amount=-1 +kerning first=220 second=44 amount=-2 +kerning first=224 second=248 amount=-1 +kerning first=256 second=44 amount=-1 +kerning first=307 second=45 amount=-1 +kerning first=362 second=270 amount=-1 +kerning first=211 second=75 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=296 second=248 amount=-1 +kerning first=286 second=66 amount=-1 +kerning first=1060 second=1071 amount=-1 +kerning first=264 second=79 amount=-1 +kerning first=269 second=269 amount=-1 +kerning first=8218 second=289 amount=-1 +kerning first=87 second=79 amount=-1 +kerning first=278 second=367 amount=-1 +kerning first=8250 second=85 amount=-1 +kerning first=192 second=79 amount=-1 +kerning first=207 second=244 amount=-1 +kerning first=304 second=283 amount=-1 +kerning first=350 second=367 amount=-1 +kerning first=77 second=270 amount=-1 +kerning first=314 second=367 amount=-1 +kerning first=75 second=217 amount=-1 +kerning first=74 second=344 amount=-1 +kerning first=101 second=367 amount=-1 +kerning first=192 second=354 amount=-1 +kerning first=344 second=114 amount=-1 +kerning first=199 second=205 amount=-1 +kerning first=67 second=80 amount=-1 +kerning first=310 second=8222 amount=-1 +kerning first=87 second=261 amount=-1 +kerning first=71 second=8218 amount=-1 +kerning first=288 second=217 amount=-1 +kerning first=280 second=80 amount=-1 +kerning first=74 second=206 amount=-1 +kerning first=200 second=114 amount=-1 +kerning first=380 second=45 amount=-1 +kerning first=323 second=344 amount=-1 +kerning first=119 second=252 amount=-1 +kerning first=1065 second=1097 amount=-1 +kerning first=83 second=252 amount=-1 +kerning first=80 second=261 amount=-1 +kerning first=1025 second=1095 amount=-1 +kerning first=313 second=89 amount=-1 +kerning first=8222 second=218 amount=-1 +kerning first=45 second=368 amount=-1 +kerning first=212 second=353 amount=-1 +kerning first=8250 second=81 amount=-1 +kerning first=81 second=368 amount=-1 +kerning first=1097 second=1095 amount=-1 +kerning first=187 second=379 amount=-1 +kerning first=204 second=216 amount=-1 +kerning first=356 second=353 amount=-1 +kerning first=195 second=345 amount=-1 +kerning first=231 second=345 amount=-1 +kerning first=323 second=206 amount=-1 +kerning first=267 second=345 amount=-1 +kerning first=330 second=368 amount=-1 +kerning first=77 second=266 amount=-1 +kerning first=117 second=8221 amount=-1 +kerning first=366 second=368 amount=-1 +kerning first=339 second=345 amount=-1 +kerning first=1067 second=1077 amount=-1 +kerning first=1040 second=1054 amount=-1 +kerning first=255 second=106 amount=-1 +kerning first=375 second=345 amount=-1 +kerning first=334 second=302 amount=-1 +kerning first=1031 second=1077 amount=-1 +kerning first=86 second=243 amount=-1 +kerning first=258 second=8221 amount=-2 +kerning first=304 second=214 amount=-1 +kerning first=72 second=226 amount=-1 +kerning first=227 second=243 amount=-1 +kerning first=268 second=214 amount=-1 +kerning first=258 second=368 amount=-1 +kerning first=218 second=197 amount=-1 +kerning first=196 second=214 amount=-1 +kerning first=187 second=310 amount=-1 +kerning first=263 second=243 amount=-1 +kerning first=287 second=275 amount=-1 +kerning first=68 second=362 amount=-1 +kerning first=286 second=46 amount=-1 +kerning first=251 second=275 amount=-1 +kerning first=362 second=197 amount=-1 +kerning first=67 second=315 amount=-1 +kerning first=193 second=223 amount=-1 +kerning first=323 second=275 amount=-1 +kerning first=352 second=80 amount=-1 +kerning first=110 second=275 amount=-1 +kerning first=370 second=327 amount=-1 +kerning first=368 second=252 amount=-1 +kerning first=231 second=120 amount=-1 +kerning first=74 second=275 amount=-1 +kerning first=209 second=362 amount=-1 +kerning first=220 second=288 amount=-1 +kerning first=317 second=362 amount=-1 +kerning first=232 second=8220 amount=-2 +kerning first=1064 second=1086 amount=-1 +kerning first=67 second=71 amount=-1 +kerning first=1053 second=1094 amount=-1 +kerning first=356 second=275 amount=-1 +kerning first=74 second=353 amount=-1 +kerning first=225 second=45 amount=-1 +kerning first=78 second=243 amount=-1 +kerning first=84 second=45 amount=-1 +kerning first=219 second=243 amount=-1 +kerning first=120 second=45 amount=-1 +kerning first=1076 second=1097 amount=-1 +kerning first=291 second=243 amount=-1 +kerning first=1068 second=1036 amount=-1 +kerning first=204 second=214 amount=-1 +kerning first=369 second=45 amount=-1 +kerning first=261 second=45 amount=-1 +kerning first=363 second=243 amount=-1 +kerning first=1070 second=1068 amount=-1 +kerning first=323 second=353 amount=-1 +kerning first=205 second=219 amount=-1 +kerning first=327 second=243 amount=-1 +kerning first=1034 second=1068 amount=-1 +kerning first=284 second=362 amount=-1 +kerning first=201 second=223 amount=-1 +kerning first=205 second=80 amount=-1 +kerning first=1060 second=1062 amount=-1 +kerning first=121 second=318 amount=-1 +kerning first=327 second=248 amount=-1 +kerning first=282 second=67 amount=-1 +kerning first=255 second=365 amount=-1 +kerning first=262 second=318 amount=-1 +kerning first=1051 second=1060 amount=-1 +kerning first=1038 second=1082 amount=-1 +kerning first=264 second=350 amount=-1 +kerning first=232 second=46 amount=-1 +kerning first=334 second=258 amount=-1 +kerning first=1071 second=1027 amount=-1 +kerning first=370 second=258 amount=-1 +kerning first=366 second=234 amount=-1 +kerning first=327 second=262 amount=-1 +kerning first=330 second=234 amount=-1 +kerning first=77 second=257 amount=-1 +kerning first=339 second=8250 amount=-1 +kerning first=269 second=103 amount=-1 +kerning first=296 second=226 amount=-1 +kerning first=71 second=362 amount=-1 +kerning first=323 second=266 amount=-1 +kerning first=212 second=362 amount=-1 +kerning first=368 second=226 amount=-1 +kerning first=1059 second=1076 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=280 second=71 amount=-1 +kerning first=105 second=283 amount=-1 +kerning first=194 second=361 amount=-1 +kerning first=234 second=232 amount=-1 +kerning first=197 second=81 amount=-1 +kerning first=1038 second=1096 amount=-1 +kerning first=88 second=249 amount=-1 +kerning first=74 second=266 amount=-1 +kerning first=267 second=241 amount=-1 +kerning first=1051 second=1089 amount=-1 +kerning first=231 second=241 amount=-1 +kerning first=316 second=244 amount=-1 +kerning first=235 second=98 amount=-1 +kerning first=288 second=72 amount=-1 +kerning first=259 second=267 amount=-1 +kerning first=1041 second=1096 amount=-1 +kerning first=199 second=98 amount=-1 +kerning first=87 second=216 amount=-1 +kerning first=116 second=275 amount=-1 +kerning first=112 second=345 amount=-1 +kerning first=267 second=328 amount=-1 +kerning first=192 second=216 amount=-1 +kerning first=217 second=8249 amount=-2 +kerning first=231 second=328 amount=-1 +kerning first=279 second=243 amount=-1 +kerning first=217 second=345 amount=-1 +kerning first=171 second=352 amount=-1 +kerning first=80 second=335 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=253 second=345 amount=-1 +kerning first=207 second=352 amount=-1 +kerning first=330 second=114 amount=-1 +kerning first=289 second=345 amount=-1 +kerning first=203 second=302 amount=-1 +kerning first=89 second=115 amount=-1 +kerning first=85 second=258 amount=-1 +kerning first=325 second=345 amount=-1 +kerning first=116 second=335 amount=-1 +kerning first=275 second=8222 amount=-1 +kerning first=257 second=335 amount=-1 +kerning first=221 second=335 amount=-1 +kerning first=260 second=46 amount=-1 +kerning first=1059 second=1061 amount=-1 +kerning first=368 second=46 amount=-2 +kerning first=258 second=114 amount=-1 +kerning first=201 second=370 amount=-1 +kerning first=45 second=114 amount=-1 +kerning first=290 second=344 amount=-1 +kerning first=374 second=115 amount=-1 +kerning first=87 second=250 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=197 second=119 amount=-1 +kerning first=362 second=344 amount=-1 +kerning first=271 second=378 amount=-1 +kerning first=70 second=8221 amount=-1 +kerning first=220 second=336 amount=-1 +kerning first=1046 second=1079 amount=-1 +kerning first=230 second=115 amount=-1 +kerning first=1107 second=1114 amount=-1 +kerning first=266 second=115 amount=-1 +kerning first=302 second=115 amount=-1 +kerning first=192 second=250 amount=-1 +kerning first=305 second=119 amount=-1 +kerning first=197 second=199 amount=-1 +kerning first=264 second=216 amount=-1 +kerning first=290 second=82 amount=-1 +kerning first=99 second=314 amount=-1 +kerning first=1067 second=1055 amount=-1 +kerning first=235 second=378 amount=-1 +kerning first=199 second=378 amount=-1 +kerning first=1062 second=1054 amount=-1 +kerning first=77 second=344 amount=-1 +kerning first=1038 second=1105 amount=-1 +kerning first=1057 second=1071 amount=-1 +kerning first=218 second=344 amount=-1 +kerning first=187 second=327 amount=-1 +kerning first=1043 second=1088 amount=-1 +kerning first=274 second=282 amount=-1 +kerning first=1043 second=1101 amount=-1 +kerning first=79 second=204 amount=-1 +kerning first=202 second=282 amount=-1 +kerning first=327 second=206 amount=-1 +kerning first=1070 second=1055 amount=-1 +kerning first=274 second=266 amount=-1 +kerning first=1067 second=1096 amount=-1 +kerning first=226 second=337 amount=-1 +kerning first=204 second=288 amount=-1 +kerning first=195 second=87 amount=-1 +kerning first=263 second=230 amount=-1 +kerning first=307 second=291 amount=-1 +kerning first=271 second=291 amount=-1 +kerning first=72 second=81 amount=-1 +kerning first=119 second=106 amount=-1 +kerning first=235 second=291 amount=-1 +kerning first=86 second=230 amount=-1 +kerning first=1055 second=1052 amount=-1 +kerning first=275 second=101 amount=-1 +kerning first=207 second=279 amount=-1 +kerning first=210 second=296 amount=-1 +kerning first=197 second=212 amount=-1 +kerning first=264 second=337 amount=-1 +kerning first=69 second=296 amount=-1 +kerning first=1048 second=1098 amount=-1 +kerning first=228 second=337 amount=-1 +kerning first=8218 second=374 amount=-2 +kerning first=8250 second=120 amount=-1 +kerning first=279 second=279 amount=-1 +kerning first=1031 second=1064 amount=-1 +kerning first=287 second=244 amount=-1 +kerning first=282 second=296 amount=-1 +kerning first=87 second=337 amount=-1 +kerning first=203 second=75 amount=-1 +kerning first=370 second=245 amount=-1 +kerning first=1067 second=1064 amount=-1 +kerning first=279 second=99 amount=-1 +kerning first=213 second=187 amount=-1 +kerning first=298 second=245 amount=-1 +kerning first=270 second=8250 amount=-1 +kerning first=207 second=99 amount=-1 +kerning first=234 second=8250 amount=-1 +kerning first=226 second=245 amount=-1 +kerning first=268 second=8218 amount=-1 +kerning first=232 second=8218 amount=-1 +kerning first=108 second=287 amount=-1 +kerning first=234 second=233 amount=-1 +kerning first=105 second=375 amount=-1 +kerning first=85 second=245 amount=-1 +kerning first=314 second=380 amount=-1 +kerning first=347 second=8220 amount=-2 +kerning first=71 second=202 amount=-1 +kerning first=116 second=248 amount=-1 +kerning first=70 second=255 amount=-1 +kerning first=311 second=8220 amount=-1 +kerning first=212 second=202 amount=-1 +kerning first=282 second=270 amount=-1 +kerning first=250 second=235 amount=-1 +kerning first=1064 second=1025 amount=-1 +kerning first=221 second=248 amount=-1 +kerning first=201 second=117 amount=-1 +kerning first=249 second=287 amount=-1 +kerning first=205 second=116 amount=-1 +kerning first=100 second=246 amount=-1 +kerning first=209 second=83 amount=-1 +kerning first=72 second=8222 amount=-1 +kerning first=72 second=261 amount=-1 +kerning first=80 second=248 amount=-1 +kerning first=1059 second=1081 amount=-1 +kerning first=350 second=66 amount=-1 +kerning first=327 second=97 amount=-1 +kerning first=346 second=209 amount=-1 +kerning first=219 second=364 amount=-1 +kerning first=69 second=270 amount=-1 +kerning first=298 second=69 amount=-1 +kerning first=99 second=108 amount=-1 +kerning first=278 second=66 amount=-1 +kerning first=1028 second=1073 amount=-1 +kerning first=274 second=209 amount=-1 +kerning first=258 second=307 amount=-1 +kerning first=206 second=66 amount=-1 +kerning first=78 second=364 amount=-1 +kerning first=284 second=202 amount=-1 +kerning first=210 second=270 amount=-1 +kerning first=218 second=257 amount=-1 +kerning first=202 second=209 amount=-1 +kerning first=203 second=8220 amount=-1 +kerning first=1064 second=1073 amount=-1 +kerning first=288 second=278 amount=-1 +kerning first=101 second=380 amount=-1 +kerning first=67 second=264 amount=-1 +kerning first=242 second=380 amount=-1 +kerning first=275 second=8220 amount=-2 +kerning first=206 second=380 amount=-1 +kerning first=8217 second=111 amount=-1 +kerning first=205 second=296 amount=-1 +kerning first=254 second=103 amount=-1 +kerning first=338 second=211 amount=-1 +kerning first=207 second=205 amount=-1 +kerning first=45 second=355 amount=-1 +kerning first=218 second=103 amount=-1 +kerning first=8216 second=366 amount=-1 +kerning first=1058 second=1091 amount=-1 +kerning first=304 second=227 amount=-1 +kerning first=1047 second=1039 amount=-1 +kerning first=268 second=227 amount=-1 +kerning first=201 second=69 amount=-1 +kerning first=288 second=325 amount=-1 +kerning first=77 second=103 amount=-1 +kerning first=277 second=273 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=274 second=330 amount=-1 +kerning first=356 second=74 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=327 second=364 amount=-1 +kerning first=346 second=330 amount=-1 +kerning first=78 second=269 amount=-1 +kerning first=291 second=269 amount=-1 +kerning first=366 second=355 amount=-1 +kerning first=199 second=218 amount=-1 +kerning first=270 second=78 amount=-1 +kerning first=1030 second=1047 amount=-1 +kerning first=327 second=269 amount=-1 +kerning first=330 second=355 amount=-1 +kerning first=1091 second=1078 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=258 second=355 amount=-1 +kerning first=1043 second=1073 amount=-1 +kerning first=287 second=112 amount=-1 +kerning first=1042 second=1116 amount=-1 +kerning first=66 second=205 amount=-1 +kerning first=8218 second=250 amount=-1 +kerning first=350 second=8220 amount=-1 +kerning first=363 second=269 amount=-1 +kerning first=253 second=44 amount=-1 +kerning first=198 second=78 amount=-1 +kerning first=346 second=282 amount=-1 +kerning first=289 second=44 amount=-1 +kerning first=218 second=365 amount=-1 +kerning first=218 second=171 amount=-2 +kerning first=121 second=117 amount=-1 +kerning first=45 second=260 amount=-1 +kerning first=85 second=117 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=290 second=171 amount=-1 +kerning first=205 second=286 amount=-1 +kerning first=326 second=171 amount=-1 +kerning first=1031 second=1051 amount=-1 +kerning first=274 second=68 amount=-1 +kerning first=1067 second=1051 amount=-1 +kerning first=74 second=249 amount=-1 +kerning first=8250 second=274 amount=-1 +kerning first=84 second=333 amount=-1 +kerning first=346 second=68 amount=-1 +kerning first=269 second=307 amount=-1 +kerning first=70 second=203 amount=-1 +kerning first=199 second=351 amount=-1 +kerning first=339 second=100 amount=-1 +kerning first=65 second=220 amount=-1 +kerning first=366 second=260 amount=-1 +kerning first=1070 second=1042 amount=-1 +kerning first=206 second=220 amount=-1 +kerning first=211 second=203 amount=-1 +kerning first=367 second=281 amount=-1 +kerning first=346 second=82 amount=-1 +kerning first=209 second=263 amount=-1 +kerning first=77 second=171 amount=-1 +kerning first=1039 second=1025 amount=-1 +kerning first=8222 second=248 amount=-1 +kerning first=187 second=121 amount=-1 +kerning first=113 second=171 amount=-1 +kerning first=196 second=8250 amount=-1 +kerning first=105 second=333 amount=-1 +kerning first=281 second=263 amount=-1 +kerning first=250 second=246 amount=-1 +kerning first=1064 second=1060 amount=-1 +kerning first=337 second=103 amount=-1 +kerning first=1027 second=1119 amount=-1 +kerning first=8220 second=256 amount=-2 +kerning first=327 second=353 amount=-1 +kerning first=85 second=102 amount=-1 +kerning first=109 second=246 amount=-1 +kerning first=1067 second=1118 amount=-1 +kerning first=229 second=103 amount=-1 +kerning first=199 second=77 amount=-1 +kerning first=231 second=100 amount=-1 +kerning first=278 second=220 amount=-1 +kerning first=350 second=220 amount=-1 +kerning first=267 second=100 amount=-1 +kerning first=1060 second=1083 amount=-1 +kerning first=264 second=109 amount=-1 +kerning first=87 second=242 amount=-1 +kerning first=230 second=316 amount=-1 +kerning first=290 second=310 amount=-1 +kerning first=194 second=316 amount=-1 +kerning first=196 second=369 amount=-1 +kerning first=261 second=333 amount=-1 +kerning first=202 second=68 amount=-1 +kerning first=199 second=304 amount=-1 +kerning first=266 second=316 amount=-1 +kerning first=367 second=267 amount=-1 +kerning first=264 second=242 amount=-1 +kerning first=362 second=365 amount=-1 +kerning first=102 second=8218 amount=-1 +kerning first=369 second=333 amount=-1 +kerning first=235 second=8222 amount=-1 +kerning first=209 second=211 amount=-1 +kerning first=228 second=242 amount=-1 +kerning first=199 second=8222 amount=-1 +kerning first=214 second=194 amount=-1 +kerning first=347 second=289 amount=-1 +kerning first=268 second=313 amount=-1 +kerning first=1051 second=1094 amount=-1 +kerning first=116 second=233 amount=-1 +kerning first=304 second=313 amount=-1 +kerning first=85 second=210 amount=-1 +kerning first=224 second=339 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=374 second=256 amount=-1 +kerning first=323 second=8220 amount=-1 +kerning first=8222 second=86 amount=-2 +kerning first=323 second=245 amount=-1 +kerning first=74 second=263 amount=-1 +kerning first=227 second=111 amount=-1 +kerning first=287 second=245 amount=-1 +kerning first=263 second=111 amount=-1 +kerning first=206 second=280 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=1030 second=1057 amount=-1 +kerning first=278 second=280 amount=-1 +kerning first=231 second=233 amount=-1 +kerning first=350 second=280 amount=-1 +kerning first=296 second=339 amount=-1 +kerning first=187 second=219 amount=-1 +kerning first=71 second=274 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=339 second=233 amount=-1 +kerning first=368 second=339 amount=-1 +kerning first=368 second=120 amount=-1 +kerning first=1049 second=1118 amount=-1 +kerning first=103 second=277 amount=-1 +kerning first=200 second=298 amount=-1 +kerning first=280 second=212 amount=-1 +kerning first=197 second=8217 amount=-2 +kerning first=272 second=298 amount=-1 +kerning first=233 second=8217 amount=-2 +kerning first=269 second=8217 amount=-2 +kerning first=266 second=102 amount=-1 +kerning first=67 second=212 amount=-1 +kerning first=212 second=8217 amount=-2 +kerning first=345 second=230 amount=-1 +kerning first=362 second=357 amount=-1 +kerning first=281 second=369 amount=-1 +kerning first=220 second=344 amount=-1 +kerning first=251 second=245 amount=-1 +kerning first=1038 second=1104 amount=-1 +kerning first=8250 second=334 amount=-1 +kerning first=298 second=331 amount=-1 +kerning first=98 second=289 amount=-1 +kerning first=311 second=289 amount=-1 +kerning first=110 second=245 amount=-1 +kerning first=370 second=331 amount=-1 +kerning first=74 second=245 amount=-1 +kerning first=85 second=331 amount=-1 +kerning first=305 second=8217 amount=-1 +kerning first=313 second=221 amount=-1 +kerning first=199 second=85 amount=-1 +kerning first=275 second=289 amount=-1 +kerning first=244 second=8221 amount=-2 +kerning first=367 second=113 amount=-1 +kerning first=1052 second=1096 amount=-1 +kerning first=1068 second=1049 amount=-1 +kerning first=323 second=366 amount=-1 +kerning first=1050 second=1095 amount=-1 +kerning first=211 second=195 amount=-1 +kerning first=88 second=116 amount=-1 +kerning first=203 second=216 amount=-1 +kerning first=259 second=113 amount=-1 +kerning first=205 second=67 amount=-1 +kerning first=325 second=79 amount=-1 +kerning first=73 second=8218 amount=-1 +kerning first=65 second=345 amount=-1 +kerning first=8222 second=240 amount=-1 +kerning first=70 second=195 amount=-1 +kerning first=289 second=250 amount=-1 +kerning first=262 second=104 amount=-1 +kerning first=253 second=250 amount=-1 +kerning first=121 second=104 amount=-1 +kerning first=1056 second=1119 amount=-1 +kerning first=221 second=249 amount=-1 +kerning first=207 second=269 amount=-1 +kerning first=364 second=70 amount=-1 +kerning first=218 second=357 amount=-1 +kerning first=8218 second=283 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=368 second=274 amount=-1 +kerning first=374 second=258 amount=-1 +kerning first=314 second=345 amount=-1 +kerning first=346 second=76 amount=-1 +kerning first=296 second=274 amount=-1 +kerning first=77 second=357 amount=-1 +kerning first=220 second=70 amount=-1 +kerning first=213 second=46 amount=-1 +kerning first=274 second=76 amount=-1 +kerning first=211 second=368 amount=-1 +kerning first=206 second=207 amount=-1 +kerning first=1049 second=1105 amount=-1 +kerning first=250 second=291 amount=-1 +kerning first=106 second=8221 amount=-1 +kerning first=278 second=207 amount=-1 +kerning first=67 second=204 amount=-1 +kerning first=211 second=8221 amount=-2 +kerning first=350 second=207 amount=-1 +kerning first=232 second=107 amount=-1 +kerning first=221 second=243 amount=-1 +kerning first=99 second=382 amount=-1 +kerning first=70 second=368 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=196 second=107 amount=-1 +kerning first=108 second=369 amount=-1 +kerning first=209 second=271 amount=-1 +kerning first=209 second=336 amount=-1 +kerning first=366 second=8250 amount=-2 +kerning first=1053 second=1086 amount=-1 +kerning first=1065 second=1054 amount=-1 +kerning first=74 second=366 amount=-1 +kerning first=281 second=271 amount=-1 +kerning first=8222 second=117 amount=-1 +kerning first=73 second=259 amount=-1 +kerning first=193 second=116 amount=-1 +kerning first=354 second=378 amount=-1 +kerning first=8217 second=252 amount=-1 +kerning first=370 second=210 amount=-1 +kerning first=89 second=256 amount=-1 +kerning first=262 second=210 amount=-1 +kerning first=298 second=200 amount=-1 +kerning first=364 second=122 amount=-1 +kerning first=298 second=210 amount=-1 +kerning first=246 second=378 amount=-1 +kerning first=196 second=86 amount=-1 +kerning first=8218 second=269 amount=-1 +kerning first=302 second=382 amount=-1 +kerning first=202 second=202 amount=-1 +kerning first=209 second=8220 amount=-1 +kerning first=1059 second=1117 amount=-1 +kerning first=1069 second=1083 amount=-1 +kerning first=8250 second=326 amount=-1 +kerning first=1066 second=1044 amount=-1 +kerning first=80 second=235 amount=-1 +kerning first=223 second=187 amount=-1 +kerning first=362 second=207 amount=-1 +kerning first=116 second=235 amount=-1 +kerning first=266 second=209 amount=-1 +kerning first=368 second=347 amount=-1 +kerning first=221 second=235 amount=-1 +kerning first=275 second=281 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=296 second=347 amount=-1 +kerning first=257 second=235 amount=-1 +kerning first=200 second=290 amount=-1 +kerning first=68 second=198 amount=-1 +kerning first=217 second=350 amount=-1 +kerning first=77 second=211 amount=-1 +kerning first=250 second=277 amount=-1 +kerning first=1033 second=1056 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=1069 second=1056 amount=-1 +kerning first=205 second=213 amount=-1 +kerning first=1075 second=1090 amount=-1 +kerning first=70 second=268 amount=-1 +kerning first=8218 second=275 amount=-1 +kerning first=355 second=97 amount=-1 +kerning first=1056 second=1077 amount=-1 +kerning first=80 second=283 amount=-1 +kerning first=327 second=351 amount=-1 +kerning first=116 second=283 amount=-1 +kerning first=291 second=351 amount=-1 +kerning first=199 second=231 amount=-1 +kerning first=255 second=351 amount=-1 +kerning first=200 second=363 amount=-1 +kerning first=235 second=231 amount=-1 +kerning first=219 second=351 amount=-1 +kerning first=271 second=231 amount=-1 +kerning first=8249 second=219 amount=-1 +kerning first=325 second=350 amount=-1 +kerning first=1091 second=1087 amount=-1 +kerning first=214 second=88 amount=-1 +kerning first=1042 second=1081 amount=-1 +kerning first=77 second=244 amount=-1 +kerning first=221 second=257 amount=-1 +kerning first=338 second=67 amount=-1 +kerning first=1054 second=1049 amount=-1 +kerning first=1078 second=1081 amount=-1 +kerning first=121 second=8249 amount=-1 +kerning first=1033 second=1064 amount=-1 +kerning first=365 second=283 amount=-1 +kerning first=217 second=79 amount=-1 +kerning first=218 second=244 amount=-1 +kerning first=257 second=283 amount=-1 +kerning first=201 second=82 amount=-1 +kerning first=226 second=8249 amount=-1 +kerning first=307 second=231 amount=-1 +kerning first=73 second=344 amount=-1 +kerning first=65 second=307 amount=-1 +kerning first=86 second=338 amount=-1 +kerning first=78 second=351 amount=-1 +kerning first=326 second=244 amount=-1 +kerning first=221 second=283 amount=-1 +kerning first=362 second=244 amount=-1 +kerning first=82 second=332 amount=-1 +kerning first=87 second=345 amount=-1 +kerning first=200 second=202 amount=-1 +kerning first=314 second=244 amount=-1 +kerning first=72 second=209 amount=-1 +kerning first=105 second=248 amount=-1 +kerning first=192 second=345 amount=-1 +kerning first=1062 second=1089 amount=-1 +kerning first=330 second=218 amount=-1 +kerning first=228 second=345 amount=-1 +kerning first=271 second=283 amount=-1 +kerning first=1048 second=1076 amount=-1 +kerning first=71 second=44 amount=-1 +kerning first=264 second=345 amount=-1 +kerning first=307 second=283 amount=-1 +kerning first=268 second=235 amount=-1 +kerning first=339 second=369 amount=-1 +kerning first=199 second=283 amount=-1 +kerning first=187 second=332 amount=-1 +kerning first=220 second=371 amount=-1 +kerning first=304 second=235 amount=-1 +kerning first=235 second=283 amount=-1 +kerning first=274 second=274 amount=-1 +kerning first=203 second=367 amount=-1 +kerning first=207 second=257 amount=-1 +kerning first=112 second=380 amount=-1 +kerning first=1051 second=1067 amount=-1 +kerning first=202 second=274 amount=-1 +kerning first=275 second=367 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=362 second=192 amount=-1 +kerning first=217 second=380 amount=-1 +kerning first=89 second=213 amount=-1 +kerning first=85 second=323 amount=-1 +kerning first=325 second=66 amount=-1 +kerning first=106 second=281 amount=-1 +kerning first=253 second=380 amount=-1 +kerning first=218 second=192 amount=-1 +kerning first=213 second=209 amount=-1 +kerning first=199 second=226 amount=-1 +kerning first=1065 second=1080 amount=-1 +kerning first=195 second=336 amount=-1 +kerning first=1036 second=1054 amount=-1 +kerning first=350 second=44 amount=-1 +kerning first=262 second=323 amount=-1 +kerning first=86 second=252 amount=-1 +kerning first=71 second=330 amount=-1 +kerning first=263 second=252 amount=-1 +kerning first=45 second=119 amount=-1 +kerning first=370 second=323 amount=-1 +kerning first=198 second=70 amount=-1 +kerning first=346 second=274 amount=-1 +kerning first=334 second=323 amount=-1 +kerning first=229 second=244 amount=-1 +kerning first=89 second=171 amount=-2 +kerning first=298 second=323 amount=-1 +kerning first=8250 second=68 amount=-1 +kerning first=270 second=70 amount=-1 +kerning first=296 second=231 amount=-1 +kerning first=354 second=248 amount=-1 +kerning first=258 second=119 amount=-1 +kerning first=328 second=8217 amount=-2 +kerning first=296 second=261 amount=-1 +kerning first=290 second=366 amount=-1 +kerning first=65 second=44 amount=-1 +kerning first=282 second=218 amount=-1 +kerning first=323 second=201 amount=-1 +kerning first=368 second=231 amount=-1 +kerning first=193 second=214 amount=-1 +kerning first=1069 second=1055 amount=-1 +kerning first=210 second=218 amount=-1 +kerning first=198 second=327 amount=-1 +kerning first=1068 second=1071 amount=-1 +kerning first=74 second=229 amount=-1 +kerning first=229 second=314 amount=-1 +kerning first=242 second=44 amount=-1 +kerning first=193 second=314 amount=-1 +kerning first=224 second=231 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=69 second=218 amount=-1 +kerning first=74 second=201 amount=-1 +kerning first=262 second=353 amount=-1 +kerning first=266 second=243 amount=-1 +kerning first=97 second=8249 amount=-1 +kerning first=362 second=249 amount=-1 +kerning first=1028 second=1081 amount=-1 +kerning first=370 second=223 amount=-1 +kerning first=230 second=243 amount=-1 +kerning first=337 second=314 amount=-1 +kerning first=338 second=80 amount=-1 +kerning first=334 second=353 amount=-1 +kerning first=187 second=196 amount=-1 +kerning first=302 second=80 amount=-1 +kerning first=298 second=353 amount=-1 +kerning first=298 second=223 amount=-1 +kerning first=302 second=243 amount=-1 +kerning first=88 second=214 amount=-1 +kerning first=218 second=249 amount=-1 +kerning first=370 second=353 amount=-1 +kerning first=374 second=243 amount=-1 +kerning first=330 second=350 amount=-1 +kerning first=1064 second=1081 amount=-1 +kerning first=370 second=310 amount=-1 +kerning first=1118 second=1114 amount=-1 +kerning first=85 second=223 amount=-1 +kerning first=218 second=72 amount=-1 +kerning first=119 second=287 amount=-1 +kerning first=286 second=45 amount=-1 +kerning first=1064 second=1036 amount=-1 +kerning first=266 second=80 amount=-1 +kerning first=85 second=353 amount=-1 +kerning first=262 second=223 amount=-1 +kerning first=89 second=243 amount=-1 +kerning first=87 second=101 amount=-1 +kerning first=198 second=284 amount=-1 +kerning first=212 second=370 amount=-1 +kerning first=1046 second=1114 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=71 second=370 amount=-1 +kerning first=366 second=363 amount=-1 +kerning first=121 second=353 amount=-1 +kerning first=116 second=240 amount=-1 +kerning first=1051 second=1097 amount=-1 +kerning first=1065 second=1082 amount=-1 +kerning first=1059 second=1098 amount=-1 +kerning first=82 second=362 amount=-1 +kerning first=259 second=232 amount=-1 +kerning first=228 second=101 amount=-1 +kerning first=288 second=200 amount=-1 +kerning first=1067 second=1072 amount=-1 +kerning first=187 second=362 amount=-1 +kerning first=8222 second=99 amount=-1 +kerning first=1069 second=1027 amount=-1 +kerning first=204 second=266 amount=-1 +kerning first=199 second=296 amount=-1 +kerning first=78 second=347 amount=-1 +kerning first=74 second=258 amount=-1 +kerning first=367 second=232 amount=-1 +kerning first=259 second=8250 amount=-1 +kerning first=223 second=8250 amount=-1 +kerning first=118 second=8250 amount=-1 +kerning first=197 second=71 amount=-1 +kerning first=202 second=217 amount=-1 +kerning first=269 second=234 amount=-1 +kerning first=233 second=234 amount=-1 +kerning first=274 second=217 amount=-1 +kerning first=1031 second=1072 amount=-1 +kerning first=310 second=217 amount=-1 +kerning first=305 second=234 amount=-1 +kerning first=346 second=217 amount=-1 +kerning first=1036 second=1096 amount=-1 +kerning first=228 second=8220 amount=-2 +kerning first=80 second=313 amount=-1 +kerning first=97 second=111 amount=-1 +kerning first=192 second=8220 amount=-2 +kerning first=221 second=229 amount=-1 +kerning first=97 second=287 amount=-1 +kerning first=252 second=235 amount=-1 +kerning first=264 second=8220 amount=-1 +kerning first=234 second=254 amount=-1 +kerning first=205 second=72 amount=-1 +kerning first=66 second=8218 amount=-1 +kerning first=336 second=8220 amount=-2 +kerning first=1051 second=1024 amount=-1 +kerning first=77 second=352 amount=-1 +kerning first=193 second=374 amount=-1 +kerning first=356 second=267 amount=-1 +kerning first=296 second=69 amount=-1 +kerning first=1030 second=1117 amount=-1 +kerning first=366 second=212 amount=-1 +kerning first=218 second=352 amount=-1 +kerning first=339 second=263 amount=-1 +kerning first=377 second=8220 amount=-1 +kerning first=1057 second=1061 amount=-1 +kerning first=205 second=278 amount=-1 +kerning first=266 second=259 amount=-1 +kerning first=278 second=315 amount=-1 +kerning first=362 second=352 amount=-1 +kerning first=1038 second=1083 amount=-1 +kerning first=258 second=212 amount=-1 +kerning first=87 second=8220 amount=-1 +kerning first=101 second=104 amount=-1 +kerning first=206 second=315 amount=-1 +kerning first=197 second=114 amount=-1 +kerning first=83 second=68 amount=-1 +kerning first=67 second=199 amount=-1 +kerning first=219 second=115 amount=-1 +kerning first=269 second=114 amount=-1 +kerning first=255 second=115 amount=-1 +kerning first=233 second=114 amount=-1 +kerning first=291 second=115 amount=-1 +kerning first=87 second=194 amount=-1 +kerning first=316 second=250 amount=-1 +kerning first=323 second=331 amount=-1 +kerning first=280 second=199 amount=-1 +kerning first=78 second=115 amount=-1 +kerning first=231 second=263 amount=-1 +kerning first=202 second=81 amount=-1 +kerning first=334 second=310 amount=-1 +kerning first=232 second=365 amount=-1 +kerning first=298 second=310 amount=-1 +kerning first=368 second=68 amount=-1 +kerning first=45 second=106 amount=-1 +kerning first=67 second=269 amount=-1 +kerning first=74 second=361 amount=-1 +kerning first=103 second=269 amount=-1 +kerning first=196 second=365 amount=-1 +kerning first=316 second=269 amount=-1 +kerning first=327 second=115 amount=-1 +kerning first=252 second=243 amount=-1 +kerning first=8222 second=235 amount=-1 +kerning first=85 second=310 amount=-1 +kerning first=296 second=68 amount=-1 +kerning first=74 second=331 amount=-1 +kerning first=73 second=346 amount=-1 +kerning first=266 second=245 amount=-1 +kerning first=281 second=277 amount=-1 +kerning first=209 second=78 amount=-1 +kerning first=330 second=246 amount=-1 +kerning first=8218 second=229 amount=-1 +kerning first=1048 second=1062 amount=-1 +kerning first=213 second=282 amount=-1 +kerning first=1069 second=1043 amount=-1 +kerning first=368 second=334 amount=-1 +kerning first=366 second=347 amount=-1 +kerning first=8222 second=305 amount=-1 +kerning first=323 second=288 amount=-1 +kerning first=1033 second=1043 amount=-1 +kerning first=283 second=355 amount=-1 +kerning first=70 second=260 amount=-1 +kerning first=207 second=227 amount=-1 +kerning first=211 second=84 amount=-1 +kerning first=8218 second=101 amount=-1 +kerning first=1069 second=1041 amount=-1 +kerning first=72 second=282 amount=-1 +kerning first=1066 second=1052 amount=-1 +kerning first=272 second=8217 amount=-2 +kerning first=211 second=260 amount=-1 +kerning first=1030 second=1052 amount=-1 +kerning first=1078 second=1094 amount=-1 +kerning first=74 second=288 amount=-1 +kerning first=1042 second=1094 amount=-1 +kerning first=346 second=187 amount=-1 +kerning first=217 second=337 amount=-1 +kerning first=362 second=279 amount=-1 +kerning first=193 second=108 amount=-1 +kerning first=65 second=87 amount=-1 +kerning first=310 second=187 amount=-1 +kerning first=229 second=108 amount=-1 +kerning first=269 second=367 amount=-1 +kerning first=255 second=8217 amount=-2 +kerning first=105 second=291 amount=-1 +kerning first=291 second=8217 amount=-2 +kerning first=269 second=111 amount=-1 +kerning first=327 second=8217 amount=-1 +kerning first=337 second=108 amount=-1 +kerning first=363 second=8217 amount=-1 +kerning first=286 second=75 amount=-1 +kerning first=77 second=279 amount=-1 +kerning first=1056 second=1064 amount=-1 +kerning first=214 second=75 amount=-1 +kerning first=370 second=216 amount=-1 +kerning first=202 second=187 amount=-1 +kerning first=362 second=70 amount=-1 +kerning first=268 second=99 amount=-1 +kerning first=218 second=279 amount=-1 +kerning first=325 second=337 amount=-1 +kerning first=304 second=99 amount=-1 +kerning first=196 second=361 amount=-1 +kerning first=368 second=355 amount=-1 +kerning first=97 second=187 amount=-1 +kerning first=289 second=337 amount=-1 +kerning first=105 second=235 amount=-1 +kerning first=73 second=75 amount=-1 +kerning first=232 second=99 amount=-1 +kerning first=200 second=268 amount=-1 +kerning first=289 second=242 amount=-1 +kerning first=258 second=255 amount=-1 +kerning first=325 second=242 amount=-1 +kerning first=225 second=333 amount=-1 +kerning first=221 second=99 amount=-1 +kerning first=1050 second=1082 amount=-1 +kerning first=217 second=242 amount=-1 +kerning first=250 second=281 amount=-1 +kerning first=257 second=99 amount=-1 +kerning first=1065 second=1104 amount=-1 +kerning first=315 second=86 amount=-1 +kerning first=344 second=268 amount=-1 +kerning first=213 second=347 amount=-1 +kerning first=8249 second=370 amount=-1 +kerning first=45 second=255 amount=-1 +kerning first=365 second=99 amount=-1 +kerning first=213 second=89 amount=-1 +kerning first=171 second=86 amount=-1 +kerning first=67 second=364 amount=-1 +kerning first=72 second=347 amount=-1 +kerning first=305 second=277 amount=-1 +kerning first=69 second=77 amount=-1 +kerning first=269 second=277 amount=-1 +kerning first=274 second=325 amount=-1 +kerning first=233 second=277 amount=-1 +kerning first=364 second=198 amount=-1 +kerning first=219 second=264 amount=-1 +kerning first=346 second=325 amount=-1 +kerning first=1053 second=1073 amount=-1 +kerning first=73 second=281 amount=-1 +kerning first=109 second=281 amount=-1 +kerning first=78 second=264 amount=-1 +kerning first=284 second=69 amount=-1 +kerning first=113 second=108 amount=-1 +kerning first=280 second=8217 amount=-1 +kerning first=8222 second=335 amount=-1 +kerning first=209 second=241 amount=-1 +kerning first=316 second=8217 amount=-1 +kerning first=352 second=364 amount=-1 +kerning first=70 second=290 amount=-1 +kerning first=374 second=351 amount=-1 +kerning first=328 second=233 amount=-1 +kerning first=288 second=282 amount=-1 +kerning first=298 second=82 amount=-1 +kerning first=364 second=233 amount=-1 +kerning first=262 second=82 amount=-1 +kerning first=280 second=364 amount=-1 +kerning first=374 second=286 amount=-1 +kerning first=103 second=8217 amount=-2 +kerning first=370 second=82 amount=-1 +kerning first=1041 second=1117 amount=-1 +kerning first=71 second=69 amount=-1 +kerning first=334 second=82 amount=-1 +kerning first=1077 second=1117 amount=-1 +kerning first=212 second=69 amount=-1 +kerning first=208 second=8217 amount=-2 +kerning first=1041 second=1052 amount=-1 +kerning first=254 second=108 amount=-1 +kerning first=244 second=8217 amount=-2 +kerning first=1047 second=1091 amount=-1 +kerning first=105 second=243 amount=-1 +kerning first=266 second=286 amount=-1 +kerning first=89 second=351 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=222 second=8218 amount=-1 +kerning first=1038 second=1061 amount=-1 +kerning first=338 second=286 amount=-1 +kerning first=302 second=351 amount=-1 +kerning first=70 second=355 amount=-1 +kerning first=89 second=286 amount=-1 +kerning first=266 second=351 amount=-1 +kerning first=75 second=338 amount=-1 +kerning first=230 second=351 amount=-1 +kerning first=1105 second=1078 amount=-1 +kerning first=199 second=334 amount=-1 +kerning first=1064 second=1030 amount=-1 +kerning first=194 second=286 amount=-1 +kerning first=80 second=99 amount=-1 +kerning first=85 second=82 amount=-1 +kerning first=66 second=365 amount=-1 +kerning first=272 second=203 amount=-1 +kerning first=1039 second=1095 amount=-1 +kerning first=87 second=229 amount=-1 +kerning first=1056 second=1043 amount=-1 +kerning first=327 second=103 amount=-1 +kerning first=1041 second=1037 amount=-1 +kerning first=118 second=254 amount=-1 +kerning first=1064 second=1072 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=200 second=203 amount=-1 +kerning first=1052 second=1074 amount=-1 +kerning first=220 second=80 amount=-1 +kerning first=220 second=122 amount=-1 +kerning first=1042 second=1083 amount=-1 +kerning first=287 second=117 amount=-1 +kerning first=220 second=100 amount=-1 +kerning first=323 second=269 amount=-1 +kerning first=1049 second=1083 amount=-1 +kerning first=88 second=171 amount=-1 +kerning first=70 second=298 amount=-1 +kerning first=67 second=8217 amount=-1 +kerning first=211 second=298 amount=-1 +kerning first=193 second=171 amount=-1 +kerning first=364 second=100 amount=-1 +kerning first=328 second=263 amount=-1 +kerning first=264 second=229 amount=-1 +kerning first=229 second=171 amount=-1 +kerning first=1036 second=1104 amount=-1 +kerning first=364 second=263 amount=-1 +kerning first=369 second=246 amount=-1 +kerning first=1038 second=1118 amount=-1 +kerning first=210 second=356 amount=-1 +kerning first=66 second=75 amount=-1 +kerning first=368 second=369 amount=-1 +kerning first=296 second=304 amount=-1 +kerning first=8217 second=230 amount=-1 +kerning first=261 second=246 amount=-1 +kerning first=368 second=304 amount=-1 +kerning first=73 second=66 amount=-1 +kerning first=225 second=246 amount=-1 +kerning first=83 second=304 amount=-1 +kerning first=1065 second=1118 amount=-1 +kerning first=1039 second=1060 amount=-1 +kerning first=1049 second=1080 amount=-1 +kerning first=199 second=120 amount=-1 +kerning first=1070 second=1031 amount=-1 +kerning first=277 second=316 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=235 second=120 amount=-1 +kerning first=195 second=220 amount=-1 +kerning first=1078 second=1086 amount=-1 +kerning first=344 second=368 amount=-1 +kerning first=200 second=8221 amount=-1 +kerning first=240 second=103 amount=-1 +kerning first=194 second=221 amount=-1 +kerning first=204 second=103 amount=-1 +kerning first=275 second=382 amount=-1 +kerning first=272 second=8221 amount=-2 +kerning first=279 second=249 amount=-1 +kerning first=99 second=103 amount=-1 +kerning first=200 second=368 amount=-1 +kerning first=289 second=109 amount=-1 +kerning first=344 second=8221 amount=-1 +kerning first=1078 second=1108 amount=-1 +kerning first=288 second=330 amount=-1 +kerning first=339 second=347 amount=-1 +kerning first=1047 second=1034 amount=-1 +kerning first=72 second=68 amount=-1 +kerning first=272 second=368 amount=-1 +kerning first=103 second=307 amount=-1 +kerning first=217 second=109 amount=-1 +kerning first=213 second=68 amount=-1 +kerning first=1046 second=1092 amount=-1 +kerning first=279 second=8218 amount=-1 +kerning first=97 second=382 amount=-1 +kerning first=234 second=116 amount=-1 +kerning first=119 second=98 amount=-1 +kerning first=210 second=85 amount=-1 +kerning first=287 second=223 amount=-1 +kerning first=72 second=339 amount=-1 +kerning first=69 second=85 amount=-1 +kerning first=219 second=256 amount=-1 +kerning first=67 second=234 amount=-1 +kerning first=321 second=8220 amount=-1 +kerning first=1053 second=1081 amount=-1 +kerning first=201 second=210 amount=-1 +kerning first=89 second=199 amount=-1 +kerning first=1070 second=1059 amount=-1 +kerning first=264 second=302 amount=-1 +kerning first=323 second=223 amount=-1 +kerning first=217 second=280 amount=-1 +kerning first=100 second=243 amount=-1 +kerning first=325 second=280 amount=-1 +kerning first=268 second=335 amount=-1 +kerning first=1050 second=1090 amount=-1 +kerning first=232 second=335 amount=-1 +kerning first=205 second=243 amount=-1 +kerning first=356 second=232 amount=-1 +kerning first=367 second=337 amount=-1 +kerning first=70 second=363 amount=-1 +kerning first=304 second=335 amount=-1 +kerning first=277 second=243 amount=-1 +kerning first=241 second=243 amount=-1 +kerning first=74 second=223 amount=-1 +kerning first=108 second=339 amount=-1 +kerning first=249 second=339 amount=-1 +kerning first=270 second=219 amount=-1 +kerning first=283 second=363 amount=-1 +kerning first=70 second=225 amount=-1 +kerning first=198 second=219 amount=-1 +kerning first=287 second=8249 amount=-1 +kerning first=1107 second=1102 amount=-1 +kerning first=323 second=8249 amount=-1 +kerning first=368 second=71 amount=-1 +kerning first=207 second=357 amount=-1 +kerning first=206 second=350 amount=-1 +kerning first=213 second=76 amount=-1 +kerning first=282 second=365 amount=-1 +kerning first=72 second=76 amount=-1 +kerning first=279 second=357 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=1048 second=1034 amount=-1 +kerning first=214 second=196 amount=-1 +kerning first=109 second=289 amount=-1 +kerning first=250 second=289 amount=-1 +kerning first=267 second=228 amount=-1 +kerning first=316 second=234 amount=-1 +kerning first=214 second=354 amount=-1 +kerning first=204 second=370 amount=-1 +kerning first=8250 second=357 amount=-1 +kerning first=1049 second=1075 amount=-1 +kerning first=1078 second=1080 amount=-1 +kerning first=298 second=111 amount=-1 +kerning first=231 second=228 amount=-1 +kerning first=110 second=8249 amount=-1 +kerning first=1049 second=1074 amount=-1 +kerning first=282 second=85 amount=-1 +kerning first=278 second=79 amount=-1 +kerning first=1044 second=1108 amount=-1 +kerning first=72 second=274 amount=-1 +kerning first=204 second=366 amount=-1 +kerning first=350 second=250 amount=-1 +kerning first=346 second=46 amount=-1 +kerning first=310 second=46 amount=-1 +kerning first=45 second=112 amount=-1 +kerning first=354 second=283 amount=-1 +kerning first=1070 second=1045 amount=-1 +kerning first=80 second=378 amount=-1 +kerning first=368 second=8222 amount=-2 +kerning first=1071 second=1062 amount=-1 +kerning first=324 second=335 amount=-1 +kerning first=1054 second=1050 amount=-1 +kerning first=278 second=8218 amount=-1 +kerning first=8216 second=353 amount=-1 +kerning first=101 second=250 amount=-1 +kerning first=209 second=70 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=66 second=357 amount=-1 +kerning first=75 second=67 amount=-1 +kerning first=364 second=229 amount=-1 +kerning first=73 second=216 amount=-1 +kerning first=314 second=250 amount=-1 +kerning first=278 second=250 amount=-1 +kerning first=8220 second=115 amount=-1 +kerning first=1049 second=1060 amount=-1 +kerning first=272 second=195 amount=-1 +kerning first=66 second=192 amount=-1 +kerning first=72 second=382 amount=-1 +kerning first=68 second=70 amount=-1 +kerning first=213 second=274 amount=-1 +kerning first=266 second=213 amount=-1 +kerning first=202 second=317 amount=-1 +kerning first=375 second=122 amount=-1 +kerning first=119 second=369 amount=-1 +kerning first=325 second=207 amount=-1 +kerning first=274 second=317 amount=-1 +kerning first=362 second=116 amount=-1 +kerning first=220 second=271 amount=-1 +kerning first=346 second=317 amount=-1 +kerning first=231 second=122 amount=-1 +kerning first=374 second=213 amount=-1 +kerning first=267 second=122 amount=-1 +kerning first=302 second=213 amount=-1 +kerning first=79 second=198 amount=-1 +kerning first=364 second=271 amount=-1 +kerning first=332 second=8222 amount=-1 +kerning first=234 second=113 amount=-1 +kerning first=70 second=119 amount=-1 +kerning first=204 second=201 amount=-1 +kerning first=77 second=116 amount=-1 +kerning first=257 second=378 amount=-1 +kerning first=323 second=323 amount=-1 +kerning first=1027 second=1096 amount=-1 +kerning first=221 second=378 amount=-1 +kerning first=1070 second=1051 amount=-1 +kerning first=8249 second=362 amount=-1 +kerning first=217 second=207 amount=-1 +kerning first=119 second=8222 amount=-1 +kerning first=82 second=262 amount=-1 +kerning first=218 second=116 amount=-1 +kerning first=187 second=262 amount=-1 +kerning first=210 second=315 amount=-1 +kerning first=79 second=366 amount=-1 +kerning first=87 second=113 amount=-1 +kerning first=254 second=314 amount=-1 +kerning first=220 second=259 amount=-1 +kerning first=213 second=204 amount=-1 +kerning first=1048 second=1081 amount=-1 +kerning first=291 second=355 amount=-1 +kerning first=80 second=195 amount=-1 +kerning first=113 second=314 amount=-1 +kerning first=65 second=363 amount=-1 +kerning first=101 second=363 amount=-1 +kerning first=364 second=259 amount=-1 +kerning first=278 second=266 amount=-1 +kerning first=205 second=110 amount=-1 +kerning first=212 second=198 amount=-1 +kerning first=323 second=116 amount=-1 +kerning first=344 second=67 amount=-1 +kerning first=279 second=369 amount=-1 +kerning first=287 second=116 amount=-1 +kerning first=1031 second=1030 amount=-1 +kerning first=278 second=363 amount=-1 +kerning first=67 second=73 amount=-1 +kerning first=200 second=207 amount=-1 +kerning first=200 second=67 amount=-1 +kerning first=350 second=363 amount=-1 +kerning first=205 second=317 amount=-1 +kerning first=323 second=76 amount=-1 +kerning first=272 second=207 amount=-1 +kerning first=66 second=369 amount=-1 +kerning first=264 second=113 amount=-1 +kerning first=187 second=210 amount=-1 +kerning first=8222 second=284 amount=-1 +kerning first=220 second=366 amount=-1 +kerning first=82 second=210 amount=-1 +kerning first=228 second=113 amount=-1 +kerning first=347 second=44 amount=-1 +kerning first=356 second=8250 amount=-1 +kerning first=1104 second=1093 amount=-1 +kerning first=270 second=302 amount=-1 +kerning first=78 second=213 amount=-1 +kerning first=67 second=268 amount=-1 +kerning first=267 second=271 amount=-1 +kerning first=1070 second=1038 amount=-1 +kerning first=284 second=8250 amount=-1 +kerning first=198 second=302 amount=-1 +kerning first=248 second=8250 amount=-1 +kerning first=339 second=271 amount=-1 +kerning first=280 second=268 amount=-1 +kerning first=212 second=8250 amount=-1 +kerning first=72 second=351 amount=-1 +kerning first=217 second=101 amount=-1 +kerning first=272 second=354 amount=-1 +kerning first=219 second=213 amount=-1 +kerning first=269 second=8220 amount=-2 +kerning first=234 second=8220 amount=-2 +kerning first=289 second=101 amount=-1 +kerning first=71 second=8250 amount=-1 +kerning first=198 second=8220 amount=-1 +kerning first=66 second=262 amount=-1 +kerning first=193 second=219 amount=-1 +kerning first=207 second=262 amount=-1 +kerning first=1044 second=1105 amount=-1 +kerning first=327 second=213 amount=-1 +kerning first=83 second=296 amount=-1 +kerning first=234 second=122 amount=-1 +kerning first=254 second=291 amount=-1 +kerning first=368 second=296 amount=-1 +kerning first=72 second=204 amount=-1 +kerning first=71 second=345 amount=-1 +kerning first=262 second=72 amount=-1 +kerning first=296 second=296 amount=-1 +kerning first=201 second=73 amount=-1 +kerning first=1078 second=1072 amount=-1 +kerning first=205 second=290 amount=-1 +kerning first=323 second=283 amount=-1 +kerning first=330 second=338 amount=-1 +kerning first=279 second=235 amount=-1 +kerning first=207 second=82 amount=-1 +kerning first=251 second=283 amount=-1 +kerning first=258 second=338 amount=-1 +kerning first=310 second=286 amount=-1 +kerning first=206 second=355 amount=-1 +kerning first=110 second=283 amount=-1 +kerning first=1067 second=1060 amount=-1 +kerning first=73 second=277 amount=-1 +kerning first=83 second=82 amount=-1 +kerning first=45 second=338 amount=-1 +kerning first=74 second=283 amount=-1 +kerning first=202 second=286 amount=-1 +kerning first=78 second=226 amount=-1 +kerning first=270 second=8220 amount=-2 +kerning first=213 second=351 amount=-1 +kerning first=114 second=226 amount=-1 +kerning first=232 second=367 amount=-1 +kerning first=254 second=287 amount=-1 +kerning first=272 second=260 amount=-1 +kerning first=210 second=86 amount=-1 +kerning first=82 second=8250 amount=-1 +kerning first=219 second=226 amount=-1 +kerning first=354 second=347 amount=-1 +kerning first=220 second=79 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=77 second=275 amount=-1 +kerning first=327 second=226 amount=-1 +kerning first=72 second=244 amount=-1 +kerning first=345 second=240 amount=-1 +kerning first=356 second=171 amount=-1 +kerning first=108 second=244 amount=-1 +kerning first=219 second=333 amount=-1 +kerning first=214 second=70 amount=-1 +kerning first=78 second=333 amount=-1 +kerning first=286 second=70 amount=-1 +kerning first=249 second=244 amount=-1 +kerning first=327 second=333 amount=-1 +kerning first=1064 second=1056 amount=-1 +kerning first=363 second=333 amount=-1 +kerning first=338 second=278 amount=-1 +kerning first=288 second=220 amount=-1 +kerning first=73 second=70 amount=-1 +kerning first=1055 second=1069 amount=-1 +kerning first=291 second=333 amount=-1 +kerning first=266 second=278 amount=-1 +kerning first=1039 second=1094 amount=-1 +kerning first=217 second=74 amount=-1 +kerning first=1052 second=1065 amount=-1 +kerning first=71 second=171 amount=-1 +kerning first=249 second=231 amount=-1 +kerning first=107 second=171 amount=-1 +kerning first=325 second=74 amount=-1 +kerning first=1031 second=1060 amount=-1 +kerning first=206 second=203 amount=-1 +kerning first=8250 second=76 amount=-1 +kerning first=224 second=269 amount=-1 +kerning first=72 second=231 amount=-1 +kerning first=284 second=171 amount=-1 +kerning first=199 second=201 amount=-1 +kerning first=108 second=231 amount=-1 +kerning first=338 second=252 amount=-1 +kerning first=370 second=214 amount=-1 +kerning first=1071 second=1071 amount=-1 +kerning first=362 second=313 amount=-1 +kerning first=298 second=214 amount=-1 +kerning first=107 second=318 amount=-1 +kerning first=296 second=269 amount=-1 +kerning first=374 second=252 amount=-1 +kerning first=262 second=214 amount=-1 +kerning first=323 second=261 amount=-1 +kerning first=323 second=310 amount=-1 +kerning first=66 second=249 amount=-1 +kerning first=8250 second=90 amount=-1 +kerning first=248 second=318 amount=-1 +kerning first=282 second=200 amount=-1 +kerning first=69 second=266 amount=-1 +kerning first=268 second=8222 amount=-1 +kerning first=212 second=209 amount=-1 +kerning first=232 second=8222 amount=-1 +kerning first=266 second=45 amount=-1 +kerning first=196 second=370 amount=-1 +kerning first=89 second=252 amount=-1 +kerning first=73 second=97 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=194 second=45 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=203 second=71 amount=-1 +kerning first=1062 second=1097 amount=-1 +kerning first=374 second=45 amount=-2 +kerning first=304 second=370 amount=-1 +kerning first=78 second=199 amount=-1 +kerning first=234 second=275 amount=-1 +kerning first=230 second=252 amount=-1 +kerning first=338 second=45 amount=-1 +kerning first=217 second=213 amount=-1 +kerning first=365 second=289 amount=-1 +kerning first=196 second=223 amount=-1 +kerning first=288 second=209 amount=-1 +kerning first=1105 second=1081 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=72 second=217 amount=-1 +kerning first=8250 second=296 amount=-1 +kerning first=304 second=223 amount=-1 +kerning first=204 second=257 amount=-1 +kerning first=77 second=338 amount=-1 +kerning first=268 second=223 amount=-1 +kerning first=364 second=232 amount=-1 +kerning first=213 second=217 amount=-1 +kerning first=1030 second=1027 amount=-1 +kerning first=338 second=251 amount=-1 +kerning first=328 second=232 amount=-1 +kerning first=67 second=108 amount=-1 +kerning first=230 second=251 amount=-1 +kerning first=224 second=243 amount=-1 +kerning first=321 second=217 amount=-1 +kerning first=1066 second=1027 amount=-1 +kerning first=296 second=243 amount=-1 +kerning first=282 second=266 amount=-1 +kerning first=374 second=251 amount=-1 +kerning first=368 second=243 amount=-1 +kerning first=83 second=274 amount=-1 +kerning first=259 second=171 amount=-1 +kerning first=101 second=242 amount=-1 +kerning first=214 second=8221 amount=-2 +kerning first=89 second=225 amount=-1 +kerning first=250 second=8221 amount=-1 +kerning first=284 second=345 amount=-1 +kerning first=235 second=335 amount=-1 +kerning first=286 second=8221 amount=-1 +kerning first=199 second=335 amount=-1 +kerning first=72 second=346 amount=-1 +kerning first=220 second=232 amount=-1 +kerning first=266 second=72 amount=-1 +kerning first=307 second=335 amount=-1 +kerning first=1048 second=1054 amount=-1 +kerning first=266 second=225 amount=-1 +kerning first=302 second=72 amount=-1 +kerning first=271 second=335 amount=-1 +kerning first=197 second=89 amount=-1 +kerning first=374 second=225 amount=-1 +kerning first=8249 second=83 amount=-1 +kerning first=206 second=242 amount=-1 +kerning first=1043 second=1105 amount=-1 +kerning first=1039 second=1052 amount=-1 +kerning first=1065 second=1089 amount=-1 +kerning first=1054 second=1063 amount=-1 +kerning first=65 second=336 amount=-1 +kerning first=204 second=243 amount=-1 +kerning first=262 second=114 amount=-1 +kerning first=1028 second=1117 amount=-1 +kerning first=338 second=72 amount=-1 +kerning first=85 second=241 amount=-1 +kerning first=1055 second=1096 amount=-1 +kerning first=78 second=214 amount=-1 +kerning first=217 second=269 amount=-1 +kerning first=370 second=241 amount=-1 +kerning first=338 second=366 amount=-1 +kerning first=8217 second=196 amount=-2 +kerning first=278 second=336 amount=-1 +kerning first=298 second=241 amount=-1 +kerning first=262 second=241 amount=-1 +kerning first=325 second=114 amount=-1 +kerning first=1060 second=1045 amount=-1 +kerning first=72 second=378 amount=-1 +kerning first=289 second=114 amount=-1 +kerning first=219 second=199 amount=-1 +kerning first=67 second=115 amount=-1 +kerning first=1071 second=1056 amount=-1 +kerning first=103 second=115 amount=-1 +kerning first=114 second=46 amount=-1 +kerning first=1036 second=1076 amount=-1 +kerning first=255 second=46 amount=-1 +kerning first=327 second=199 amount=-1 +kerning first=187 second=344 amount=-1 +kerning first=77 second=81 amount=-1 +kerning first=112 second=114 amount=-1 +kerning first=77 second=327 amount=-1 +kerning first=1049 second=1113 amount=-1 +kerning first=8222 second=249 amount=-1 +kerning first=85 second=361 amount=-1 +kerning first=217 second=114 amount=-1 +kerning first=108 second=378 amount=-1 +kerning first=206 second=79 amount=-1 +kerning first=204 second=284 amount=-1 +kerning first=218 second=327 amount=-1 +kerning first=1053 second=1045 amount=-1 +kerning first=65 second=216 amount=-1 +kerning first=290 second=327 amount=-1 +kerning first=74 second=310 amount=-1 +kerning first=218 second=81 amount=-1 +kerning first=362 second=327 amount=-1 +kerning first=73 second=8221 amount=-1 +kerning first=370 second=361 amount=-1 +kerning first=109 second=8221 amount=-2 +kerning first=206 second=216 amount=-1 +kerning first=362 second=81 amount=-1 +kerning first=88 second=218 amount=-1 +kerning first=333 second=8221 amount=-2 +kerning first=369 second=8221 amount=-1 +kerning first=110 second=246 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=80 second=8249 amount=-1 +kerning first=356 second=224 amount=-1 +kerning first=1042 second=1098 amount=-1 +kerning first=116 second=8249 amount=-1 +kerning first=78 second=72 amount=-1 +kerning first=221 second=369 amount=-1 +kerning first=221 second=8249 amount=-2 +kerning first=368 second=282 amount=-1 +kerning first=257 second=8249 amount=-1 +kerning first=1069 second=1068 amount=-1 +kerning first=221 second=331 amount=-1 +kerning first=296 second=282 amount=-1 +kerning first=209 second=352 amount=-1 +kerning first=199 second=102 amount=-1 +kerning first=85 second=267 amount=-1 +kerning first=1055 second=1070 amount=-1 +kerning first=219 second=72 amount=-1 +kerning first=1039 second=1055 amount=-1 +kerning first=1055 second=1089 amount=-1 +kerning first=83 second=282 amount=-1 +kerning first=233 second=98 amount=-1 +kerning first=86 second=248 amount=-1 +kerning first=193 second=218 amount=-1 +kerning first=227 second=248 amount=-1 +kerning first=8250 second=217 amount=-1 +kerning first=365 second=345 amount=-1 +kerning first=302 second=199 amount=-1 +kerning first=269 second=230 amount=-1 +kerning first=77 second=206 amount=-1 +kerning first=1067 second=1086 amount=-1 +kerning first=76 second=87 amount=-1 +kerning first=1033 second=1031 amount=-1 +kerning first=1031 second=1086 amount=-1 +kerning first=374 second=199 amount=-1 +kerning first=8217 second=259 amount=-1 +kerning first=290 second=206 amount=-1 +kerning first=230 second=291 amount=-1 +kerning first=201 second=361 amount=-1 +kerning first=218 second=206 amount=-1 +kerning first=77 second=288 amount=-1 +kerning first=1048 second=1080 amount=-1 +kerning first=199 second=227 amount=-1 +kerning first=290 second=8218 amount=-1 +kerning first=84 second=8221 amount=-1 +kerning first=313 second=84 amount=-1 +kerning first=66 second=81 amount=-1 +kerning first=269 second=337 amount=-1 +kerning first=362 second=206 amount=-1 +kerning first=120 second=8221 amount=-1 +kerning first=1091 second=1095 amount=-1 +kerning first=233 second=337 amount=-1 +kerning first=1055 second=1095 amount=-1 +kerning first=225 second=8221 amount=-2 +kerning first=207 second=81 amount=-1 +kerning first=187 second=197 amount=-1 +kerning first=261 second=8221 amount=-2 +kerning first=1043 second=1079 amount=-1 +kerning first=257 second=267 amount=-1 +kerning first=218 second=288 amount=-1 +kerning first=72 second=352 amount=-1 +kerning first=8249 second=221 amount=-1 +kerning first=206 second=362 amount=-1 +kerning first=212 second=197 amount=-1 +kerning first=103 second=187 amount=-1 +kerning first=83 second=270 amount=-1 +kerning first=217 second=75 amount=-1 +kerning first=195 second=219 amount=-1 +kerning first=278 second=362 amount=-1 +kerning first=1055 second=1117 amount=-1 +kerning first=72 second=325 amount=-1 +kerning first=67 second=187 amount=-1 +kerning first=350 second=362 amount=-1 +kerning first=218 second=8218 amount=-2 +kerning first=213 second=325 amount=-1 +kerning first=280 second=187 amount=-1 +kerning first=199 second=200 amount=-1 +kerning first=296 second=270 amount=-1 +kerning first=1075 second=1082 amount=-1 +kerning first=77 second=8218 amount=-1 +kerning first=1060 second=1030 amount=-1 +kerning first=244 second=187 amount=-1 +kerning first=298 second=333 amount=-1 +kerning first=70 second=66 amount=-1 +kerning first=65 second=255 amount=-1 +kerning first=335 second=382 amount=-1 +kerning first=80 second=8222 amount=-2 +kerning first=85 second=202 amount=-1 +kerning first=80 second=266 amount=-1 +kerning first=1036 second=1116 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=374 second=264 amount=-1 +kerning first=233 second=107 amount=-1 +kerning first=1055 second=1043 amount=-1 +kerning first=338 second=264 amount=-1 +kerning first=330 second=337 amount=-1 +kerning first=217 second=77 amount=-1 +kerning first=281 second=275 amount=-1 +kerning first=325 second=75 amount=-1 +kerning first=302 second=264 amount=-1 +kerning first=65 second=362 amount=-1 +kerning first=266 second=264 amount=-1 +kerning first=356 second=279 amount=-1 +kerning first=218 second=261 amount=-1 +kerning first=205 second=209 amount=-1 +kerning first=194 second=264 amount=-1 +kerning first=281 second=367 amount=-1 +kerning first=81 second=218 amount=-1 +kerning first=197 second=364 amount=-1 +kerning first=375 second=117 amount=-1 +kerning first=89 second=264 amount=-1 +kerning first=362 second=261 amount=-1 +kerning first=78 second=334 amount=-1 +kerning first=298 second=202 amount=-1 +kerning first=211 second=66 amount=-1 +kerning first=330 second=344 amount=-1 +kerning first=262 second=202 amount=-1 +kerning first=370 second=202 amount=-1 +kerning first=323 second=257 amount=-1 +kerning first=334 second=202 amount=-1 +kerning first=1027 second=1091 amount=-1 +kerning first=351 second=108 amount=-1 +kerning first=74 second=257 amount=-1 +kerning first=202 second=205 amount=-1 +kerning first=364 second=193 amount=-1 +kerning first=243 second=108 amount=-1 +kerning first=279 second=108 amount=-1 +kerning first=219 second=334 amount=-1 +kerning first=368 second=270 amount=-1 +kerning first=79 second=193 amount=-1 +kerning first=346 second=205 amount=-1 +kerning first=220 second=193 amount=-1 +kerning first=286 second=171 amount=-1 +kerning first=327 second=334 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=274 second=205 amount=-1 +kerning first=201 second=323 amount=-1 +kerning first=291 second=307 amount=-1 +kerning first=8218 second=113 amount=-1 +kerning first=8217 second=231 amount=-1 +kerning first=268 second=82 amount=-1 +kerning first=259 second=263 amount=-1 +kerning first=82 second=171 amount=-1 +kerning first=296 second=76 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=195 second=117 amount=-1 +kerning first=280 second=8218 amount=-1 +kerning first=368 second=351 amount=-1 +kerning first=220 second=46 amount=-2 +kerning first=86 second=286 amount=-1 +kerning first=296 second=351 amount=-1 +kerning first=99 second=365 amount=-1 +kerning first=339 second=117 amount=-1 +kerning first=1058 second=1074 amount=-1 +kerning first=288 second=68 amount=-1 +kerning first=8222 second=111 amount=-1 +kerning first=1055 second=1108 amount=-1 +kerning first=1108 second=1078 amount=-1 +kerning first=267 second=117 amount=-1 +kerning first=201 second=332 amount=-1 +kerning first=8250 second=282 amount=-1 +kerning first=192 second=8249 amount=-1 +kerning first=1031 second=1119 amount=-1 +kerning first=302 second=333 amount=-1 +kerning first=210 second=347 amount=-1 +kerning first=298 second=100 amount=-1 +kerning first=120 second=316 amount=-1 +kerning first=1118 second=1083 amount=-1 +kerning first=86 second=382 amount=-1 +kerning first=83 second=330 amount=-1 +kerning first=261 second=316 amount=-1 +kerning first=220 second=220 amount=-1 +kerning first=266 second=333 amount=-1 +kerning first=1040 second=1047 amount=-1 +kerning first=333 second=316 amount=-1 +kerning first=227 second=382 amount=-1 +kerning first=209 second=205 amount=-1 +kerning first=79 second=220 amount=-1 +kerning first=263 second=382 amount=-1 +kerning first=374 second=333 amount=-1 +kerning first=1067 second=1034 amount=-1 +kerning first=368 second=103 amount=-1 +kerning first=99 second=234 amount=-1 +kerning first=304 second=330 amount=-1 +kerning first=1031 second=1034 amount=-1 +kerning first=1031 second=1099 amount=-1 +kerning first=73 second=211 amount=-1 +kerning first=296 second=103 amount=-1 +kerning first=85 second=100 amount=-1 +kerning first=1065 second=1076 amount=-1 +kerning first=224 second=103 amount=-1 +kerning first=217 second=281 amount=-1 +kerning first=367 second=171 amount=-1 +kerning first=268 second=330 amount=-1 +kerning first=1067 second=1099 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=262 second=100 amount=-1 +kerning first=8250 second=378 amount=-1 +kerning first=364 second=220 amount=-1 +kerning first=204 second=77 amount=-1 +kerning first=325 second=281 amount=-1 +kerning first=338 second=85 amount=-1 +kerning first=339 second=113 amount=-1 +kerning first=235 second=252 amount=-1 +kerning first=1044 second=1057 amount=-1 +kerning first=302 second=85 amount=-1 +kerning first=80 second=304 amount=-1 +kerning first=266 second=85 amount=-1 +kerning first=1052 second=1092 amount=-1 +kerning first=201 second=280 amount=-1 +kerning first=279 second=314 amount=-1 +kerning first=194 second=85 amount=-1 +kerning first=337 second=120 amount=-1 +kerning first=243 second=314 amount=-1 +kerning first=200 second=315 amount=-1 +kerning first=355 second=8217 amount=-1 +kerning first=88 second=44 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=351 second=314 amount=-1 +kerning first=328 second=118 amount=-1 +kerning first=253 second=254 amount=-1 +kerning first=302 second=110 amount=-1 +kerning first=66 second=8220 amount=-2 +kerning first=345 second=8250 amount=-1 +kerning first=266 second=110 amount=-1 +kerning first=97 second=339 amount=-1 +kerning first=231 second=271 amount=-1 +kerning first=362 second=219 amount=-1 +kerning first=232 second=357 amount=-1 +kerning first=290 second=219 amount=-1 +kerning first=1048 second=1042 amount=-1 +kerning first=201 second=8250 amount=-1 +kerning first=196 second=357 amount=-1 +kerning first=310 second=85 amount=-1 +kerning first=8217 second=248 amount=-1 +kerning first=304 second=357 amount=-1 +kerning first=368 second=76 amount=-1 +kerning first=218 second=219 amount=-1 +kerning first=268 second=357 amount=-1 +kerning first=289 second=254 amount=-1 +kerning first=205 second=332 amount=-1 +kerning first=210 second=374 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=216 second=8217 amount=-2 +kerning first=120 second=289 amount=-1 +kerning first=206 second=101 amount=-1 +kerning first=261 second=289 amount=-1 +kerning first=206 second=224 amount=-1 +kerning first=225 second=289 amount=-1 +kerning first=77 second=219 amount=-1 +kerning first=72 second=296 amount=-1 +kerning first=375 second=311 amount=-1 +kerning first=203 second=212 amount=-1 +kerning first=211 second=8217 amount=-2 +kerning first=278 second=81 amount=-1 +kerning first=1038 second=1075 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=262 second=187 amount=-1 +kerning first=362 second=362 amount=-1 +kerning first=369 second=289 amount=-1 +kerning first=213 second=296 amount=-1 +kerning first=205 second=111 amount=-1 +kerning first=241 second=111 amount=-1 +kerning first=70 second=8217 amount=-1 +kerning first=277 second=111 amount=-1 +kerning first=106 second=8217 amount=-1 +kerning first=284 second=280 amount=-1 +kerning first=323 second=241 amount=-1 +kerning first=354 second=335 amount=-1 +kerning first=287 second=241 amount=-1 +kerning first=81 second=89 amount=-1 +kerning first=313 second=85 amount=-1 +kerning first=296 second=268 amount=-1 +kerning first=1053 second=1099 amount=-1 +kerning first=205 second=85 amount=-1 +kerning first=74 second=241 amount=-1 +kerning first=219 second=8249 amount=-2 +kerning first=244 second=46 amount=-1 +kerning first=118 second=8220 amount=-2 +kerning first=206 second=271 amount=-1 +kerning first=352 second=46 amount=-1 +kerning first=259 second=8220 amount=-2 +kerning first=86 second=339 amount=-1 +kerning first=223 second=8220 amount=-2 +kerning first=114 second=171 amount=-1 +kerning first=351 second=287 amount=-1 +kerning first=187 second=302 amount=-1 +kerning first=8217 second=286 amount=-1 +kerning first=205 second=225 amount=-1 +kerning first=194 second=118 amount=-1 +kerning first=279 second=287 amount=-1 +kerning first=219 second=269 amount=-1 +kerning first=367 second=8220 amount=-1 +kerning first=275 second=250 amount=-1 +kerning first=366 second=229 amount=-1 +kerning first=355 second=225 amount=-1 +kerning first=224 second=378 amount=-1 +kerning first=330 second=229 amount=-1 +kerning first=214 second=195 amount=-1 +kerning first=203 second=250 amount=-1 +kerning first=1047 second=1090 amount=-1 +kerning first=72 second=8221 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=119 second=378 amount=-1 +kerning first=198 second=344 amount=-1 +kerning first=219 second=278 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=218 second=8217 amount=-1 +kerning first=193 second=284 amount=-1 +kerning first=368 second=378 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=270 second=344 amount=-1 +kerning first=1039 second=1043 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=211 second=207 amount=-1 +kerning first=78 second=278 amount=-1 +kerning first=296 second=378 amount=-1 +kerning first=1027 second=1075 amount=-1 +kerning first=258 second=89 amount=-1 +kerning first=67 second=288 amount=-1 +kerning first=198 second=220 amount=-1 +kerning first=327 second=278 amount=-1 +kerning first=199 second=76 amount=-1 +kerning first=270 second=220 amount=-1 +kerning first=88 second=284 amount=-1 +kerning first=366 second=246 amount=-1 +kerning first=1039 second=1064 amount=-1 +kerning first=206 second=74 amount=-1 +kerning first=71 second=280 amount=-1 +kerning first=1041 second=1118 amount=-1 +kerning first=212 second=280 amount=-1 +kerning first=204 second=114 amount=-1 +kerning first=325 second=216 amount=-1 +kerning first=282 second=201 amount=-1 +kerning first=275 second=113 amount=-1 +kerning first=362 second=369 amount=-1 +kerning first=118 second=104 amount=-1 +kerning first=187 second=198 amount=-1 +kerning first=1051 second=1084 amount=-1 +kerning first=72 second=269 amount=-1 +kerning first=210 second=201 amount=-1 +kerning first=72 second=213 amount=-1 +kerning first=108 second=269 amount=-1 +kerning first=69 second=201 amount=-1 +kerning first=274 second=204 amount=-1 +kerning first=1028 second=1094 amount=-1 +kerning first=1054 second=1113 amount=-1 +kerning first=1064 second=1094 amount=-1 +kerning first=209 second=259 amount=-1 +kerning first=204 second=116 amount=-1 +kerning first=202 second=204 amount=-1 +kerning first=249 second=269 amount=-1 +kerning first=267 second=233 amount=-1 +kerning first=1031 second=1042 amount=-1 +kerning first=218 second=65 amount=-1 +kerning first=74 second=104 amount=-1 +kerning first=235 second=271 amount=-1 +kerning first=317 second=366 amount=-1 +kerning first=99 second=229 amount=-1 +kerning first=74 second=250 amount=-1 +kerning first=346 second=204 amount=-1 +kerning first=197 second=268 amount=-1 +kerning first=288 second=317 amount=-1 +kerning first=1030 second=1069 amount=-1 +kerning first=362 second=65 amount=-1 +kerning first=218 second=369 amount=-1 +kerning first=45 second=256 amount=-1 +kerning first=68 second=366 amount=-1 +kerning first=81 second=256 amount=-1 +kerning first=87 second=283 amount=-1 +kerning first=370 second=382 amount=-1 +kerning first=8218 second=255 amount=-1 +kerning first=262 second=73 amount=-1 +kerning first=77 second=262 amount=-1 +kerning first=334 second=73 amount=-1 +kerning first=298 second=73 amount=-1 +kerning first=8218 second=362 amount=-1 +kerning first=67 second=213 amount=-1 +kerning first=366 second=256 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=1031 second=1070 amount=-1 +kerning first=283 second=311 amount=-1 +kerning first=99 second=326 amount=-1 +kerning first=280 second=213 amount=-1 +kerning first=218 second=262 amount=-1 +kerning first=304 second=82 amount=-1 +kerning first=219 second=251 amount=-1 +kerning first=204 second=219 amount=-1 +kerning first=1052 second=1053 amount=-1 +kerning first=1046 second=1105 amount=-1 +kerning first=281 second=122 amount=-1 +kerning first=275 second=277 amount=-1 +kerning first=278 second=282 amount=-1 +kerning first=209 second=122 amount=-1 +kerning first=85 second=73 amount=-1 +kerning first=195 second=81 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=70 second=311 amount=-1 +kerning first=291 second=251 amount=-1 +kerning first=362 second=235 amount=-1 +kerning first=364 second=334 amount=-1 +kerning first=98 second=8221 amount=-2 +kerning first=367 second=345 amount=-1 +kerning first=204 second=283 amount=-1 +kerning first=203 second=8221 amount=-1 +kerning first=264 second=75 amount=-1 +kerning first=199 second=270 amount=-1 +kerning first=99 second=283 amount=-1 +kerning first=330 second=380 amount=-1 +kerning first=275 second=8221 amount=-2 +kerning first=197 second=187 amount=-1 +kerning first=311 second=8221 amount=-1 +kerning first=241 second=248 amount=-1 +kerning first=1048 second=1119 amount=-1 +kerning first=89 second=226 amount=-1 +kerning first=347 second=8221 amount=-2 +kerning first=205 second=248 amount=-1 +kerning first=366 second=380 amount=-1 +kerning first=74 second=218 amount=-1 +kerning first=367 second=279 amount=-1 +kerning first=221 second=196 amount=-1 +kerning first=217 second=336 amount=-1 +kerning first=73 second=245 amount=-1 +kerning first=339 second=242 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=241 second=232 amount=-1 +kerning first=231 second=242 amount=-1 +kerning first=81 second=66 amount=-1 +kerning first=234 second=311 amount=-1 +kerning first=302 second=226 amount=-1 +kerning first=45 second=66 amount=-1 +kerning first=325 second=336 amount=-1 +kerning first=374 second=226 amount=-1 +kerning first=327 second=277 amount=-1 +kerning first=240 second=283 amount=-1 +kerning first=258 second=370 amount=-1 +kerning first=8218 second=228 amount=-1 +kerning first=45 second=380 amount=-1 +kerning first=217 second=194 amount=-1 +kerning first=224 second=244 amount=-1 +kerning first=288 second=274 amount=-1 +kerning first=296 second=244 amount=-1 +kerning first=327 second=45 amount=-1 +kerning first=84 second=233 amount=-1 +kerning first=80 second=227 amount=-1 +kerning first=234 second=367 amount=-1 +kerning first=366 second=66 amount=-1 +kerning first=368 second=244 amount=-1 +kerning first=258 second=363 amount=-1 +kerning first=330 second=66 amount=-1 +kerning first=221 second=8222 amount=-2 +kerning first=225 second=233 amount=-1 +kerning first=261 second=233 amount=-1 +kerning first=116 second=8222 amount=-1 +kerning first=77 second=235 amount=-1 +kerning first=283 second=279 amount=-1 +kerning first=336 second=44 amount=-1 +kerning first=369 second=233 amount=-1 +kerning first=97 second=231 amount=-1 +kerning first=264 second=44 amount=-1 +kerning first=218 second=235 amount=-1 +kerning first=203 second=70 amount=-1 +kerning first=288 second=82 amount=-1 +kerning first=67 second=344 amount=-1 +kerning first=1071 second=1045 amount=-1 +kerning first=326 second=235 amount=-1 +kerning first=118 second=318 amount=-1 +kerning first=1058 second=1116 amount=-1 +kerning first=192 second=71 amount=-1 +kerning first=74 second=214 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=196 second=249 amount=-1 +kerning first=367 second=275 amount=-1 +kerning first=219 second=206 amount=-1 +kerning first=364 second=258 amount=-1 +kerning first=217 second=363 amount=-1 +kerning first=323 second=214 amount=-1 +kerning first=171 second=370 amount=-1 +kerning first=99 second=353 amount=-1 +kerning first=253 second=363 amount=-1 +kerning first=1050 second=1104 amount=-1 +kerning first=235 second=243 amount=-1 +kerning first=264 second=71 amount=-1 +kerning first=66 second=370 amount=-1 +kerning first=204 second=353 amount=-1 +kerning first=78 second=45 amount=-1 +kerning first=80 second=298 amount=-1 +kerning first=70 second=77 amount=-1 +kerning first=315 second=370 amount=-1 +kerning first=114 second=45 amount=-1 +kerning first=207 second=370 amount=-1 +kerning first=103 second=369 amount=-1 +kerning first=259 second=275 amount=-1 +kerning first=192 second=362 amount=-1 +kerning first=288 second=80 amount=-1 +kerning first=232 second=249 amount=-1 +kerning first=255 second=45 amount=-1 +kerning first=263 second=106 amount=-1 +kerning first=88 second=336 amount=-1 +kerning first=277 second=252 amount=-1 +kerning first=291 second=45 amount=-1 +kerning first=198 second=8250 amount=-1 +kerning first=335 second=106 amount=-1 +kerning first=219 second=45 amount=-2 +kerning first=106 second=234 amount=-1 +kerning first=370 second=267 amount=-1 +kerning first=45 second=250 amount=-1 +kerning first=70 second=234 amount=-1 +kerning first=83 second=217 amount=-1 +kerning first=1046 second=1028 amount=-1 +kerning first=221 second=223 amount=-1 +kerning first=283 second=234 amount=-1 +kerning first=226 second=267 amount=-1 +kerning first=262 second=267 amount=-1 +kerning first=206 second=336 amount=-1 +kerning first=355 second=234 amount=-1 +kerning first=82 second=8220 amount=-1 +kerning first=296 second=217 amount=-1 +kerning first=80 second=223 amount=-1 +kerning first=66 second=206 amount=-1 +kerning first=1064 second=1098 amount=-1 +kerning first=73 second=368 amount=-1 +kerning first=220 second=258 amount=-1 +kerning first=368 second=217 amount=-1 +kerning first=209 second=232 amount=-1 +kerning first=271 second=243 amount=-1 +kerning first=1044 second=1095 amount=-1 +kerning first=82 second=345 amount=-1 +kerning first=207 second=206 amount=-1 +kerning first=104 second=232 amount=-1 +kerning first=1053 second=1072 amount=-1 +kerning first=118 second=345 amount=-1 +kerning first=214 second=368 amount=-1 +kerning first=1116 second=1095 amount=-1 +kerning first=198 second=371 amount=-1 +kerning first=187 second=345 amount=-1 +kerning first=199 second=266 amount=-1 +kerning first=223 second=345 amount=-1 +kerning first=79 second=258 amount=-1 +kerning first=259 second=345 amount=-1 +kerning first=1040 second=1096 amount=-1 +kerning first=281 second=232 amount=-1 +kerning first=80 second=200 amount=-1 +kerning first=1050 second=1077 amount=-1 +kerning first=8218 second=281 amount=-1 +kerning first=70 second=315 amount=-1 +kerning first=77 second=370 amount=-1 +kerning first=88 second=8218 amount=-1 +kerning first=362 second=290 amount=-1 +kerning first=290 second=370 amount=-1 +kerning first=366 second=337 amount=-1 +kerning first=240 second=245 amount=-1 +kerning first=286 second=368 amount=-1 +kerning first=288 second=313 amount=-1 +kerning first=204 second=245 amount=-1 +kerning first=1047 second=1116 amount=-1 +kerning first=218 second=370 amount=-1 +kerning first=284 second=323 amount=-1 +kerning first=1070 second=1037 amount=-1 +kerning first=205 second=199 amount=-1 +kerning first=258 second=105 amount=-1 +kerning first=362 second=370 amount=-1 +kerning first=1065 second=1101 amount=-1 +kerning first=99 second=120 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=362 second=257 amount=-1 +kerning first=103 second=45 amount=-1 +kerning first=1056 second=1086 amount=-1 +kerning first=366 second=230 amount=-1 +kerning first=330 second=230 amount=-1 +kerning first=251 second=267 amount=-1 +kerning first=1038 second=1076 amount=-1 +kerning first=192 second=318 amount=-1 +kerning first=287 second=267 amount=-1 +kerning first=199 second=217 amount=-1 +kerning first=352 second=72 amount=-1 +kerning first=323 second=267 amount=-1 +kerning first=74 second=267 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=278 second=345 amount=-1 +kerning first=110 second=267 amount=-1 +kerning first=264 second=212 amount=-1 +kerning first=264 second=114 amount=-1 +kerning first=8222 second=108 amount=-1 +kerning first=99 second=245 amount=-1 +kerning first=233 second=115 amount=-1 +kerning first=364 second=350 amount=-1 +kerning first=269 second=115 amount=-1 +kerning first=87 second=114 amount=-1 +kerning first=282 second=8249 amount=-1 +kerning first=228 second=114 amount=-1 +kerning first=252 second=111 amount=-1 +kerning first=192 second=212 amount=-1 +kerning first=192 second=114 amount=-1 +kerning first=220 second=350 amount=-1 +kerning first=354 second=8249 amount=-1 +kerning first=192 second=254 amount=-1 +kerning first=324 second=111 amount=-1 +kerning first=271 second=333 amount=-1 +kerning first=264 second=254 amount=-1 +kerning first=304 second=81 amount=-1 +kerning first=204 second=218 amount=-1 +kerning first=86 second=231 amount=-1 +kerning first=223 second=318 amount=-1 +kerning first=1059 second=1119 amount=-1 +kerning first=259 second=318 amount=-1 +kerning first=201 second=367 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=1034 second=1064 amount=-1 +kerning first=268 second=81 amount=-1 +kerning first=314 second=382 amount=-1 +kerning first=368 second=352 amount=-1 +kerning first=311 second=44 amount=-1 +kerning first=70 second=273 amount=-1 +kerning first=75 second=355 amount=-1 +kerning first=345 second=187 amount=-1 +kerning first=283 second=380 amount=-1 +kerning first=1052 second=1062 amount=-1 +kerning first=8218 second=254 amount=-1 +kerning first=108 second=275 amount=-1 +kerning first=1056 second=1059 amount=-1 +kerning first=368 second=258 amount=-1 +kerning first=204 second=78 amount=-1 +kerning first=252 second=248 amount=-1 +kerning first=249 second=289 amount=-1 +kerning first=67 second=72 amount=-1 +kerning first=280 second=72 amount=-1 +kerning first=105 second=113 amount=-1 +kerning first=199 second=282 amount=-1 +kerning first=85 second=332 amount=-1 +kerning first=1064 second=1055 amount=-1 +kerning first=282 second=8222 amount=-1 +kerning first=298 second=332 amount=-1 +kerning first=246 second=8222 amount=-1 +kerning first=262 second=332 amount=-1 +kerning first=210 second=8222 amount=-1 +kerning first=81 second=330 amount=-1 +kerning first=105 second=8222 amount=-1 +kerning first=264 second=346 amount=-1 +kerning first=259 second=279 amount=-1 +kerning first=69 second=8222 amount=-1 +kerning first=1066 second=1070 amount=-1 +kerning first=192 second=87 amount=-1 +kerning first=1030 second=1070 amount=-1 +kerning first=370 second=332 amount=-1 +kerning first=277 second=291 amount=-1 +kerning first=368 second=8250 amount=-2 +kerning first=241 second=291 amount=-1 +kerning first=305 second=187 amount=-1 +kerning first=368 second=263 amount=-1 +kerning first=79 second=323 amount=-1 +kerning first=193 second=288 amount=-1 +kerning first=233 second=187 amount=-1 +kerning first=117 second=337 amount=-1 +kerning first=100 second=291 amount=-1 +kerning first=269 second=187 amount=-1 +kerning first=204 second=231 amount=-1 +kerning first=196 second=81 amount=-1 +kerning first=296 second=352 amount=-1 +kerning first=354 second=8222 amount=-1 +kerning first=220 second=323 amount=-1 +kerning first=1068 second=1050 amount=-1 +kerning first=203 second=211 amount=-1 +kerning first=80 second=86 amount=-1 +kerning first=70 second=338 amount=-1 +kerning first=307 second=46 amount=-1 +kerning first=270 second=198 amount=-1 +kerning first=330 second=268 amount=-1 +kerning first=1067 second=1083 amount=-1 +kerning first=291 second=287 amount=-1 +kerning first=1042 second=1034 amount=-1 +kerning first=296 second=325 amount=-1 +kerning first=87 second=281 amount=-1 +kerning first=368 second=325 amount=-1 +kerning first=85 second=99 amount=-1 +kerning first=1066 second=1043 amount=-1 +kerning first=1041 second=1069 amount=-1 +kerning first=323 second=73 amount=-1 +kerning first=298 second=99 amount=-1 +kerning first=75 second=290 amount=-1 +kerning first=268 second=314 amount=-1 +kerning first=366 second=207 amount=-1 +kerning first=193 second=369 amount=-1 +kerning first=74 second=202 amount=-1 +kerning first=232 second=314 amount=-1 +kerning first=45 second=268 amount=-1 +kerning first=235 second=347 amount=-1 +kerning first=78 second=110 amount=-1 +kerning first=226 second=99 amount=-1 +kerning first=196 second=314 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=262 second=8250 amount=-1 +kerning first=258 second=268 amount=-1 +kerning first=199 second=347 amount=-1 +kerning first=226 second=8250 amount=-1 +kerning first=370 second=99 amount=-1 +kerning first=8217 second=339 amount=-1 +kerning first=219 second=110 amount=-1 +kerning first=323 second=202 amount=-1 +kerning first=364 second=117 amount=-1 +kerning first=327 second=110 amount=-1 +kerning first=89 second=334 amount=-1 +kerning first=81 second=364 amount=-1 +kerning first=1107 second=1087 amount=-1 +kerning first=264 second=277 amount=-1 +kerning first=45 second=364 amount=-1 +kerning first=79 second=218 amount=-1 +kerning first=74 second=73 amount=-1 +kerning first=228 second=277 amount=-1 +kerning first=81 second=8217 amount=-2 +kerning first=85 second=171 amount=-2 +kerning first=266 second=334 amount=-1 +kerning first=205 second=264 amount=-1 +kerning first=287 second=104 amount=-1 +kerning first=194 second=334 amount=-1 +kerning first=235 second=351 amount=-1 +kerning first=374 second=334 amount=-1 +kerning first=1033 second=1030 amount=-1 +kerning first=270 second=69 amount=-1 +kerning first=193 second=121 amount=-1 +kerning first=1069 second=1030 amount=-1 +kerning first=196 second=108 amount=-1 +kerning first=366 second=8217 amount=-1 +kerning first=302 second=334 amount=-1 +kerning first=366 second=364 amount=-1 +kerning first=231 second=101 amount=-1 +kerning first=338 second=334 amount=-1 +kerning first=330 second=364 amount=-1 +kerning first=1041 second=1065 amount=-1 +kerning first=117 second=8217 amount=-1 +kerning first=1060 second=1070 amount=-1 +kerning first=1052 second=1050 amount=-1 +kerning first=258 second=364 amount=-1 +kerning first=267 second=101 amount=-1 +kerning first=1036 second=1117 amount=-1 +kerning first=118 second=380 amount=-1 +kerning first=222 second=8217 amount=-2 +kerning first=83 second=325 amount=-1 +kerning first=68 second=193 amount=-1 +kerning first=232 second=108 amount=-1 +kerning first=258 second=8217 amount=-2 +kerning first=374 second=187 amount=-1 +kerning first=339 second=101 amount=-1 +kerning first=283 second=273 amount=-1 +kerning first=268 second=108 amount=-1 +kerning first=1047 second=1051 amount=-1 +kerning first=199 second=103 amount=-1 +kerning first=234 second=263 amount=-1 +kerning first=202 second=296 amount=-1 +kerning first=1053 second=1089 amount=-1 +kerning first=198 second=171 amount=-1 +kerning first=193 second=365 amount=-1 +kerning first=1039 second=1039 amount=-1 +kerning first=366 second=203 amount=-1 +kerning first=75 second=286 amount=-1 +kerning first=69 second=8249 amount=-1 +kerning first=1052 second=1049 amount=-1 +kerning first=80 second=82 amount=-1 +kerning first=105 second=8249 amount=-1 +kerning first=346 second=296 amount=-1 +kerning first=206 second=298 amount=-1 +kerning first=1067 second=1068 amount=-1 +kerning first=278 second=298 amount=-1 +kerning first=304 second=241 amount=-1 +kerning first=269 second=229 amount=-1 +kerning first=314 second=363 amount=-1 +kerning first=350 second=298 amount=-1 +kerning first=330 second=203 amount=-1 +kerning first=220 second=117 amount=-1 +kerning first=45 second=203 amount=-1 +kerning first=232 second=287 amount=-1 +kerning first=197 second=211 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=364 second=369 amount=-1 +kerning first=374 second=8222 amount=-2 +kerning first=74 second=313 amount=-1 +kerning first=68 second=220 amount=-1 +kerning first=1071 second=1083 amount=-1 +kerning first=67 second=278 amount=-1 +kerning first=227 second=339 amount=-1 +kerning first=313 second=356 amount=-1 +kerning first=74 second=77 amount=-1 +kerning first=323 second=100 amount=-1 +kerning first=111 second=382 amount=-1 +kerning first=263 second=339 amount=-1 +kerning first=8218 second=87 amount=-2 +kerning first=355 second=246 amount=-1 +kerning first=1052 second=1118 amount=-1 +kerning first=228 second=281 amount=-1 +kerning first=317 second=220 amount=-1 +kerning first=378 second=171 amount=-1 +kerning first=282 second=304 amount=-1 +kerning first=264 second=281 amount=-1 +kerning first=283 second=246 amount=-1 +kerning first=100 second=333 amount=-1 +kerning first=1067 second=1076 amount=-1 +kerning first=194 second=307 amount=-1 +kerning first=209 second=220 amount=-1 +kerning first=1053 second=1060 amount=-1 +kerning first=69 second=304 amount=-1 +kerning first=1039 second=1092 amount=-1 +kerning first=352 second=278 amount=-1 +kerning first=270 second=194 amount=-1 +kerning first=307 second=103 amount=-1 +kerning first=241 second=333 amount=-1 +kerning first=106 second=246 amount=-1 +kerning first=271 second=103 amount=-1 +kerning first=277 second=333 amount=-1 +kerning first=80 second=330 amount=-1 +kerning first=323 second=77 amount=-1 +kerning first=70 second=246 amount=-1 +kerning first=210 second=304 amount=-1 +kerning first=235 second=103 amount=-1 +kerning first=305 second=246 amount=-1 +kerning first=1064 second=1039 amount=-1 +kerning first=218 second=8222 amount=-2 +kerning first=269 second=246 amount=-1 +kerning first=266 second=382 amount=-1 +kerning first=202 second=223 amount=-1 +kerning first=246 second=103 amount=-1 +kerning first=217 second=298 amount=-1 +kerning first=362 second=77 amount=-1 +kerning first=77 second=8222 amount=-1 +kerning first=374 second=382 amount=-1 +kerning first=210 second=330 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=290 second=77 amount=-1 +kerning first=362 second=304 amount=-1 +kerning first=282 second=330 amount=-1 +kerning first=97 second=269 amount=-1 +kerning first=218 second=77 amount=-1 +kerning first=325 second=298 amount=-1 +kerning first=233 second=333 amount=-1 +kerning first=1094 second=1095 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=217 second=211 amount=-1 +kerning first=269 second=333 amount=-1 +kerning first=218 second=304 amount=-1 +kerning first=302 second=68 amount=-1 +kerning first=370 second=365 amount=-1 +kerning first=266 second=68 amount=-1 +kerning first=290 second=304 amount=-1 +kerning first=106 second=289 amount=-1 +kerning first=362 second=8222 amount=-2 +kerning first=228 second=283 amount=-1 +kerning first=305 second=333 amount=-1 +kerning first=87 second=103 amount=-1 +kerning first=290 second=8222 amount=-1 +kerning first=77 second=304 amount=-1 +kerning first=1052 second=1048 amount=-1 +kerning first=254 second=8222 amount=-1 +kerning first=203 second=315 amount=-1 +kerning first=214 second=260 amount=-1 +kerning first=70 second=109 amount=-1 +kerning first=1070 second=1044 amount=-1 +kerning first=252 second=339 amount=-1 +kerning first=257 second=339 amount=-1 +kerning first=211 second=88 amount=-1 +kerning first=266 second=107 amount=-1 +kerning first=268 second=347 amount=-1 +kerning first=267 second=281 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=325 second=211 amount=-1 +kerning first=1064 second=1031 amount=-1 +kerning first=1052 second=1108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=1039 second=1051 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=339 second=281 amount=-1 +kerning first=296 second=313 amount=-1 +kerning first=232 second=347 amount=-1 +kerning first=77 second=77 amount=-1 +kerning first=305 second=289 amount=-1 +kerning first=8216 second=198 amount=-2 +kerning first=327 second=290 amount=-1 +kerning first=1058 second=1117 amount=-1 +kerning first=83 second=313 amount=-1 +kerning first=1051 second=1042 amount=-1 +kerning first=69 second=330 amount=-1 +kerning first=364 second=69 amount=-1 +kerning first=1047 second=1025 amount=-1 +kerning first=232 second=120 amount=-1 +kerning first=324 second=339 amount=-1 +kerning first=268 second=120 amount=-1 +kerning first=86 second=264 amount=-1 +kerning first=354 second=103 amount=-1 +kerning first=103 second=251 amount=-1 +kerning first=316 second=251 amount=-1 +kerning first=69 second=76 amount=-1 +kerning first=352 second=251 amount=-1 +kerning first=8217 second=264 amount=-1 +kerning first=280 second=251 amount=-1 +kerning first=333 second=8217 amount=-2 +kerning first=226 second=378 amount=-1 +kerning first=84 second=8217 amount=-1 +kerning first=298 second=76 amount=-1 +kerning first=192 second=8221 amount=-2 +kerning first=218 second=225 amount=-1 +kerning first=120 second=8217 amount=-1 +kerning first=228 second=8221 amount=-2 +kerning first=288 second=85 amount=-1 +kerning first=8217 second=351 amount=-1 +kerning first=231 second=254 amount=-1 +kerning first=217 second=271 amount=-1 +kerning first=220 second=242 amount=-1 +kerning first=279 second=245 amount=-1 +kerning first=362 second=331 amount=-1 +kerning first=267 second=254 amount=-1 +kerning first=325 second=271 amount=-1 +kerning first=336 second=8221 amount=-2 +kerning first=87 second=212 amount=-1 +kerning first=207 second=245 amount=-1 +kerning first=339 second=254 amount=-1 +kerning first=213 second=221 amount=-1 +kerning first=328 second=242 amount=-1 +kerning first=375 second=254 amount=-1 +kerning first=75 second=85 amount=-1 +kerning first=364 second=242 amount=-1 +kerning first=218 second=331 amount=-1 +kerning first=321 second=221 amount=-1 +kerning first=283 second=289 amount=-1 +kerning first=327 second=203 amount=-1 +kerning first=121 second=365 amount=-1 +kerning first=258 second=67 amount=-1 +kerning first=1027 second=1113 amount=-1 +kerning first=8216 second=351 amount=-1 +kerning first=355 second=289 amount=-1 +kerning first=1052 second=1075 amount=-1 +kerning first=77 second=331 amount=-1 +kerning first=85 second=365 amount=-1 +kerning first=70 second=229 amount=-1 +kerning first=219 second=203 amount=-1 +kerning first=221 second=288 amount=-1 +kerning first=1046 second=1104 amount=-1 +kerning first=73 second=233 amount=-1 +kerning first=45 second=67 amount=-1 +kerning first=270 second=366 amount=-1 +kerning first=109 second=233 amount=-1 +kerning first=195 second=254 amount=-1 +kerning first=244 second=8220 amount=-2 +kerning first=8250 second=252 amount=-1 +kerning first=78 second=203 amount=-1 +kerning first=187 second=280 amount=-1 +kerning first=250 second=233 amount=-1 +kerning first=263 second=248 amount=-1 +kerning first=339 second=8222 amount=-1 +kerning first=282 second=357 amount=-1 +kerning first=196 second=374 amount=-1 +kerning first=69 second=357 amount=-1 +kerning first=355 second=229 amount=-1 +kerning first=282 second=76 amount=-1 +kerning first=1076 second=1084 amount=-1 +kerning first=1030 second=1118 amount=-1 +kerning first=210 second=76 amount=-1 +kerning first=192 second=363 amount=-1 +kerning first=356 second=122 amount=-1 +kerning first=248 second=122 amount=-1 +kerning first=219 second=317 amount=-1 +kerning first=85 second=224 amount=-1 +kerning first=287 second=114 amount=-1 +kerning first=1053 second=1117 amount=-1 +kerning first=214 second=207 amount=-1 +kerning first=298 second=224 amount=-1 +kerning first=327 second=317 amount=-1 +kerning first=1039 second=1104 amount=-1 +kerning first=200 second=250 amount=-1 +kerning first=1027 second=1087 amount=-1 +kerning first=286 second=207 amount=-1 +kerning first=262 second=224 amount=-1 +kerning first=8250 second=200 amount=-1 +kerning first=67 second=311 amount=-1 +kerning first=86 second=378 amount=-1 +kerning first=1118 second=1093 amount=-1 +kerning first=206 second=259 amount=-1 +kerning first=80 second=201 amount=-1 +kerning first=103 second=311 amount=-1 +kerning first=198 second=366 amount=-1 +kerning first=370 second=224 amount=-1 +kerning first=81 second=354 amount=-1 +kerning first=364 second=216 amount=-1 +kerning first=70 second=256 amount=-1 +kerning first=199 second=244 amount=-1 +kerning first=263 second=378 amount=-1 +kerning first=235 second=244 amount=-1 +kerning first=227 second=378 amount=-1 +kerning first=330 second=67 amount=-1 +kerning first=271 second=244 amount=-1 +kerning first=78 second=317 amount=-1 +kerning first=366 second=67 amount=-1 +kerning first=307 second=244 amount=-1 +kerning first=310 second=8249 amount=-1 +kerning first=1040 second=1063 amount=-2 +kerning first=88 second=262 amount=-1 +kerning first=1065 second=1095 amount=-1 +kerning first=370 second=198 amount=-1 +kerning first=1105 second=1096 amount=-1 +kerning first=302 second=268 amount=-1 +kerning first=314 second=235 amount=-1 +kerning first=193 second=262 amount=-1 +kerning first=334 second=198 amount=-1 +kerning first=266 second=268 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=209 second=210 amount=-1 +kerning first=1060 second=1049 amount=-1 +kerning first=364 second=302 amount=-1 +kerning first=1105 second=1095 amount=-1 +kerning first=8218 second=97 amount=-1 +kerning first=211 second=256 amount=-1 +kerning first=279 second=98 amount=-1 +kerning first=220 second=302 amount=-1 +kerning first=198 second=345 amount=-1 +kerning first=1051 second=1101 amount=-1 +kerning first=108 second=335 amount=-1 +kerning first=234 second=345 amount=-1 +kerning first=249 second=335 amount=-1 +kerning first=323 second=219 amount=-1 +kerning first=362 second=262 amount=-1 +kerning first=268 second=206 amount=-1 +kerning first=304 second=206 amount=-1 +kerning first=85 second=198 amount=-1 +kerning first=79 second=302 amount=-1 +kerning first=194 second=268 amount=-1 +kerning first=204 second=259 amount=-1 +kerning first=89 second=268 amount=-1 +kerning first=8250 second=313 amount=-1 +kerning first=1055 second=1053 amount=-1 +kerning first=263 second=351 amount=-1 +kerning first=227 second=231 amount=-1 +kerning first=316 second=335 amount=-1 +kerning first=263 second=231 amount=-1 +kerning first=8222 second=374 amount=-2 +kerning first=1064 second=1099 amount=-1 +kerning first=78 second=290 amount=-1 +kerning first=45 second=381 amount=-1 +kerning first=369 second=171 amount=-1 +kerning first=1118 second=1091 amount=-1 +kerning first=205 second=226 amount=-1 +kerning first=81 second=88 amount=-1 +kerning first=187 second=73 amount=-1 +kerning first=203 second=368 amount=-1 +kerning first=85 second=197 amount=-1 +kerning first=280 second=338 amount=-1 +kerning first=1062 second=1119 amount=-1 +kerning first=1056 second=1038 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=221 second=214 amount=-1 +kerning first=218 second=8249 amount=-2 +kerning first=78 second=8249 amount=-1 +kerning first=1030 second=1031 amount=-1 +kerning first=86 second=351 amount=-1 +kerning first=296 second=286 amount=-1 +kerning first=290 second=8249 amount=-1 +kerning first=199 second=8218 amount=-1 +kerning first=370 second=197 amount=-1 +kerning first=229 second=283 amount=-1 +kerning first=326 second=8249 amount=-1 +kerning first=334 second=197 amount=-1 +kerning first=368 second=286 amount=-1 +kerning first=362 second=8249 amount=-2 +kerning first=1066 second=1031 amount=-1 +kerning first=67 second=338 amount=-1 +kerning first=100 second=245 amount=-1 +kerning first=280 second=45 amount=-1 +kerning first=121 second=171 amount=-1 +kerning first=205 second=274 amount=-1 +kerning first=226 second=171 amount=-1 +kerning first=198 second=79 amount=-1 +kerning first=314 second=113 amount=-1 +kerning first=316 second=45 amount=-1 +kerning first=352 second=45 amount=-1 +kerning first=77 second=8249 amount=-1 +kerning first=250 second=242 amount=-1 +kerning first=229 second=235 amount=-1 +kerning first=264 second=70 amount=-1 +kerning first=8222 second=81 amount=-1 +kerning first=1059 second=1074 amount=-1 +kerning first=255 second=378 amount=-1 +kerning first=1041 second=1064 amount=-1 +kerning first=366 second=8221 amount=-1 +kerning first=74 second=192 amount=-1 +kerning first=1039 second=1077 amount=-1 +kerning first=87 second=363 amount=-1 +kerning first=1058 second=1090 amount=-1 +kerning first=1069 second=1069 amount=-1 +kerning first=271 second=380 amount=-1 +kerning first=196 second=286 amount=-1 +kerning first=1052 second=1027 amount=-1 +kerning first=103 second=252 amount=-1 +kerning first=298 second=344 amount=-1 +kerning first=83 second=205 amount=-1 +kerning first=262 second=344 amount=-1 +kerning first=296 second=205 amount=-1 +kerning first=370 second=344 amount=-1 +kerning first=334 second=344 amount=-1 +kerning first=330 second=115 amount=-1 +kerning first=83 second=80 amount=-1 +kerning first=280 second=252 amount=-1 +kerning first=201 second=284 amount=-1 +kerning first=366 second=115 amount=-1 +kerning first=194 second=89 amount=-1 +kerning first=1031 second=1076 amount=-1 +kerning first=323 second=368 amount=-1 +kerning first=304 second=261 amount=-1 +kerning first=268 second=261 amount=-1 +kerning first=298 second=205 amount=-1 +kerning first=8218 second=111 amount=-1 +kerning first=252 second=231 amount=-1 +kerning first=111 second=106 amount=-1 +kerning first=210 second=217 amount=-1 +kerning first=290 second=204 amount=-1 +kerning first=324 second=231 amount=-1 +kerning first=282 second=217 amount=-1 +kerning first=85 second=344 amount=-1 +kerning first=1038 second=1044 amount=-1 +kerning first=87 second=97 amount=-1 +kerning first=74 second=332 amount=-1 +kerning first=261 second=103 amount=-1 +kerning first=362 second=223 amount=-1 +kerning first=99 second=235 amount=-1 +kerning first=269 second=45 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=232 second=353 amount=-1 +kerning first=282 second=249 amount=-1 +kerning first=267 second=275 amount=-1 +kerning first=204 second=235 amount=-1 +kerning first=197 second=45 amount=-1 +kerning first=304 second=353 amount=-1 +kerning first=240 second=235 amount=-1 +kerning first=200 second=71 amount=-1 +kerning first=1071 second=1028 amount=-1 +kerning first=339 second=275 amount=-1 +kerning first=268 second=353 amount=-1 +kerning first=1067 second=1028 amount=-1 +kerning first=220 second=362 amount=-1 +kerning first=352 second=252 amount=-1 +kerning first=296 second=80 amount=-1 +kerning first=207 second=111 amount=-1 +kerning first=77 second=223 amount=-1 +kerning first=103 second=234 amount=-1 +kerning first=364 second=362 amount=-1 +kerning first=8218 second=271 amount=-1 +kerning first=264 second=97 amount=-1 +kerning first=290 second=223 amount=-1 +kerning first=99 second=240 amount=-1 +kerning first=68 second=323 amount=-1 +kerning first=97 second=243 amount=-1 +kerning first=218 second=223 amount=-1 +kerning first=368 second=80 amount=-1 +kerning first=8222 second=288 amount=-1 +kerning first=270 second=258 amount=-1 +kerning first=119 second=107 amount=-1 +kerning first=314 second=232 amount=-1 +kerning first=1105 second=1093 amount=-1 +kerning first=87 second=336 amount=-1 +kerning first=1062 second=1080 amount=-1 +kerning first=209 second=323 amount=-1 +kerning first=75 second=199 amount=-1 +kerning first=67 second=317 amount=-1 +kerning first=73 second=357 amount=-1 +kerning first=192 second=336 amount=-1 +kerning first=283 second=337 amount=-1 +kerning first=109 second=119 amount=-1 +kerning first=1065 second=1079 amount=-1 +kerning first=291 second=311 amount=-1 +kerning first=264 second=336 amount=-1 +kerning first=323 second=8250 amount=-1 +kerning first=67 second=225 amount=-1 +kerning first=69 second=249 amount=-1 +kerning first=287 second=8250 amount=-1 +kerning first=213 second=205 amount=-1 +kerning first=337 second=382 amount=-1 +kerning first=187 second=328 amount=-1 +kerning first=109 second=234 amount=-1 +kerning first=220 second=226 amount=-1 +kerning first=73 second=234 amount=-1 +kerning first=1051 second=1041 amount=-1 +kerning first=269 second=105 amount=-1 +kerning first=206 second=232 amount=-1 +kerning first=257 second=314 amount=-1 +kerning first=67 second=110 amount=-1 +kerning first=1091 second=1091 amount=-1 +kerning first=210 second=72 amount=-1 +kerning first=187 second=361 amount=-1 +kerning first=101 second=232 amount=-1 +kerning first=250 second=234 amount=-1 +kerning first=1038 second=1071 amount=-1 +kerning first=1107 second=1088 amount=-1 +kerning first=1040 second=1076 amount=-1 +kerning first=103 second=110 amount=-1 +kerning first=204 second=327 amount=-1 +kerning first=8250 second=288 amount=-1 +kerning first=220 second=198 amount=-1 +kerning first=1053 second=1055 amount=-1 +kerning first=197 second=105 amount=-1 +kerning first=240 second=267 amount=-1 +kerning first=8222 second=261 amount=-1 +kerning first=8250 second=286 amount=-1 +kerning first=209 second=368 amount=-1 +kerning first=283 second=8222 amount=-1 +kerning first=65 second=108 amount=-1 +kerning first=81 second=115 amount=-1 +kerning first=287 second=305 amount=-1 +kerning first=275 second=114 amount=-1 +kerning first=1044 second=1096 amount=-1 +kerning first=1059 second=1097 amount=-1 +kerning first=1027 second=1114 amount=-1 +kerning first=97 second=335 amount=-1 +kerning first=305 second=337 amount=-1 +kerning first=88 second=370 amount=-1 +kerning first=258 second=187 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=274 second=81 amount=-1 +kerning first=234 second=318 amount=-1 +kerning first=203 second=114 amount=-1 +kerning first=1057 second=1046 amount=-1 +kerning first=277 second=46 amount=-1 +kerning first=221 second=242 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=328 second=101 amount=-1 +kerning first=366 second=273 amount=-1 +kerning first=356 second=269 amount=-1 +kerning first=8250 second=80 amount=-1 +kerning first=330 second=273 amount=-1 +kerning first=116 second=228 amount=-1 +kerning first=80 second=81 amount=-1 +kerning first=364 second=101 amount=-1 +kerning first=72 second=227 amount=-1 +kerning first=221 second=81 amount=-1 +kerning first=202 second=363 amount=-1 +kerning first=71 second=73 amount=-1 +kerning first=363 second=111 amount=-1 +kerning first=207 second=331 amount=-1 +kerning first=272 second=44 amount=-1 +kerning first=323 second=78 amount=-1 +kerning first=8250 second=205 amount=-1 +kerning first=74 second=78 amount=-1 +kerning first=116 second=287 amount=-1 +kerning first=277 second=355 amount=-1 +kerning first=325 second=296 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=205 second=355 amount=-1 +kerning first=282 second=282 amount=-1 +kerning first=344 second=44 amount=-1 +kerning first=1068 second=1024 amount=-1 +kerning first=210 second=282 amount=-1 +kerning first=257 second=287 amount=-1 +kerning first=196 second=288 amount=-1 +kerning first=217 second=346 amount=-1 +kerning first=69 second=282 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=304 second=288 amount=-1 +kerning first=365 second=287 amount=-1 +kerning first=268 second=288 amount=-1 +kerning first=262 second=83 amount=-1 +kerning first=106 second=337 amount=-1 +kerning first=298 second=83 amount=-1 +kerning first=219 second=230 amount=-1 +kerning first=324 second=291 amount=-1 +kerning first=327 second=230 amount=-1 +kerning first=199 second=352 amount=-1 +kerning first=370 second=83 amount=-1 +kerning first=271 second=277 amount=-1 +kerning first=252 second=291 amount=-1 +kerning first=78 second=230 amount=-1 +kerning first=370 second=243 amount=-1 +kerning first=282 second=274 amount=-1 +kerning first=325 second=346 amount=-1 +kerning first=111 second=291 amount=-1 +kerning first=114 second=230 amount=-1 +kerning first=192 second=303 amount=-1 +kerning first=1053 second=1034 amount=-1 +kerning first=199 second=219 amount=-1 +kerning first=370 second=371 amount=-1 +kerning first=72 second=200 amount=-1 +kerning first=338 second=187 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=87 second=211 amount=-1 +kerning first=257 second=108 amount=-1 +kerning first=226 second=279 amount=-1 +kerning first=314 second=291 amount=-1 +kerning first=220 second=74 amount=-1 +kerning first=1077 second=1091 amount=-1 +kerning first=240 second=8218 amount=-1 +kerning first=262 second=279 amount=-1 +kerning first=86 second=269 amount=-1 +kerning first=70 second=316 amount=-1 +kerning first=370 second=279 amount=-1 +kerning first=364 second=74 amount=-1 +kerning first=290 second=323 amount=-1 +kerning first=327 second=209 amount=-1 +kerning first=89 second=187 amount=-1 +kerning first=85 second=371 amount=-1 +kerning first=227 second=269 amount=-1 +kerning first=263 second=269 amount=-1 +kerning first=100 second=382 amount=-1 +kerning first=74 second=99 amount=-1 +kerning first=344 second=71 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=192 second=255 amount=-1 +kerning first=205 second=382 amount=-1 +kerning first=192 second=211 amount=-1 +kerning first=323 second=99 amount=-1 +kerning first=283 second=316 amount=-1 +kerning first=221 second=250 amount=-1 +kerning first=194 second=187 amount=-1 +kerning first=277 second=382 amount=-1 +kerning first=264 second=211 amount=-1 +kerning first=213 second=200 amount=-1 +kerning first=99 second=8218 amount=-1 +kerning first=207 second=266 amount=-1 +kerning first=230 second=187 amount=-1 +kerning first=287 second=99 amount=-1 +kerning first=85 second=279 amount=-1 +kerning first=205 second=334 amount=-1 +kerning first=218 second=281 amount=-1 +kerning first=204 second=202 amount=-1 +kerning first=249 second=248 amount=-1 +kerning first=73 second=8217 amount=-1 +kerning first=375 second=8220 amount=-2 +kerning first=346 second=270 amount=-1 +kerning first=1050 second=1116 amount=-1 +kerning first=218 second=196 amount=-1 +kerning first=72 second=248 amount=-1 +kerning first=66 second=352 amount=-1 +kerning first=375 second=367 amount=-1 +kerning first=1041 second=1043 amount=-1 +kerning first=45 second=214 amount=-1 +kerning first=207 second=218 amount=-1 +kerning first=108 second=248 amount=-1 +kerning first=281 second=117 amount=-1 +kerning first=362 second=196 amount=-1 +kerning first=267 second=367 amount=-1 +kerning first=90 second=8220 amount=-1 +kerning first=231 second=367 amount=-1 +kerning first=1047 second=1052 amount=-1 +kerning first=368 second=205 amount=-1 +kerning first=339 second=367 amount=-1 +kerning first=219 second=209 amount=-1 +kerning first=211 second=364 amount=-1 +kerning first=75 second=264 amount=-1 +kerning first=274 second=270 amount=-1 +kerning first=73 second=380 amount=-1 +kerning first=267 second=8220 amount=-2 +kerning first=231 second=8220 amount=-2 +kerning first=1069 second=1084 amount=-1 +kerning first=202 second=270 amount=-1 +kerning first=339 second=8220 amount=-2 +kerning first=1048 second=1097 amount=-1 +kerning first=199 second=325 amount=-1 +kerning first=84 second=277 amount=-1 +kerning first=344 second=8217 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=323 second=284 amount=-1 +kerning first=246 second=108 amount=-1 +kerning first=380 second=8217 amount=-1 +kerning first=1069 second=1047 amount=-1 +kerning first=194 second=262 amount=-1 +kerning first=362 second=82 amount=-1 +kerning first=1064 second=1034 amount=-1 +kerning first=194 second=290 amount=-1 +kerning first=187 second=217 amount=-1 +kerning first=261 second=277 amount=-1 +kerning first=105 second=242 amount=-1 +kerning first=362 second=202 amount=-1 +kerning first=225 second=277 amount=-1 +kerning first=266 second=290 amount=-1 +kerning first=197 second=338 amount=-1 +kerning first=302 second=290 amount=-1 +kerning first=269 second=251 amount=-1 +kerning first=338 second=290 amount=-1 +kerning first=76 second=8221 amount=-1 +kerning first=258 second=316 amount=-1 +kerning first=84 second=8250 amount=-1 +kerning first=78 second=355 amount=-1 +kerning first=217 second=8221 amount=-1 +kerning first=212 second=193 amount=-1 +kerning first=230 second=311 amount=-1 +kerning first=209 second=242 amount=-1 +kerning first=253 second=8221 amount=-2 +kerning first=240 second=99 amount=-1 +kerning first=289 second=8221 amount=-2 +kerning first=77 second=82 amount=-1 +kerning first=99 second=99 amount=-1 +kerning first=325 second=8221 amount=-1 +kerning first=218 second=82 amount=-1 +kerning first=1052 second=1043 amount=-1 +kerning first=1039 second=1056 amount=-1 +kerning first=67 second=333 amount=-1 +kerning first=201 second=78 amount=-1 +kerning first=281 second=242 amount=-1 +kerning first=72 second=286 amount=-1 +kerning first=345 second=171 amount=-1 +kerning first=1047 second=1030 amount=-1 +kerning first=327 second=355 amount=-1 +kerning first=304 second=282 amount=-1 +kerning first=69 second=325 amount=-1 +kerning first=103 second=333 amount=-1 +kerning first=198 second=117 amount=-1 +kerning first=219 second=355 amount=-1 +kerning first=314 second=114 amount=-1 +kerning first=210 second=325 amount=-1 +kerning first=356 second=100 amount=-1 +kerning first=8217 second=199 amount=-1 +kerning first=282 second=325 amount=-1 +kerning first=193 second=104 amount=-1 +kerning first=275 second=233 amount=-1 +kerning first=201 second=171 amount=-1 +kerning first=1053 second=1039 amount=-1 +kerning first=1064 second=1043 amount=-1 +kerning first=78 second=382 amount=-1 +kerning first=212 second=220 amount=-1 +kerning first=1064 second=1104 amount=-1 +kerning first=199 second=330 amount=-1 +kerning first=364 second=194 amount=-1 +kerning first=365 second=103 amount=-1 +kerning first=284 second=220 amount=-1 +kerning first=219 second=382 amount=-1 +kerning first=71 second=220 amount=-1 +kerning first=255 second=382 amount=-1 +kerning first=316 second=246 amount=-1 +kerning first=66 second=120 amount=-1 +kerning first=257 second=103 amount=-1 +kerning first=207 second=304 amount=-1 +kerning first=220 second=194 amount=-1 +kerning first=221 second=103 amount=-1 +kerning first=327 second=382 amount=-1 +kerning first=74 second=224 amount=-1 +kerning first=65 second=211 amount=-1 +kerning first=116 second=103 amount=-1 +kerning first=1050 second=1057 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=8217 second=99 amount=-1 +kerning first=1041 second=1048 amount=-1 +kerning first=66 second=304 amount=-1 +kerning first=67 second=246 amount=-1 +kerning first=79 second=194 amount=-1 +kerning first=287 second=365 amount=-1 +kerning first=316 second=333 amount=-1 +kerning first=8249 second=366 amount=-1 +kerning first=8222 second=369 amount=-1 +kerning first=313 second=219 amount=-1 +kerning first=1052 second=1113 amount=-1 +kerning first=99 second=333 amount=-1 +kerning first=1088 second=1113 amount=-1 +kerning first=74 second=365 amount=-1 +kerning first=67 second=120 amount=-1 +kerning first=334 second=8218 amount=-1 +kerning first=80 second=70 amount=-1 +kerning first=75 second=307 amount=-1 +kerning first=213 second=313 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=221 second=347 amount=-1 +kerning first=245 second=8220 amount=-2 +kerning first=314 second=281 amount=-1 +kerning first=231 second=243 amount=-1 +kerning first=286 second=315 amount=-1 +kerning first=100 second=339 amount=-1 +kerning first=116 second=347 amount=-1 +kerning first=121 second=8218 amount=-1 +kerning first=317 second=8220 amount=-1 +kerning first=219 second=111 amount=-1 +kerning first=206 second=211 amount=-1 +kerning first=85 second=8218 amount=-2 +kerning first=281 second=8220 amount=-2 +kerning first=72 second=313 amount=-1 +kerning first=291 second=111 amount=-1 +kerning first=278 second=211 amount=-1 +kerning first=80 second=347 amount=-1 +kerning first=353 second=8220 amount=-2 +kerning first=327 second=111 amount=-1 +kerning first=217 second=257 amount=-1 +kerning first=218 second=202 amount=-1 +kerning first=243 second=120 amount=-1 +kerning first=1027 second=1090 amount=-1 +kerning first=279 second=120 amount=-1 +kerning first=74 second=113 amount=-1 +kerning first=290 second=202 amount=-1 +kerning first=8250 second=72 amount=-1 +kerning first=310 second=264 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=241 second=339 amount=-1 +kerning first=193 second=254 amount=-1 +kerning first=101 second=281 amount=-1 +kerning first=214 second=315 amount=-1 +kerning first=205 second=339 amount=-1 +kerning first=68 second=8220 amount=-2 +kerning first=73 second=315 amount=-1 +kerning first=202 second=264 amount=-1 +kerning first=206 second=281 amount=-1 +kerning first=77 second=202 amount=-1 +kerning first=277 second=339 amount=-1 +kerning first=231 second=232 amount=-1 +kerning first=87 second=271 amount=-1 +kerning first=262 second=219 amount=-1 +kerning first=351 second=8249 amount=-1 +kerning first=192 second=368 amount=-1 +kerning first=1055 second=1118 amount=-1 +kerning first=74 second=284 amount=-1 +kerning first=282 second=338 amount=-1 +kerning first=78 second=225 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=264 second=271 amount=-1 +kerning first=1091 second=1118 amount=-1 +kerning first=235 second=357 amount=-1 +kerning first=85 second=219 amount=-1 +kerning first=114 second=225 amount=-1 +kerning first=1043 second=1040 amount=-1 +kerning first=267 second=232 amount=-1 +kerning first=219 second=225 amount=-1 +kerning first=1055 second=1031 amount=-1 +kerning first=1060 second=1044 amount=-1 +kerning first=261 second=234 amount=-1 +kerning first=66 second=8249 amount=-1 +kerning first=225 second=234 amount=-1 +kerning first=268 second=98 amount=-1 +kerning first=212 second=344 amount=-1 +kerning first=339 second=314 amount=-1 +kerning first=102 second=8249 amount=-1 +kerning first=264 second=368 amount=-1 +kerning first=284 second=344 amount=-1 +kerning first=316 second=243 amount=-1 +kerning first=323 second=332 amount=-1 +kerning first=369 second=234 amount=-1 +kerning first=1039 second=1099 amount=-1 +kerning first=346 second=80 amount=-1 +kerning first=266 second=46 amount=-1 +kerning first=104 second=275 amount=-1 +kerning first=356 second=229 amount=-1 +kerning first=274 second=80 amount=-1 +kerning first=362 second=353 amount=-1 +kerning first=195 second=216 amount=-1 +kerning first=270 second=197 amount=-1 +kerning first=1034 second=1055 amount=-1 +kerning first=209 second=275 amount=-1 +kerning first=1077 second=1097 amount=-1 +kerning first=97 second=378 amount=-1 +kerning first=187 second=366 amount=-1 +kerning first=87 second=195 amount=-1 +kerning first=374 second=46 amount=-1 +kerning first=71 second=344 amount=-1 +kerning first=198 second=280 amount=-1 +kerning first=82 second=366 amount=-1 +kerning first=1058 second=1114 amount=-1 +kerning first=197 second=67 amount=-1 +kerning first=270 second=280 amount=-1 +kerning first=327 second=225 amount=-1 +kerning first=1064 second=1077 amount=-1 +kerning first=77 second=353 amount=-1 +kerning first=199 second=357 amount=-1 +kerning first=202 second=80 amount=-1 +kerning first=203 second=363 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=275 second=363 amount=-1 +kerning first=194 second=46 amount=-1 +kerning first=218 second=353 amount=-1 +kerning first=330 second=213 amount=-1 +kerning first=66 second=8222 amount=-1 +kerning first=266 second=317 amount=-1 +kerning first=193 second=375 amount=-1 +kerning first=370 second=116 amount=-1 +kerning first=69 second=217 amount=-1 +kerning first=302 second=317 amount=-1 +kerning first=85 second=192 amount=-1 +kerning first=327 second=201 amount=-1 +kerning first=338 second=317 amount=-1 +kerning first=197 second=311 amount=-1 +kerning first=298 second=116 amount=-1 +kerning first=267 second=259 amount=-1 +kerning first=233 second=311 amount=-1 +kerning first=1051 second=1117 amount=-1 +kerning first=1028 second=1046 amount=-1 +kerning first=217 second=70 amount=-1 +kerning first=1105 second=1117 amount=-1 +kerning first=232 second=369 amount=-1 +kerning first=368 second=362 amount=-1 +kerning first=1034 second=1059 amount=-2 +kerning first=304 second=201 amount=-1 +kerning first=223 second=122 amount=-1 +kerning first=366 second=213 amount=-1 +kerning first=325 second=70 amount=-1 +kerning first=259 second=122 amount=-1 +kerning first=282 second=66 amount=-1 +kerning first=85 second=116 amount=-1 +kerning first=325 second=113 amount=-1 +kerning first=351 second=8222 amount=-1 +kerning first=268 second=201 amount=-1 +kerning first=217 second=113 amount=-1 +kerning first=235 second=99 amount=-1 +kerning first=279 second=8222 amount=-1 +kerning first=77 second=246 amount=-1 +kerning first=262 second=116 amount=-1 +kerning first=243 second=8222 amount=-1 +kerning first=231 second=259 amount=-1 +kerning first=288 second=204 amount=-1 +kerning first=192 second=89 amount=-1 +kerning first=354 second=244 amount=-1 +kerning first=1086 second=1078 amount=-1 +kerning first=102 second=8222 amount=-1 +kerning first=364 second=210 amount=-1 +kerning first=219 second=268 amount=-1 +kerning first=1054 second=1062 amount=-1 +kerning first=1069 second=1048 amount=-1 +kerning first=1027 second=1108 amount=-1 +kerning first=272 second=256 amount=-1 +kerning first=1059 second=1102 amount=-1 +kerning first=232 second=98 amount=-1 +kerning first=204 second=332 amount=-1 +kerning first=220 second=210 amount=-1 +kerning first=196 second=98 amount=-1 +kerning first=8217 second=85 amount=-1 +kerning first=327 second=268 amount=-1 +kerning first=1049 second=1025 amount=-1 +kerning first=209 second=302 amount=-1 +kerning first=68 second=302 amount=-1 +kerning first=104 second=8217 amount=-2 +kerning first=118 second=122 amount=-1 +kerning first=369 second=277 amount=-1 +kerning first=187 second=122 amount=-1 +kerning first=296 second=335 amount=-1 +kerning first=1038 second=1087 amount=-1 +kerning first=212 second=73 amount=-1 +kerning first=70 second=257 amount=-1 +kerning first=287 second=231 amount=-1 +kerning first=368 second=335 amount=-1 +kerning first=1030 second=1053 amount=-1 +kerning first=78 second=268 amount=-1 +kerning first=370 second=219 amount=-1 +kerning first=284 second=73 amount=-1 +kerning first=1066 second=1053 amount=-1 +kerning first=255 second=122 amount=-1 +kerning first=298 second=219 amount=-1 +kerning first=45 second=213 amount=-1 +kerning first=334 second=219 amount=-1 +kerning first=291 second=187 amount=-1 +kerning first=198 second=323 amount=-1 +kerning first=327 second=187 amount=-1 +kerning first=203 second=336 amount=-1 +kerning first=80 second=244 amount=-1 +kerning first=219 second=187 amount=-2 +kerning first=70 second=213 amount=-1 +kerning first=116 second=244 amount=-1 +kerning first=302 second=325 amount=-1 +kerning first=311 second=46 amount=-1 +kerning first=8218 second=368 amount=-1 +kerning first=304 second=266 amount=-1 +kerning first=370 second=114 amount=-1 +kerning first=221 second=244 amount=-1 +kerning first=195 second=362 amount=-1 +kerning first=257 second=244 amount=-1 +kerning first=1071 second=1096 amount=-1 +kerning first=218 second=283 amount=-1 +kerning first=1049 second=1071 amount=-1 +kerning first=201 second=371 amount=-1 +kerning first=365 second=244 amount=-1 +kerning first=8216 second=219 amount=-1 +kerning first=350 second=75 amount=-1 +kerning first=74 second=327 amount=-1 +kerning first=196 second=266 amount=-1 +kerning first=278 second=75 amount=-1 +kerning first=114 second=187 amount=-1 +kerning first=206 second=75 amount=-1 +kerning first=368 second=200 amount=-1 +kerning first=220 second=101 amount=-1 +kerning first=78 second=187 amount=-1 +kerning first=74 second=235 amount=-1 +kerning first=296 second=200 amount=-1 +kerning first=97 second=248 amount=-1 +kerning first=323 second=327 amount=-1 +kerning first=302 second=313 amount=-1 +kerning first=323 second=262 amount=-1 +kerning first=200 second=66 amount=-1 +kerning first=333 second=380 amount=-1 +kerning first=1051 second=1036 amount=-1 +kerning first=246 second=314 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=362 second=283 amount=-1 +kerning first=207 second=261 amount=-1 +kerning first=362 second=218 amount=-1 +kerning first=82 second=79 amount=-1 +kerning first=269 second=110 amount=-1 +kerning first=364 second=367 amount=-1 +kerning first=326 second=283 amount=-1 +kerning first=374 second=371 amount=-1 +kerning first=290 second=218 amount=-1 +kerning first=187 second=79 amount=-1 +kerning first=1064 second=1091 amount=-1 +kerning first=338 second=274 amount=-1 +kerning first=370 second=192 amount=-1 +kerning first=298 second=257 amount=-1 +kerning first=99 second=305 amount=-1 +kerning first=262 second=257 amount=-1 +kerning first=266 second=274 amount=-1 +kerning first=220 second=367 amount=-1 +kerning first=370 second=257 amount=-1 +kerning first=338 second=209 amount=-1 +kerning first=302 second=274 amount=-1 +kerning first=213 second=270 amount=-1 +kerning first=245 second=318 amount=-1 +kerning first=334 second=192 amount=-1 +kerning first=302 second=209 amount=-1 +kerning first=1056 second=1050 amount=-1 +kerning first=281 second=318 amount=-1 +kerning first=249 second=8217 amount=-1 +kerning first=225 second=380 amount=-1 +kerning first=85 second=257 amount=-1 +kerning first=353 second=318 amount=-1 +kerning first=272 second=66 amount=-1 +kerning first=261 second=380 amount=-1 +kerning first=268 second=44 amount=-1 +kerning first=219 second=252 amount=-1 +kerning first=77 second=310 amount=-1 +kerning first=109 second=114 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=196 second=8249 amount=-1 +kerning first=73 second=114 amount=-1 +kerning first=85 second=284 amount=-1 +kerning first=283 second=115 amount=-1 +kerning first=291 second=252 amount=-1 +kerning first=201 second=211 amount=-1 +kerning first=209 second=101 amount=-1 +kerning first=268 second=8249 amount=-1 +kerning first=1039 second=1072 amount=-1 +kerning first=355 second=115 amount=-1 +kerning first=73 second=109 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=281 second=101 amount=-1 +kerning first=8216 second=192 amount=-2 +kerning first=72 second=335 amount=-1 +kerning first=1067 second=1098 amount=-1 +kerning first=1031 second=1098 amount=-1 +kerning first=80 second=217 amount=-1 +kerning first=211 second=115 amount=-1 +kerning first=288 second=296 amount=-1 +kerning first=197 second=354 amount=-1 +kerning first=201 second=214 amount=-1 +kerning first=362 second=310 amount=-1 +kerning first=277 second=231 amount=-1 +kerning first=45 second=89 amount=-2 +kerning first=201 second=344 amount=-1 +kerning first=100 second=337 amount=-1 +kerning first=218 second=310 amount=-1 +kerning first=100 second=231 amount=-1 +kerning first=205 second=231 amount=-1 +kerning first=262 second=99 amount=-1 +kerning first=110 second=235 amount=-1 +kerning first=71 second=317 amount=-1 +kerning first=279 second=353 amount=-1 +kerning first=364 second=275 amount=-1 +kerning first=328 second=275 amount=-1 +kerning first=104 second=345 amount=-1 +kerning first=310 second=362 amount=-1 +kerning first=287 second=235 amount=-1 +kerning first=246 second=287 amount=-1 +kerning first=277 second=106 amount=-1 +kerning first=209 second=345 amount=-1 +kerning first=84 second=234 amount=-1 +kerning first=220 second=275 amount=-1 +kerning first=245 second=345 amount=-1 +kerning first=74 second=83 amount=-1 +kerning first=235 second=249 amount=-1 +kerning first=281 second=345 amount=-1 +kerning first=8222 second=380 amount=-1 +kerning first=352 second=296 amount=-1 +kerning first=325 second=97 amount=-1 +kerning first=72 second=80 amount=-1 +kerning first=1036 second=1095 amount=-1 +kerning first=86 second=226 amount=-1 +kerning first=72 second=243 amount=-1 +kerning first=1041 second=1044 amount=-1 +kerning first=258 second=45 amount=-1 +kerning first=207 second=223 amount=-1 +kerning first=298 second=284 amount=-1 +kerning first=323 second=83 amount=-1 +kerning first=81 second=278 amount=-1 +kerning first=366 second=45 amount=-2 +kerning first=370 second=284 amount=-1 +kerning first=289 second=335 amount=-1 +kerning first=66 second=353 amount=-1 +kerning first=263 second=226 amount=-1 +kerning first=296 second=368 amount=-1 +kerning first=213 second=80 amount=-1 +kerning first=66 second=223 amount=-1 +kerning first=227 second=291 amount=-1 +kerning first=68 second=221 amount=-1 +kerning first=1049 second=1081 amount=-1 +kerning first=187 second=253 amount=-1 +kerning first=73 second=212 amount=-1 +kerning first=77 second=245 amount=-1 +kerning first=268 second=304 amount=-1 +kerning first=325 second=380 amount=-1 +kerning first=1054 second=1046 amount=-1 +kerning first=231 second=324 amount=-1 +kerning first=304 second=304 amount=-1 +kerning first=267 second=324 amount=-1 +kerning first=218 second=120 amount=-1 +kerning first=209 second=74 amount=-1 +kerning first=8218 second=212 amount=-1 +kerning first=366 second=278 amount=-1 +kerning first=330 second=278 amount=-1 +kerning first=346 second=313 amount=-1 +kerning first=212 second=72 amount=-1 +kerning first=1042 second=1056 amount=-1 +kerning first=362 second=245 amount=-1 +kerning first=100 second=45 amount=-1 +kerning first=198 second=361 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=326 second=245 amount=-1 +kerning first=323 second=8218 amount=-1 +kerning first=202 second=313 amount=-1 +kerning first=1118 second=1088 amount=-1 +kerning first=338 second=338 amount=-1 +kerning first=287 second=8218 amount=-1 +kerning first=8222 second=266 amount=-1 +kerning first=274 second=313 amount=-1 +kerning first=218 second=245 amount=-1 +kerning first=1048 second=1037 amount=-1 +kerning first=1027 second=1092 amount=-1 +kerning first=82 second=187 amount=-1 +kerning first=89 second=192 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=65 second=254 amount=-1 +kerning first=230 second=111 amount=-1 +kerning first=324 second=269 amount=-1 +kerning first=1046 second=1088 amount=-1 +kerning first=280 second=203 amount=-1 +kerning first=81 second=72 amount=-1 +kerning first=101 second=254 amount=-1 +kerning first=266 second=111 amount=-1 +kerning first=195 second=118 amount=-1 +kerning first=221 second=65 amount=-1 +kerning first=103 second=105 amount=-1 +kerning first=330 second=72 amount=-1 +kerning first=352 second=304 amount=-1 +kerning first=1042 second=1055 amount=-1 +kerning first=366 second=72 amount=-1 +kerning first=87 second=260 amount=-1 +kerning first=374 second=111 amount=-1 +kerning first=362 second=120 amount=-1 +kerning first=80 second=374 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=115 second=8220 amount=-2 +kerning first=286 second=114 amount=-1 +kerning first=289 second=363 amount=-1 +kerning first=79 second=8220 amount=-2 +kerning first=1050 second=1094 amount=-1 +kerning first=250 second=114 amount=-1 +kerning first=1049 second=1073 amount=-1 +kerning first=220 second=8220 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=45 second=251 amount=-1 +kerning first=220 second=69 amount=-1 +kerning first=368 second=102 amount=-1 +kerning first=368 second=227 amount=-1 +kerning first=333 second=44 amount=-1 +kerning first=344 second=364 amount=-1 +kerning first=296 second=227 amount=-1 +kerning first=268 second=331 amount=-1 +kerning first=258 second=251 amount=-1 +kerning first=305 second=101 amount=-1 +kerning first=304 second=331 amount=-1 +kerning first=269 second=273 amount=-1 +kerning first=69 second=81 amount=-1 +kerning first=233 second=273 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=240 second=380 amount=-1 +kerning first=200 second=364 amount=-1 +kerning first=370 second=78 amount=-1 +kerning first=366 second=251 amount=-1 +kerning first=302 second=355 amount=-1 +kerning first=1048 second=1064 amount=-1 +kerning first=334 second=78 amount=-1 +kerning first=218 second=218 amount=-1 +kerning first=75 second=334 amount=-1 +kerning first=230 second=355 amount=-1 +kerning first=194 second=355 amount=-1 +kerning first=282 second=81 amount=-1 +kerning first=77 second=218 amount=-1 +kerning first=45 second=72 amount=-1 +kerning first=298 second=78 amount=-1 +kerning first=1062 second=1085 amount=-1 +kerning first=262 second=78 amount=-1 +kerning first=277 second=113 amount=-1 +kerning first=66 second=88 amount=-1 +kerning first=111 second=8250 amount=-1 +kerning first=234 second=242 amount=-1 +kerning first=207 second=288 amount=-1 +kerning first=1056 second=1076 amount=-1 +kerning first=85 second=78 amount=-1 +kerning first=279 second=234 amount=-1 +kerning first=335 second=8221 amount=-2 +kerning first=217 second=313 amount=-1 +kerning first=80 second=282 amount=-1 +kerning first=338 second=355 amount=-1 +kerning first=67 second=230 amount=-1 +kerning first=280 second=274 amount=-1 +kerning first=262 second=79 amount=-1 +kerning first=214 second=87 amount=-1 +kerning first=1036 second=1073 amount=-1 +kerning first=335 second=291 amount=-1 +kerning first=228 second=233 amount=-1 +kerning first=87 second=233 amount=-1 +kerning first=8249 second=220 amount=-1 +kerning first=263 second=291 amount=-1 +kerning first=206 second=346 amount=-1 +kerning first=8222 second=217 amount=-1 +kerning first=1042 second=1052 amount=-1 +kerning first=363 second=233 amount=-1 +kerning first=268 second=230 amount=-1 +kerning first=272 second=87 amount=-1 +kerning first=291 second=233 amount=-1 +kerning first=327 second=233 amount=-1 +kerning first=325 second=288 amount=-1 +kerning first=313 second=217 amount=-1 +kerning first=232 second=235 amount=-1 +kerning first=240 second=291 amount=-1 +kerning first=200 second=334 amount=-1 +kerning first=1068 second=1046 amount=-1 +kerning first=1086 second=1113 amount=-1 +kerning first=99 second=291 amount=-1 +kerning first=354 second=257 amount=-1 +kerning first=209 second=227 amount=-1 +kerning first=213 second=84 amount=-1 +kerning first=330 second=224 amount=-1 +kerning first=217 second=288 amount=-1 +kerning first=344 second=334 amount=-1 +kerning first=1055 second=1049 amount=-1 +kerning first=366 second=224 amount=-1 +kerning first=370 second=81 amount=-1 +kerning first=262 second=81 amount=-1 +kerning first=298 second=81 amount=-1 +kerning first=200 second=187 amount=-1 +kerning first=278 second=8221 amount=-1 +kerning first=314 second=8221 amount=-1 +kerning first=97 second=99 amount=-1 +kerning first=1038 second=1095 amount=-1 +kerning first=221 second=245 amount=-1 +kerning first=344 second=187 amount=-1 +kerning first=205 second=270 amount=-1 +kerning first=116 second=245 amount=-1 +kerning first=272 second=187 amount=-1 +kerning first=80 second=245 amount=-1 +kerning first=103 second=363 amount=-1 +kerning first=201 second=8218 amount=-1 +kerning first=302 second=352 amount=-1 +kerning first=1054 second=1070 amount=-1 +kerning first=76 second=221 amount=-1 +kerning first=97 second=279 amount=-1 +kerning first=281 second=269 amount=-1 +kerning first=1053 second=1104 amount=-1 +kerning first=304 second=230 amount=-1 +kerning first=288 second=75 amount=-1 +kerning first=302 second=331 amount=-1 +kerning first=256 second=8249 amount=-1 +kerning first=214 second=364 amount=-1 +kerning first=85 second=261 amount=-1 +kerning first=210 second=206 amount=-1 +kerning first=69 second=206 amount=-1 +kerning first=114 second=228 amount=-1 +kerning first=73 second=364 amount=-1 +kerning first=201 second=66 amount=-1 +kerning first=298 second=261 amount=-1 +kerning first=262 second=261 amount=-1 +kerning first=258 second=371 amount=-1 +kerning first=253 second=108 amount=-1 +kerning first=205 second=257 amount=-1 +kerning first=370 second=261 amount=-1 +kerning first=81 second=217 amount=-1 +kerning first=72 second=264 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=368 second=69 amount=-1 +kerning first=282 second=206 amount=-1 +kerning first=302 second=366 amount=-1 +kerning first=1065 second=1119 amount=-1 +kerning first=291 second=380 amount=-1 +kerning first=1030 second=1034 amount=-1 +kerning first=284 second=205 amount=-1 +kerning first=255 second=380 amount=-1 +kerning first=77 second=200 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=289 second=108 amount=-1 +kerning first=212 second=205 amount=-1 +kerning first=327 second=380 amount=-1 +kerning first=65 second=303 amount=-1 +kerning first=364 second=266 amount=-1 +kerning first=264 second=273 amount=-1 +kerning first=199 second=368 amount=-1 +kerning first=286 second=364 amount=-1 +kerning first=193 second=370 amount=-1 +kerning first=252 second=8217 amount=-1 +kerning first=1066 second=1034 amount=-1 +kerning first=8217 second=114 amount=-1 +kerning first=203 second=8218 amount=-1 +kerning first=253 second=318 amount=-1 +kerning first=72 second=8249 amount=-1 +kerning first=1036 second=1063 amount=-1 +kerning first=108 second=8249 amount=-1 +kerning first=284 second=8221 amount=-1 +kerning first=99 second=44 amount=-1 +kerning first=1041 second=1116 amount=-1 +kerning first=235 second=355 amount=-1 +kerning first=71 second=205 amount=-1 +kerning first=203 second=78 amount=-1 +kerning first=249 second=8249 amount=-1 +kerning first=199 second=355 amount=-1 +kerning first=78 second=380 amount=-1 +kerning first=80 second=325 amount=-1 +kerning first=219 second=380 amount=-1 +kerning first=8250 second=370 amount=-1 +kerning first=70 second=310 amount=-1 +kerning first=1077 second=1103 amount=-1 +kerning first=1062 second=1077 amount=-1 +kerning first=316 second=248 amount=-1 +kerning first=1060 second=1039 amount=-1 +kerning first=338 second=218 amount=-1 +kerning first=344 second=87 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=67 second=248 amount=-1 +kerning first=266 second=218 amount=-1 +kerning first=202 second=76 amount=-1 +kerning first=209 second=214 amount=-1 +kerning first=194 second=218 amount=-1 +kerning first=103 second=248 amount=-1 +kerning first=1069 second=1039 amount=-1 +kerning first=77 second=347 amount=-1 +kerning first=74 second=330 amount=-1 +kerning first=205 second=77 amount=-1 +kerning first=201 second=220 amount=-1 +kerning first=1050 second=1059 amount=-1 +kerning first=255 second=107 amount=-1 +kerning first=1071 second=1117 amount=-1 +kerning first=85 second=382 amount=-1 +kerning first=374 second=339 amount=-1 +kerning first=121 second=382 amount=-1 +kerning first=367 second=103 amount=-1 +kerning first=226 second=382 amount=-1 +kerning first=108 second=171 amount=-1 +kerning first=269 second=289 amount=-1 +kerning first=1076 second=1094 amount=-1 +kerning first=233 second=289 amount=-1 +kerning first=259 second=103 amount=-1 +kerning first=8222 second=230 amount=-1 +kerning first=288 second=8218 amount=-1 +kerning first=223 second=103 amount=-1 +kerning first=249 second=171 amount=-1 +kerning first=86 second=242 amount=-1 +kerning first=281 second=281 amount=-1 +kerning first=1053 second=1091 amount=-1 +kerning first=330 second=304 amount=-1 +kerning first=97 second=333 amount=-1 +kerning first=366 second=304 amount=-1 +kerning first=258 second=211 amount=-1 +kerning first=1053 second=1051 amount=-1 +kerning first=221 second=338 amount=-1 +kerning first=240 second=187 amount=-1 +kerning first=1048 second=1068 amount=-1 +kerning first=1053 second=1050 amount=-1 +kerning first=330 second=211 amount=-1 +kerning first=211 second=85 amount=-1 +kerning first=1036 second=1057 amount=-1 +kerning first=204 second=242 amount=-1 +kerning first=80 second=114 amount=-1 +kerning first=1060 second=1031 amount=-1 +kerning first=80 second=338 amount=-1 +kerning first=70 second=85 amount=-1 +kerning first=370 second=203 amount=-1 +kerning first=81 second=304 amount=-1 +kerning first=266 second=339 amount=-1 +kerning first=262 second=382 amount=-1 +kerning first=71 second=298 amount=-1 +kerning first=77 second=241 amount=-1 +kerning first=230 second=339 amount=-1 +kerning first=298 second=382 amount=-1 +kerning first=302 second=339 amount=-1 +kerning first=362 second=347 amount=-1 +kerning first=1051 second=1025 amount=-1 +kerning first=70 second=332 amount=-1 +kerning first=65 second=290 amount=-1 +kerning first=89 second=339 amount=-1 +kerning first=366 second=211 amount=-1 +kerning first=212 second=298 amount=-1 +kerning first=201 second=313 amount=-1 +kerning first=206 second=290 amount=-1 +kerning first=110 second=287 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=204 second=333 amount=-1 +kerning first=218 second=347 amount=-1 +kerning first=83 second=364 amount=-1 +kerning first=284 second=298 amount=-1 +kerning first=1043 second=1085 amount=-1 +kerning first=221 second=271 amount=-1 +kerning first=240 second=111 amount=-1 +kerning first=278 second=357 amount=-1 +kerning first=317 second=374 amount=-1 +kerning first=283 second=8250 amount=-1 +kerning first=8222 second=243 amount=-1 +kerning first=304 second=76 amount=-1 +kerning first=1118 second=1094 amount=-1 +kerning first=211 second=8250 amount=-1 +kerning first=85 second=214 amount=-1 +kerning first=101 second=357 amount=-1 +kerning first=264 second=219 amount=-1 +kerning first=268 second=76 amount=-1 +kerning first=106 second=8250 amount=-1 +kerning first=65 second=357 amount=-1 +kerning first=364 second=212 amount=-1 +kerning first=206 second=357 amount=-1 +kerning first=68 second=374 amount=-1 +kerning first=1044 second=1118 amount=-1 +kerning first=192 second=219 amount=-1 +kerning first=208 second=8222 amount=-1 +kerning first=364 second=82 amount=-1 +kerning first=330 second=317 amount=-1 +kerning first=262 second=315 amount=-1 +kerning first=304 second=323 amount=-1 +kerning first=105 second=119 amount=-1 +kerning first=220 second=212 amount=-1 +kerning first=268 second=323 amount=-1 +kerning first=1048 second=1075 amount=-1 +kerning first=86 second=263 amount=-1 +kerning first=365 second=8217 amount=-1 +kerning first=370 second=315 amount=-1 +kerning first=80 second=8217 amount=-1 +kerning first=8250 second=69 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=116 second=8217 amount=-1 +kerning first=296 second=262 amount=-1 +kerning first=298 second=315 amount=-1 +kerning first=302 second=261 amount=-1 +kerning first=334 second=315 amount=-1 +kerning first=221 second=8217 amount=-1 +kerning first=199 second=314 amount=-1 +kerning first=203 second=366 amount=-1 +kerning first=286 second=204 amount=-1 +kerning first=338 second=365 amount=-1 +kerning first=374 second=365 amount=-1 +kerning first=214 second=204 amount=-1 +kerning first=233 second=263 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=269 second=263 amount=-1 +kerning first=200 second=280 amount=-1 +kerning first=1051 second=1092 amount=-1 +kerning first=8218 second=273 amount=-1 +kerning first=305 second=263 amount=-1 +kerning first=194 second=365 amount=-1 +kerning first=70 second=254 amount=-1 +kerning first=272 second=280 amount=-1 +kerning first=235 second=314 amount=-1 +kerning first=230 second=365 amount=-1 +kerning first=1031 second=1067 amount=-1 +kerning first=89 second=365 amount=-1 +kerning first=231 second=110 amount=-1 +kerning first=8249 second=350 amount=-1 +kerning first=1048 second=1101 amount=-1 +kerning first=8222 second=104 amount=-1 +kerning first=199 second=67 amount=-1 +kerning first=1071 second=1024 amount=-1 +kerning first=267 second=110 amount=-1 +kerning first=352 second=68 amount=-1 +kerning first=205 second=203 amount=-1 +kerning first=80 second=271 amount=-1 +kerning first=217 second=195 amount=-1 +kerning first=69 second=67 amount=-1 +kerning first=100 second=378 amount=-1 +kerning first=258 second=250 amount=-1 +kerning first=195 second=357 amount=-1 +kerning first=264 second=274 amount=-1 +kerning first=277 second=378 amount=-1 +kerning first=272 second=46 amount=-1 +kerning first=234 second=101 amount=-1 +kerning first=205 second=378 amount=-1 +kerning first=366 second=250 amount=-1 +kerning first=69 second=8217 amount=-1 +kerning first=199 second=262 amount=-1 +kerning first=1068 second=1067 amount=-1 +kerning first=207 second=76 amount=-1 +kerning first=105 second=8217 amount=-1 +kerning first=255 second=8221 amount=-2 +kerning first=334 second=354 amount=-1 +kerning first=217 second=261 amount=-1 +kerning first=334 second=209 amount=-1 +kerning first=75 second=216 amount=-1 +kerning first=89 second=267 amount=-1 +kerning first=8222 second=257 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=339 second=357 amount=-1 +kerning first=88 second=345 amount=-1 +kerning first=211 second=280 amount=-1 +kerning first=203 second=204 amount=-1 +kerning first=77 second=113 amount=-1 +kerning first=366 second=317 amount=-1 +kerning first=193 second=345 amount=-1 +kerning first=229 second=345 amount=-1 +kerning first=1070 second=1084 amount=-1 +kerning first=345 second=259 amount=-1 +kerning first=354 second=187 amount=-1 +kerning first=203 second=270 amount=-1 +kerning first=103 second=287 amount=-1 +kerning first=1033 second=1038 amount=-2 +kerning first=337 second=345 amount=-1 +kerning first=1086 second=1083 amount=-1 +kerning first=370 second=369 amount=-1 +kerning first=8217 second=240 amount=-1 +kerning first=362 second=113 amount=-1 +kerning first=201 second=207 amount=-1 +kerning first=316 second=287 amount=-1 +kerning first=370 second=100 amount=-1 +kerning first=45 second=317 amount=-1 +kerning first=1047 second=1096 amount=-1 +kerning first=264 second=366 amount=-1 +kerning first=81 second=317 amount=-1 +kerning first=244 second=287 amount=-1 +kerning first=73 second=336 amount=-1 +kerning first=326 second=113 amount=-1 +kerning first=192 second=366 amount=-1 +kerning first=218 second=113 amount=-1 +kerning first=232 second=271 amount=-1 +kerning first=121 second=369 amount=-1 +kerning first=72 second=210 amount=-1 +kerning first=75 second=116 amount=-1 +kerning first=85 second=369 amount=-1 +kerning first=304 second=271 amount=-1 +kerning first=355 second=8250 amount=-1 +kerning first=268 second=271 amount=-1 +kerning first=67 second=8220 amount=-1 +kerning first=202 second=371 amount=-1 +kerning first=70 second=278 amount=-1 +kerning first=209 second=73 amount=-1 +kerning first=330 second=83 amount=-1 +kerning first=366 second=83 amount=-1 +kerning first=103 second=8220 amount=-2 +kerning first=8218 second=221 amount=-2 +kerning first=259 second=244 amount=-1 +kerning first=218 second=213 amount=-1 +kerning first=317 second=86 amount=-1 +kerning first=198 second=268 amount=-1 +kerning first=97 second=289 amount=-1 +kerning first=296 second=97 amount=-1 +kerning first=73 second=351 amount=-1 +kerning first=211 second=278 amount=-1 +kerning first=316 second=8220 amount=-1 +kerning first=367 second=244 amount=-1 +kerning first=368 second=97 amount=-1 +kerning first=77 second=213 amount=-1 +kerning first=1044 second=1090 amount=-1 +kerning first=302 second=77 amount=-1 +kerning first=1059 second=1099 amount=-1 +kerning first=338 second=77 amount=-1 +kerning first=368 second=82 amount=-1 +kerning first=108 second=277 amount=-1 +kerning first=1059 second=1060 amount=-1 +kerning first=207 second=74 amount=-1 +kerning first=266 second=77 amount=-1 +kerning first=72 second=277 amount=-1 +kerning first=67 second=235 amount=-1 +kerning first=68 second=88 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=103 second=235 amount=-1 +kerning first=8218 second=219 amount=-1 +kerning first=74 second=251 amount=-1 +kerning first=249 second=277 amount=-1 +kerning first=8218 second=234 amount=-1 +kerning first=1047 second=1081 amount=-1 +kerning first=268 second=269 amount=-1 +kerning first=195 second=290 amount=-1 +kerning first=304 second=269 amount=-1 +kerning first=304 second=338 amount=-1 +kerning first=232 second=269 amount=-1 +kerning first=234 second=283 amount=-1 +kerning first=266 second=231 amount=-1 +kerning first=282 second=286 amount=-1 +kerning first=1048 second=1117 amount=-1 +kerning first=268 second=338 amount=-1 +kerning first=302 second=231 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=72 second=171 amount=-1 +kerning first=296 second=82 amount=-1 +kerning first=196 second=338 amount=-1 +kerning first=374 second=231 amount=-1 +kerning first=69 second=286 amount=-1 +kerning first=201 second=274 amount=-1 +kerning first=352 second=8220 amount=-1 +kerning first=214 second=351 amount=-1 +kerning first=198 second=203 amount=-1 +kerning first=68 second=86 amount=-1 +kerning first=1050 second=1074 amount=-1 +kerning first=277 second=363 amount=-1 +kerning first=212 second=194 amount=-1 +kerning first=263 second=240 amount=-1 +kerning first=264 second=108 amount=-1 +kerning first=8216 second=347 amount=-1 +kerning first=354 second=353 amount=-1 +kerning first=264 second=80 amount=-1 +kerning first=1027 second=1097 amount=-1 +kerning first=382 second=45 amount=-1 +kerning first=324 second=114 amount=-1 +kerning first=1068 second=1025 amount=-1 +kerning first=366 second=8222 amount=-2 +kerning first=288 second=114 amount=-1 +kerning first=217 second=219 amount=-1 +kerning first=284 second=66 amount=-1 +kerning first=45 second=196 amount=-1 +kerning first=85 second=367 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=196 second=217 amount=-1 +kerning first=212 second=66 amount=-1 +kerning first=222 second=8222 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=268 second=217 amount=-1 +kerning first=268 second=284 amount=-1 +kerning first=89 second=231 amount=-1 +kerning first=220 second=251 amount=-1 +kerning first=304 second=217 amount=-1 +kerning first=1047 second=1027 amount=-1 +kerning first=304 second=284 amount=-1 +kerning first=230 second=231 amount=-1 +kerning first=272 second=115 amount=-1 +kerning first=210 second=353 amount=-1 +kerning first=1034 second=1101 amount=-1 +kerning first=196 second=284 amount=-1 +kerning first=1064 second=1028 amount=-1 +kerning first=201 second=205 amount=-1 +kerning first=101 second=249 amount=-1 +kerning first=220 second=266 amount=-1 +kerning first=316 second=235 amount=-1 +kerning first=296 second=264 amount=-1 +kerning first=362 second=200 amount=-1 +kerning first=1064 second=1037 amount=-1 +kerning first=315 second=362 amount=-1 +kerning first=198 second=214 amount=-1 +kerning first=84 second=243 amount=-1 +kerning first=290 second=200 amount=-1 +kerning first=204 second=111 amount=-1 +kerning first=1058 second=1076 amount=-1 +kerning first=218 second=200 amount=-1 +kerning first=8218 second=288 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=70 second=226 amount=-1 +kerning first=8222 second=271 amount=-1 +kerning first=220 second=370 amount=-1 +kerning first=367 second=242 amount=-1 +kerning first=202 second=45 amount=-1 +kerning first=204 second=97 amount=-1 +kerning first=81 second=8222 amount=-1 +kerning first=97 second=45 amount=-1 +kerning first=99 second=252 amount=-1 +kerning first=278 second=249 amount=-1 +kerning first=310 second=45 amount=-1 +kerning first=314 second=249 amount=-1 +kerning first=66 second=362 amount=-1 +kerning first=8222 second=98 amount=-1 +kerning first=346 second=45 amount=-1 +kerning first=217 second=275 amount=-1 +kerning first=350 second=249 amount=-1 +kerning first=355 second=226 amount=-1 +kerning first=207 second=362 amount=-1 +kerning first=195 second=71 amount=-1 +kerning first=325 second=275 amount=-1 +kerning first=171 second=362 amount=-1 +kerning first=274 second=45 amount=-1 +kerning first=289 second=275 amount=-1 +kerning first=337 second=291 amount=-1 +kerning first=72 second=223 amount=-1 +kerning first=352 second=302 amount=-1 +kerning first=45 second=363 amount=-1 +kerning first=291 second=326 amount=-1 +kerning first=103 second=233 amount=-1 +kerning first=280 second=302 amount=-1 +kerning first=364 second=199 amount=-1 +kerning first=229 second=291 amount=-1 +kerning first=87 second=234 amount=-1 +kerning first=1030 second=1083 amount=-1 +kerning first=228 second=234 amount=-1 +kerning first=8250 second=84 amount=-1 +kerning first=99 second=98 amount=-1 +kerning first=270 second=46 amount=-1 +kerning first=326 second=267 amount=-1 +kerning first=67 second=302 amount=-1 +kerning first=362 second=267 amount=-1 +kerning first=316 second=233 amount=-1 +kerning first=1039 second=1113 amount=-1 +kerning first=281 second=248 amount=-1 +kerning first=8222 second=269 amount=-1 +kerning first=233 second=122 amount=-1 +kerning first=225 second=243 amount=-1 +kerning first=70 second=224 amount=-1 +kerning first=217 second=327 amount=-1 +kerning first=65 second=8221 amount=-2 +kerning first=1062 second=1094 amount=-1 +kerning first=101 second=8221 amount=-2 +kerning first=291 second=107 amount=-1 +kerning first=369 second=243 amount=-1 +kerning first=325 second=327 amount=-1 +kerning first=203 second=249 amount=-1 +kerning first=225 second=269 amount=-1 +kerning first=1038 second=1119 amount=-1 +kerning first=277 second=311 amount=-1 +kerning first=354 second=232 amount=-1 +kerning first=171 second=89 amount=-1 +kerning first=355 second=224 amount=-1 +kerning first=66 second=89 amount=-1 +kerning first=85 second=249 amount=-1 +kerning first=234 second=335 amount=-1 +kerning first=97 second=318 amount=-1 +kerning first=8220 second=218 amount=-1 +kerning first=83 second=370 amount=-1 +kerning first=1052 second=1071 amount=-1 +kerning first=344 second=46 amount=-1 +kerning first=1078 second=1104 amount=-1 +kerning first=226 second=318 amount=-1 +kerning first=218 second=267 amount=-1 +kerning first=368 second=370 amount=-1 +kerning first=8222 second=338 amount=-1 +kerning first=330 second=212 amount=-1 +kerning first=296 second=370 amount=-1 +kerning first=8250 second=82 amount=-1 +kerning first=72 second=225 amount=-1 +kerning first=220 second=199 amount=-1 +kerning first=77 second=267 amount=-1 +kerning first=220 second=361 amount=-1 +kerning first=291 second=277 amount=-1 +kerning first=368 second=269 amount=-1 +kerning first=1068 second=1031 amount=-1 +kerning first=302 second=71 amount=-1 +kerning first=1030 second=1086 amount=-1 +kerning first=364 second=361 amount=-1 +kerning first=199 second=206 amount=-1 +kerning first=207 second=267 amount=-1 +kerning first=209 second=212 amount=-1 +kerning first=346 second=114 amount=-1 +kerning first=68 second=296 amount=-1 +kerning first=279 second=267 amount=-1 +kerning first=1104 second=1117 amount=-1 +kerning first=1062 second=1079 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=214 second=115 amount=-1 +kerning first=202 second=114 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=1059 second=1080 amount=-1 +kerning first=346 second=8249 amount=-1 +kerning first=274 second=114 amount=-1 +kerning first=382 second=8249 amount=-1 +kerning first=1027 second=1095 amount=-1 +kerning first=251 second=111 amount=-1 +kerning first=350 second=45 amount=-1 +kerning first=287 second=111 amount=-1 +kerning first=73 second=115 amount=-1 +kerning first=323 second=111 amount=-1 +kerning first=83 second=368 amount=-1 +kerning first=330 second=81 amount=-1 +kerning first=97 second=114 amount=-1 +kerning first=87 second=258 amount=-1 +kerning first=291 second=365 amount=-1 +kerning first=79 second=197 amount=-1 +kerning first=327 second=68 amount=-1 +kerning first=219 second=365 amount=-1 +kerning first=220 second=197 amount=-1 +kerning first=316 second=263 amount=-1 +kerning first=323 second=81 amount=-1 +kerning first=203 second=310 amount=-1 +kerning first=199 second=370 amount=-1 +kerning first=302 second=203 amount=-1 +kerning first=77 second=72 amount=-1 +kerning first=338 second=203 amount=-1 +kerning first=368 second=368 amount=-1 +kerning first=234 second=249 amount=-1 +kerning first=364 second=197 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=202 second=8249 amount=-1 +kerning first=1042 second=1037 amount=-1 +kerning first=8217 second=346 amount=-1 +kerning first=199 second=364 amount=-1 +kerning first=1041 second=1088 amount=-1 +kerning first=195 second=199 amount=-1 +kerning first=246 second=8220 amount=-2 +kerning first=266 second=203 amount=-1 +kerning first=368 second=290 amount=-1 +kerning first=362 second=72 amount=-1 +kerning first=67 second=263 amount=-1 +kerning first=270 second=374 amount=-1 +kerning first=103 second=263 amount=-1 +kerning first=235 second=106 amount=-1 +kerning first=290 second=72 amount=-1 +kerning first=1054 second=1055 amount=-1 +kerning first=355 second=8222 amount=-1 +kerning first=8216 second=220 amount=-1 +kerning first=116 second=230 amount=-1 +kerning first=203 second=327 amount=-1 +kerning first=80 second=230 amount=-1 +kerning first=1053 second=1052 amount=-1 +kerning first=211 second=8222 amount=-1 +kerning first=217 second=71 amount=-1 +kerning first=211 second=87 amount=-1 +kerning first=1055 second=1104 amount=-1 +kerning first=88 second=288 amount=-1 +kerning first=1030 second=1036 amount=-1 +kerning first=70 second=334 amount=-1 +kerning first=72 second=279 amount=-1 +kerning first=70 second=8222 amount=-2 +kerning first=235 second=333 amount=-1 +kerning first=108 second=279 amount=-1 +kerning first=192 second=288 amount=-1 +kerning first=74 second=81 amount=-1 +kerning first=287 second=291 amount=-1 +kerning first=251 second=291 amount=-1 +kerning first=87 second=288 amount=-1 +kerning first=364 second=227 amount=-1 +kerning first=8217 second=363 amount=-1 +kerning first=337 second=44 amount=-1 +kerning first=206 second=274 amount=-1 +kerning first=333 second=187 amount=-1 +kerning first=255 second=252 amount=-1 +kerning first=196 second=89 amount=-1 +kerning first=110 second=291 amount=-1 +kerning first=71 second=209 amount=-1 +kerning first=263 second=281 amount=-1 +kerning first=119 second=318 amount=-1 +kerning first=264 second=288 amount=-1 +kerning first=220 second=227 amount=-1 +kerning first=224 second=318 amount=-1 +kerning first=1059 second=1090 amount=-1 +kerning first=86 second=99 amount=-1 +kerning first=84 second=187 amount=-1 +kerning first=1042 second=1050 amount=-1 +kerning first=1067 second=1095 amount=-1 +kerning first=356 second=337 amount=-1 +kerning first=227 second=99 amount=-1 +kerning first=225 second=187 amount=-1 +kerning first=195 second=303 amount=-1 +kerning first=304 second=245 amount=-1 +kerning first=263 second=99 amount=-1 +kerning first=261 second=187 amount=-1 +kerning first=268 second=245 amount=-1 +kerning first=65 second=221 amount=-1 +kerning first=232 second=245 amount=-1 +kerning first=1047 second=1113 amount=-1 +kerning first=288 second=270 amount=-1 +kerning first=287 second=328 amount=-1 +kerning first=1066 second=1036 amount=-1 +kerning first=71 second=66 amount=-1 +kerning first=264 second=330 amount=-1 +kerning first=249 second=279 amount=-1 +kerning first=221 second=230 amount=-1 +kerning first=366 second=196 amount=-1 +kerning first=200 second=332 amount=-1 +kerning first=370 second=367 amount=-1 +kerning first=344 second=332 amount=-1 +kerning first=198 second=210 amount=-1 +kerning first=214 second=202 amount=-1 +kerning first=84 second=351 amount=-1 +kerning first=198 second=73 amount=-1 +kerning first=368 second=264 amount=-1 +kerning first=196 second=8217 amount=-2 +kerning first=286 second=202 amount=-1 +kerning first=270 second=73 amount=-1 +kerning first=73 second=202 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=108 second=8221 amount=-1 +kerning first=1030 second=1073 amount=-1 +kerning first=279 second=104 amount=-1 +kerning first=339 second=248 amount=-1 +kerning first=242 second=108 amount=-1 +kerning first=105 second=121 amount=-1 +kerning first=352 second=201 amount=-1 +kerning first=213 second=82 amount=-1 +kerning first=1034 second=1030 amount=-1 +kerning first=8249 second=352 amount=-1 +kerning first=80 second=323 amount=-1 +kerning first=8250 second=368 amount=-1 +kerning first=232 second=8217 amount=-2 +kerning first=1089 second=1076 amount=-1 +kerning first=203 second=364 amount=-1 +kerning first=1040 second=1038 amount=-2 +kerning first=268 second=8217 amount=-1 +kerning first=314 second=108 amount=-1 +kerning first=199 second=69 amount=-1 +kerning first=97 second=277 amount=-1 +kerning first=375 second=8218 amount=-1 +kerning first=1078 second=1091 amount=-1 +kerning first=275 second=273 amount=-1 +kerning first=8218 second=366 amount=-1 +kerning first=240 second=113 amount=-1 +kerning first=1056 second=1067 amount=-1 +kerning first=1039 second=1067 amount=-1 +kerning first=230 second=116 amount=-1 +kerning first=224 second=314 amount=-1 +kerning first=72 second=82 amount=-1 +kerning first=268 second=325 amount=-1 +kerning first=83 second=171 amount=-1 +kerning first=194 second=116 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=310 second=114 amount=-1 +kerning first=82 second=44 amount=-1 +kerning first=199 second=286 amount=-1 +kerning first=119 second=314 amount=-1 +kerning first=1118 second=1078 amount=-1 +kerning first=304 second=325 amount=-1 +kerning first=99 second=113 amount=-1 +kerning first=280 second=317 amount=-1 +kerning first=1031 second=1069 amount=-1 +kerning first=267 second=112 amount=-1 +kerning first=1067 second=1069 amount=-1 +kerning first=327 second=264 amount=-1 +kerning first=231 second=112 amount=-1 +kerning first=352 second=317 amount=-1 +kerning first=214 second=78 amount=-1 +kerning first=109 second=339 amount=-1 +kerning first=220 second=110 amount=-1 +kerning first=275 second=117 amount=-1 +kerning first=1038 second=1077 amount=-1 +kerning first=272 second=282 amount=-1 +kerning first=73 second=78 amount=-1 +kerning first=199 second=316 amount=-1 +kerning first=99 second=109 amount=-1 +kerning first=291 second=242 amount=-1 +kerning first=8217 second=256 amount=-2 +kerning first=200 second=282 amount=-1 +kerning first=364 second=110 amount=-1 +kerning first=288 second=77 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=217 second=8220 amount=-1 +kerning first=103 second=289 amount=-1 +kerning first=1031 second=1094 amount=-1 +kerning first=291 second=339 amount=-1 +kerning first=258 second=356 amount=-1 +kerning first=244 second=289 amount=-1 +kerning first=363 second=339 amount=-1 +kerning first=255 second=311 amount=-1 +kerning first=316 second=289 amount=-1 +kerning first=327 second=339 amount=-1 +kerning first=74 second=382 amount=-1 +kerning first=72 second=333 amount=-1 +kerning first=260 second=171 amount=-1 +kerning first=262 second=220 amount=-1 +kerning first=108 second=333 amount=-1 +kerning first=328 second=281 amount=-1 +kerning first=356 second=246 amount=-1 +kerning first=334 second=220 amount=-1 +kerning first=364 second=281 amount=-1 +kerning first=259 second=101 amount=-1 +kerning first=368 second=171 amount=-2 +kerning first=298 second=220 amount=-1 +kerning first=249 second=333 amount=-1 +kerning first=274 second=212 amount=-1 +kerning first=367 second=101 amount=-1 +kerning first=85 second=220 amount=-1 +kerning first=84 second=100 amount=-1 +kerning first=1049 second=1065 amount=-1 +kerning first=204 second=330 amount=-1 +kerning first=71 second=296 amount=-1 +kerning first=211 second=304 amount=-1 +kerning first=70 second=280 amount=-1 +kerning first=1030 second=1045 amount=-1 +kerning first=284 second=8218 amount=-1 +kerning first=69 second=338 amount=-1 +kerning first=284 second=296 amount=-1 +kerning first=366 second=85 amount=-1 +kerning first=248 second=8218 amount=-1 +kerning first=195 second=86 amount=-1 +kerning first=1064 second=1074 amount=-1 +kerning first=330 second=85 amount=-1 +kerning first=212 second=8218 amount=-1 +kerning first=212 second=296 amount=-1 +kerning first=70 second=304 amount=-1 +kerning first=89 second=382 amount=-1 +kerning first=298 second=313 amount=-1 +kerning first=258 second=85 amount=-1 +kerning first=334 second=313 amount=-1 +kerning first=366 second=109 amount=-1 +kerning first=370 second=220 amount=-1 +kerning first=370 second=313 amount=-1 +kerning first=187 second=298 amount=-1 +kerning first=356 second=8218 amount=-1 +kerning first=220 second=281 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=78 second=339 amount=-1 +kerning first=45 second=85 amount=-1 +kerning first=279 second=347 amount=-1 +kerning first=219 second=339 amount=-1 +kerning first=262 second=313 amount=-1 +kerning first=344 second=8250 amount=-1 +kerning first=217 second=290 amount=-1 +kerning first=207 second=347 amount=-1 +kerning first=66 second=347 amount=-1 +kerning first=107 second=8218 amount=-1 +kerning first=1051 second=1037 amount=-1 +kerning first=272 second=8250 amount=-1 +kerning first=45 second=109 amount=-1 +kerning first=323 second=382 amount=-1 +kerning first=305 second=287 amount=-1 +kerning first=87 second=225 amount=-1 +kerning first=70 second=83 amount=-1 +kerning first=325 second=290 amount=-1 +kerning first=269 second=287 amount=-1 +kerning first=85 second=313 amount=-1 +kerning first=200 second=8250 amount=-1 +kerning first=233 second=287 amount=-1 +kerning first=200 second=371 amount=-1 +kerning first=67 second=122 amount=-1 +kerning first=67 second=282 amount=-1 +kerning first=1091 second=1090 amount=-1 +kerning first=291 second=289 amount=-1 +kerning first=275 second=234 amount=-1 +kerning first=255 second=289 amount=-1 +kerning first=316 second=339 amount=-1 +kerning first=363 second=289 amount=-1 +kerning first=67 second=339 amount=-1 +kerning first=197 second=8220 amount=-2 +kerning first=206 second=330 amount=-1 +kerning first=1055 second=1105 amount=-1 +kerning first=45 second=280 amount=-1 +kerning first=199 second=232 amount=-1 +kerning first=203 second=219 amount=-1 +kerning first=272 second=278 amount=-1 +kerning first=1039 second=1070 amount=-1 +kerning first=266 second=311 amount=-1 +kerning first=316 second=122 amount=-1 +kerning first=200 second=278 amount=-1 +kerning first=81 second=280 amount=-1 +kerning first=338 second=199 amount=-1 +kerning first=1046 second=1082 amount=-1 +kerning first=8250 second=264 amount=-1 +kerning first=244 second=122 amount=-1 +kerning first=307 second=232 amount=-1 +kerning first=103 second=107 amount=-1 +kerning first=103 second=122 amount=-1 +kerning first=271 second=232 amount=-1 +kerning first=67 second=107 amount=-1 +kerning first=281 second=103 amount=-1 +kerning first=235 second=232 amount=-1 +kerning first=209 second=335 amount=-1 +kerning first=368 second=225 amount=-1 +kerning first=80 second=269 amount=-1 +kerning first=116 second=269 amount=-1 +kerning first=281 second=335 amount=-1 +kerning first=1031 second=1062 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=89 second=45 amount=-2 +kerning first=199 second=311 amount=-1 +kerning first=281 second=8217 amount=-2 +kerning first=257 second=269 amount=-1 +kerning first=198 second=298 amount=-1 +kerning first=86 second=216 amount=-1 +kerning first=270 second=298 amount=-1 +kerning first=221 second=269 amount=-1 +kerning first=193 second=98 amount=-1 +kerning first=197 second=85 amount=-1 +kerning first=233 second=8220 amount=-2 +kerning first=323 second=101 amount=-1 +kerning first=171 second=346 amount=-1 +kerning first=365 second=269 amount=-1 +kerning first=1058 second=1081 amount=-1 +kerning first=333 second=46 amount=-1 +kerning first=104 second=335 amount=-1 +kerning first=73 second=241 amount=-1 +kerning first=296 second=225 amount=-1 +kerning first=370 second=274 amount=-1 +kerning first=81 second=70 amount=-1 +kerning first=83 second=72 amount=-1 +kerning first=1043 second=1087 amount=-1 +kerning first=221 second=67 amount=-1 +kerning first=298 second=274 amount=-1 +kerning first=71 second=207 amount=-1 +kerning first=268 second=104 amount=-1 +kerning first=80 second=67 amount=-1 +kerning first=334 second=274 amount=-1 +kerning first=70 second=250 amount=-1 +kerning first=196 second=104 amount=-1 +kerning first=262 second=274 amount=-1 +kerning first=232 second=104 amount=-1 +kerning first=283 second=250 amount=-1 +kerning first=120 second=46 amount=-1 +kerning first=212 second=207 amount=-1 +kerning first=325 second=366 amount=-1 +kerning first=368 second=260 amount=-1 +kerning first=45 second=70 amount=-1 +kerning first=370 second=259 amount=-1 +kerning first=282 second=262 amount=-1 +kerning first=204 second=200 amount=-1 +kerning first=267 second=187 amount=-1 +kerning first=362 second=76 amount=-1 +kerning first=298 second=259 amount=-1 +kerning first=375 second=8250 amount=-1 +kerning first=109 second=269 amount=-1 +kerning first=1078 second=1076 amount=-1 +kerning first=262 second=259 amount=-1 +kerning first=1038 second=1074 amount=-1 +kerning first=290 second=76 amount=-1 +kerning first=200 second=357 amount=-1 +kerning first=1118 second=1117 amount=-1 +kerning first=111 second=378 amount=-1 +kerning first=218 second=76 amount=-1 +kerning first=77 second=76 amount=-1 +kerning first=220 second=357 amount=-1 +kerning first=366 second=70 amount=-1 +kerning first=366 second=280 amount=-1 +kerning first=1059 second=1084 amount=-1 +kerning first=229 second=113 amount=-1 +kerning first=330 second=280 amount=-1 +kerning first=352 second=187 amount=-1 +kerning first=277 second=116 amount=-1 +kerning first=1088 second=1083 amount=-1 +kerning first=85 second=259 amount=-1 +kerning first=280 second=75 amount=-1 +kerning first=196 second=375 amount=-1 +kerning first=217 second=366 amount=-1 +kerning first=207 second=271 amount=-1 +kerning first=1067 second=1108 amount=-1 +kerning first=284 second=207 amount=-1 +kerning first=187 second=268 amount=-1 +kerning first=368 second=210 amount=-1 +kerning first=279 second=271 amount=-1 +kerning first=264 second=204 amount=-1 +kerning first=82 second=268 amount=-1 +kerning first=296 second=210 amount=-1 +kerning first=1031 second=1108 amount=-1 +kerning first=214 second=256 amount=-1 +kerning first=1058 second=1096 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=74 second=198 amount=-1 +kerning first=356 second=242 amount=-1 +kerning first=201 second=369 amount=-1 +kerning first=266 second=257 amount=-1 +kerning first=117 second=333 amount=-1 +kerning first=352 second=209 amount=-1 +kerning first=8217 second=324 amount=-1 +kerning first=302 second=257 amount=-1 +kerning first=1064 second=1113 amount=-1 +kerning first=233 second=233 amount=-1 +kerning first=280 second=209 amount=-1 +kerning first=296 second=279 amount=-1 +kerning first=89 second=257 amount=-1 +kerning first=269 second=233 amount=-1 +kerning first=263 second=316 amount=-1 +kerning first=224 second=279 amount=-1 +kerning first=366 second=114 amount=-1 +kerning first=264 second=327 amount=-1 +kerning first=78 second=235 amount=-1 +kerning first=207 second=213 amount=-1 +kerning first=286 second=187 amount=-1 +kerning first=374 second=380 amount=-1 +kerning first=305 second=233 amount=-1 +kerning first=219 second=235 amount=-1 +kerning first=66 second=213 amount=-1 +kerning first=291 second=235 amount=-1 +kerning first=197 second=371 amount=-1 +kerning first=8222 second=245 amount=-1 +kerning first=327 second=235 amount=-1 +kerning first=1034 second=1045 amount=-1 +kerning first=90 second=8221 amount=-1 +kerning first=363 second=235 amount=-1 +kerning first=313 second=218 amount=-1 +kerning first=89 second=380 amount=-1 +kerning first=291 second=231 amount=-1 +kerning first=195 second=253 amount=-1 +kerning first=108 second=318 amount=-1 +kerning first=116 second=281 amount=-1 +kerning first=259 second=283 amount=-1 +kerning first=8222 second=89 amount=-2 +kerning first=327 second=231 amount=-1 +kerning first=1027 second=1071 amount=-1 +kerning first=346 second=75 amount=-1 +kerning first=205 second=218 amount=-1 +kerning first=73 second=187 amount=-1 +kerning first=1067 second=1104 amount=-1 +kerning first=233 second=248 amount=-1 +kerning first=266 second=380 amount=-1 +kerning first=270 second=88 amount=-1 +kerning first=230 second=380 amount=-1 +kerning first=82 second=357 amount=-1 +kerning first=282 second=8221 amount=-1 +kerning first=305 second=248 amount=-1 +kerning first=202 second=75 amount=-1 +kerning first=1031 second=1104 amount=-1 +kerning first=269 second=248 amount=-1 +kerning first=302 second=380 amount=-1 +kerning first=282 second=220 amount=-1 +kerning first=70 second=196 amount=-1 +kerning first=85 second=274 amount=-1 +kerning first=67 second=209 amount=-1 +kerning first=8250 second=260 amount=-1 +kerning first=114 second=8218 amount=-1 +kerning first=83 second=69 amount=-1 +kerning first=368 second=279 amount=-1 +kerning first=367 second=283 amount=-1 +kerning first=374 second=257 amount=-1 +kerning first=287 second=367 amount=-1 +kerning first=201 second=79 amount=-1 +kerning first=211 second=196 amount=-1 +kerning first=234 second=244 amount=-1 +kerning first=74 second=367 amount=-1 +kerning first=66 second=217 amount=-1 +kerning first=262 second=205 amount=-1 +kerning first=252 second=103 amount=-1 +kerning first=356 second=261 amount=-1 +kerning first=335 second=114 amount=-1 +kerning first=263 second=45 amount=-1 +kerning first=1051 second=1107 amount=-1 +kerning first=207 second=217 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=74 second=252 amount=-1 +kerning first=227 second=114 amount=-1 +kerning first=206 second=344 amount=-1 +kerning first=315 second=217 amount=-1 +kerning first=217 second=80 amount=-1 +kerning first=1038 second=1097 amount=-1 +kerning first=225 second=8217 amount=-2 +kerning first=1046 second=1063 amount=-1 +kerning first=370 second=205 amount=-1 +kerning first=263 second=114 amount=-1 +kerning first=278 second=344 amount=-1 +kerning first=1043 second=1072 amount=-1 +kerning first=80 second=284 amount=-1 +kerning first=73 second=310 amount=-1 +kerning first=221 second=353 amount=-1 +kerning first=264 second=351 amount=-1 +kerning first=221 second=284 amount=-1 +kerning first=72 second=368 amount=-1 +kerning first=86 second=114 amount=-1 +kerning first=78 second=231 amount=-1 +kerning first=1052 second=1095 amount=-1 +kerning first=99 second=345 amount=-1 +kerning first=85 second=205 amount=-1 +kerning first=197 second=220 amount=-1 +kerning first=368 second=206 amount=-1 +kerning first=367 second=8221 amount=-1 +kerning first=204 second=345 amount=-1 +kerning first=261 second=8250 amount=-1 +kerning first=296 second=206 amount=-1 +kerning first=240 second=345 amount=-1 +kerning first=1036 second=1098 amount=-1 +kerning first=321 second=368 amount=-1 +kerning first=82 second=214 amount=-1 +kerning first=316 second=111 amount=-1 +kerning first=209 second=266 amount=-1 +kerning first=267 second=8221 amount=-2 +kerning first=246 second=106 amount=-1 +kerning first=234 second=281 amount=-1 +kerning first=370 second=325 amount=-1 +kerning first=80 second=353 amount=-1 +kerning first=1053 second=1037 amount=-1 +kerning first=339 second=8221 amount=-2 +kerning first=213 second=368 amount=-1 +kerning first=364 second=71 amount=-1 +kerning first=187 second=214 amount=-1 +kerning first=116 second=353 amount=-1 +kerning first=77 second=362 amount=-1 +kerning first=310 second=223 amount=-1 +kerning first=274 second=223 amount=-1 +kerning first=1031 second=1052 amount=-1 +kerning first=339 second=249 amount=-1 +kerning first=45 second=286 amount=-1 +kerning first=375 second=249 amount=-1 +kerning first=330 second=226 amount=-1 +kerning first=287 second=252 amount=-1 +kerning first=314 second=275 amount=-1 +kerning first=72 second=97 amount=-1 +kerning first=1039 second=1089 amount=-1 +kerning first=366 second=226 amount=-1 +kerning first=101 second=275 amount=-1 +kerning first=218 second=362 amount=-1 +kerning first=310 second=8217 amount=-1 +kerning first=206 second=275 amount=-1 +kerning first=231 second=249 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=290 second=362 amount=-1 +kerning first=346 second=223 amount=-1 +kerning first=1055 second=1086 amount=-1 +kerning first=267 second=249 amount=-1 +kerning first=122 second=45 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=87 second=243 amount=-1 +kerning first=290 second=217 amount=-1 +kerning first=345 second=224 amount=-1 +kerning first=286 second=327 amount=-1 +kerning first=228 second=243 amount=-1 +kerning first=75 second=45 amount=-1 +kerning first=302 second=286 amount=-1 +kerning first=362 second=217 amount=-1 +kerning first=86 second=97 amount=-1 +kerning first=324 second=45 amount=-1 +kerning first=296 second=353 amount=-1 +kerning first=195 second=214 amount=-1 +kerning first=364 second=249 amount=-1 +kerning first=258 second=354 amount=-1 +kerning first=252 second=45 amount=-1 +kerning first=368 second=353 amount=-1 +kerning first=288 second=45 amount=-1 +kerning first=275 second=275 amount=-1 +kerning first=219 second=68 amount=-1 +kerning first=279 second=252 amount=-1 +kerning first=214 second=80 amount=-1 +kerning first=1056 second=1045 amount=-1 +kerning first=1062 second=1114 amount=-1 +kerning first=252 second=114 amount=-1 +kerning first=1051 second=1062 amount=-1 +kerning first=1049 second=1097 amount=-1 +kerning first=199 second=318 amount=-1 +kerning first=8222 second=67 amount=-1 +kerning first=235 second=318 amount=-1 +kerning first=86 second=336 amount=-1 +kerning first=69 second=370 amount=-1 +kerning first=45 second=310 amount=-1 +kerning first=286 second=80 amount=-1 +kerning first=282 second=223 amount=-1 +kerning first=263 second=97 amount=-1 +kerning first=72 second=116 amount=-1 +kerning first=267 second=234 amount=-1 +kerning first=231 second=234 amount=-1 +kerning first=212 second=88 amount=-1 +kerning first=86 second=257 amount=-1 +kerning first=339 second=234 amount=-1 +kerning first=1065 second=1085 amount=-1 +kerning first=69 second=223 amount=-1 +kerning first=217 second=258 amount=-1 +kerning first=269 second=226 amount=-1 +kerning first=80 second=362 amount=-1 +kerning first=1054 second=1053 amount=-1 +kerning first=262 second=330 amount=-1 +kerning first=1050 second=1076 amount=-1 +kerning first=206 second=266 amount=-1 +kerning first=220 second=249 amount=-1 +kerning first=207 second=235 amount=-1 +kerning first=1118 second=1084 amount=-1 +kerning first=296 second=211 amount=-1 +kerning first=325 second=71 amount=-1 +kerning first=77 second=217 amount=-1 +kerning first=279 second=232 amount=-1 +kerning first=304 second=200 amount=-1 +kerning first=230 second=382 amount=-1 +kerning first=268 second=200 amount=-1 +kerning first=218 second=217 amount=-1 +kerning first=65 second=266 amount=-1 +kerning first=262 second=98 amount=-1 +kerning first=232 second=267 amount=-1 +kerning first=268 second=267 amount=-1 +kerning first=1052 second=1041 amount=-1 +kerning first=1050 second=1096 amount=-1 +kerning first=304 second=267 amount=-1 +kerning first=121 second=98 amount=-1 +kerning first=192 second=213 amount=-1 +kerning first=85 second=345 amount=-1 +kerning first=113 second=8249 amount=-1 +kerning first=106 second=335 amount=-1 +kerning first=121 second=345 amount=-1 +kerning first=330 second=241 amount=-1 +kerning first=8250 second=206 amount=-1 +kerning first=1078 second=1089 amount=-1 +kerning first=226 second=345 amount=-1 +kerning first=69 second=323 amount=-1 +kerning first=262 second=345 amount=-1 +kerning first=302 second=302 amount=-1 +kerning first=298 second=345 amount=-1 +kerning first=338 second=302 amount=-1 +kerning first=233 second=46 amount=-1 +kerning first=8250 second=193 amount=-1 +kerning first=370 second=345 amount=-1 +kerning first=266 second=302 amount=-1 +kerning first=1027 second=1080 amount=-1 +kerning first=45 second=241 amount=-1 +kerning first=269 second=46 amount=-1 +kerning first=1067 second=1050 amount=-1 +kerning first=1053 second=1069 amount=-1 +kerning first=356 second=335 amount=-1 +kerning first=249 second=114 amount=-1 +kerning first=1031 second=1050 amount=-1 +kerning first=8218 second=364 amount=-1 +kerning first=210 second=370 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=70 second=336 amount=-1 +kerning first=370 second=200 amount=-1 +kerning first=108 second=114 amount=-1 +kerning first=316 second=378 amount=-1 +kerning first=72 second=114 amount=-1 +kerning first=204 second=81 amount=-1 +kerning first=282 second=323 amount=-1 +kerning first=73 second=80 amount=-1 +kerning first=65 second=199 amount=-1 +kerning first=204 second=207 amount=-1 +kerning first=219 second=250 amount=-1 +kerning first=282 second=370 amount=-1 +kerning first=77 second=284 amount=-1 +kerning first=275 second=115 amount=-1 +kerning first=206 second=199 amount=-1 +kerning first=67 second=378 amount=-1 +kerning first=1053 second=1027 amount=-1 +kerning first=66 second=72 amount=-1 +kerning first=219 second=216 amount=-1 +kerning first=278 second=199 amount=-1 +kerning first=327 second=216 amount=-1 +kerning first=108 second=314 amount=-1 +kerning first=207 second=72 amount=-1 +kerning first=1031 second=1037 amount=-1 +kerning first=68 second=344 amount=-1 +kerning first=1067 second=1037 amount=-1 +kerning first=1053 second=1054 amount=-1 +kerning first=209 second=344 amount=-1 +kerning first=1066 second=1071 amount=-1 +kerning first=264 second=310 amount=-1 +kerning first=103 second=378 amount=-1 +kerning first=214 second=327 amount=-1 +kerning first=209 second=110 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=45 second=334 amount=-1 +kerning first=86 second=8222 amount=-2 +kerning first=211 second=282 amount=-1 +kerning first=330 second=334 amount=-1 +kerning first=70 second=282 amount=-1 +kerning first=374 second=232 amount=-1 +kerning first=258 second=334 amount=-1 +kerning first=362 second=230 amount=-1 +kerning first=267 second=45 amount=-1 +kerning first=366 second=334 amount=-1 +kerning first=258 second=87 amount=-1 +kerning first=218 second=230 amount=-1 +kerning first=72 second=205 amount=-1 +kerning first=66 second=325 amount=-1 +kerning first=86 second=197 amount=-1 +kerning first=121 second=115 amount=-1 +kerning first=229 second=242 amount=-1 +kerning first=77 second=230 amount=-1 +kerning first=1064 second=1052 amount=-1 +kerning first=81 second=87 amount=-1 +kerning first=226 second=291 amount=-1 +kerning first=45 second=87 amount=-2 +kerning first=201 second=296 amount=-1 +kerning first=121 second=291 amount=-1 +kerning first=252 second=279 amount=-1 +kerning first=356 second=101 amount=-1 +kerning first=206 second=212 amount=-1 +kerning first=339 second=108 amount=-1 +kerning first=375 second=108 amount=-1 +kerning first=194 second=8220 amount=-2 +kerning first=1039 second=1098 amount=-1 +kerning first=1046 second=1117 amount=-1 +kerning first=8217 second=257 amount=-1 +kerning first=65 second=212 amount=-1 +kerning first=324 second=279 amount=-1 +kerning first=333 second=8250 amount=-1 +kerning first=268 second=254 amount=-1 +kerning first=252 second=99 amount=-1 +kerning first=222 second=187 amount=-1 +kerning first=1046 second=1119 amount=-1 +kerning first=81 second=187 amount=-1 +kerning first=307 second=245 amount=-1 +kerning first=99 second=328 amount=-1 +kerning first=225 second=8250 amount=-1 +kerning first=1118 second=1119 amount=-1 +kerning first=271 second=245 amount=-1 +kerning first=220 second=241 amount=-1 +kerning first=235 second=245 amount=-1 +kerning first=117 second=287 amount=-1 +kerning first=199 second=245 amount=-1 +kerning first=230 second=107 amount=-1 +kerning first=242 second=345 amount=-1 +kerning first=81 second=206 amount=-1 +kerning first=324 second=99 amount=-1 +kerning first=224 second=335 amount=-1 +kerning first=118 second=8218 amount=-1 +kerning first=8222 second=254 amount=-1 +kerning first=338 second=8220 amount=-1 +kerning first=269 second=380 amount=-1 +kerning first=203 second=202 amount=-1 +kerning first=266 second=248 amount=-1 +kerning first=230 second=248 amount=-1 +kerning first=260 second=8249 amount=-1 +kerning first=192 second=117 amount=-1 +kerning first=327 second=270 amount=-1 +kerning first=352 second=218 amount=-1 +kerning first=338 second=75 amount=-1 +kerning first=302 second=75 amount=-1 +kerning first=280 second=218 amount=-1 +kerning first=89 second=248 amount=-1 +kerning first=266 second=75 amount=-1 +kerning first=8218 second=305 amount=-1 +kerning first=367 second=231 amount=-1 +kerning first=314 second=242 amount=-1 +kerning first=231 second=307 amount=-1 +kerning first=323 second=66 amount=-1 +kerning first=78 second=270 amount=-1 +kerning first=195 second=307 amount=-1 +kerning first=199 second=264 amount=-1 +kerning first=89 second=8220 amount=-1 +kerning first=1055 second=1073 amount=-1 +kerning first=362 second=171 amount=-2 +kerning first=267 second=307 amount=-1 +kerning first=267 second=108 amount=-1 +kerning first=211 second=209 amount=-1 +kerning first=219 second=270 amount=-1 +kerning first=118 second=367 amount=-1 +kerning first=187 second=202 amount=-1 +kerning first=219 second=196 amount=-1 +kerning first=282 second=69 amount=-1 +kerning first=195 second=108 amount=-1 +kerning first=80 second=74 amount=-1 +kerning first=304 second=205 amount=-1 +kerning first=266 second=8220 amount=-1 +kerning first=231 second=108 amount=-1 +kerning first=74 second=66 amount=-1 +kerning first=70 second=209 amount=-1 +kerning first=230 second=8220 amount=-2 +kerning first=245 second=103 amount=-1 +kerning first=198 second=205 amount=-1 +kerning first=209 second=103 amount=-1 +kerning first=221 second=74 amount=-1 +kerning first=207 second=325 amount=-1 +kerning first=66 second=252 amount=-1 +kerning first=1067 second=1091 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=1031 second=1091 amount=-1 +kerning first=279 second=8220 amount=-2 +kerning first=105 second=269 amount=-1 +kerning first=106 second=279 amount=-1 +kerning first=1052 second=1034 amount=-1 +kerning first=118 second=187 amount=-1 +kerning first=69 second=69 amount=-1 +kerning first=73 second=273 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=200 second=304 amount=-1 +kerning first=67 second=218 amount=-1 +kerning first=121 second=44 amount=-1 +kerning first=204 second=261 amount=-1 +kerning first=334 second=44 amount=-1 +kerning first=246 second=316 amount=-1 +kerning first=368 second=193 amount=-1 +kerning first=302 second=248 amount=-1 +kerning first=234 second=316 amount=-1 +kerning first=262 second=44 amount=-1 +kerning first=354 second=269 amount=-1 +kerning first=374 second=248 amount=-1 +kerning first=1071 second=1048 amount=-1 +kerning first=122 second=171 amount=-1 +kerning first=263 second=365 amount=-1 +kerning first=217 second=216 amount=-1 +kerning first=8222 second=101 amount=-1 +kerning first=368 second=65 amount=-1 +kerning first=1030 second=1101 amount=-1 +kerning first=1048 second=1030 amount=-1 +kerning first=1036 second=1074 amount=-1 +kerning first=263 second=171 amount=-1 +kerning first=1038 second=1088 amount=-1 +kerning first=112 second=8221 amount=-2 +kerning first=86 second=365 amount=-1 +kerning first=289 second=117 amount=-1 +kerning first=274 second=203 amount=-1 +kerning first=1027 second=1079 amount=-1 +kerning first=213 second=260 amount=-1 +kerning first=253 second=117 amount=-1 +kerning first=217 second=117 amount=-1 +kerning first=250 second=269 amount=-1 +kerning first=366 second=100 amount=-1 +kerning first=1057 second=1117 amount=-1 +kerning first=74 second=220 amount=-1 +kerning first=330 second=100 amount=-1 +kerning first=202 second=203 amount=-1 +kerning first=367 second=246 amount=-1 +kerning first=115 second=108 amount=-1 +kerning first=196 second=121 amount=-1 +kerning first=1048 second=1025 amount=-1 +kerning first=86 second=171 amount=-2 +kerning first=68 second=298 amount=-1 +kerning first=290 second=330 amount=-1 +kerning first=352 second=77 amount=-1 +kerning first=103 second=8222 amount=-1 +kerning first=362 second=325 amount=-1 +kerning first=364 second=103 amount=-1 +kerning first=67 second=8222 amount=-1 +kerning first=198 second=251 amount=-1 +kerning first=328 second=103 amount=-1 +kerning first=280 second=77 amount=-1 +kerning first=234 second=251 amount=-1 +kerning first=280 second=304 amount=-1 +kerning first=220 second=103 amount=-1 +kerning first=291 second=324 amount=-1 +kerning first=218 second=330 amount=-1 +kerning first=235 second=277 amount=-1 +kerning first=115 second=103 amount=-1 +kerning first=323 second=220 amount=-1 +kerning first=67 second=304 amount=-1 +kerning first=267 second=369 amount=-1 +kerning first=291 second=109 amount=-1 +kerning first=221 second=227 amount=-1 +kerning first=356 second=281 amount=-1 +kerning first=324 second=333 amount=-1 +kerning first=1041 second=1091 amount=-1 +kerning first=327 second=109 amount=-1 +kerning first=70 second=68 amount=-1 +kerning first=1048 second=1092 amount=-1 +kerning first=344 second=211 amount=-1 +kerning first=219 second=109 amount=-1 +kerning first=211 second=68 amount=-1 +kerning first=352 second=8222 amount=-1 +kerning first=252 second=333 amount=-1 +kerning first=257 second=316 amount=-1 +kerning first=1060 second=1048 amount=-1 +kerning first=280 second=8222 amount=-1 +kerning first=8222 second=113 amount=-1 +kerning first=204 second=382 amount=-1 +kerning first=244 second=8222 amount=-1 +kerning first=1047 second=1064 amount=-1 +kerning first=200 second=211 amount=-1 +kerning first=240 second=382 amount=-1 +kerning first=289 second=112 amount=-1 +kerning first=325 second=323 amount=-1 +kerning first=199 second=210 amount=-1 +kerning first=327 second=77 amount=-1 +kerning first=1049 second=1024 amount=-1 +kerning first=204 second=315 amount=-1 +kerning first=281 second=251 amount=-1 +kerning first=233 second=339 amount=-1 +kerning first=220 second=233 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=302 second=216 amount=-1 +kerning first=368 second=245 amount=-1 +kerning first=117 second=233 amount=-1 +kerning first=259 second=382 amount=-1 +kerning first=218 second=111 amount=-1 +kerning first=296 second=245 amount=-1 +kerning first=78 second=109 amount=-1 +kerning first=1039 second=1057 amount=-1 +kerning first=84 second=44 amount=-1 +kerning first=286 second=219 amount=-1 +kerning first=287 second=120 amount=-1 +kerning first=305 second=339 amount=-1 +kerning first=82 second=290 amount=-1 +kerning first=214 second=219 amount=-1 +kerning first=269 second=339 amount=-1 +kerning first=73 second=219 amount=-1 +kerning first=330 second=233 amount=-1 +kerning first=8218 second=71 amount=-1 +kerning first=1058 second=1118 amount=-1 +kerning first=366 second=233 amount=-1 +kerning first=65 second=374 amount=-1 +kerning first=119 second=8217 amount=-2 +kerning first=209 second=298 amount=-1 +kerning first=84 second=224 amount=-1 +kerning first=325 second=212 amount=-1 +kerning first=224 second=8217 amount=-2 +kerning first=1056 second=1104 amount=-1 +kerning first=260 second=8217 amount=-2 +kerning first=8222 second=121 amount=-1 +kerning first=355 second=228 amount=-1 +kerning first=352 second=369 amount=-1 +kerning first=281 second=357 amount=-1 +kerning first=80 second=357 amount=-1 +kerning first=283 second=8217 amount=-2 +kerning first=217 second=212 amount=-1 +kerning first=83 second=8217 amount=-1 +kerning first=352 second=85 amount=-1 +kerning first=325 second=101 amount=-1 +kerning first=8250 second=65 amount=-1 +kerning first=224 second=245 amount=-1 +kerning first=326 second=111 amount=-1 +kerning first=280 second=85 amount=-1 +kerning first=362 second=111 amount=-1 +kerning first=1051 second=1054 amount=-1 +kerning first=332 second=8217 amount=-2 +kerning first=368 second=8217 amount=-1 +kerning first=199 second=331 amount=-1 +kerning first=67 second=85 amount=-1 +kerning first=230 second=289 amount=-1 +kerning first=89 second=216 amount=-1 +kerning first=304 second=67 amount=-1 +kerning first=70 second=241 amount=-1 +kerning first=1051 second=1075 amount=-1 +kerning first=194 second=216 amount=-1 +kerning first=304 second=113 amount=-1 +kerning first=350 second=366 amount=-1 +kerning first=221 second=262 amount=-1 +kerning first=268 second=67 amount=-1 +kerning first=220 second=195 amount=-1 +kerning first=74 second=274 amount=-1 +kerning first=266 second=216 amount=-1 +kerning first=232 second=113 amount=-1 +kerning first=298 second=79 amount=-1 +kerning first=1041 second=1049 amount=-1 +kerning first=8222 second=286 amount=-1 +kerning first=278 second=366 amount=-1 +kerning first=268 second=113 amount=-1 +kerning first=196 second=67 amount=-1 +kerning first=70 second=216 amount=-1 +kerning first=370 second=79 amount=-1 +kerning first=79 second=195 amount=-1 +kerning first=1077 second=1095 amount=-1 +kerning first=364 second=195 amount=-1 +kerning first=1041 second=1113 amount=-1 +kerning first=235 second=104 amount=-1 +kerning first=263 second=225 amount=-1 +kerning first=8217 second=365 amount=-1 +kerning first=72 second=206 amount=-1 +kerning first=280 second=250 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=221 second=261 amount=-1 +kerning first=199 second=104 amount=-1 +kerning first=209 second=357 amount=-1 +kerning first=70 second=70 amount=-1 +kerning first=8218 second=257 amount=-1 +kerning first=251 second=345 amount=-1 +kerning first=1048 second=1084 amount=-1 +kerning first=287 second=345 amount=-1 +kerning first=365 second=335 amount=-1 +kerning first=323 second=274 amount=-1 +kerning first=323 second=345 amount=-1 +kerning first=258 second=46 amount=-1 +kerning first=211 second=70 amount=-1 +kerning first=352 second=250 amount=-1 +kerning first=222 second=46 amount=-1 +kerning first=202 second=368 amount=-1 +kerning first=70 second=230 amount=-1 +kerning first=346 second=201 amount=-1 +kerning first=283 second=122 amount=-1 +kerning first=77 second=271 amount=-1 +kerning first=79 second=8221 amount=-2 +kerning first=274 second=368 amount=-1 +kerning first=304 second=213 amount=-1 +kerning first=323 second=207 amount=-1 +kerning first=245 second=46 amount=-1 +kerning first=274 second=201 amount=-1 +kerning first=310 second=368 amount=-1 +kerning first=268 second=213 amount=-1 +kerning first=277 second=107 amount=-1 +kerning first=8222 second=281 amount=-1 +kerning first=70 second=122 amount=-1 +kerning first=200 second=317 amount=-1 +kerning first=202 second=201 amount=-1 +kerning first=103 second=250 amount=-1 +kerning first=99 second=369 amount=-1 +kerning first=256 second=8221 amount=-2 +kerning first=200 second=336 amount=-1 +kerning first=272 second=317 amount=-1 +kerning first=263 second=311 amount=-1 +kerning first=310 second=116 amount=-1 +kerning first=328 second=8221 amount=-2 +kerning first=65 second=366 amount=-1 +kerning first=217 second=204 amount=-1 +kerning first=203 second=252 amount=-1 +kerning first=364 second=8221 amount=-1 +kerning first=374 second=216 amount=-1 +kerning first=198 second=8217 amount=-1 +kerning first=323 second=45 amount=-1 +kerning first=344 second=336 amount=-1 +kerning first=78 second=378 amount=-1 +kerning first=362 second=271 amount=-1 +kerning first=346 second=368 amount=-1 +kerning first=74 second=207 amount=-1 +kerning first=327 second=378 amount=-1 +kerning first=1054 second=1041 amount=-1 +kerning first=325 second=204 amount=-1 +kerning first=291 second=378 amount=-1 +kerning first=80 second=262 amount=-1 +kerning first=362 second=198 amount=-1 +kerning first=87 second=8218 amount=-2 +kerning first=220 second=268 amount=-1 +kerning first=1068 second=1068 amount=-1 +kerning first=187 second=86 amount=-2 +kerning first=89 second=235 amount=-1 +kerning first=339 second=103 amount=-1 +kerning first=323 second=347 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=364 second=268 amount=-1 +kerning first=230 second=235 amount=-1 +kerning first=287 second=347 amount=-1 +kerning first=266 second=235 amount=-1 +kerning first=302 second=235 amount=-1 +kerning first=209 second=290 amount=-1 +kerning first=67 second=77 amount=-1 +kerning first=74 second=347 amount=-1 +kerning first=262 second=350 amount=-1 +kerning first=374 second=235 amount=-1 +kerning first=218 second=198 amount=-1 +kerning first=1060 second=1056 amount=-1 +kerning first=196 second=213 amount=-1 +kerning first=1070 second=1069 amount=-1 +kerning first=85 second=350 amount=-1 +kerning first=1065 second=1077 amount=-1 +kerning first=86 second=363 amount=-1 +kerning first=199 second=277 amount=-1 +kerning first=1058 second=1073 amount=-1 +kerning first=8217 second=225 amount=-1 +kerning first=8217 second=378 amount=-1 +kerning first=263 second=363 amount=-1 +kerning first=362 second=213 amount=-1 +kerning first=1033 second=1062 amount=-1 +kerning first=298 second=350 amount=-1 +kerning first=307 second=277 amount=-1 +kerning first=370 second=350 amount=-1 +kerning first=362 second=366 amount=-1 +kerning first=1118 second=1087 amount=-1 +kerning first=67 second=231 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=104 second=244 amount=-1 +kerning first=362 second=338 amount=-1 +kerning first=209 second=244 amount=-1 +kerning first=8222 second=267 amount=-1 +kerning first=356 second=283 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=281 second=244 amount=-1 +kerning first=210 second=82 amount=-1 +kerning first=316 second=231 amount=-1 +kerning first=268 second=286 amount=-1 +kerning first=218 second=338 amount=-1 +kerning first=212 second=354 amount=-1 +kerning first=304 second=286 amount=-1 +kerning first=87 second=351 amount=-1 +kerning first=282 second=82 amount=-1 +kerning first=8222 second=289 amount=-1 +kerning first=258 second=8249 amount=-1 +kerning first=100 second=235 amount=-1 +kerning first=204 second=79 amount=-1 +kerning first=354 second=101 amount=-1 +kerning first=85 second=66 amount=-1 +kerning first=370 second=283 amount=-1 +kerning first=205 second=235 amount=-1 +kerning first=45 second=209 amount=-1 +kerning first=78 second=248 amount=-1 +kerning first=304 second=366 amount=-1 +kerning first=298 second=283 amount=-1 +kerning first=277 second=235 amount=-1 +kerning first=70 second=371 amount=-1 +kerning first=325 second=331 amount=-1 +kerning first=74 second=261 amount=-1 +kerning first=226 second=283 amount=-1 +kerning first=262 second=283 amount=-1 +kerning first=1039 second=1076 amount=-1 +kerning first=1042 second=1067 amount=-1 +kerning first=1038 second=1080 amount=-1 +kerning first=103 second=380 amount=-1 +kerning first=244 second=380 amount=-1 +kerning first=45 second=374 amount=-2 +kerning first=1062 second=1076 amount=-1 +kerning first=370 second=66 amount=-1 +kerning first=366 second=209 amount=-1 +kerning first=334 second=66 amount=-1 +kerning first=73 second=46 amount=-1 +kerning first=80 second=213 amount=-1 +kerning first=330 second=209 amount=-1 +kerning first=298 second=66 amount=-1 +kerning first=262 second=66 amount=-1 +kerning first=266 second=270 amount=-1 +kerning first=302 second=270 amount=-1 +kerning first=258 second=336 amount=-1 +kerning first=199 second=323 amount=-1 +kerning first=287 second=44 amount=-1 +kerning first=218 second=252 amount=-1 +kerning first=330 second=336 amount=-1 +kerning first=68 second=192 amount=-1 +kerning first=366 second=336 amount=-1 +kerning first=1067 second=1045 amount=-1 +kerning first=1031 second=1045 amount=-1 +kerning first=67 second=380 amount=-1 +kerning first=362 second=252 amount=-1 +kerning first=286 second=220 amount=-1 +kerning first=116 second=187 amount=-1 +kerning first=187 second=205 amount=-1 +kerning first=220 second=244 amount=-1 +kerning first=305 second=231 amount=-1 +kerning first=296 second=201 amount=-1 +kerning first=327 second=218 amount=-1 +kerning first=363 second=248 amount=-1 +kerning first=220 second=214 amount=-1 +kerning first=366 second=371 amount=-1 +kerning first=212 second=115 amount=-1 +kerning first=258 second=290 amount=-1 +kerning first=375 second=104 amount=-1 +kerning first=328 second=244 amount=-1 +kerning first=364 second=244 amount=-1 +kerning first=1055 second=1045 amount=-1 +kerning first=219 second=218 amount=-1 +kerning first=219 second=248 amount=-1 +kerning first=364 second=214 amount=-1 +kerning first=233 second=231 amount=-1 +kerning first=291 second=248 amount=-1 +kerning first=269 second=231 amount=-1 +kerning first=83 second=201 amount=-1 +kerning first=1041 second=1041 amount=-1 +kerning first=97 second=314 amount=-1 +kerning first=255 second=353 amount=-1 +kerning first=228 second=275 amount=-1 +kerning first=275 second=243 amount=-1 +kerning first=235 second=353 amount=-1 +kerning first=262 second=108 amount=-1 +kerning first=1066 second=1049 amount=-1 +kerning first=221 second=8220 amount=-1 +kerning first=1027 second=1088 amount=-1 +kerning first=264 second=275 amount=-1 +kerning first=241 second=45 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=1055 second=1081 amount=-1 +kerning first=72 second=366 amount=-1 +kerning first=1091 second=1081 amount=-1 +kerning first=281 second=249 amount=-1 +kerning first=87 second=275 amount=-1 +kerning first=85 second=302 amount=-1 +kerning first=108 second=363 amount=-1 +kerning first=207 second=284 amount=-1 +kerning first=1042 second=1119 amount=-1 +kerning first=199 second=353 amount=-1 +kerning first=80 second=370 amount=-1 +kerning first=199 second=223 amount=-1 +kerning first=203 second=80 amount=-1 +kerning first=267 second=347 amount=-1 +kerning first=74 second=116 amount=-1 +kerning first=268 second=232 amount=-1 +kerning first=345 second=44 amount=-1 +kerning first=1050 second=1098 amount=-1 +kerning first=232 second=232 amount=-1 +kerning first=196 second=362 amount=-1 +kerning first=207 second=200 amount=-1 +kerning first=268 second=362 amount=-1 +kerning first=86 second=225 amount=-1 +kerning first=67 second=226 amount=-1 +kerning first=195 second=266 amount=-1 +kerning first=66 second=200 amount=-1 +kerning first=286 second=8250 amount=-1 +kerning first=304 second=232 amount=-1 +kerning first=304 second=362 amount=-1 +kerning first=85 second=296 amount=-1 +kerning first=101 second=234 amount=-1 +kerning first=278 second=71 amount=-1 +kerning first=278 second=209 amount=-1 +kerning first=8222 second=262 amount=-1 +kerning first=270 second=354 amount=-1 +kerning first=334 second=296 amount=-1 +kerning first=327 second=71 amount=-1 +kerning first=8217 second=279 amount=-1 +kerning first=1054 second=1031 amount=-1 +kerning first=230 second=318 amount=-1 +kerning first=206 second=71 amount=-1 +kerning first=298 second=296 amount=-1 +kerning first=85 second=283 amount=-1 +kerning first=266 second=263 amount=-1 +kerning first=314 second=234 amount=-1 +kerning first=74 second=219 amount=-1 +kerning first=201 second=206 amount=-1 +kerning first=1056 second=1037 amount=-1 +kerning first=219 second=8220 amount=-1 +kerning first=268 second=72 amount=-1 +kerning first=1043 second=1089 amount=-1 +kerning first=323 second=315 amount=-1 +kerning first=106 second=287 amount=-1 +kerning first=212 second=313 amount=-1 +kerning first=291 second=8220 amount=-2 +kerning first=229 second=111 amount=-1 +kerning first=116 second=267 amount=-1 +kerning first=355 second=287 amount=-1 +kerning first=363 second=8220 amount=-1 +kerning first=194 second=213 amount=-1 +kerning first=327 second=8220 amount=-1 +kerning first=304 second=72 amount=-1 +kerning first=283 second=287 amount=-1 +kerning first=334 second=88 amount=-1 +kerning first=1060 second=1024 amount=-1 +kerning first=202 second=298 amount=-1 +kerning first=71 second=313 amount=-1 +kerning first=74 second=315 amount=-1 +kerning first=262 second=120 amount=-1 +kerning first=213 second=85 amount=-1 +kerning first=79 second=374 amount=-1 +kerning first=365 second=267 amount=-1 +kerning first=330 second=263 amount=-1 +kerning first=366 second=263 amount=-1 +kerning first=370 second=120 amount=-1 +kerning first=1059 second=1028 amount=-1 +kerning first=187 second=118 amount=-1 +kerning first=221 second=267 amount=-1 +kerning first=296 second=114 amount=-1 +kerning first=1047 second=1083 amount=-1 +kerning first=217 second=278 amount=-1 +kerning first=195 second=212 amount=-1 +kerning first=114 second=8220 amount=-1 +kerning first=73 second=278 amount=-1 +kerning first=368 second=114 amount=-1 +kerning first=72 second=334 amount=-1 +kerning first=88 second=81 amount=-1 +kerning first=119 second=114 amount=-1 +kerning first=354 second=45 amount=-1 +kerning first=264 second=115 amount=-1 +kerning first=286 second=278 amount=-1 +kerning first=1062 second=1092 amount=-1 +kerning first=224 second=114 amount=-1 +kerning first=296 second=331 amount=-1 +kerning first=255 second=367 amount=-1 +kerning first=217 second=199 amount=-1 +kerning first=117 second=263 amount=-1 +kerning first=368 second=331 amount=-1 +kerning first=87 second=115 amount=-1 +kerning first=83 second=114 amount=-1 +kerning first=193 second=81 amount=-1 +kerning first=219 second=194 amount=-1 +kerning first=325 second=199 amount=-1 +kerning first=1062 second=1116 amount=-1 +kerning first=368 second=363 amount=-1 +kerning first=277 second=365 amount=-1 +kerning first=354 second=74 amount=-1 +kerning first=325 second=310 amount=-1 +kerning first=65 second=361 amount=-1 +kerning first=1042 second=1095 amount=-1 +kerning first=108 second=106 amount=-1 +kerning first=288 second=203 amount=-1 +kerning first=217 second=310 amount=-1 +kerning first=350 second=361 amount=-1 +kerning first=364 second=251 amount=-1 +kerning first=235 second=269 amount=-1 +kerning first=278 second=361 amount=-1 +kerning first=271 second=269 amount=-1 +kerning first=83 second=8221 amount=-1 +kerning first=206 second=288 amount=-1 +kerning first=1052 second=1036 amount=-1 +kerning first=213 second=65 amount=-1 +kerning first=197 second=334 amount=-1 +kerning first=366 second=282 amount=-1 +kerning first=330 second=282 amount=-1 +kerning first=200 second=78 amount=-1 +kerning first=207 second=230 amount=-1 +kerning first=259 second=246 amount=-1 +kerning first=278 second=288 amount=-1 +kerning first=310 second=355 amount=-1 +kerning first=1059 second=1101 amount=-1 +kerning first=1060 second=1043 amount=-1 +kerning first=274 second=355 amount=-1 +kerning first=77 second=325 amount=-1 +kerning first=1068 second=1055 amount=-1 +kerning first=211 second=313 amount=-1 +kerning first=81 second=282 amount=-1 +kerning first=246 second=318 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=263 second=187 amount=-1 +kerning first=199 second=75 amount=-1 +kerning first=8217 second=333 amount=-1 +kerning first=205 second=346 amount=-1 +kerning first=218 second=325 amount=-1 +kerning first=65 second=288 amount=-1 +kerning first=197 second=87 amount=-1 +kerning first=290 second=325 amount=-1 +kerning first=267 second=291 amount=-1 +kerning first=315 second=220 amount=-1 +kerning first=355 second=187 amount=-1 +kerning first=118 second=251 amount=-1 +kerning first=1055 second=1051 amount=-1 +kerning first=187 second=251 amount=-1 +kerning first=263 second=279 amount=-1 +kerning first=283 second=187 amount=-1 +kerning first=105 second=245 amount=-1 +kerning first=85 second=337 amount=-1 +kerning first=246 second=8217 amount=-2 +kerning first=282 second=8217 amount=-1 +kerning first=354 second=8217 amount=-1 +kerning first=250 second=171 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=1027 second=1073 amount=-1 +kerning first=67 second=99 amount=-1 +kerning first=192 second=221 amount=-1 +kerning first=205 second=75 amount=-1 +kerning first=277 second=99 amount=-1 +kerning first=211 second=187 amount=-1 +kerning first=354 second=245 amount=-1 +kerning first=1071 second=1119 amount=-1 +kerning first=227 second=279 amount=-1 +kerning first=45 second=68 amount=-1 +kerning first=298 second=337 amount=-1 +kerning first=205 second=99 amount=-1 +kerning first=106 second=187 amount=-1 +kerning first=83 second=206 amount=-1 +kerning first=262 second=337 amount=-1 +kerning first=241 second=99 amount=-1 +kerning first=364 second=261 amount=-1 +kerning first=262 second=242 amount=-1 +kerning first=266 second=99 amount=-1 +kerning first=1071 second=1043 amount=-1 +kerning first=1070 second=1043 amount=-1 +kerning first=298 second=242 amount=-1 +kerning first=302 second=99 amount=-1 +kerning first=1059 second=1082 amount=-1 +kerning first=209 second=281 amount=-1 +kerning first=270 second=86 amount=-1 +kerning first=259 second=281 amount=-1 +kerning first=226 second=242 amount=-1 +kerning first=230 second=99 amount=-1 +kerning first=204 second=347 amount=-1 +kerning first=261 second=382 amount=-1 +kerning first=99 second=347 amount=-1 +kerning first=370 second=242 amount=-1 +kerning first=209 second=268 amount=-1 +kerning first=374 second=99 amount=-1 +kerning first=106 second=233 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=220 second=120 amount=-1 +kerning first=364 second=290 amount=-1 +kerning first=219 second=77 amount=-1 +kerning first=296 second=277 amount=-1 +kerning first=78 second=77 amount=-1 +kerning first=8218 second=199 amount=-1 +kerning first=282 second=264 amount=-1 +kerning first=70 second=233 amount=-1 +kerning first=224 second=277 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=365 second=279 amount=-1 +kerning first=283 second=233 amount=-1 +kerning first=269 second=109 amount=-1 +kerning first=1049 second=1056 amount=-1 +kerning first=69 second=264 amount=-1 +kerning first=271 second=8217 amount=-1 +kerning first=199 second=82 amount=-1 +kerning first=307 second=8217 amount=-1 +kerning first=355 second=233 amount=-1 +kerning first=325 second=364 amount=-1 +kerning first=213 second=193 amount=-1 +kerning first=379 second=8217 amount=-1 +kerning first=73 second=224 amount=-1 +kerning first=281 second=108 amount=-1 +kerning first=220 second=290 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=217 second=364 amount=-1 +kerning first=8250 second=114 amount=-1 +kerning first=199 second=8217 amount=-1 +kerning first=252 second=283 amount=-1 +kerning first=235 second=8217 amount=-2 +kerning first=1056 second=1091 amount=-1 +kerning first=245 second=108 amount=-1 +kerning first=207 second=338 amount=-1 +kerning first=202 second=355 amount=-1 +kerning first=195 second=255 amount=-1 +kerning first=1042 second=1113 amount=-1 +kerning first=353 second=108 amount=-1 +kerning first=1047 second=1061 amount=-1 +kerning first=67 second=334 amount=-1 +kerning first=84 second=273 amount=-1 +kerning first=80 second=286 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=211 second=347 amount=-1 +kerning first=275 second=351 amount=-1 +kerning first=272 second=78 amount=-1 +kerning first=364 second=8220 amount=-1 +kerning first=1064 second=1070 amount=-1 +kerning first=221 second=286 amount=-1 +kerning first=213 second=87 amount=-1 +kerning first=310 second=171 amount=-1 +kerning first=86 second=333 amount=-1 +kerning first=263 second=112 amount=-1 +kerning first=346 second=171 amount=-1 +kerning first=1030 second=1095 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=302 second=278 amount=-1 +kerning first=382 second=171 amount=-1 +kerning first=289 second=307 amount=-1 +kerning first=263 second=333 amount=-1 +kerning first=196 second=254 amount=-1 +kerning first=66 second=71 amount=-1 +kerning first=232 second=254 amount=-1 +kerning first=252 second=269 amount=-1 +kerning first=227 second=333 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=106 second=263 amount=-1 +kerning first=350 second=117 amount=-1 +kerning first=314 second=117 amount=-1 +kerning first=195 second=374 amount=-1 +kerning first=79 second=298 amount=-1 +kerning first=278 second=117 amount=-1 +kerning first=1070 second=1067 amount=-1 +kerning first=97 second=171 amount=-1 +kerning first=1058 second=1083 amount=-1 +kerning first=283 second=100 amount=-1 +kerning first=278 second=212 amount=-1 +kerning first=283 second=263 amount=-1 +kerning first=202 second=171 amount=-1 +kerning first=1052 second=1039 amount=-1 +kerning first=355 second=263 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=274 second=171 amount=-1 +kerning first=220 second=298 amount=-1 +kerning first=1047 second=1118 amount=-1 +kerning first=274 second=206 amount=-1 +kerning first=45 second=82 amount=-1 +kerning first=229 second=382 amount=-1 +kerning first=202 second=206 amount=-1 +kerning first=207 second=330 amount=-1 +kerning first=79 second=353 amount=-1 +kerning first=232 second=316 amount=-1 +kerning first=234 second=246 amount=-1 +kerning first=85 second=120 amount=-1 +kerning first=70 second=100 amount=-1 +kerning first=375 second=103 amount=-1 +kerning first=1048 second=1060 amount=-1 +kerning first=196 second=316 amount=-1 +kerning first=121 second=120 amount=-1 +kerning first=1071 second=1077 amount=-1 +kerning first=68 second=8221 amount=-2 +kerning first=66 second=330 amount=-1 +kerning first=268 second=316 amount=-1 +kerning first=70 second=263 amount=-1 +kerning first=346 second=206 amount=-1 +kerning first=104 second=8221 amount=-2 +kerning first=267 second=103 amount=-1 +kerning first=103 second=109 amount=-1 +kerning first=1049 second=1048 amount=-1 +kerning first=234 second=8218 amount=-1 +kerning first=89 second=194 amount=-1 +kerning first=231 second=103 amount=-1 +kerning first=198 second=8218 amount=-1 +kerning first=201 second=252 amount=-1 +kerning first=209 second=8221 amount=-1 +kerning first=304 second=74 amount=-1 +kerning first=366 second=68 amount=-1 +kerning first=245 second=8221 amount=-2 +kerning first=67 second=109 amount=-1 +kerning first=241 second=113 amount=-1 +kerning first=193 second=217 amount=-1 +kerning first=281 second=8221 amount=-2 +kerning first=284 second=313 amount=-1 +kerning first=81 second=68 amount=-1 +kerning first=353 second=8221 amount=-2 +kerning first=270 second=8218 amount=-1 +kerning first=219 second=85 amount=-1 +kerning first=296 second=223 amount=-1 +kerning first=74 second=98 amount=-1 +kerning first=67 second=280 amount=-1 +kerning first=282 second=210 amount=-1 +kerning first=103 second=326 amount=-1 +kerning first=78 second=85 amount=-1 +kerning first=350 second=8250 amount=-1 +kerning first=1064 second=1057 amount=-1 +kerning first=205 second=66 amount=-1 +kerning first=287 second=98 amount=-1 +kerning first=327 second=302 amount=-1 +kerning first=1044 second=1081 amount=-1 +kerning first=219 second=302 amount=-1 +kerning first=69 second=210 amount=-1 +kerning first=368 second=223 amount=-1 +kerning first=330 second=339 amount=-1 +kerning first=73 second=243 amount=-1 +kerning first=259 second=335 amount=-1 +kerning first=355 second=99 amount=-1 +kerning first=280 second=280 amount=-1 +kerning first=365 second=232 amount=-1 +kerning first=74 second=350 amount=-1 +kerning first=78 second=302 amount=-1 +kerning first=366 second=339 amount=-1 +kerning first=194 second=107 amount=-1 +kerning first=109 second=243 amount=-1 +kerning first=250 second=243 amount=-1 +kerning first=117 second=339 amount=-1 +kerning first=367 second=335 amount=-1 +kerning first=83 second=223 amount=-1 +kerning first=1056 second=1055 amount=-1 +kerning first=8222 second=316 amount=-1 +kerning first=274 second=363 amount=-1 +kerning first=323 second=350 amount=-1 +kerning first=66 second=284 amount=-1 +kerning first=310 second=363 amount=-1 +kerning first=364 second=344 amount=-1 +kerning first=346 second=363 amount=-1 +kerning first=364 second=298 amount=-1 +kerning first=296 second=355 amount=-1 +kerning first=1034 second=1042 amount=-1 +kerning first=198 second=357 amount=-1 +kerning first=332 second=46 amount=-1 +kerning first=257 second=232 amount=-1 +kerning first=204 second=76 amount=-1 +kerning first=221 second=232 amount=-1 +kerning first=1065 second=1072 amount=-1 +kerning first=100 second=289 amount=-1 +kerning first=234 second=357 amount=-1 +kerning first=79 second=344 amount=-1 +kerning first=217 second=234 amount=-1 +kerning first=1050 second=1114 amount=-1 +kerning first=1055 second=1027 amount=-1 +kerning first=325 second=234 amount=-1 +kerning first=277 second=289 amount=-1 +kerning first=187 second=354 amount=-1 +kerning first=289 second=234 amount=-1 +kerning first=241 second=289 amount=-1 +kerning first=1049 second=1054 amount=-1 +kerning first=83 second=8249 amount=-1 +kerning first=327 second=85 amount=-1 +kerning first=119 second=8249 amount=-1 +kerning first=1053 second=1108 amount=-1 +kerning first=304 second=262 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=202 second=280 amount=-1 +kerning first=350 second=204 amount=-1 +kerning first=323 second=79 amount=-1 +kerning first=290 second=66 amount=-1 +kerning first=8250 second=377 amount=-1 +kerning first=195 second=366 amount=-1 +kerning first=78 second=325 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=278 second=204 amount=-1 +kerning first=283 second=46 amount=-1 +kerning first=279 second=113 amount=-1 +kerning first=89 second=378 amount=-1 +kerning first=207 second=67 amount=-1 +kerning first=1073 second=1084 amount=-1 +kerning first=296 second=345 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=200 second=70 amount=-1 +kerning first=203 second=332 amount=-1 +kerning first=270 second=192 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=269 second=250 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=233 second=250 amount=-1 +kerning first=1056 second=1065 amount=-1 +kerning first=204 second=274 amount=-1 +kerning first=211 second=317 amount=-1 +kerning first=366 second=122 amount=-1 +kerning first=370 second=207 amount=-1 +kerning first=83 second=323 amount=-1 +kerning first=221 second=213 amount=-1 +kerning first=334 second=207 amount=-1 +kerning first=74 second=369 amount=-1 +kerning first=8250 second=106 amount=-1 +kerning first=330 second=122 amount=-1 +kerning first=272 second=70 amount=-1 +kerning first=1088 second=1093 amount=-1 +kerning first=287 second=369 amount=-1 +kerning first=291 second=108 amount=-1 +kerning first=8217 second=368 amount=-1 +kerning first=213 second=201 amount=-1 +kerning first=356 second=259 amount=-1 +kerning first=200 second=8217 amount=-1 +kerning first=207 second=113 amount=-1 +kerning first=305 second=8222 amount=-1 +kerning first=87 second=256 amount=-1 +kerning first=302 second=378 amount=-1 +kerning first=368 second=323 amount=-1 +kerning first=1066 second=1041 amount=-1 +kerning first=233 second=8222 amount=-1 +kerning first=1030 second=1041 amount=-1 +kerning first=72 second=201 amount=-1 +kerning first=85 second=207 amount=-1 +kerning first=230 second=378 amount=-1 +kerning first=296 second=323 amount=-1 +kerning first=104 second=231 amount=-1 +kerning first=8220 second=194 amount=-2 +kerning first=8222 second=362 amount=-1 +kerning first=70 second=317 amount=-1 +kerning first=206 second=204 amount=-1 +kerning first=298 second=207 amount=-1 +kerning first=310 second=119 amount=-1 +kerning first=196 second=262 amount=-1 +kerning first=262 second=207 amount=-1 +kerning first=374 second=378 amount=-1 +kerning first=263 second=314 amount=-1 +kerning first=227 second=314 amount=-1 +kerning first=234 second=369 amount=-1 +kerning first=1039 second=1081 amount=-1 +kerning first=8218 second=100 amount=-1 +kerning first=198 second=369 amount=-1 +kerning first=362 second=355 amount=-1 +kerning first=67 second=201 amount=-1 +kerning first=70 second=366 amount=-1 +kerning first=368 second=116 amount=-1 +kerning first=366 second=204 amount=-1 +kerning first=80 second=198 amount=-1 +kerning first=1058 second=1105 amount=-1 +kerning first=335 second=314 amount=-1 +kerning first=1053 second=1084 amount=-1 +kerning first=330 second=204 amount=-1 +kerning first=221 second=198 amount=-1 +kerning first=296 second=116 amount=-1 +kerning first=197 second=363 amount=-1 +kerning first=73 second=317 amount=-1 +kerning first=268 second=210 amount=-1 +kerning first=233 second=363 amount=-1 +kerning first=68 second=207 amount=-1 +kerning first=304 second=210 amount=-1 +kerning first=366 second=378 amount=-1 +kerning first=269 second=363 amount=-1 +kerning first=209 second=207 amount=-1 +kerning first=196 second=210 amount=-1 +kerning first=325 second=268 amount=-1 +kerning first=214 second=317 amount=-1 +kerning first=1088 second=1078 amount=-1 +kerning first=211 second=366 amount=-1 +kerning first=86 second=67 amount=-1 +kerning first=85 second=101 amount=-1 +kerning first=68 second=354 amount=-1 +kerning first=69 second=213 amount=-1 +kerning first=347 second=8250 amount=-1 +kerning first=264 second=73 amount=-1 +kerning first=364 second=219 amount=-1 +kerning first=84 second=8220 amount=-1 +kerning first=275 second=8250 amount=-1 +kerning first=282 second=213 amount=-1 +kerning first=262 second=101 amount=-1 +kerning first=74 second=296 amount=-1 +kerning first=226 second=101 amount=-1 +kerning first=120 second=8220 amount=-1 +kerning first=203 second=8250 amount=-1 +kerning first=1062 second=1081 amount=-1 +kerning first=217 second=268 amount=-1 +kerning first=8216 second=362 amount=-1 +kerning first=220 second=219 amount=-1 +kerning first=261 second=8220 amount=-2 +kerning first=268 second=298 amount=-1 +kerning first=298 second=101 amount=-1 +kerning first=225 second=8220 amount=-2 +kerning first=275 second=187 amount=-1 +kerning first=277 second=277 amount=-1 +kerning first=370 second=101 amount=-1 +kerning first=241 second=277 amount=-1 +kerning first=225 second=122 amount=-1 +kerning first=279 second=116 amount=-1 +kerning first=205 second=277 amount=-1 +kerning first=232 second=318 amount=-1 +kerning first=79 second=219 amount=-1 +kerning first=261 second=122 amount=-1 +kerning first=8222 second=264 amount=-1 +kerning first=81 second=204 amount=-1 +kerning first=45 second=204 amount=-1 +kerning first=80 second=345 amount=-1 +kerning first=323 second=296 amount=-1 +kerning first=1051 second=1072 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=207 second=273 amount=-1 +kerning first=88 second=79 amount=-1 +kerning first=324 second=235 amount=-1 +kerning first=227 second=287 amount=-1 +kerning first=100 second=277 amount=-1 +kerning first=363 second=231 amount=-1 +kerning first=206 second=283 amount=-1 +kerning first=366 second=231 amount=-1 +kerning first=101 second=283 amount=-1 +kerning first=72 second=338 amount=-1 +kerning first=333 second=8220 amount=-2 +kerning first=193 second=286 amount=-1 +kerning first=87 second=226 amount=-1 +kerning first=73 second=83 amount=-1 +kerning first=1039 second=1108 amount=-1 +kerning first=77 second=274 amount=-1 +kerning first=81 second=351 amount=-1 +kerning first=263 second=287 amount=-1 +kerning first=369 second=8220 amount=-1 +kerning first=366 second=351 amount=-1 +kerning first=330 second=351 amount=-1 +kerning first=264 second=226 amount=-1 +kerning first=73 second=290 amount=-1 +kerning first=1060 second=1065 amount=-1 +kerning first=1067 second=1047 amount=-1 +kerning first=88 second=286 amount=-1 +kerning first=364 second=192 amount=-1 +kerning first=1031 second=1047 amount=-1 +kerning first=203 second=278 amount=-1 +kerning first=219 second=44 amount=-2 +kerning first=99 second=244 amount=-1 +kerning first=205 second=70 amount=-1 +kerning first=298 second=230 amount=-1 +kerning first=362 second=274 amount=-1 +kerning first=1108 second=1103 amount=-1 +kerning first=220 second=192 amount=-1 +kerning first=8217 second=67 amount=-1 +kerning first=204 second=244 amount=-1 +kerning first=290 second=274 amount=-1 +kerning first=240 second=244 amount=-1 +kerning first=1055 second=1056 amount=-1 +kerning first=354 second=333 amount=-1 +kerning first=218 second=274 amount=-1 +kerning first=8250 second=203 amount=-1 +kerning first=85 second=74 amount=-1 +kerning first=1064 second=1069 amount=-1 +kerning first=80 second=171 amount=-1 +kerning first=116 second=171 amount=-1 +kerning first=264 second=100 amount=-1 +kerning first=1051 second=1099 amount=-1 +kerning first=73 second=327 amount=-1 +kerning first=298 second=74 amount=-1 +kerning first=221 second=171 amount=-2 +kerning first=280 second=201 amount=-1 +kerning first=257 second=171 amount=-1 +kerning first=370 second=74 amount=-1 +kerning first=74 second=269 amount=-1 +kerning first=110 second=269 amount=-1 +kerning first=117 second=231 amount=-1 +kerning first=267 second=8218 amount=-1 +kerning first=334 second=362 amount=-1 +kerning first=218 second=70 amount=-1 +kerning first=201 second=266 amount=-1 +kerning first=1047 second=1088 amount=-1 +kerning first=1078 second=1118 amount=-1 +kerning first=325 second=214 amount=-1 +kerning first=8218 second=253 amount=-1 +kerning first=251 second=269 amount=-1 +kerning first=370 second=362 amount=-1 +kerning first=209 second=69 amount=-1 +kerning first=287 second=269 amount=-1 +kerning first=350 second=310 amount=-1 +kerning first=1036 second=1090 amount=-1 +kerning first=278 second=310 amount=-1 +kerning first=257 second=318 amount=-1 +kerning first=213 second=66 amount=-1 +kerning first=221 second=45 amount=-2 +kerning first=205 second=370 amount=-1 +kerning first=257 second=45 amount=-1 +kerning first=192 second=355 amount=-1 +kerning first=116 second=45 amount=-1 +kerning first=86 second=260 amount=-1 +kerning first=313 second=370 amount=-1 +kerning first=365 second=45 amount=-1 +kerning first=217 second=214 amount=-1 +kerning first=1071 second=1097 amount=-1 +kerning first=1056 second=1062 amount=-1 +kerning first=66 second=382 amount=-1 +kerning first=262 second=362 amount=-1 +kerning first=87 second=199 amount=-1 +kerning first=261 second=275 amount=-1 +kerning first=221 second=252 amount=-1 +kerning first=225 second=275 amount=-1 +kerning first=205 second=223 amount=-1 +kerning first=1048 second=1028 amount=-1 +kerning first=8222 second=210 amount=-1 +kerning first=81 second=258 amount=-1 +kerning first=1062 second=1060 amount=-1 +kerning first=268 second=78 amount=-1 +kerning first=8222 second=84 amount=-1 +kerning first=205 second=97 amount=-1 +kerning first=354 second=267 amount=-1 +kerning first=104 second=234 amount=-1 +kerning first=203 second=251 amount=-1 +kerning first=209 second=234 amount=-1 +kerning first=45 second=79 amount=-1 +kerning first=8250 second=298 amount=-1 +kerning first=204 second=217 amount=-1 +kerning first=269 second=106 amount=-1 +kerning first=366 second=258 amount=-1 +kerning first=1039 second=1027 amount=-1 +kerning first=201 second=200 amount=-1 +kerning first=269 second=243 amount=-1 +kerning first=72 second=257 amount=-1 +kerning first=233 second=243 amount=-1 +kerning first=275 second=251 amount=-1 +kerning first=305 second=243 amount=-1 +kerning first=1068 second=1053 amount=-1 +kerning first=1031 second=1100 amount=-1 +kerning first=223 second=8221 amount=-2 +kerning first=116 second=225 amount=-1 +kerning first=203 second=206 amount=-1 +kerning first=80 second=72 amount=-1 +kerning first=110 second=242 amount=-1 +kerning first=259 second=8221 amount=-2 +kerning first=85 second=335 amount=-1 +kerning first=257 second=345 amount=-1 +kerning first=72 second=187 amount=-1 +kerning first=226 second=335 amount=-1 +kerning first=74 second=242 amount=-1 +kerning first=229 second=232 amount=-1 +kerning first=298 second=335 amount=-1 +kerning first=287 second=242 amount=-1 +kerning first=1039 second=1054 amount=-1 +kerning first=262 second=335 amount=-1 +kerning first=368 second=277 amount=-1 +kerning first=370 second=335 amount=-1 +kerning first=74 second=100 amount=-1 +kerning first=1052 second=1105 amount=-1 +kerning first=117 second=8249 amount=-1 +kerning first=251 second=242 amount=-1 +kerning first=281 second=234 amount=-1 +kerning first=330 second=330 amount=-1 +kerning first=217 second=241 amount=-1 +kerning first=286 second=344 amount=-1 +kerning first=1064 second=1096 amount=-1 +kerning first=113 second=8217 amount=-2 +kerning first=1028 second=1096 amount=-1 +kerning first=197 second=336 amount=-1 +kerning first=325 second=241 amount=-1 +kerning first=355 second=335 amount=-1 +kerning first=86 second=233 amount=-1 +kerning first=289 second=241 amount=-1 +kerning first=1051 second=1045 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=192 second=199 amount=-1 +kerning first=316 second=114 amount=-1 +kerning first=200 second=80 amount=-1 +kerning first=45 second=378 amount=-1 +kerning first=366 second=200 amount=-1 +kerning first=192 second=46 amount=-1 +kerning first=264 second=199 amount=-1 +kerning first=84 second=275 amount=-1 +kerning first=263 second=233 amount=-1 +kerning first=277 second=250 amount=-1 +kerning first=352 second=114 amount=-1 +kerning first=264 second=46 amount=-1 +kerning first=68 second=327 amount=-1 +kerning first=103 second=114 amount=-1 +kerning first=1058 second=1113 amount=-1 +kerning first=336 second=46 amount=-1 +kerning first=244 second=114 amount=-1 +kerning first=1060 second=1046 amount=-1 +kerning first=272 second=80 amount=-1 +kerning first=277 second=8222 amount=-1 +kerning first=214 second=344 amount=-1 +kerning first=206 second=310 amount=-1 +kerning first=209 second=327 amount=-1 +kerning first=220 second=327 amount=-1 +kerning first=364 second=336 amount=-1 +kerning first=1064 second=1062 amount=-1 +kerning first=217 second=361 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=1104 second=1080 amount=-1 +kerning first=209 second=81 amount=-1 +kerning first=217 second=115 amount=-1 +kerning first=82 second=8221 amount=-1 +kerning first=253 second=115 amount=-1 +kerning first=118 second=8221 amount=-2 +kerning first=289 second=115 amount=-1 +kerning first=72 second=284 amount=-1 +kerning first=325 second=115 amount=-1 +kerning first=197 second=216 amount=-1 +kerning first=8250 second=284 amount=-1 +kerning first=266 second=331 amount=-1 +kerning first=378 second=8221 amount=-1 +kerning first=223 second=44 amount=-1 +kerning first=1033 second=1098 amount=-1 +kerning first=364 second=78 amount=-1 +kerning first=89 second=8249 amount=-2 +kerning first=204 second=352 amount=-1 +kerning first=187 second=204 amount=-1 +kerning first=194 second=8249 amount=-1 +kerning first=89 second=331 amount=-1 +kerning first=370 second=227 amount=-1 +kerning first=103 second=116 amount=-1 +kerning first=220 second=78 amount=-1 +kerning first=266 second=8249 amount=-1 +kerning first=86 second=380 amount=-1 +kerning first=69 second=72 amount=-1 +kerning first=298 second=227 amount=-1 +kerning first=8217 second=260 amount=-2 +kerning first=266 second=346 amount=-1 +kerning first=282 second=72 amount=-1 +kerning first=346 second=218 amount=-1 +kerning first=310 second=218 amount=-1 +kerning first=199 second=267 amount=-1 +kerning first=204 second=290 amount=-1 +kerning first=274 second=218 amount=-1 +kerning first=1048 second=1055 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=202 second=218 amount=-1 +kerning first=1043 second=1119 amount=-1 +kerning first=1069 second=1061 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=1058 second=1086 amount=-1 +kerning first=192 second=361 amount=-1 +kerning first=365 second=291 amount=-1 +kerning first=296 second=230 amount=-1 +kerning first=87 second=361 amount=-1 +kerning first=80 second=279 amount=-1 +kerning first=116 second=279 amount=-1 +kerning first=8217 second=235 amount=-1 +kerning first=302 second=346 amount=-1 +kerning first=1030 second=1056 amount=-1 +kerning first=116 second=291 amount=-1 +kerning first=262 second=227 amount=-1 +kerning first=353 second=8218 amount=-1 +kerning first=1057 second=1080 amount=-1 +kerning first=288 second=368 amount=-1 +kerning first=101 second=187 amount=-1 +kerning first=281 second=8218 amount=-1 +kerning first=1082 second=1095 amount=-1 +kerning first=85 second=227 amount=-1 +kerning first=198 second=8221 amount=-1 +kerning first=75 second=368 amount=-1 +kerning first=1046 second=1095 amount=-1 +kerning first=234 second=8221 amount=-2 +kerning first=196 second=84 amount=-1 +kerning first=289 second=269 amount=-1 +kerning first=87 second=8221 amount=-1 +kerning first=198 second=81 amount=-1 +kerning first=270 second=8221 amount=-2 +kerning first=101 second=337 amount=-1 +kerning first=1034 second=1079 amount=-1 +kerning first=1118 second=1095 amount=-1 +kerning first=68 second=8218 amount=-1 +kerning first=112 second=187 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=109 second=8220 amount=-2 +kerning first=262 second=200 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=362 second=44 amount=-2 +kerning first=245 second=8218 amount=-1 +kerning first=204 second=325 amount=-1 +kerning first=289 second=187 amount=-1 +kerning first=197 second=255 amount=-1 +kerning first=209 second=8218 amount=-1 +kerning first=325 second=187 amount=-1 +kerning first=217 second=187 amount=-2 +kerning first=85 second=200 amount=-1 +kerning first=205 second=211 amount=-1 +kerning first=187 second=71 amount=-1 +kerning first=89 second=8222 amount=-2 +kerning first=257 second=279 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=217 second=202 amount=-1 +kerning first=8217 second=233 amount=-1 +kerning first=221 second=279 amount=-1 +kerning first=259 second=337 amount=-1 +kerning first=352 second=75 amount=-1 +kerning first=327 second=211 amount=-1 +kerning first=111 second=316 amount=-1 +kerning first=206 second=245 amount=-1 +kerning first=74 second=362 amount=-1 +kerning first=8218 second=361 amount=-1 +kerning first=8220 second=219 amount=-1 +kerning first=209 second=261 amount=-1 +kerning first=278 second=364 amount=-1 +kerning first=364 second=66 amount=-1 +kerning first=1070 second=1052 amount=-1 +kerning first=221 second=264 amount=-1 +kerning first=214 second=209 amount=-1 +kerning first=1034 second=1052 amount=-1 +kerning first=206 second=364 amount=-1 +kerning first=362 second=367 amount=-1 +kerning first=296 second=257 amount=-1 +kerning first=268 second=69 amount=-1 +kerning first=80 second=264 amount=-1 +kerning first=73 second=209 amount=-1 +kerning first=65 second=364 amount=-1 +kerning first=368 second=257 amount=-1 +kerning first=304 second=69 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=218 second=367 amount=-1 +kerning first=227 second=380 amount=-1 +kerning first=77 second=355 amount=-1 +kerning first=338 second=8249 amount=-1 +kerning first=264 second=334 amount=-1 +kerning first=374 second=8249 amount=-2 +kerning first=234 second=108 amount=-1 +kerning first=192 second=334 amount=-1 +kerning first=281 second=273 amount=-1 +kerning first=263 second=380 amount=-1 +kerning first=1064 second=1041 amount=-1 +kerning first=272 second=330 amount=-1 +kerning first=209 second=366 amount=-1 +kerning first=323 second=235 amount=-1 +kerning first=209 second=273 amount=-1 +kerning first=335 second=380 amount=-1 +kerning first=1053 second=1030 amount=-1 +kerning first=338 second=268 amount=-1 +kerning first=350 second=364 amount=-1 +kerning first=374 second=290 amount=-1 +kerning first=266 second=226 amount=-1 +kerning first=286 second=209 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=1034 second=1050 amount=-1 +kerning first=362 second=286 amount=-1 +kerning first=73 second=263 amount=-1 +kerning first=253 second=249 amount=-1 +kerning first=272 second=194 amount=-1 +kerning first=109 second=263 amount=-1 +kerning first=1027 second=1051 amount=-1 +kerning first=1070 second=1050 amount=-1 +kerning first=221 second=79 amount=-1 +kerning first=87 second=334 amount=-1 +kerning first=45 second=117 amount=-1 +kerning first=218 second=286 amount=-1 +kerning first=101 second=339 amount=-1 +kerning first=250 second=263 amount=-1 +kerning first=205 second=82 amount=-1 +kerning first=1041 second=1094 amount=-1 +kerning first=116 second=8221 amount=-1 +kerning first=1041 second=1039 amount=-1 +kerning first=368 second=203 amount=-1 +kerning first=325 second=229 amount=-1 +kerning first=87 second=332 amount=-1 +kerning first=8222 second=225 amount=-1 +kerning first=77 second=286 amount=-1 +kerning first=108 second=365 amount=-1 +kerning first=204 second=298 amount=-1 +kerning first=269 second=351 amount=-1 +kerning first=1067 second=1074 amount=-1 +kerning first=366 second=117 amount=-1 +kerning first=1064 second=1108 amount=-1 +kerning first=264 second=332 amount=-1 +kerning first=296 second=203 amount=-1 +kerning first=291 second=46 amount=-1 +kerning first=192 second=332 amount=-1 +kerning first=217 second=229 amount=-1 +kerning first=258 second=117 amount=-1 +kerning first=1055 second=1083 amount=-1 +kerning first=370 second=281 amount=-1 +kerning first=72 second=77 amount=-1 +kerning first=325 second=100 amount=-1 +kerning first=1091 second=1083 amount=-1 +kerning first=242 second=382 amount=-1 +kerning first=257 second=333 amount=-1 +kerning first=1070 second=1025 amount=-1 +kerning first=355 second=339 amount=-1 +kerning first=218 second=271 amount=-1 +kerning first=1036 second=1118 amount=-1 +kerning first=1034 second=1025 amount=-1 +kerning first=206 second=229 amount=-1 +kerning first=281 second=246 amount=-1 +kerning first=88 second=220 amount=-1 +kerning first=254 second=382 amount=-1 +kerning first=209 second=246 amount=-1 +kerning first=196 second=171 amount=-1 +kerning first=85 second=281 amount=-1 +kerning first=323 second=103 amount=-1 +kerning first=104 second=246 amount=-1 +kerning first=287 second=103 amount=-1 +kerning first=204 second=323 amount=-1 +kerning first=263 second=369 amount=-1 +kerning first=195 second=364 amount=-1 +kerning first=217 second=100 amount=-1 +kerning first=192 second=307 amount=-1 +kerning first=226 second=281 amount=-1 +kerning first=85 second=262 amount=-1 +kerning first=221 second=333 amount=-1 +kerning first=262 second=281 amount=-1 +kerning first=266 second=304 amount=-1 +kerning first=80 second=333 amount=-1 +kerning first=284 second=209 amount=-1 +kerning first=298 second=281 amount=-1 +kerning first=302 second=304 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=352 second=69 amount=-1 +kerning first=338 second=304 amount=-1 +kerning first=264 second=81 amount=-1 +kerning first=213 second=77 amount=-1 +kerning first=111 second=314 amount=-1 +kerning first=1108 second=1076 amount=-1 +kerning first=1053 second=1057 amount=-1 +kerning first=1043 second=1092 amount=-1 +kerning first=205 second=109 amount=-1 +kerning first=217 second=256 amount=-1 +kerning first=97 second=245 amount=-1 +kerning first=203 second=85 amount=-1 +kerning first=264 second=280 amount=-1 +kerning first=346 second=8217 amount=-1 +kerning first=272 second=221 amount=-1 +kerning first=1048 second=1067 amount=-1 +kerning first=364 second=120 amount=-1 +kerning first=382 second=8217 amount=-1 +kerning first=221 second=210 amount=-1 +kerning first=344 second=221 amount=-1 +kerning first=68 second=315 amount=-1 +kerning first=218 second=313 amount=-1 +kerning first=1067 second=1101 amount=-1 +kerning first=290 second=313 amount=-1 +kerning first=283 second=339 amount=-1 +kerning first=192 second=44 amount=-1 +kerning first=80 second=210 amount=-1 +kerning first=99 second=248 amount=-1 +kerning first=368 second=230 amount=-1 +kerning first=77 second=313 amount=-1 +kerning first=336 second=8250 amount=-1 +kerning first=99 second=271 amount=-1 +kerning first=106 second=339 amount=-1 +kerning first=269 second=324 amount=-1 +kerning first=70 second=339 amount=-1 +kerning first=204 second=271 amount=-1 +kerning first=1039 second=1042 amount=-1 +kerning first=228 second=8250 amount=-1 +kerning first=304 second=111 amount=-1 +kerning first=8218 second=334 amount=-1 +kerning first=192 second=8250 amount=-1 +kerning first=83 second=203 amount=-1 +kerning first=1052 second=1117 amount=-1 +kerning first=262 second=254 amount=-1 +kerning first=87 second=8250 amount=-1 +kerning first=270 second=195 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=214 second=258 amount=-1 +kerning first=209 second=219 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=89 second=273 amount=-1 +kerning first=111 second=289 amount=-1 +kerning first=68 second=219 amount=-1 +kerning first=252 second=289 amount=-1 +kerning first=209 second=350 amount=-1 +kerning first=1031 second=1101 amount=-1 +kerning first=287 second=101 amount=-1 +kerning first=324 second=289 amount=-1 +kerning first=202 second=8217 amount=-1 +kerning first=1033 second=1065 amount=-1 +kerning first=251 second=101 amount=-1 +kerning first=339 second=111 amount=-1 +kerning first=274 second=8217 amount=-1 +kerning first=224 second=380 amount=-1 +kerning first=74 second=76 amount=-1 +kerning first=374 second=331 amount=-1 +kerning first=204 second=296 amount=-1 +kerning first=232 second=111 amount=-1 +kerning first=97 second=8217 amount=-2 +kerning first=268 second=111 amount=-1 +kerning first=121 second=254 amount=-1 +kerning first=269 second=228 amount=-1 +kerning first=268 second=225 amount=-1 +kerning first=70 second=187 amount=-2 +kerning first=106 second=99 amount=-1 +kerning first=77 second=232 amount=-1 +kerning first=8218 second=332 amount=-1 +kerning first=286 second=85 amount=-1 +kerning first=214 second=85 amount=-1 +kerning first=73 second=332 amount=-1 +kerning first=252 second=287 amount=-1 +kerning first=289 second=46 amount=-1 +kerning first=74 second=271 amount=-1 +kerning first=253 second=46 amount=-1 +kerning first=214 second=330 amount=-1 +kerning first=73 second=85 amount=-1 +kerning first=250 second=8220 amount=-1 +kerning first=111 second=287 amount=-1 +kerning first=325 second=46 amount=-1 +kerning first=109 second=277 amount=-1 +kerning first=286 second=302 amount=-1 +kerning first=206 second=241 amount=-1 +kerning first=286 second=8220 amount=-1 +kerning first=370 second=368 amount=-1 +kerning first=324 second=287 amount=-1 +kerning first=214 second=302 amount=-1 +kerning first=323 second=271 amount=-1 +kerning first=1039 second=1096 amount=-1 +kerning first=74 second=243 amount=-1 +kerning first=233 second=378 amount=-1 +kerning first=8250 second=223 amount=-1 +kerning first=230 second=250 amount=-1 +kerning first=227 second=289 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=231 second=229 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=202 second=284 amount=-1 +kerning first=274 second=75 amount=-1 +kerning first=263 second=289 amount=-1 +kerning first=87 second=273 amount=-1 +kerning first=8222 second=252 amount=-1 +kerning first=374 second=250 amount=-1 +kerning first=45 second=336 amount=-1 +kerning first=217 second=46 amount=-2 +kerning first=274 second=284 amount=-1 +kerning first=334 second=76 amount=-1 +kerning first=335 second=289 amount=-1 +kerning first=267 second=229 amount=-1 +kerning first=269 second=378 amount=-1 +kerning first=370 second=76 amount=-1 +kerning first=207 second=220 amount=-1 +kerning first=262 second=76 amount=-1 +kerning first=67 second=216 amount=-1 +kerning first=171 second=220 amount=-1 +kerning first=74 second=74 amount=-1 +kerning first=8250 second=218 amount=-1 +kerning first=362 second=259 amount=-1 +kerning first=264 second=278 amount=-1 +kerning first=1027 second=1105 amount=-1 +kerning first=201 second=45 amount=-1 +kerning first=280 second=216 amount=-1 +kerning first=339 second=246 amount=-1 +kerning first=85 second=76 amount=-1 +kerning first=1050 second=1118 amount=-1 +kerning first=203 second=280 amount=-1 +kerning first=267 second=246 amount=-1 +kerning first=321 second=89 amount=-1 +kerning first=231 second=246 amount=-1 +kerning first=66 second=220 amount=-1 +kerning first=323 second=74 amount=-1 +kerning first=204 second=269 amount=-1 +kerning first=262 second=245 amount=-1 +kerning first=345 second=229 amount=-1 +kerning first=240 second=269 amount=-1 +kerning first=77 second=259 amount=-1 +kerning first=70 second=204 amount=-1 +kerning first=99 second=269 amount=-1 +kerning first=1042 second=1084 amount=-1 +kerning first=219 second=201 amount=-1 +kerning first=86 second=65 amount=-1 +kerning first=218 second=259 amount=-1 +kerning first=211 second=204 amount=-1 +kerning first=272 second=366 amount=-1 +kerning first=278 second=268 amount=-1 +kerning first=220 second=207 amount=-1 +kerning first=78 second=8220 amount=-1 +kerning first=200 second=366 amount=-1 +kerning first=206 second=268 amount=-1 +kerning first=1039 second=1069 amount=-1 +kerning first=280 second=67 amount=-1 +kerning first=274 second=67 amount=-1 +kerning first=218 second=110 amount=-1 +kerning first=8217 second=289 amount=-1 +kerning first=364 second=207 amount=-1 +kerning first=310 second=67 amount=-1 +kerning first=74 second=244 amount=-1 +kerning first=207 second=210 amount=-1 +kerning first=1067 second=1062 amount=-1 +kerning first=110 second=244 amount=-1 +kerning first=75 second=303 amount=-1 +kerning first=356 second=113 amount=-1 +kerning first=304 second=224 amount=-1 +kerning first=374 second=277 amount=-1 +kerning first=217 second=73 amount=-1 +kerning first=1054 second=1068 amount=-1 +kerning first=73 second=302 amount=-1 +kerning first=325 second=73 amount=-1 +kerning first=86 second=262 amount=-1 +kerning first=233 second=351 amount=-1 +kerning first=65 second=268 amount=-1 +kerning first=287 second=108 amount=-1 +kerning first=1038 second=1117 amount=-1 +kerning first=89 second=277 amount=-1 +kerning first=230 second=353 amount=-1 +kerning first=192 second=251 amount=-1 +kerning first=199 second=213 amount=-1 +kerning first=87 second=251 amount=-1 +kerning first=302 second=277 amount=-1 +kerning first=266 second=277 amount=-1 +kerning first=230 second=277 amount=-1 +kerning first=205 second=273 amount=-1 +kerning first=368 second=218 amount=-1 +kerning first=187 second=370 amount=-1 +kerning first=71 second=8221 amount=-1 +kerning first=355 second=231 amount=-1 +kerning first=327 second=75 amount=-1 +kerning first=108 second=380 amount=-1 +kerning first=280 second=270 amount=-1 +kerning first=296 second=218 amount=-1 +kerning first=374 second=196 amount=-1 +kerning first=245 second=8222 amount=-1 +kerning first=212 second=8221 amount=-2 +kerning first=262 second=8249 amount=-1 +kerning first=248 second=8221 amount=-2 +kerning first=219 second=75 amount=-1 +kerning first=78 second=216 amount=-1 +kerning first=109 second=248 amount=-1 +kerning first=67 second=336 amount=-1 +kerning first=1031 second=1089 amount=-1 +kerning first=65 second=187 amount=-1 +kerning first=250 second=248 amount=-1 +kerning first=1057 second=1119 amount=-1 +kerning first=283 second=231 amount=-1 +kerning first=83 second=218 amount=-1 +kerning first=99 second=242 amount=-1 +kerning first=356 second=8221 amount=-1 +kerning first=78 second=75 amount=-1 +kerning first=279 second=355 amount=-1 +kerning first=352 second=270 amount=-1 +kerning first=192 second=264 amount=-1 +kerning first=200 second=209 amount=-1 +kerning first=218 second=79 amount=-1 +kerning first=73 second=248 amount=-1 +kerning first=304 second=279 amount=-1 +kerning first=280 second=336 amount=-1 +kerning first=204 second=234 amount=-1 +kerning first=258 second=84 amount=-1 +kerning first=67 second=270 amount=-1 +kerning first=279 second=367 amount=-1 +kerning first=339 second=283 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=231 second=283 amount=-1 +kerning first=109 second=333 amount=-1 +kerning first=89 second=369 amount=-1 +kerning first=1043 second=1080 amount=-1 +kerning first=362 second=205 amount=-1 +kerning first=251 second=244 amount=-1 +kerning first=79 second=327 amount=-1 +kerning first=338 second=8222 amount=-1 +kerning first=8218 second=369 amount=-1 +kerning first=290 second=205 amount=-1 +kerning first=323 second=244 amount=-1 +kerning first=266 second=8222 amount=-1 +kerning first=362 second=79 amount=-1 +kerning first=207 second=274 amount=-1 +kerning first=230 second=8222 amount=-1 +kerning first=66 second=367 amount=-1 +kerning first=66 second=274 amount=-1 +kerning first=1031 second=1028 amount=-1 +kerning first=252 second=233 amount=-1 +kerning first=338 second=70 amount=-1 +kerning first=364 second=327 amount=-1 +kerning first=70 second=231 amount=-1 +kerning first=86 second=235 amount=-1 +kerning first=106 second=231 amount=-1 +kerning first=1066 second=1062 amount=-1 +kerning first=1055 second=1071 amount=-1 +kerning first=356 second=227 amount=-1 +kerning first=218 second=205 amount=-1 +kerning first=227 second=235 amount=-1 +kerning first=258 second=108 amount=-1 +kerning first=77 second=205 amount=-1 +kerning first=263 second=235 amount=-1 +kerning first=266 second=70 amount=-1 +kerning first=87 second=224 amount=-1 +kerning first=302 second=70 amount=-1 +kerning first=8217 second=65 amount=-2 +kerning first=206 second=214 amount=-1 +kerning first=201 second=71 amount=-1 +kerning first=72 second=353 amount=-1 +kerning first=85 second=266 amount=-1 +kerning first=118 second=249 amount=-1 +kerning first=264 second=224 amount=-1 +kerning first=187 second=249 amount=-1 +kerning first=330 second=70 amount=-1 +kerning first=1038 second=1090 amount=-1 +kerning first=103 second=243 amount=-1 +kerning first=1058 second=1088 amount=-1 +kerning first=1059 second=1104 amount=-1 +kerning first=280 second=363 amount=-1 +kerning first=213 second=353 amount=-1 +kerning first=316 second=363 amount=-1 +kerning first=278 second=214 amount=-1 +kerning first=75 second=370 amount=-1 +kerning first=374 second=223 amount=-1 +kerning first=69 second=45 amount=-1 +kerning first=288 second=370 amount=-1 +kerning first=338 second=223 amount=-1 +kerning first=105 second=45 amount=-1 +kerning first=80 second=232 amount=-1 +kerning first=302 second=223 amount=-1 +kerning first=232 second=252 amount=-1 +kerning first=250 second=275 amount=-1 +kerning first=266 second=223 amount=-1 +kerning first=196 second=252 amount=-1 +kerning first=325 second=8218 amount=-1 +kerning first=240 second=275 amount=-1 +kerning first=65 second=214 amount=-1 +kerning first=1043 second=1107 amount=-1 +kerning first=79 second=354 amount=-1 +kerning first=203 second=199 amount=-1 +kerning first=282 second=45 amount=-1 +kerning first=254 second=106 amount=-1 +kerning first=109 second=275 amount=-1 +kerning first=1050 second=1081 amount=-1 +kerning first=73 second=275 amount=-1 +kerning first=375 second=8221 amount=-2 +kerning first=8217 second=262 amount=-1 +kerning first=1046 second=1097 amount=-1 +kerning first=74 second=217 amount=-1 +kerning first=266 second=97 amount=-1 +kerning first=220 second=234 amount=-1 +kerning first=302 second=97 amount=-1 +kerning first=370 second=288 amount=-1 +kerning first=235 second=267 amount=-1 +kerning first=271 second=267 amount=-1 +kerning first=307 second=267 amount=-1 +kerning first=272 second=209 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=73 second=8220 amount=-1 +kerning first=364 second=234 amount=-1 +kerning first=89 second=223 amount=-1 +kerning first=8218 second=251 amount=-1 +kerning first=328 second=234 amount=-1 +kerning first=211 second=258 amount=-1 +kerning first=1091 second=1098 amount=-1 +kerning first=288 second=201 amount=-1 +kerning first=288 second=206 amount=-1 +kerning first=1071 second=1095 amount=-1 +kerning first=298 second=266 amount=-1 +kerning first=218 second=232 amount=-1 +kerning first=284 second=200 amount=-1 +kerning first=350 second=345 amount=-1 +kerning first=1062 second=1072 amount=-1 +kerning first=370 second=266 amount=-1 +kerning first=205 second=368 amount=-1 +kerning first=196 second=345 amount=-1 +kerning first=291 second=250 amount=-1 +kerning first=324 second=113 amount=-1 +kerning first=232 second=345 amount=-1 +kerning first=8222 second=279 amount=-1 +kerning first=374 second=97 amount=-1 +kerning first=362 second=232 amount=-1 +kerning first=268 second=345 amount=-1 +kerning first=262 second=266 amount=-1 +kerning first=326 second=232 amount=-1 +kerning first=364 second=79 amount=-1 +kerning first=71 second=200 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=1059 second=1077 amount=-1 +kerning first=220 second=8218 amount=-2 +kerning first=339 second=120 amount=-1 +kerning first=375 second=120 amount=-1 +kerning first=115 second=8218 amount=-1 +kerning first=87 second=197 amount=-1 +kerning first=79 second=8218 amount=-1 +kerning first=266 second=109 amount=-1 +kerning first=364 second=8218 amount=-2 +kerning first=249 second=245 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=302 second=109 amount=-1 +kerning first=272 second=258 amount=-1 +kerning first=220 second=315 amount=-1 +kerning first=313 second=368 amount=-1 +kerning first=73 second=199 amount=-1 +kerning first=187 second=367 amount=-1 +kerning first=108 second=245 amount=-1 +kerning first=66 second=313 amount=-1 +kerning first=267 second=105 amount=-1 +kerning first=207 second=313 amount=-1 +kerning first=231 second=105 amount=-1 +kerning first=195 second=105 amount=-1 +kerning first=296 second=267 amount=-1 +kerning first=262 second=217 amount=-1 +kerning first=368 second=267 amount=-1 +kerning first=298 second=217 amount=-1 +kerning first=1071 second=1068 amount=-1 +kerning first=334 second=217 amount=-1 +kerning first=291 second=114 amount=-1 +kerning first=1057 second=1097 amount=-1 +kerning first=370 second=217 amount=-1 +kerning first=326 second=279 amount=-1 +kerning first=219 second=102 amount=-1 +kerning first=1030 second=1037 amount=-1 +kerning first=224 second=267 amount=-1 +kerning first=327 second=114 amount=-1 +kerning first=8220 second=196 amount=-2 +kerning first=72 second=245 amount=-1 +kerning first=78 second=114 amount=-1 +kerning first=317 second=8221 amount=-1 +kerning first=364 second=315 amount=-1 +kerning first=219 second=114 amount=-1 +kerning first=291 second=8249 amount=-1 +kerning first=8222 second=318 amount=-1 +kerning first=201 second=212 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=279 second=111 amount=-1 +kerning first=274 second=8222 amount=-1 +kerning first=327 second=8249 amount=-1 +kerning first=363 second=8249 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=1044 second=1098 amount=-1 +kerning first=327 second=331 amount=-1 +kerning first=206 second=115 amount=-1 +kerning first=220 second=273 amount=-1 +kerning first=107 second=44 amount=-1 +kerning first=368 second=261 amount=-1 +kerning first=196 second=318 amount=-1 +kerning first=213 second=218 amount=-1 +kerning first=201 second=77 amount=-1 +kerning first=323 second=352 amount=-1 +kerning first=1033 second=1061 amount=-1 +kerning first=97 second=380 amount=-1 +kerning first=8250 second=89 amount=-2 +kerning first=207 second=355 amount=-1 +kerning first=268 second=318 amount=-1 +kerning first=219 second=331 amount=-1 +kerning first=80 second=288 amount=-1 +kerning first=8220 second=85 amount=-1 +kerning first=1104 second=1119 amount=-1 +kerning first=261 second=248 amount=-1 +kerning first=66 second=355 amount=-1 +kerning first=369 second=248 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=8222 second=333 amount=-1 +kerning first=362 second=193 amount=-1 +kerning first=248 second=44 amount=-1 +kerning first=354 second=275 amount=-1 +kerning first=1047 second=1059 amount=-2 +kerning first=78 second=346 amount=-1 +kerning first=84 second=248 amount=-1 +kerning first=352 second=282 amount=-1 +kerning first=225 second=248 amount=-1 +kerning first=8216 second=217 amount=-1 +kerning first=280 second=282 amount=-1 +kerning first=199 second=72 amount=-1 +kerning first=325 second=332 amount=-1 +kerning first=291 second=8222 amount=-1 +kerning first=72 second=230 amount=-1 +kerning first=219 second=8222 amount=-2 +kerning first=327 second=346 amount=-1 +kerning first=203 second=361 amount=-1 +kerning first=203 second=117 amount=-1 +kerning first=217 second=332 amount=-1 +kerning first=1071 second=1041 amount=-1 +kerning first=204 second=229 amount=-1 +kerning first=114 second=8222 amount=-1 +kerning first=232 second=279 amount=-1 +kerning first=78 second=8222 amount=-1 +kerning first=268 second=279 amount=-1 +kerning first=219 second=346 amount=-1 +kerning first=8250 second=77 amount=-1 +kerning first=74 second=352 amount=-1 +kerning first=298 second=267 amount=-1 +kerning first=267 second=337 amount=-1 +kerning first=350 second=187 amount=-1 +kerning first=232 second=291 amount=-1 +kerning first=231 second=337 amount=-1 +kerning first=356 second=44 amount=-1 +kerning first=278 second=187 amount=-1 +kerning first=99 second=187 amount=-1 +kerning first=103 second=355 amount=-1 +kerning first=187 second=81 amount=-1 +kerning first=302 second=103 amount=-1 +kerning first=209 second=109 amount=-1 +kerning first=315 second=84 amount=-1 +kerning first=75 second=119 amount=-1 +kerning first=82 second=81 amount=-1 +kerning first=327 second=8222 amount=-1 +kerning first=364 second=288 amount=-1 +kerning first=194 second=211 amount=-1 +kerning first=71 second=204 amount=-1 +kerning first=202 second=338 amount=-1 +kerning first=266 second=211 amount=-1 +kerning first=264 second=362 amount=-1 +kerning first=324 second=119 amount=-1 +kerning first=323 second=325 amount=-1 +kerning first=199 second=99 amount=-1 +kerning first=1033 second=1034 amount=-1 +kerning first=89 second=211 amount=-1 +kerning first=220 second=369 amount=-1 +kerning first=334 second=347 amount=-1 +kerning first=207 second=382 amount=-1 +kerning first=262 second=269 amount=-1 +kerning first=370 second=347 amount=-1 +kerning first=243 second=382 amount=-1 +kerning first=325 second=8250 amount=-1 +kerning first=262 second=347 amount=-1 +kerning first=279 second=382 amount=-1 +kerning first=289 second=8250 amount=-1 +kerning first=298 second=347 amount=-1 +kerning first=271 second=99 amount=-1 +kerning first=253 second=8250 amount=-1 +kerning first=212 second=86 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=101 second=248 amount=-1 +kerning first=87 second=110 amount=-1 +kerning first=72 second=224 amount=-1 +kerning first=314 second=365 amount=-1 +kerning first=85 second=347 amount=-1 +kerning first=374 second=211 amount=-1 +kerning first=195 second=268 amount=-1 +kerning first=227 second=316 amount=-1 +kerning first=1049 second=1100 amount=-1 +kerning first=1062 second=1087 amount=-1 +kerning first=264 second=110 amount=-1 +kerning first=278 second=202 amount=-1 +kerning first=283 second=117 amount=-1 +kerning first=103 second=351 amount=-1 +kerning first=304 second=264 amount=-1 +kerning first=72 second=8217 amount=-1 +kerning first=219 second=277 amount=-1 +kerning first=67 second=351 amount=-1 +kerning first=350 second=202 amount=-1 +kerning first=108 second=8217 amount=-1 +kerning first=206 second=73 amount=-1 +kerning first=350 second=369 amount=-1 +kerning first=289 second=305 amount=-1 +kerning first=196 second=264 amount=-1 +kerning first=278 second=73 amount=-1 +kerning first=1031 second=1065 amount=-1 +kerning first=363 second=277 amount=-1 +kerning first=203 second=334 amount=-1 +kerning first=206 second=202 amount=-1 +kerning first=1042 second=1030 amount=-1 +kerning first=240 second=8250 amount=-1 +kerning first=321 second=8217 amount=-1 +kerning first=207 second=69 amount=-1 +kerning first=223 second=108 amount=-1 +kerning first=362 second=280 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=368 second=232 amount=-1 +kerning first=240 second=101 amount=-1 +kerning first=118 second=108 amount=-1 +kerning first=218 second=193 amount=-1 +kerning first=204 second=101 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=364 second=273 amount=-1 +kerning first=1068 second=1065 amount=-1 +kerning first=8217 second=370 amount=-1 +kerning first=338 second=82 amount=-1 +kerning first=310 second=338 amount=-1 +kerning first=75 second=364 amount=-1 +kerning first=302 second=82 amount=-1 +kerning first=213 second=8217 amount=-2 +kerning first=78 second=277 amount=-1 +kerning first=259 second=108 amount=-1 +kerning first=74 second=325 amount=-1 +kerning first=274 second=338 amount=-1 +kerning first=269 second=254 amount=-1 +kerning first=346 second=365 amount=-1 +kerning first=1056 second=1074 amount=-1 +kerning first=1038 second=1051 amount=-1 +kerning first=121 second=103 amount=-1 +kerning first=272 second=68 amount=-1 +kerning first=225 second=263 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=274 second=365 amount=-1 +kerning first=74 second=298 amount=-1 +kerning first=66 second=171 amount=-1 +kerning first=1039 second=1097 amount=-1 +kerning first=261 second=263 amount=-1 +kerning first=1075 second=1114 amount=-1 +kerning first=310 second=365 amount=-1 +kerning first=102 second=171 amount=-1 +kerning first=202 second=365 amount=-1 +kerning first=1030 second=1039 amount=-1 +kerning first=66 second=286 amount=-1 +kerning first=114 second=8249 amount=-1 +kerning first=200 second=68 amount=-1 +kerning first=323 second=298 amount=-1 +kerning first=374 second=194 amount=-1 +kerning first=213 second=203 amount=-1 +kerning first=100 second=287 amount=-1 +kerning first=8222 second=211 amount=-1 +kerning first=277 second=287 amount=-1 +kerning first=334 second=374 amount=-1 +kerning first=72 second=203 amount=-1 +kerning first=241 second=287 amount=-1 +kerning first=218 second=199 amount=-1 +kerning first=66 second=270 amount=-1 +kerning first=84 second=263 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=206 second=100 amount=-1 +kerning first=1054 second=1048 amount=-1 +kerning first=8250 second=202 amount=-1 +kerning first=77 second=220 amount=-1 +kerning first=264 second=83 amount=-1 +kerning first=103 second=324 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=212 second=330 amount=-1 +kerning first=219 second=304 amount=-1 +kerning first=364 second=246 amount=-1 +kerning first=214 second=356 amount=-1 +kerning first=328 second=246 amount=-1 +kerning first=290 second=220 amount=-1 +kerning first=284 second=330 amount=-1 +kerning first=103 second=339 amount=-1 +kerning first=370 second=103 amount=-1 +kerning first=327 second=304 amount=-1 +kerning first=268 second=218 amount=-1 +kerning first=362 second=220 amount=-1 +kerning first=8250 second=375 amount=-1 +kerning first=368 second=77 amount=-1 +kerning first=298 second=103 amount=-1 +kerning first=69 second=70 amount=-1 +kerning first=78 second=304 amount=-1 +kerning first=1049 second=1031 amount=-1 +kerning first=374 second=197 amount=-1 +kerning first=262 second=103 amount=-1 +kerning first=232 second=333 amount=-1 +kerning first=325 second=278 amount=-1 +kerning first=296 second=77 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=226 second=103 amount=-1 +kerning first=204 second=74 amount=-1 +kerning first=268 second=333 amount=-1 +kerning first=218 second=220 amount=-1 +kerning first=221 second=382 amount=-1 +kerning first=314 second=246 amount=-1 +kerning first=8217 second=97 amount=-1 +kerning first=85 second=298 amount=-1 +kerning first=211 second=356 amount=-1 +kerning first=339 second=232 amount=-1 +kerning first=1070 second=1030 amount=-1 +kerning first=206 second=246 amount=-1 +kerning first=298 second=298 amount=-1 +kerning first=262 second=298 amount=-1 +kerning first=201 second=330 amount=-1 +kerning first=196 second=220 amount=-1 +kerning first=1039 second=1091 amount=-1 +kerning first=229 second=269 amount=-1 +kerning first=370 second=298 amount=-1 +kerning first=304 second=220 amount=-1 +kerning first=334 second=298 amount=-1 +kerning first=268 second=220 amount=-1 +kerning first=224 second=333 amount=-1 +kerning first=271 second=339 amount=-1 +kerning first=203 second=68 amount=-1 +kerning first=1044 second=1074 amount=-1 +kerning first=1059 second=1040 amount=-1 +kerning first=280 second=211 amount=-1 +kerning first=368 second=333 amount=-1 +kerning first=80 second=382 amount=-1 +kerning first=335 second=8222 amount=-1 +kerning first=45 second=194 amount=-1 +kerning first=235 second=365 amount=-1 +kerning first=296 second=333 amount=-1 +kerning first=81 second=194 amount=-1 +kerning first=263 second=8222 amount=-1 +kerning first=67 second=211 amount=-1 +kerning first=212 second=315 amount=-1 +kerning first=323 second=313 amount=-1 +kerning first=99 second=281 amount=-1 +kerning first=83 second=361 amount=-1 +kerning first=204 second=281 amount=-1 +kerning first=79 second=202 amount=-1 +kerning first=1052 second=1047 amount=-1 +kerning first=261 second=339 amount=-1 +kerning first=240 second=281 amount=-1 +kerning first=8250 second=213 amount=-1 +kerning first=1053 second=1074 amount=-1 +kerning first=284 second=315 amount=-1 +kerning first=89 second=353 amount=-1 +kerning first=268 second=102 amount=-1 +kerning first=1030 second=1051 amount=-1 +kerning first=362 second=264 amount=-1 +kerning first=199 second=111 amount=-1 +kerning first=84 second=339 amount=-1 +kerning first=364 second=202 amount=-1 +kerning first=1041 second=1083 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=1031 second=1057 amount=-1 +kerning first=118 second=120 amount=-1 +kerning first=68 second=364 amount=-1 +kerning first=187 second=120 amount=-1 +kerning first=218 second=264 amount=-1 +kerning first=314 second=277 amount=-1 +kerning first=223 second=120 amount=-1 +kerning first=220 second=202 amount=-1 +kerning first=1056 second=1025 amount=-1 +kerning first=369 second=339 amount=-1 +kerning first=71 second=315 amount=-1 +kerning first=217 second=251 amount=-1 +kerning first=77 second=264 amount=-1 +kerning first=198 second=212 amount=-1 +kerning first=8218 second=290 amount=-1 +kerning first=65 second=219 amount=-1 +kerning first=70 second=102 amount=-1 +kerning first=288 second=8217 amount=-1 +kerning first=253 second=251 amount=-1 +kerning first=324 second=8217 amount=-2 +kerning first=289 second=251 amount=-1 +kerning first=353 second=8222 amount=-1 +kerning first=85 second=271 amount=-1 +kerning first=75 second=8217 amount=-1 +kerning first=370 second=269 amount=-1 +kerning first=111 second=8217 amount=-2 +kerning first=1043 second=1094 amount=-1 +kerning first=201 second=8221 amount=-1 +kerning first=324 second=245 amount=-1 +kerning first=262 second=271 amount=-1 +kerning first=235 second=111 amount=-1 +kerning first=271 second=111 amount=-1 +kerning first=252 second=245 amount=-1 +kerning first=307 second=111 amount=-1 +kerning first=298 second=271 amount=-1 +kerning first=345 second=8221 amount=-1 +kerning first=207 second=353 amount=-1 +kerning first=381 second=8221 amount=-1 +kerning first=1036 second=1101 amount=-1 +kerning first=1065 second=1092 amount=-1 +kerning first=209 second=334 amount=-1 +kerning first=258 second=221 amount=-1 +kerning first=1053 second=1101 amount=-1 +kerning first=220 second=229 amount=-1 +kerning first=86 second=331 amount=-1 +kerning first=1030 second=1024 amount=-1 +kerning first=1043 second=1075 amount=-1 +kerning first=72 second=67 amount=-1 +kerning first=219 second=267 amount=-1 +kerning first=205 second=233 amount=-1 +kerning first=210 second=203 amount=-1 +kerning first=99 second=254 amount=-1 +kerning first=1056 second=1044 amount=-1 +kerning first=229 second=277 amount=-1 +kerning first=100 second=233 amount=-1 +kerning first=282 second=203 amount=-1 +kerning first=323 second=8221 amount=-1 +kerning first=73 second=280 amount=-1 +kerning first=201 second=357 amount=-1 +kerning first=241 second=233 amount=-1 +kerning first=268 second=274 amount=-1 +kerning first=214 second=280 amount=-1 +kerning first=234 second=117 amount=-1 +kerning first=69 second=203 amount=-1 +kerning first=277 second=233 amount=-1 +kerning first=187 second=374 amount=-2 +kerning first=1066 second=1024 amount=-1 +kerning first=286 second=280 amount=-1 +kerning first=228 second=263 amount=-1 +kerning first=264 second=263 amount=-1 +kerning first=201 second=76 amount=-1 +kerning first=82 second=374 amount=-1 +kerning first=1031 second=1084 amount=-1 +kerning first=219 second=363 amount=-1 +kerning first=187 second=207 amount=-1 +kerning first=198 second=288 amount=-1 +kerning first=255 second=363 amount=-1 +kerning first=302 second=201 amount=-1 +kerning first=291 second=363 amount=-1 +kerning first=368 second=213 amount=-1 +kerning first=338 second=201 amount=-1 +kerning first=275 second=122 amount=-1 +kerning first=327 second=70 amount=-1 +kerning first=235 second=311 amount=-1 +kerning first=374 second=245 amount=-1 +kerning first=264 second=317 amount=-1 +kerning first=266 second=201 amount=-1 +kerning first=325 second=224 amount=-1 +kerning first=1048 second=1104 amount=-1 +kerning first=217 second=224 amount=-1 +kerning first=219 second=103 amount=-1 +kerning first=86 second=250 amount=-1 +kerning first=98 second=122 amount=-1 +kerning first=255 second=316 amount=-1 +kerning first=110 second=113 amount=-1 +kerning first=272 second=204 amount=-1 +kerning first=209 second=382 amount=-1 +kerning first=1091 second=1093 amount=-1 +kerning first=85 second=244 amount=-1 +kerning first=79 second=256 amount=-1 +kerning first=200 second=204 amount=-1 +kerning first=74 second=259 amount=-1 +kerning first=195 second=354 amount=-1 +kerning first=323 second=259 amount=-1 +kerning first=226 second=244 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=262 second=244 amount=-1 +kerning first=282 second=116 amount=-1 +kerning first=362 second=210 amount=-1 +kerning first=298 second=244 amount=-1 +kerning first=1042 second=1096 amount=-1 +kerning first=364 second=256 amount=-1 +kerning first=218 second=210 amount=-1 +kerning first=1078 second=1096 amount=-1 +kerning first=77 second=210 amount=-1 +kerning first=99 second=363 amount=-1 +kerning first=327 second=283 amount=-1 +kerning first=1096 second=1095 amount=-1 +kerning first=202 second=262 amount=-1 +kerning first=220 second=256 amount=-1 +kerning first=66 second=345 amount=-1 +kerning first=274 second=262 amount=-1 +kerning first=217 second=355 amount=-1 +kerning first=1033 second=1049 amount=-1 +kerning first=234 second=98 amount=-1 +kerning first=264 second=298 amount=-1 +kerning first=1043 second=1102 amount=-1 +kerning first=211 second=302 amount=-1 +kerning first=286 second=73 amount=-1 +kerning first=277 second=248 amount=-1 +kerning first=204 second=335 amount=-1 +kerning first=207 second=345 amount=-1 +kerning first=243 second=345 amount=-1 +kerning first=258 second=107 amount=-1 +kerning first=279 second=345 amount=-1 +kerning first=350 second=219 amount=-1 +kerning first=240 second=335 amount=-1 +kerning first=296 second=213 amount=-1 +kerning first=70 second=302 amount=-1 +kerning first=203 second=268 amount=-1 +kerning first=278 second=219 amount=-1 +kerning first=205 second=206 amount=-1 +kerning first=1068 second=1070 amount=-1 +kerning first=206 second=219 amount=-1 +kerning first=263 second=277 amount=-1 +kerning first=266 second=368 amount=-1 +kerning first=352 second=8221 amount=-1 +kerning first=227 second=277 amount=-1 +kerning first=8249 second=374 amount=-1 +kerning first=302 second=368 amount=-1 +kerning first=338 second=368 amount=-1 +kerning first=73 second=226 amount=-1 +kerning first=86 second=81 amount=-1 +kerning first=87 second=290 amount=-1 +kerning first=85 second=217 amount=-1 +kerning first=73 second=73 amount=-1 +kerning first=1053 second=1047 amount=-1 +kerning first=192 second=290 amount=-1 +kerning first=214 second=73 amount=-1 +kerning first=194 second=368 amount=-1 +kerning first=328 second=283 amount=-1 +kerning first=122 second=8249 amount=-1 +kerning first=217 second=197 amount=-1 +kerning first=1056 second=1092 amount=-1 +kerning first=364 second=283 amount=-1 +kerning first=199 second=338 amount=-1 +kerning first=1054 second=1084 amount=-1 +kerning first=202 second=82 amount=-1 +kerning first=8222 second=246 amount=-1 +kerning first=289 second=245 amount=-1 +kerning first=263 second=8249 amount=-1 +kerning first=86 second=277 amount=-1 +kerning first=1062 second=1057 amount=-1 +kerning first=274 second=82 amount=-1 +kerning first=323 second=286 amount=-1 +kerning first=230 second=120 amount=-1 +kerning first=212 second=282 amount=-1 +kerning first=220 second=283 amount=-1 +kerning first=1036 second=1086 amount=-1 +kerning first=1118 second=1097 amount=-1 +kerning first=251 second=99 amount=-1 +kerning first=271 second=45 amount=-1 +kerning first=1060 second=1068 amount=-1 +kerning first=370 second=244 amount=-1 +kerning first=199 second=45 amount=-1 +kerning first=199 second=171 amount=-1 +kerning first=69 second=116 amount=-1 +kerning first=287 second=113 amount=-1 +kerning first=207 second=79 amount=-1 +kerning first=323 second=113 amount=-1 +kerning first=97 second=235 amount=-1 +kerning first=307 second=171 amount=-1 +kerning first=1053 second=1048 amount=-1 +kerning first=74 second=286 amount=-1 +kerning first=251 second=113 amount=-1 +kerning first=86 second=8249 amount=-2 +kerning first=218 second=350 amount=-1 +kerning first=219 second=70 amount=-1 +kerning first=246 second=8250 amount=-1 +kerning first=263 second=104 amount=-1 +kerning first=304 second=274 amount=-1 +kerning first=77 second=350 amount=-1 +kerning first=1041 second=1056 amount=-1 +kerning first=1048 second=1077 amount=-1 +kerning first=87 second=117 amount=-1 +kerning first=262 second=226 amount=-1 +kerning first=217 second=344 amount=-1 +kerning first=1118 second=1085 amount=-1 +kerning first=282 second=284 amount=-1 +kerning first=375 second=115 amount=-1 +kerning first=84 second=231 amount=-1 +kerning first=220 second=310 amount=-1 +kerning first=351 second=318 amount=-1 +kerning first=1046 second=1085 amount=-1 +kerning first=8217 second=250 amount=-1 +kerning first=74 second=205 amount=-1 +kerning first=8218 second=85 amount=-1 +kerning first=1071 second=1053 amount=-1 +kerning first=79 second=310 amount=-1 +kerning first=231 second=115 amount=-1 +kerning first=323 second=205 amount=-1 +kerning first=69 second=284 amount=-1 +kerning first=267 second=115 amount=-1 +kerning first=339 second=115 amount=-1 +kerning first=243 second=106 amount=-1 +kerning first=369 second=231 amount=-1 +kerning first=279 second=106 amount=-1 +kerning first=1054 second=1036 amount=-1 +kerning first=1105 second=1091 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=203 second=214 amount=-1 +kerning first=225 second=231 amount=-1 +kerning first=261 second=231 amount=-1 +kerning first=364 second=310 amount=-1 +kerning first=201 second=217 amount=-1 +kerning first=1047 second=1044 amount=-1 +kerning first=83 second=45 amount=-1 +kerning first=119 second=45 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=72 second=235 amount=-1 +kerning first=287 second=333 amount=-1 +kerning first=283 second=243 amount=-1 +kerning first=65 second=332 amount=-1 +kerning first=108 second=235 amount=-1 +kerning first=260 second=45 amount=-1 +kerning first=355 second=243 amount=-1 +kerning first=205 second=353 amount=-1 +kerning first=232 second=281 amount=-1 +kerning first=278 second=332 amount=-1 +kerning first=366 second=275 amount=-1 +kerning first=1062 second=1028 amount=-1 +kerning first=224 second=45 amount=-1 +kerning first=277 second=353 amount=-1 +kerning first=209 second=71 amount=-1 +kerning first=117 second=275 amount=-1 +kerning first=1048 second=1050 amount=-1 +kerning first=8220 second=368 amount=-1 +kerning first=193 second=362 amount=-1 +kerning first=1034 second=1067 amount=-1 +kerning first=86 second=223 amount=-1 +kerning first=8250 second=67 amount=-1 +kerning first=368 second=45 amount=-2 +kerning first=1030 second=1096 amount=-1 +kerning first=219 second=97 amount=-1 +kerning first=77 second=323 amount=-1 +kerning first=263 second=223 amount=-1 +kerning first=106 second=243 amount=-1 +kerning first=84 second=226 amount=-1 +kerning first=70 second=243 amount=-1 +kerning first=274 second=370 amount=-1 +kerning first=197 second=107 amount=-1 +kerning first=45 second=302 amount=-1 +kerning first=228 second=122 amount=-1 +kerning first=1071 second=1080 amount=-1 +kerning first=310 second=370 amount=-1 +kerning first=323 second=232 amount=-1 +kerning first=81 second=302 amount=-1 +kerning first=87 second=122 amount=-1 +kerning first=202 second=370 amount=-1 +kerning first=364 second=337 amount=-1 +kerning first=287 second=232 amount=-1 +kerning first=78 second=336 amount=-1 +kerning first=218 second=323 amount=-1 +kerning first=328 second=337 amount=-1 +kerning first=251 second=232 amount=-1 +kerning first=117 second=234 amount=-1 +kerning first=268 second=266 amount=-1 +kerning first=219 second=336 amount=-1 +kerning first=346 second=370 amount=-1 +kerning first=220 second=337 amount=-1 +kerning first=217 second=317 amount=-1 +kerning first=362 second=323 amount=-1 +kerning first=241 second=119 amount=-1 +kerning first=8217 second=277 amount=-1 +kerning first=327 second=336 amount=-1 +kerning first=242 second=8250 amount=-1 +kerning first=201 second=249 amount=-1 +kerning first=8222 second=122 amount=-1 +kerning first=1030 second=1105 amount=-1 +kerning first=1060 second=1041 amount=-1 +kerning first=101 second=8250 amount=-1 +kerning first=266 second=314 amount=-1 +kerning first=264 second=122 amount=-1 +kerning first=259 second=234 amount=-1 +kerning first=110 second=232 amount=-1 +kerning first=230 second=314 amount=-1 +kerning first=1047 second=1071 amount=-1 +kerning first=344 second=45 amount=-1 +kerning first=74 second=232 amount=-1 +kerning first=8217 second=242 amount=-1 +kerning first=325 second=171 amount=-1 +kerning first=72 second=267 amount=-1 +kerning first=108 second=267 amount=-1 +kerning first=65 second=105 amount=-1 +kerning first=281 second=98 amount=-1 +kerning first=217 second=110 amount=-1 +kerning first=325 second=110 amount=-1 +kerning first=289 second=110 amount=-1 +kerning first=368 second=72 amount=-1 +kerning first=1049 second=1036 amount=-1 +kerning first=314 second=269 amount=-1 +kerning first=302 second=114 amount=-1 +kerning first=1048 second=1079 amount=-1 +kerning first=199 second=225 amount=-1 +kerning first=266 second=114 amount=-1 +kerning first=72 second=103 amount=-1 +kerning first=264 second=290 amount=-1 +kerning first=374 second=114 amount=-1 +kerning first=1104 second=1097 amount=-1 +kerning first=302 second=211 amount=-1 +kerning first=330 second=302 amount=-1 +kerning first=330 second=231 amount=-1 +kerning first=249 second=267 amount=-1 +kerning first=89 second=114 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=218 second=115 amount=-1 +kerning first=230 second=114 amount=-1 +kerning first=1038 second=1046 amount=-1 +kerning first=243 second=318 amount=-1 +kerning first=229 second=335 amount=-1 +kerning first=194 second=114 amount=-1 +kerning first=99 second=8250 amount=-1 +kerning first=279 second=318 amount=-1 +kerning first=77 second=69 amount=-1 +kerning first=339 second=273 amount=-1 +kerning first=199 second=380 amount=-1 +kerning first=204 second=227 amount=-1 +kerning first=267 second=273 amount=-1 +kerning first=231 second=273 amount=-1 +kerning first=290 second=296 amount=-1 +kerning first=350 second=78 amount=-1 +kerning first=366 second=102 amount=-1 +kerning first=234 second=337 amount=-1 +kerning first=346 second=117 amount=-1 +kerning first=218 second=296 amount=-1 +kerning first=364 second=364 amount=-1 +kerning first=245 second=44 amount=-1 +kerning first=354 second=111 amount=-1 +kerning first=206 second=78 amount=-1 +kerning first=281 second=44 amount=-1 +kerning first=362 second=296 amount=-1 +kerning first=278 second=78 amount=-1 +kerning first=209 second=44 amount=-1 +kerning first=1047 second=1098 amount=-1 +kerning first=304 second=355 amount=-1 +kerning first=366 second=248 amount=-1 +kerning first=73 second=334 amount=-1 +kerning first=327 second=282 amount=-1 +kerning first=232 second=355 amount=-1 +kerning first=196 second=355 amount=-1 +kerning first=353 second=44 amount=-1 +kerning first=1041 second=1024 amount=-1 +kerning first=219 second=282 amount=-1 +kerning first=230 second=287 amount=-1 +kerning first=187 second=288 amount=-1 +kerning first=45 second=221 amount=-2 +kerning first=1076 second=1091 amount=-1 +kerning first=82 second=288 amount=-1 +kerning first=78 second=282 amount=-1 +kerning first=217 second=8250 amount=-2 +kerning first=354 second=230 amount=-1 +kerning first=67 second=346 amount=-1 +kerning first=8222 second=382 amount=-1 +kerning first=1059 second=1089 amount=-1 +kerning first=217 second=83 amount=-1 +kerning first=1038 second=1073 amount=-1 +kerning first=351 second=291 amount=-1 +kerning first=262 second=352 amount=-1 +kerning first=194 second=87 amount=-1 +kerning first=325 second=83 amount=-1 +kerning first=279 second=291 amount=-1 +kerning first=243 second=291 amount=-1 +kerning first=370 second=352 amount=-1 +kerning first=307 second=99 amount=-1 +kerning first=298 second=352 amount=-1 +kerning first=200 second=76 amount=-1 +kerning first=268 second=282 amount=-1 +kerning first=339 second=8218 amount=-1 +kerning first=334 second=325 amount=-1 +kerning first=307 second=279 amount=-1 +kerning first=199 second=279 amount=-1 +kerning first=347 second=187 amount=-1 +kerning first=350 second=278 amount=-1 +kerning first=248 second=108 amount=-1 +kerning first=231 second=8218 amount=-1 +kerning first=235 second=279 amount=-1 +kerning first=78 second=211 amount=-1 +kerning first=266 second=362 amount=-1 +kerning first=1077 second=1119 amount=-1 +kerning first=70 second=211 amount=-1 +kerning first=78 second=68 amount=-1 +kerning first=77 second=269 amount=-1 +kerning first=210 second=84 amount=-1 +kerning first=8217 second=223 amount=-1 +kerning first=8217 second=226 amount=-1 +kerning first=221 second=71 amount=-1 +kerning first=88 second=362 amount=-1 +kerning first=98 second=187 amount=-1 +kerning first=218 second=269 amount=-1 +kerning first=224 second=99 amount=-1 +kerning first=97 second=316 amount=-1 +kerning first=219 second=211 amount=-1 +kerning first=362 second=269 amount=-1 +kerning first=81 second=75 amount=-1 +kerning first=232 second=382 amount=-1 +kerning first=217 second=371 amount=-1 +kerning first=368 second=99 amount=-1 +kerning first=1044 second=1082 amount=-1 +kerning first=268 second=382 amount=-1 +kerning first=203 second=187 amount=-1 +kerning first=198 second=266 amount=-1 +kerning first=304 second=382 amount=-1 +kerning first=1062 second=1082 amount=-1 +kerning first=296 second=99 amount=-1 +kerning first=326 second=269 amount=-1 +kerning first=8250 second=86 amount=-2 +kerning first=89 second=260 amount=-1 +kerning first=200 second=117 amount=-1 +kerning first=1076 second=1083 amount=-1 +kerning first=366 second=8220 amount=-1 +kerning first=330 second=248 amount=-1 +kerning first=1059 second=1116 amount=-1 +kerning first=277 second=380 amount=-1 +kerning first=66 second=350 amount=-1 +kerning first=288 second=218 amount=-1 +kerning first=1067 second=1030 amount=-1 +kerning first=275 second=103 amount=-1 +kerning first=1068 second=1043 amount=-1 +kerning first=1038 second=1100 amount=-1 +kerning first=366 second=75 amount=-1 +kerning first=330 second=75 amount=-1 +kerning first=117 second=248 amount=-1 +kerning first=207 second=264 amount=-1 +kerning first=374 second=260 amount=-1 +kerning first=264 second=209 amount=-1 +kerning first=81 second=8220 amount=-2 +kerning first=362 second=69 amount=-1 +kerning first=85 second=325 amount=-1 +kerning first=66 second=193 amount=-1 +kerning first=220 second=364 amount=-1 +kerning first=66 second=264 amount=-1 +kerning first=70 second=270 amount=-1 +kerning first=270 second=66 amount=-1 +kerning first=99 second=367 amount=-1 +kerning first=86 second=196 amount=-1 +kerning first=258 second=8220 amount=-2 +kerning first=65 second=251 amount=-1 +kerning first=222 second=8220 amount=-2 +kerning first=218 second=69 amount=-1 +kerning first=79 second=364 amount=-1 +kerning first=198 second=66 amount=-1 +kerning first=262 second=325 amount=-1 +kerning first=211 second=270 amount=-1 +kerning first=226 second=316 amount=-1 +kerning first=100 second=380 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=1052 second=1073 amount=-1 +kerning first=335 second=8217 amount=-2 +kerning first=193 second=264 amount=-1 +kerning first=350 second=8221 amount=-1 +kerning first=355 second=351 amount=-1 +kerning first=244 second=8218 amount=-1 +kerning first=101 second=251 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=270 second=364 amount=-1 +kerning first=88 second=264 amount=-1 +kerning first=269 second=122 amount=-1 +kerning first=1055 second=1034 amount=-1 +kerning first=283 second=351 amount=-1 +kerning first=1055 second=1024 amount=-1 +kerning first=350 second=251 amount=-1 +kerning first=204 second=69 amount=-1 +kerning first=296 second=338 amount=-1 +kerning first=252 second=277 amount=-1 +kerning first=108 second=316 amount=-1 +kerning first=278 second=251 amount=-1 +kerning first=263 second=8217 amount=-2 +kerning first=314 second=251 amount=-1 +kerning first=1065 second=1060 amount=-1 +kerning first=252 second=232 amount=-1 +kerning first=325 second=273 amount=-1 +kerning first=1071 second=1050 amount=-1 +kerning first=85 second=8221 amount=-1 +kerning first=72 second=99 amount=-1 +kerning first=121 second=8221 amount=-2 +kerning first=193 second=268 amount=-1 +kerning first=1041 second=1051 amount=-1 +kerning first=226 second=8221 amount=-2 +kerning first=1064 second=1064 amount=-1 +kerning first=221 second=193 amount=-1 +kerning first=249 second=99 amount=-1 +kerning first=211 second=351 amount=-1 +kerning first=204 second=286 amount=-1 +kerning first=218 second=242 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=77 second=242 amount=-1 +kerning first=356 second=347 amount=-1 +kerning first=326 second=242 amount=-1 +kerning first=8250 second=365 amount=-1 +kerning first=1056 second=1030 amount=-1 +kerning first=282 second=171 amount=-1 +kerning first=362 second=242 amount=-1 +kerning first=1066 second=1056 amount=-1 +kerning first=354 second=171 amount=-1 +kerning first=264 second=78 amount=-1 +kerning first=199 second=333 amount=-1 +kerning first=323 second=246 amount=-1 +kerning first=370 second=113 amount=-1 +kerning first=70 second=8250 amount=-2 +kerning first=65 second=118 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=205 second=282 amount=-1 +kerning first=330 second=346 amount=-1 +kerning first=275 second=100 amount=-1 +kerning first=230 second=233 amount=-1 +kerning first=8218 second=117 amount=-1 +kerning first=86 second=8217 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=122 second=8217 amount=-1 +kerning first=1049 second=1091 amount=-1 +kerning first=69 second=171 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=105 second=171 amount=-1 +kerning first=374 second=233 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=266 second=233 amount=-1 +kerning first=302 second=233 amount=-1 +kerning first=74 second=71 amount=-1 +kerning first=1056 second=1108 amount=-1 +kerning first=298 second=330 amount=-1 +kerning first=1069 second=1034 amount=-1 +kerning first=325 second=246 amount=-1 +kerning first=73 second=68 amount=-1 +kerning first=356 second=103 amount=-1 +kerning first=289 second=365 amount=-1 +kerning first=80 second=220 amount=-1 +kerning first=246 second=382 amount=-1 +kerning first=1054 second=1065 amount=-1 +kerning first=66 second=374 amount=-1 +kerning first=211 second=194 amount=-1 +kerning first=217 second=246 amount=-1 +kerning first=248 second=103 amount=-1 +kerning first=368 second=365 amount=-1 +kerning first=346 second=77 amount=-1 +kerning first=375 second=45 amount=-1 +kerning first=354 second=382 amount=-1 +kerning first=85 second=330 amount=-1 +kerning first=108 second=289 amount=-1 +kerning first=253 second=316 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=263 second=109 amount=-1 +kerning first=1078 second=1074 amount=-1 +kerning first=253 second=8218 amount=-1 +kerning first=70 second=194 amount=-1 +kerning first=1068 second=1048 amount=-1 +kerning first=217 second=8218 amount=-2 +kerning first=214 second=68 amount=-1 +kerning first=370 second=330 amount=-1 +kerning first=119 second=365 amount=-1 +kerning first=8220 second=260 amount=-2 +kerning first=271 second=171 amount=-1 +kerning first=286 second=68 amount=-1 +kerning first=83 second=365 amount=-1 +kerning first=296 second=334 amount=-1 +kerning first=73 second=339 amount=-1 +kerning first=204 second=313 amount=-1 +kerning first=251 second=281 amount=-1 +kerning first=1085 second=1095 amount=-1 +kerning first=287 second=281 amount=-1 +kerning first=334 second=86 amount=-1 +kerning first=212 second=347 amount=-1 +kerning first=72 second=355 amount=-1 +kerning first=323 second=281 amount=-1 +kerning first=1033 second=1041 amount=-1 +kerning first=272 second=8220 amount=-2 +kerning first=112 second=8218 amount=-1 +kerning first=86 second=109 amount=-1 +kerning first=87 second=353 amount=-1 +kerning first=380 second=8220 amount=-1 +kerning first=1049 second=1095 amount=-1 +kerning first=344 second=8220 amount=-1 +kerning first=1031 second=1025 amount=-1 +kerning first=316 second=277 amount=-1 +kerning first=274 second=77 amount=-1 +kerning first=234 second=120 amount=-1 +kerning first=202 second=77 amount=-1 +kerning first=187 second=315 amount=-1 +kerning first=250 second=339 amount=-1 +kerning first=8218 second=105 amount=-1 +kerning first=8217 second=326 amount=-1 +kerning first=74 second=281 amount=-1 +kerning first=1052 second=1100 amount=-1 +kerning first=1070 second=1070 amount=-1 +kerning first=110 second=281 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=201 second=298 amount=-1 +kerning first=272 second=356 amount=-1 +kerning first=68 second=202 amount=-1 +kerning first=1053 second=1042 amount=-1 +kerning first=288 second=8249 amount=-1 +kerning first=78 second=368 amount=-1 +kerning first=204 second=232 amount=-1 +kerning first=302 second=206 amount=-1 +kerning first=105 second=232 amount=-1 +kerning first=324 second=8249 amount=-1 +kerning first=284 second=76 amount=-1 +kerning first=338 second=206 amount=-1 +kerning first=370 second=357 amount=-1 +kerning first=99 second=232 amount=-1 +kerning first=74 second=335 amount=-1 +kerning first=1028 second=1118 amount=-1 +kerning first=219 second=368 amount=-1 +kerning first=212 second=76 amount=-1 +kerning first=266 second=206 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=262 second=357 amount=-1 +kerning first=8250 second=121 amount=-1 +kerning first=110 second=335 amount=-1 +kerning first=1064 second=1118 amount=-1 +kerning first=251 second=335 amount=-1 +kerning first=240 second=232 amount=-1 +kerning first=298 second=357 amount=-1 +kerning first=203 second=344 amount=-1 +kerning first=8222 second=79 amount=-1 +kerning first=344 second=85 amount=-1 +kerning first=75 second=8249 amount=-1 +kerning first=234 second=234 amount=-1 +kerning first=77 second=332 amount=-1 +kerning first=264 second=241 amount=-1 +kerning first=272 second=85 amount=-1 +kerning first=8250 second=338 amount=-1 +kerning first=67 second=102 amount=-1 +kerning first=72 second=262 amount=-1 +kerning first=200 second=85 amount=-1 +kerning first=327 second=368 amount=-1 +kerning first=1069 second=1044 amount=-1 +kerning first=252 second=8249 amount=-1 +kerning first=368 second=67 amount=-1 +kerning first=1042 second=1042 amount=-1 +kerning first=258 second=216 amount=-1 +kerning first=296 second=67 amount=-1 +kerning first=275 second=46 amount=-1 +kerning first=286 second=366 amount=-1 +kerning first=330 second=216 amount=-1 +kerning first=70 second=378 amount=-1 +kerning first=347 second=46 amount=-1 +kerning first=258 second=213 amount=-1 +kerning first=214 second=366 amount=-1 +kerning first=73 second=366 amount=-1 +kerning first=1036 second=1081 amount=-1 +kerning first=366 second=216 amount=-1 +kerning first=87 second=241 amount=-1 +kerning first=85 second=357 amount=-1 +kerning first=296 second=284 amount=-1 +kerning first=86 second=353 amount=-1 +kerning first=89 second=363 amount=-1 +kerning first=202 second=325 amount=-1 +kerning first=74 second=103 amount=-1 +kerning first=195 second=252 amount=-1 +kerning first=354 second=225 amount=-1 +kerning first=207 second=350 amount=-1 +kerning first=194 second=363 amount=-1 +kerning first=211 second=80 amount=-1 +kerning first=230 second=363 amount=-1 +kerning first=209 second=229 amount=-1 +kerning first=263 second=353 amount=-1 +kerning first=1065 second=1114 amount=-1 +kerning first=45 second=216 amount=-1 +kerning first=70 second=80 amount=-1 +kerning first=75 second=8222 amount=-1 +kerning first=352 second=70 amount=-1 +kerning first=270 second=207 amount=-1 +kerning first=204 second=73 amount=-1 +kerning first=70 second=107 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=1033 second=1071 amount=-1 +kerning first=256 second=8220 amount=-2 +kerning first=119 second=311 amount=-1 +kerning first=1069 second=1071 amount=-1 +kerning first=8217 second=353 amount=-1 +kerning first=280 second=70 amount=-1 +kerning first=118 second=369 amount=-1 +kerning first=283 second=378 amount=-1 +kerning first=298 second=113 amount=-1 +kerning first=205 second=201 amount=-1 +kerning first=1041 second=1070 amount=-1 +kerning first=310 second=44 amount=-1 +kerning first=226 second=113 amount=-1 +kerning first=288 second=8222 amount=-1 +kerning first=262 second=113 amount=-1 +kerning first=235 second=116 amount=-1 +kerning first=216 second=8222 amount=-1 +kerning first=1049 second=1068 amount=-1 +kerning first=199 second=116 amount=-1 +kerning first=326 second=118 amount=-1 +kerning first=203 second=317 amount=-1 +kerning first=111 second=8222 amount=-1 +kerning first=85 second=113 amount=-1 +kerning first=198 second=207 amount=-1 +kerning first=99 second=259 amount=-1 +kerning first=264 second=268 amount=-1 +kerning first=8217 second=109 amount=-1 +kerning first=192 second=268 amount=-1 +kerning first=1036 second=1108 amount=-1 +kerning first=195 second=332 amount=-1 +kerning first=8217 second=194 amount=-2 +kerning first=263 second=326 amount=-1 +kerning first=272 second=302 amount=-1 +kerning first=1054 second=1038 amount=-1 +kerning first=68 second=256 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=200 second=302 amount=-1 +kerning first=1053 second=1096 amount=-1 +kerning first=193 second=210 amount=-1 +kerning first=323 second=335 amount=-1 +kerning first=287 second=335 amount=-1 +kerning first=88 second=210 amount=-1 +kerning first=210 second=198 amount=-1 +kerning first=203 second=73 amount=-1 +kerning first=324 second=277 amount=-1 +kerning first=73 second=122 amount=-1 +kerning first=264 second=234 amount=-1 +kerning first=1044 second=1114 amount=-1 +kerning first=87 second=268 amount=-1 +kerning first=325 second=219 amount=-1 +kerning first=283 second=107 amount=-1 +kerning first=202 second=213 amount=-1 +kerning first=264 second=187 amount=-1 +kerning first=194 second=336 amount=-1 +kerning first=79 second=88 amount=-1 +kerning first=192 second=187 amount=-1 +kerning first=66 second=323 amount=-1 +kerning first=354 second=279 amount=-1 +kerning first=266 second=336 amount=-1 +kerning first=228 second=187 amount=-1 +kerning first=263 second=117 amount=-1 +kerning first=302 second=336 amount=-1 +kerning first=74 second=200 amount=-1 +kerning first=81 second=270 amount=-1 +kerning first=204 second=362 amount=-1 +kerning first=241 second=118 amount=-1 +kerning first=338 second=336 amount=-1 +kerning first=310 second=213 amount=-1 +kerning first=8217 second=245 amount=-1 +kerning first=267 second=8250 amount=-1 +kerning first=374 second=336 amount=-1 +kerning first=274 second=213 amount=-1 +kerning first=231 second=8250 amount=-1 +kerning first=1048 second=1045 amount=-1 +kerning first=207 second=323 amount=-1 +kerning first=209 second=283 amount=-1 +kerning first=194 second=119 amount=-1 +kerning first=105 second=279 amount=-1 +kerning first=356 second=244 amount=-1 +kerning first=192 second=371 amount=-1 +kerning first=82 second=266 amount=-1 +kerning first=121 second=314 amount=-1 +kerning first=187 second=266 amount=-1 +kerning first=87 second=187 amount=-1 +kerning first=206 second=327 amount=-1 +kerning first=323 second=200 amount=-1 +kerning first=73 second=204 amount=-1 +kerning first=278 second=327 amount=-1 +kerning first=106 second=248 amount=-1 +kerning first=291 second=314 amount=-1 +kerning first=268 second=79 amount=-1 +kerning first=209 second=66 amount=-1 +kerning first=70 second=248 amount=-1 +kerning first=255 second=314 amount=-1 +kerning first=304 second=79 amount=-1 +kerning first=1060 second=1036 amount=-1 +kerning first=327 second=171 amount=-1 +kerning first=1056 second=1052 amount=-1 +kerning first=206 second=110 amount=-1 +kerning first=68 second=66 amount=-1 +kerning first=1070 second=1062 amount=-1 +kerning first=281 second=283 amount=-1 +kerning first=120 second=318 amount=-1 +kerning first=196 second=79 amount=-1 +kerning first=113 second=318 amount=-1 +kerning first=229 second=245 amount=-1 +kerning first=67 second=70 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=111 second=380 amount=-1 +kerning first=254 second=318 amount=-1 +kerning first=193 second=367 amount=-1 +kerning first=217 second=192 amount=-1 +kerning first=267 second=305 amount=-1 +kerning first=328 second=231 amount=-1 +kerning first=339 second=44 amount=-1 +kerning first=231 second=305 amount=-1 +kerning first=199 second=257 amount=-1 +kerning first=203 second=209 amount=-1 +kerning first=1064 second=1089 amount=-1 +kerning first=80 second=274 amount=-1 +kerning first=1047 second=1049 amount=-1 +kerning first=366 second=270 amount=-1 +kerning first=197 second=356 amount=-1 +kerning first=1048 second=1072 amount=-1 +kerning first=338 second=363 amount=-1 +kerning first=8217 second=218 amount=-1 +kerning first=374 second=363 amount=-1 +kerning first=68 second=310 amount=-1 +kerning first=205 second=114 amount=-1 +kerning first=282 second=252 amount=-1 +kerning first=241 second=8249 amount=-1 +kerning first=218 second=101 amount=-1 +kerning first=219 second=79 amount=-1 +kerning first=199 second=284 amount=-1 +kerning first=364 second=115 amount=-1 +kerning first=326 second=101 amount=-1 +kerning first=79 second=115 amount=-1 +kerning first=242 second=114 amount=-1 +kerning first=204 second=205 amount=-1 +kerning first=66 second=296 amount=-1 +kerning first=65 second=354 amount=-1 +kerning first=1058 second=1098 amount=-1 +kerning first=71 second=217 amount=-1 +kerning first=362 second=101 amount=-1 +kerning first=220 second=115 amount=-1 +kerning first=192 second=214 amount=-1 +kerning first=250 second=231 amount=-1 +kerning first=1056 second=1036 amount=-1 +kerning first=212 second=217 amount=-1 +kerning first=87 second=214 amount=-1 +kerning first=232 second=106 amount=-1 +kerning first=207 second=296 amount=-1 +kerning first=284 second=217 amount=-1 +kerning first=210 second=89 amount=-1 +kerning first=229 second=8220 amount=-2 +kerning first=73 second=231 amount=-1 +kerning first=109 second=231 amount=-1 +kerning first=193 second=220 amount=-1 +kerning first=264 second=214 amount=-1 +kerning first=264 second=344 amount=-1 +kerning first=209 second=310 amount=-1 +kerning first=69 second=252 amount=-1 +kerning first=100 second=8249 amount=-1 +kerning first=242 second=187 amount=-1 +kerning first=330 second=243 amount=-1 +kerning first=283 second=275 amount=-1 +kerning first=77 second=345 amount=-1 +kerning first=224 second=235 amount=-1 +kerning first=370 second=249 amount=-1 +kerning first=366 second=80 amount=-1 +kerning first=355 second=275 amount=-1 +kerning first=366 second=243 amount=-1 +kerning first=1071 second=1031 amount=-1 +kerning first=108 second=45 amount=-1 +kerning first=198 second=71 amount=-1 +kerning first=1049 second=1043 amount=-1 +kerning first=296 second=235 amount=-1 +kerning first=121 second=249 amount=-1 +kerning first=255 second=287 amount=-1 +kerning first=106 second=275 amount=-1 +kerning first=218 second=345 amount=-1 +kerning first=187 second=223 amount=-1 +kerning first=254 second=345 amount=-1 +kerning first=368 second=235 amount=-1 +kerning first=72 second=45 amount=-1 +kerning first=290 second=345 amount=-1 +kerning first=8218 second=268 amount=-1 +kerning first=326 second=345 amount=-1 +kerning first=362 second=345 amount=-1 +kerning first=81 second=80 amount=-1 +kerning first=363 second=287 amount=-1 +kerning first=70 second=275 amount=-1 +kerning first=206 second=83 amount=-1 +kerning first=45 second=80 amount=-1 +kerning first=249 second=45 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=1118 second=1080 amount=-1 +kerning first=117 second=243 amount=-1 +kerning first=1046 second=1080 amount=-1 +kerning first=89 second=336 amount=-1 +kerning first=1060 second=1063 amount=-1 +kerning first=75 second=223 amount=-1 +kerning first=281 second=337 amount=-1 +kerning first=68 second=195 amount=-1 +kerning first=205 second=304 amount=-1 +kerning first=82 second=213 amount=-1 +kerning first=86 second=245 amount=-1 +kerning first=1031 second=1079 amount=-1 +kerning first=209 second=337 amount=-1 +kerning first=200 second=199 amount=-1 +kerning first=82 second=212 amount=-1 +kerning first=350 second=8218 amount=-1 +kerning first=104 second=337 amount=-1 +kerning first=77 second=74 amount=-1 +kerning first=245 second=120 amount=-1 +kerning first=282 second=364 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=344 second=199 amount=-1 +kerning first=281 second=120 amount=-1 +kerning first=218 second=74 amount=-1 +kerning first=211 second=221 amount=-1 +kerning first=45 second=324 amount=-1 +kerning first=101 second=8218 amount=-1 +kerning first=242 second=122 amount=-1 +kerning first=75 second=220 amount=-1 +kerning first=362 second=74 amount=-1 +kerning first=1042 second=1082 amount=-1 +kerning first=279 second=269 amount=-1 +kerning first=242 second=8218 amount=-1 +kerning first=227 second=245 amount=-1 +kerning first=1039 second=1037 amount=-1 +kerning first=119 second=250 amount=-1 +kerning first=199 second=203 amount=-1 +kerning first=283 second=8220 amount=-2 +kerning first=221 second=111 amount=-1 +kerning first=213 second=72 amount=-1 +kerning first=1034 second=1037 amount=-1 +kerning first=257 second=111 amount=-1 +kerning first=72 second=72 amount=-1 +kerning first=355 second=8220 amount=-1 +kerning first=1042 second=1101 amount=-1 +kerning first=1091 second=1088 amount=-1 +kerning first=289 second=105 amount=-1 +kerning first=1078 second=1101 amount=-1 +kerning first=365 second=111 amount=-1 +kerning first=287 second=254 amount=-1 +kerning first=374 second=65 amount=-1 +kerning first=230 second=249 amount=-1 +kerning first=72 second=370 amount=-1 +kerning first=212 second=374 amount=-1 +kerning first=219 second=260 amount=-1 +kerning first=198 second=315 amount=-1 +kerning first=275 second=263 amount=-1 +kerning first=277 second=114 amount=-1 +kerning first=187 second=212 amount=-1 +kerning first=97 second=267 amount=-1 +kerning first=1059 second=1094 amount=-1 +kerning first=241 second=114 amount=-1 +kerning first=1043 second=1097 amount=-1 +kerning first=70 second=8220 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=211 second=8220 amount=-2 +kerning first=258 second=253 amount=-1 +kerning first=213 second=370 amount=-1 +kerning first=270 second=315 amount=-1 +kerning first=224 second=316 amount=-1 +kerning first=323 second=227 amount=-1 +kerning first=231 second=251 amount=-1 +kerning first=317 second=364 amount=-1 +kerning first=232 second=337 amount=-1 +kerning first=267 second=251 amount=-1 +kerning first=201 second=81 amount=-1 +kerning first=195 second=251 amount=-1 +kerning first=1064 second=1105 amount=-1 +kerning first=209 second=364 amount=-1 +kerning first=375 second=251 amount=-1 +kerning first=206 second=273 amount=-1 +kerning first=101 second=273 amount=-1 +kerning first=205 second=331 amount=-1 +kerning first=339 second=251 amount=-1 +kerning first=270 second=44 amount=-1 +kerning first=268 second=370 amount=-1 +kerning first=283 second=248 amount=-1 +kerning first=217 second=78 amount=-1 +kerning first=80 second=355 amount=-1 +kerning first=325 second=78 amount=-1 +kerning first=355 second=248 amount=-1 +kerning first=234 second=44 amount=-1 +kerning first=290 second=69 amount=-1 +kerning first=1107 second=1085 amount=-1 +kerning first=207 second=242 amount=-1 +kerning first=338 second=282 amount=-1 +kerning first=264 second=202 amount=-1 +kerning first=206 second=113 amount=-1 +kerning first=266 second=282 amount=-1 +kerning first=1049 second=1067 amount=-1 +kerning first=1052 second=1024 amount=-1 +kerning first=8218 second=214 amount=-1 +kerning first=279 second=242 amount=-1 +kerning first=200 second=8220 amount=-1 +kerning first=74 second=227 amount=-1 +kerning first=78 second=233 amount=-1 +kerning first=313 second=87 amount=-1 +kerning first=199 second=230 amount=-1 +kerning first=305 second=99 amount=-1 +kerning first=219 second=233 amount=-1 +kerning first=326 second=291 amount=-1 +kerning first=8222 second=220 amount=-1 diff --git a/jme3-examples/src/main/resources/jme3test/font/Native-FreeSerif16I.png b/jme3-examples/src/main/resources/jme3test/font/Native-FreeSerif16I.png new file mode 100644 index 000000000..240e0c1eb Binary files /dev/null and b/jme3-examples/src/main/resources/jme3test/font/Native-FreeSerif16I.png differ