diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 6488c73..3bab92d 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -7,5 +7,6 @@ repositories { } dependencies { + implementation("com.badlogicgames.gdx:gdx-tools:1.10.0") implementation(gradleApi()) } \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/eu/jonahbauer/wizard/build/TexturePackerTask.kt b/buildSrc/src/main/kotlin/eu/jonahbauer/wizard/build/TexturePackerTask.kt new file mode 100644 index 0000000..575b4ab --- /dev/null +++ b/buildSrc/src/main/kotlin/eu/jonahbauer/wizard/build/TexturePackerTask.kt @@ -0,0 +1,73 @@ +import com.badlogic.gdx.tools.texturepacker.TexturePacker +import org.gradle.api.DefaultTask +import org.gradle.api.file.DirectoryProperty +import org.gradle.api.tasks.InputDirectory +import org.gradle.api.tasks.OutputDirectory +import org.gradle.api.tasks.TaskAction +import org.gradle.work.Incremental +import org.gradle.work.InputChanges +import java.io.File +import java.util.* + +import java.util.regex.Pattern +import kotlin.collections.HashSet + +abstract class TexturePackerTask : DefaultTask() { + @get:Incremental + @get:InputDirectory + abstract val input : DirectoryProperty + + @get:OutputDirectory + abstract val resourceOutput : DirectoryProperty + + @get:OutputDirectory + abstract val generatedSourceOutput : DirectoryProperty + + @TaskAction + fun pack(changes: InputChanges) { + val dirs = HashSet() + val inputDir = input.asFile.get() + + if (changes.isIncremental) { + val root = inputDir.toPath() + for (change in changes.getFileChanges(input)) { + if (!change.file.isFile) continue + dirs.add(root.resolve(root.relativize(change.file.toPath()).subpath(0, 1)).toFile()) + } + } else { + inputDir.listFiles()?.filter { it.isDirectory }?.forEach { dirs.add(it) } + } + + val outputDir = resourceOutput.get().asFile + for (dir in dirs) { + TexturePacker.process(dir.path, outputDir.path, dir.name) + + val atlas = File(outputDir, dir.name + ".atlas") + if (atlas.exists()) { + val name = dir.name[0].uppercaseChar() + dir.name.substring(1) + "Atlas" + val path = outputDir.toPath().relativize(atlas.toPath()).toString() + + val builder = StringBuilder() + builder.append(""" + package eu.jonahbauer.wizard.client.libgdx; + public class $name { + public static final String ${'$'}PATH = "$path"; + """.trimIndent()) + + val content = atlas.readText(Charsets.UTF_8) + val matcher = Pattern.compile("(?m)^([^:]*?)\$\\n {2}").matcher(content) + while (matcher.find()) { + val texture = matcher.group(1) + val field = texture.replace("-", "_").replace("/", "_").uppercase(Locale.ROOT) + builder.append(" public static final String $field = \"$texture\";\n") + } + + builder.append("}\n") + + val out = generatedSourceOutput.file("eu/jonahbauer/wizard/client/libgdx/${name}.java").get().asFile + out.parentFile.mkdirs() + out.writeText(builder.toString(), Charsets.UTF_8) + } + } + } +} \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/build.gradle.kts b/wizard-client/wizard-client-libgdx/build.gradle.kts index be4cca3..636d257 100644 --- a/wizard-client/wizard-client-libgdx/build.gradle.kts +++ b/wizard-client/wizard-client-libgdx/build.gradle.kts @@ -14,7 +14,7 @@ project(":wizard-client:wizard-client-libgdx:core") { apply(plugin = "java-library") dependencies { - api( LibGDX.api) + api(LibGDX.api) api(LibGDX.box2d) } } diff --git a/wizard-client/wizard-client-libgdx/core/build.gradle.kts b/wizard-client/wizard-client-libgdx/core/build.gradle.kts index 86f14a0..7f25f31 100644 --- a/wizard-client/wizard-client-libgdx/core/build.gradle.kts +++ b/wizard-client/wizard-client-libgdx/core/build.gradle.kts @@ -4,3 +4,19 @@ val texturePackerGeneratedSources = "$buildDir/generated/sources/texturePacker/j sourceSets.main.get().java.srcDir(texturePackerGeneratedSources) sourceSets.main.get().resources.srcDir(texturePackerResources) + +tasks { + val packTextures = register("packTextures") { + input.set(file(texturePackerSource)) + resourceOutput.set(file(texturePackerResources)) + generatedSourceOutput.set(file(texturePackerGeneratedSources)) + } + + processResources { + dependsOn(packTextures) + } + + compileJava { + dependsOn(packTextures) + } +} \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java index 6793668..d880c43 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java @@ -2,20 +2,32 @@ package eu.jonahbauer.wizard.client.libgdx; import com.badlogic.gdx.Game; import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.Graphics; +import com.badlogic.gdx.Input; import com.badlogic.gdx.audio.Music; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.g2d.SpriteBatch; +import com.badlogic.gdx.utils.I18NBundle; import eu.jonahbauer.wizard.client.libgdx.screens.MainMenuScreen; +import java.util.Locale; + public class WizardGame extends Game { + public static final boolean DEBUG = false; public static final int WIDTH = 1920; public static final int HEIGHT = 1080; public SpriteBatch batch; + public I18NBundle messages; + + private boolean toggle; + + private int oldHeight, oldWidth; @Override - public void create () { + public void create() { batch = new SpriteBatch(); + messages = I18NBundle.createBundle(Gdx.files.internal("i18n/messages"), Locale.getDefault()); // background music Music backgroundMusic = Gdx.audio.newMusic(Gdx.files.internal("background.wav")); @@ -30,8 +42,34 @@ public class WizardGame extends Game { this.setScreen(new MainMenuScreen(this)); } - + + @Override + public void render() { + super.render(); + + // alt + enter shortcut for fullscreen + var enter = Gdx.input.isKeyPressed(Input.Keys.ENTER); + var alt = (Gdx.input.isKeyPressed(Input.Keys.ALT_LEFT) || Gdx.input.isKeyPressed(Input.Keys.ALT_RIGHT)); + var toggle = enter && alt; + + if (toggle && !this.toggle) { + this.toggle = true; + var fullscreen = Gdx.graphics.isFullscreen(); + Graphics.DisplayMode displayMode = Gdx.graphics.getDisplayMode(); + if (fullscreen) { + Gdx.graphics.setWindowedMode(oldWidth, oldHeight); + } else { + oldWidth = Gdx.graphics.getWidth(); + oldHeight = Gdx.graphics.getHeight(); + Gdx.graphics.setFullscreenMode(displayMode); + } + } else if (!toggle) { + this.toggle = false; + } + } + @Override public void dispose () { + batch.dispose(); } } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/AutoFocusScrollPane.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/AutoFocusScrollPane.java new file mode 100644 index 0000000..6027a2d --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/AutoFocusScrollPane.java @@ -0,0 +1,43 @@ +package eu.jonahbauer.wizard.client.libgdx.actors; + +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.InputEvent; +import com.badlogic.gdx.scenes.scene2d.InputListener; +import com.badlogic.gdx.scenes.scene2d.ui.ScrollPane; +import com.badlogic.gdx.scenes.scene2d.ui.Skin; + +@SuppressWarnings("unused") +public class AutoFocusScrollPane extends ScrollPane { + + public AutoFocusScrollPane(Actor widget) { + super(widget); + init(); + } + + public AutoFocusScrollPane(Actor widget, Skin skin) { + super(widget, skin); + init(); + } + + public AutoFocusScrollPane(Actor widget, Skin skin, String styleName) { + super(widget, skin, styleName); + init(); + } + + public AutoFocusScrollPane(Actor widget, ScrollPaneStyle style) { + super(widget, style); + init(); + } + + private void init() { + addListener(new InputListener() { + public void enter(InputEvent event, float x, float y, int pointer, Actor fromActor) { + getStage().setScrollFocus(AutoFocusScrollPane.this); + } + + public void exit(InputEvent event, float x, float y, int pointer, Actor toActor) { + getStage().setScrollFocus(null); + } + }); + } +} \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ConnectScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ConnectScreen.java new file mode 100644 index 0000000..04e4095 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ConnectScreen.java @@ -0,0 +1,67 @@ +package eu.jonahbauer.wizard.client.libgdx.screens; + +import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.ui.Label; +import com.badlogic.gdx.scenes.scene2d.ui.TextButton; +import com.badlogic.gdx.scenes.scene2d.ui.TextField; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; +import com.badlogic.gdx.utils.Align; +import eu.jonahbauer.wizard.client.libgdx.WizardGame; + +public class ConnectScreen extends MenuScreen { + + private TextButton buttonBack; + private TextButton buttonConnect; + + private TextField uri; + + private final ChangeListener listener = new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonBack) { + game.setScreen(new MainMenuScreen(game, data)); + sfxClick(); + } else if (actor == buttonConnect) { + game.setScreen(new LobbyScreen(game, data)); + sfxClick(); + } + } + }; + + public ConnectScreen(WizardGame game, Data data) { + super(game, data); + } + + @Override + public void show() { + super.show(); + + buttonBack = new TextButton(game.messages.get("menu.connect.back"), data.skin); + buttonBack.setPosition(WizardGame.WIDTH * 0.275f, BUTTON_BAR_Y); + buttonConnect = new TextButton(game.messages.get("menu.connect.connect"), data.skin); + buttonConnect.setPosition(WizardGame.WIDTH * 0.725f - buttonConnect.getWidth(), BUTTON_BAR_Y); + + var label = new Label(game.messages.get("menu.connect.address.label"), data.skin); + label.setSize(0.4f * WizardGame.WIDTH, 64); + label.setAlignment(Align.center); + label.setPosition(0.5f * (WizardGame.WIDTH - label.getWidth()), 0.55f * (WizardGame.HEIGHT - label.getHeight())); + + uri = new TextField("", data.skin); + uri.setMessageText("wss://localhost/wizard"); + uri.setSize(0.4f * WizardGame.WIDTH, 64); + uri.setPosition(0.5f * (WizardGame.WIDTH - uri.getWidth()), 0.45f * (WizardGame.HEIGHT - uri.getHeight())); + + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(buttonBack); + data.stage.addActor(buttonConnect); + data.stage.addActor(uri); + data.stage.addActor(label); + + buttonBack.addListener(listener); + buttonConnect.addListener(listener); + } + + @Override + protected void renderInternal(float delta) {} +} diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java index 3d02927..d2152bc 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java @@ -1,10 +1,10 @@ package eu.jonahbauer.wizard.client.libgdx.screens; import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.scenes.scene2d.InputEvent; +import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.ui.TextButton; import com.badlogic.gdx.scenes.scene2d.ui.TextField; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; public class CreateGameScreen extends MenuScreen { @@ -18,63 +18,61 @@ public class CreateGameScreen extends MenuScreen { TextField option5; TextField option6; - ClickListener listener = new ClickListener() { + ChangeListener listener = new ChangeListener() { @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == backButton) { - game.setScreen(new SessionListScreen(game)); + public void changed(ChangeEvent event, Actor actor) { + if (actor == backButton) { + game.setScreen(new LobbyScreen(game, data)); sfxClick(); - } else if (target == continueButton) { - game.setScreen(new WaitingScreen(game)); + } else if (actor == continueButton) { + game.setScreen(new WaitingScreen(game, data)); sfxClick(); } } }; - public CreateGameScreen(WizardGame game) { - super(game); + public CreateGameScreen(WizardGame game, Data data) { + super(game, data); } @Override public void show() { super.show(); - backButton = new TextButton("Zurück", skin); - backButton.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.18f); - backButton.setSize(120, backButton.getHeight()); - continueButton = new TextButton("Fortfahren", skin); - continueButton.setPosition(WizardGame.WIDTH * 0.7f - continueButton.getWidth(), WizardGame.HEIGHT * 0.18f); + backButton = new TextButton("Zurück", data.skin); + backButton.setPosition(WizardGame.WIDTH * 0.275f, BUTTON_BAR_Y); + continueButton = new TextButton("Erstellen", data.skin); + continueButton.setPosition(WizardGame.WIDTH * 0.725f - continueButton.getWidth(), BUTTON_BAR_Y); - option1 = new TextField("1", skin); + option1 = new TextField("1", data.skin); option1.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.6f); option1.setSize(250, continueButton.getHeight()); - option2 = new TextField("2", skin); + option2 = new TextField("2", data.skin); option2.setPosition(option1.getX(), option1.getY() - WizardGame.HEIGHT * 0.12f); option2.setSize(250, continueButton.getHeight()); - option3 = new TextField("3", skin); + option3 = new TextField("3", data.skin); option3.setPosition(option2.getX(), option2.getY() - WizardGame.HEIGHT * 0.12f); option3.setSize(250, continueButton.getHeight()); - option4 = new TextField("4", skin); + option4 = new TextField("4", data.skin); option4.setPosition(WizardGame.WIDTH * 0.65f - option4.getWidth(), option1.getY()); option4.setSize(250, continueButton.getHeight()); - option5 = new TextField("5", skin); + option5 = new TextField("5", data.skin); option5.setPosition(option4.getX(), option2.getY()); option5.setSize(250, continueButton.getHeight()); - option6 = new TextField("6", skin); + option6 = new TextField("6", data.skin); option6.setPosition(option4.getX(), option3.getY()); option6.setSize(250, continueButton.getHeight()); - Gdx.input.setInputProcessor(stage); - stage.addActor(backButton); - stage.addActor(continueButton); - stage.addActor(option1); - stage.addActor(option2); - stage.addActor(option3); - stage.addActor(option4); - stage.addActor(option5); - stage.addActor(option6); + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(backButton); + data.stage.addActor(continueButton); + data.stage.addActor(option1); + data.stage.addActor(option2); + data.stage.addActor(option3); + data.stage.addActor(option4); + data.stage.addActor(option5); + data.stage.addActor(option6); backButton.addListener(listener); continueButton.addListener(listener); diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java new file mode 100644 index 0000000..fbe905e --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java @@ -0,0 +1,155 @@ +package eu.jonahbauer.wizard.client.libgdx.screens; + +import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.ui.*; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; +import eu.jonahbauer.wizard.client.libgdx.WizardGame; +import eu.jonahbauer.wizard.client.libgdx.actors.AutoFocusScrollPane; +import eu.jonahbauer.wizard.common.messages.data.SessionData; +import eu.jonahbauer.wizard.common.model.Configuration; + +import java.util.UUID; +import java.util.stream.IntStream; +import java.util.stream.StreamSupport; + +public class LobbyScreen extends MenuScreen { + + private TextButton buttonBack; + private TextButton buttonJoin; + private TextButton buttonCreate; + + private TextField playerName; + private Label labelSessionName; + private Label labelSessionPlayerCount; + private Label labelSessionConfiguration; + + private List sessions; + + private final ChangeListener listener = new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonBack) { + game.setScreen(new ConnectScreen(game, data)); + sfxClick(); + } else if (actor == buttonJoin) { + game.setScreen(new WaitingScreen(game, data)); + sfxClick(); + } else if (actor == buttonCreate) { + game.setScreen(new CreateGameScreen(game, data)); + sfxClick(); + } + } + }; + + public LobbyScreen(WizardGame game, Data data) { + super(game, data); + } + + @Override + public void show() { + super.show(); + + buttonBack = new TextButton(game.messages.get("menu.lobby.back"), data.skin); + buttonJoin = new TextButton(game.messages.get("menu.lobby.join"), data.skin); + buttonJoin.setDisabled(true); + buttonCreate = new TextButton(game.messages.get("menu.lobby.create"), data.skin); + + sessions = new List<>(data.skin) { + @Override + public String toString(SessionData session) { + return session.getName(); + } + }; + sessions.addListener(new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + updateData(sessions.getSelected()); + } + }); + + var listContainer = new AutoFocusScrollPane(sessions, data.skin); + listContainer.layout(); + + var content = new HorizontalGroup().grow().space(20); + content.setPosition(0.25f * WizardGame.WIDTH, 0.3f * WizardGame.HEIGHT); + content.setSize(0.5f * WizardGame.WIDTH, 400); + content.addActor(new Container<>(listContainer).width(0.2f * WizardGame.WIDTH).height(400)); + content.addActor(createInfoTable()); + content.layout(); + + var buttons = new HorizontalGroup(); + buttons.setPosition(WizardGame.WIDTH * 0.2f, BUTTON_BAR_Y); + buttons.setSize(WizardGame.WIDTH * 0.60f, 125); + buttons.addActor(buttonBack); + buttons.addActor(buttonCreate); + buttons.addActor(buttonJoin); + buttons.space(Math.max(0, (float) (buttons.getWidth() - StreamSupport.stream(buttons.getChildren().spliterator(), false).mapToDouble(Actor::getWidth).sum()) / (buttons.getChildren().size - 1))); + + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(content); + data.stage.addActor(buttons); + + buttonBack.addListener(listener); + buttonJoin.addListener(listener); + buttonCreate.addListener(listener); + + addSessions( + IntStream.range(1, 16) + .mapToObj(i -> new SessionData( + UUID.randomUUID(), + "Session " + i, + i % 5, + Configuration.values()[i % Configuration.values().length] + )) + .toArray(SessionData[]::new) + ); + } + + @Override + protected void renderInternal(float delta) {} + + public void addSessions(SessionData...sessions) { + for (SessionData session : sessions) { + this.sessions.getItems().add(session); + } + this.sessions.layout(); + ((ScrollPane)this.sessions.getParent()).layout(); + } + + private void updateData(SessionData data) { + System.out.println(data); + labelSessionName.setText(data.getName()); + labelSessionPlayerCount.setText(Integer.toString(data.getPlayerCount())); + labelSessionConfiguration.setText(data.getConfiguration().toString()); + buttonJoin.setDisabled(data == null); + } + + private Table createInfoTable() { + float infoTableWidth = 0.3f * WizardGame.WIDTH - 20; + + playerName = new TextField("", data.skin); + labelSessionName = new Label("", data.skin, "textfield"); + labelSessionConfiguration = new Label("", data.skin, "textfield"); + labelSessionPlayerCount = new Label("", data.skin, "textfield"); + + labelSessionName.setEllipsis(true); + labelSessionConfiguration.setEllipsis(true); + labelSessionPlayerCount.setEllipsis(true); + + var infoTable = new Table().center().left(); + infoTable.columnDefaults(0).growX().width(infoTableWidth); + infoTable.setSize(infoTableWidth, 400); + + infoTable.add(new Label(game.messages.get("menu.lobby.player_name.label"), data.skin)).row(); + infoTable.add(playerName).row(); + infoTable.add(new Label(game.messages.get("menu.lobby.session_name.label"), data.skin)).row(); + infoTable.add(labelSessionName).row(); + infoTable.add(new Label(game.messages.get("menu.lobby.session_configuration.label"), data.skin)).row(); + infoTable.add(labelSessionConfiguration).row(); + infoTable.add(new Label(game.messages.get("menu.lobby.session_player_count.label"), data.skin)).row(); + infoTable.add(labelSessionPlayerCount).row(); + + return infoTable; + } +} diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java index f8d5619..9e62551 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java @@ -1,28 +1,25 @@ package eu.jonahbauer.wizard.client.libgdx.screens; import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.graphics.Texture; -import com.badlogic.gdx.scenes.scene2d.InputEvent; +import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.ui.TextButton; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; public class MainMenuScreen extends MenuScreen { - Texture[] symbols; + private TextButton buttonPlay; + private TextButton buttonQuit; - TextButton chooseServerButton; - TextButton exitButton; - - ClickListener listener = new ClickListener() { + private final ChangeListener listener = new ChangeListener() { @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == chooseServerButton) { - game.setScreen(new ServerScreen(game)); + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonPlay) { + game.setScreen(new ConnectScreen(game, data)); sfxClick(); - } else if (target == exitButton) { + } else if (actor == buttonQuit) { sfxClick(); + dispose = true; Gdx.app.exit(); } } @@ -32,36 +29,34 @@ public class MainMenuScreen extends MenuScreen { super(game); } + public MainMenuScreen(WizardGame game, Data data) { + super(game, data); + } + @Override public void show() { super.show(); - symbols = new Texture[4]; - symbols[0] = new Texture(Gdx.files.internal("symbol0.png")); - symbols[1] = new Texture(Gdx.files.internal("symbol1.png")); - symbols[2] = new Texture(Gdx.files.internal("symbol2.png")); - symbols[3] = new Texture(Gdx.files.internal("symbol3.png")); - - chooseServerButton = new TextButton("Spiel beitreten", skin); - chooseServerButton.setPosition((WizardGame.WIDTH - chooseServerButton.getWidth()) / 2f, 192 + 504 - 120f - 125f); - exitButton = new TextButton("Verlassen", skin); - exitButton.setPosition((WizardGame.WIDTH - exitButton.getWidth()) / 2f, 192 + 120f); + buttonPlay = new TextButton(game.messages.get("menu.main.play"), data.skin); + buttonPlay.setPosition((WizardGame.WIDTH - buttonPlay.getWidth()) / 2f, 192 + 504 - 120f - 125f); + buttonQuit = new TextButton(game.messages.get("menu.main.quit"), data.skin); + buttonQuit.setPosition((WizardGame.WIDTH - buttonQuit.getWidth()) / 2f, 192 + 120f); - Gdx.input.setInputProcessor(stage); - stage.addActor(chooseServerButton); - stage.addActor(exitButton); + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(buttonPlay); + data.stage.addActor(buttonQuit); - chooseServerButton.addListener(listener); - exitButton.addListener(listener); + buttonPlay.addListener(listener); + buttonQuit.addListener(listener); } @Override protected void renderInternal(float delta) { int width = 160, height = 224; int left = 384, right = 384, top = 384, bottom = 192; - this.game.batch.draw(symbols[0], left, bottom, width, height); - this.game.batch.draw(symbols[1], left, WizardGame.HEIGHT - top - height, width, height); - this.game.batch.draw(symbols[2], WizardGame.WIDTH - right - width, bottom, width, height); - this.game.batch.draw(symbols[3], WizardGame.WIDTH - right - width, WizardGame.HEIGHT - top - height, width, height); + this.game.batch.draw(data.symbols[0], left, bottom, width, height); + this.game.batch.draw(data.symbols[1], left, WizardGame.HEIGHT - top - height, width, height); + this.game.batch.draw(data.symbols[2], WizardGame.WIDTH - right - width, bottom, width, height); + this.game.batch.draw(data.symbols[3], WizardGame.WIDTH - right - width, WizardGame.HEIGHT - top - height, width, height); } } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java index 57e5dde..0f0fb89 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java @@ -5,74 +5,156 @@ import com.badlogic.gdx.Screen; import com.badlogic.gdx.audio.Sound; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; +import com.badlogic.gdx.graphics.g2d.BitmapFont; +import com.badlogic.gdx.graphics.g2d.TextureAtlas; +import com.badlogic.gdx.graphics.g2d.TextureRegion; +import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.Stage; import com.badlogic.gdx.scenes.scene2d.ui.Skin; +import com.badlogic.gdx.utils.viewport.ExtendViewport; import com.badlogic.gdx.utils.viewport.FitViewport; -import com.badlogic.gdx.utils.viewport.Viewport; +import eu.jonahbauer.wizard.client.libgdx.MenuAtlas; +import eu.jonahbauer.wizard.client.libgdx.UiskinAtlas; import eu.jonahbauer.wizard.client.libgdx.WizardGame; public abstract class MenuScreen implements Screen { - protected WizardGame game; - - private Sound buttonClickSound; + protected final float BUTTON_BAR_Y = WizardGame.HEIGHT * 0.15f; - private Viewport viewport; - - private Texture title; - private Texture background; - private Texture[] corners; // counterclockwise starting top left + protected WizardGame game; - protected Skin skin; - protected Stage stage; + // shared data between all menu screens + protected static class Data { + public final ExtendViewport extendViewport; + public final FitViewport fitViewport; + + public final Sound buttonClickSound; + + public final TextureAtlas uiskinAtlas; + public final TextureAtlas menuAtlas; + + public final TextureRegion title; + public final TextureRegion background; + public final TextureRegion[] corners = new TextureRegion[4]; + public final TextureRegion[] symbols = new TextureRegion[4]; + + public final Skin skin; + public final Stage stage; + + public Data() { + this.extendViewport = new ExtendViewport(WizardGame.WIDTH, WizardGame.HEIGHT); + this.fitViewport = new FitViewport(WizardGame.WIDTH, WizardGame.HEIGHT); + + this.buttonClickSound = Gdx.audio.newSound(Gdx.files.internal("button_click_s.mp3")); + + this.uiskinAtlas = new TextureAtlas(Gdx.files.internal(UiskinAtlas.$PATH)); + this.menuAtlas = new TextureAtlas(Gdx.files.internal(MenuAtlas.$PATH)); + + this.title = menuAtlas.findRegion(MenuAtlas.TITLE); + this.background = menuAtlas.findRegion(MenuAtlas.BACKGROUND); + this.corners[0] = menuAtlas.findRegion(MenuAtlas.ECKE_LO); + this.corners[1] = menuAtlas.findRegion(MenuAtlas.ECKE_LU); + this.corners[2] = menuAtlas.findRegion(MenuAtlas.ECKE_RU); + this.corners[3] = menuAtlas.findRegion(MenuAtlas.ECKE_RO); + this.symbols[0] = menuAtlas.findRegion(MenuAtlas.SYMBOL0); + this.symbols[1] = menuAtlas.findRegion(MenuAtlas.SYMBOL1); + this.symbols[2] = menuAtlas.findRegion(MenuAtlas.SYMBOL2); + this.symbols[3] = menuAtlas.findRegion(MenuAtlas.SYMBOL3); + + this.skin = new Skin(Gdx.files.internal("uiskin.json"), uiskinAtlas); + this.skin.getAll(BitmapFont.class).forEach(entry -> + entry.value.getRegion().getTexture().setFilter(Texture.TextureFilter.Linear, Texture.TextureFilter.Linear) + ); + this.stage = new Stage(fitViewport); + } + + public void reset() { + stage.clear(); + } + + public void dispose() { + buttonClickSound.dispose(); + uiskinAtlas.dispose(); + menuAtlas.dispose(); + skin.dispose(); + stage.dispose(); + } + } + protected Data data; + protected boolean dispose; public MenuScreen(WizardGame game) { this.game = game; } + protected MenuScreen(WizardGame game, Data data) { + this.game = game; + this.data = data; + } + @Override public void show() { - this.buttonClickSound = Gdx.audio.newSound(Gdx.files.internal("button_click_s.mp3")); - - this.title = new Texture(Gdx.files.internal("title.png")); - this.background = new Texture(Gdx.files.internal("background.png")); - - this.corners = new Texture[4]; - this.corners[0] = new Texture(Gdx.files.internal("ecke_lo.png")); - this.corners[1] = new Texture(Gdx.files.internal("ecke_lu.png")); - this.corners[2] = new Texture(Gdx.files.internal("ecke_ru.png")); - this.corners[3] = new Texture(Gdx.files.internal("ecke_ro.png")); - - this.viewport = new FitViewport(WizardGame.WIDTH, WizardGame.HEIGHT); - - this.skin = new Skin(Gdx.files.internal("skin/uiskin.json")); - this.stage = new Stage(viewport); + if (data == null) { + data = new Data(); + } else { + data.reset(); + } + if (WizardGame.DEBUG) { + data.stage.setDebugAll(true); + data.stage.addListener(event -> { + if (!(event instanceof InputEvent input) || input.getType() == InputEvent.Type.mouseMoved) return false; + + var actor = event.getTarget(); + if (actor != null) { + System.out.printf( + "%s(name=%s, x=%f, y=%f, width=%f, height=%f)%n", + actor.getClass().getSimpleName(), + actor.getName(), + actor.getX(), + actor.getY(), + actor.getWidth(), + actor.getHeight() + ); + } + return false; + }); + } } @Override public final void render(float delta) { Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); - viewport.getCamera().update(); - game.batch.setProjectionMatrix(viewport.getCamera().combined); + data.extendViewport.apply(true); + game.batch.setProjectionMatrix(data.extendViewport.getCamera().combined); game.batch.begin(); - game.batch.draw(background, 0, 0); - game.batch.draw(corners[0], 0, WizardGame.HEIGHT - corners[0].getHeight()); - game.batch.draw(corners[1], 0, 0); - game.batch.draw(corners[2], WizardGame.WIDTH - corners[2].getWidth(), 0); - game.batch.draw(corners[3], WizardGame.WIDTH - corners[3].getWidth(), WizardGame.HEIGHT - corners[3].getHeight()); - game.batch.draw(title, 555, WizardGame.HEIGHT - 192 - 96, 810, 192); + float scale = Math.max( + data.extendViewport.getWorldWidth() / WizardGame.WIDTH, + data.extendViewport.getWorldHeight() / WizardGame.HEIGHT + ); + game.batch.draw(data.background, 0, 0, scale * WizardGame.WIDTH, scale * WizardGame.HEIGHT); + game.batch.draw(data.corners[0], 0, data.extendViewport.getWorldHeight() - data.corners[0].getRegionHeight()); + game.batch.draw(data.corners[1], 0, 0); + game.batch.draw(data.corners[2], data.extendViewport.getWorldWidth() - data.corners[2].getRegionWidth(), 0); + game.batch.draw(data.corners[3], data.extendViewport.getWorldWidth() - data.corners[3].getRegionWidth(), data.extendViewport.getWorldHeight() - data.corners[3].getRegionHeight()); + game.batch.end(); + + data.fitViewport.apply(); + game.batch.setProjectionMatrix(data.fitViewport.getCamera().combined); + game.batch.begin(); + game.batch.draw(data.title, 555, WizardGame.HEIGHT - 192 - 96, 810, 192); renderInternal(delta); game.batch.end(); - stage.act(Gdx.graphics.getDeltaTime()); - stage.draw(); + data.stage.act(delta); + data.stage.draw(); } protected abstract void renderInternal(float delta); @Override public final void resize(int width, int height) { - viewport.update(width, height); + data.extendViewport.update(width, height); + data.fitViewport.update(width, height); } @Override @@ -92,10 +174,12 @@ public abstract class MenuScreen implements Screen { @Override public void dispose() { - + if (dispose) { + data.dispose(); + } } protected void sfxClick() { - buttonClickSound.play(0.6f); + data.buttonClickSound.play(0.6f); } } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ServerScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ServerScreen.java deleted file mode 100644 index 6370369..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ServerScreen.java +++ /dev/null @@ -1,80 +0,0 @@ -package eu.jonahbauer.wizard.client.libgdx.screens; - -import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.scenes.scene2d.Group; -import com.badlogic.gdx.scenes.scene2d.InputEvent; -import com.badlogic.gdx.scenes.scene2d.ui.TextButton; -import com.badlogic.gdx.scenes.scene2d.ui.TextField; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; -import eu.jonahbauer.wizard.client.libgdx.WizardGame; - -public class ServerScreen extends MenuScreen { - - TextButton backButton; - TextButton continueButton; - - TextField ip; - TextField port; - TextField playerName; - - Group inputs; - - ClickListener listener = new ClickListener() { - @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == backButton) { - game.setScreen(new MainMenuScreen(game)); - sfxClick(); - } else if (target == continueButton) { - game.setScreen(new SessionListScreen(game)); - sfxClick(); - } - } - }; - - public ServerScreen(WizardGame game) { - super(game); - } - - @Override - public void show() { - super.show(); - - backButton = new TextButton("Zurück", skin); - backButton.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.18f); - backButton.setSize(120, backButton.getHeight()); - continueButton = new TextButton("Fortfahren", skin); - continueButton.setPosition(WizardGame.WIDTH * 0.7f - continueButton.getWidth(), WizardGame.HEIGHT * 0.18f); - - inputs = new Group(); - inputs.setSize(300, continueButton.getHeight()); - inputs.setPosition(WizardGame.WIDTH / 2f - inputs.getWidth() / 2, WizardGame.HEIGHT * 0.5f); - - ip = new TextField("", skin); - //ip.setPosition(WizardGame.WIDTH*0.4f, WizardGame.HEIGHT*0.5f); - ip.setSize(200, continueButton.getHeight()); - port = new TextField("", skin); - port.setPosition(ip.getX() + ip.getWidth() + WizardGame.WIDTH * 0.005f, ip.getY()); - port.setSize(80, continueButton.getHeight()); - playerName = new TextField("", skin); - playerName.setSize(250, continueButton.getHeight()); - playerName.setPosition(WizardGame.WIDTH / 2f - playerName.getWidth() / 2, inputs.getY() - WizardGame.HEIGHT * 0.12f); - - inputs.addActor(ip); - inputs.addActor(port); - - Gdx.input.setInputProcessor(stage); - stage.addActor(backButton); - stage.addActor(continueButton); - stage.addActor(playerName); - stage.addActor(inputs); - //stage.addActor(port); - - backButton.addListener(listener); - continueButton.addListener(listener); - } - - @Override - protected void renderInternal(float delta) {} -} diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/SessionListScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/SessionListScreen.java deleted file mode 100644 index 0338e05..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/SessionListScreen.java +++ /dev/null @@ -1,93 +0,0 @@ -package eu.jonahbauer.wizard.client.libgdx.screens; - -import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.scenes.scene2d.InputEvent; -import com.badlogic.gdx.scenes.scene2d.ui.List; -import com.badlogic.gdx.scenes.scene2d.ui.ScrollPane; -import com.badlogic.gdx.scenes.scene2d.ui.TextButton; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; -import eu.jonahbauer.wizard.client.libgdx.WizardGame; - -public class SessionListScreen extends MenuScreen { - - TextButton backButton; - TextButton continueButton; - TextButton createGameButton; - - List gameList; - ScrollPane listContainer; - - ClickListener listener = new ClickListener() { - @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == backButton) { - game.setScreen(new ServerScreen(game)); - sfxClick(); - } else if (target == continueButton) { - game.setScreen(new WaitingScreen(game)); - sfxClick(); - } else if (target == createGameButton) { - game.setScreen(new CreateGameScreen(game)); - sfxClick(); - } - } - }; - - public SessionListScreen(WizardGame game) { - super(game); - this.game = game; - } - - @Override - public void show() { - super.show(); - - backButton = new TextButton("Zurück", skin); - backButton.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.18f); - backButton.setSize(120, backButton.getHeight()); - continueButton = new TextButton("Fortfahren", skin); - continueButton.setPosition(WizardGame.WIDTH * 0.6f, WizardGame.HEIGHT * 0.45f); - createGameButton = new TextButton("Spiel erstellen", skin); - createGameButton.setPosition(WizardGame.WIDTH * 0.7f - continueButton.getWidth(), WizardGame.HEIGHT * 0.18f); - createGameButton.setSize(120, backButton.getHeight()); - - gameList = new List<>(skin); - String[] items = new String[]{ - "testgame1", - "testgame2", - "testgame3", - "testgame4", - "testgame5", - "testgame6", - "testgame7", - "testgame8", - "testgame9", - "testgame10", - "testgame11", - "testgame12", - "testgame13", - "testgame14" - }; - gameList.setItems(items); - //gameList.setPosition(WizardGame.WIDTH*0.3f, WizardGame.HEIGHT*0.2f); - gameList.setSize(250, 400); - - listContainer = new ScrollPane(gameList); - listContainer.setSize(250, 300); - listContainer.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.3f); - - Gdx.input.setInputProcessor(stage); - stage.addActor(backButton); - stage.addActor(continueButton); - stage.addActor(createGameButton); - stage.addActor(listContainer); - - backButton.addListener(listener); - continueButton.addListener(listener); - createGameButton.addListener(listener); - } - - @Override - protected void renderInternal(float delta) {} -} diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java index 004d0dd..1bdb5be 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java @@ -1,48 +1,127 @@ package eu.jonahbauer.wizard.client.libgdx.screens; -import com.badlogic.gdx.Screen; +import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.ui.*; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; +import eu.jonahbauer.wizard.client.libgdx.actors.AutoFocusScrollPane; +import eu.jonahbauer.wizard.common.messages.data.PlayerData; +import eu.jonahbauer.wizard.common.messages.data.SessionData; +import eu.jonahbauer.wizard.common.model.Configuration; -public class WaitingScreen implements Screen { +import java.util.UUID; - WizardGame game; +public class WaitingScreen extends MenuScreen { - public WaitingScreen(WizardGame game) { - this.game = game; - } - - @Override - public void show() { - - } - - @Override - public void render(float delta) { - - } + private TextButton buttonLeave; + private TextButton buttonReady; - @Override - public void resize(int width, int height) { + private SessionData session; + private UUID myUUID; + private String myName; + private boolean myReady; + private List players; + { + // sample data + session = new SessionData(UUID.randomUUID(), "Session X", -1, Configuration.DEFAULT); + myUUID = UUID.randomUUID(); + myName = "Max Mustermann"; } - @Override - public void pause() { - + private final ChangeListener listener = new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonLeave) { + game.setScreen(new LobbyScreen(game, data)); + sfxClick(); + } else if (actor == buttonReady) { + ready(!myReady); + sfxClick(); + } + } + }; + + public WaitingScreen(WizardGame game, Data data) { + super(game, data); } @Override - public void resume() { - + public void show() { + super.show(); + + buttonLeave = new TextButton(game.messages.get("menu.waiting.leave"), data.skin); + buttonLeave.setPosition(WizardGame.WIDTH * 0.275f, BUTTON_BAR_Y); + buttonReady = new TextButton(game.messages.get("menu.waiting.ready"), data.skin); + buttonReady.setPosition(WizardGame.WIDTH * 0.725f - buttonReady.getWidth(), BUTTON_BAR_Y); + + players = new List<>(data.skin) { + @Override + public String toString(PlayerData player) { + return player.getName(); + } + }; + + var listContainer = new AutoFocusScrollPane(players, data.skin); + listContainer.layout(); + + var content = new HorizontalGroup().grow().space(20); + content.setPosition(0.25f * WizardGame.WIDTH, 0.3f * WizardGame.HEIGHT); + content.setSize(0.5f * WizardGame.WIDTH, 400); + content.addActor(new Container<>(listContainer).width(0.2f * WizardGame.WIDTH).height(400)); + content.addActor(createInfoTable()); + content.layout(); + + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(buttonLeave); + data.stage.addActor(buttonReady); + data.stage.addActor(content); + + buttonLeave.addListener(listener); + buttonReady.addListener(listener); + + // sample data + for (int i = 1; i <= 4; i++) { + players.getItems().add(new PlayerData(UUID.randomUUID(), "Player " + i, false)); + } + players.layout(); } - @Override - public void hide() { - + private void ready(boolean ready) { + this.myReady = ready; + buttonReady.setText(game.messages.get(ready ? "menu.waiting.not_ready" : "menu.waiting.ready")); } @Override - public void dispose() { - + protected void renderInternal(float delta) {} + + private Table createInfoTable() { + float infoTableWidth = 0.3f * WizardGame.WIDTH - 20; + + var labelSessionName = new Label(session.getName(), data.skin, "textfield"); + var labelSessionUUID = new Label(session.getUuid().toString(), data.skin, "textfield"); + var labelSessionConfiguration = new Label(session.getConfiguration().toString(), data.skin, "textfield"); + var labelPlayerName = new Label(myName, data.skin, "textfield"); + + labelSessionName.setEllipsis(true); + labelSessionUUID.setEllipsis(true); + labelSessionConfiguration.setEllipsis(true); + labelPlayerName.setEllipsis(true); + + var infoTable = new Table().center().left(); + infoTable.columnDefaults(0).growX().width(infoTableWidth); + infoTable.setSize(infoTableWidth, 400); + + infoTable.add(new Label(game.messages.get("menu.waiting.session_name.label"), data.skin)).row(); + infoTable.add(labelSessionName).row(); + infoTable.add(new Label(game.messages.get("menu.waiting.session_uuid.label"), data.skin)).row(); + infoTable.add(labelSessionUUID).row(); + infoTable.add(new Label(game.messages.get("menu.waiting.session_configuration.label"), data.skin)).row(); + infoTable.add(labelSessionConfiguration).row(); + infoTable.add(new Label(game.messages.get("menu.waiting.player_name.label"), data.skin)).row(); + infoTable.add(labelPlayerName).row(); + + return infoTable; } } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt new file mode 100644 index 0000000..f4cd6c3 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt @@ -0,0 +1,485 @@ +info face="CoolveticaRg-Regular" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,0 spacing=0,0 +common lineHeight=41 base=31 scaleW=512 scaleH=512 pages=1 packed=0 +page id=0 file="coolvetica.png" +chars count=481 +char id=0 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=13 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=33 x=501 y=208 width=6 height=23 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=34 x=188 y=388 width=9 height=10 xoffset=1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=35 x=103 y=258 width=17 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=36 x=476 y=127 width=17 height=26 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 +char id=37 x=33 y=233 width=22 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=38 x=55 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=39 x=507 y=208 width=4 height=10 xoffset=1 yoffset=9 xadvance=6 page=0 chnl=0 +char id=40 x=423 y=66 width=10 height=30 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=41 x=433 y=66 width=10 height=30 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=42 x=447 y=370 width=17 height=17 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=43 x=464 y=370 width=16 height=17 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 +char id=44 x=110 y=388 width=6 height=11 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 +char id=45 x=276 y=388 width=9 height=6 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=0 +char id=46 x=285 y=388 width=6 height=6 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 +char id=47 x=120 y=258 width=12 height=23 xoffset=-1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=48 x=71 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=49 x=132 y=258 width=11 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=50 x=143 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=51 x=87 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=52 x=159 y=258 width=17 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=53 x=103 y=233 width=17 height=24 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=54 x=120 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=55 x=176 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=56 x=136 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=57 x=152 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=58 x=502 y=351 width=6 height=17 xoffset=1 yoffset=15 xadvance=7 page=0 chnl=0 +char id=59 x=505 y=282 width=6 height=22 xoffset=1 yoffset=15 xadvance=7 page=0 chnl=0 +char id=60 x=495 y=328 width=16 height=18 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 +char id=61 x=71 y=388 width=16 height=12 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=62 x=19 y=351 width=16 height=18 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 +char id=63 x=192 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=64 x=176 y=182 width=23 height=25 xoffset=1 yoffset=10 xadvance=25 page=0 chnl=0 +char id=65 x=208 y=258 width=22 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 +char id=66 x=230 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=67 x=199 y=182 width=20 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=68 x=249 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=69 x=268 y=258 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=70 x=285 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=71 x=168 y=233 width=21 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=72 x=301 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=73 x=504 y=97 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=74 x=189 y=233 width=15 height=24 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=75 x=319 y=258 width=20 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=76 x=339 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=77 x=355 y=258 width=22 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=78 x=377 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=79 x=219 y=182 width=22 height=25 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=80 x=396 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=81 x=443 y=66 width=22 height=30 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=82 x=414 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=83 x=241 y=182 width=19 height=25 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=84 x=433 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=85 x=204 y=233 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=86 x=451 y=258 width=20 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=87 x=471 y=258 width=29 height=23 xoffset=0 yoffset=9 xadvance=28 page=0 chnl=0 +char id=88 x=0 y=282 width=21 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=89 x=21 y=282 width=21 height=23 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=90 x=42 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=91 x=456 y=97 width=9 height=29 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=92 x=59 y=282 width=12 height=23 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=0 +char id=93 x=465 y=97 width=10 height=29 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=94 x=260 y=388 width=16 height=8 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=95 x=380 y=388 width=17 height=4 xoffset=0 yoffset=32 xadvance=17 page=0 chnl=0 +char id=96 x=217 y=388 width=10 height=9 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=97 x=35 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=98 x=71 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=99 x=51 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=100 x=88 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=101 x=67 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=102 x=500 y=258 width=10 height=23 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=103 x=260 y=182 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=104 x=105 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=105 x=121 y=282 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=106 x=465 y=66 width=14 height=30 xoffset=-7 yoffset=9 xadvance=7 page=0 chnl=0 +char id=107 x=127 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=108 x=504 y=97 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=109 x=83 y=351 width=24 height=18 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=110 x=107 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=111 x=123 y=351 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=112 x=277 y=182 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=113 x=294 y=182 width=25 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=114 x=140 y=351 width=10 height=18 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0 +char id=115 x=150 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=116 x=418 y=328 width=14 height=22 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=117 x=166 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=118 x=182 y=351 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=119 x=199 y=351 width=24 height=18 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 +char id=120 x=223 y=351 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=121 x=319 y=182 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=122 x=240 y=351 width=14 height=18 xoffset=1 yoffset=14 xadvance=16 page=0 chnl=0 +char id=123 x=475 y=97 width=11 height=29 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=124 x=486 y=97 width=4 height=29 xoffset=4 yoffset=7 xadvance=12 page=0 chnl=0 +char id=125 x=490 y=97 width=10 height=29 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=126 x=227 y=388 width=17 height=9 xoffset=1 yoffset=16 xadvance=19 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=0 yoffset=30 xadvance=9 page=0 chnl=0 +char id=161 x=143 y=282 width=7 height=23 xoffset=1 yoffset=9 xadvance=9 page=0 chnl=0 +char id=162 x=150 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=163 x=166 y=282 width=15 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=164 x=0 y=351 width=19 height=19 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=165 x=181 y=282 width=18 height=23 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 +char id=166 x=500 y=97 width=4 height=29 xoffset=4 yoffset=7 xadvance=12 page=0 chnl=0 +char id=167 x=232 y=127 width=17 height=28 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=168 x=291 y=388 width=12 height=6 xoffset=2 yoffset=8 xadvance=15 page=0 chnl=0 +char id=169 x=222 y=233 width=22 height=24 xoffset=1 yoffset=8 xadvance=24 page=0 chnl=0 +char id=170 x=116 y=388 width=9 height=11 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 +char id=171 x=495 y=370 width=16 height=14 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=172 x=254 y=351 width=20 height=18 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 +char id=173 x=276 y=388 width=9 height=6 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=0 +char id=174 x=0 y=388 width=13 height=14 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=175 x=303 y=388 width=13 height=6 xoffset=2 yoffset=7 xadvance=17 page=0 chnl=0 +char id=176 x=87 y=388 width=11 height=12 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=177 x=463 y=328 width=16 height=21 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 +char id=178 x=47 y=388 width=9 height=13 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=179 x=56 y=388 width=8 height=13 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=180 x=244 y=388 width=10 height=9 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=182 x=249 y=127 width=19 height=28 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 +char id=183 x=285 y=388 width=6 height=6 xoffset=1 yoffset=18 xadvance=7 page=0 chnl=0 +char id=184 x=254 y=388 width=6 height=9 xoffset=2 yoffset=31 xadvance=9 page=0 chnl=0 +char id=185 x=64 y=388 width=7 height=13 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=186 x=125 y=388 width=10 height=11 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 +char id=187 x=13 y=388 width=16 height=14 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=188 x=335 y=182 width=20 height=25 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 +char id=189 x=355 y=182 width=21 height=25 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 +char id=190 x=376 y=182 width=20 height=25 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=191 x=244 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=192 x=399 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=193 x=421 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=194 x=443 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=195 x=479 y=66 width=22 height=30 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 +char id=196 x=0 y=97 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=0 +char id=197 x=465 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=198 x=199 y=282 width=29 height=23 xoffset=0 yoffset=9 xadvance=30 page=0 chnl=0 +char id=199 x=487 y=0 width=21 height=31 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=200 x=0 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=201 x=17 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=202 x=34 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=203 x=22 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=204 x=51 y=35 width=10 height=31 xoffset=-2 yoffset=1 xadvance=7 page=0 chnl=0 +char id=205 x=61 y=35 width=10 height=31 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 +char id=206 x=71 y=35 width=13 height=31 xoffset=-3 yoffset=1 xadvance=7 page=0 chnl=0 +char id=207 x=39 y=97 width=12 height=30 xoffset=-2 yoffset=2 xadvance=7 page=0 chnl=0 +char id=208 x=228 y=282 width=20 height=23 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 +char id=209 x=51 y=97 width=19 height=30 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=210 x=84 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=211 x=106 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=212 x=33 y=0 width=22 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 +char id=213 x=128 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=214 x=150 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=215 x=480 y=370 width=15 height=16 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 +char id=216 x=0 y=156 width=22 height=26 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=217 x=274 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=218 x=292 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=219 x=55 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=220 x=172 y=35 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=221 x=190 y=35 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=222 x=248 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=223 x=266 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=224 x=493 y=127 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=225 x=22 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=226 x=38 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=227 x=396 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=228 x=412 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=229 x=54 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=230 x=274 y=351 width=26 height=18 xoffset=1 yoffset=14 xadvance=28 page=0 chnl=0 +char id=231 x=70 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=232 x=86 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=233 x=102 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=234 x=118 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=235 x=428 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=236 x=134 y=156 width=10 height=26 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=237 x=144 y=156 width=10 height=26 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=238 x=154 y=156 width=14 height=26 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 +char id=239 x=260 y=233 width=12 height=24 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=240 x=272 y=233 width=17 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=241 x=289 y=233 width=16 height=24 xoffset=1 yoffset=8 xadvance=17 page=0 chnl=0 +char id=242 x=168 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=243 x=185 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=244 x=202 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=245 x=444 y=182 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=246 x=461 y=182 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=247 x=479 y=328 width=16 height=20 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=248 x=432 y=328 width=17 height=22 xoffset=1 yoffset=12 xadvance=19 page=0 chnl=0 +char id=249 x=219 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=250 x=235 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=251 x=251 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=252 x=478 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=253 x=73 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=254 x=70 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=255 x=310 y=0 width=16 height=32 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=256 x=0 y=127 width=22 height=29 xoffset=-1 yoffset=3 xadvance=21 page=0 chnl=0 +char id=257 x=494 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=258 x=211 y=35 width=23 height=31 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=0 +char id=259 x=267 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=260 x=87 y=97 width=22 height=30 xoffset=-1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=261 x=0 y=208 width=15 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=262 x=234 y=35 width=20 height=31 xoffset=1 yoffset=2 xadvance=21 page=0 chnl=0 +char id=263 x=283 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=264 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=266 x=254 y=35 width=20 height=31 xoffset=1 yoffset=2 xadvance=21 page=0 chnl=0 +char id=267 x=15 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=268 x=89 y=0 width=20 height=33 xoffset=1 yoffset=0 xadvance=21 page=0 chnl=0 +char id=269 x=299 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=270 x=274 y=35 width=19 height=31 xoffset=1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=271 x=305 y=233 width=22 height=24 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=273 x=283 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=274 x=22 y=127 width=17 height=29 xoffset=1 yoffset=3 xadvance=19 page=0 chnl=0 +char id=275 x=31 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=276 x=293 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=277 x=315 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=278 x=109 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=279 x=47 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=280 x=126 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=281 x=63 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=282 x=310 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=283 x=331 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=286 x=109 y=0 width=21 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 +char id=287 x=130 y=0 width=17 height=33 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=288 x=327 y=35 width=21 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=289 x=326 y=0 width=17 height=32 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=290 x=348 y=35 width=21 height=31 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=291 x=16 y=0 width=17 height=34 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0 +char id=294 x=300 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=295 x=318 y=282 width=16 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=296 x=143 y=97 width=13 height=30 xoffset=-3 yoffset=2 xadvance=7 page=0 chnl=0 +char id=297 x=327 y=233 width=13 height=24 xoffset=-2 yoffset=8 xadvance=10 page=0 chnl=0 +char id=298 x=39 y=127 width=13 height=29 xoffset=-3 yoffset=3 xadvance=7 page=0 chnl=0 +char id=299 x=79 y=208 width=13 height=25 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=0 +char id=300 x=369 y=35 width=12 height=31 xoffset=-2 yoffset=1 xadvance=8 page=0 chnl=0 +char id=301 x=347 y=156 width=12 height=26 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=302 x=501 y=66 width=8 height=30 xoffset=-2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=303 x=156 y=97 width=8 height=30 xoffset=-2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=304 x=504 y=35 width=6 height=30 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=305 x=300 y=351 width=6 height=18 xoffset=1 yoffset=14 xadvance=7 page=0 chnl=0 +char id=306 x=340 y=233 width=20 height=24 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=307 x=164 y=97 width=14 height=30 xoffset=-1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=310 x=381 y=35 width=20 height=31 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=311 x=401 y=35 width=16 height=31 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=313 x=417 y=35 width=17 height=31 xoffset=0 yoffset=1 xadvance=18 page=0 chnl=0 +char id=314 x=434 y=35 width=10 height=31 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 +char id=315 x=444 y=35 width=16 height=31 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=316 x=460 y=35 width=6 height=31 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=317 x=360 y=233 width=16 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=318 x=376 y=233 width=11 height=24 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=321 x=334 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=322 x=350 y=282 width=9 height=23 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=323 x=466 y=35 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=324 x=359 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=325 x=485 y=35 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=326 x=375 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=327 x=0 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=328 x=391 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=330 x=178 y=97 width=19 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=331 x=92 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=332 x=19 y=66 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=333 x=108 y=208 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=334 x=147 y=0 width=22 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 +char id=335 x=407 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=336 x=343 y=0 width=22 height=32 xoffset=1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=337 x=424 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=338 x=387 y=233 width=33 height=24 xoffset=1 yoffset=9 xadvance=32 page=0 chnl=0 +char id=339 x=306 y=351 width=28 height=18 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0 +char id=340 x=41 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=341 x=441 y=156 width=11 height=26 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=342 x=60 y=66 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=343 x=452 y=156 width=10 height=26 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0 +char id=344 x=79 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=345 x=462 y=156 width=14 height=26 xoffset=-1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=346 x=98 y=66 width=19 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=347 x=476 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=350 x=117 y=66 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=351 x=492 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=352 x=169 y=0 width=19 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=353 x=0 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=354 x=136 y=66 width=18 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=355 x=197 y=97 width=14 height=30 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=356 x=154 y=66 width=18 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=357 x=420 y=233 width=19 height=24 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=358 x=359 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=359 x=449 y=328 width=14 height=22 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=360 x=172 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=361 x=125 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=362 x=190 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=363 x=141 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=364 x=188 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=365 x=16 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=366 x=365 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=367 x=32 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=368 x=206 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=369 x=437 y=127 width=16 height=27 xoffset=1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=370 x=211 y=97 width=18 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=371 x=157 y=208 width=15 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=372 x=208 y=66 width=29 height=31 xoffset=0 yoffset=1 xadvance=28 page=0 chnl=0 +char id=373 x=48 y=182 width=24 height=26 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 +char id=374 x=237 y=66 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=375 x=224 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=376 x=229 y=97 width=21 height=30 xoffset=-1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=377 x=258 y=66 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=378 x=72 y=182 width=14 height=26 xoffset=1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=379 x=250 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=380 x=439 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=381 x=275 y=66 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=382 x=86 y=182 width=14 height=26 xoffset=1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=900 x=197 y=388 width=5 height=10 xoffset=1 yoffset=9 xadvance=6 page=0 chnl=0 +char id=901 x=202 y=388 width=15 height=10 xoffset=-14 yoffset=5 xadvance=1 page=0 chnl=0 +char id=902 x=377 y=282 width=22 height=23 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=903 x=285 y=388 width=6 height=6 xoffset=1 yoffset=14 xadvance=7 page=0 chnl=0 +char id=904 x=399 y=282 width=22 height=23 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 +char id=905 x=421 y=282 width=23 height=23 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 +char id=906 x=444 y=282 width=11 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=908 x=453 y=233 width=25 height=24 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=910 x=455 y=282 width=25 height=23 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 +char id=911 x=480 y=282 width=25 height=23 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 +char id=912 x=453 y=127 width=15 height=27 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 +char id=915 x=0 y=305 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=916 x=16 y=305 width=22 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 +char id=920 x=478 y=233 width=22 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=923 x=38 y=305 width=20 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=926 x=58 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=928 x=76 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=931 x=94 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=934 x=112 y=305 width=23 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=936 x=135 y=305 width=21 height=23 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=937 x=156 y=305 width=21 height=23 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=940 x=268 y=127 width=19 height=28 xoffset=1 yoffset=4 xadvance=21 page=0 chnl=0 +char id=941 x=287 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=942 x=0 y=0 width=16 height=35 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=943 x=468 y=127 width=8 height=27 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=944 x=303 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=945 x=334 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=946 x=267 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=947 x=172 y=208 width=18 height=25 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=948 x=177 y=305 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=949 x=353 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=950 x=284 y=97 width=14 height=30 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=951 x=190 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=952 x=194 y=305 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=953 x=369 y=351 width=8 height=18 xoffset=1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=954 x=377 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=955 x=211 y=305 width=19 height=23 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 +char id=956 x=206 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=958 x=298 y=97 width=16 height=30 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=960 x=393 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=961 x=222 y=208 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=962 x=239 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=963 x=412 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=964 x=431 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=965 x=447 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=966 x=314 y=97 width=23 height=30 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=967 x=255 y=208 width=17 height=25 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=968 x=337 y=97 width=21 height=30 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=969 x=463 y=351 width=23 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=970 x=500 y=233 width=11 height=24 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 +char id=971 x=272 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=972 x=319 y=127 width=17 height=28 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=973 x=336 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=974 x=352 y=127 width=23 height=28 xoffset=1 yoffset=4 xadvance=24 page=0 chnl=0 +char id=1026 x=358 y=97 width=24 height=30 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=1027 x=292 y=66 width=16 height=31 xoffset=1 yoffset=1 xadvance=18 page=0 chnl=0 +char id=1028 x=288 y=208 width=21 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1033 x=230 y=305 width=32 height=23 xoffset=1 yoffset=9 xadvance=34 page=0 chnl=0 +char id=1034 x=262 y=305 width=27 height=23 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0 +char id=1035 x=289 y=305 width=24 height=23 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=1036 x=308 y=66 width=20 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=1037 x=328 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=1038 x=240 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1039 x=52 y=127 width=18 height=29 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1041 x=313 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=1044 x=70 y=127 width=23 height=29 xoffset=1 yoffset=9 xadvance=25 page=0 chnl=0 +char id=1046 x=331 y=305 width=30 height=23 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 +char id=1047 x=309 y=208 width=19 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1048 x=361 y=305 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1049 x=347 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=1051 x=380 y=305 width=20 height=23 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=1059 x=0 y=258 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1062 x=93 y=127 width=21 height=29 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1063 x=400 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1064 x=418 y=305 width=26 height=23 xoffset=1 yoffset=9 xadvance=27 page=0 chnl=0 +char id=1065 x=114 y=127 width=28 height=29 xoffset=1 yoffset=9 xadvance=30 page=0 chnl=0 +char id=1066 x=444 y=305 width=25 height=23 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 +char id=1067 x=469 y=305 width=23 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=1068 x=492 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=1069 x=328 y=208 width=21 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1070 x=349 y=208 width=27 height=25 xoffset=1 yoffset=8 xadvance=29 page=0 chnl=0 +char id=1071 x=0 y=328 width=19 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1073 x=100 y=182 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=1074 x=486 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1075 x=0 y=370 width=11 height=18 xoffset=1 yoffset=14 xadvance=13 page=0 chnl=0 +char id=1076 x=19 y=328 width=19 height=23 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=1078 x=11 y=370 width=24 height=18 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 +char id=1079 x=35 y=370 width=16 height=18 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=1080 x=51 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1081 x=117 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1083 x=67 y=370 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1084 x=84 y=370 width=20 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=1085 x=104 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1087 x=120 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1090 x=136 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1094 x=38 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=1095 x=152 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1096 x=168 y=370 width=24 height=18 xoffset=1 yoffset=14 xadvance=25 page=0 chnl=0 +char id=1097 x=56 y=328 width=25 height=23 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 +char id=1098 x=192 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=1099 x=214 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=1100 x=236 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1101 x=252 y=370 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1102 x=269 y=370 width=23 height=18 xoffset=1 yoffset=14 xadvance=25 page=0 chnl=0 +char id=1103 x=292 y=370 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1106 x=382 y=97 width=16 height=30 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=1107 x=133 y=182 width=11 height=26 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=1108 x=309 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1113 x=325 y=370 width=28 height=18 xoffset=1 yoffset=14 xadvance=30 page=0 chnl=0 +char id=1114 x=353 y=370 width=25 height=18 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 +char id=1116 x=144 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1117 x=160 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1118 x=258 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1119 x=81 y=328 width=16 height=23 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1168 x=142 y=127 width=16 height=29 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=1169 x=97 y=328 width=11 height=23 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=1170 x=108 y=328 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1171 x=378 y=370 width=14 height=18 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 +char id=1174 x=158 y=127 width=31 height=29 xoffset=0 yoffset=9 xadvance=32 page=0 chnl=0 +char id=1175 x=127 y=328 width=25 height=23 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=1176 x=366 y=66 width=19 height=31 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1177 x=376 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1178 x=189 y=127 width=21 height=29 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1179 x=152 y=328 width=17 height=23 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1184 x=169 y=328 width=27 height=23 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 +char id=1185 x=392 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=1186 x=375 y=127 width=21 height=28 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1187 x=196 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=1194 x=385 y=66 width=20 height=31 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1195 x=392 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1202 x=210 y=127 width=22 height=29 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1203 x=214 y=328 width=19 height=23 xoffset=-1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1206 x=396 y=127 width=20 height=28 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=1207 x=233 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=1210 x=251 y=328 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1217 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1219 x=398 y=97 width=20 height=30 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=1220 x=408 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1223 x=418 y=97 width=18 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1224 x=424 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1234 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1240 x=440 y=208 width=22 height=25 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1241 x=414 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1250 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1256 x=462 y=208 width=21 height=25 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1257 x=430 y=370 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1262 x=405 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=1263 x=383 y=0 width=16 height=32 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=1266 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1298 x=436 y=97 width=20 height=30 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=1299 x=483 y=208 width=18 height=25 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 +char id=8211 x=316 y=388 width=14 height=6 xoffset=1 yoffset=18 xadvance=16 page=0 chnl=0 +char id=8212 x=330 y=388 width=20 height=6 xoffset=1 yoffset=18 xadvance=22 page=0 chnl=0 +char id=8216 x=135 y=388 width=6 height=11 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=8217 x=141 y=388 width=6 height=11 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=8218 x=147 y=388 width=6 height=11 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 +char id=8220 x=153 y=388 width=12 height=11 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=8221 x=98 y=388 width=12 height=12 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=8222 x=165 y=388 width=12 height=11 xoffset=1 yoffset=26 xadvance=14 page=0 chnl=0 +char id=8224 x=269 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=8225 x=285 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=8226 x=177 y=388 width=11 height=11 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0 +char id=8230 x=350 y=388 width=30 height=6 xoffset=1 yoffset=26 xadvance=31 page=0 chnl=0 +char id=8240 x=18 y=258 width=28 height=24 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0 +char id=8249 x=29 y=388 width=9 height=14 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 +char id=8250 x=38 y=388 width=9 height=14 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 +char id=8260 x=0 y=233 width=19 height=25 xoffset=-7 yoffset=9 xadvance=5 page=0 chnl=0 +char id=8361 x=301 y=328 width=24 height=23 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=8363 x=325 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=8364 x=46 y=258 width=21 height=24 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 +char id=8365 x=341 y=328 width=20 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=8366 x=361 y=328 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=8369 x=379 y=328 width=19 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=8370 x=416 y=127 width=21 height=28 xoffset=1 yoffset=6 xadvance=23 page=0 chnl=0 +char id=8372 x=67 y=258 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=8377 x=85 y=258 width=18 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 +char id=8378 x=398 y=328 width=20 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png new file mode 100644 index 0000000..1dd9899 Binary files /dev/null and b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.ttf b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.ttf similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.ttf rename to wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.ttf diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.fnt new file mode 100644 index 0000000..caa0b7d --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.fnt @@ -0,0 +1,344 @@ +info face="Enchanted Land" size=96 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=4,4,4,4 spacing=-2,-2 +common lineHeight=119 base=83 scaleW=2048 scaleH=1024 pages=1 packed=0 +page id=0 file="enchanted.png" +chars count=340 +char id=0 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 +char id=13 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 +char id=33 x=2027 y=196 width=20 height=67 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 +char id=34 x=1431 y=495 width=26 height=29 xoffset=-4 yoffset=21 xadvance=24 page=0 chnl=0 +char id=35 x=850 y=495 width=39 height=41 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 +char id=36 x=1856 y=430 width=31 height=52 xoffset=-4 yoffset=4 xadvance=31 page=0 chnl=0 +char id=37 x=1121 y=430 width=35 height=62 xoffset=-4 yoffset=16 xadvance=34 page=0 chnl=0 +char id=38 x=318 y=359 width=37 height=68 xoffset=-4 yoffset=20 xadvance=36 page=0 chnl=0 +char id=39 x=1457 y=495 width=16 height=29 xoffset=-4 yoffset=21 xadvance=15 page=0 chnl=0 +char id=40 x=302 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 +char id=41 x=330 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 +char id=42 x=1293 y=495 width=30 height=33 xoffset=-4 yoffset=-3 xadvance=28 page=0 chnl=0 +char id=43 x=1371 y=495 width=31 height=31 xoffset=-4 yoffset=42 xadvance=30 page=0 chnl=0 +char id=44 x=1586 y=495 width=21 height=24 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 +char id=45 x=1996 y=495 width=31 height=14 xoffset=-4 yoffset=50 xadvance=30 page=0 chnl=0 +char id=46 x=1907 y=495 width=21 height=19 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 +char id=47 x=358 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 +char id=48 x=661 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=49 x=128 y=359 width=33 height=69 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 +char id=50 x=696 y=359 width=35 height=67 xoffset=-4 yoffset=22 xadvance=36 page=0 chnl=0 +char id=51 x=355 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=52 x=161 y=359 width=46 height=69 xoffset=-4 yoffset=21 xadvance=47 page=0 chnl=0 +char id=53 x=731 y=359 width=36 height=67 xoffset=-4 yoffset=21 xadvance=37 page=0 chnl=0 +char id=54 x=767 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=55 x=1285 y=359 width=45 height=66 xoffset=-3 yoffset=22 xadvance=47 page=0 chnl=0 +char id=56 x=390 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=57 x=802 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=58 x=2027 y=430 width=20 height=49 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 +char id=59 x=1722 y=430 width=20 height=54 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 +char id=60 x=1229 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 +char id=61 x=1523 y=495 width=31 height=26 xoffset=-4 yoffset=43 xadvance=30 page=0 chnl=0 +char id=62 x=1261 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 +char id=63 x=425 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=64 x=0 y=282 width=64 height=77 xoffset=-4 yoffset=10 xadvance=63 page=0 chnl=0 +char id=65 x=1229 y=196 width=83 height=82 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 +char id=66 x=1896 y=196 width=57 height=78 xoffset=-4 yoffset=15 xadvance=56 page=0 chnl=0 +char id=67 x=1610 y=282 width=53 height=72 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 +char id=68 x=124 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 +char id=69 x=568 y=282 width=56 height=75 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=70 x=781 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=71 x=1945 y=282 width=56 height=71 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 +char id=72 x=1328 y=282 width=60 height=73 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 +char id=73 x=1388 y=282 width=37 height=73 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 +char id=74 x=624 y=282 width=45 height=75 xoffset=-4 yoffset=16 xadvance=44 page=0 chnl=0 +char id=75 x=1623 y=196 width=64 height=80 xoffset=-4 yoffset=20 xadvance=63 page=0 chnl=0 +char id=76 x=669 y=282 width=48 height=75 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 +char id=77 x=1425 y=282 width=77 height=73 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 +char id=78 x=1663 y=282 width=60 height=72 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 +char id=79 x=0 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=80 x=184 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=59 page=0 chnl=0 +char id=81 x=1723 y=282 width=64 height=72 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=82 x=1687 y=196 width=64 height=80 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 +char id=83 x=1787 y=282 width=56 height=72 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 +char id=84 x=837 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=85 x=1843 y=282 width=52 height=72 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 +char id=86 x=1895 y=282 width=50 height=72 xoffset=-4 yoffset=22 xadvance=48 page=0 chnl=0 +char id=87 x=893 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 +char id=88 x=1502 y=282 width=59 height=73 xoffset=-5 yoffset=19 xadvance=57 page=0 chnl=0 +char id=89 x=1226 y=0 width=55 height=92 xoffset=-4 yoffset=21 xadvance=53 page=0 chnl=0 +char id=90 x=1561 y=282 width=49 height=73 xoffset=-4 yoffset=19 xadvance=47 page=0 chnl=0 +char id=91 x=643 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 +char id=92 x=409 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 +char id=93 x=663 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 +char id=94 x=1494 y=495 width=29 height=27 xoffset=-4 yoffset=7 xadvance=28 page=0 chnl=0 +char id=95 x=0 y=545 width=36 height=14 xoffset=-4 yoffset=86 xadvance=34 page=0 chnl=0 +char id=96 x=1731 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 +char id=97 x=167 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=98 x=1330 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 +char id=99 x=1927 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=100 x=1366 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 +char id=101 x=1960 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=102 x=1402 y=359 width=33 height=66 xoffset=-4 yoffset=21 xadvance=32 page=0 chnl=0 +char id=103 x=460 y=359 width=33 height=68 xoffset=-4 yoffset=36 xadvance=32 page=0 chnl=0 +char id=104 x=1435 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=105 x=1426 y=430 width=24 height=61 xoffset=-4 yoffset=26 xadvance=23 page=0 chnl=0 +char id=106 x=1953 y=196 width=34 height=78 xoffset=-3 yoffset=26 xadvance=34 page=0 chnl=0 +char id=107 x=1475 y=359 width=40 height=66 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 +char id=108 x=1515 y=359 width=24 height=66 xoffset=-4 yoffset=21 xadvance=22 page=0 chnl=0 +char id=109 x=203 y=495 width=55 height=49 xoffset=-4 yoffset=38 xadvance=54 page=0 chnl=0 +char id=110 x=258 y=495 width=40 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=111 x=1993 y=430 width=34 height=50 xoffset=-4 yoffset=37 xadvance=35 page=0 chnl=0 +char id=112 x=1539 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=113 x=1575 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=114 x=298 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 +char id=115 x=0 y=495 width=32 height=50 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 +char id=116 x=1156 y=430 width=24 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 +char id=117 x=333 y=495 width=39 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=118 x=372 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=119 x=408 y=495 width=52 height=49 xoffset=-4 yoffset=38 xadvance=51 page=0 chnl=0 +char id=120 x=460 y=495 width=34 height=49 xoffset=-2 yoffset=38 xadvance=36 page=0 chnl=0 +char id=121 x=1883 y=359 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=122 x=494 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=34 page=0 chnl=0 +char id=123 x=55 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 +char id=124 x=683 y=0 width=17 height=98 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=125 x=82 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 +char id=126 x=1836 y=495 width=37 height=20 xoffset=-4 yoffset=67 xadvance=35 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=161 x=2026 y=106 width=20 height=66 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 +char id=162 x=1689 y=430 width=33 height=55 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 +char id=163 x=594 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 +char id=164 x=889 y=495 width=42 height=41 xoffset=-4 yoffset=11 xadvance=40 page=0 chnl=0 +char id=165 x=627 y=495 width=28 height=48 xoffset=-4 yoffset=8 xadvance=27 page=0 chnl=0 +char id=166 x=460 y=0 width=17 height=99 xoffset=-4 yoffset=2 xadvance=16 page=0 chnl=0 +char id=167 x=1662 y=430 width=27 height=56 xoffset=-4 yoffset=6 xadvance=26 page=0 chnl=0 +char id=168 x=1873 y=495 width=34 height=20 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=169 x=760 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 +char id=170 x=1323 y=495 width=27 height=33 xoffset=-4 yoffset=7 xadvance=26 page=0 chnl=0 +char id=171 x=931 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 +char id=172 x=1777 y=495 width=40 height=22 xoffset=-4 yoffset=34 xadvance=39 page=0 chnl=0 +char id=174 x=805 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 +char id=175 x=36 y=545 width=29 height=14 xoffset=-4 yoffset=29 xadvance=28 page=0 chnl=0 +char id=176 x=1473 y=495 width=21 height=28 xoffset=-4 yoffset=12 xadvance=20 page=0 chnl=0 +char id=177 x=968 y=495 width=31 height=40 xoffset=-4 yoffset=41 xadvance=30 page=0 chnl=0 +char id=178 x=1162 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=21 page=0 chnl=0 +char id=179 x=1082 y=495 width=22 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 +char id=180 x=1754 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 +char id=181 x=1919 y=359 width=39 height=65 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=182 x=1184 y=495 width=23 height=38 xoffset=-4 yoffset=7 xadvance=23 page=0 chnl=0 +char id=183 x=1976 y=495 width=20 height=18 xoffset=-3 yoffset=38 xadvance=16 page=0 chnl=0 +char id=184 x=1350 y=495 width=21 height=32 xoffset=-4 yoffset=74 xadvance=19 page=0 chnl=0 +char id=185 x=1104 y=495 width=21 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 +char id=186 x=1207 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=20 page=0 chnl=0 +char id=187 x=999 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 +char id=188 x=328 y=196 width=53 height=84 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 +char id=189 x=381 y=196 width=47 height=84 xoffset=-4 yoffset=5 xadvance=45 page=0 chnl=0 +char id=190 x=105 y=196 width=53 height=85 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 +char id=191 x=837 y=359 width=35 height=67 xoffset=-3 yoffset=20 xadvance=35 page=0 chnl=0 +char id=192 x=477 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 +char id=193 x=560 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 +char id=194 x=830 y=0 width=83 height=96 xoffset=-7 yoffset=5 xadvance=77 page=0 chnl=0 +char id=195 x=1143 y=0 width=83 height=93 xoffset=-7 yoffset=8 xadvance=77 page=0 chnl=0 +char id=196 x=913 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 +char id=197 x=109 y=0 width=83 height=104 xoffset=-7 yoffset=-3 xadvance=77 page=0 chnl=0 +char id=198 x=244 y=282 width=81 height=76 xoffset=-6 yoffset=19 xadvance=75 page=0 chnl=0 +char id=199 x=742 y=106 width=53 height=87 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 +char id=200 x=52 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 +char id=201 x=1618 y=0 width=56 height=90 xoffset=-4 yoffset=1 xadvance=55 page=0 chnl=0 +char id=202 x=795 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 +char id=203 x=1585 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 +char id=204 x=1674 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 +char id=205 x=1711 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 +char id=206 x=2000 y=0 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=207 x=851 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=208 x=325 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 +char id=209 x=428 y=196 width=60 height=84 xoffset=-4 yoffset=9 xadvance=59 page=0 chnl=0 +char id=210 x=108 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 +char id=211 x=172 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 +char id=212 x=888 y=106 width=64 height=87 xoffset=-4 yoffset=5 xadvance=63 page=0 chnl=0 +char id=213 x=488 y=196 width=64 height=84 xoffset=-4 yoffset=8 xadvance=63 page=0 chnl=0 +char id=214 x=1641 y=106 width=64 height=86 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 +char id=215 x=1402 y=495 width=29 height=30 xoffset=-4 yoffset=42 xadvance=28 page=0 chnl=0 +char id=216 x=64 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=217 x=236 y=106 width=52 height=89 xoffset=-4 yoffset=5 xadvance=50 page=0 chnl=0 +char id=218 x=1748 y=0 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 +char id=219 x=952 y=106 width=52 height=87 xoffset=-4 yoffset=7 xadvance=50 page=0 chnl=0 +char id=220 x=1705 y=106 width=52 height=86 xoffset=-4 yoffset=8 xadvance=50 page=0 chnl=0 +char id=221 x=0 y=0 width=55 height=106 xoffset=-4 yoffset=7 xadvance=53 page=0 chnl=0 +char id=222 x=64 y=282 width=60 height=77 xoffset=-4 yoffset=15 xadvance=59 page=0 chnl=0 +char id=223 x=1958 y=359 width=41 height=65 xoffset=-4 yoffset=22 xadvance=40 page=0 chnl=0 +char id=224 x=872 y=359 width=36 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=225 x=493 y=359 width=36 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=226 x=1999 y=359 width=36 height=65 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 +char id=227 x=1180 y=430 width=36 height=62 xoffset=-4 yoffset=26 xadvance=35 page=0 chnl=0 +char id=228 x=514 y=430 width=36 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=229 x=207 y=359 width=36 height=69 xoffset=-4 yoffset=18 xadvance=35 page=0 chnl=0 +char id=230 x=32 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 +char id=231 x=98 y=430 width=33 height=64 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=232 x=908 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 +char id=233 x=941 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 +char id=234 x=131 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 +char id=235 x=550 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=236 x=974 y=359 width=25 height=67 xoffset=-5 yoffset=20 xadvance=23 page=0 chnl=0 +char id=237 x=529 y=359 width=24 height=68 xoffset=-4 yoffset=20 xadvance=23 page=0 chnl=0 +char id=238 x=0 y=430 width=26 height=65 xoffset=-4 yoffset=23 xadvance=23 page=0 chnl=0 +char id=239 x=584 y=430 width=42 height=63 xoffset=-9 yoffset=24 xadvance=22 page=0 chnl=0 +char id=240 x=26 y=430 width=36 height=65 xoffset=-4 yoffset=22 xadvance=35 page=0 chnl=0 +char id=241 x=1216 y=430 width=40 height=62 xoffset=-4 yoffset=26 xadvance=38 page=0 chnl=0 +char id=242 x=999 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=243 x=1033 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=244 x=626 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=245 x=1256 y=430 width=34 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 +char id=246 x=660 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=247 x=1125 y=495 width=37 height=39 xoffset=-4 yoffset=38 xadvance=36 page=0 chnl=0 +char id=248 x=82 y=495 width=35 height=50 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 +char id=249 x=1067 y=359 width=39 height=67 xoffset=-4 yoffset=20 xadvance=38 page=0 chnl=0 +char id=250 x=1106 y=359 width=39 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=251 x=694 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=252 x=733 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=253 x=988 y=196 width=36 height=83 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=254 x=1024 y=196 width=36 height=83 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 +char id=255 x=1824 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=256 x=1800 y=0 width=83 height=90 xoffset=-7 yoffset=11 xadvance=77 page=0 chnl=0 +char id=257 x=1489 y=430 width=36 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 +char id=258 x=996 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 +char id=259 x=1290 y=430 width=36 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 +char id=260 x=700 y=0 width=83 height=98 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 +char id=261 x=164 y=430 width=36 height=64 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=262 x=1883 y=0 width=53 height=90 xoffset=-4 yoffset=3 xadvance=51 page=0 chnl=0 +char id=263 x=1145 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 +char id=264 x=1004 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 +char id=265 x=772 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=266 x=1757 y=106 width=53 height=86 xoffset=-4 yoffset=7 xadvance=51 page=0 chnl=0 +char id=267 x=805 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=268 x=1057 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 +char id=269 x=838 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=270 x=1110 y=106 width=60 height=87 xoffset=-4 yoffset=5 xadvance=61 page=0 chnl=0 +char id=271 x=1611 y=359 width=47 height=66 xoffset=-4 yoffset=21 xadvance=45 page=0 chnl=0 +char id=272 x=385 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 +char id=273 x=1658 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=274 x=1312 y=196 width=56 height=82 xoffset=-4 yoffset=9 xadvance=55 page=0 chnl=0 +char id=275 x=1525 y=430 width=33 height=59 xoffset=-4 yoffset=29 xadvance=32 page=0 chnl=0 +char id=276 x=1170 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 +char id=277 x=200 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 +char id=278 x=1810 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 +char id=279 x=871 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=280 x=1226 y=106 width=56 height=87 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=281 x=904 y=430 width=33 height=63 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=282 x=404 y=106 width=56 height=88 xoffset=-4 yoffset=3 xadvance=55 page=0 chnl=0 +char id=283 x=937 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=284 x=552 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 +char id=285 x=1368 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 +char id=286 x=608 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 +char id=287 x=1401 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 +char id=288 x=664 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 +char id=289 x=1751 y=196 width=33 height=80 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=290 x=460 y=106 width=56 height=88 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 +char id=291 x=1866 y=106 width=33 height=86 xoffset=-4 yoffset=18 xadvance=32 page=0 chnl=0 +char id=292 x=1899 y=106 width=58 height=86 xoffset=-4 yoffset=7 xadvance=56 page=0 chnl=0 +char id=293 x=1784 y=196 width=40 height=80 xoffset=-4 yoffset=7 xadvance=38 page=0 chnl=0 +char id=294 x=971 y=282 width=60 height=74 xoffset=-4 yoffset=19 xadvance=59 page=0 chnl=0 +char id=295 x=1698 y=359 width=46 height=66 xoffset=-8 yoffset=21 xadvance=38 page=0 chnl=0 +char id=296 x=158 y=196 width=37 height=85 xoffset=-4 yoffset=7 xadvance=36 page=0 chnl=0 +char id=297 x=1326 y=430 width=37 height=62 xoffset=-9 yoffset=26 xadvance=23 page=0 chnl=0 +char id=298 x=1434 y=196 width=37 height=82 xoffset=-4 yoffset=10 xadvance=36 page=0 chnl=0 +char id=299 x=1558 y=430 width=31 height=59 xoffset=-7 yoffset=29 xadvance=23 page=0 chnl=0 +char id=300 x=1282 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=301 x=233 y=430 width=28 height=64 xoffset=-6 yoffset=24 xadvance=23 page=0 chnl=0 +char id=302 x=195 y=196 width=37 height=85 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 +char id=303 x=445 y=282 width=27 height=76 xoffset=-6 yoffset=26 xadvance=23 page=0 chnl=0 +char id=304 x=1319 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=305 x=529 y=495 width=24 height=49 xoffset=-4 yoffset=38 xadvance=23 page=0 chnl=0 +char id=306 x=472 y=282 width=72 height=76 xoffset=-4 yoffset=16 xadvance=71 page=0 chnl=0 +char id=307 x=1987 y=196 width=40 height=78 xoffset=-4 yoffset=26 xadvance=39 page=0 chnl=0 +char id=308 x=1957 y=106 width=45 height=86 xoffset=-4 yoffset=5 xadvance=44 page=0 chnl=0 +char id=309 x=1523 y=196 width=36 height=81 xoffset=-3 yoffset=23 xadvance=36 page=0 chnl=0 +char id=310 x=1936 y=0 width=64 height=90 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=311 x=232 y=196 width=40 height=85 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 +char id=312 x=1887 y=430 width=40 height=51 xoffset=-4 yoffset=37 xadvance=39 page=0 chnl=0 +char id=313 x=1329 y=0 width=48 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 +char id=314 x=720 y=196 width=24 height=84 xoffset=-4 yoffset=4 xadvance=23 page=0 chnl=0 +char id=315 x=1281 y=0 width=48 height=92 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 +char id=316 x=2002 y=106 width=24 height=86 xoffset=-4 yoffset=21 xadvance=23 page=0 chnl=0 +char id=317 x=1031 y=282 width=48 height=74 xoffset=-4 yoffset=18 xadvance=47 page=0 chnl=0 +char id=318 x=1744 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 +char id=319 x=516 y=106 width=48 height=88 xoffset=-4 yoffset=4 xadvance=47 page=0 chnl=0 +char id=320 x=1780 y=359 width=35 height=66 xoffset=-4 yoffset=21 xadvance=33 page=0 chnl=0 +char id=321 x=1079 y=282 width=50 height=74 xoffset=-4 yoffset=18 xadvance=49 page=0 chnl=0 +char id=322 x=1815 y=359 width=38 height=66 xoffset=-8 yoffset=21 xadvance=22 page=0 chnl=0 +char id=323 x=1356 y=106 width=60 height=87 xoffset=-4 yoffset=6 xadvance=59 page=0 chnl=0 +char id=324 x=1178 y=359 width=40 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=325 x=288 y=106 width=60 height=89 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 +char id=326 x=243 y=359 width=40 height=69 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=327 x=1060 y=196 width=60 height=83 xoffset=-4 yoffset=10 xadvance=59 page=0 chnl=0 +char id=328 x=261 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=329 x=1804 y=430 width=52 height=53 xoffset=-4 yoffset=34 xadvance=50 page=0 chnl=0 +char id=330 x=1120 y=196 width=57 height=83 xoffset=-4 yoffset=21 xadvance=55 page=0 chnl=0 +char id=331 x=62 y=430 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=332 x=1559 y=196 width=64 height=81 xoffset=-4 yoffset=11 xadvance=63 page=0 chnl=0 +char id=333 x=1589 y=430 width=34 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 +char id=334 x=1416 y=106 width=64 height=87 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 +char id=335 x=300 y=430 width=34 height=64 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 +char id=336 x=1377 y=0 width=64 height=91 xoffset=-4 yoffset=1 xadvance=63 page=0 chnl=0 +char id=337 x=553 y=359 width=34 height=68 xoffset=-4 yoffset=19 xadvance=35 page=0 chnl=0 +char id=338 x=1129 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=76 page=0 chnl=0 +char id=339 x=117 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 +char id=340 x=1079 y=0 width=64 height=95 xoffset=-4 yoffset=1 xadvance=62 page=0 chnl=0 +char id=341 x=587 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=33 page=0 chnl=0 +char id=342 x=1441 y=0 width=64 height=91 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 +char id=343 x=283 y=359 width=35 height=69 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 +char id=344 x=1505 y=0 width=64 height=91 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 +char id=345 x=334 y=430 width=35 height=64 xoffset=-4 yoffset=24 xadvance=33 page=0 chnl=0 +char id=346 x=348 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 +char id=347 x=1218 y=359 width=32 height=67 xoffset=-4 yoffset=20 xadvance=31 page=0 chnl=0 +char id=348 x=0 y=196 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 +char id=349 x=970 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 +char id=350 x=1480 y=106 width=56 height=87 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 +char id=351 x=369 y=430 width=32 height=64 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 +char id=352 x=272 y=196 width=56 height=85 xoffset=-4 yoffset=6 xadvance=55 page=0 chnl=0 +char id=353 x=1002 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 +char id=354 x=744 y=196 width=64 height=84 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 +char id=355 x=544 y=282 width=24 height=76 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 +char id=356 x=808 y=196 width=64 height=84 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 +char id=357 x=1363 y=430 width=38 height=62 xoffset=-4 yoffset=25 xadvance=36 page=0 chnl=0 +char id=358 x=717 y=282 width=64 height=75 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 +char id=359 x=1401 y=430 width=25 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 +char id=360 x=1471 y=196 width=52 height=82 xoffset=-4 yoffset=12 xadvance=50 page=0 chnl=0 +char id=361 x=1450 y=430 width=39 height=60 xoffset=-4 yoffset=27 xadvance=38 page=0 chnl=0 +char id=362 x=872 y=196 width=52 height=84 xoffset=-4 yoffset=10 xadvance=50 page=0 chnl=0 +char id=363 x=1623 y=430 width=39 height=59 xoffset=-4 yoffset=29 xadvance=38 page=0 chnl=0 +char id=364 x=1177 y=196 width=52 height=83 xoffset=-4 yoffset=11 xadvance=50 page=0 chnl=0 +char id=365 x=401 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=366 x=0 y=106 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 +char id=367 x=2001 y=282 width=39 height=71 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 +char id=368 x=564 y=106 width=52 height=88 xoffset=-4 yoffset=6 xadvance=50 page=0 chnl=0 +char id=369 x=622 y=359 width=39 height=68 xoffset=-4 yoffset=19 xadvance=38 page=0 chnl=0 +char id=370 x=616 y=106 width=52 height=88 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 +char id=371 x=440 y=430 width=39 height=64 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=372 x=668 y=106 width=74 height=88 xoffset=-4 yoffset=7 xadvance=73 page=0 chnl=0 +char id=373 x=1034 y=430 width=52 height=63 xoffset=-4 yoffset=24 xadvance=51 page=0 chnl=0 +char id=374 x=192 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 +char id=375 x=1860 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=376 x=247 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 +char id=377 x=1569 y=0 width=49 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 +char id=378 x=1250 y=359 width=35 height=67 xoffset=-4 yoffset=20 xadvance=34 page=0 chnl=0 +char id=379 x=56 y=196 width=49 height=86 xoffset=-4 yoffset=6 xadvance=47 page=0 chnl=0 +char id=380 x=1086 y=430 width=35 height=63 xoffset=-4 yoffset=24 xadvance=34 page=0 chnl=0 +char id=381 x=1536 y=106 width=49 height=87 xoffset=-4 yoffset=5 xadvance=47 page=0 chnl=0 +char id=382 x=479 y=430 width=35 height=64 xoffset=-4 yoffset=23 xadvance=34 page=0 chnl=0 +char id=383 x=1853 y=359 width=30 height=66 xoffset=-4 yoffset=21 xadvance=29 page=0 chnl=0 +char id=884 x=1207 y=282 width=121 height=74 xoffset=-3 yoffset=-1 xadvance=121 page=0 chnl=0 +char id=8211 x=65 y=545 width=42 height=14 xoffset=-4 yoffset=50 xadvance=40 page=0 chnl=0 +char id=8212 x=107 y=545 width=55 height=14 xoffset=-4 yoffset=50 xadvance=54 page=0 chnl=0 +char id=8216 x=1607 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 +char id=8217 x=1627 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 +char id=8218 x=1647 y=495 width=20 height=24 xoffset=-4 yoffset=68 xadvance=19 page=0 chnl=0 +char id=8220 x=1554 y=495 width=32 height=25 xoffset=-4 yoffset=21 xadvance=31 page=0 chnl=0 +char id=8221 x=1667 y=495 width=32 height=24 xoffset=-4 yoffset=22 xadvance=31 page=0 chnl=0 +char id=8222 x=1699 y=495 width=32 height=24 xoffset=-4 yoffset=68 xadvance=31 page=0 chnl=0 +char id=8224 x=1742 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 +char id=8225 x=1773 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 +char id=8226 x=1817 y=495 width=19 height=21 xoffset=-4 yoffset=41 xadvance=19 page=0 chnl=0 +char id=8230 x=1928 y=495 width=48 height=19 xoffset=-4 yoffset=68 xadvance=47 page=0 chnl=0 +char id=8240 x=924 y=196 width=64 height=84 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 +char id=8249 x=1036 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 +char id=8250 x=1059 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 +char id=8260 x=783 y=0 width=47 height=97 xoffset=-4 yoffset=3 xadvance=46 page=0 chnl=0 +char id=8355 x=688 y=495 width=31 height=47 xoffset=-4 yoffset=7 xadvance=30 page=0 chnl=0 +char id=8356 x=655 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 +char id=8359 x=553 y=495 width=41 height=49 xoffset=-4 yoffset=7 xadvance=40 page=0 chnl=0 +char id=8364 x=719 y=495 width=41 height=47 xoffset=-4 yoffset=7 xadvance=39 page=0 chnl=0 \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.png rename to wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.ttf b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.ttf similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.ttf rename to wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.ttf diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages.properties b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages.properties new file mode 100644 index 0000000..795e4d4 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages.properties @@ -0,0 +1,23 @@ +menu.main.play=Play +menu.main.quit=Close + +menu.connect.connect=Connect +menu.connect.back=Back +menu.connect.address.label=Enter Server Address + +menu.lobby.join=Join +menu.lobby.create=Create +menu.lobby.back=Back +menu.lobby.player_name.label=Player Name +menu.lobby.session_name.label=Session Name +menu.lobby.session_player_count.label=Current Player Count +menu.lobby.session_configuration.label=Configuration + +menu.waiting.ready=Ready +menu.waiting.not_ready=Not Ready +menu.waiting.leave=Leave + +menu.waiting.player_name.label=Own Name +menu.waiting.session_name.label=Session Name +menu.waiting.session_uuid.label=Session UUID +menu.waiting.session_configuration.label=Configuration \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages_de.properties b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages_de.properties new file mode 100644 index 0000000..b5a9175 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages_de.properties @@ -0,0 +1,23 @@ +menu.main.play=Spiel beitreten +menu.main.quit=Verlassen + +menu.connect.connect=Verbinden +menu.connect.back=Zurück +menu.connect.address.label=Server-Adresse eingeben + +menu.lobby.join=Beitreten +menu.lobby.create=Erstellen +menu.lobby.back=Verlassen +menu.lobby.player_name.label=Spielername +menu.lobby.session_name.label=Session Name +menu.lobby.session_player_count.label=Spieleranzahl +menu.lobby.session_configuration.label=Spielvariante + +menu.waiting.ready=Bereit +menu.waiting.not_ready=Nicht Bereit +menu.waiting.leave=Verlassen + +menu.waiting.player_name.label=Eigener Name +menu.waiting.session_name.label=Session Name +menu.waiting.session_uuid.label=Session UUID +menu.waiting.session_configuration.label=Spielvariante \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/cursor.9.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/cursor.9.png deleted file mode 100644 index aeed93c..0000000 Binary files a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/cursor.9.png and /dev/null differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane.9.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane.9.png deleted file mode 100644 index 6b3f904..0000000 Binary files a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane.9.png and /dev/null differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.fnt deleted file mode 100644 index d46a941..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.fnt +++ /dev/null @@ -1,2084 +0,0 @@ -info face="CoolveticaRg-Regular" 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=39 base=31 scaleW=256 scaleH=256 pages=1 packed=0 -page id=0 file="coolvetica.png" -chars count=97 -char id=0 x=123 y=104 width=15 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 -char id=10 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=35 y=104 width=8 height=24 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 -char id=34 x=8 y=147 width=11 height=11 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 -char id=35 x=87 y=104 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=36 x=120 y=0 width=18 height=27 xoffset=-1 yoffset=6 xadvance=15 page=0 chnl=0 -char id=37 x=226 y=0 width=24 height=26 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=38 x=105 y=104 width=18 height=24 xoffset=-1 yoffset=9 xadvance=16 page=0 chnl=0 -char id=39 x=19 y=147 width=6 height=11 xoffset=-1 yoffset=8 xadvance=5 page=0 chnl=0 -char id=40 x=47 y=0 width=11 height=31 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 -char id=41 x=58 y=0 width=11 height=31 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 -char id=42 x=215 y=128 width=18 height=18 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 -char id=43 x=197 y=128 width=18 height=18 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=0 -char id=44 x=0 y=147 width=8 height=12 xoffset=-1 yoffset=25 xadvance=6 page=0 chnl=0 -char id=45 x=79 y=147 width=11 height=6 xoffset=-1 yoffset=18 xadvance=9 page=0 chnl=0 -char id=46 x=71 y=147 width=8 height=7 xoffset=-1 yoffset=25 xadvance=6 page=0 chnl=0 -char id=47 x=61 y=104 width=13 height=24 xoffset=-2 yoffset=8 xadvance=10 page=0 chnl=0 -char id=48 x=211 y=31 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=49 x=220 y=80 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 -char id=50 x=231 y=80 width=17 height=24 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=51 x=124 y=31 width=17 height=25 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=52 x=0 y=104 width=17 height=24 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=53 x=141 y=31 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=54 x=159 y=31 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=55 x=17 y=104 width=18 height=24 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=56 x=176 y=31 width=18 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=57 x=194 y=31 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=58 x=245 y=104 width=7 height=18 xoffset=-1 yoffset=14 xadvance=5 page=0 chnl=0 -char id=59 x=248 y=80 width=7 height=23 xoffset=-1 yoffset=14 xadvance=6 page=0 chnl=0 -char id=60 x=161 y=128 width=18 height=18 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=0 -char id=61 x=233 y=128 width=18 height=13 xoffset=-1 yoffset=13 xadvance=17 page=0 chnl=0 -char id=62 x=179 y=128 width=18 height=18 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=0 -char id=63 x=43 y=104 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=64 x=229 y=31 width=25 height=25 xoffset=-1 yoffset=10 xadvance=23 page=0 chnl=0 -char id=65 x=0 y=56 width=23 height=24 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=66 x=23 y=56 width=21 height=24 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 -char id=67 x=0 y=31 width=22 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=0 -char id=68 x=44 y=56 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=69 x=65 y=56 width=19 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=70 x=84 y=56 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=71 x=22 y=31 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=72 x=102 y=56 width=20 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=73 x=122 y=56 width=8 height=24 xoffset=-1 yoffset=8 xadvance=6 page=0 chnl=0 -char id=74 x=45 y=31 width=16 height=25 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=75 x=130 y=56 width=22 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=76 x=152 y=56 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=77 x=170 y=56 width=24 height=24 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0 -char id=78 x=194 y=56 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=79 x=61 y=31 width=23 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=80 x=215 y=56 width=19 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=81 x=0 y=0 width=24 height=31 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=82 x=234 y=56 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=83 x=84 y=31 width=20 height=25 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 -char id=84 x=0 y=80 width=20 height=24 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 -char id=85 x=104 y=31 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=86 x=20 y=80 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=87 x=41 y=80 width=30 height=24 xoffset=-1 yoffset=8 xadvance=27 page=0 chnl=0 -char id=88 x=71 y=80 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=89 x=92 y=80 width=21 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=90 x=113 y=80 width=19 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=91 x=100 y=0 width=10 height=29 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 -char id=92 x=74 y=104 width=13 height=24 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 -char id=93 x=110 y=0 width=10 height=29 xoffset=-1 yoffset=7 xadvance=10 page=0 chnl=0 -char id=94 x=36 y=147 width=16 height=9 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=95 x=90 y=147 width=18 height=4 xoffset=-1 yoffset=32 xadvance=15 page=0 chnl=0 -char id=96 x=25 y=147 width=11 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 -char id=97 x=166 y=104 width=17 height=19 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=98 x=132 y=80 width=19 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=99 x=183 y=104 width=18 height=19 xoffset=-1 yoffset=13 xadvance=15 page=0 chnl=0 -char id=100 x=151 y=80 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=101 x=201 y=104 width=18 height=19 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=102 x=138 y=104 width=12 height=23 xoffset=-1 yoffset=9 xadvance=9 page=0 chnl=0 -char id=103 x=138 y=0 width=18 height=26 xoffset=-1 yoffset=13 xadvance=17 page=0 chnl=0 -char id=104 x=169 y=80 width=18 height=24 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=105 x=187 y=80 width=8 height=24 xoffset=-1 yoffset=8 xadvance=6 page=0 chnl=0 -char id=106 x=24 y=0 width=23 height=31 xoffset=-9 yoffset=8 xadvance=6 page=0 chnl=0 -char id=107 x=195 y=80 width=18 height=24 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=108 x=213 y=80 width=7 height=24 xoffset=-1 yoffset=8 xadvance=6 page=0 chnl=0 -char id=109 x=219 y=104 width=26 height=19 xoffset=-1 yoffset=13 xadvance=24 page=0 chnl=0 -char id=110 x=0 y=128 width=18 height=19 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=111 x=18 y=128 width=19 height=19 xoffset=-1 yoffset=13 xadvance=17 page=0 chnl=0 -char id=112 x=156 y=0 width=19 height=26 xoffset=-1 yoffset=13 xadvance=17 page=0 chnl=0 -char id=113 x=175 y=0 width=33 height=26 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=114 x=37 y=128 width=12 height=19 xoffset=-1 yoffset=13 xadvance=10 page=0 chnl=0 -char id=115 x=49 y=128 width=17 height=19 xoffset=-1 yoffset=13 xadvance=15 page=0 chnl=0 -char id=116 x=150 y=104 width=16 height=23 xoffset=-1 yoffset=9 xadvance=15 page=0 chnl=0 -char id=117 x=66 y=128 width=18 height=19 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=118 x=84 y=128 width=18 height=19 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=119 x=102 y=128 width=25 height=19 xoffset=-1 yoffset=13 xadvance=23 page=0 chnl=0 -char id=120 x=127 y=128 width=18 height=19 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=121 x=208 y=0 width=18 height=26 xoffset=-1 yoffset=13 xadvance=16 page=0 chnl=0 -char id=122 x=145 y=128 width=16 height=19 xoffset=-1 yoffset=13 xadvance=14 page=0 chnl=0 -char id=123 x=69 y=0 width=13 height=30 xoffset=-1 yoffset=6 xadvance=11 page=0 chnl=0 -char id=124 x=94 y=0 width=6 height=30 xoffset=2 yoffset=6 xadvance=11 page=0 chnl=0 -char id=125 x=82 y=0 width=12 height=30 xoffset=-1 yoffset=6 xadvance=11 page=0 chnl=0 -char id=126 x=52 y=147 width=19 height=9 xoffset=-1 yoffset=16 xadvance=18 page=0 chnl=0 -kernings count=1982 -kerning first=105 second=71 amount=-2 -kerning first=86 second=84 amount=-5 -kerning first=114 second=111 amount=-1 -kerning first=80 second=87 amount=-1 -kerning first=61 second=100 amount=-1 -kerning first=42 second=113 amount=-1 -kerning first=55 second=103 amount=-1 -kerning first=36 second=116 amount=-1 -kerning first=49 second=106 amount=1 -kerning first=56 second=99 amount=-1 -kerning first=122 second=100 amount=-1 -kerning first=103 second=113 amount=-1 -kerning first=69 second=89 amount=-5 -kerning first=73 second=39 amount=-3 -kerning first=110 second=106 amount=1 -kerning first=48 second=55 amount=-1 -kerning first=91 second=119 amount=-4 -kerning first=61 second=45 amount=-2 -kerning first=70 second=85 amount=-2 -kerning first=117 second=99 amount=-1 -kerning first=55 second=48 amount=-1 -kerning first=111 second=102 amount=-1 -kerning first=92 second=115 amount=-1 -kerning first=86 second=118 amount=-1 -kerning first=56 second=44 amount=-1 -kerning first=80 second=121 amount=-1 -kerning first=84 second=71 amount=-1 -kerning first=65 second=84 amount=-5 -kerning first=69 second=34 amount=-3 -kerning first=93 second=111 amount=-1 -kerning first=59 second=87 amount=-5 -kerning first=40 second=100 amount=-1 -kerning first=87 second=114 amount=-2 -kerning first=34 second=103 amount=-1 -kerning first=60 second=83 amount=-1 -kerning first=126 second=84 amount=-5 -kerning first=107 second=97 amount=-1 -kerning first=45 second=46 amount=-1 -kerning first=111 second=47 amount=-1 -kerning first=35 second=99 amount=-1 -kerning first=86 second=63 amount=-1 -kerning first=48 second=89 amount=-5 -kerning first=52 second=39 amount=-1 -kerning first=95 second=103 amount=-1 -kerning first=76 second=116 amount=-1 -kerning first=61 second=79 amount=-2 -kerning first=70 second=119 amount=-4 -kerning first=121 second=83 amount=-1 -kerning first=40 second=45 amount=-2 -kerning first=49 second=85 amount=-2 -kerning first=96 second=99 amount=-1 -kerning first=47 second=38 amount=-1 -kerning first=113 second=39 amount=-3 -kerning first=65 second=118 amount=-4 -kerning first=50 second=81 amount=-2 -kerning first=59 second=121 amount=-1 -kerning first=63 second=71 amount=-2 -kerning first=44 second=84 amount=-5 -kerning first=48 second=34 amount=-3 -kerning first=72 second=111 amount=-1 -kerning first=38 second=87 amount=-2 -kerning first=60 second=117 amount=-1 -kerning first=126 second=118 amount=-4 -kerning first=64 second=67 amount=-2 -kerning first=124 second=71 amount=-2 -kerning first=105 second=84 amount=-5 -kerning first=86 second=97 amount=-3 -kerning first=109 second=34 amount=-1 -kerning first=80 second=100 amount=-1 -kerning first=61 second=113 amount=-1 -kerning first=65 second=63 amount=-5 -kerning first=74 second=103 amount=-1 -kerning first=55 second=116 amount=-1 -kerning first=121 second=117 amount=-1 -kerning first=125 second=67 amount=-2 -kerning first=40 second=79 amount=-2 -kerning first=49 second=119 amount=-4 -kerning first=115 second=120 amount=-1 -kerning first=100 second=83 amount=-1 -kerning first=85 second=46 amount=-1 -kerning first=75 second=99 amount=-2 -kerning first=122 second=113 amount=-1 -kerning first=92 second=39 amount=-3 -kerning first=50 second=115 amount=-1 -kerning first=44 second=118 amount=-2 -kerning first=110 second=119 amount=-1 -kerning first=80 second=45 amount=-2 -kerning first=38 second=121 amount=-1 -kerning first=42 second=71 amount=-2 -kerning first=51 second=111 amount=-1 -kerning first=83 second=88 amount=-1 -kerning first=64 second=101 amount=-1 -kerning first=87 second=38 amount=-1 -kerning first=105 second=118 amount=-4 -kerning first=43 second=67 amount=-2 -kerning first=90 second=81 amount=-1 -kerning first=56 second=57 amount=-1 -kerning first=103 second=71 amount=-2 -kerning first=65 second=97 amount=-1 -kerning first=78 second=87 amount=-5 -kerning first=59 second=100 amount=-1 -kerning first=125 second=101 amount=-1 -kerning first=40 second=113 amount=-1 -kerning first=53 second=103 amount=-1 -kerning first=100 second=117 amount=-1 -kerning first=47 second=106 amount=1 -kerning first=126 second=97 amount=-1 -kerning first=54 second=99 amount=-1 -kerning first=120 second=100 amount=-2 -kerning first=67 second=89 amount=-2 -kerning first=114 second=103 amount=-1 -kerning first=95 second=116 amount=-1 -kerning first=80 second=79 amount=-2 -kerning first=108 second=106 amount=2 -kerning first=46 second=55 amount=-1 -kerning first=89 second=119 amount=-2 -kerning first=59 second=45 amount=-2 -kerning first=43 second=101 amount=-1 -kerning first=109 second=102 amount=-1 -kerning first=84 second=118 amount=-2 -kerning first=69 second=81 amount=-2 -kerning first=54 second=44 amount=-1 -kerning first=120 second=45 amount=-3 -kerning first=78 second=121 amount=-1 -kerning first=63 second=84 amount=-5 -kerning first=91 second=111 amount=-1 -kerning first=57 second=87 amount=-5 -kerning first=38 second=100 amount=-1 -kerning first=58 second=83 amount=-1 -kerning first=124 second=84 amount=-5 -kerning first=105 second=97 amount=-1 -kerning first=86 second=110 amount=-2 -kerning first=80 second=113 amount=-1 -kerning first=46 second=89 amount=-4 -kerning first=50 second=39 amount=-3 -kerning first=93 second=103 amount=-1 -kerning first=74 second=116 amount=-1 -kerning first=59 second=79 amount=-2 -kerning first=38 second=45 amount=-2 -kerning first=47 second=85 amount=-2 -kerning first=94 second=99 amount=-1 -kerning first=111 second=39 amount=-1 -kerning first=69 second=115 amount=-1 -kerning first=63 second=118 amount=-4 -kerning first=48 second=81 amount=-2 -kerning first=57 second=121 amount=-1 -kerning first=61 second=71 amount=-2 -kerning first=42 second=84 amount=-5 -kerning first=108 second=85 amount=-2 -kerning first=46 second=34 amount=-1 -kerning first=70 second=111 amount=-1 -kerning first=36 second=87 amount=-5 -kerning first=58 second=117 amount=-1 -kerning first=124 second=118 amount=-4 -kerning first=62 second=67 amount=-2 -kerning first=37 second=83 amount=-1 -kerning first=103 second=84 amount=-5 -kerning first=84 second=97 amount=-2 -kerning first=78 second=100 amount=-1 -kerning first=59 second=113 amount=-1 -kerning first=72 second=103 amount=-1 -kerning first=53 second=116 amount=-1 -kerning first=123 second=67 amount=-2 -kerning first=38 second=79 amount=-2 -kerning first=47 second=119 amount=-4 -kerning first=73 second=99 amount=-1 -kerning first=120 second=113 amount=-2 -kerning first=86 second=89 amount=-5 -kerning first=48 second=115 amount=-1 -kerning first=42 second=118 amount=-4 -kerning first=108 second=119 amount=-4 -kerning first=78 second=45 amount=-2 -kerning first=36 second=121 amount=-1 -kerning first=40 second=71 amount=-2 -kerning first=49 second=111 amount=-1 -kerning first=34 second=74 amount=-4 -kerning first=81 second=88 amount=-3 -kerning first=62 second=101 amount=-1 -kerning first=37 second=117 amount=-1 -kerning first=103 second=118 amount=-4 -kerning first=41 second=67 amount=-2 -kerning first=88 second=81 amount=-3 -kerning first=54 second=57 amount=-1 -kerning first=63 second=97 amount=-1 -kerning first=86 second=34 amount=-3 -kerning first=67 second=47 amount=-1 -kerning first=76 second=87 amount=-4 -kerning first=57 second=100 amount=-1 -kerning first=123 second=101 amount=-1 -kerning first=38 second=113 amount=-1 -kerning first=51 second=103 amount=-1 -kerning first=77 second=83 amount=-1 -kerning first=124 second=97 amount=-1 -kerning first=71 second=86 amount=-2 -kerning first=52 second=99 amount=-1 -kerning first=118 second=100 amount=-1 -kerning first=103 second=63 amount=-1 -kerning first=65 second=89 amount=-5 -kerning first=46 second=102 amount=-2 -kerning first=69 second=39 amount=-3 -kerning first=93 second=116 amount=-1 -kerning first=78 second=79 amount=-2 -kerning first=106 second=106 amount=7 -kerning first=44 second=55 amount=-1 -kerning first=87 second=119 amount=-1 -kerning first=57 second=45 amount=-2 -kerning first=113 second=99 amount=-1 -kerning first=126 second=89 amount=-5 -kerning first=41 second=101 amount=-1 -kerning first=45 second=51 amount=-2 -kerning first=88 second=115 amount=-1 -kerning first=118 second=45 amount=-1 -kerning first=76 second=121 amount=-1 -kerning first=80 second=71 amount=-2 -kerning first=61 second=84 amount=-5 -kerning first=42 second=97 amount=-1 -kerning first=65 second=34 amount=-3 -kerning first=89 second=111 amount=-4 -kerning first=55 second=87 amount=-5 -kerning first=36 second=100 amount=-1 -kerning first=102 second=101 amount=-1 -kerning first=77 second=117 amount=-1 -kerning first=113 second=44 amount=2 -kerning first=56 second=83 amount=-1 -kerning first=103 second=97 amount=-1 -kerning first=126 second=34 amount=-3 -kerning first=84 second=110 amount=-2 -kerning first=78 second=113 amount=-1 -kerning first=44 second=89 amount=-4 -kerning first=48 second=39 amount=-3 -kerning first=91 second=103 amount=-1 -kerning first=72 second=116 amount=-1 -kerning first=57 second=79 amount=-2 -kerning first=117 second=83 amount=-1 -kerning first=36 second=45 amount=-2 -kerning first=102 second=46 amount=-2 -kerning first=92 second=99 amount=-1 -kerning first=105 second=89 amount=-5 -kerning first=86 second=102 amount=-1 -kerning first=109 second=39 amount=-1 -kerning first=61 second=118 amount=-4 -kerning first=46 second=81 amount=-1 -kerning first=55 second=121 amount=-1 -kerning first=59 second=71 amount=-2 -kerning first=40 second=84 amount=-5 -kerning first=44 second=34 amount=-1 -kerning first=56 second=117 amount=-1 -kerning first=60 second=67 amount=-2 -kerning first=35 second=83 amount=-1 -kerning first=105 second=34 amount=-3 -kerning first=86 second=47 amount=-4 -kerning first=95 second=87 amount=-5 -kerning first=76 second=100 amount=-1 -kerning first=57 second=113 amount=-1 -kerning first=70 second=103 amount=-1 -kerning first=51 second=116 amount=-1 -kerning first=117 second=117 amount=-1 -kerning first=121 second=67 amount=-2 -kerning first=36 second=79 amount=-2 -kerning first=64 second=106 amount=5 -kerning first=45 second=119 amount=-1 -kerning first=111 second=120 amount=-2 -kerning first=96 second=83 amount=-1 -kerning first=81 second=46 amount=-1 -kerning first=118 second=113 amount=-1 -kerning first=65 second=102 amount=-2 -kerning first=125 second=106 amount=1 -kerning first=40 second=118 amount=-4 -kerning first=76 second=45 amount=-3 -kerning first=38 second=71 amount=-2 -kerning first=47 second=111 amount=-2 -kerning first=113 second=112 amount=2 -kerning first=79 second=88 amount=-3 -kerning first=60 second=101 amount=-1 -kerning first=107 second=115 amount=-1 -kerning first=35 second=117 amount=-1 -kerning first=101 second=118 amount=-1 -kerning first=86 second=81 amount=-2 -kerning first=95 second=121 amount=-1 -kerning first=80 second=84 amount=-5 -kerning first=61 second=97 amount=-1 -kerning first=108 second=111 amount=-1 -kerning first=74 second=87 amount=-5 -kerning first=55 second=100 amount=-1 -kerning first=121 second=101 amount=-1 -kerning first=36 second=113 amount=-1 -kerning first=68 second=90 amount=-1 -kerning first=49 second=103 amount=-1 -kerning first=96 second=117 amount=-1 -kerning first=100 second=67 amount=-2 -kerning first=43 second=106 amount=1 -kerning first=75 second=83 amount=-1 -kerning first=50 second=99 amount=-1 -kerning first=101 second=63 amount=-2 -kerning first=63 second=89 amount=-5 -kerning first=44 second=102 amount=-2 -kerning first=91 second=116 amount=-1 -kerning first=76 second=79 amount=-1 -kerning first=104 second=106 amount=1 -kerning first=55 second=45 amount=-4 -kerning first=64 second=85 amount=-2 -kerning first=124 second=89 amount=-5 -kerning first=39 second=101 amount=-1 -kerning first=86 second=115 amount=-3 -kerning first=80 second=118 amount=-4 -kerning first=65 second=81 amount=-2 -kerning first=74 second=121 amount=-1 -kerning first=78 second=71 amount=-2 -kerning first=59 second=84 amount=-5 -kerning first=125 second=85 amount=-2 -kerning first=40 second=97 amount=-1 -kerning first=63 second=34 amount=-3 -kerning first=87 second=111 amount=-3 -kerning first=53 second=87 amount=-5 -kerning first=34 second=100 amount=-1 -kerning first=100 second=101 amount=-1 -kerning first=75 second=117 amount=-1 -kerning first=126 second=81 amount=-2 -kerning first=111 second=44 amount=-1 -kerning first=54 second=83 amount=-1 -kerning first=124 second=34 amount=-3 -kerning first=39 second=46 amount=-1 -kerning first=95 second=100 amount=-1 -kerning first=76 second=113 amount=-1 -kerning first=42 second=89 amount=-5 -kerning first=46 second=39 amount=-1 -kerning first=89 second=103 amount=-4 -kerning first=70 second=116 amount=-1 -kerning first=55 second=79 amount=-2 -kerning first=83 second=106 amount=1 -kerning first=64 second=119 amount=-4 -kerning first=43 second=85 amount=-2 -kerning first=90 second=99 amount=-1 -kerning first=103 second=89 amount=-5 -kerning first=65 second=115 amount=-1 -kerning first=59 second=118 amount=-4 -kerning first=125 second=119 amount=-4 -kerning first=44 second=81 amount=-1 -kerning first=95 second=45 amount=-2 -kerning first=53 second=121 amount=-1 -kerning first=57 second=71 amount=-2 -kerning first=38 second=84 amount=-5 -kerning first=42 second=34 amount=-3 -kerning first=126 second=115 amount=-1 -kerning first=54 second=117 amount=-1 -kerning first=58 second=67 amount=-2 -kerning first=105 second=81 amount=-2 -kerning first=80 second=97 amount=-1 -kerning first=103 second=34 amount=-3 -kerning first=84 second=47 amount=-4 -kerning first=93 second=87 amount=-5 -kerning first=74 second=100 amount=-1 -kerning first=55 second=113 amount=-1 -kerning first=49 second=116 amount=-1 -kerning first=62 second=106 amount=1 -kerning first=43 second=119 amount=-4 -kerning first=94 second=83 amount=-1 -kerning first=79 second=46 amount=-1 -kerning first=69 second=99 amount=-1 -kerning first=82 second=89 amount=-2 -kerning first=86 second=39 amount=-3 -kerning first=95 second=79 amount=-2 -kerning first=123 second=106 amount=7 -kerning first=38 second=118 amount=-1 -kerning first=104 second=119 amount=-1 -kerning first=74 second=45 amount=-2 -kerning first=98 second=122 amount=-1 -kerning first=36 second=71 amount=-2 -kerning first=58 second=101 amount=-1 -kerning first=105 second=115 amount=-1 -kerning first=99 second=118 amount=-1 -kerning first=37 second=67 amount=-2 -kerning first=84 second=81 amount=-1 -kerning first=93 second=121 amount=-1 -kerning first=78 second=84 amount=-5 -kerning first=59 second=97 amount=-1 -kerning first=72 second=87 amount=-5 -kerning first=53 second=100 amount=-1 -kerning first=119 second=101 amount=-1 -kerning first=34 second=113 amount=-1 -kerning first=47 second=103 amount=-2 -kerning first=94 second=117 amount=-1 -kerning first=41 second=106 amount=1 -kerning first=73 second=83 amount=-1 -kerning first=120 second=97 amount=-1 -kerning first=67 second=86 amount=-1 -kerning first=48 second=99 amount=-1 -kerning first=114 second=100 amount=-1 -kerning first=52 second=49 amount=-2 -kerning first=95 second=113 amount=-1 -kerning first=99 second=63 amount=-1 -kerning first=61 second=89 amount=-5 -kerning first=65 second=39 amount=-3 -kerning first=108 second=103 amount=-1 -kerning first=46 second=52 amount=-1 -kerning first=74 second=79 amount=-2 -kerning first=83 second=119 amount=-1 -kerning first=53 second=45 amount=-2 -kerning first=119 second=46 amount=-2 -kerning first=62 second=85 amount=-2 -kerning first=37 second=101 amount=-1 -kerning first=126 second=39 amount=-3 -kerning first=84 second=115 amount=-3 -kerning first=78 second=118 amount=-4 -kerning first=63 second=81 amount=-2 -kerning first=48 second=44 amount=-1 -kerning first=114 second=45 amount=-1 -kerning first=72 second=121 amount=-1 -kerning first=76 second=71 amount=-1 -kerning first=57 second=84 amount=-5 -kerning first=123 second=85 amount=-2 -kerning first=38 second=97 amount=-1 -kerning first=61 second=34 amount=-3 -kerning first=70 second=74 amount=-6 -kerning first=51 second=87 amount=-5 -kerning first=45 second=90 amount=-2 -kerning first=73 second=117 amount=-1 -kerning first=77 second=67 amount=-2 -kerning first=124 second=81 amount=-2 -kerning first=52 second=83 amount=-1 -kerning first=46 second=86 amount=-4 -kerning first=93 second=100 amount=-1 -kerning first=74 second=113 amount=-1 -kerning first=40 second=89 amount=-5 -kerning first=44 second=39 amount=-1 -kerning first=87 second=103 amount=-2 -kerning first=53 second=79 amount=-2 -kerning first=62 second=119 amount=-4 -kerning first=113 second=83 amount=-1 -kerning first=98 second=46 amount=-1 -kerning first=41 second=85 amount=-2 -kerning first=88 second=99 amount=-2 -kerning first=105 second=39 amount=-3 -kerning first=63 second=115 amount=-1 -kerning first=67 second=65 amount=-1 -kerning first=57 second=118 amount=-4 -kerning first=123 second=119 amount=-4 -kerning first=42 second=81 amount=-2 -kerning first=93 second=45 amount=-2 -kerning first=51 second=121 amount=-1 -kerning first=55 second=71 amount=-2 -kerning first=36 second=84 amount=-5 -kerning first=40 second=34 amount=-3 -kerning first=64 second=111 amount=-1 -kerning first=77 second=101 amount=-1 -kerning first=124 second=115 amount=-1 -kerning first=52 second=117 amount=-1 -kerning first=56 second=67 amount=-2 -kerning first=103 second=81 amount=-2 -kerning first=78 second=97 amount=-1 -kerning first=101 second=34 amount=-1 -kerning first=125 second=111 amount=-1 -kerning first=91 second=87 amount=-5 -kerning first=72 second=100 amount=-1 -kerning first=53 second=113 amount=-1 -kerning first=47 second=116 amount=-1 -kerning first=113 second=117 amount=-1 -kerning first=117 second=67 amount=-2 -kerning first=60 second=106 amount=1 -kerning first=41 second=119 amount=-4 -kerning first=92 second=83 amount=-1 -kerning first=114 second=113 amount=-1 -kerning first=80 second=89 amount=-2 -kerning first=42 second=115 amount=-1 -kerning first=108 second=116 amount=-1 -kerning first=93 second=79 amount=-2 -kerning first=121 second=106 amount=7 -kerning first=36 second=118 amount=-4 -kerning first=72 second=45 amount=-2 -kerning first=43 second=111 amount=-1 -kerning first=56 second=101 amount=-1 -kerning first=103 second=115 amount=-1 -kerning first=97 second=118 amount=-1 -kerning first=35 second=67 amount=-2 -kerning first=67 second=44 amount=-1 -kerning first=91 second=121 amount=-1 -kerning first=95 second=71 amount=-2 -kerning first=76 second=84 amount=-6 -kerning first=57 second=97 amount=-1 -kerning first=80 second=34 amount=-3 -kerning first=89 second=74 amount=-6 -kerning first=70 second=87 amount=-5 -kerning first=51 second=100 amount=-1 -kerning first=117 second=101 amount=-1 -kerning first=55 second=50 amount=-1 -kerning first=92 second=117 amount=-1 -kerning first=96 second=67 amount=-2 -kerning first=86 second=120 amount=-2 -kerning first=118 second=97 amount=-1 -kerning first=56 second=46 amount=-1 -kerning first=65 second=86 amount=-6 -kerning first=93 second=113 amount=-1 -kerning first=97 second=63 amount=-2 -kerning first=59 second=89 amount=-5 -kerning first=63 second=39 amount=-3 -kerning first=44 second=52 amount=-1 -kerning first=72 second=79 amount=-2 -kerning first=100 second=106 amount=1 -kerning first=51 second=45 amount=-2 -kerning first=60 second=85 amount=-2 -kerning first=107 second=99 amount=-2 -kerning first=35 second=101 amount=-1 -kerning first=101 second=102 amount=-1 -kerning first=124 second=39 amount=-3 -kerning first=86 second=65 amount=-6 -kerning first=76 second=118 amount=-3 -kerning first=61 second=81 amount=-2 -kerning first=70 second=121 amount=-1 -kerning first=74 second=71 amount=-2 -kerning first=55 second=84 amount=-5 -kerning first=121 second=85 amount=-2 -kerning first=36 second=97 amount=-1 -kerning first=59 second=34 amount=-3 -kerning first=49 second=87 amount=-5 -kerning first=96 second=101 amount=-1 -kerning first=75 second=67 amount=-3 -kerning first=50 second=83 amount=-1 -kerning first=101 second=47 amount=-1 -kerning first=44 second=86 amount=-4 -kerning first=91 second=100 amount=-1 -kerning first=72 second=113 amount=-1 -kerning first=76 second=63 amount=-4 -kerning first=38 second=89 amount=-4 -kerning first=42 second=39 amount=-3 -kerning first=51 second=79 amount=-2 -kerning first=60 second=119 amount=-4 -kerning first=86 second=99 amount=-3 -kerning first=103 second=39 amount=-3 -kerning first=61 second=115 amount=-1 -kerning first=55 second=118 amount=-4 -kerning first=121 second=119 amount=-4 -kerning first=40 second=81 amount=-2 -kerning first=91 second=45 amount=-2 -kerning first=49 second=121 amount=-1 -kerning first=53 second=71 amount=-2 -kerning first=100 second=85 amount=-2 -kerning first=38 second=34 amount=-3 -kerning first=62 second=111 amount=-1 -kerning first=47 second=74 amount=-3 -kerning first=75 second=101 amount=-2 -kerning first=50 second=117 amount=-1 -kerning first=54 second=67 amount=-2 -kerning first=86 second=44 amount=-4 -kerning first=95 second=84 amount=-5 -kerning first=99 second=34 amount=-1 -kerning first=80 second=47 amount=-3 -kerning first=123 second=111 amount=-1 -kerning first=70 second=100 amount=-1 -kerning first=51 second=113 amount=-1 -kerning first=64 second=103 amount=-1 -kerning first=58 second=106 amount=1 -kerning first=65 second=99 amount=-1 -kerning first=78 second=89 amount=-5 -kerning first=125 second=103 amount=-1 -kerning first=40 second=115 amount=-1 -kerning first=91 second=79 amount=-2 -kerning first=57 second=55 amount=-1 -kerning first=100 second=119 amount=-4 -kerning first=70 second=45 amount=-2 -kerning first=113 second=109 amount=2 -kerning first=126 second=99 amount=-1 -kerning first=41 second=111 amount=-1 -kerning first=54 second=101 amount=-1 -kerning first=95 second=118 amount=-4 -kerning first=80 second=81 amount=-2 -kerning first=89 second=121 amount=-2 -kerning first=93 second=71 amount=-2 -kerning first=74 second=84 amount=-5 -kerning first=55 second=97 amount=-1 -kerning first=78 second=34 amount=-3 -kerning first=102 second=111 amount=-1 -kerning first=87 second=74 amount=-3 -kerning first=68 second=87 amount=-2 -kerning first=49 second=100 amount=-1 -kerning first=43 second=103 amount=-1 -kerning first=94 second=67 amount=-2 -kerning first=37 second=106 amount=1 -kerning first=84 second=120 amount=-1 -kerning first=69 second=83 amount=-1 -kerning first=54 second=46 amount=-1 -kerning first=91 second=113 amount=-1 -kerning first=57 second=89 amount=-5 -kerning first=61 second=39 amount=-3 -kerning first=70 second=79 amount=-1 -kerning first=49 second=45 amount=-2 -kerning first=58 second=85 amount=-2 -kerning first=105 second=99 amount=-1 -kerning first=86 second=112 amount=-2 -kerning first=71 second=75 amount=2 -kerning first=80 second=115 amount=-1 -kerning first=84 second=65 amount=-6 -kerning first=74 second=118 amount=-4 -kerning first=59 second=81 amount=-2 -kerning first=72 second=71 amount=-2 -kerning first=53 second=84 amount=-5 -kerning first=34 second=97 amount=-1 -kerning first=57 second=34 amount=-3 -kerning first=47 second=87 amount=-5 -kerning first=94 second=101 amount=-1 -kerning first=69 second=117 amount=-1 -kerning first=73 second=67 amount=-2 -kerning first=48 second=83 amount=-1 -kerning first=95 second=97 amount=-1 -kerning first=108 second=87 amount=-5 -kerning first=89 second=100 amount=-4 -kerning first=70 second=113 amount=-1 -kerning first=36 second=89 amount=-5 -kerning first=40 second=39 amount=-3 -kerning first=64 second=116 amount=-1 -kerning first=49 second=79 amount=-2 -kerning first=77 second=106 amount=1 -kerning first=58 second=119 amount=-4 -kerning first=37 second=85 amount=-2 -kerning first=84 second=99 amount=-3 -kerning first=101 second=39 amount=-1 -kerning first=59 second=115 amount=-1 -kerning first=125 second=116 amount=-1 -kerning first=53 second=118 amount=-4 -kerning first=38 second=81 amount=-2 -kerning first=89 second=45 amount=-4 -kerning first=47 second=121 amount=-1 -kerning first=51 second=71 amount=-2 -kerning first=36 second=34 amount=-3 -kerning first=60 second=111 amount=-1 -kerning first=73 second=101 amount=-1 -kerning first=120 second=115 amount=-1 -kerning first=48 second=117 amount=-1 -kerning first=52 second=67 amount=-2 -kerning first=84 second=44 amount=-3 -kerning first=108 second=121 amount=-1 -kerning first=93 second=84 amount=-5 -kerning first=74 second=97 amount=-1 -kerning first=97 second=34 amount=-1 -kerning first=121 second=111 amount=-1 -kerning first=49 second=113 amount=-1 -kerning first=81 second=90 amount=-1 -kerning first=62 second=103 amount=-1 -kerning first=43 second=116 amount=-1 -kerning first=113 second=67 amount=-2 -kerning first=56 second=106 amount=1 -kerning first=37 second=119 amount=-4 -kerning first=88 second=83 amount=-1 -kerning first=82 second=86 amount=-1 -kerning first=63 second=99 amount=-1 -kerning first=76 second=89 amount=-6 -kerning first=80 second=39 amount=-3 -kerning first=123 second=103 amount=-1 -kerning first=38 second=115 amount=-1 -kerning first=89 second=79 amount=-3 -kerning first=117 second=106 amount=1 -kerning first=98 second=119 amount=-1 -kerning first=77 second=85 amount=-2 -kerning first=124 second=99 amount=-1 -kerning first=39 second=111 amount=-1 -kerning first=52 second=101 amount=-1 -kerning first=75 second=38 amount=-2 -kerning first=93 second=118 amount=-4 -kerning first=78 second=81 amount=-2 -kerning first=87 second=121 amount=-1 -kerning first=91 second=71 amount=-2 -kerning first=72 second=84 amount=-5 -kerning first=53 second=97 amount=-1 -kerning first=76 second=34 amount=-3 -kerning first=100 second=111 amount=-1 -kerning first=66 second=87 amount=-1 -kerning first=47 second=100 amount=-2 -kerning first=113 second=101 amount=-1 -kerning first=41 second=103 amount=-1 -kerning first=88 second=117 amount=-1 -kerning first=92 second=67 amount=-2 -kerning first=35 second=106 amount=1 -kerning first=39 second=56 amount=-1 -kerning first=114 second=97 amount=-1 -kerning first=118 second=47 amount=-3 -kerning first=42 second=99 amount=-1 -kerning first=108 second=100 amount=-1 -kerning first=46 second=49 amount=-4 -kerning first=89 second=113 amount=-4 -kerning first=55 second=89 amount=-5 -kerning first=59 second=39 amount=-3 -kerning first=102 second=103 amount=-1 -kerning first=96 second=106 amount=1 -kerning first=77 second=119 amount=-4 -kerning first=47 second=45 amount=-1 -kerning first=113 second=46 amount=2 -kerning first=56 second=85 amount=-2 -kerning first=103 second=99 amount=-1 -kerning first=84 second=112 amount=-2 -kerning first=97 second=102 amount=-1 -kerning first=78 second=115 amount=-1 -kerning first=72 second=118 amount=-4 -kerning first=57 second=81 amount=-2 -kerning first=108 second=45 amount=-2 -kerning first=70 second=71 amount=-1 -kerning first=51 second=84 amount=-5 -kerning first=117 second=85 amount=-2 -kerning first=55 second=34 amount=-3 -kerning first=45 second=87 amount=-2 -kerning first=92 second=101 amount=-1 -kerning first=93 second=97 amount=-1 -kerning first=87 second=100 amount=-3 -kerning first=38 second=39 amount=-3 -kerning first=62 second=116 amount=-1 -kerning first=47 second=79 amount=-1 -kerning first=56 second=119 amount=-4 -kerning first=35 second=85 amount=-2 -kerning first=95 second=89 amount=-5 -kerning first=99 second=39 amount=-1 -kerning first=57 second=115 amount=-1 -kerning first=123 second=116 amount=-1 -kerning first=108 second=79 amount=-2 -kerning first=51 second=118 amount=-4 -kerning first=117 second=119 amount=-4 -kerning first=36 second=81 amount=-2 -kerning first=87 second=45 amount=-2 -kerning first=111 second=122 amount=-1 -kerning first=49 second=71 amount=-2 -kerning first=96 second=85 amount=-2 -kerning first=58 second=111 amount=-1 -kerning first=118 second=115 amount=-1 -kerning first=46 second=117 amount=-1 -kerning first=112 second=118 amount=-1 -kerning first=50 second=67 amount=-2 -kerning first=91 second=84 amount=-5 -kerning first=72 second=97 amount=-1 -kerning first=95 second=34 amount=-3 -kerning first=119 second=111 amount=-1 -kerning first=47 second=113 amount=-2 -kerning first=113 second=114 amount=2 -kerning first=79 second=90 amount=-1 -kerning first=60 second=103 amount=-1 -kerning first=41 second=116 amount=-1 -kerning first=54 second=106 amount=1 -kerning first=35 second=119 amount=-4 -kerning first=101 second=120 amount=-2 -kerning first=86 second=83 amount=-1 -kerning first=80 second=86 amount=-1 -kerning first=61 second=99 amount=-1 -kerning first=108 second=113 amount=-1 -kerning first=112 second=63 amount=-2 -kerning first=74 second=89 amount=-5 -kerning first=78 second=39 amount=-3 -kerning first=121 second=103 amount=-1 -kerning first=36 second=115 amount=-1 -kerning first=87 second=79 amount=-2 -kerning first=96 second=119 amount=-4 -kerning first=122 second=99 amount=-1 -kerning first=37 second=111 amount=-1 -kerning first=50 second=101 amount=-1 -kerning first=91 second=118 amount=-4 -kerning first=76 second=81 amount=-1 -kerning first=89 second=71 amount=-3 -kerning first=70 second=84 amount=-5 -kerning first=51 second=97 amount=-1 -kerning first=74 second=34 amount=-3 -kerning first=64 second=87 amount=-5 -kerning first=39 second=103 amount=-1 -kerning first=86 second=117 amount=-2 -kerning first=90 second=67 amount=-1 -kerning first=65 second=83 amount=-1 -kerning first=116 second=47 amount=-1 -kerning first=125 second=87 amount=-5 -kerning first=40 second=99 amount=-1 -kerning first=44 second=49 amount=-4 -kerning first=87 second=113 amount=-3 -kerning first=53 second=89 amount=-5 -kerning first=57 second=39 amount=-3 -kerning first=100 second=103 amount=-1 -kerning first=94 second=106 amount=1 -kerning first=75 second=119 amount=-3 -kerning first=126 second=83 amount=-1 -kerning first=111 second=46 amount=-1 -kerning first=54 second=85 amount=-2 -kerning first=80 second=65 amount=-4 -kerning first=70 second=118 amount=-4 -kerning first=55 second=81 amount=-2 -kerning first=64 second=121 amount=-1 -kerning first=49 second=84 amount=-5 -kerning first=53 second=34 amount=-3 -kerning first=34 second=47 amount=-2 -kerning first=77 second=111 amount=-1 -kerning first=43 second=87 amount=-5 -kerning first=90 second=101 amount=-1 -kerning first=65 second=117 amount=-1 -kerning first=69 second=67 amount=-2 -kerning first=101 second=44 amount=-1 -kerning first=125 second=121 amount=-1 -kerning first=91 second=97 amount=-1 -kerning first=38 second=86 amount=-3 -kerning first=36 second=39 amount=-3 -kerning first=60 second=116 amount=-1 -kerning first=126 second=117 amount=-1 -kerning first=73 second=106 amount=1 -kerning first=54 second=119 amount=-4 -kerning first=105 second=83 amount=-1 -kerning first=80 second=99 amount=-1 -kerning first=93 second=89 amount=-5 -kerning first=97 second=39 amount=-1 -kerning first=55 second=115 amount=-1 -kerning first=121 second=116 amount=-1 -kerning first=49 second=118 amount=-4 -kerning first=115 second=119 amount=-1 -kerning first=43 second=121 amount=-1 -kerning first=47 second=71 amount=-1 -kerning first=94 second=85 amount=-2 -kerning first=56 second=111 amount=-1 -kerning first=69 second=101 amount=-1 -kerning first=44 second=117 amount=-1 -kerning first=110 second=118 amount=-1 -kerning first=48 second=67 amount=-2 -kerning first=95 second=81 amount=-2 -kerning first=80 second=44 amount=-4 -kerning first=38 second=120 amount=-2 -kerning first=108 second=71 amount=-2 -kerning first=70 second=97 amount=-1 -kerning first=93 second=34 amount=-3 -kerning first=74 second=47 amount=-1 -kerning first=117 second=111 amount=-1 -kerning first=83 second=87 amount=-2 -kerning first=64 second=100 amount=-1 -kerning first=58 second=103 amount=-1 -kerning first=105 second=117 amount=-1 -kerning first=52 second=106 amount=1 -kerning first=99 second=120 amount=-1 -kerning first=84 second=83 amount=-1 -kerning first=59 second=99 amount=-1 -kerning first=125 second=100 amount=-1 -kerning first=110 second=63 amount=-2 -kerning first=72 second=89 amount=-5 -kerning first=76 second=39 amount=-3 -kerning first=119 second=103 amount=-1 -kerning first=34 second=115 amount=-1 -kerning first=100 second=116 amount=-1 -kerning first=38 second=65 amount=-1 -kerning first=113 second=106 amount=11 -kerning first=51 second=55 amount=-1 -kerning first=94 second=119 amount=-4 -kerning first=64 second=45 amount=-2 -kerning first=73 second=85 amount=-2 -kerning first=120 second=99 amount=-2 -kerning first=35 second=111 amount=-1 -kerning first=67 second=88 amount=-2 -kerning first=48 second=101 amount=-1 -kerning first=95 second=115 amount=-1 -kerning first=46 second=54 amount=-1 -kerning first=89 second=118 amount=-2 -kerning first=74 second=81 amount=-2 -kerning first=125 second=45 amount=-2 -kerning first=87 second=71 amount=-2 -kerning first=68 second=84 amount=-2 -kerning first=49 second=97 amount=-1 -kerning first=72 second=34 amount=-3 -kerning first=96 second=111 amount=-1 -kerning first=62 second=87 amount=-5 -kerning first=43 second=100 amount=-1 -kerning first=37 second=103 amount=-1 -kerning first=84 second=117 amount=-2 -kerning first=88 second=67 amount=-3 -kerning first=63 second=83 amount=-1 -kerning first=48 second=46 amount=-1 -kerning first=114 second=47 amount=-2 -kerning first=123 second=87 amount=-5 -kerning first=38 second=99 amount=-1 -kerning first=89 second=63 amount=-1 -kerning first=51 second=89 amount=-5 -kerning first=55 second=39 amount=-3 -kerning first=64 second=79 amount=-2 -kerning first=92 second=106 amount=1 -kerning first=73 second=119 amount=-4 -kerning first=124 second=83 amount=-1 -kerning first=43 second=45 amount=-2 -kerning first=86 second=109 amount=-2 -kerning first=52 second=85 amount=-2 -kerning first=74 second=115 amount=-1 -kerning first=125 second=79 amount=-2 -kerning first=53 second=81 amount=-2 -kerning first=62 second=121 amount=-1 -kerning first=47 second=84 amount=-5 -kerning first=113 second=85 amount=-2 -kerning first=51 second=34 amount=-3 -kerning first=75 second=111 amount=-2 -kerning first=41 second=87 amount=-5 -kerning first=88 second=101 amount=-2 -kerning first=63 second=117 amount=-1 -kerning first=123 second=121 amount=-1 -kerning first=42 second=83 amount=-1 -kerning first=108 second=84 amount=-5 -kerning first=89 second=97 amount=-4 -kerning first=112 second=34 amount=-1 -kerning first=70 second=110 amount=-1 -kerning first=64 second=113 amount=-1 -kerning first=77 second=103 amount=-1 -kerning first=58 second=116 amount=-1 -kerning first=124 second=117 amount=-1 -kerning first=43 second=79 amount=-2 -kerning first=71 second=106 amount=2 -kerning first=52 second=119 amount=-4 -kerning first=103 second=83 amount=-1 -kerning first=78 second=99 amount=-1 -kerning first=125 second=113 amount=-1 -kerning first=91 second=89 amount=-5 -kerning first=95 second=39 amount=-3 -kerning first=53 second=115 amount=-1 -kerning first=47 second=118 amount=-4 -kerning first=113 second=119 amount=-4 -kerning first=41 second=121 amount=-1 -kerning first=92 second=85 amount=-2 -kerning first=54 second=111 amount=-1 -kerning first=39 second=74 amount=-4 -kerning first=114 second=115 amount=-1 -kerning first=42 second=117 amount=-1 -kerning first=108 second=118 amount=-4 -kerning first=46 second=67 amount=-1 -kerning first=93 second=81 amount=-2 -kerning first=91 second=34 amount=-3 -kerning first=81 second=87 amount=-2 -kerning first=62 second=100 amount=-1 -kerning first=43 second=113 amount=-1 -kerning first=56 second=103 amount=-1 -kerning first=37 second=116 amount=-1 -kerning first=103 second=117 amount=-1 -kerning first=50 second=106 amount=1 -kerning first=67 second=46 amount=-1 -kerning first=76 second=86 amount=-5 -kerning first=57 second=99 amount=-1 -kerning first=123 second=100 amount=-1 -kerning first=70 second=89 amount=-5 -kerning first=74 second=39 amount=-3 -kerning first=117 second=103 amount=-1 -kerning first=55 second=52 amount=-4 -kerning first=92 second=119 amount=-4 -kerning first=62 second=45 amount=-2 -kerning first=86 second=122 amount=-2 -kerning first=118 second=99 amount=-1 -kerning first=112 second=102 amount=-1 -kerning first=93 second=115 amount=-1 -kerning first=44 second=54 amount=-1 -kerning first=87 second=118 amount=-1 -kerning first=72 second=81 amount=-2 -kerning first=57 second=44 amount=-1 -kerning first=123 second=45 amount=-2 -kerning first=66 second=84 amount=-1 -kerning first=47 second=97 amount=-2 -kerning first=70 second=34 amount=-3 -kerning first=94 second=111 amount=-1 -kerning first=60 second=87 amount=-5 -kerning first=41 second=100 amount=-1 -kerning first=107 second=101 amount=-2 -kerning first=45 second=50 amount=-2 -kerning first=35 second=103 amount=-1 -kerning first=86 second=67 amount=-2 -kerning first=118 second=44 amount=-2 -kerning first=61 second=83 amount=-1 -kerning first=108 second=97 amount=-1 -kerning first=89 second=110 amount=-3 -kerning first=112 second=47 amount=-1 -kerning first=121 second=87 amount=-5 -kerning first=36 second=99 amount=-1 -kerning first=102 second=100 amount=-1 -kerning first=87 second=63 amount=-1 -kerning first=49 second=89 amount=-5 -kerning first=53 second=39 amount=-3 -kerning first=96 second=103 amount=-1 -kerning first=34 second=52 amount=-1 -kerning first=77 second=116 amount=-1 -kerning first=62 second=79 amount=-2 -kerning first=41 second=45 amount=-2 -kerning first=84 second=109 amount=-2 -kerning first=50 second=85 amount=-2 -kerning first=72 second=115 amount=-1 -kerning first=123 second=79 amount=-2 -kerning first=51 second=81 amount=-2 -kerning first=102 second=45 amount=-2 -kerning first=60 second=121 amount=-1 -kerning first=64 second=71 amount=-2 -kerning first=45 second=84 amount=-4 -kerning first=49 second=34 amount=-3 -kerning first=73 second=111 amount=-1 -kerning first=86 second=101 amount=-3 -kerning first=61 second=117 amount=-1 -kerning first=65 second=67 amount=-2 -kerning first=121 second=121 amount=-1 -kerning first=125 second=71 amount=-2 -kerning first=40 second=83 amount=-1 -kerning first=87 second=97 amount=-2 -kerning first=110 second=34 amount=-1 -kerning first=100 second=87 amount=-5 -kerning first=62 second=113 amount=-1 -kerning first=75 second=103 amount=-1 -kerning first=56 second=116 amount=-1 -kerning first=126 second=67 amount=-2 -kerning first=41 second=79 amount=-2 -kerning first=69 second=106 amount=1 -kerning first=50 second=119 amount=-4 -kerning first=86 second=46 amount=-4 -kerning first=76 second=99 amount=-1 -kerning first=123 second=113 amount=-1 -kerning first=93 second=39 amount=-3 -kerning first=51 second=115 amount=-1 -kerning first=117 second=116 amount=-1 -kerning first=55 second=65 amount=-5 -kerning first=45 second=118 amount=-1 -kerning first=111 second=119 amount=-1 -kerning first=43 second=71 amount=-2 -kerning first=52 second=111 amount=-1 -kerning first=65 second=101 amount=-1 -kerning first=88 second=38 amount=-2 -kerning first=40 second=117 amount=-1 -kerning first=44 second=67 amount=-1 -kerning first=91 second=81 amount=-2 -kerning first=100 second=121 amount=-1 -kerning first=47 second=110 amount=-1 -kerning first=70 second=47 amount=-2 -kerning first=113 second=111 amount=-1 -kerning first=79 second=87 amount=-2 -kerning first=60 second=100 amount=-1 -kerning first=126 second=101 amount=-1 -kerning first=41 second=113 amount=-1 -kerning first=54 second=103 amount=-1 -kerning first=35 second=116 amount=-1 -kerning first=105 second=67 amount=-2 -kerning first=48 second=106 amount=1 -kerning first=80 second=83 amount=-1 -kerning first=55 second=99 amount=-1 -kerning first=121 second=100 amount=-1 -kerning first=102 second=113 amount=-1 -kerning first=68 second=89 amount=-3 -kerning first=72 second=39 amount=-3 -kerning first=96 second=116 amount=-1 -kerning first=34 second=65 amount=-3 -kerning first=109 second=106 amount=1 -kerning first=60 second=45 amount=-2 -kerning first=84 second=122 amount=-1 -kerning first=69 second=85 amount=-2 -kerning first=110 second=102 amount=-1 -kerning first=91 second=115 amount=-1 -kerning first=70 second=81 amount=-1 -kerning first=55 second=44 amount=-4 -kerning first=121 second=45 amount=-2 -kerning first=64 second=84 amount=-5 -kerning first=92 second=111 amount=-1 -kerning first=58 second=87 amount=-5 -kerning first=39 second=100 amount=-1 -kerning first=105 second=101 amount=-1 -kerning first=86 second=114 amount=-2 -kerning first=80 second=117 amount=-1 -kerning first=84 second=67 amount=-1 -kerning first=116 second=44 amount=-1 -kerning first=59 second=83 amount=-1 -kerning first=125 second=84 amount=-5 -kerning first=87 second=110 amount=-2 -kerning first=34 second=99 amount=-1 -kerning first=100 second=100 amount=-1 -kerning first=47 second=89 amount=-5 -kerning first=51 second=39 amount=-3 -kerning first=94 second=103 amount=-1 -kerning first=75 second=116 amount=-1 -kerning first=60 second=79 amount=-2 -kerning first=69 second=119 amount=-4 -kerning first=48 second=85 amount=-2 -kerning first=95 second=99 amount=-1 -kerning first=108 second=89 amount=-5 -kerning first=112 second=39 amount=-1 -kerning first=70 second=115 amount=-1 -kerning first=74 second=65 amount=-1 -kerning first=121 second=79 amount=-2 -kerning first=64 second=118 amount=-4 -kerning first=49 second=81 amount=-2 -kerning first=34 second=44 amount=-1 -kerning first=100 second=45 amount=-2 -kerning first=58 second=121 amount=-1 -kerning first=62 second=71 amount=-2 -kerning first=43 second=84 amount=-5 -kerning first=47 second=34 amount=-3 -kerning first=37 second=87 amount=-5 -kerning first=84 second=101 amount=-3 -kerning first=59 second=117 amount=-1 -kerning first=125 second=118 amount=-4 -kerning first=63 second=67 amount=-2 -kerning first=123 second=71 amount=-2 -kerning first=38 second=83 amount=-1 -kerning first=108 second=34 amount=-3 -kerning first=89 second=47 amount=-4 -kerning first=60 second=113 amount=-1 -kerning first=73 second=103 amount=-1 -kerning first=54 second=116 amount=-1 -kerning first=124 second=67 amount=-2 -kerning first=67 second=106 amount=1 -kerning first=48 second=119 amount=-4 -kerning first=84 second=46 amount=-3 -kerning first=74 second=99 amount=-1 -kerning first=121 second=113 amount=-1 -kerning first=91 second=39 amount=-3 -kerning first=49 second=115 amount=-1 -kerning first=100 second=79 amount=-2 -kerning first=43 second=118 amount=-4 -kerning first=109 second=119 amount=-1 -kerning first=37 second=121 amount=-1 -kerning first=41 second=71 amount=-2 -kerning first=50 second=111 amount=-1 -kerning first=63 second=101 amount=-1 -kerning first=86 second=38 amount=-1 -kerning first=38 second=117 amount=-1 -kerning first=104 second=118 amount=-1 -kerning first=42 second=67 amount=-2 -kerning first=89 second=81 amount=-3 -kerning first=74 second=44 amount=-1 -kerning first=55 second=57 amount=-1 -kerning first=83 second=84 amount=-1 -kerning first=64 second=97 amount=-1 -kerning first=68 second=47 amount=-1 -kerning first=77 second=87 amount=-5 -kerning first=58 second=100 amount=-1 -kerning first=124 second=101 amount=-1 -kerning first=39 second=113 amount=-1 -kerning first=52 second=103 amount=-1 -kerning first=103 second=67 amount=-2 -kerning first=46 second=106 amount=2 -kerning first=78 second=83 amount=-1 -kerning first=125 second=97 amount=-1 -kerning first=53 second=99 amount=-1 -kerning first=119 second=100 amount=-1 -kerning first=100 second=113 amount=-1 -kerning first=104 second=63 amount=-2 -kerning first=66 second=89 amount=-2 -kerning first=47 second=102 amount=-1 -kerning first=70 second=39 amount=-3 -kerning first=113 second=103 amount=3 -kerning first=94 second=116 amount=-1 -kerning first=107 second=106 amount=1 -kerning first=45 second=55 amount=-3 -kerning first=88 second=119 amount=-3 -kerning first=58 second=45 amount=-2 -kerning first=114 second=99 amount=-1 -kerning first=42 second=101 amount=-1 -kerning first=65 second=38 amount=-1 -kerning first=46 second=51 amount=-1 -kerning first=89 second=115 amount=-3 -kerning first=83 second=118 amount=-1 -kerning first=53 second=44 amount=-1 -kerning first=119 second=45 amount=-1 -kerning first=77 second=121 amount=-1 -kerning first=62 second=84 amount=-5 -kerning first=43 second=97 amount=-1 -kerning first=90 second=111 amount=-1 -kerning first=75 second=74 amount=-1 -kerning first=56 second=87 amount=-5 -kerning first=37 second=100 amount=-1 -kerning first=103 second=101 amount=-1 -kerning first=84 second=114 amount=-2 -kerning first=78 second=117 amount=-1 -kerning first=114 second=44 amount=-3 -kerning first=57 second=83 amount=-1 -kerning first=123 second=84 amount=-5 -kerning first=117 second=87 amount=-5 -kerning first=45 second=89 amount=-4 -kerning first=49 second=39 amount=-3 -kerning first=92 second=103 amount=-1 -kerning first=73 second=116 amount=-1 -kerning first=58 second=79 amount=-2 -kerning first=86 second=106 amount=1 -kerning first=37 second=45 amount=-2 -kerning first=46 second=85 amount=-1 -kerning first=93 second=99 amount=-1 -kerning first=87 second=102 amount=-1 -kerning first=110 second=39 amount=-1 -kerning first=62 second=118 amount=-4 -kerning first=47 second=81 amount=-1 -kerning first=56 second=121 amount=-1 -kerning first=60 second=71 amount=-2 -kerning first=41 second=84 amount=-5 -kerning first=69 second=111 amount=-1 -kerning first=35 second=87 amount=-5 -kerning first=57 second=117 amount=-1 -kerning first=123 second=118 amount=-4 -kerning first=61 second=67 amount=-2 -kerning first=108 second=81 amount=-2 -kerning first=117 second=121 amount=-1 -kerning first=121 second=71 amount=-2 -kerning first=36 second=83 amount=-1 -kerning first=87 second=47 amount=-3 -kerning first=96 second=87 amount=-5 -kerning first=77 second=100 amount=-1 -kerning first=58 second=113 amount=-1 -kerning first=90 second=90 amount=1 -kerning first=52 second=116 amount=-1 -kerning first=37 second=79 amount=-2 -kerning first=65 second=106 amount=1 -kerning first=46 second=119 amount=-2 -kerning first=112 second=120 amount=-2 -kerning first=72 second=99 amount=-1 -kerning first=119 second=113 amount=-1 -kerning first=47 second=115 amount=-2 -kerning first=113 second=116 amount=-1 -kerning first=126 second=106 amount=1 -kerning first=41 second=118 amount=-4 -kerning first=77 second=45 amount=-2 -kerning first=35 second=121 amount=-1 -kerning first=101 second=122 amount=-1 -kerning first=86 second=85 amount=-2 -kerning first=48 second=111 amount=-1 -kerning first=80 second=88 amount=-2 -kerning first=61 second=101 amount=-1 -kerning first=108 second=115 amount=-1 -kerning first=36 second=117 amount=-1 -kerning first=40 second=67 amount=-2 -kerning first=87 second=81 amount=-2 -kerning first=96 second=121 amount=-1 -kerning first=100 second=71 amount=-2 -kerning first=81 second=84 amount=-2 -kerning first=62 second=97 amount=-1 -kerning first=56 second=100 amount=-1 -kerning first=122 second=101 amount=-1 -kerning first=37 second=113 amount=-1 -kerning first=50 second=103 amount=-1 -kerning first=44 second=106 amount=2 -kerning first=123 second=97 amount=-1 -kerning first=51 second=99 amount=-1 -kerning first=117 second=100 amount=-1 -kerning first=64 second=89 amount=-5 -kerning first=45 second=102 amount=-2 -kerning first=92 second=116 amount=-1 -kerning first=77 second=79 amount=-2 -kerning first=105 second=106 amount=1 -kerning first=86 second=119 amount=-1 -kerning first=56 second=45 amount=-2 -kerning first=65 second=85 amount=-2 -kerning first=125 second=89 amount=-5 -kerning first=40 second=101 amount=-1 -kerning first=44 second=51 amount=-1 -kerning first=87 second=115 amount=-2 -kerning first=51 second=44 amount=-1 -kerning first=117 second=45 amount=-2 -kerning first=75 second=121 amount=-2 -kerning first=60 second=84 amount=-5 -kerning first=126 second=85 amount=-2 -kerning first=41 second=97 amount=-1 -kerning first=64 second=34 amount=-3 -kerning first=45 second=47 amount=-1 -kerning first=88 second=111 amount=-2 -kerning first=54 second=87 amount=-5 -kerning first=35 second=100 amount=-1 -kerning first=76 second=117 amount=-1 -kerning first=80 second=67 amount=-2 -kerning first=112 second=44 amount=-1 -kerning first=55 second=83 amount=-1 -kerning first=121 second=84 amount=-5 -kerning first=102 second=97 amount=-1 -kerning first=125 second=34 amount=-3 -kerning first=96 second=100 amount=-1 -kerning first=77 second=113 amount=-1 -kerning first=43 second=89 amount=-5 -kerning first=47 second=39 amount=-3 -kerning first=56 second=79 amount=-2 -kerning first=65 second=119 amount=-4 -kerning first=35 second=45 amount=-2 -kerning first=101 second=46 amount=-1 -kerning first=44 second=85 amount=-1 -kerning first=91 second=99 amount=-1 -kerning first=38 second=88 amount=-2 -kerning first=108 second=39 amount=-3 -kerning first=70 second=65 amount=-4 -kerning first=117 second=79 amount=-2 -kerning first=60 second=118 amount=-4 -kerning first=126 second=119 amount=-4 -kerning first=96 second=45 amount=-2 -kerning first=54 second=121 amount=-1 -kerning first=58 second=71 amount=-2 -kerning first=105 second=85 amount=-2 -kerning first=43 second=34 amount=-3 -kerning first=80 second=101 amount=-1 -kerning first=55 second=117 amount=-1 -kerning first=121 second=118 amount=-4 -kerning first=59 second=67 amount=-2 -kerning first=100 second=84 amount=-5 -kerning first=104 second=34 amount=-1 -kerning first=94 second=87 amount=-5 -kerning first=75 second=100 amount=-2 -kerning first=56 second=113 amount=-1 -kerning first=69 second=103 amount=-1 -kerning first=50 second=116 amount=-1 -kerning first=35 second=79 amount=-2 -kerning first=63 second=106 amount=1 -kerning first=44 second=119 amount=-2 -kerning first=95 second=83 amount=-1 -kerning first=80 second=46 amount=-4 -kerning first=70 second=99 amount=-1 -kerning first=117 second=113 amount=-1 -kerning first=83 second=89 amount=-2 -kerning first=96 second=79 amount=-2 -kerning first=124 second=106 amount=1 -kerning first=105 second=119 amount=-4 -kerning first=75 second=45 amount=-4 -kerning first=37 second=71 amount=-2 -kerning first=59 second=101 amount=-1 -kerning first=100 second=118 amount=-4 -kerning first=38 second=67 amount=-2 -kerning first=70 second=44 amount=-4 -kerning first=113 second=108 amount=2 -kerning first=94 second=121 amount=-1 -kerning first=79 second=84 amount=-2 -kerning first=60 second=97 amount=-1 -kerning first=107 second=111 amount=-2 -kerning first=73 second=87 amount=-5 -kerning first=54 second=100 amount=-1 -kerning first=120 second=101 amount=-2 -kerning first=35 second=113 amount=-1 -kerning first=67 second=90 amount=-1 -kerning first=48 second=103 amount=-1 -kerning first=95 second=117 amount=-1 -kerning first=42 second=106 amount=1 -kerning first=46 second=56 amount=-1 -kerning first=89 second=120 amount=-2 -kerning first=74 second=83 amount=-1 -kerning first=121 second=97 amount=-1 -kerning first=68 second=86 amount=-2 -kerning first=49 second=99 amount=-1 -kerning first=96 second=113 amount=-1 -kerning first=62 second=89 amount=-5 -kerning first=75 second=79 amount=-3 -kerning first=103 second=106 amount=7 -kerning first=84 second=119 amount=-2 -kerning first=54 second=45 amount=-2 -kerning first=63 second=85 amount=-2 -kerning first=123 second=89 amount=-5 -kerning first=38 second=101 amount=-1 -kerning first=104 second=102 amount=-1 -kerning first=89 second=65 amount=-5 -kerning first=64 second=81 amount=-2 -kerning first=73 second=121 amount=-1 -kerning first=77 second=71 amount=-2 -kerning first=58 second=84 amount=-5 -kerning first=124 second=85 amount=-2 -kerning first=39 second=97 amount=-1 -kerning first=62 second=34 amount=-3 -kerning first=86 second=111 amount=-3 -kerning first=52 second=87 amount=-5 -kerning first=74 second=117 amount=-1 -kerning first=78 second=67 amount=-2 -kerning first=125 second=81 amount=-2 -kerning first=53 second=83 amount=-1 -kerning first=100 second=97 amount=-1 -kerning first=123 second=34 amount=-3 -kerning first=113 second=87 amount=-5 -kerning first=94 second=100 amount=-1 -kerning first=75 second=113 amount=-2 -kerning first=41 second=89 amount=-5 -kerning first=69 second=116 amount=-1 -kerning first=54 second=79 amount=-2 -kerning first=82 second=106 amount=2 -kerning first=63 second=119 amount=-4 -kerning first=42 second=85 amount=-2 -kerning first=89 second=99 amount=-4 -kerning first=70 second=112 amount=-1 -kerning first=64 second=115 amount=-1 -kerning first=68 second=65 amount=-2 -kerning first=58 second=118 amount=-4 -kerning first=124 second=119 amount=-4 -kerning first=43 second=81 amount=-2 -kerning first=94 second=45 amount=-2 -kerning first=52 second=121 amount=-1 -kerning first=56 second=71 amount=-2 -kerning first=37 second=84 amount=-5 -kerning first=103 second=85 amount=-2 -kerning first=41 second=34 amount=-3 -kerning first=65 second=111 amount=-1 -kerning first=78 second=101 amount=-1 -kerning first=125 second=115 amount=-1 -kerning first=53 second=117 amount=-1 -kerning first=57 second=67 amount=-2 -kerning first=89 second=44 amount=-4 -kerning first=47 second=120 amount=-1 -kerning first=113 second=121 amount=2 -kerning first=117 second=71 amount=-2 -kerning first=126 second=111 amount=-1 -kerning first=92 second=87 amount=-5 -kerning first=73 second=100 amount=-1 -kerning first=54 second=113 amount=-1 -kerning first=48 second=116 amount=-1 -kerning first=61 second=106 amount=1 -kerning first=42 second=119 amount=-4 -kerning first=93 second=83 amount=-1 -kerning first=81 second=89 amount=-3 -kerning first=43 second=115 amount=-1 -kerning first=47 second=65 amount=-5 -kerning first=94 second=79 amount=-2 -kerning first=37 second=118 amount=-4 -kerning first=103 second=119 amount=-4 -kerning first=73 second=45 amount=-2 -kerning first=35 second=71 amount=-2 -kerning first=57 second=101 amount=-1 -kerning first=55 second=54 amount=-1 -kerning first=98 second=118 amount=-1 -kerning first=36 second=67 amount=-2 -kerning first=68 second=44 amount=-1 -kerning first=92 second=121 amount=-1 -kerning first=96 second=71 amount=-2 -kerning first=77 second=84 amount=-5 -kerning first=58 second=97 amount=-1 -kerning first=105 second=111 amount=-1 -kerning first=71 second=87 amount=-1 -kerning first=52 second=100 amount=-1 -kerning first=118 second=101 amount=-1 -kerning first=46 second=103 amount=-1 -kerning first=93 second=117 amount=-1 -kerning first=40 second=106 amount=7 -kerning first=44 second=56 amount=-1 -kerning first=87 second=120 amount=-1 -kerning first=72 second=83 amount=-1 -kerning first=119 second=97 amount=-1 -kerning first=57 second=46 amount=-1 -kerning first=66 second=86 amount=-1 -kerning first=47 second=99 amount=-2 -kerning first=113 second=100 amount=-1 -kerning first=94 second=113 amount=-1 -kerning first=98 second=63 amount=-2 -kerning first=60 second=89 amount=-5 -kerning first=64 second=39 amount=-3 -kerning first=107 second=103 amount=-2 -kerning first=88 second=116 amount=-1 -kerning first=73 second=79 amount=-2 -kerning first=52 second=45 amount=-2 -kerning first=118 second=46 amount=-2 -kerning first=61 second=85 amount=-2 -kerning first=108 second=99 amount=-1 -kerning first=46 second=48 amount=-1 -kerning first=89 second=112 amount=-3 -kerning first=121 second=89 amount=-5 -kerning first=36 second=101 amount=-1 -kerning first=125 second=39 amount=-3 -kerning first=87 second=65 amount=-5 -kerning first=77 second=118 amount=-4 -kerning first=62 second=81 amount=-2 -kerning first=47 second=44 amount=-4 -kerning first=113 second=45 amount=-2 -kerning first=75 second=71 amount=-3 -kerning first=56 second=84 amount=-5 -kerning first=37 second=97 amount=-1 -kerning first=60 second=34 amount=-3 -kerning first=84 second=111 amount=-3 -kerning first=50 second=87 amount=-5 -kerning first=72 second=117 amount=-1 -kerning first=76 second=67 amount=-1 -kerning first=123 second=81 amount=-2 -kerning first=51 second=83 amount=-1 -kerning first=117 second=84 amount=-5 -kerning first=121 second=34 amount=-3 -kerning first=45 second=86 amount=-3 -kerning first=92 second=100 amount=-1 -kerning first=73 second=113 amount=-1 -kerning first=43 second=39 amount=-3 -kerning first=86 second=103 amount=-3 -kerning first=52 second=79 amount=-2 -kerning first=80 second=106 amount=1 -kerning first=61 second=119 amount=-4 -kerning first=40 second=85 amount=-2 -kerning first=87 second=99 amount=-3 -kerning first=100 second=89 amount=-5 -kerning first=104 second=39 amount=-1 -kerning first=62 second=115 amount=-1 -kerning first=66 second=65 amount=-1 -kerning first=113 second=79 amount=-2 -kerning first=56 second=118 amount=-4 -kerning first=41 second=81 amount=-2 -kerning first=92 second=45 amount=-2 -kerning first=50 second=121 amount=-1 -kerning first=54 second=71 amount=-2 -kerning first=35 second=84 amount=-5 -kerning first=63 second=111 amount=-1 -kerning first=76 second=101 amount=-1 -kerning first=123 second=115 amount=-1 -kerning first=51 second=117 amount=-1 -kerning first=117 second=118 amount=-4 -kerning first=55 second=67 amount=-2 -kerning first=87 second=44 amount=-3 -kerning first=45 second=120 amount=-2 -kerning first=96 second=84 amount=-5 -kerning first=77 second=97 amount=-1 -kerning first=100 second=34 amount=-3 -kerning first=81 second=47 amount=-1 -kerning first=124 second=111 amount=-1 -kerning first=52 second=113 amount=-1 -kerning first=65 second=103 amount=-1 -kerning first=46 second=116 amount=-1 -kerning first=59 second=106 amount=1 -kerning first=40 second=119 amount=-4 -kerning first=91 second=83 amount=-1 -kerning first=47 second=112 amount=-1 -kerning first=113 second=113 amount=-1 -kerning first=79 second=89 amount=-3 -kerning first=126 second=103 amount=-1 -kerning first=41 second=115 amount=-1 -kerning first=45 second=65 amount=-2 -kerning first=92 second=79 amount=-2 -kerning first=35 second=118 amount=-4 -kerning first=101 second=119 amount=-1 -kerning first=80 second=85 amount=-2 -kerning first=42 second=111 amount=-1 -kerning first=55 second=101 amount=-1 -kerning first=102 second=115 amount=-1 -kerning first=96 second=118 amount=-4 -kerning first=94 second=71 amount=-2 -kerning first=56 second=97 amount=-1 -kerning first=103 second=111 amount=-1 -kerning first=88 second=74 amount=-1 -kerning first=69 second=87 amount=-5 -kerning first=50 second=100 amount=-1 -kerning first=44 second=103 amount=-1 -kerning first=91 second=117 amount=-1 -kerning first=95 second=67 amount=-2 -kerning first=38 second=106 amount=1 -kerning first=70 second=83 amount=-1 -kerning first=117 second=97 amount=-1 -kerning first=55 second=46 amount=-4 -kerning first=92 second=113 amount=-1 -kerning first=58 second=89 amount=-5 -kerning first=62 second=39 amount=-3 -kerning first=105 second=103 amount=-1 -kerning first=86 second=116 amount=-1 -kerning first=80 second=119 amount=-4 -kerning first=50 second=45 amount=-1 -kerning first=116 second=46 amount=-1 -kerning first=59 second=85 amount=-2 -kerning first=44 second=48 amount=-1 -kerning first=87 second=112 amount=-2 -kerning first=34 second=101 amount=-1 -kerning first=123 second=39 amount=-3 -kerning first=85 second=65 amount=-2 -kerning first=75 second=118 amount=-3 -kerning first=60 second=81 amount=-2 -kerning first=45 second=44 amount=-1 -kerning first=69 second=121 amount=-1 -kerning first=73 second=71 amount=-2 -kerning first=54 second=84 amount=-5 -kerning first=35 second=97 amount=-1 -kerning first=58 second=34 amount=-3 -kerning first=39 second=47 amount=-2 -kerning first=48 second=87 amount=-5 -kerning first=95 second=101 amount=-1 -kerning first=70 second=117 amount=-1 -kerning first=74 second=67 amount=-2 -kerning first=121 second=81 amount=-2 -kerning first=49 second=83 amount=-1 -kerning first=96 second=97 amount=-1 -kerning first=34 second=46 amount=-1 -kerning first=90 second=100 amount=-1 -kerning first=75 second=63 amount=-2 -kerning first=37 second=89 amount=-5 -kerning first=41 second=39 amount=-3 -kerning first=84 second=103 amount=-2 -kerning first=65 second=116 amount=-1 -kerning first=50 second=79 amount=-2 -kerning first=78 second=106 amount=1 -kerning first=59 second=119 amount=-4 -kerning first=38 second=85 amount=-2 -kerning first=60 second=115 amount=-1 -kerning first=126 second=116 amount=-1 -kerning first=54 second=118 amount=-4 -kerning first=90 second=45 amount=-3 -kerning first=48 second=121 amount=-1 -kerning first=52 second=71 amount=-2 -kerning first=37 second=34 amount=-3 -kerning first=61 second=111 amount=-1 -kerning first=74 second=101 amount=-1 -kerning first=121 second=115 amount=-1 -kerning first=49 second=117 amount=-1 -kerning first=115 second=118 amount=-1 -kerning first=53 second=67 amount=-2 -kerning first=100 second=81 amount=-2 -kerning first=85 second=44 amount=-1 -kerning first=113 second=71 amount=-2 -kerning first=94 second=84 amount=-5 -kerning first=75 second=97 amount=-1 -kerning first=98 second=34 amount=-1 -kerning first=79 second=47 amount=-1 -kerning first=122 second=111 amount=-1 -kerning first=69 second=100 amount=-1 -kerning first=50 second=113 amount=-1 -kerning first=63 second=103 amount=-1 -kerning first=44 second=116 amount=-1 -kerning first=57 second=106 amount=1 -kerning first=38 second=119 amount=-1 -kerning first=89 second=83 amount=-1 -kerning first=74 second=46 amount=-1 -kerning first=83 second=86 amount=-2 -kerning first=64 second=99 amount=-1 -kerning first=115 second=63 amount=-2 -kerning first=77 second=89 amount=-5 -kerning first=124 second=103 amount=-1 -kerning first=39 second=115 amount=-1 -kerning first=105 second=116 amount=-1 -kerning first=90 second=79 amount=-1 -kerning first=56 second=55 amount=-1 -kerning first=99 second=119 amount=-1 -kerning first=69 second=45 amount=-2 -kerning first=78 second=85 amount=-2 -kerning first=125 second=99 amount=-1 -kerning first=40 second=111 amount=-1 -kerning first=53 second=101 amount=-1 -kerning first=100 second=115 amount=-1 -kerning first=94 second=118 amount=-4 -kerning first=88 second=121 amount=-1 -kerning first=92 second=71 amount=-2 -kerning first=73 second=84 amount=-5 -kerning first=54 second=97 amount=-1 -kerning first=77 second=34 amount=-3 -kerning first=86 second=74 amount=-4 -kerning first=67 second=87 amount=-1 -kerning first=48 second=100 amount=-1 -kerning first=114 second=101 amount=-1 -kerning first=42 second=103 amount=-1 -kerning first=46 second=53 amount=-1 -kerning first=89 second=117 amount=-2 -kerning first=93 second=67 amount=-2 -kerning first=36 second=106 amount=1 -kerning first=83 second=120 amount=-1 -kerning first=53 second=46 amount=-1 -kerning first=119 second=47 amount=-3 -kerning first=43 second=99 amount=-1 -kerning first=90 second=113 amount=-1 -kerning first=56 second=89 amount=-5 -kerning first=60 second=39 amount=-3 -kerning first=103 second=103 amount=-1 -kerning first=69 second=79 amount=-2 -kerning first=97 second=106 amount=1 -kerning first=78 second=119 amount=-4 -kerning first=48 second=45 amount=-2 -kerning first=114 second=46 amount=-3 -kerning first=57 second=85 amount=-2 -kerning first=117 second=89 amount=-5 -kerning first=98 second=102 amount=-1 -kerning first=121 second=39 amount=-3 -kerning first=83 second=65 amount=-1 -kerning first=73 second=118 amount=-4 -kerning first=58 second=81 amount=-2 -kerning first=52 second=84 amount=-5 -kerning first=56 second=34 amount=-3 -kerning first=80 second=111 amount=-1 -kerning first=65 second=74 amount=-1 -kerning first=46 second=87 amount=-3 -kerning first=93 second=101 amount=-1 -kerning first=72 second=67 amount=-2 -kerning first=47 second=83 amount=-1 -kerning first=113 second=84 amount=-5 -kerning first=94 second=97 amount=-1 -kerning first=117 second=34 amount=-3 -kerning first=98 second=47 amount=-1 -kerning first=88 second=100 amount=-2 -kerning first=69 second=113 amount=-1 -kerning first=35 second=89 amount=-5 -kerning first=63 second=116 amount=-1 -kerning first=48 second=79 amount=-2 -kerning first=57 second=119 amount=-4 -kerning first=108 second=83 amount=-1 -kerning first=70 second=109 amount=-1 -kerning first=36 second=85 amount=-2 -kerning first=96 second=89 amount=-5 -kerning first=100 second=39 amount=-3 -kerning first=58 second=115 amount=-1 -kerning first=124 second=116 amount=-1 -kerning first=52 second=118 amount=-4 -kerning first=37 second=81 amount=-2 -kerning first=88 second=45 amount=-3 -kerning first=46 second=121 amount=-1 -kerning first=112 second=122 amount=-1 -kerning first=50 second=71 amount=-2 -kerning first=35 second=34 amount=-3 -kerning first=59 second=111 amount=-1 -kerning first=72 second=101 amount=-1 -kerning first=119 second=115 amount=-1 -kerning first=47 second=117 amount=-1 -kerning first=113 second=118 amount=-4 -kerning first=51 second=67 amount=-2 -kerning first=92 second=84 amount=-5 -kerning first=73 second=97 amount=-1 -kerning first=96 second=34 amount=-3 -kerning first=120 second=111 amount=-2 -kerning first=86 second=87 amount=-5 -kerning first=48 second=113 amount=-1 -kerning first=80 second=90 amount=-1 -kerning first=61 second=103 amount=-1 -kerning first=42 second=116 amount=-1 -kerning first=108 second=117 amount=-1 -kerning first=55 second=106 amount=1 -kerning first=36 second=119 amount=-4 -kerning first=87 second=83 amount=-1 -kerning first=81 second=86 amount=-2 -kerning first=62 second=99 amount=-1 -kerning first=37 second=115 amount=-1 -kerning first=103 second=116 amount=-1 -kerning first=88 second=79 amount=-3 -kerning first=97 second=119 amount=-1 -kerning first=67 second=45 amount=-1 -kerning first=76 second=85 amount=-1 -kerning first=123 second=99 amount=-1 -kerning first=38 second=111 amount=-1 -kerning first=51 second=101 amount=-1 -kerning first=55 second=51 amount=-1 -kerning first=92 second=118 amount=-4 -kerning first=77 second=81 amount=-2 -kerning first=86 second=121 amount=-2 -kerning first=90 second=71 amount=-1 -kerning first=71 second=84 amount=-1 -kerning first=52 second=97 amount=-1 -kerning first=84 second=74 amount=-5 -kerning first=65 second=87 amount=-5 -kerning first=40 second=103 amount=-1 -kerning first=44 second=53 amount=-1 -kerning first=87 second=117 amount=-2 -kerning first=91 second=67 amount=-2 -kerning first=113 second=97 amount=-1 -kerning first=51 second=46 amount=-1 -kerning first=126 second=87 amount=-5 -kerning first=41 second=99 amount=-1 -kerning first=107 second=100 amount=-2 -kerning first=45 second=49 amount=-3 -kerning first=88 second=113 amount=-2 -kerning first=54 second=89 amount=-5 -kerning first=58 second=39 amount=-3 -kerning first=39 second=52 amount=-1 -kerning first=95 second=106 amount=1 -kerning first=76 second=119 amount=-3 -kerning first=46 second=45 amount=-1 -kerning first=89 second=109 amount=-3 -kerning first=112 second=46 amount=-1 -kerning first=70 second=122 amount=-1 -kerning first=55 second=85 amount=-2 -kerning first=102 second=99 amount=-1 -kerning first=77 second=115 amount=-1 -kerning first=81 second=65 amount=-2 -kerning first=56 second=81 amount=-2 -kerning first=107 second=45 amount=-3 -kerning first=65 second=121 amount=-1 -kerning first=69 second=71 amount=-2 -kerning first=50 second=84 amount=-5 -kerning first=54 second=34 amount=-3 -kerning first=78 second=111 amount=-1 -kerning first=44 second=87 amount=-3 -kerning first=91 second=101 amount=-1 -kerning first=70 second=67 amount=-1 -kerning first=117 second=81 amount=-2 -kerning first=102 second=44 amount=-2 -kerning first=126 second=121 amount=-1 -kerning first=45 second=83 amount=-1 -kerning first=92 second=97 amount=-1 -kerning first=115 second=34 amount=-1 -kerning first=105 second=87 amount=-5 -kerning first=86 second=100 amount=-3 -kerning first=37 second=39 amount=-3 -kerning first=80 second=103 amount=-1 -kerning first=61 second=116 amount=-1 -kerning first=46 second=79 amount=-1 -kerning first=74 second=106 amount=1 -kerning first=55 second=119 amount=-4 -kerning first=94 second=89 amount=-5 -kerning first=75 second=102 amount=-2 -kerning first=98 second=39 amount=-1 -kerning first=56 second=115 amount=-1 -kerning first=50 second=118 amount=-4 -kerning first=35 second=81 amount=-2 -kerning first=86 second=45 amount=-2 -kerning first=44 second=121 amount=-1 -kerning first=48 second=71 amount=-2 -kerning first=95 second=85 amount=-2 -kerning first=57 second=111 amount=-1 -kerning first=70 second=101 amount=-1 -kerning first=117 second=115 amount=-1 -kerning first=111 second=118 amount=-1 -kerning first=49 second=67 amount=-2 -kerning first=96 second=81 amount=-2 -kerning first=81 second=44 amount=-1 -kerning first=105 second=121 amount=-1 -kerning first=94 second=34 amount=-3 -kerning first=118 second=111 amount=-1 -kerning first=65 second=100 amount=-1 -kerning first=59 second=103 amount=-1 -kerning first=40 second=116 amount=-1 -kerning first=53 second=106 amount=1 -kerning first=47 second=109 amount=-1 -kerning first=70 second=46 amount=-4 -kerning first=113 second=110 amount=2 -kerning first=79 second=86 amount=-2 -kerning first=60 second=99 amount=-1 -kerning first=126 second=100 amount=-1 -kerning first=107 second=113 amount=-2 -kerning first=111 second=63 amount=-2 -kerning first=73 second=89 amount=-5 -kerning first=77 second=39 amount=-3 -kerning first=120 second=103 amount=-1 -kerning first=35 second=115 amount=-1 -kerning first=39 second=65 amount=-3 -kerning first=86 second=79 amount=-2 -kerning first=52 second=55 amount=-1 -kerning first=95 second=119 amount=-4 -kerning first=65 second=45 amount=-2 -kerning first=89 second=122 amount=-2 -kerning first=74 second=85 amount=-2 -kerning first=121 second=99 amount=-1 -kerning first=36 second=111 amount=-1 -kerning first=68 second=88 amount=-3 -kerning first=49 second=101 amount=-1 -kerning first=115 second=102 amount=-1 -kerning first=96 second=115 amount=-1 -kerning first=75 second=81 amount=-3 -kerning first=126 second=45 amount=-2 -kerning first=84 second=121 amount=-2 -kerning first=88 second=71 amount=-3 -kerning first=69 second=84 amount=-5 -kerning first=50 second=97 amount=-1 -kerning first=73 second=34 amount=-3 -kerning first=63 second=87 amount=-5 -kerning first=38 second=103 amount=-1 -kerning first=89 second=67 amount=-3 -kerning first=64 second=83 amount=-1 -kerning first=124 second=87 amount=-5 -kerning first=39 second=99 amount=-1 -kerning first=105 second=100 amount=-1 -kerning first=86 second=113 amount=-3 -kerning first=52 second=89 amount=-5 -kerning first=56 second=39 amount=-3 -kerning first=80 second=116 amount=-1 -kerning first=65 second=79 amount=-2 -kerning first=93 second=106 amount=1 -kerning first=74 second=119 amount=-4 -kerning first=125 second=83 amount=-1 -kerning first=44 second=45 amount=-1 -kerning first=87 second=109 amount=-2 -kerning first=53 second=85 amount=-2 -kerning first=100 second=99 amount=-1 -kerning first=113 second=89 amount=-5 -kerning first=117 second=39 amount=-3 -kerning first=79 second=65 amount=-2 -kerning first=126 second=79 amount=-2 -kerning first=69 second=118 amount=-4 -kerning first=54 second=81 amount=-2 -kerning first=39 second=44 amount=-1 -kerning first=105 second=45 amount=-2 -kerning first=63 second=121 amount=-1 -kerning first=48 second=84 amount=-5 -kerning first=52 second=34 amount=-1 -kerning first=76 second=111 amount=-1 -kerning first=42 second=87 amount=-5 -kerning first=89 second=101 amount=-4 -kerning first=70 second=114 amount=-1 -kerning first=64 second=117 amount=-1 -kerning first=124 second=121 amount=-1 -kerning first=43 second=83 amount=-1 -kerning first=113 second=34 amount=-3 -kerning first=103 second=87 amount=-5 -kerning first=84 second=100 amount=-3 -kerning first=65 second=113 amount=-1 -kerning first=35 second=39 amount=-3 -kerning first=78 second=103 amount=-1 -kerning first=59 second=116 amount=-1 -kerning first=125 second=117 amount=-1 -kerning first=44 second=79 amount=-1 -kerning first=72 second=106 amount=1 -kerning first=53 second=119 amount=-4 -kerning first=89 second=46 amount=-4 -kerning first=47 second=122 amount=-2 -kerning first=126 second=113 amount=-1 -kerning first=92 second=89 amount=-5 -kerning first=96 second=39 amount=-3 -kerning first=54 second=115 amount=-1 -kerning first=105 second=79 amount=-2 -kerning first=48 second=118 amount=-4 -kerning first=84 second=45 amount=-4 -kerning first=42 second=121 amount=-1 -kerning first=46 second=71 amount=-1 -kerning first=93 second=85 amount=-2 -kerning first=55 second=111 amount=-1 -kerning first=43 second=117 amount=-1 -kerning first=109 second=118 amount=-1 -kerning first=47 second=67 amount=-1 -kerning first=94 second=81 amount=-2 -kerning first=79 second=44 amount=-1 -kerning first=103 second=121 amount=-1 -kerning first=69 second=97 amount=-1 -kerning first=92 second=34 amount=-3 -kerning first=82 second=87 amount=-1 -kerning first=63 second=100 amount=-1 -kerning first=57 second=103 amount=-1 -kerning first=38 second=116 amount=-1 -kerning first=108 second=67 amount=-2 -kerning first=51 second=106 amount=1 -kerning first=55 second=56 amount=-1 -kerning first=98 second=120 amount=-2 -kerning first=68 second=46 amount=-1 -kerning first=58 second=99 amount=-1 -kerning first=124 second=100 amount=-1 -kerning first=105 second=113 amount=-1 -kerning first=109 second=63 amount=-2 -kerning first=71 second=89 amount=-2 -kerning first=118 second=103 amount=-1 -kerning first=84 second=79 amount=-1 -kerning first=93 second=119 amount=-4 -kerning first=63 second=45 amount=-2 -kerning first=87 second=122 amount=-1 -kerning first=72 second=85 amount=-2 -kerning first=119 second=99 amount=-1 -kerning first=34 second=111 amount=-1 -kerning first=66 second=88 amount=-2 -kerning first=47 second=101 amount=-2 -kerning first=113 second=102 amount=1 -kerning first=94 second=115 amount=-1 -kerning first=88 second=118 amount=-3 -kerning first=73 second=81 amount=-2 -kerning first=124 second=45 amount=-2 -kerning first=86 second=71 amount=-2 -kerning first=67 second=84 amount=-1 -kerning first=48 second=97 amount=-1 -kerning first=95 second=111 amount=-1 -kerning first=80 second=74 amount=-3 -kerning first=61 second=87 amount=-5 -kerning first=42 second=100 amount=-1 -kerning first=108 second=101 amount=-1 -kerning first=89 second=114 amount=-3 -kerning first=36 second=103 amount=-1 -kerning first=87 second=67 amount=-2 -kerning first=119 second=44 amount=-2 -kerning first=34 second=56 amount=-1 -kerning first=62 second=83 amount=-1 -kerning first=47 second=46 amount=-4 -kerning first=37 second=99 amount=-1 -kerning first=103 second=100 amount=-1 -kerning first=84 second=113 amount=-3 -kerning first=88 second=63 amount=-2 -kerning first=50 second=89 amount=-5 -kerning first=54 second=39 amount=-3 -kerning first=78 second=116 amount=-1 -kerning first=63 second=79 amount=-2 -kerning first=91 second=106 amount=7 -kerning first=72 second=119 amount=-4 -kerning first=123 second=83 amount=-1 -kerning first=42 second=45 amount=-2 -kerning first=51 second=85 amount=-2 -kerning first=45 second=88 amount=-3 -kerning first=115 second=39 amount=-1 -kerning first=73 second=115 amount=-1 -kerning first=124 second=79 amount=-2 -kerning first=52 second=81 amount=-2 -kerning first=103 second=45 amount=-2 -kerning first=61 second=121 amount=-1 -kerning first=65 second=71 amount=-2 -kerning first=46 second=84 amount=-5 -kerning first=50 second=34 amount=-3 -kerning first=74 second=111 amount=-1 -kerning first=40 second=87 amount=-5 -kerning first=87 second=101 amount=-3 -kerning first=62 second=117 amount=-1 -kerning first=113 second=81 amount=-2 -kerning first=98 second=44 amount=-1 -kerning first=126 second=71 amount=-2 -kerning first=41 second=83 amount=-1 -kerning first=88 second=97 amount=-1 -kerning first=111 second=34 amount=-1 -kerning first=63 second=113 amount=-1 -kerning first=76 second=103 amount=-1 -kerning first=57 second=116 amount=-1 -kerning first=123 second=117 amount=-1 -kerning first=42 second=79 amount=-2 -kerning first=70 second=106 amount=1 -kerning first=51 second=119 amount=-4 -kerning first=87 second=46 amount=-3 -kerning first=45 second=122 amount=-2 -kerning first=77 second=99 amount=-1 -kerning first=124 second=113 amount=-1 -kerning first=94 second=39 amount=-3 -kerning first=52 second=115 amount=-1 -kerning first=103 second=79 amount=-2 -kerning first=46 second=118 amount=-2 -kerning first=112 second=119 amount=-1 -kerning first=82 second=45 amount=-1 -kerning first=40 second=121 amount=-1 -kerning first=44 second=71 amount=-1 -kerning first=91 second=85 amount=-2 -kerning first=53 second=111 amount=-1 -kerning first=89 second=38 amount=-2 -kerning first=47 second=114 amount=-1 -kerning first=113 second=115 amount=-1 -kerning first=41 second=117 amount=-1 -kerning first=92 second=81 amount=-2 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.png deleted file mode 100644 index fc12c7c..0000000 Binary files a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.png and /dev/null differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.fnt deleted file mode 100644 index 3695782..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.fnt +++ /dev/null @@ -1,18442 +0,0 @@ -info face="Enchanted Land" size=96 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=4,4,4,4 spacing=-2,-2 -common lineHeight=119 base=83 scaleW=2048 scaleH=1024 pages=1 packed=0 -page id=0 file="enchanted.png" -chars count=340 -char id=0 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 -char id=13 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 -char id=33 x=2027 y=196 width=20 height=67 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 -char id=34 x=1431 y=495 width=26 height=29 xoffset=-4 yoffset=21 xadvance=24 page=0 chnl=0 -char id=35 x=850 y=495 width=39 height=41 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 -char id=36 x=1856 y=430 width=31 height=52 xoffset=-4 yoffset=4 xadvance=31 page=0 chnl=0 -char id=37 x=1121 y=430 width=35 height=62 xoffset=-4 yoffset=16 xadvance=34 page=0 chnl=0 -char id=38 x=318 y=359 width=37 height=68 xoffset=-4 yoffset=20 xadvance=36 page=0 chnl=0 -char id=39 x=1457 y=495 width=16 height=29 xoffset=-4 yoffset=21 xadvance=15 page=0 chnl=0 -char id=40 x=302 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 -char id=41 x=330 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 -char id=42 x=1293 y=495 width=30 height=33 xoffset=-4 yoffset=-3 xadvance=28 page=0 chnl=0 -char id=43 x=1371 y=495 width=31 height=31 xoffset=-4 yoffset=42 xadvance=30 page=0 chnl=0 -char id=44 x=1586 y=495 width=21 height=24 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 -char id=45 x=1996 y=495 width=31 height=14 xoffset=-4 yoffset=50 xadvance=30 page=0 chnl=0 -char id=46 x=1907 y=495 width=21 height=19 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 -char id=47 x=358 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 -char id=48 x=661 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=49 x=128 y=359 width=33 height=69 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 -char id=50 x=696 y=359 width=35 height=67 xoffset=-4 yoffset=22 xadvance=36 page=0 chnl=0 -char id=51 x=355 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=52 x=161 y=359 width=46 height=69 xoffset=-4 yoffset=21 xadvance=47 page=0 chnl=0 -char id=53 x=731 y=359 width=36 height=67 xoffset=-4 yoffset=21 xadvance=37 page=0 chnl=0 -char id=54 x=767 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=55 x=1285 y=359 width=45 height=66 xoffset=-3 yoffset=22 xadvance=47 page=0 chnl=0 -char id=56 x=390 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=57 x=802 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=58 x=2027 y=430 width=20 height=49 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 -char id=59 x=1722 y=430 width=20 height=54 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 -char id=60 x=1229 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 -char id=61 x=1523 y=495 width=31 height=26 xoffset=-4 yoffset=43 xadvance=30 page=0 chnl=0 -char id=62 x=1261 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 -char id=63 x=425 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=64 x=0 y=282 width=64 height=77 xoffset=-4 yoffset=10 xadvance=63 page=0 chnl=0 -char id=65 x=1229 y=196 width=83 height=82 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 -char id=66 x=1896 y=196 width=57 height=78 xoffset=-4 yoffset=15 xadvance=56 page=0 chnl=0 -char id=67 x=1610 y=282 width=53 height=72 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 -char id=68 x=124 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 -char id=69 x=568 y=282 width=56 height=75 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=70 x=781 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=71 x=1945 y=282 width=56 height=71 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 -char id=72 x=1328 y=282 width=60 height=73 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 -char id=73 x=1388 y=282 width=37 height=73 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 -char id=74 x=624 y=282 width=45 height=75 xoffset=-4 yoffset=16 xadvance=44 page=0 chnl=0 -char id=75 x=1623 y=196 width=64 height=80 xoffset=-4 yoffset=20 xadvance=63 page=0 chnl=0 -char id=76 x=669 y=282 width=48 height=75 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 -char id=77 x=1425 y=282 width=77 height=73 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 -char id=78 x=1663 y=282 width=60 height=72 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 -char id=79 x=0 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=80 x=184 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=59 page=0 chnl=0 -char id=81 x=1723 y=282 width=64 height=72 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=82 x=1687 y=196 width=64 height=80 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 -char id=83 x=1787 y=282 width=56 height=72 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 -char id=84 x=837 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=85 x=1843 y=282 width=52 height=72 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 -char id=86 x=1895 y=282 width=50 height=72 xoffset=-4 yoffset=22 xadvance=48 page=0 chnl=0 -char id=87 x=893 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 -char id=88 x=1502 y=282 width=59 height=73 xoffset=-5 yoffset=19 xadvance=57 page=0 chnl=0 -char id=89 x=1226 y=0 width=55 height=92 xoffset=-4 yoffset=21 xadvance=53 page=0 chnl=0 -char id=90 x=1561 y=282 width=49 height=73 xoffset=-4 yoffset=19 xadvance=47 page=0 chnl=0 -char id=91 x=643 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 -char id=92 x=409 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 -char id=93 x=663 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 -char id=94 x=1494 y=495 width=29 height=27 xoffset=-4 yoffset=7 xadvance=28 page=0 chnl=0 -char id=95 x=0 y=545 width=36 height=14 xoffset=-4 yoffset=86 xadvance=34 page=0 chnl=0 -char id=96 x=1731 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 -char id=97 x=167 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=98 x=1330 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 -char id=99 x=1927 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=100 x=1366 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 -char id=101 x=1960 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=102 x=1402 y=359 width=33 height=66 xoffset=-4 yoffset=21 xadvance=32 page=0 chnl=0 -char id=103 x=460 y=359 width=33 height=68 xoffset=-4 yoffset=36 xadvance=32 page=0 chnl=0 -char id=104 x=1435 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=105 x=1426 y=430 width=24 height=61 xoffset=-4 yoffset=26 xadvance=23 page=0 chnl=0 -char id=106 x=1953 y=196 width=34 height=78 xoffset=-3 yoffset=26 xadvance=34 page=0 chnl=0 -char id=107 x=1475 y=359 width=40 height=66 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 -char id=108 x=1515 y=359 width=24 height=66 xoffset=-4 yoffset=21 xadvance=22 page=0 chnl=0 -char id=109 x=203 y=495 width=55 height=49 xoffset=-4 yoffset=38 xadvance=54 page=0 chnl=0 -char id=110 x=258 y=495 width=40 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=111 x=1993 y=430 width=34 height=50 xoffset=-4 yoffset=37 xadvance=35 page=0 chnl=0 -char id=112 x=1539 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=113 x=1575 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=114 x=298 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 -char id=115 x=0 y=495 width=32 height=50 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 -char id=116 x=1156 y=430 width=24 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 -char id=117 x=333 y=495 width=39 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=118 x=372 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=119 x=408 y=495 width=52 height=49 xoffset=-4 yoffset=38 xadvance=51 page=0 chnl=0 -char id=120 x=460 y=495 width=34 height=49 xoffset=-2 yoffset=38 xadvance=36 page=0 chnl=0 -char id=121 x=1883 y=359 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=122 x=494 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=34 page=0 chnl=0 -char id=123 x=55 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 -char id=124 x=683 y=0 width=17 height=98 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 -char id=125 x=82 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 -char id=126 x=1836 y=495 width=37 height=20 xoffset=-4 yoffset=67 xadvance=35 page=0 chnl=0 -char id=160 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 -char id=161 x=2026 y=106 width=20 height=66 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 -char id=162 x=1689 y=430 width=33 height=55 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 -char id=163 x=594 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 -char id=164 x=889 y=495 width=42 height=41 xoffset=-4 yoffset=11 xadvance=40 page=0 chnl=0 -char id=165 x=627 y=495 width=28 height=48 xoffset=-4 yoffset=8 xadvance=27 page=0 chnl=0 -char id=166 x=460 y=0 width=17 height=99 xoffset=-4 yoffset=2 xadvance=16 page=0 chnl=0 -char id=167 x=1662 y=430 width=27 height=56 xoffset=-4 yoffset=6 xadvance=26 page=0 chnl=0 -char id=168 x=1873 y=495 width=34 height=20 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=169 x=760 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 -char id=170 x=1323 y=495 width=27 height=33 xoffset=-4 yoffset=7 xadvance=26 page=0 chnl=0 -char id=171 x=931 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 -char id=172 x=1777 y=495 width=40 height=22 xoffset=-4 yoffset=34 xadvance=39 page=0 chnl=0 -char id=174 x=805 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 -char id=175 x=36 y=545 width=29 height=14 xoffset=-4 yoffset=29 xadvance=28 page=0 chnl=0 -char id=176 x=1473 y=495 width=21 height=28 xoffset=-4 yoffset=12 xadvance=20 page=0 chnl=0 -char id=177 x=968 y=495 width=31 height=40 xoffset=-4 yoffset=41 xadvance=30 page=0 chnl=0 -char id=178 x=1162 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=21 page=0 chnl=0 -char id=179 x=1082 y=495 width=22 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 -char id=180 x=1754 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 -char id=181 x=1919 y=359 width=39 height=65 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=182 x=1184 y=495 width=23 height=38 xoffset=-4 yoffset=7 xadvance=23 page=0 chnl=0 -char id=183 x=1976 y=495 width=20 height=18 xoffset=-3 yoffset=38 xadvance=16 page=0 chnl=0 -char id=184 x=1350 y=495 width=21 height=32 xoffset=-4 yoffset=74 xadvance=19 page=0 chnl=0 -char id=185 x=1104 y=495 width=21 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 -char id=186 x=1207 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=20 page=0 chnl=0 -char id=187 x=999 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 -char id=188 x=328 y=196 width=53 height=84 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 -char id=189 x=381 y=196 width=47 height=84 xoffset=-4 yoffset=5 xadvance=45 page=0 chnl=0 -char id=190 x=105 y=196 width=53 height=85 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 -char id=191 x=837 y=359 width=35 height=67 xoffset=-3 yoffset=20 xadvance=35 page=0 chnl=0 -char id=192 x=477 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 -char id=193 x=560 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 -char id=194 x=830 y=0 width=83 height=96 xoffset=-7 yoffset=5 xadvance=77 page=0 chnl=0 -char id=195 x=1143 y=0 width=83 height=93 xoffset=-7 yoffset=8 xadvance=77 page=0 chnl=0 -char id=196 x=913 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 -char id=197 x=109 y=0 width=83 height=104 xoffset=-7 yoffset=-3 xadvance=77 page=0 chnl=0 -char id=198 x=244 y=282 width=81 height=76 xoffset=-6 yoffset=19 xadvance=75 page=0 chnl=0 -char id=199 x=742 y=106 width=53 height=87 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 -char id=200 x=52 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 -char id=201 x=1618 y=0 width=56 height=90 xoffset=-4 yoffset=1 xadvance=55 page=0 chnl=0 -char id=202 x=795 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 -char id=203 x=1585 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 -char id=204 x=1674 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 -char id=205 x=1711 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 -char id=206 x=2000 y=0 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=207 x=851 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=208 x=325 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 -char id=209 x=428 y=196 width=60 height=84 xoffset=-4 yoffset=9 xadvance=59 page=0 chnl=0 -char id=210 x=108 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 -char id=211 x=172 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 -char id=212 x=888 y=106 width=64 height=87 xoffset=-4 yoffset=5 xadvance=63 page=0 chnl=0 -char id=213 x=488 y=196 width=64 height=84 xoffset=-4 yoffset=8 xadvance=63 page=0 chnl=0 -char id=214 x=1641 y=106 width=64 height=86 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 -char id=215 x=1402 y=495 width=29 height=30 xoffset=-4 yoffset=42 xadvance=28 page=0 chnl=0 -char id=216 x=64 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=217 x=236 y=106 width=52 height=89 xoffset=-4 yoffset=5 xadvance=50 page=0 chnl=0 -char id=218 x=1748 y=0 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 -char id=219 x=952 y=106 width=52 height=87 xoffset=-4 yoffset=7 xadvance=50 page=0 chnl=0 -char id=220 x=1705 y=106 width=52 height=86 xoffset=-4 yoffset=8 xadvance=50 page=0 chnl=0 -char id=221 x=0 y=0 width=55 height=106 xoffset=-4 yoffset=7 xadvance=53 page=0 chnl=0 -char id=222 x=64 y=282 width=60 height=77 xoffset=-4 yoffset=15 xadvance=59 page=0 chnl=0 -char id=223 x=1958 y=359 width=41 height=65 xoffset=-4 yoffset=22 xadvance=40 page=0 chnl=0 -char id=224 x=872 y=359 width=36 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=225 x=493 y=359 width=36 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=226 x=1999 y=359 width=36 height=65 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 -char id=227 x=1180 y=430 width=36 height=62 xoffset=-4 yoffset=26 xadvance=35 page=0 chnl=0 -char id=228 x=514 y=430 width=36 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=229 x=207 y=359 width=36 height=69 xoffset=-4 yoffset=18 xadvance=35 page=0 chnl=0 -char id=230 x=32 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 -char id=231 x=98 y=430 width=33 height=64 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=232 x=908 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 -char id=233 x=941 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 -char id=234 x=131 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 -char id=235 x=550 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=236 x=974 y=359 width=25 height=67 xoffset=-5 yoffset=20 xadvance=23 page=0 chnl=0 -char id=237 x=529 y=359 width=24 height=68 xoffset=-4 yoffset=20 xadvance=23 page=0 chnl=0 -char id=238 x=0 y=430 width=26 height=65 xoffset=-4 yoffset=23 xadvance=23 page=0 chnl=0 -char id=239 x=584 y=430 width=42 height=63 xoffset=-9 yoffset=24 xadvance=22 page=0 chnl=0 -char id=240 x=26 y=430 width=36 height=65 xoffset=-4 yoffset=22 xadvance=35 page=0 chnl=0 -char id=241 x=1216 y=430 width=40 height=62 xoffset=-4 yoffset=26 xadvance=38 page=0 chnl=0 -char id=242 x=999 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=243 x=1033 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=244 x=626 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=245 x=1256 y=430 width=34 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 -char id=246 x=660 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=247 x=1125 y=495 width=37 height=39 xoffset=-4 yoffset=38 xadvance=36 page=0 chnl=0 -char id=248 x=82 y=495 width=35 height=50 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 -char id=249 x=1067 y=359 width=39 height=67 xoffset=-4 yoffset=20 xadvance=38 page=0 chnl=0 -char id=250 x=1106 y=359 width=39 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=251 x=694 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=252 x=733 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=253 x=988 y=196 width=36 height=83 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=254 x=1024 y=196 width=36 height=83 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 -char id=255 x=1824 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=256 x=1800 y=0 width=83 height=90 xoffset=-7 yoffset=11 xadvance=77 page=0 chnl=0 -char id=257 x=1489 y=430 width=36 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 -char id=258 x=996 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 -char id=259 x=1290 y=430 width=36 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 -char id=260 x=700 y=0 width=83 height=98 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 -char id=261 x=164 y=430 width=36 height=64 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=262 x=1883 y=0 width=53 height=90 xoffset=-4 yoffset=3 xadvance=51 page=0 chnl=0 -char id=263 x=1145 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 -char id=264 x=1004 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 -char id=265 x=772 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=266 x=1757 y=106 width=53 height=86 xoffset=-4 yoffset=7 xadvance=51 page=0 chnl=0 -char id=267 x=805 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=268 x=1057 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 -char id=269 x=838 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=270 x=1110 y=106 width=60 height=87 xoffset=-4 yoffset=5 xadvance=61 page=0 chnl=0 -char id=271 x=1611 y=359 width=47 height=66 xoffset=-4 yoffset=21 xadvance=45 page=0 chnl=0 -char id=272 x=385 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 -char id=273 x=1658 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=274 x=1312 y=196 width=56 height=82 xoffset=-4 yoffset=9 xadvance=55 page=0 chnl=0 -char id=275 x=1525 y=430 width=33 height=59 xoffset=-4 yoffset=29 xadvance=32 page=0 chnl=0 -char id=276 x=1170 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 -char id=277 x=200 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 -char id=278 x=1810 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 -char id=279 x=871 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=280 x=1226 y=106 width=56 height=87 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=281 x=904 y=430 width=33 height=63 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=282 x=404 y=106 width=56 height=88 xoffset=-4 yoffset=3 xadvance=55 page=0 chnl=0 -char id=283 x=937 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=284 x=552 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 -char id=285 x=1368 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 -char id=286 x=608 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 -char id=287 x=1401 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 -char id=288 x=664 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 -char id=289 x=1751 y=196 width=33 height=80 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=290 x=460 y=106 width=56 height=88 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 -char id=291 x=1866 y=106 width=33 height=86 xoffset=-4 yoffset=18 xadvance=32 page=0 chnl=0 -char id=292 x=1899 y=106 width=58 height=86 xoffset=-4 yoffset=7 xadvance=56 page=0 chnl=0 -char id=293 x=1784 y=196 width=40 height=80 xoffset=-4 yoffset=7 xadvance=38 page=0 chnl=0 -char id=294 x=971 y=282 width=60 height=74 xoffset=-4 yoffset=19 xadvance=59 page=0 chnl=0 -char id=295 x=1698 y=359 width=46 height=66 xoffset=-8 yoffset=21 xadvance=38 page=0 chnl=0 -char id=296 x=158 y=196 width=37 height=85 xoffset=-4 yoffset=7 xadvance=36 page=0 chnl=0 -char id=297 x=1326 y=430 width=37 height=62 xoffset=-9 yoffset=26 xadvance=23 page=0 chnl=0 -char id=298 x=1434 y=196 width=37 height=82 xoffset=-4 yoffset=10 xadvance=36 page=0 chnl=0 -char id=299 x=1558 y=430 width=31 height=59 xoffset=-7 yoffset=29 xadvance=23 page=0 chnl=0 -char id=300 x=1282 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=301 x=233 y=430 width=28 height=64 xoffset=-6 yoffset=24 xadvance=23 page=0 chnl=0 -char id=302 x=195 y=196 width=37 height=85 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 -char id=303 x=445 y=282 width=27 height=76 xoffset=-6 yoffset=26 xadvance=23 page=0 chnl=0 -char id=304 x=1319 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=305 x=529 y=495 width=24 height=49 xoffset=-4 yoffset=38 xadvance=23 page=0 chnl=0 -char id=306 x=472 y=282 width=72 height=76 xoffset=-4 yoffset=16 xadvance=71 page=0 chnl=0 -char id=307 x=1987 y=196 width=40 height=78 xoffset=-4 yoffset=26 xadvance=39 page=0 chnl=0 -char id=308 x=1957 y=106 width=45 height=86 xoffset=-4 yoffset=5 xadvance=44 page=0 chnl=0 -char id=309 x=1523 y=196 width=36 height=81 xoffset=-3 yoffset=23 xadvance=36 page=0 chnl=0 -char id=310 x=1936 y=0 width=64 height=90 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=311 x=232 y=196 width=40 height=85 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 -char id=312 x=1887 y=430 width=40 height=51 xoffset=-4 yoffset=37 xadvance=39 page=0 chnl=0 -char id=313 x=1329 y=0 width=48 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 -char id=314 x=720 y=196 width=24 height=84 xoffset=-4 yoffset=4 xadvance=23 page=0 chnl=0 -char id=315 x=1281 y=0 width=48 height=92 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 -char id=316 x=2002 y=106 width=24 height=86 xoffset=-4 yoffset=21 xadvance=23 page=0 chnl=0 -char id=317 x=1031 y=282 width=48 height=74 xoffset=-4 yoffset=18 xadvance=47 page=0 chnl=0 -char id=318 x=1744 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 -char id=319 x=516 y=106 width=48 height=88 xoffset=-4 yoffset=4 xadvance=47 page=0 chnl=0 -char id=320 x=1780 y=359 width=35 height=66 xoffset=-4 yoffset=21 xadvance=33 page=0 chnl=0 -char id=321 x=1079 y=282 width=50 height=74 xoffset=-4 yoffset=18 xadvance=49 page=0 chnl=0 -char id=322 x=1815 y=359 width=38 height=66 xoffset=-8 yoffset=21 xadvance=22 page=0 chnl=0 -char id=323 x=1356 y=106 width=60 height=87 xoffset=-4 yoffset=6 xadvance=59 page=0 chnl=0 -char id=324 x=1178 y=359 width=40 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=325 x=288 y=106 width=60 height=89 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 -char id=326 x=243 y=359 width=40 height=69 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=327 x=1060 y=196 width=60 height=83 xoffset=-4 yoffset=10 xadvance=59 page=0 chnl=0 -char id=328 x=261 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=329 x=1804 y=430 width=52 height=53 xoffset=-4 yoffset=34 xadvance=50 page=0 chnl=0 -char id=330 x=1120 y=196 width=57 height=83 xoffset=-4 yoffset=21 xadvance=55 page=0 chnl=0 -char id=331 x=62 y=430 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=332 x=1559 y=196 width=64 height=81 xoffset=-4 yoffset=11 xadvance=63 page=0 chnl=0 -char id=333 x=1589 y=430 width=34 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 -char id=334 x=1416 y=106 width=64 height=87 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 -char id=335 x=300 y=430 width=34 height=64 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 -char id=336 x=1377 y=0 width=64 height=91 xoffset=-4 yoffset=1 xadvance=63 page=0 chnl=0 -char id=337 x=553 y=359 width=34 height=68 xoffset=-4 yoffset=19 xadvance=35 page=0 chnl=0 -char id=338 x=1129 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=76 page=0 chnl=0 -char id=339 x=117 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 -char id=340 x=1079 y=0 width=64 height=95 xoffset=-4 yoffset=1 xadvance=62 page=0 chnl=0 -char id=341 x=587 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=33 page=0 chnl=0 -char id=342 x=1441 y=0 width=64 height=91 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 -char id=343 x=283 y=359 width=35 height=69 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 -char id=344 x=1505 y=0 width=64 height=91 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 -char id=345 x=334 y=430 width=35 height=64 xoffset=-4 yoffset=24 xadvance=33 page=0 chnl=0 -char id=346 x=348 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 -char id=347 x=1218 y=359 width=32 height=67 xoffset=-4 yoffset=20 xadvance=31 page=0 chnl=0 -char id=348 x=0 y=196 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 -char id=349 x=970 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 -char id=350 x=1480 y=106 width=56 height=87 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 -char id=351 x=369 y=430 width=32 height=64 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 -char id=352 x=272 y=196 width=56 height=85 xoffset=-4 yoffset=6 xadvance=55 page=0 chnl=0 -char id=353 x=1002 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 -char id=354 x=744 y=196 width=64 height=84 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 -char id=355 x=544 y=282 width=24 height=76 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 -char id=356 x=808 y=196 width=64 height=84 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 -char id=357 x=1363 y=430 width=38 height=62 xoffset=-4 yoffset=25 xadvance=36 page=0 chnl=0 -char id=358 x=717 y=282 width=64 height=75 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 -char id=359 x=1401 y=430 width=25 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 -char id=360 x=1471 y=196 width=52 height=82 xoffset=-4 yoffset=12 xadvance=50 page=0 chnl=0 -char id=361 x=1450 y=430 width=39 height=60 xoffset=-4 yoffset=27 xadvance=38 page=0 chnl=0 -char id=362 x=872 y=196 width=52 height=84 xoffset=-4 yoffset=10 xadvance=50 page=0 chnl=0 -char id=363 x=1623 y=430 width=39 height=59 xoffset=-4 yoffset=29 xadvance=38 page=0 chnl=0 -char id=364 x=1177 y=196 width=52 height=83 xoffset=-4 yoffset=11 xadvance=50 page=0 chnl=0 -char id=365 x=401 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=366 x=0 y=106 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 -char id=367 x=2001 y=282 width=39 height=71 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 -char id=368 x=564 y=106 width=52 height=88 xoffset=-4 yoffset=6 xadvance=50 page=0 chnl=0 -char id=369 x=622 y=359 width=39 height=68 xoffset=-4 yoffset=19 xadvance=38 page=0 chnl=0 -char id=370 x=616 y=106 width=52 height=88 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 -char id=371 x=440 y=430 width=39 height=64 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=372 x=668 y=106 width=74 height=88 xoffset=-4 yoffset=7 xadvance=73 page=0 chnl=0 -char id=373 x=1034 y=430 width=52 height=63 xoffset=-4 yoffset=24 xadvance=51 page=0 chnl=0 -char id=374 x=192 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 -char id=375 x=1860 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=376 x=247 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 -char id=377 x=1569 y=0 width=49 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 -char id=378 x=1250 y=359 width=35 height=67 xoffset=-4 yoffset=20 xadvance=34 page=0 chnl=0 -char id=379 x=56 y=196 width=49 height=86 xoffset=-4 yoffset=6 xadvance=47 page=0 chnl=0 -char id=380 x=1086 y=430 width=35 height=63 xoffset=-4 yoffset=24 xadvance=34 page=0 chnl=0 -char id=381 x=1536 y=106 width=49 height=87 xoffset=-4 yoffset=5 xadvance=47 page=0 chnl=0 -char id=382 x=479 y=430 width=35 height=64 xoffset=-4 yoffset=23 xadvance=34 page=0 chnl=0 -char id=383 x=1853 y=359 width=30 height=66 xoffset=-4 yoffset=21 xadvance=29 page=0 chnl=0 -char id=884 x=1207 y=282 width=121 height=74 xoffset=-3 yoffset=-1 xadvance=121 page=0 chnl=0 -char id=8211 x=65 y=545 width=42 height=14 xoffset=-4 yoffset=50 xadvance=40 page=0 chnl=0 -char id=8212 x=107 y=545 width=55 height=14 xoffset=-4 yoffset=50 xadvance=54 page=0 chnl=0 -char id=8216 x=1607 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 -char id=8217 x=1627 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 -char id=8218 x=1647 y=495 width=20 height=24 xoffset=-4 yoffset=68 xadvance=19 page=0 chnl=0 -char id=8220 x=1554 y=495 width=32 height=25 xoffset=-4 yoffset=21 xadvance=31 page=0 chnl=0 -char id=8221 x=1667 y=495 width=32 height=24 xoffset=-4 yoffset=22 xadvance=31 page=0 chnl=0 -char id=8222 x=1699 y=495 width=32 height=24 xoffset=-4 yoffset=68 xadvance=31 page=0 chnl=0 -char id=8224 x=1742 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 -char id=8225 x=1773 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 -char id=8226 x=1817 y=495 width=19 height=21 xoffset=-4 yoffset=41 xadvance=19 page=0 chnl=0 -char id=8230 x=1928 y=495 width=48 height=19 xoffset=-4 yoffset=68 xadvance=47 page=0 chnl=0 -char id=8240 x=924 y=196 width=64 height=84 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 -char id=8249 x=1036 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 -char id=8250 x=1059 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 -char id=8260 x=783 y=0 width=47 height=97 xoffset=-4 yoffset=3 xadvance=46 page=0 chnl=0 -char id=8355 x=688 y=495 width=31 height=47 xoffset=-4 yoffset=7 xadvance=30 page=0 chnl=0 -char id=8356 x=655 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 -char id=8359 x=553 y=495 width=41 height=49 xoffset=-4 yoffset=7 xadvance=40 page=0 chnl=0 -char id=8364 x=719 y=495 width=41 height=47 xoffset=-4 yoffset=7 xadvance=39 page=0 chnl=0 -kernings count=18097 -kerning first=269 second=289 amount=1 -kerning first=272 second=69 amount=-6 -kerning first=292 second=226 amount=2 -kerning first=207 second=238 amount=-2 -kerning first=312 second=353 amount=1 -kerning first=338 second=70 amount=-7 -kerning first=358 second=227 amount=-10 -kerning first=73 second=263 amount=-2 -kerning first=339 second=240 amount=2 -kerning first=119 second=107 amount=2 -kerning first=254 second=252 amount=2 -kerning first=57 second=56 amount=2 -kerning first=192 second=201 amount=-10 -kerning first=77 second=213 amount=3 -kerning first=100 second=120 amount=2 -kerning first=258 second=202 amount=-10 -kerning first=366 second=97 amount=2 -kerning first=193 second=341 amount=-12 -kerning first=196 second=121 amount=-4 -kerning first=347 second=110 amount=1 -kerning first=197 second=291 amount=-10 -kerning first=220 second=228 amount=2 -kerning first=105 second=240 amount=2 -kerning first=240 second=355 amount=-1 -kerning first=348 second=280 amount=-3 -kerning first=329 second=293 amount=-1 -kerning first=332 second=73 amount=3 -kerning first=267 second=242 amount=-1 -kerning first=287 second=369 amount=2 -kerning first=70 second=46 amount=-8 -kerning first=225 second=318 amount=-1 -kerning first=228 second=98 amount=-1 -kerning first=376 second=307 amount=-3 -kerning first=206 second=331 amount=-2 -kerning first=160 second=72 amount=-6 -kerning first=272 second=332 amount=4 -kerning first=360 second=100 amount=2 -kerning first=72 second=356 amount=-6 -kerning first=341 second=113 amount=-2 -kerning first=118 second=230 amount=2 -kerning first=358 second=8211 amount=-7 -kerning first=276 second=282 amount=-5 -kerning first=194 second=74 amount=-9 -kerning first=99 second=243 amount=-1 -kerning first=257 second=295 amount=-1 -kerning first=260 second=75 amount=-5 -kerning first=195 second=244 amount=-12 -kerning first=300 second=359 amount=-2 -kerning first=80 second=256 amount=-14 -kerning first=304 second=309 amount=-14 -kerning first=84 second=206 amount=-2 -kerning first=107 second=113 amount=2 -kerning first=347 second=373 amount=1 -kerning first=285 second=322 amount=2 -kerning first=223 second=271 amount=2 -kerning first=108 second=283 amount=1 -kerning first=354 second=103 amount=-10 -kerning first=269 second=115 amount=1 -kerning first=374 second=260 amount=-3 -kerning first=335 second=116 amount=-1 -kerning first=112 second=233 amount=2 -kerning first=355 second=273 amount=2 -kerning first=270 second=285 amount=2 -kerning first=70 second=309 amount=-13 -kerning first=359 second=223 amount=4 -kerning first=74 second=259 amount=-5 -kerning first=232 second=311 amount=-1 -kerning first=120 second=103 amount=2 -kerning first=193 second=197 amount=-7 -kerning first=298 second=312 amount=-2 -kerning first=101 second=116 amount=-1 -kerning first=121 second=273 amount=7 -kerning first=59 second=222 amount=-4 -kerning first=194 second=337 amount=-12 -kerning first=197 second=117 amount=-13 -kerning first=217 second=274 amount=-6 -kerning first=325 second=199 amount=3 -kerning first=348 second=106 amount=-11 -kerning first=260 second=338 amount=-11 -kerning first=263 second=118 amount=-1 -kerning first=283 second=275 amount=1 -kerning first=198 second=287 amount=-3 -kerning first=86 second=79 amount=5 -kerning first=221 second=224 amount=-3 -kerning first=241 second=351 amount=1 -kerning first=287 second=225 amount=5 -kerning first=330 second=289 amount=2 -kerning first=245 second=301 amount=-2 -kerning first=353 second=226 amount=3 -kerning first=8212 second=121 amount=2 -kerning first=373 second=353 amount=1 -kerning first=45 second=325 amount=-2 -kerning first=68 second=262 amount=4 -kerning first=226 second=314 amount=-1 -kerning first=111 second=326 amount=-2 -kerning first=114 second=106 amount=-10 -kerning first=358 second=316 amount=-3 -kerning first=296 second=265 amount=-2 -kerning first=119 second=226 amount=5 -kerning first=362 second=266 amount=2 -kerning first=192 second=290 amount=-11 -kerning first=195 second=70 amount=-17 -kerning first=80 second=82 amount=-7 -kerning first=323 second=122 amount=3 -kerning first=343 second=279 amount=-2 -kerning first=346 second=59 amount=-4 -kerning first=258 second=291 amount=-10 -kerning first=366 second=216 amount=2 -kerning first=281 second=228 amount=2 -kerning first=196 second=240 amount=-10 -kerning first=347 second=229 amount=3 -kerning first=65 second=45 amount=-12 -kerning first=85 second=202 amount=-6 -kerning first=223 second=97 amount=2 -kerning first=105 second=329 amount=-2 -kerning first=243 second=254 amount=-1 -kerning first=286 second=318 amount=2 -kerning first=289 second=98 amount=2 -kerning first=204 second=110 amount=-2 -kerning first=355 second=99 amount=1 -kerning first=8211 second=244 amount=4 -kerning first=67 second=355 amount=2 -kerning first=113 second=229 amount=2 -kerning first=356 second=269 amount=-7 -kerning first=271 second=281 amount=-9 -kerning first=71 second=305 amount=1 -kerning first=229 second=357 amount=-1 -kerning first=275 second=231 amount=1 -kerning first=341 second=232 amount=-2 -kerning first=121 second=99 amount=3 -kerning first=256 second=244 amount=-12 -kerning first=361 second=359 amount=-1 -kerning first=276 second=371 amount=-2 -kerning first=194 second=193 amount=-7 -kerning first=302 second=88 amount=2 -kerning first=79 second=205 amount=3 -kerning first=217 second=100 amount=2 -kerning first=102 second=112 amount=-7 -kerning first=237 second=257 amount=2 -kerning first=260 second=194 amount=-7 -kerning first=365 second=309 amount=-10 -kerning first=368 second=89 amount=2 -kerning first=283 second=101 amount=1 -kerning first=195 second=333 amount=-12 -kerning first=198 second=113 amount=-3 -kerning first=218 second=270 amount=-6 -kerning first=369 second=259 amount=2 -kerning first=84 second=295 amount=-3 -kerning first=107 second=232 amount=1 -kerning first=350 second=272 amount=-3 -kerning first=68 second=88 amount=-3 -kerning first=88 second=245 amount=-2 -kerning first=331 second=285 amount=2 -kerning first=246 second=297 amount=-2 -kerning first=354 second=222 amount=-5 -kerning first=374 second=349 amount=-4 -kerning first=289 second=361 amount=2 -kerning first=204 second=373 amount=-2 -kerning first=112 second=322 amount=3 -kerning first=53 second=51 amount=1 -kerning first=316 second=248 amount=1 -kerning first=359 second=312 amount=-1 -kerning first=274 second=324 amount=-2 -kerning first=277 second=104 amount=-1 -kerning first=192 second=116 amount=-12 -kerning first=97 second=285 amount=2 -kerning first=258 second=117 amount=-13 -kerning first=278 second=274 amount=-5 -kerning first=193 second=286 amount=-11 -kerning first=196 second=66 amount=-8 -kerning first=101 second=235 amount=1 -kerning first=259 second=287 amount=2 -kerning first=302 second=351 amount=-2 -kerning first=325 second=288 amount=3 -kerning first=102 second=375 amount=-7 -kerning first=86 second=198 amount=-6 -kerning first=221 second=313 amount=-3 -kerning first=244 second=250 amount=-2 -kerning first=349 second=365 amount=1 -kerning first=8211 second=70 amount=-7 -kerning first=44 second=274 amount=-4 -kerning first=287 second=314 amount=2 -kerning first=202 second=326 amount=-2 -kerning first=205 second=106 amount=-14 -kerning first=87 second=338 amount=2 -kerning first=8212 second=240 amount=4 -kerning first=268 second=327 amount=4 -kerning first=337 second=108 amount=-1 -kerning first=114 second=225 amount=-2 -kerning first=357 second=265 amount=-9 -kerning first=75 second=81 amount=-8 -kerning first=318 second=121 amount=-11 -kerning first=230 second=353 amount=1 -kerning first=338 second=278 amount=-4 -kerning first=341 second=58 amount=-7 -kerning first=115 second=365 amount=1 -kerning first=256 second=70 amount=-17 -kerning first=296 second=354 amount=-2 -kerning first=257 second=240 amount=2 -kerning first=192 second=379 amount=-7 -kerning first=80 second=201 amount=-9 -kerning first=103 second=108 amount=2 -kerning first=196 second=329 amount=-19 -kerning first=304 second=254 amount=-2 -kerning first=84 second=121 amount=-10 -kerning first=222 second=46 amount=-8 -kerning first=347 second=318 amount=1 -kerning first=262 second=330 amount=4 -kerning first=285 second=267 amount=2 -kerning first=85 second=291 amount=2 -kerning first=88 second=71 amount=-4 -kerning first=108 second=228 amount=2 -kerning first=266 second=280 amount=-2 -kerning first=69 second=84 amount=-5 -kerning first=8211 second=333 amount=4 -kerning first=290 second=357 amount=2 -kerning first=70 second=254 amount=-2 -kerning first=205 second=369 amount=-2 -kerning first=113 second=318 amount=-1 -kerning first=356 second=358 amount=-8 -kerning first=337 second=371 amount=-2 -kerning first=160 second=280 amount=-6 -kerning first=275 second=320 amount=-1 -kerning first=75 second=344 amount=-7 -kerning first=98 second=281 amount=2 -kerning first=256 second=333 amount=-12 -kerning first=259 second=113 amount=2 -kerning first=194 second=282 amount=-10 -kerning first=102 second=231 amount=-8 -kerning first=345 second=271 amount=-2 -kerning first=368 second=208 amount=-6 -kerning first=198 second=232 amount=-5 -kerning first=303 second=347 amount=1 -kerning first=103 second=371 amount=2 -kerning first=222 second=309 amount=-11 -kerning first=8212 second=66 amount=-7 -kerning first=265 second=373 amount=-1 -kerning first=45 second=270 amount=-7 -kerning first=206 second=102 amount=-3 -kerning first=88 second=334 amount=-4 -kerning first=226 second=259 amount=2 -kerning first=354 second=311 amount=-3 -kerning first=272 second=103 amount=2 -kerning first=335 second=324 amount=-2 -kerning first=273 second=273 amount=2 -kerning first=73 second=297 amount=-2 -kerning first=316 second=337 amount=1 -kerning first=231 second=349 amount=1 -kerning first=362 second=211 amount=2 -kerning first=277 second=223 amount=4 -kerning first=192 second=235 amount=-12 -kerning first=323 second=67 amount=3 -kerning first=343 second=224 amount=-2 -kerning first=120 second=311 amount=-1 -kerning first=363 second=351 amount=1 -kerning first=278 second=363 amount=-2 -kerning first=193 second=375 amount=-4 -kerning first=304 second=80 amount=-2 -kerning first=104 second=104 amount=-1 -kerning first=370 second=81 amount=2 -kerning first=197 second=325 amount=-15 -kerning first=82 second=337 amount=-2 -kerning first=325 second=377 amount=4 -kerning first=86 second=287 amount=6 -kerning first=89 second=67 amount=-1 -kerning first=109 second=224 amount=2 -kerning first=352 second=264 amount=3 -kerning first=67 second=300 amount=3 -kerning first=70 second=80 amount=-7 -kerning first=356 second=214 amount=-2 -kerning first=271 second=226 amount=-8 -kerning first=376 second=341 amount=-5 -kerning first=291 second=353 amount=2 -kerning first=206 second=365 amount=-2 -kerning first=114 second=314 amount=-1 -kerning first=160 second=106 amount=-9 -kerning first=75 second=200 amount=-9 -kerning first=318 second=240 amount=-8 -kerning first=98 second=107 amount=3 -kerning first=364 second=84 amount=-6 -kerning first=194 second=108 amount=-12 -kerning first=76 second=340 amount=-4 -kerning first=345 second=97 amount=-2 -kerning first=257 second=329 amount=-3 -kerning first=260 second=109 amount=-13 -kerning first=365 second=254 amount=-1 -kerning first=195 second=278 amount=-10 -kerning first=80 second=290 amount=3 -kerning first=83 second=70 amount=-3 -kerning first=103 second=227 amount=5 -kerning first=84 second=240 amount=-10 -kerning first=327 second=280 amount=-6 -kerning first=265 second=229 amount=1 -kerning first=370 second=344 amount=-2 -kerning first=331 second=230 amount=1 -kerning first=351 second=357 amount=1 -kerning first=46 second=266 amount=-3 -kerning first=69 second=203 amount=-5 -kerning first=204 second=318 amount=-2 -kerning first=207 second=98 amount=-2 -kerning first=312 second=243 amount=1 -kerning first=112 second=267 amount=2 -kerning first=358 second=87 amount=-1 -kerning first=70 second=343 amount=-3 -kerning first=208 second=268 amount=4 -kerning first=339 second=100 amount=2 -kerning first=254 second=112 amount=2 -kerning first=359 second=257 amount=2 -kerning first=97 second=230 amount=1 -kerning first=337 second=8211 amount=3 -kerning first=117 second=357 amount=-1 -kerning first=193 second=231 amount=-12 -kerning first=121 second=307 amount=3 -kerning first=279 second=359 amount=-1 -kerning first=194 second=371 amount=-13 -kerning first=82 second=193 amount=3 -kerning first=220 second=88 amount=3 -kerning first=105 second=100 amount=2 -kerning first=240 second=245 amount=1 -kerning first=283 second=309 amount=-13 -kerning first=286 second=89 amount=4 -kerning first=86 second=113 amount=6 -kerning first=221 second=258 amount=-3 -kerning first=103 second=8211 amount=4 -kerning first=264 second=322 amount=2 -kerning first=287 second=259 amount=5 -kerning first=268 second=272 amount=-2 -kerning first=376 second=197 amount=-3 -kerning first=272 second=222 amount=-5 -kerning first=207 second=361 amount=-2 -kerning first=358 second=350 amount=-6 -kerning first=296 second=299 amount=-2 -kerning first=99 second=103 amount=1 -kerning first=234 second=248 amount=1 -kerning first=254 second=375 amount=2 -kerning first=192 second=324 amount=-13 -kerning first=195 second=104 amount=-12 -kerning first=77 second=336 amount=3 -kerning first=300 second=249 amount=-2 -kerning first=100 second=273 amount=2 -kerning first=258 second=325 amount=-15 -kerning first=196 second=274 amount=-10 -kerning first=84 second=66 amount=-8 -kerning first=327 second=106 amount=-12 -kerning first=104 second=223 amount=3 -kerning first=242 second=118 amount=-2 -kerning first=347 second=263 amount=1 -kerning first=370 second=200 amount=-6 -kerning first=65 second=79 amount=-11 -kerning first=374 second=120 amount=-7 -kerning first=309 second=289 amount=2 -kerning first=8211 second=278 amount=-7 -kerning first=290 second=302 amount=3 -kerning first=205 second=314 amount=-2 -kerning first=113 second=263 amount=1 -kerning first=356 second=303 amount=-2 -kerning first=71 second=339 amount=3 -kerning first=209 second=264 amount=3 -kerning first=212 second=44 amount=-5 -kerning first=337 second=316 amount=-1 -kerning first=275 second=265 amount=1 -kerning first=75 second=289 amount=-7 -kerning first=78 second=69 amount=-6 -kerning first=98 second=226 amount=5 -kerning first=118 second=353 amount=2 -kerning first=256 second=278 amount=-10 -kerning first=364 second=203 amount=-6 -kerning first=59 second=82 amount=-4 -kerning first=194 second=227 amount=-10 -kerning first=237 second=291 amount=2 -kerning first=260 second=228 amount=-10 -kerning first=195 second=367 amount=-13 -kerning first=80 second=379 amount=-4 -kerning first=103 second=316 amount=2 -kerning first=326 second=229 amount=2 -kerning first=346 second=356 amount=-3 -kerning first=369 second=293 amount=-1 -kerning first=307 second=242 amount=1 -kerning first=265 second=318 amount=-1 -kerning first=268 second=98 amount=2 -kerning first=373 second=243 amount=4 -kerning first=65 second=342 amount=-17 -kerning first=88 second=279 amount=-2 -kerning first=246 second=331 amount=-2 -kerning first=354 second=256 amount=-13 -kerning first=358 second=206 amount=-2 -kerning first=73 second=242 amount=-2 -kerning first=254 second=231 amount=2 -kerning first=274 second=358 amount=-5 -kerning first=382 second=283 amount=1 -kerning first=320 second=232 amount=-1 -kerning first=100 second=99 amount=1 -kerning first=235 second=244 amount=1 -kerning first=340 second=359 amount=-2 -kerning first=193 second=320 amount=-12 -kerning first=196 second=100 amount=-10 -kerning first=301 second=245 amount=1 -kerning first=78 second=332 amount=3 -kerning first=101 second=269 amount=1 -kerning first=194 second=8211 amount=-12 -kerning first=197 second=270 amount=-10 -kerning first=243 second=114 amount=-2 -kerning first=260 second=8212 amount=-12 -kerning first=263 second=271 amount=1 -kerning first=286 second=208 amount=-2 -kerning first=66 second=75 amount=-3 -kerning first=86 second=232 amount=3 -kerning first=221 second=347 amount=-4 -kerning first=110 second=309 amount=-10 -kerning first=8212 second=274 amount=-7 -kerning first=376 second=286 amount=-1 -kerning first=209 second=90 amount=4 -kerning first=114 second=259 amount=-2 -kerning first=357 second=299 amount=-3 -kerning first=360 second=79 amount=2 -kerning first=75 second=115 amount=-8 -kerning first=256 second=104 amount=-12 -kerning first=234 second=337 amount=1 -kerning first=119 second=349 amount=2 -kerning first=195 second=223 amount=-10 -kerning first=238 second=287 amount=2 -kerning first=346 second=212 amount=3 -kerning first=261 second=224 amount=2 -kerning first=281 second=351 amount=1 -kerning first=196 second=363 amount=-13 -kerning first=222 second=80 amount=-7 -kerning first=327 second=225 amount=2 -kerning first=104 second=312 amount=-1 -kerning first=242 second=237 amount=-2 -kerning first=370 second=289 amount=2 -kerning first=285 second=301 amount=3 -kerning first=65 second=198 amount=-6 -kerning first=354 second=82 amount=-5 -kerning first=266 second=314 amount=2 -kerning first=46 second=211 amount=-3 -kerning first=289 second=251 amount=2 -kerning first=69 second=118 amount=-2 -kerning first=204 second=263 amount=-2 -kerning first=8211 second=367 amount=2 -kerning first=270 second=264 amount=4 -kerning first=208 second=213 amount=4 -kerning first=231 second=120 amount=2 -kerning first=74 second=238 amount=-1 -kerning first=360 second=342 amount=-2 -kerning first=236 second=240 amount=2 -kerning first=341 second=355 amount=-1 -kerning first=121 second=252 amount=3 -kerning first=256 second=367 amount=-13 -kerning first=282 second=84 amount=-5 -kerning first=59 second=201 amount=-4 -kerning first=194 second=316 amount=-12 -kerning first=302 second=241 amount=-2 -kerning first=82 second=108 amount=-2 -kerning first=102 second=265 amount=-8 -kerning first=263 second=97 amount=1 -kerning first=283 second=254 amount=-1 -kerning first=198 second=266 amount=-7 -kerning first=83 second=278 amount=-3 -kerning first=221 second=203 amount=-4 -kerning first=326 second=318 amount=-1 -kerning first=329 second=98 amount=-1 -kerning first=244 second=110 amount=-2 -kerning first=87 second=228 amount=2 -kerning first=330 second=268 amount=3 -kerning first=8212 second=100 amount=4 -kerning first=45 second=304 amount=-5 -kerning first=376 second=112 amount=-5 -kerning first=203 second=356 amount=-5 -kerning first=311 second=281 amount=1 -kerning first=226 second=293 amount=-1 -kerning first=354 second=345 amount=-6 -kerning first=269 second=357 amount=-1 -kerning first=230 second=243 amount=1 -kerning first=358 second=295 amount=-3 -kerning first=296 second=244 amount=-2 -kerning first=73 second=331 amount=-2 -kerning first=254 second=320 amount=3 -kerning first=257 second=100 amount=2 -kerning first=277 second=257 amount=2 -kerning first=192 second=269 amount=-12 -kerning first=235 second=333 amount=1 -kerning first=238 second=113 amount=2 -kerning first=258 second=270 amount=-10 -kerning first=304 second=114 amount=-2 -kerning first=324 second=271 amount=2 -kerning first=197 second=359 amount=-12 -kerning first=371 second=285 amount=2 -kerning first=374 second=65 amount=-3 -kerning first=66 second=194 amount=-5 -kerning first=201 second=309 amount=-10 -kerning first=309 second=234 amount=1 -kerning first=244 second=373 amount=-2 -kerning first=375 second=235 amount=3 -kerning first=70 second=114 amount=-3 -kerning first=333 second=311 amount=-1 -kerning first=356 second=248 amount=-7 -kerning first=8212 second=363 amount=2 -kerning first=376 second=375 amount=-5 -kerning first=71 second=284 amount=3 -kerning first=232 second=116 amount=-1 -kerning first=298 second=117 amount=-2 -kerning first=75 second=234 amount=-10 -kerning first=256 second=223 amount=-10 -kerning first=299 second=287 amount=2 -kerning first=368 second=68 amount=-6 -kerning first=195 second=312 amount=-12 -kerning first=80 second=324 amount=1 -kerning first=84 second=274 amount=-8 -kerning first=222 second=199 amount=4 -kerning first=242 second=326 amount=-2 -kerning first=245 second=106 amount=-13 -kerning first=65 second=287 amount=-10 -kerning first=68 second=67 amount=4 -kerning first=223 second=339 amount=1 -kerning first=334 second=44 amount=-5 -kerning first=108 second=351 amount=1 -kerning first=354 second=201 amount=-8 -kerning first=374 second=328 amount=-5 -kerning first=312 second=277 amount=1 -kerning first=227 second=289 amount=2 -kerning first=112 second=301 amount=2 -kerning first=358 second=121 amount=-10 -kerning first=296 second=70 amount=-2 -kerning first=316 second=227 amount=2 -kerning first=359 second=291 amount=2 -kerning first=362 second=71 amount=2 -kerning first=297 second=240 amount=2 -kerning first=193 second=265 amount=-12 -kerning first=196 second=45 amount=-12 -kerning first=324 second=97 amount=2 -kerning first=236 second=329 amount=-2 -kerning first=344 second=254 amount=-2 -kerning first=364 second=381 amount=4 -kerning first=282 second=203 amount=-5 -kerning first=59 second=290 amount=-3 -kerning first=217 second=342 amount=-2 -kerning first=240 second=279 amount=1 -kerning first=198 second=355 amount=-2 -kerning first=264 second=356 amount=-2 -kerning first=287 second=293 amount=2 -kerning first=290 second=73 amount=3 -kerning first=110 second=254 amount=-1 -kerning first=245 second=369 amount=-2 -kerning first=356 second=74 amount=-7 -kerning first=376 second=231 amount=-4 -kerning first=291 second=243 amount=2 -kerning first=71 second=110 amount=2 -kerning first=357 second=244 amount=-9 -kerning first=272 second=256 amount=-8 -kerning first=72 second=280 amount=-6 -kerning first=210 second=205 amount=3 -kerning first=318 second=100 amount=-8 -kerning first=296 second=333 amount=-2 -kerning first=299 second=113 amount=2 -kerning first=362 second=334 amount=2 -kerning first=192 second=358 amount=-20 -kerning first=300 second=283 amount=-2 -kerning first=343 second=347 amount=-2 -kerning first=258 second=359 amount=-12 -kerning first=366 second=284 amount=2 -kerning first=199 second=88 amount=1 -kerning first=304 second=233 amount=-2 -kerning first=84 second=100 amount=-10 -kerning first=104 second=257 amount=2 -kerning first=347 second=297 amount=1 -kerning first=65 second=113 amount=-10 -kerning first=285 second=246 amount=2 -kerning first=85 second=270 amount=-6 -kerning first=243 second=322 amount=-1 -kerning first=246 second=102 amount=-2 -kerning first=66 second=283 amount=2 -kerning first=312 second=103 amount=2 -kerning first=227 second=115 amount=1 -kerning first=109 second=347 amount=1 -kerning first=8211 second=312 amount=2 -kerning first=375 second=324 amount=3 -kerning first=70 second=233 amount=-4 -kerning first=228 second=285 amount=2 -kerning first=356 second=337 amount=-7 -kerning first=271 second=349 amount=-8 -kerning first=71 second=373 amount=2 -kerning first=232 second=235 amount=1 -kerning first=360 second=287 amount=2 -kerning first=298 second=236 amount=-2 -kerning first=78 second=103 amount=2 -kerning first=318 second=363 amount=-9 -kerning first=344 second=80 amount=-8 -kerning first=256 second=312 amount=-12 -kerning first=260 second=262 amount=-11 -kerning first=198 second=211 amount=-7 -kerning first=83 second=223 amount=2 -kerning first=221 second=118 amount=-4 -kerning first=44 second=79 amount=-3 -kerning first=287 second=119 amount=2 -kerning first=84 second=363 amount=-6 -kerning first=222 second=288 amount=4 -kerning first=330 second=213 amount=3 -kerning first=350 second=340 amount=-3 -kerning first=353 second=120 amount=2 -kerning first=373 second=277 amount=4 -kerning first=45 second=249 amount=2 -kerning first=311 second=226 amount=2 -kerning first=331 second=353 amount=1 -kerning first=111 second=250 amount=-2 -kerning first=246 second=365 amount=-2 -kerning first=354 second=290 amount=-2 -kerning first=272 second=82 amount=-3 -kerning first=69 second=326 amount=-2 -kerning first=72 second=106 amount=-12 -kerning first=207 second=251 amount=-2 -kerning first=358 second=240 amount=-10 -kerning first=234 second=108 amount=-1 -kerning first=119 second=120 amount=5 -kerning first=254 second=265 amount=2 -kerning first=192 second=214 amount=-11 -kerning first=297 second=329 amount=-2 -kerning first=300 second=109 amount=-2 -kerning first=77 second=226 amount=1 -kerning first=97 second=353 amount=1 -kerning first=278 second=342 amount=-6 -kerning first=193 second=354 amount=-20 -kerning first=301 second=279 amount=1 -kerning first=239 second=228 amount=2 -kerning first=259 second=355 amount=-1 -kerning first=197 second=304 amount=-7 -kerning first=200 second=84 amount=-5 -kerning first=82 second=316 amount=-2 -kerning first=305 second=229 amount=2 -kerning first=325 second=356 amount=-6 -kerning first=266 second=85 amount=4 -kerning first=371 second=230 amount=1 -kerning first=86 second=266 amount=5 -kerning first=89 second=46 amount=-5 -kerning first=221 second=381 amount=-2 -kerning first=244 second=318 amount=-1 -kerning first=44 second=342 amount=-4 -kerning first=70 second=59 amount=-8 -kerning first=356 second=193 amount=-13 -kerning first=376 second=320 amount=-2 -kerning first=71 second=229 amount=5 -kerning first=206 second=344 amount=-2 -kerning first=114 second=293 amount=-1 -kerning first=357 second=333 amount=-9 -kerning first=160 second=85 amount=-3 -kerning first=360 second=113 amount=2 -kerning first=377 second=8211 amount=-6 -kerning first=233 second=231 amount=1 -kerning first=118 second=243 amount=4 -kerning first=194 second=87 amount=-7 -kerning first=260 second=88 amount=-9 -kerning first=280 second=245 amount=-2 -kerning first=195 second=257 amount=-10 -kerning first=323 second=309 amount=-12 -kerning first=199 second=207 amount=3 -kerning first=304 second=322 amount=-2 -kerning first=327 second=259 amount=2 -kerning first=350 second=196 amount=-9 -kerning first=45 second=75 amount=-5 -kerning first=373 second=103 amount=2 -kerning first=285 second=335 amount=2 -kerning first=65 second=232 amount=-12 -kerning first=354 second=116 amount=-3 -kerning first=374 second=273 amount=-3 -kerning first=289 second=285 amount=5 -kerning first=204 second=297 amount=-2 -kerning first=112 second=246 amount=2 -kerning first=358 second=66 amount=-8 -kerning first=70 second=322 amount=-2 -kerning first=73 second=102 amount=-3 -kerning first=274 second=248 amount=-2 -kerning first=74 second=272 amount=-5 -kerning first=235 second=104 amount=-1 -kerning first=120 second=116 amount=-1 -kerning first=160 second=348 amount=-3 -kerning first=193 second=210 amount=-11 -kerning first=78 second=222 amount=-2 -kerning first=98 second=349 amount=2 -kerning first=367 second=106 amount=-10 -kerning first=282 second=118 amount=-2 -kerning first=194 second=350 amount=-8 -kerning first=302 second=275 amount=-2 -kerning first=217 second=287 amount=2 -kerning first=325 second=212 amount=3 -kerning first=102 second=299 amount=-7 -kerning first=240 second=224 amount=2 -kerning first=345 second=339 amount=-2 -kerning first=260 second=351 amount=-11 -kerning first=368 second=276 amount=-6 -kerning first=286 second=68 amount=-2 -kerning first=201 second=80 amount=-6 -kerning first=221 second=237 amount=-3 -kerning first=349 second=289 amount=3 -kerning first=352 second=69 amount=-3 -kerning first=372 second=226 amount=2 -kerning first=287 second=238 amount=3 -kerning first=87 second=262 amount=2 -kerning first=245 second=314 amount=-1 -kerning first=353 second=239 amount=1 -kerning first=45 second=338 amount=5 -kerning first=229 second=107 amount=-1 -kerning first=354 second=379 amount=-2 -kerning first=272 second=201 amount=-6 -kerning first=295 second=108 amount=-1 -kerning first=72 second=225 amount=2 -kerning first=207 second=340 amount=-2 -kerning first=230 second=277 amount=1 -kerning first=338 second=202 amount=-4 -kerning first=115 second=289 amount=3 -kerning first=276 second=121 amount=-3 -kerning first=73 second=365 amount=-2 -kerning first=234 second=227 amount=2 -kerning first=119 second=239 amount=2 -kerning first=277 second=291 amount=2 -kerning first=195 second=83 amount=-8 -kerning first=320 second=355 amount=-2 -kerning first=258 second=304 amount=-7 -kerning first=366 second=229 amount=2 -kerning first=84 second=45 amount=-7 -kerning first=347 second=242 amount=1 -kerning first=262 second=254 amount=2 -kerning first=65 second=58 amount=-10 -kerning first=200 second=203 amount=-5 -kerning first=266 second=204 amount=3 -kerning first=46 second=71 amount=-3 -kerning first=374 second=99 amount=-4 -kerning first=289 second=111 amount=2 -kerning first=66 second=228 amount=3 -kerning first=86 second=355 amount=3 -kerning first=332 second=205 amount=3 -kerning first=352 second=332 amount=3 -kerning first=8211 second=257 amount=4 -kerning first=375 second=269 amount=3 -kerning first=205 second=293 amount=-2 -kerning first=228 second=230 amount=1 -kerning first=113 second=242 amount=1 -kerning first=248 second=357 amount=-1 -kerning first=356 second=282 amount=-8 -kerning first=71 second=318 amount=2 -kerning first=160 second=204 amount=-4 -kerning first=275 second=244 amount=1 -kerning first=75 second=268 amount=-8 -kerning first=233 second=320 amount=-1 -kerning first=236 second=100 amount=2 -kerning first=341 second=245 amount=-2 -kerning first=121 second=112 amount=3 -kerning first=256 second=257 amount=-10 -kerning first=194 second=206 amount=-7 -kerning first=302 second=101 amount=-2 -kerning first=217 second=113 amount=2 -kerning first=260 second=207 amount=-7 -kerning first=365 second=322 amount=-1 -kerning first=195 second=346 amount=-8 -kerning first=303 second=271 amount=2 -kerning first=80 second=358 amount=-9 -kerning first=103 second=295 amount=2 -kerning first=261 second=347 amount=1 -kerning first=199 second=296 amount=3 -kerning first=87 second=88 amount=3 -kerning first=107 second=245 amount=1 -kerning first=45 second=194 amount=-13 -kerning first=203 second=246 amount=-2 -kerning first=88 second=258 amount=-5 -kerning first=354 second=235 amount=-7 -kerning first=46 second=334 amount=-3 -kerning first=66 second=8212 amount=5 -kerning first=230 second=103 amount=2 -kerning first=112 second=335 amount=2 -kerning first=296 second=104 amount=-2 -kerning first=208 second=336 amount=4 -kerning first=231 second=273 amount=1 -kerning first=116 second=285 amount=2 -kerning first=274 second=337 amount=-2 -kerning first=74 second=361 amount=-4 -kerning first=235 second=223 amount=4 -kerning first=196 second=79 amount=-11 -kerning first=301 second=224 amount=2 -kerning first=101 second=248 amount=1 -kerning first=121 second=375 amount=3 -kerning first=262 second=80 amount=-2 -kerning first=367 second=225 amount=2 -kerning first=86 second=211 amount=5 -kerning first=221 second=326 amount=-5 -kerning first=224 second=106 amount=-10 -kerning first=290 second=107 amount=2 -kerning first=205 second=119 amount=-2 -kerning first=353 second=328 amount=1 -kerning first=356 second=108 amount=-3 -kerning first=268 second=340 amount=-4 -kerning first=271 second=120 amount=-11 -kerning first=376 second=265 amount=-4 -kerning first=291 second=277 amount=2 -kerning first=379 second=45 amount=-6 -kerning first=209 second=69 amount=-6 -kerning first=8212 second=253 amount=2 -kerning first=229 second=226 amount=2 -kerning first=337 second=121 amount=-2 -kerning first=272 second=290 amount=4 -kerning first=295 second=227 amount=2 -kerning first=256 second=83 amount=-8 -kerning first=361 second=228 amount=2 -kerning first=296 second=367 amount=-2 -kerning first=79 second=44 amount=-5 -kerning first=234 second=316 amount=-1 -kerning first=119 second=328 amount=2 -kerning first=195 second=202 amount=-10 -kerning first=303 second=97 amount=2 -kerning first=80 second=214 amount=3 -kerning first=103 second=121 amount=2 -kerning first=369 second=98 amount=-1 -kerning first=196 second=342 amount=-17 -kerning first=304 second=267 amount=-2 -kerning first=222 second=59 amount=-8 -kerning first=104 second=291 amount=2 -kerning first=347 second=331 amount=1 -kerning first=370 second=268 amount=2 -kerning first=88 second=84 amount=-2 -kerning first=223 second=229 amount=2 -kerning first=351 second=281 amount=1 -kerning first=266 second=293 amount=2 -kerning first=289 second=230 amount=2 -kerning first=204 second=242 amount=-2 -kerning first=89 second=254 amount=-2 -kerning first=355 second=231 amount=1 -kerning first=70 second=267 amount=-4 -kerning first=208 second=192 amount=-8 -kerning first=116 second=111 amount=1 -kerning first=356 second=371 amount=-6 -kerning first=297 second=100 amount=2 -kerning first=209 second=332 amount=3 -kerning first=232 second=269 amount=1 -kerning first=340 second=194 amount=3 -kerning first=275 second=333 amount=1 -kerning first=75 second=357 amount=-7 -kerning first=121 second=231 amount=3 -kerning first=256 second=346 amount=-8 -kerning first=364 second=271 amount=2 -kerning first=279 second=283 amount=1 -kerning first=194 second=295 amount=-12 -kerning first=197 second=75 amount=-5 -kerning first=102 second=244 amount=-8 -kerning first=260 second=296 amount=-7 -kerning first=283 second=233 amount=1 -kerning first=198 second=245 amount=-5 -kerning first=241 second=309 amount=-10 -kerning first=349 second=234 amount=1 -kerning first=8212 second=79 amount=5 -kerning first=373 second=311 amount=2 -kerning first=45 second=283 amount=4 -kerning first=203 second=335 amount=-2 -kerning first=206 second=115 amount=-2 -kerning first=291 second=103 amount=5 -kerning first=354 second=324 amount=-6 -kerning first=292 second=273 amount=2 -kerning first=115 second=234 amount=1 -kerning first=358 second=274 amount=-8 -kerning first=276 second=66 amount=-5 -kerning first=76 second=90 amount=2 -kerning first=339 second=287 amount=2 -kerning first=254 second=299 amount=2 -kerning first=362 second=224 amount=2 -kerning first=192 second=248 amount=-12 -kerning first=323 second=80 amount=-2 -kerning first=196 second=198 amount=-6 -kerning first=101 second=337 amount=1 -kerning first=367 second=314 amount=-1 -kerning first=282 second=326 amount=-2 -kerning first=197 second=338 amount=-11 -kerning first=200 second=118 amount=-2 -kerning first=105 second=287 amount=2 -kerning first=351 second=107 amount=1 -kerning first=374 second=44 amount=-5 -kerning first=286 second=276 amount=-2 -kerning first=86 second=300 amount=5 -kerning first=89 second=80 amount=-1 -kerning first=224 second=225 amount=2 -kerning first=8211 second=202 amount=-7 -kerning first=267 second=289 amount=1 -kerning first=270 second=69 amount=-6 -kerning first=205 second=238 amount=-2 -kerning first=356 second=227 amount=-10 -kerning first=8212 second=342 amount=-6 -kerning first=271 second=239 amount=-3 -kerning first=71 second=263 amount=3 -kerning first=117 second=107 amount=-1 -kerning first=357 second=367 amount=-9 -kerning first=55 second=56 amount=-6 -kerning first=295 second=316 amount=-1 -kerning first=75 second=213 amount=-8 -kerning first=98 second=120 amount=-1 -kerning first=233 second=265 amount=1 -kerning first=118 second=277 amount=4 -kerning first=256 second=202 amount=-10 -kerning first=364 second=97 amount=2 -kerning first=194 second=121 amount=-4 -kerning first=260 second=122 amount=-7 -kerning first=195 second=291 amount=-10 -kerning first=198 second=71 amount=-7 -kerning first=80 second=303 amount=1 -kerning first=218 second=228 amount=2 -kerning first=103 second=240 amount=5 -kerning first=346 second=280 amount=-3 -kerning first=304 second=356 amount=-2 -kerning first=265 second=242 amount=-1 -kerning first=45 second=109 amount=2 -kerning first=285 second=369 amount=2 -kerning first=65 second=266 amount=-11 -kerning first=68 second=46 amount=-3 -kerning first=88 second=203 amount=-2 -kerning first=226 second=98 amount=-1 -kerning first=111 second=110 amount=-2 -kerning first=374 second=307 amount=-3 -kerning first=204 second=331 amount=-2 -kerning first=207 second=111 amount=-2 -kerning first=89 second=343 amount=-5 -kerning first=355 second=320 amount=-1 -kerning first=358 second=100 amount=-10 -kerning first=270 second=332 amount=4 -kerning first=70 second=356 amount=-9 -kerning first=339 second=113 amount=2 -kerning first=356 second=8211 amount=-7 -kerning first=274 second=282 amount=-5 -kerning first=192 second=74 amount=-9 -kerning first=258 second=75 amount=-5 -kerning first=193 second=244 amount=-12 -kerning first=298 second=359 amount=-2 -kerning first=121 second=320 amount=3 -kerning first=197 second=194 amount=-7 -kerning first=302 second=309 amount=-14 -kerning first=102 second=333 amount=-8 -kerning first=105 second=113 amount=2 -kerning first=283 second=322 amount=-1 -kerning first=198 second=334 amount=-7 -kerning first=221 second=271 amount=-3 -kerning first=106 second=283 amount=1 -kerning first=267 second=115 amount=1 -kerning first=330 second=336 amount=3 -kerning first=333 second=116 amount=-1 -kerning first=353 second=273 amount=3 -kerning first=376 second=210 amount=-1 -kerning first=68 second=309 amount=-12 -kerning first=71 second=89 amount=4 -kerning first=206 second=234 amount=-2 -kerning first=311 second=349 amount=1 -kerning first=111 second=373 amount=-2 -kerning first=357 second=223 amount=3 -kerning first=72 second=259 amount=2 -kerning first=230 second=311 amount=-1 -kerning first=118 second=103 amount=5 -kerning first=358 second=363 amount=-6 -kerning first=56 second=52 amount=-2 -kerning first=296 second=312 amount=-2 -kerning first=99 second=116 amount=-1 -kerning first=119 second=273 amount=5 -kerning first=192 second=337 amount=-12 -kerning first=195 second=117 amount=-13 -kerning first=323 second=199 amount=3 -kerning first=346 second=106 amount=-11 -kerning first=258 second=338 amount=-11 -kerning first=281 second=275 amount=1 -kerning first=196 second=287 amount=-10 -kerning first=84 second=79 amount=-2 -kerning first=219 second=224 amount=2 -kerning first=239 second=351 amount=1 -kerning first=370 second=213 amount=2 -kerning first=285 second=225 amount=5 -kerning first=328 second=289 amount=2 -kerning first=243 second=301 amount=-2 -kerning first=351 second=226 amount=3 -kerning first=371 second=353 amount=1 -kerning first=66 second=262 amount=3 -kerning first=89 second=199 amount=-1 -kerning first=224 second=314 amount=-1 -kerning first=112 second=106 amount=-8 -kerning first=8211 second=291 amount=4 -kerning first=375 second=303 amount=3 -kerning first=356 second=316 amount=-3 -kerning first=271 second=328 amount=-9 -kerning first=337 second=329 amount=-3 -kerning first=117 second=226 amount=2 -kerning first=360 second=266 amount=2 -kerning first=193 second=70 amount=-17 -kerning first=78 second=82 amount=-2 -kerning first=98 second=239 amount=2 -kerning first=341 second=279 amount=-2 -kerning first=256 second=291 amount=-10 -kerning first=364 second=216 amount=2 -kerning first=279 second=228 amount=2 -kerning first=194 second=240 amount=-10 -kerning first=345 second=229 amount=-2 -kerning first=83 second=202 amount=-3 -kerning first=221 second=97 amount=-3 -kerning first=241 second=254 amount=-1 -kerning first=284 second=318 amount=2 -kerning first=287 second=98 amount=2 -kerning first=199 second=330 amount=4 -kerning first=202 second=110 amount=-2 -kerning first=84 second=342 amount=-5 -kerning first=107 second=279 amount=1 -kerning first=353 second=99 amount=1 -kerning first=45 second=228 amount=4 -kerning first=65 second=355 amount=-12 -kerning first=203 second=280 amount=-5 -kerning first=354 second=269 amount=-7 -kerning first=227 second=357 amount=-1 -kerning first=112 second=369 amount=2 -kerning first=273 second=231 amount=1 -kerning first=339 second=232 amount=1 -kerning first=119 second=99 amount=4 -kerning first=254 second=244 amount=2 -kerning first=359 second=359 amount=-1 -kerning first=274 second=371 amount=-2 -kerning first=57 second=48 amount=2 -kerning first=192 second=193 amount=-7 -kerning first=300 second=88 amount=2 -kerning first=320 second=245 amount=-1 -kerning first=235 second=257 amount=2 -kerning first=258 second=194 amount=-7 -kerning first=363 second=309 amount=-10 -kerning first=366 second=89 amount=2 -kerning first=281 second=101 amount=1 -kerning first=193 second=333 amount=-12 -kerning first=196 second=113 amount=-10 -kerning first=213 second=8211 amount=3 -kerning first=367 second=259 amount=2 -kerning first=59 second=358 amount=-10 -kerning first=197 second=283 amount=-12 -kerning first=328 second=115 amount=1 -kerning first=105 second=232 amount=1 -kerning first=240 second=347 amount=1 -kerning first=348 second=272 amount=-3 -kerning first=86 second=245 amount=3 -kerning first=329 second=285 amount=2 -kerning first=352 second=222 amount=-3 -kerning first=8211 second=117 amount=2 -kerning first=287 second=361 amount=2 -kerning first=202 second=373 amount=-2 -kerning first=110 second=322 amount=-1 -kerning first=8212 second=287 amount=4 -kerning first=51 second=51 amount=2 -kerning first=291 second=311 amount=2 -kerning first=71 second=208 amount=-2 -kerning first=209 second=103 amount=2 -kerning first=275 second=104 amount=-1 -kerning first=256 second=117 amount=-13 -kerning first=276 second=274 amount=-5 -kerning first=194 second=66 amount=-8 -kerning first=257 second=287 amount=2 -kerning first=260 second=67 amount=-11 -kerning first=300 second=351 amount=-2 -kerning first=323 second=288 amount=3 -kerning first=304 second=301 amount=-2 -kerning first=84 second=198 amount=-13 -kerning first=242 second=250 amount=-2 -kerning first=347 second=365 amount=1 -kerning first=285 second=314 amount=2 -kerning first=65 second=211 amount=-11 -kerning first=200 second=326 amount=-2 -kerning first=203 second=106 amount=-10 -kerning first=85 second=338 amount=2 -kerning first=88 second=118 amount=-4 -kerning first=223 second=263 amount=1 -kerning first=108 second=275 amount=1 -kerning first=266 second=327 amount=4 -kerning first=66 second=351 amount=1 -kerning first=89 second=288 amount=-1 -kerning first=335 second=108 amount=-1 -kerning first=112 second=225 amount=5 -kerning first=358 second=45 amount=-7 -kerning first=70 second=301 amount=-4 -kerning first=208 second=226 amount=2 -kerning first=228 second=353 amount=1 -kerning first=294 second=354 amount=-6 -kerning first=160 second=327 amount=-8 -kerning first=78 second=201 amount=-6 -kerning first=98 second=328 amount=2 -kerning first=101 second=108 amount=-1 -kerning first=121 second=265 amount=3 -kerning first=59 second=214 amount=-3 -kerning first=194 second=329 amount=-19 -kerning first=197 second=109 amount=-13 -kerning first=302 second=254 amount=-2 -kerning first=345 second=318 amount=-1 -kerning first=260 second=330 amount=-15 -kerning first=283 second=267 amount=1 -kerning first=198 second=279 amount=-5 -kerning first=86 second=71 amount=5 -kerning first=221 second=216 amount=-1 -kerning first=106 second=228 amount=2 -kerning first=264 second=280 amount=-2 -kerning first=67 second=84 amount=-2 -kerning first=222 second=356 amount=-9 -kerning first=245 second=293 amount=-1 -kerning first=8212 second=113 amount=4 -kerning first=203 second=369 amount=-2 -kerning first=111 second=318 amount=-1 -kerning first=114 second=98 amount=-1 -kerning first=354 second=358 amount=-8 -kerning first=335 second=371 amount=-2 -kerning first=273 second=320 amount=-1 -kerning first=73 second=344 amount=-2 -kerning first=254 second=333 amount=2 -kerning first=257 second=113 amount=2 -kerning first=192 second=282 amount=-10 -kerning first=80 second=74 amount=-7 -kerning first=100 second=231 amount=1 -kerning first=343 second=271 amount=-2 -kerning first=258 second=283 amount=-12 -kerning first=366 second=208 amount=-6 -kerning first=196 second=232 amount=-12 -kerning first=301 second=347 amount=1 -kerning first=220 second=309 amount=-12 -kerning first=108 second=101 amount=1 -kerning first=263 second=373 amount=-1 -kerning first=204 second=102 amount=-3 -kerning first=86 second=334 amount=5 -kerning first=89 second=114 amount=-5 -kerning first=224 second=259 amount=2 -kerning first=109 second=271 amount=2 -kerning first=8211 second=236 amount=2 -kerning first=270 second=103 amount=2 -kerning first=375 second=248 amount=3 -kerning first=333 second=324 amount=-2 -kerning first=8212 second=376 amount=3 -kerning first=271 second=273 amount=-8 -kerning first=71 second=297 amount=1 -kerning first=209 second=222 amount=-2 -kerning first=229 second=349 amount=1 -kerning first=360 second=211 amount=2 -kerning first=275 second=223 amount=4 -kerning first=318 second=287 amount=-8 -kerning first=341 second=224 amount=-2 -kerning first=118 second=311 amount=2 -kerning first=361 second=351 amount=1 -kerning first=276 second=363 amount=-2 -kerning first=302 second=80 amount=-2 -kerning first=368 second=81 amount=2 -kerning first=195 second=325 amount=-15 -kerning first=198 second=105 amount=-7 -kerning first=323 second=377 amount=4 -kerning first=84 second=287 amount=-10 -kerning first=87 second=67 amount=2 -kerning first=222 second=212 amount=4 -kerning first=107 second=224 amount=2 -kerning first=245 second=119 amount=-2 -kerning first=350 second=264 amount=3 -kerning first=65 second=300 amount=-7 -kerning first=68 second=80 amount=-5 -kerning first=354 second=214 amount=-2 -kerning first=269 second=226 amount=1 -kerning first=374 second=341 amount=-5 -kerning first=289 second=353 amount=2 -kerning first=204 second=365 amount=-2 -kerning first=315 second=70 amount=-4 -kerning first=89 second=377 amount=-2 -kerning first=112 second=314 amount=3 -kerning first=316 second=240 amount=2 -kerning first=362 second=84 amount=-6 -kerning first=192 second=108 amount=-12 -kerning first=74 second=340 amount=-4 -kerning first=77 second=120 amount=-3 -kerning first=343 second=97 amount=-2 -kerning first=258 second=109 amount=-13 -kerning first=363 second=254 amount=-1 -kerning first=193 second=278 amount=-10 -kerning first=196 second=58 amount=-10 -kerning first=78 second=290 amount=3 -kerning first=101 second=227 amount=2 -kerning first=197 second=228 amount=-10 -kerning first=325 second=280 amount=-6 -kerning first=102 second=367 amount=-7 -kerning first=263 second=229 amount=1 -kerning first=368 second=344 amount=-2 -kerning first=221 second=305 amount=-3 -kerning first=329 second=230 amount=1 -kerning first=109 second=97 amount=2 -kerning first=349 second=357 amount=1 -kerning first=44 second=266 amount=-3 -kerning first=290 second=86 amount=4 -kerning first=67 second=203 amount=-2 -kerning first=205 second=98 amount=-2 -kerning first=353 second=307 amount=1 -kerning first=356 second=87 amount=-1 -kerning first=271 second=99 amount=-9 -kerning first=8212 second=232 amount=4 -kerning first=357 second=257 amount=-8 -kerning first=318 second=113 amount=-8 -kerning first=335 second=8211 amount=3 -kerning first=338 second=270 amount=-2 -kerning first=115 second=357 amount=1 -kerning first=234 second=295 amount=-1 -kerning first=119 second=307 amount=2 -kerning first=277 second=359 amount=-1 -kerning first=192 second=371 amount=-13 -kerning first=80 second=193 amount=-14 -kerning first=218 second=88 amount=3 -kerning first=100 second=320 amount=-1 -kerning first=103 second=100 amount=5 -kerning first=281 second=309 amount=-13 -kerning first=284 second=89 amount=4 -kerning first=304 second=246 amount=-2 -kerning first=84 second=113 amount=-10 -kerning first=262 second=322 amount=2 -kerning first=285 second=259 amount=5 -kerning first=197 second=8212 amount=-12 -kerning first=331 second=103 amount=2 -kerning first=266 second=272 amount=-2 -kerning first=374 second=197 amount=-3 -kerning first=89 second=233 amount=-4 -kerning first=8211 second=325 amount=-2 -kerning first=270 second=222 amount=-5 -kerning first=47 second=309 amount=-19 -kerning first=375 second=337 amount=3 -kerning first=70 second=246 amount=-4 -kerning first=205 second=361 amount=-2 -kerning first=356 second=350 amount=-6 -kerning first=74 second=196 amount=-8 -kerning first=97 second=103 amount=2 -kerning first=232 second=248 amount=1 -kerning first=337 second=363 amount=-2 -kerning first=160 second=272 amount=-6 -kerning first=193 second=104 amount=-12 -kerning first=298 second=249 amount=-2 -kerning first=75 second=336 amount=-8 -kerning first=98 second=273 amount=5 -kerning first=256 second=325 amount=-15 -kerning first=194 second=274 amount=-10 -kerning first=325 second=106 amount=-12 -kerning first=345 second=263 amount=-2 -kerning first=368 second=200 amount=-6 -kerning first=198 second=224 amount=-3 -kerning first=303 second=339 amount=1 -kerning first=103 second=363 amount=2 -kerning first=307 second=289 amount=2 -kerning first=222 second=301 amount=2 -kerning first=330 second=226 amount=2 -kerning first=245 second=238 amount=-2 -kerning first=45 second=262 amount=5 -kerning first=376 second=70 amount=-1 -kerning first=288 second=302 amount=3 -kerning first=68 second=199 amount=4 -kerning first=88 second=326 amount=-3 -kerning first=354 second=303 amount=-2 -kerning first=210 second=44 amount=-5 -kerning first=335 second=316 amount=-1 -kerning first=316 second=329 amount=-1 -kerning first=116 second=353 amount=1 -kerning first=362 second=203 amount=-6 -kerning first=192 second=227 amount=-10 -kerning first=77 second=239 amount=1 -kerning first=320 second=279 amount=-1 -kerning first=235 second=291 amount=2 -kerning first=258 second=228 amount=-10 -kerning first=193 second=367 amount=-13 -kerning first=78 second=379 amount=4 -kerning first=216 second=304 amount=3 -kerning first=219 second=84 amount=-6 -kerning first=324 second=229 amount=2 -kerning first=101 second=316 amount=-1 -kerning first=344 second=356 amount=-8 -kerning first=367 second=293 amount=-1 -kerning first=82 second=329 amount=-2 -kerning first=263 second=318 amount=-1 -kerning first=266 second=98 amount=2 -kerning first=86 second=279 amount=3 -kerning first=89 second=59 amount=-5 -kerning first=244 second=331 amount=-2 -kerning first=352 second=256 amount=-9 -kerning first=290 second=205 amount=3 -kerning first=356 second=206 amount=-2 -kerning first=376 second=333 amount=-4 -kerning first=71 second=242 amount=3 -kerning first=206 second=357 amount=-2 -kerning first=272 second=358 amount=-6 -kerning first=380 second=283 amount=1 -kerning first=75 second=192 amount=-3 -kerning first=318 second=232 amount=-9 -kerning first=98 second=99 amount=2 -kerning first=233 second=244 amount=1 -kerning first=194 second=100 amount=-10 -kerning first=192 second=8211 amount=-12 -kerning first=195 second=270 amount=-10 -kerning first=80 second=282 amount=-9 -kerning first=258 second=8212 amount=-12 -kerning first=261 second=271 amount=2 -kerning first=284 second=208 amount=-2 -kerning first=304 second=335 amount=-2 -kerning first=84 second=232 amount=-7 -kerning first=307 second=115 amount=1 -kerning first=327 second=272 amount=-6 -kerning first=104 second=359 amount=-1 -kerning first=370 second=336 amount=2 -kerning first=45 second=88 amount=-6 -kerning first=373 second=116 amount=2 -kerning first=65 second=245 amount=-12 -kerning first=108 second=309 amount=-12 -kerning first=374 second=286 amount=-1 -kerning first=312 second=235 amount=1 -kerning first=89 second=322 amount=-2 -kerning first=112 second=259 amount=5 -kerning first=358 second=79 amount=-2 -kerning first=70 second=335 amount=-4 -kerning first=73 second=115 amount=-2 -kerning first=208 second=260 amount=-8 -kerning first=254 second=104 amount=3 -kerning first=74 second=285 amount=-5 -kerning first=232 second=337 amount=1 -kerning first=117 second=349 amount=1 -kerning first=58 second=78 amount=-5 -kerning first=193 second=223 amount=-10 -kerning first=236 second=287 amount=2 -kerning first=121 second=299 amount=3 -kerning first=259 second=224 amount=2 -kerning first=279 second=351 amount=1 -kerning first=194 second=363 amount=-13 -kerning first=220 second=80 amount=-2 -kerning first=325 second=225 amount=2 -kerning first=102 second=312 amount=-7 -kerning first=368 second=289 amount=2 -kerning first=198 second=313 amount=-3 -kerning first=86 second=105 amount=3 -kerning first=352 second=82 amount=-3 -kerning first=264 second=314 amount=2 -kerning first=44 second=211 amount=-3 -kerning first=287 second=251 amount=2 -kerning first=248 second=107 amount=-1 -kerning first=353 second=252 amount=1 -kerning first=45 second=351 amount=4 -kerning first=68 second=288 amount=4 -kerning first=71 second=68 amount=-2 -kerning first=229 second=120 amount=-1 -kerning first=337 second=45 amount=3 -kerning first=272 second=214 amount=4 -kerning first=207 second=353 amount=-2 -kerning first=358 second=342 amount=-5 -kerning first=234 second=240 amount=2 -kerning first=339 second=355 amount=-1 -kerning first=119 second=252 amount=2 -kerning first=254 second=367 amount=2 -kerning first=280 second=84 amount=-5 -kerning first=192 second=316 amount=-12 -kerning first=300 second=241 amount=-2 -kerning first=100 second=265 amount=1 -kerning first=103 second=45 amount=4 -kerning first=261 second=97 amount=2 -kerning first=281 second=254 amount=-1 -kerning first=196 second=266 amount=-11 -kerning first=84 second=58 amount=-15 -kerning first=219 second=203 amount=-6 -kerning first=324 second=318 amount=-1 -kerning first=242 second=110 amount=-2 -kerning first=65 second=71 amount=-11 -kerning first=85 second=228 amount=2 -kerning first=46 second=84 amount=-10 -kerning first=374 second=112 amount=-5 -kerning first=286 second=344 amount=-4 -kerning first=201 second=356 amount=-5 -kerning first=309 second=281 amount=1 -kerning first=224 second=293 amount=-1 -kerning first=8211 second=270 amount=-7 -kerning first=267 second=357 amount=-1 -kerning first=208 second=86 amount=2 -kerning first=356 second=295 amount=-3 -kerning first=271 second=307 amount=-3 -kerning first=71 second=331 amount=2 -kerning first=74 second=111 amount=-5 -kerning first=275 second=257 amount=2 -kerning first=75 second=281 amount=-10 -kerning first=213 second=206 amount=3 -kerning first=233 second=333 amount=1 -kerning first=236 second=113 amount=2 -kerning first=256 second=270 amount=-10 -kerning first=302 second=114 amount=-2 -kerning first=319 second=8212 amount=-5 -kerning first=237 second=283 amount=1 -kerning first=195 second=359 amount=-12 -kerning first=80 second=371 amount=1 -kerning first=221 second=76 amount=-3 -kerning first=369 second=285 amount=2 -kerning first=307 second=234 amount=1 -kerning first=242 second=373 amount=-2 -kerning first=45 second=207 amount=-5 -kerning first=373 second=235 amount=4 -kerning first=65 second=334 amount=-11 -kerning first=331 second=311 amount=-1 -kerning first=354 second=248 amount=-7 -kerning first=374 second=375 amount=-5 -kerning first=230 second=116 amount=-1 -kerning first=358 second=198 amount=-13 -kerning first=296 second=117 amount=-2 -kerning first=73 second=234 amount=-2 -kerning first=382 second=275 amount=1 -kerning first=297 second=287 amount=2 -kerning first=97 second=311 amount=-1 -kerning first=366 second=68 amount=-6 -kerning first=193 second=312 amount=-12 -kerning first=197 second=262 amount=-11 -kerning first=243 second=106 amount=-13 -kerning first=286 second=200 amount=-2 -kerning first=66 second=67 amount=3 -kerning first=86 second=224 amount=6 -kerning first=221 second=339 amount=-4 -kerning first=332 second=44 amount=-5 -kerning first=352 second=201 amount=-3 -kerning first=225 second=289 amount=2 -kerning first=356 second=121 amount=-10 -kerning first=8212 second=266 amount=5 -kerning first=376 second=278 amount=-4 -kerning first=294 second=70 amount=-2 -kerning first=209 second=82 amount=-2 -kerning first=357 second=291 amount=-8 -kerning first=360 second=71 amount=2 -kerning first=295 second=240 amount=2 -kerning first=75 second=107 amount=-7 -kerning first=338 second=304 amount=-1 -kerning first=194 second=45 amount=-12 -kerning first=342 second=254 amount=-2 -kerning first=260 second=46 amount=-10 -kerning first=362 second=381 amount=4 -kerning first=280 second=203 amount=-5 -kerning first=196 second=355 amount=-12 -kerning first=262 second=356 amount=-2 -kerning first=285 second=293 amount=2 -kerning first=288 second=73 amount=3 -kerning first=223 second=242 amount=1 -kerning first=328 second=357 amount=-1 -kerning first=243 second=369 amount=-2 -kerning first=354 second=74 amount=-7 -kerning first=46 second=203 amount=-4 -kerning first=374 second=231 amount=-4 -kerning first=289 second=243 amount=2 -kerning first=69 second=110 amount=-2 -kerning first=89 second=267 amount=-4 -kerning first=355 second=244 amount=1 -kerning first=270 second=256 amount=-8 -kerning first=375 second=371 amount=3 -kerning first=70 second=280 amount=-9 -kerning first=316 second=100 amount=2 -kerning first=382 second=101 amount=1 -kerning first=297 second=113 amount=2 -kerning first=74 second=230 amount=-4 -kerning first=360 second=334 amount=2 -kerning first=298 second=283 amount=-2 -kerning first=98 second=307 amount=2 -kerning first=236 second=232 amount=1 -kerning first=341 second=347 amount=-2 -kerning first=121 second=244 amount=3 -kerning first=256 second=359 amount=-12 -kerning first=364 second=284 amount=2 -kerning first=197 second=88 amount=-9 -kerning first=302 second=233 amount=-2 -kerning first=102 second=257 amount=-6 -kerning first=283 second=246 amount=1 -kerning first=198 second=258 amount=-6 -kerning first=80 second=8211 amount=2 -kerning first=83 second=270 amount=-3 -kerning first=221 second=195 amount=-3 -kerning first=241 second=322 amount=-1 -kerning first=244 second=102 amount=-2 -kerning first=202 second=208 amount=-5 -kerning first=225 second=115 amount=1 -kerning first=107 second=347 amount=1 -kerning first=268 second=209 amount=4 -kerning first=45 second=296 amount=-5 -kerning first=373 second=324 amount=2 -kerning first=291 second=116 amount=2 -kerning first=376 second=104 amount=-2 -kerning first=311 second=273 amount=2 -kerning first=226 second=285 amount=2 -kerning first=354 second=337 amount=-7 -kerning first=357 second=117 amount=-9 -kerning first=269 second=349 amount=1 -kerning first=69 second=373 amount=-2 -kerning first=230 second=235 amount=1 -kerning first=358 second=287 amount=-10 -kerning first=296 second=236 amount=-2 -kerning first=231 second=375 amount=-1 -kerning first=342 second=80 amount=-8 -kerning first=254 second=312 amount=2 -kerning first=77 second=273 amount=1 -kerning first=258 second=262 amount=-11 -kerning first=58 second=286 amount=-3 -kerning first=196 second=211 amount=-11 -kerning first=304 second=106 amount=-14 -kerning first=216 second=338 amount=3 -kerning first=285 second=119 amount=2 -kerning first=197 second=351 amount=-11 -kerning first=348 second=340 amount=-3 -kerning first=351 second=120 amount=2 -kerning first=309 second=226 amount=2 -kerning first=86 second=313 amount=4 -kerning first=329 second=353 amount=1 -kerning first=244 second=365 amount=-2 -kerning first=352 second=290 amount=3 -kerning first=270 second=82 amount=-3 -kerning first=375 second=227 amount=7 -kerning first=70 second=106 amount=-13 -kerning first=205 second=251 amount=-2 -kerning first=356 second=240 amount=-10 -kerning first=376 second=367 amount=-5 -kerning first=71 second=276 amount=-2 -kerning first=209 second=201 amount=-6 -kerning first=232 second=108 amount=-1 -kerning first=337 second=253 amount=-2 -kerning first=117 second=120 amount=2 -kerning first=295 second=329 amount=-3 -kerning first=298 second=109 amount=-2 -kerning first=75 second=226 amount=-7 -kerning first=276 second=342 amount=-6 -kerning first=237 second=228 amount=2 -kerning first=257 second=355 amount=-1 -kerning first=195 second=304 amount=-7 -kerning first=198 second=84 amount=-2 -kerning first=303 second=229 amount=2 -kerning first=323 second=356 amount=-6 -kerning first=103 second=253 amount=2 -kerning first=264 second=85 amount=4 -kerning first=369 second=230 amount=1 -kerning first=199 second=254 amount=2 -kerning first=304 second=369 amount=-2 -kerning first=84 second=266 amount=-2 -kerning first=219 second=381 amount=4 -kerning first=242 second=318 amount=-1 -kerning first=245 second=98 amount=-1 -kerning first=65 second=279 amount=-12 -kerning first=68 second=59 amount=-3 -kerning first=311 second=99 amount=1 -kerning first=88 second=216 amount=-4 -kerning first=354 second=193 amount=-13 -kerning first=374 second=320 amount=-2 -kerning first=204 second=344 amount=-2 -kerning first=312 second=269 amount=1 -kerning first=112 second=293 amount=3 -kerning first=355 second=333 amount=1 -kerning first=358 second=113 amount=-10 -kerning first=70 second=369 amount=-3 -kerning first=359 second=283 amount=1 -kerning first=192 second=87 amount=-7 -kerning first=258 second=88 amount=-9 -kerning first=278 second=245 amount=-2 -kerning first=193 second=257 amount=-10 -kerning first=121 second=333 amount=3 -kerning first=59 second=282 amount=-4 -kerning first=197 second=207 amount=-7 -kerning first=302 second=322 amount=-2 -kerning first=325 second=259 amount=2 -kerning first=240 second=271 amount=2 -kerning first=348 second=196 amount=-9 -kerning first=371 second=103 amount=2 -kerning first=283 second=335 amount=1 -kerning first=198 second=347 amount=-4 -kerning first=221 second=284 amount=-1 -kerning first=372 second=273 amount=2 -kerning first=287 second=285 amount=5 -kerning first=87 second=309 amount=-12 -kerning first=90 second=89 amount=3 -kerning first=245 second=361 amount=-2 -kerning first=356 second=66 amount=-8 -kerning first=8212 second=211 amount=5 -kerning first=268 second=298 amount=3 -kerning first=291 second=235 amount=2 -kerning first=71 second=102 amount=1 -kerning first=357 second=236 amount=-3 -kerning first=72 second=272 amount=-6 -kerning first=233 second=104 amount=-1 -kerning first=118 second=116 amount=2 -kerning first=76 second=222 amount=-4 -kerning first=365 second=106 amount=-10 -kerning first=280 second=118 amount=-2 -kerning first=192 second=350 amount=-8 -kerning first=300 second=275 amount=-2 -kerning first=323 second=212 amount=3 -kerning first=238 second=224 amount=2 -kerning first=343 second=339 amount=-2 -kerning first=258 second=351 amount=-11 -kerning first=366 second=276 amount=-6 -kerning first=284 second=68 amount=-2 -kerning first=196 second=300 amount=-7 -kerning first=199 second=80 amount=-2 -kerning first=347 second=289 amount=3 -kerning first=350 second=69 amount=-3 -kerning first=370 second=226 amount=2 -kerning first=285 second=238 amount=3 -kerning first=85 second=262 amount=2 -kerning first=220 second=377 amount=4 -kerning first=243 second=314 amount=-1 -kerning first=351 second=239 amount=1 -kerning first=66 second=275 amount=2 -kerning first=89 second=212 amount=-1 -kerning first=227 second=107 amount=-1 -kerning first=112 second=119 amount=2 -kerning first=8211 second=304 amount=-5 -kerning first=270 second=201 amount=-6 -kerning first=70 second=225 amount=-3 -kerning first=205 second=340 amount=-2 -kerning first=208 second=120 amount=-3 -kerning first=90 second=352 amount=2 -kerning first=113 second=289 amount=2 -kerning first=271 second=341 amount=-9 -kerning first=274 second=121 amount=-3 -kerning first=294 second=278 amount=-6 -kerning first=71 second=365 amount=2 -kerning first=209 second=290 amount=3 -kerning first=232 second=227 amount=2 -kerning first=275 second=291 amount=2 -kerning first=193 second=83 amount=-8 -kerning first=75 second=315 amount=-3 -kerning first=98 second=252 amount=2 -kerning first=256 second=304 amount=-7 -kerning first=364 second=229 amount=2 -kerning first=240 second=97 amount=2 -kerning first=345 second=242 amount=-2 -kerning first=260 second=254 amount=-3 -kerning first=198 second=203 amount=-2 -kerning first=221 second=110 amount=-5 -kerning first=264 second=204 amount=3 -kerning first=44 second=71 amount=-3 -kerning first=287 second=111 amount=2 -kerning first=84 second=355 amount=-3 -kerning first=222 second=280 amount=-9 -kerning first=350 second=332 amount=3 -kerning first=353 second=112 amount=1 -kerning first=373 second=269 amount=4 -kerning first=45 second=241 amount=2 -kerning first=226 second=230 amount=1 -kerning first=246 second=357 amount=-1 -kerning first=354 second=282 amount=-8 -kerning first=207 second=243 amount=-2 -kerning first=358 second=232 amount=-7 -kerning first=273 second=244 amount=1 -kerning first=231 second=320 amount=-1 -kerning first=234 second=100 amount=2 -kerning first=339 second=245 amount=1 -kerning first=119 second=112 amount=2 -kerning first=254 second=257 amount=5 -kerning first=192 second=206 amount=-7 -kerning first=300 second=101 amount=-2 -kerning first=258 second=207 amount=-7 -kerning first=363 second=322 amount=-1 -kerning first=193 second=346 amount=-8 -kerning first=301 second=271 amount=2 -kerning first=78 second=358 amount=-6 -kerning first=101 second=295 amount=-1 -kerning first=344 second=335 amount=-2 -kerning first=259 second=347 amount=1 -kerning first=197 second=296 amount=-7 -kerning first=85 second=88 amount=3 -kerning first=105 second=245 amount=1 -kerning first=66 second=101 amount=2 -kerning first=201 second=246 amount=-2 -kerning first=86 second=258 amount=-3 -kerning first=221 second=373 amount=-4 -kerning first=44 second=334 amount=-3 -kerning first=228 second=103 amount=2 -kerning first=353 second=375 amount=1 -kerning first=8212 second=300 amount=-5 -kerning first=376 second=312 amount=-2 -kerning first=291 second=324 amount=2 -kerning first=229 second=273 amount=2 -kerning first=114 second=285 amount=-2 -kerning first=160 second=77 amount=-3 -kerning first=233 second=223 amount=4 -kerning first=118 second=235 amount=4 -kerning first=194 second=79 amount=-11 -kerning first=299 second=224 amount=2 -kerning first=99 second=248 amount=-1 -kerning first=119 second=375 amount=2 -kerning first=260 second=80 amount=-17 -kerning first=365 second=225 amount=2 -kerning first=304 second=314 amount=-2 -kerning first=84 second=211 amount=-2 -kerning first=222 second=106 amount=-11 -kerning first=45 second=67 amount=5 -kerning first=65 second=224 amount=-10 -kerning first=203 second=119 amount=-2 -kerning first=351 second=328 amount=1 -kerning first=354 second=108 amount=-3 -kerning first=266 second=340 amount=-4 -kerning first=269 second=120 amount=2 -kerning first=374 second=265 amount=-4 -kerning first=377 second=45 amount=-6 -kerning first=289 second=277 amount=2 -kerning first=227 second=226 amount=2 -kerning first=335 second=121 amount=-2 -kerning first=112 second=238 amount=2 -kerning first=358 second=58 amount=-15 -kerning first=270 second=290 amount=4 -kerning first=70 second=314 amount=-2 -kerning first=359 second=228 amount=2 -kerning first=209 second=379 amount=4 -kerning first=232 second=316 amount=-1 -kerning first=120 second=108 amount=-1 -kerning first=160 second=340 amount=-9 -kerning first=193 second=202 amount=-10 -kerning first=301 second=97 amount=2 -kerning first=78 second=214 amount=3 -kerning first=367 second=98 amount=-1 -kerning first=282 second=110 amount=-2 -kerning first=194 second=342 amount=-17 -kerning first=197 second=122 amount=-7 -kerning first=302 second=267 amount=-2 -kerning first=102 second=291 amount=-6 -kerning first=260 second=343 amount=-12 -kerning first=368 second=268 amount=2 -kerning first=221 second=229 amount=-3 -kerning first=349 second=281 amount=1 -kerning first=264 second=293 amount=2 -kerning first=287 second=230 amount=2 -kerning first=202 second=242 amount=-2 -kerning first=222 second=369 amount=2 -kerning first=353 second=231 amount=1 -kerning first=45 second=330 amount=-2 -kerning first=111 second=331 amount=-2 -kerning first=114 second=111 amount=-2 -kerning first=354 second=371 amount=-6 -kerning first=272 second=193 amount=-8 -kerning first=295 second=100 amount=2 -kerning first=230 second=269 amount=1 -kerning first=115 second=281 amount=1 -kerning first=273 second=333 amount=1 -kerning first=73 second=357 amount=-2 -kerning first=119 second=231 amount=4 -kerning first=362 second=271 amount=2 -kerning first=277 second=283 amount=1 -kerning first=192 second=295 amount=-12 -kerning first=195 second=75 amount=-5 -kerning first=77 second=307 amount=1 -kerning first=100 second=244 amount=1 -kerning first=235 second=359 amount=-1 -kerning first=258 second=296 amount=-7 -kerning first=281 second=233 amount=1 -kerning first=196 second=245 amount=-12 -kerning first=239 second=309 amount=-11 -kerning first=347 second=234 amount=1 -kerning first=282 second=373 amount=-2 -kerning first=371 second=311 amount=-1 -kerning first=289 second=103 amount=5 -kerning first=201 second=335 amount=-2 -kerning first=204 second=115 amount=-2 -kerning first=86 second=347 amount=3 -kerning first=355 second=104 amount=-1 -kerning first=8211 second=249 amount=2 -kerning first=208 second=65 amount=-8 -kerning first=113 second=234 amount=1 -kerning first=356 second=274 amount=-8 -kerning first=274 second=66 amount=-5 -kerning first=294 second=223 amount=2 -kerning first=160 second=196 amount=-3 -kerning first=360 second=224 amount=2 -kerning first=75 second=260 amount=-3 -kerning first=118 second=324 amount=2 -kerning first=121 second=104 amount=3 -kerning first=194 second=198 amount=-6 -kerning first=99 second=337 amount=-1 -kerning first=102 second=117 amount=-7 -kerning first=260 second=199 amount=-11 -kerning first=365 second=314 amount=-1 -kerning first=280 second=326 amount=-2 -kerning first=283 second=106 amount=-13 -kerning first=195 second=338 amount=-11 -kerning first=198 second=118 amount=-6 -kerning first=303 second=263 amount=1 -kerning first=103 second=287 amount=5 -kerning first=349 second=107 amount=1 -kerning first=284 second=276 amount=-2 -kerning first=202 second=68 amount=-5 -kerning first=84 second=300 amount=-2 -kerning first=87 second=80 amount=-2 -kerning first=327 second=340 amount=-2 -kerning first=265 second=289 amount=1 -kerning first=268 second=69 amount=-2 -kerning first=65 second=313 amount=-7 -kerning first=354 second=227 amount=-10 -kerning first=115 second=107 amount=1 -kerning first=53 second=56 amount=1 -kerning first=362 second=97 amount=2 -kerning first=192 second=121 amount=-4 -kerning first=120 second=227 amount=2 -kerning first=258 second=122 amount=-7 -kerning first=193 second=291 amount=-10 -kerning first=196 second=71 amount=-11 -kerning first=101 second=240 amount=2 -kerning first=121 second=367 amount=3 -kerning first=302 second=356 amount=-2 -kerning first=263 second=242 amount=-1 -kerning first=198 second=381 amount=-3 -kerning first=221 second=318 amount=-2 -kerning first=224 second=98 amount=-1 -kerning first=8211 second=75 amount=-5 -kerning first=202 second=331 amount=-2 -kerning first=205 second=111 amount=-2 -kerning first=353 second=320 amount=1 -kerning first=356 second=100 amount=-10 -kerning first=271 second=112 amount=-11 -kerning first=376 second=257 amount=-3 -kerning first=8212 second=245 amount=4 -kerning first=291 second=269 amount=2 -kerning first=68 second=356 amount=-6 -kerning first=206 second=281 amount=-2 -kerning first=354 second=8211 amount=-7 -kerning first=272 second=282 amount=-6 -kerning first=75 second=86 amount=-3 -kerning first=256 second=75 amount=-5 -kerning first=296 second=359 amount=-2 -kerning first=119 second=320 amount=2 -kerning first=195 second=194 amount=-7 -kerning first=300 second=309 amount=-14 -kerning first=100 second=333 amount=1 -kerning first=103 second=113 amount=5 -kerning first=281 second=322 amount=-1 -kerning first=196 second=334 amount=-11 -kerning first=216 second=8212 amount=3 -kerning first=219 second=271 amount=2 -kerning first=265 second=115 amount=1 -kerning first=331 second=116 amount=-1 -kerning first=108 second=233 amount=1 -kerning first=351 second=273 amount=3 -kerning first=374 second=210 amount=-1 -kerning first=66 second=309 amount=-12 -kerning first=204 second=234 amount=-2 -kerning first=89 second=246 amount=-4 -kerning first=355 second=223 amount=4 -kerning first=8211 second=338 amount=5 -kerning first=70 second=259 amount=-3 -kerning first=228 second=311 amount=-1 -kerning first=116 second=103 amount=2 -kerning first=356 second=363 amount=-6 -kerning first=54 second=52 amount=-2 -kerning first=97 second=116 amount=-1 -kerning first=117 second=273 amount=2 -kerning first=193 second=117 amount=-13 -kerning first=75 second=349 amount=-8 -kerning first=121 second=223 amount=5 -kerning first=256 second=338 amount=-11 -kerning first=279 second=275 amount=1 -kerning first=194 second=287 amount=-10 -kerning first=197 second=67 amount=-11 -kerning first=217 second=224 amount=2 -kerning first=102 second=236 amount=-7 -kerning first=237 second=351 amount=1 -kerning first=260 second=288 amount=-11 -kerning first=368 second=213 amount=2 -kerning first=283 second=225 amount=2 -kerning first=198 second=237 amount=-7 -kerning first=326 second=289 amount=2 -kerning first=349 second=226 amount=3 -kerning first=369 second=353 amount=1 -kerning first=87 second=199 amount=2 -kerning first=110 second=106 amount=-10 -kerning first=245 second=251 amount=-2 -kerning first=8212 second=71 amount=5 -kerning first=45 second=275 amount=4 -kerning first=373 second=303 amount=2 -kerning first=376 second=83 amount=-4 -kerning first=68 second=212 amount=4 -kerning first=206 second=107 amount=-2 -kerning first=88 second=339 amount=-2 -kerning first=354 second=316 amount=-3 -kerning first=207 second=277 amount=-2 -kerning first=335 second=329 amount=-3 -kerning first=115 second=226 amount=3 -kerning first=358 second=266 amount=-2 -kerning first=76 second=82 amount=-4 -kerning first=339 second=279 amount=1 -kerning first=254 second=291 amount=5 -kerning first=362 second=216 amount=2 -kerning first=277 second=228 amount=2 -kerning first=192 second=240 amount=-10 -kerning first=343 second=229 amount=-2 -kerning first=120 second=316 amount=-1 -kerning first=219 second=97 amount=2 -kerning first=370 second=86 amount=2 -kerning first=285 second=98 amount=2 -kerning first=197 second=330 amount=-15 -kerning first=200 second=110 amount=-2 -kerning first=82 second=342 amount=-8 -kerning first=105 second=279 amount=1 -kerning first=351 second=99 amount=1 -kerning first=201 second=280 amount=-5 -kerning first=109 second=229 amount=2 -kerning first=8211 second=194 amount=-13 -kerning first=225 second=357 amount=-1 -kerning first=8212 second=334 amount=5 -kerning first=271 second=231 amount=-9 -kerning first=376 second=346 amount=-4 -kerning first=55 second=48 amount=-6 -kerning first=298 second=88 amount=2 -kerning first=318 second=245 amount=-9 -kerning first=98 second=112 amount=2 -kerning first=233 second=257 amount=2 -kerning first=118 second=269 amount=4 -kerning first=256 second=194 amount=-7 -kerning first=361 second=309 amount=-10 -kerning first=279 second=101 amount=1 -kerning first=364 second=89 amount=2 -kerning first=194 second=113 amount=-10 -kerning first=211 second=8211 amount=3 -kerning first=260 second=114 amount=-12 -kerning first=365 second=259 amount=2 -kerning first=195 second=283 amount=-12 -kerning first=326 second=115 amount=1 -kerning first=103 second=232 amount=2 -kerning first=238 second=347 amount=1 -kerning first=346 second=272 amount=-3 -kerning first=84 second=245 amount=-7 -kerning first=327 second=285 amount=2 -kerning first=242 second=297 amount=-2 -kerning first=350 second=222 amount=-3 -kerning first=45 second=101 amount=4 -kerning first=285 second=361 amount=2 -kerning first=65 second=258 amount=-7 -kerning first=200 second=373 amount=-2 -kerning first=88 second=195 amount=-5 -kerning first=111 second=102 amount=-2 -kerning first=49 second=51 amount=-1 -kerning first=289 second=311 amount=2 -kerning first=69 second=208 amount=-5 -kerning first=312 second=248 amount=1 -kerning first=89 second=335 amount=-4 -kerning first=355 second=312 amount=-1 -kerning first=273 second=104 amount=-1 -kerning first=208 second=273 amount=2 -kerning first=254 second=117 amount=2 -kerning first=274 second=274 amount=-5 -kerning first=192 second=66 amount=-8 -kerning first=258 second=67 amount=-11 -kerning first=298 second=351 amount=-2 -kerning first=98 second=375 amount=2 -kerning first=121 second=312 amount=3 -kerning first=302 second=301 amount=-2 -kerning first=82 second=198 amount=3 -kerning first=260 second=377 amount=-7 -kerning first=283 second=314 amount=-1 -kerning first=198 second=326 amount=-6 -kerning first=201 second=106 amount=-10 -kerning first=83 second=338 amount=3 -kerning first=86 second=118 amount=3 -kerning first=221 second=263 amount=-4 -kerning first=106 second=275 amount=1 -kerning first=264 second=327 amount=4 -kerning first=202 second=276 amount=-5 -kerning first=87 second=288 amount=2 -kerning first=333 second=108 amount=-1 -kerning first=110 second=225 amount=2 -kerning first=248 second=120 amount=-2 -kerning first=353 second=265 amount=1 -kerning first=356 second=45 amount=-7 -kerning first=45 second=364 amount=5 -kerning first=376 second=202 amount=-4 -kerning first=226 second=353 amount=1 -kerning first=111 second=365 amount=-2 -kerning first=272 second=227 amount=2 -kerning first=292 second=354 amount=-6 -kerning first=358 second=355 amount=-3 -kerning first=99 second=108 amount=-1 -kerning first=119 second=265 amount=4 -kerning first=192 second=329 amount=-19 -kerning first=195 second=109 amount=-13 -kerning first=300 second=254 amount=-2 -kerning first=80 second=121 amount=1 -kerning first=343 second=318 amount=-1 -kerning first=258 second=330 amount=-15 -kerning first=281 second=267 amount=1 -kerning first=58 second=354 amount=-10 -kerning first=196 second=279 amount=-12 -kerning first=84 second=71 amount=-2 -kerning first=104 second=228 amount=2 -kerning first=262 second=280 amount=-2 -kerning first=65 second=84 amount=-20 -kerning first=220 second=356 amount=-6 -kerning first=243 second=293 amount=-1 -kerning first=286 second=357 amount=2 -kerning first=201 second=369 amount=-2 -kerning first=109 second=318 amount=-1 -kerning first=112 second=98 amount=3 -kerning first=352 second=358 amount=-3 -kerning first=8211 second=283 amount=4 -kerning first=333 second=371 amount=-2 -kerning first=294 second=257 amount=2 -kerning first=71 second=344 amount=-4 -kerning first=272 second=8211 amount=4 -kerning first=98 second=231 amount=2 -kerning first=341 second=271 amount=-2 -kerning first=256 second=283 amount=-12 -kerning first=364 second=208 amount=-6 -kerning first=194 second=232 amount=-12 -kerning first=299 second=347 amount=1 -kerning first=83 second=194 amount=-9 -kerning first=218 second=309 amount=-12 -kerning first=106 second=101 amount=1 -kerning first=199 second=322 amount=2 -kerning first=84 second=334 amount=-2 -kerning first=107 second=271 amount=2 -kerning first=373 second=248 amount=4 -kerning first=65 second=347 amount=-11 -kerning first=203 second=272 amount=-5 -kerning first=88 second=284 amount=-4 -kerning first=269 second=273 amount=1 -kerning first=207 second=222 amount=-2 -kerning first=312 second=337 amount=1 -kerning first=227 second=349 amount=1 -kerning first=112 second=361 amount=2 -kerning first=358 second=211 amount=-2 -kerning first=273 second=223 amount=4 -kerning first=316 second=287 amount=2 -kerning first=339 second=224 amount=2 -kerning first=254 second=236 amount=2 -kerning first=359 second=351 amount=1 -kerning first=274 second=363 amount=-2 -kerning first=300 second=80 amount=-2 -kerning first=100 second=104 amount=-1 -kerning first=366 second=81 amount=2 -kerning first=58 second=210 amount=-3 -kerning first=193 second=325 amount=-15 -kerning first=344 second=314 amount=-2 -kerning first=197 second=275 amount=-12 -kerning first=85 second=67 amount=2 -kerning first=328 second=107 amount=-1 -kerning first=105 second=224 amount=2 -kerning first=240 second=339 amount=1 -kerning first=243 second=119 amount=-2 -kerning first=348 second=264 amount=3 -kerning first=66 second=80 amount=-1 -kerning first=309 second=120 amount=-3 -kerning first=86 second=237 amount=3 -kerning first=221 second=352 amount=-4 -kerning first=352 second=214 amount=3 -kerning first=8211 second=109 amount=2 -kerning first=267 second=226 amount=1 -kerning first=375 second=121 amount=3 -kerning first=287 second=353 amount=2 -kerning first=202 second=365 amount=-2 -kerning first=313 second=70 amount=-4 -kerning first=87 second=377 amount=4 -kerning first=110 second=314 amount=-1 -kerning first=8212 second=279 amount=4 -kerning first=376 second=291 amount=-3 -kerning first=291 second=303 amount=3 -kerning first=71 second=200 amount=-2 -kerning first=360 second=84 amount=-6 -kerning first=72 second=340 amount=-2 -kerning first=75 second=120 amount=-10 -kerning first=213 second=45 amount=3 -kerning first=341 second=97 amount=-2 -kerning first=256 second=109 amount=-13 -kerning first=361 second=254 amount=-1 -kerning first=194 second=58 amount=-10 -kerning first=99 second=227 amount=1 -kerning first=260 second=59 amount=-10 -kerning first=195 second=228 amount=-10 -kerning first=323 second=280 amount=-6 -kerning first=261 second=229 amount=2 -kerning first=366 second=344 amount=-2 -kerning first=304 second=293 amount=-2 -kerning first=107 second=97 amount=2 -kerning first=347 second=357 amount=1 -kerning first=65 second=203 amount=-10 -kerning first=88 second=110 amount=-3 -kerning first=108 second=267 amount=1 -kerning first=351 second=307 amount=1 -kerning first=354 second=87 amount=-1 -kerning first=46 second=216 amount=-3 -kerning first=309 second=383 amount=1 -kerning first=89 second=280 amount=-4 -kerning first=355 second=257 amount=2 -kerning first=70 second=293 amount=-2 -kerning first=316 second=113 amount=2 -kerning first=333 second=8211 amount=3 -kerning first=113 second=357 amount=-1 -kerning first=74 second=243 amount=-5 -kerning first=209 second=358 amount=-6 -kerning first=232 second=295 amount=-1 -kerning first=275 second=359 amount=-1 -kerning first=98 second=320 amount=3 -kerning first=101 second=100 amount=2 -kerning first=236 second=245 amount=1 -kerning first=121 second=257 amount=7 -kerning first=279 second=309 amount=-13 -kerning first=197 second=101 amount=-12 -kerning first=302 second=246 amount=-2 -kerning first=260 second=322 amount=-12 -kerning first=283 second=259 amount=2 -kerning first=195 second=8212 amount=-12 -kerning first=198 second=271 amount=-3 -kerning first=221 second=208 amount=-4 -kerning first=329 second=103 amount=2 -kerning first=264 second=272 amount=-2 -kerning first=330 second=273 amount=2 -kerning first=8212 second=105 amount=2 -kerning first=268 second=222 amount=-2 -kerning first=45 second=309 amount=-7 -kerning first=373 second=337 amount=4 -kerning first=376 second=117 amount=-5 -kerning first=203 second=361 amount=-2 -kerning first=88 second=373 amount=-4 -kerning first=354 second=350 amount=-6 -kerning first=207 second=311 amount=-2 -kerning first=230 second=248 amount=1 -kerning first=335 second=363 amount=-2 -kerning first=358 second=300 amount=-2 -kerning first=273 second=312 amount=-1 -kerning first=296 second=249 amount=-2 -kerning first=192 second=274 amount=-10 -kerning first=77 second=286 amount=3 -kerning first=80 second=66 amount=-9 -kerning first=323 second=106 amount=-12 -kerning first=100 second=223 amount=4 -kerning first=343 second=263 amount=-2 -kerning first=258 second=275 amount=-12 -kerning first=366 second=200 amount=-6 -kerning first=196 second=224 amount=-10 -kerning first=301 second=339 amount=1 -kerning first=304 second=119 amount=-2 -kerning first=370 second=120 amount=-2 -kerning first=305 second=289 amount=2 -kerning first=328 second=226 amount=2 -kerning first=243 second=238 amount=-2 -kerning first=374 second=70 amount=-1 -kerning first=286 second=302 amount=3 -kerning first=66 second=199 amount=3 -kerning first=86 second=326 amount=2 -kerning first=89 second=106 amount=-7 -kerning first=8211 second=228 amount=4 -kerning first=375 second=240 amount=7 -kerning first=70 second=119 amount=-4 -kerning first=208 second=44 amount=-3 -kerning first=333 second=316 amount=-1 -kerning first=248 second=328 amount=-2 -kerning first=8212 second=368 amount=5 -kerning first=271 second=265 amount=-9 -kerning first=294 second=202 amount=-6 -kerning first=71 second=289 amount=5 -kerning first=74 second=69 amount=-5 -kerning first=209 second=214 amount=3 -kerning first=114 second=353 amount=-2 -kerning first=360 second=203 amount=-6 -kerning first=75 second=239 amount=-7 -kerning first=318 second=279 amount=-9 -kerning first=233 second=291 amount=2 -kerning first=118 second=303 amount=2 -kerning first=256 second=228 amount=-10 -kerning first=76 second=379 amount=2 -kerning first=214 second=304 amount=3 -kerning first=217 second=84 amount=-6 -kerning first=99 second=316 amount=-1 -kerning first=342 second=356 amount=-8 -kerning first=365 second=293 amount=-1 -kerning first=198 second=97 amount=-3 -kerning first=303 second=242 amount=1 -kerning first=261 second=318 amount=-1 -kerning first=264 second=98 amount=2 -kerning first=84 second=279 amount=-7 -kerning first=242 second=331 amount=-2 -kerning first=350 second=256 amount=-9 -kerning first=288 second=205 amount=3 -kerning first=354 second=206 amount=-2 -kerning first=374 second=333 amount=-4 -kerning first=69 second=242 amount=-2 -kerning first=204 second=357 amount=-2 -kerning first=89 second=369 amount=-5 -kerning first=270 second=358 amount=-6 -kerning first=378 second=283 amount=1 -kerning first=70 second=382 amount=-6 -kerning first=316 second=232 amount=1 -kerning first=231 second=244 amount=-1 -kerning first=192 second=100 amount=-10 -kerning first=258 second=101 amount=-12 -kerning first=193 second=270 amount=-10 -kerning first=78 second=282 amount=-6 -kerning first=216 second=207 amount=3 -kerning first=256 second=8212 amount=-12 -kerning first=259 second=271 amount=2 -kerning first=282 second=208 amount=-5 -kerning first=302 second=335 amount=-2 -kerning first=305 second=115 amount=1 -kerning first=325 second=272 amount=-6 -kerning first=368 second=336 amount=2 -kerning first=371 second=116 amount=-1 -kerning first=106 second=309 amount=-2 -kerning first=110 second=259 amount=2 -kerning first=353 second=299 amount=1 -kerning first=356 second=79 amount=-2 -kerning first=268 second=311 amount=2 -kerning first=8212 second=224 amount=4 -kerning first=291 second=248 amount=2 -kerning first=71 second=115 amount=2 -kerning first=72 second=285 amount=2 -kerning first=75 second=65 amount=-3 -kerning first=318 second=105 amount=-3 -kerning first=230 second=337 amount=1 -kerning first=234 second=287 amount=2 -kerning first=119 second=299 amount=2 -kerning first=257 second=224 amount=2 -kerning first=277 second=351 amount=1 -kerning first=192 second=363 amount=-13 -kerning first=218 second=80 amount=-2 -kerning first=323 second=225 amount=2 -kerning first=100 second=312 amount=-1 -kerning first=366 second=289 amount=2 -kerning first=196 second=313 amount=-7 -kerning first=84 second=105 amount=-2 -kerning first=304 second=238 amount=-2 -kerning first=350 second=82 amount=-3 -kerning first=262 second=314 amount=2 -kerning first=285 second=251 amount=2 -kerning first=65 second=118 amount=-13 -kerning first=246 second=107 amount=-1 -kerning first=351 second=252 amount=1 -kerning first=69 second=68 amount=-5 -kerning first=89 second=225 amount=-3 -kerning first=227 second=120 amount=-1 -kerning first=335 second=45 amount=3 -kerning first=270 second=214 amount=4 -kerning first=70 second=238 amount=-1 -kerning first=205 second=353 amount=-2 -kerning first=356 second=342 amount=-5 -kerning first=294 second=291 amount=2 -kerning first=232 second=240 amount=2 -kerning first=337 second=355 amount=-1 -kerning first=160 second=264 amount=-3 -kerning first=278 second=84 amount=-5 -kerning first=298 second=241 amount=-2 -kerning first=75 second=328 amount=-8 -kerning first=98 second=265 amount=2 -kerning first=259 second=97 amount=2 -kerning first=279 second=254 amount=-1 -kerning first=194 second=266 amount=-11 -kerning first=197 second=46 amount=-10 -kerning first=217 second=203 amount=-6 -kerning first=198 second=216 amount=-7 -kerning first=103 second=355 amount=2 -kerning first=44 second=84 amount=-10 -kerning first=284 second=344 amount=-4 -kerning first=199 second=356 amount=-2 -kerning first=307 second=281 amount=1 -kerning first=265 second=357 amount=-1 -kerning first=65 second=381 amount=-7 -kerning first=311 second=231 amount=1 -kerning first=354 second=295 amount=-3 -kerning first=272 second=87 amount=2 -kerning first=69 second=331 amount=-2 -kerning first=358 second=245 amount=-7 -kerning first=273 second=257 amount=2 -kerning first=73 second=281 amount=-2 -kerning first=211 second=206 amount=3 -kerning first=231 second=333 amount=-1 -kerning first=234 second=113 amount=2 -kerning first=300 second=114 amount=-2 -kerning first=120 second=295 amount=-1 -kerning first=193 second=359 amount=-12 -kerning first=216 second=296 amount=3 -kerning first=367 second=285 amount=2 -kerning first=83 second=8212 amount=4 -kerning first=86 second=271 amount=6 -kerning first=329 second=311 amount=-1 -kerning first=228 second=116 amount=-1 -kerning first=356 second=198 amount=-13 -kerning first=8212 second=313 amount=3 -kerning first=291 second=337 amount=2 -kerning first=71 second=234 amount=3 -kerning first=206 second=349 amount=-2 -kerning first=380 second=275 amount=1 -kerning first=295 second=287 amount=2 -kerning first=318 second=224 amount=-8 -kerning first=118 second=248 amount=4 -kerning first=364 second=68 amount=-6 -kerning first=195 second=262 amount=-11 -kerning first=80 second=274 amount=-9 -kerning first=241 second=106 amount=-10 -kerning first=284 second=200 amount=-2 -kerning first=84 second=224 amount=-10 -kerning first=222 second=119 amount=1 -kerning first=327 second=264 amount=3 -kerning first=104 second=351 amount=1 -kerning first=350 second=201 amount=-3 -kerning first=373 second=108 amount=2 -kerning first=45 second=80 amount=-6 -kerning first=223 second=289 amount=2 -kerning first=354 second=121 amount=-10 -kerning first=374 second=278 amount=-4 -kerning first=292 second=70 amount=-2 -kerning first=207 second=82 amount=-2 -kerning first=312 second=227 amount=2 -kerning first=89 second=314 amount=-2 -kerning first=112 second=251 amount=2 -kerning first=355 second=291 amount=2 -kerning first=358 second=71 amount=-2 -kerning first=73 second=107 amount=-2 -kerning first=336 second=304 amount=3 -kerning first=192 second=45 amount=-12 -kerning first=74 second=277 amount=-5 -kerning first=340 second=254 amount=-2 -kerning first=258 second=46 amount=-10 -kerning first=360 second=381 amount=4 -kerning first=278 second=203 amount=-5 -kerning first=58 second=70 amount=-4 -kerning first=78 second=227 amount=2 -kerning first=236 second=279 amount=1 -kerning first=121 second=291 amount=7 -kerning first=194 second=355 amount=-12 -kerning first=240 second=229 amount=2 -kerning first=260 second=356 amount=-20 -kerning first=283 second=293 amount=-1 -kerning first=286 second=73 amount=3 -kerning first=86 second=97 amount=6 -kerning first=221 second=242 amount=-4 -kerning first=326 second=357 amount=-1 -kerning first=44 second=203 amount=-4 -kerning first=287 second=243 amount=2 -kerning first=353 second=244 amount=1 -kerning first=373 second=371 amount=2 -kerning first=68 second=280 amount=-6 -kerning first=380 second=101 amount=1 -kerning first=295 second=113 amount=2 -kerning first=338 second=207 amount=-1 -kerning first=358 second=334 amount=-2 -kerning first=296 second=283 amount=-2 -kerning first=234 second=232 amount=1 -kerning first=339 second=347 amount=1 -kerning first=119 second=244 amount=4 -kerning first=254 second=359 amount=3 -kerning first=362 second=284 amount=2 -kerning first=195 second=88 amount=-9 -kerning first=300 second=233 amount=-2 -kerning first=100 second=257 amount=2 -kerning first=281 second=246 amount=1 -kerning first=196 second=258 amount=-7 -kerning first=327 second=90 amount=4 -kerning first=242 second=102 amount=-2 -kerning first=200 second=208 amount=-5 -kerning first=105 second=347 amount=1 -kerning first=266 second=209 amount=4 -kerning first=374 second=104 amount=-2 -kerning first=289 second=116 amount=2 -kerning first=66 second=233 amount=2 -kerning first=309 second=273 amount=2 -kerning first=224 second=285 amount=2 -kerning first=8211 second=262 amount=5 -kerning first=267 second=349 amount=1 -kerning first=356 second=287 amount=-10 -kerning first=271 second=299 amount=-3 -kerning first=74 second=103 amount=-5 -kerning first=340 second=80 amount=-8 -kerning first=160 second=209 amount=-8 -kerning first=75 second=273 amount=-7 -kerning first=213 second=198 amount=-7 -kerning first=118 second=337 amount=4 -kerning first=121 second=117 amount=3 -kerning first=256 second=262 amount=-11 -kerning first=194 second=211 amount=-11 -kerning first=302 second=106 amount=-14 -kerning first=214 second=338 amount=3 -kerning first=237 second=275 amount=1 -kerning first=260 second=212 amount=-11 -kerning first=195 second=351 amount=-11 -kerning first=80 second=363 amount=1 -kerning first=221 second=68 amount=-4 -kerning first=241 second=225 amount=2 -kerning first=346 second=340 amount=-3 -kerning first=349 second=120 amount=2 -kerning first=307 second=226 amount=2 -kerning first=84 second=313 amount=-1 -kerning first=222 second=238 amount=2 -kerning first=242 second=365 amount=-2 -kerning first=350 second=290 amount=3 -kerning first=268 second=82 amount=-4 -kerning first=45 second=199 amount=5 -kerning first=373 second=227 amount=5 -kerning first=65 second=326 amount=-13 -kerning first=68 second=106 amount=-12 -kerning first=88 second=263 amount=-2 -kerning first=354 second=240 amount=-10 -kerning first=374 second=367 amount=-5 -kerning first=69 second=276 amount=-5 -kerning first=230 second=108 amount=-1 -kerning first=335 second=253 amount=-2 -kerning first=115 second=120 amount=2 -kerning first=296 second=109 amount=-2 -kerning first=274 second=342 amount=-6 -kerning first=235 second=228 amount=2 -kerning first=120 second=240 amount=2 -kerning first=193 second=304 amount=-7 -kerning first=196 second=84 amount=-20 -kerning first=301 second=229 amount=2 -kerning first=344 second=293 amount=-2 -kerning first=262 second=85 amount=4 -kerning first=367 second=230 amount=1 -kerning first=282 second=242 amount=-2 -kerning first=197 second=254 amount=-3 -kerning first=302 second=369 amount=-2 -kerning first=217 second=381 amount=4 -kerning first=240 second=318 amount=-1 -kerning first=243 second=98 amount=-1 -kerning first=309 second=99 amount=1 -kerning first=86 second=216 amount=5 -kerning first=221 second=331 amount=-5 -kerning first=352 second=193 amount=-9 -kerning first=8211 second=88 amount=-6 -kerning first=375 second=100 amount=7 -kerning first=202 second=344 amount=-6 -kerning first=87 second=356 amount=-6 -kerning first=110 second=293 amount=-1 -kerning first=353 second=333 amount=1 -kerning first=356 second=113 amount=-10 -kerning first=8212 second=258 amount=-13 -kerning first=376 second=270 amount=-4 -kerning first=114 second=243 amount=-2 -kerning first=357 second=283 amount=-9 -kerning first=75 second=99 amount=-10 -kerning first=338 second=296 amount=-1 -kerning first=256 second=88 amount=-9 -kerning first=276 second=245 amount=-2 -kerning first=237 second=101 amount=1 -kerning first=119 second=333 amount=4 -kerning first=195 second=207 amount=-7 -kerning first=300 second=322 amount=-2 -kerning first=323 second=259 amount=2 -kerning first=238 second=271 amount=2 -kerning first=346 second=196 amount=-9 -kerning first=369 second=103 amount=2 -kerning first=281 second=335 amount=1 -kerning first=196 second=347 amount=-11 -kerning first=370 second=273 amount=2 -kerning first=285 second=285 amount=5 -kerning first=88 second=89 amount=2 -kerning first=223 second=234 amount=1 -kerning first=328 second=349 amount=1 -kerning first=108 second=246 amount=1 -kerning first=243 second=361 amount=-2 -kerning first=354 second=66 amount=-8 -kerning first=266 second=298 amount=3 -kerning first=289 second=235 amount=2 -kerning first=89 second=259 amount=-3 -kerning first=8211 second=351 amount=4 -kerning first=375 second=363 amount=3 -kerning first=70 second=272 amount=-9 -kerning first=208 second=197 amount=-8 -kerning first=231 second=104 amount=-1 -kerning first=74 second=222 amount=-4 -kerning first=363 second=106 amount=-10 -kerning first=160 second=298 amount=-4 -kerning first=278 second=118 amount=-2 -kerning first=298 second=275 amount=-2 -kerning first=98 second=299 amount=2 -kerning first=236 second=224 amount=2 -kerning first=121 second=236 amount=3 -kerning first=256 second=351 amount=-11 -kerning first=341 second=339 amount=-2 -kerning first=364 second=276 amount=-6 -kerning first=282 second=68 amount=-5 -kerning first=194 second=300 amount=-7 -kerning first=197 second=80 amount=-17 -kerning first=102 second=249 amount=-7 -kerning first=345 second=289 amount=-2 -kerning first=348 second=69 amount=-3 -kerning first=368 second=226 amount=2 -kerning first=198 second=250 amount=-7 -kerning first=83 second=262 amount=3 -kerning first=218 second=377 amount=4 -kerning first=241 second=314 amount=-1 -kerning first=349 second=239 amount=1 -kerning first=202 second=200 amount=-5 -kerning first=87 second=212 amount=2 -kerning first=225 second=107 amount=-1 -kerning first=107 second=339 amount=1 -kerning first=8212 second=84 amount=-7 -kerning first=268 second=201 amount=-2 -kerning first=45 second=288 amount=5 -kerning first=373 second=316 amount=2 -kerning first=291 second=108 amount=2 -kerning first=68 second=225 amount=2 -kerning first=203 second=340 amount=-6 -kerning first=206 second=120 amount=-1 -kerning first=311 second=265 amount=1 -kerning first=357 second=109 amount=-9 -kerning first=292 second=278 amount=-6 -kerning first=69 second=365 amount=-2 -kerning first=230 second=227 amount=2 -kerning first=115 second=239 amount=1 -kerning first=358 second=279 amount=-7 -kerning first=273 second=291 amount=2 -kerning first=362 second=229 amount=2 -kerning first=80 second=45 amount=2 -kerning first=238 second=97 amount=2 -kerning first=343 second=242 amount=-2 -kerning first=258 second=254 amount=-3 -kerning first=58 second=278 amount=-4 -kerning first=196 second=203 amount=-10 -kerning first=304 second=98 amount=-2 -kerning first=262 second=204 amount=3 -kerning first=282 second=331 amount=-2 -kerning first=285 second=111 amount=2 -kerning first=197 second=343 amount=-12 -kerning first=82 second=355 amount=-2 -kerning first=220 second=280 amount=-6 -kerning first=348 second=332 amount=3 -kerning first=351 second=112 amount=1 -kerning first=86 second=305 amount=3 -kerning first=224 second=230 amount=1 -kerning first=244 second=357 amount=-1 -kerning first=352 second=282 amount=-3 -kerning first=8211 second=207 amount=-5 -kerning first=67 second=318 amount=2 -kerning first=70 second=98 amount=-2 -kerning first=205 second=243 amount=-2 -kerning first=248 second=307 amount=-2 -kerning first=356 second=232 amount=-7 -kerning first=8212 second=347 amount=4 -kerning first=271 second=244 amount=-9 -kerning first=376 second=359 amount=-2 -kerning first=291 second=371 amount=2 -kerning first=71 second=268 amount=3 -kerning first=229 second=320 amount=-1 -kerning first=232 second=100 amount=2 -kerning first=298 second=101 amount=-2 -kerning first=256 second=207 amount=-7 -kerning first=361 second=322 amount=-1 -kerning first=299 second=271 amount=2 -kerning first=99 second=295 amount=-1 -kerning first=342 second=335 amount=-2 -kerning first=345 second=115 amount=-2 -kerning first=122 second=232 amount=1 -kerning first=257 second=347 amount=1 -kerning first=195 second=296 amount=-7 -kerning first=198 second=76 amount=-3 -kerning first=103 second=245 amount=2 -kerning first=304 second=361 amount=-2 -kerning first=84 second=258 amount=-13 -kerning first=45 second=114 amount=2 -kerning first=65 second=271 amount=-10 -kerning first=88 second=208 amount=-2 -kerning first=226 second=103 amount=2 -kerning first=108 second=335 amount=1 -kerning first=351 second=375 amount=1 -kerning first=374 second=312 amount=-2 -kerning first=46 second=284 amount=-3 -kerning first=289 second=324 amount=2 -kerning first=207 second=116 amount=-2 -kerning first=89 second=348 amount=-4 -kerning first=227 second=273 amount=2 -kerning first=112 second=285 amount=5 -kerning first=358 second=105 amount=-2 -kerning first=70 second=361 amount=-3 -kerning first=208 second=286 amount=4 -kerning first=231 second=223 amount=2 -kerning first=336 second=338 amount=3 -kerning first=116 second=235 amount=1 -kerning first=359 second=275 amount=1 -kerning first=192 second=79 amount=-11 -kerning first=297 second=224 amount=2 -kerning first=258 second=80 amount=-17 -kerning first=363 second=225 amount=2 -kerning first=59 second=274 amount=-4 -kerning first=197 second=199 amount=-11 -kerning first=302 second=314 amount=-2 -kerning first=220 second=106 amount=-12 -kerning first=240 second=263 amount=1 -kerning first=286 second=107 amount=2 -kerning first=198 second=339 amount=-5 -kerning first=201 second=119 amount=-2 -kerning first=221 second=276 amount=-4 -kerning first=349 second=328 amount=1 -kerning first=264 second=340 amount=-4 -kerning first=267 second=120 amount=2 -kerning first=287 second=277 amount=2 -kerning first=225 second=226 amount=2 -kerning first=333 second=121 amount=-2 -kerning first=356 second=58 amount=-15 -kerning first=8212 second=203 amount=-7 -kerning first=45 second=377 amount=-4 -kerning first=291 second=227 amount=5 -kerning first=206 second=239 amount=-2 -kerning first=357 second=228 amount=-8 -kerning first=272 second=240 amount=2 -kerning first=75 second=44 amount=-5 -kerning first=230 second=316 amount=-1 -kerning first=115 second=328 amount=1 -kerning first=118 second=108 amount=2 -kerning first=56 second=57 amount=2 -kerning first=299 second=97 amount=2 -kerning first=99 second=121 amount=-1 -kerning first=365 second=98 amount=-1 -kerning first=280 second=110 amount=-2 -kerning first=192 second=342 amount=-17 -kerning first=195 second=122 amount=-7 -kerning first=300 second=267 amount=-2 -kerning first=77 second=354 amount=-7 -kerning first=100 second=291 amount=2 -kerning first=258 second=343 amount=-12 -kerning first=366 second=268 amount=2 -kerning first=81 second=304 amount=3 -kerning first=84 second=84 amount=-8 -kerning first=219 second=229 amount=2 -kerning first=347 second=281 amount=1 -kerning first=262 second=293 amount=2 -kerning first=285 second=230 amount=2 -kerning first=65 second=97 amount=-10 -kerning first=200 second=242 amount=-2 -kerning first=351 second=231 amount=1 -kerning first=66 second=267 amount=2 -kerning first=112 second=111 amount=2 -kerning first=8211 second=296 amount=-5 -kerning first=270 second=193 amount=-8 -kerning first=290 second=320 amount=2 -kerning first=90 second=344 amount=2 -kerning first=113 second=281 amount=1 -kerning first=359 second=101 amount=1 -kerning first=271 second=333 amount=-9 -kerning first=291 second=8211 amount=4 -kerning first=71 second=357 amount=2 -kerning first=209 second=282 amount=-6 -kerning first=294 second=270 amount=-6 -kerning first=360 second=271 amount=2 -kerning first=275 second=283 amount=1 -kerning first=193 second=75 amount=-5 -kerning first=75 second=307 amount=-7 -kerning first=318 second=347 amount=-8 -kerning first=98 second=244 amount=2 -kerning first=233 second=359 amount=-1 -kerning first=118 second=371 amount=2 -kerning first=256 second=296 amount=-7 -kerning first=279 second=233 amount=1 -kerning first=194 second=245 amount=-12 -kerning first=237 second=309 amount=-11 -kerning first=345 second=234 amount=-2 -kerning first=280 second=373 amount=-2 -kerning first=198 second=195 amount=-6 -kerning first=221 second=102 amount=-4 -kerning first=241 second=259 amount=2 -kerning first=369 second=311 amount=-1 -kerning first=287 second=103 amount=5 -kerning first=84 second=347 amount=-10 -kerning first=222 second=272 amount=-9 -kerning first=353 second=104 amount=1 -kerning first=268 second=116 amount=2 -kerning first=45 second=233 amount=4 -kerning first=373 second=261 amount=5 -kerning first=354 second=274 amount=-8 -kerning first=272 second=66 amount=-6 -kerning first=292 second=223 amount=2 -kerning first=72 second=90 amount=4 -kerning first=207 second=235 amount=-2 -kerning first=358 second=224 amount=-10 -kerning first=319 second=80 amount=-4 -kerning first=119 second=104 amount=2 -kerning first=254 second=249 amount=2 -kerning first=192 second=198 amount=-6 -kerning first=77 second=210 amount=3 -kerning first=258 second=199 amount=-11 -kerning first=363 second=314 amount=-1 -kerning first=278 second=326 amount=-2 -kerning first=281 second=106 amount=-13 -kerning first=193 second=338 amount=-11 -kerning first=196 second=118 amount=-13 -kerning first=301 second=263 amount=1 -kerning first=101 second=287 amount=2 -kerning first=347 second=107 amount=1 -kerning first=282 second=276 amount=-5 -kerning first=197 second=288 amount=-11 -kerning first=200 second=68 amount=-5 -kerning first=85 second=80 amount=-2 -kerning first=220 second=225 amount=2 -kerning first=325 second=340 amount=-2 -kerning first=328 second=120 amount=-1 -kerning first=263 second=289 amount=1 -kerning first=266 second=69 amount=-2 -kerning first=221 second=365 amount=-5 -kerning first=372 second=354 amount=-6 -kerning first=47 second=106 amount=-19 -kerning first=113 second=107 amount=-1 -kerning first=248 second=252 amount=-2 -kerning first=353 second=367 amount=1 -kerning first=51 second=56 amount=2 -kerning first=291 second=316 amount=2 -kerning first=206 second=328 amount=-2 -kerning first=114 second=277 amount=-2 -kerning first=160 second=69 amount=-6 -kerning first=360 second=97 amount=2 -kerning first=213 second=58 amount=-5 -kerning first=118 second=227 amount=5 -kerning first=256 second=122 amount=-7 -kerning first=194 second=71 amount=-11 -kerning first=99 second=240 amount=1 -kerning first=234 second=355 amount=-1 -kerning first=119 second=367 amount=2 -kerning first=260 second=72 amount=-4 -kerning first=300 second=356 amount=-2 -kerning first=80 second=253 amount=1 -kerning first=196 second=381 amount=-7 -kerning first=84 second=203 amount=-8 -kerning first=65 second=216 amount=-11 -kerning first=200 second=331 amount=-2 -kerning first=203 second=111 amount=-2 -kerning first=351 second=320 amount=1 -kerning first=354 second=100 amount=-10 -kerning first=374 second=257 amount=-3 -kerning first=289 second=269 amount=2 -kerning first=66 second=356 amount=-4 -kerning first=204 second=281 amount=-2 -kerning first=89 second=293 amount=-2 -kerning first=112 second=230 amount=2 -kerning first=352 second=8211 amount=4 -kerning first=270 second=282 amount=-6 -kerning first=74 second=256 amount=-8 -kerning first=117 second=320 amount=-1 -kerning first=120 second=100 amount=2 -kerning first=160 second=332 amount=-3 -kerning first=193 second=194 amount=-7 -kerning first=298 second=309 amount=-14 -kerning first=98 second=333 amount=2 -kerning first=101 second=113 amount=2 -kerning first=118 second=8211 amount=4 -kerning first=279 second=322 amount=-1 -kerning first=194 second=334 amount=-11 -kerning first=197 second=114 amount=-12 -kerning first=214 second=8212 amount=3 -kerning first=217 second=271 amount=2 -kerning first=102 second=283 amount=-8 -kerning first=260 second=335 amount=-12 -kerning first=263 second=115 amount=1 -kerning first=198 second=284 amount=-7 -kerning first=86 second=76 amount=4 -kerning first=329 second=116 amount=-1 -kerning first=106 second=233 amount=1 -kerning first=349 second=273 amount=3 -kerning first=67 second=89 amount=4 -kerning first=307 second=349 amount=1 -kerning first=222 second=361 amount=2 -kerning first=330 second=286 amount=3 -kerning first=8212 second=118 amount=2 -kerning first=68 second=259 amount=2 -kerning first=226 second=311 amount=-1 -kerning first=114 second=103 amount=-2 -kerning first=354 second=363 amount=-6 -kerning first=269 second=375 amount=-1 -kerning first=207 second=324 amount=-2 -kerning first=115 second=273 amount=3 -kerning first=358 second=313 amount=-1 -kerning first=73 second=349 amount=-2 -kerning first=119 second=223 amount=5 -kerning first=277 second=275 amount=1 -kerning first=192 second=287 amount=-10 -kerning first=195 second=67 amount=-11 -kerning first=77 second=299 amount=1 -kerning first=80 second=79 amount=3 -kerning first=320 second=339 amount=-1 -kerning first=235 second=351 amount=1 -kerning first=258 second=288 amount=-11 -kerning first=366 second=213 amount=2 -kerning first=281 second=225 amount=2 -kerning first=324 second=289 amount=2 -kerning first=327 second=69 amount=-6 -kerning first=347 second=226 amount=3 -kerning first=367 second=353 amount=1 -kerning first=282 second=365 amount=-2 -kerning first=197 second=377 amount=-7 -kerning first=85 second=199 amount=2 -kerning first=108 second=106 amount=-12 -kerning first=243 second=251 amount=-2 -kerning first=374 second=83 amount=-4 -kerning first=204 second=107 amount=-2 -kerning first=86 second=339 amount=3 -kerning first=89 second=119 amount=-4 -kerning first=8211 second=241 amount=2 -kerning first=375 second=253 amount=3 -kerning first=205 second=277 amount=-2 -kerning first=333 second=329 amount=-3 -kerning first=113 second=226 amount=2 -kerning first=356 second=266 amount=-2 -kerning first=8212 second=381 amount=-4 -kerning first=71 second=302 amount=3 -kerning first=74 second=82 amount=-4 -kerning first=209 second=227 amount=2 -kerning first=360 second=216 amount=2 -kerning first=275 second=228 amount=2 -kerning first=295 second=355 amount=-1 -kerning first=341 second=229 amount=-2 -kerning first=118 second=316 amount=2 -kerning first=217 second=97 amount=2 -kerning first=99 second=329 amount=-4 -kerning first=102 second=109 amount=-7 -kerning first=368 second=86 amount=2 -kerning first=283 second=98 amount=-1 -kerning first=195 second=330 amount=-15 -kerning first=198 second=110 amount=-6 -kerning first=80 second=342 amount=-7 -kerning first=103 second=279 amount=2 -kerning first=349 second=99 amount=1 -kerning first=199 second=280 amount=-2 -kerning first=327 second=332 amount=3 -kerning first=107 second=229 amount=2 -kerning first=68 second=85 amount=2 -kerning first=88 second=242 amount=-2 -kerning first=374 second=346 amount=-4 -kerning first=115 second=99 amount=1 -kerning first=355 second=359 amount=-1 -kerning first=53 second=48 amount=1 -kerning first=296 second=88 amount=2 -kerning first=316 second=245 amount=1 -kerning first=231 second=257 amount=1 -kerning first=359 second=309 amount=-12 -kerning first=362 second=89 amount=2 -kerning first=277 second=101 amount=1 -kerning first=192 second=113 amount=-10 -kerning first=258 second=114 amount=-12 -kerning first=363 second=259 amount=2 -kerning first=193 second=283 amount=-12 -kerning first=324 second=115 amount=1 -kerning first=101 second=232 amount=1 -kerning first=236 second=347 amount=1 -kerning first=121 second=359 amount=3 -kerning first=197 second=233 amount=-12 -kerning first=325 second=285 amount=2 -kerning first=348 second=222 amount=-3 -kerning first=198 second=373 amount=-6 -kerning first=86 second=195 amount=-3 -kerning first=8211 second=67 amount=5 -kerning first=287 second=311 amount=2 -kerning first=67 second=208 amount=-2 -kerning first=353 second=312 amount=1 -kerning first=8212 second=237 amount=2 -kerning first=337 second=105 amount=-2 -kerning first=272 second=274 amount=-6 -kerning first=318 second=118 amount=-10 -kerning first=256 second=67 amount=-11 -kerning first=296 second=351 amount=-2 -kerning first=119 second=312 amount=2 -kerning first=300 second=301 amount=-2 -kerning first=80 second=198 amount=-15 -kerning first=103 second=105 amount=3 -kerning first=258 second=377 amount=-7 -kerning first=281 second=314 amount=-1 -kerning first=196 second=326 amount=-13 -kerning first=304 second=251 amount=-2 -kerning first=81 second=338 amount=3 -kerning first=84 second=118 amount=-5 -kerning first=262 second=327 amount=4 -kerning first=200 second=276 amount=-5 -kerning first=85 second=288 amount=2 -kerning first=88 second=68 amount=-2 -kerning first=331 second=108 amount=-1 -kerning first=108 second=225 amount=2 -kerning first=246 second=120 amount=-2 -kerning first=351 second=265 amount=1 -kerning first=354 second=45 amount=-7 -kerning first=374 second=202 amount=-4 -kerning first=89 second=238 amount=-3 -kerning first=224 second=353 amount=1 -kerning first=8211 second=330 amount=-2 -kerning first=270 second=227 amount=2 -kerning first=290 second=354 amount=-2 -kerning first=356 second=355 amount=-3 -kerning first=271 second=367 amount=-9 -kerning first=74 second=201 amount=-5 -kerning first=97 second=108 amount=-1 -kerning first=193 second=109 amount=-13 -kerning first=298 second=254 amount=-2 -kerning first=75 second=341 amount=-9 -kerning first=216 second=46 amount=-5 -kerning first=341 second=318 amount=-1 -kerning first=344 second=98 amount=-2 -kerning first=256 second=330 amount=-15 -kerning first=279 second=267 amount=1 -kerning first=194 second=279 amount=-12 -kerning first=197 second=59 amount=-10 -kerning first=102 second=228 amount=-6 -kerning first=260 second=280 amount=-10 -kerning first=198 second=229 amount=-3 -kerning first=218 second=356 amount=-6 -kerning first=241 second=293 amount=-1 -kerning first=284 second=357 amount=2 -kerning first=84 second=381 amount=-2 -kerning first=110 second=98 amount=-1 -kerning first=350 second=358 amount=-3 -kerning first=45 second=267 amount=4 -kerning first=373 second=295 amount=2 -kerning first=206 second=99 amount=-2 -kerning first=311 second=244 amount=1 -kerning first=88 second=331 amount=-3 -kerning first=269 second=320 amount=-1 -kerning first=272 second=100 amount=2 -kerning first=292 second=257 amount=2 -kerning first=69 second=344 amount=-6 -kerning first=207 second=269 amount=-2 -kerning first=358 second=258 amount=-13 -kerning first=270 second=8211 amount=4 -kerning first=336 second=8212 amount=3 -kerning first=339 second=271 amount=2 -kerning first=254 second=283 amount=2 -kerning first=362 second=208 amount=-6 -kerning first=192 second=232 amount=-12 -kerning first=297 second=347 amount=1 -kerning first=258 second=233 amount=-12 -kerning first=197 second=322 amount=-12 -kerning first=220 second=259 amount=2 -kerning first=105 second=271 amount=2 -kerning first=201 second=272 amount=-5 -kerning first=86 second=284 amount=5 -kerning first=267 second=273 amount=1 -kerning first=205 second=222 amount=-2 -kerning first=225 second=349 amount=1 -kerning first=356 second=211 amount=-2 -kerning first=8212 second=326 amount=2 -kerning first=376 second=338 amount=-1 -kerning first=114 second=311 amount=-1 -kerning first=357 second=351 amount=-8 -kerning first=298 second=80 amount=-2 -kerning first=75 second=197 amount=-3 -kerning first=318 second=237 amount=-3 -kerning first=98 second=104 amount=3 -kerning first=118 second=261 amount=5 -kerning first=364 second=81 amount=2 -kerning first=319 second=377 amount=2 -kerning first=342 second=314 amount=-2 -kerning first=195 second=275 amount=-12 -kerning first=83 second=67 amount=3 -kerning first=326 second=107 amount=-1 -kerning first=103 second=224 amount=5 -kerning first=346 second=264 amount=3 -kerning first=304 second=340 amount=-2 -kerning first=84 second=237 amount=-2 -kerning first=350 second=214 amount=3 -kerning first=265 second=226 amount=1 -kerning first=373 second=121 amount=2 -kerning first=285 second=353 amount=2 -kerning first=200 second=365 amount=-2 -kerning first=85 second=377 amount=4 -kerning first=331 second=227 amount=2 -kerning first=246 second=239 amount=-2 -kerning first=374 second=291 amount=-3 -kerning first=289 second=303 amount=3 -kerning first=69 second=200 amount=-5 -kerning first=312 second=240 amount=2 -kerning first=358 second=84 amount=-8 -kerning first=70 second=340 amount=-7 -kerning first=73 second=120 amount=-1 -kerning first=211 second=45 amount=3 -kerning first=339 second=97 amount=2 -kerning first=254 second=109 amount=2 -kerning first=359 second=254 amount=-1 -kerning first=192 second=58 amount=-10 -kerning first=77 second=70 amount=-4 -kerning first=97 second=227 amount=2 -kerning first=258 second=59 amount=-10 -kerning first=193 second=228 amount=-10 -kerning first=78 second=240 amount=2 -kerning first=98 second=367 amount=2 -kerning first=259 second=229 amount=2 -kerning first=364 second=344 amount=-2 -kerning first=302 second=293 amount=-2 -kerning first=105 second=97 amount=2 -kerning first=240 second=242 amount=1 -kerning first=345 second=357 amount=-1 -kerning first=260 second=369 amount=-13 -kerning first=286 second=86 amount=4 -kerning first=198 second=318 amount=-2 -kerning first=86 second=110 amount=2 -kerning first=106 second=267 amount=1 -kerning first=349 second=307 amount=1 -kerning first=44 second=216 amount=-3 -kerning first=87 second=280 amount=-6 -kerning first=248 second=112 amount=-2 -kerning first=353 second=257 amount=3 -kerning first=376 second=194 amount=-3 -kerning first=45 second=356 amount=-7 -kerning first=71 second=73 amount=3 -kerning first=311 second=333 amount=1 -kerning first=111 second=357 amount=-1 -kerning first=207 second=358 amount=-2 -kerning first=230 second=295 amount=-1 -kerning first=115 second=307 amount=1 -kerning first=358 second=347 amount=-10 -kerning first=273 second=359 amount=-1 -kerning first=99 second=100 amount=1 -kerning first=234 second=245 amount=1 -kerning first=119 second=257 amount=5 -kerning first=277 second=309 amount=-13 -kerning first=195 second=101 amount=-12 -kerning first=300 second=246 amount=-2 -kerning first=80 second=113 amount=2 -kerning first=258 second=322 amount=-12 -kerning first=281 second=259 amount=2 -kerning first=193 second=8212 amount=-12 -kerning first=196 second=271 amount=-10 -kerning first=219 second=208 amount=-6 -kerning first=327 second=103 amount=2 -kerning first=239 second=335 amount=1 -kerning first=262 second=272 amount=-2 -kerning first=65 second=76 amount=-7 -kerning first=328 second=273 amount=2 -kerning first=266 second=222 amount=-2 -kerning first=374 second=117 amount=-5 -kerning first=66 second=246 amount=2 -kerning first=201 second=361 amount=-2 -kerning first=86 second=373 amount=3 -kerning first=8211 second=275 amount=4 -kerning first=375 second=287 amount=7 -kerning first=70 second=196 amount=-12 -kerning first=205 second=311 amount=-2 -kerning first=333 second=363 amount=-2 -kerning first=248 second=375 amount=-2 -kerning first=356 second=300 amount=-2 -kerning first=160 second=222 amount=-6 -kerning first=75 second=286 amount=-8 -kerning first=78 second=66 amount=2 -kerning first=318 second=326 amount=-9 -kerning first=98 second=223 amount=3 -kerning first=341 second=263 amount=-2 -kerning first=256 second=275 amount=-12 -kerning first=364 second=200 amount=-6 -kerning first=59 second=79 amount=-3 -kerning first=194 second=224 amount=-10 -kerning first=302 second=119 amount=-2 -kerning first=260 second=225 amount=-10 -kerning first=368 second=120 amount=-2 -kerning first=303 second=289 amount=2 -kerning first=221 second=81 amount=-1 -kerning first=326 second=226 amount=2 -kerning first=372 second=70 amount=-2 -kerning first=284 second=302 amount=3 -kerning first=199 second=314 amount=2 -kerning first=84 second=326 amount=-6 -kerning first=87 second=106 amount=-12 -kerning first=107 second=263 amount=1 -kerning first=45 second=212 amount=5 -kerning first=373 second=240 amount=5 -kerning first=65 second=339 amount=-12 -kerning first=88 second=276 amount=-2 -kerning first=331 second=316 amount=-1 -kerning first=246 second=328 amount=-2 -kerning first=272 second=45 amount=4 -kerning first=292 second=202 amount=-6 -kerning first=72 second=69 amount=-6 -kerning first=312 second=329 amount=-2 -kerning first=112 second=353 amount=2 -kerning first=358 second=203 amount=-8 -kerning first=73 second=239 amount=-2 -kerning first=208 second=354 amount=-6 -kerning first=316 second=279 amount=1 -kerning first=231 second=291 amount=1 -kerning first=254 second=228 amount=5 -kerning first=212 second=304 amount=3 -kerning first=97 second=316 amount=-1 -kerning first=340 second=356 amount=-8 -kerning first=363 second=293 amount=-1 -kerning first=58 second=202 amount=-4 -kerning first=196 second=97 amount=-10 -kerning first=301 second=242 amount=1 -kerning first=259 second=318 amount=-1 -kerning first=262 second=98 amount=2 -kerning first=59 second=342 amount=-4 -kerning first=197 second=267 amount=-12 -kerning first=348 second=256 amount=-9 -kerning first=286 second=205 amount=3 -kerning first=86 second=229 amount=6 -kerning first=221 second=344 amount=-1 -kerning first=8211 second=101 amount=4 -kerning first=375 second=113 amount=7 -kerning first=8212 second=271 amount=4 -kerning first=268 second=358 amount=-2 -kerning first=291 second=295 amount=2 -kerning first=206 second=307 amount=-2 -kerning first=256 second=101 amount=-12 -kerning first=214 second=207 amount=3 -kerning first=254 second=8212 amount=3 -kerning first=257 second=271 amount=2 -kerning first=280 second=208 amount=-5 -kerning first=300 second=335 amount=-2 -kerning first=303 second=115 amount=1 -kerning first=323 second=272 amount=-6 -kerning first=100 second=359 amount=-1 -kerning first=366 second=336 amount=2 -kerning first=369 second=116 amount=-1 -kerning first=327 second=222 amount=-2 -kerning first=370 second=286 amount=2 -kerning first=65 second=195 amount=-7 -kerning first=108 second=259 amount=2 -kerning first=351 second=299 amount=1 -kerning first=354 second=79 amount=-2 -kerning first=266 second=311 amount=2 -kerning first=46 second=208 amount=-3 -kerning first=289 second=248 amount=2 -kerning first=66 second=335 amount=2 -kerning first=89 second=272 amount=-4 -kerning first=8211 second=364 amount=5 -kerning first=70 second=285 amount=-3 -kerning first=208 second=210 amount=4 -kerning first=382 second=106 amount=-8 -kerning first=74 second=235 amount=-5 -kerning first=232 second=287 amount=2 -kerning first=275 second=351 amount=1 -kerning first=75 second=375 amount=-4 -kerning first=213 second=300 amount=3 -kerning first=98 second=312 amount=2 -kerning first=121 second=249 amount=3 -kerning first=364 second=289 amount=2 -kerning first=194 second=313 amount=-7 -kerning first=302 second=238 amount=-2 -kerning first=348 second=82 amount=-3 -kerning first=260 second=314 amount=-12 -kerning first=198 second=263 amount=-5 -kerning first=221 second=200 amount=-4 -kerning first=244 second=107 amount=-1 -kerning first=349 second=252 amount=1 -kerning first=67 second=68 amount=-2 -kerning first=87 second=225 amount=2 -kerning first=222 second=340 amount=-7 -kerning first=225 second=120 amount=-1 -kerning first=333 second=45 amount=3 -kerning first=8212 second=97 amount=4 -kerning first=373 second=329 amount=-3 -kerning first=45 second=301 amount=2 -kerning first=376 second=109 amount=-5 -kerning first=291 second=121 amount=2 -kerning first=88 second=365 amount=-3 -kerning first=354 second=342 amount=-5 -kerning first=357 second=122 amount=-10 -kerning first=292 second=291 amount=2 -kerning first=207 second=303 amount=-2 -kerning first=230 second=240 amount=2 -kerning first=335 second=355 amount=-1 -kerning first=115 second=252 amount=1 -kerning first=276 second=84 amount=-5 -kerning first=296 second=241 amount=-2 -kerning first=73 second=328 amount=-2 -kerning first=257 second=97 amount=2 -kerning first=277 second=254 amount=-1 -kerning first=192 second=266 amount=-11 -kerning first=195 second=46 amount=-10 -kerning first=80 second=58 amount=-4 -kerning first=320 second=318 amount=-2 -kerning first=258 second=267 amount=-12 -kerning first=196 second=216 amount=-11 -kerning first=304 second=111 amount=-2 -kerning first=101 second=355 amount=-1 -kerning first=282 second=344 amount=-6 -kerning first=197 second=356 amount=-20 -kerning first=263 second=357 amount=-1 -kerning first=309 second=231 amount=1 -kerning first=86 second=318 amount=3 -kerning first=89 second=98 amount=-2 -kerning first=270 second=87 amount=2 -kerning first=375 second=232 amount=3 -kerning first=70 second=111 amount=-4 -kerning first=248 second=320 amount=-1 -kerning first=356 second=245 amount=-7 -kerning first=8212 second=360 amount=5 -kerning first=271 second=257 amount=-8 -kerning first=71 second=281 amount=3 -kerning first=232 second=113 amount=2 -kerning first=298 second=114 amount=-2 -kerning first=75 second=231 amount=-10 -kerning first=315 second=8212 amount=-5 -kerning first=318 second=271 amount=-8 -kerning first=233 second=283 amount=1 -kerning first=118 second=295 amount=2 -kerning first=214 second=296 amount=3 -kerning first=237 second=233 amount=1 -kerning first=365 second=285 amount=2 -kerning first=198 second=89 amount=-2 -kerning first=303 second=234 amount=1 -kerning first=81 second=8212 amount=3 -kerning first=84 second=271 amount=-10 -kerning first=222 second=196 amount=-13 -kerning first=65 second=284 amount=-11 -kerning first=88 second=221 amount=2 -kerning first=226 second=116 amount=-1 -kerning first=354 second=198 amount=-13 -kerning first=289 second=337 amount=2 -kerning first=204 second=349 amount=-2 -kerning first=89 second=361 amount=-5 -kerning first=358 second=118 amount=-5 -kerning first=378 second=275 amount=1 -kerning first=316 second=224 amount=2 -kerning first=362 second=68 amount=-6 -kerning first=74 second=324 amount=-4 -kerning first=193 second=262 amount=-11 -kerning first=78 second=274 amount=-6 -kerning first=239 second=106 amount=-11 -kerning first=282 second=200 amount=-5 -kerning first=197 second=212 amount=-11 -kerning first=325 second=264 amount=3 -kerning first=102 second=351 amount=-7 -kerning first=348 second=201 amount=-3 -kerning first=371 second=108 amount=-1 -kerning first=198 second=352 amount=-3 -kerning first=221 second=289 amount=-3 -kerning first=372 second=278 amount=-6 -kerning first=290 second=70 amount=-2 -kerning first=205 second=82 amount=-2 -kerning first=330 second=354 amount=-6 -kerning first=353 second=291 amount=3 -kerning first=356 second=71 amount=-2 -kerning first=8212 second=216 amount=5 -kerning first=376 second=228 amount=-3 -kerning first=291 second=240 amount=5 -kerning first=71 second=107 amount=2 -kerning first=206 second=252 amount=-2 -kerning first=334 second=304 amount=3 -kerning first=318 second=97 amount=-8 -kerning first=118 second=121 amount=2 -kerning first=256 second=46 amount=-10 -kerning first=358 second=381 amount=-2 -kerning first=276 second=203 amount=-5 -kerning first=234 second=279 amount=1 -kerning first=119 second=291 amount=5 -kerning first=192 second=355 amount=-12 -kerning first=238 second=229 amount=2 -kerning first=258 second=356 amount=-20 -kerning first=281 second=293 amount=-1 -kerning first=284 second=73 amount=3 -kerning first=199 second=85 amount=4 -kerning first=84 second=97 amount=-10 -kerning first=324 second=357 amount=-1 -kerning first=104 second=254 amount=-1 -kerning first=285 second=243 amount=2 -kerning first=65 second=110 amount=-13 -kerning first=351 second=244 amount=1 -kerning first=66 second=280 amount=-4 -kerning first=312 second=100 amount=2 -kerning first=8211 second=309 amount=-7 -kerning first=378 second=101 amount=1 -kerning first=70 second=230 amount=-6 -kerning first=336 second=207 amount=3 -kerning first=356 second=334 amount=-2 -kerning first=232 second=232 amount=1 -kerning first=360 second=284 amount=2 -kerning first=160 second=256 amount=-3 -kerning first=193 second=88 amount=-9 -kerning first=298 second=233 amount=-2 -kerning first=75 second=320 amount=-7 -kerning first=78 second=100 amount=2 -kerning first=98 second=257 amount=5 -kerning first=279 second=246 amount=1 -kerning first=194 second=258 amount=-7 -kerning first=76 second=8211 amount=-5 -kerning first=325 second=90 amount=4 -kerning first=260 second=259 amount=-10 -kerning first=198 second=208 amount=-2 -kerning first=221 second=115 amount=-4 -kerning first=103 second=347 amount=2 -kerning first=264 second=209 amount=4 -kerning first=287 second=116 amount=2 -kerning first=307 second=273 amount=2 -kerning first=222 second=285 amount=2 -kerning first=330 second=210 amount=3 -kerning first=353 second=117 amount=1 -kerning first=265 second=349 amount=1 -kerning first=45 second=246 amount=4 -kerning first=65 second=373 amount=-13 -kerning first=311 second=223 amount=3 -kerning first=354 second=287 amount=-10 -kerning first=272 second=79 amount=4 -kerning first=72 second=103 amount=2 -kerning first=207 second=248 amount=-2 -kerning first=338 second=80 amount=-7 -kerning first=358 second=237 amount=-2 -kerning first=211 second=198 amount=-7 -kerning first=116 second=337 amount=1 -kerning first=119 second=117 amount=2 -kerning first=192 second=211 amount=-11 -kerning first=300 second=106 amount=-14 -kerning first=77 second=223 amount=2 -kerning first=212 second=338 amount=3 -kerning first=320 second=263 amount=-1 -kerning first=120 second=287 amount=2 -kerning first=258 second=212 amount=-11 -kerning first=193 second=351 amount=-11 -kerning first=219 second=68 amount=-6 -kerning first=239 second=225 amount=2 -kerning first=344 second=340 amount=-8 -kerning first=347 second=120 amount=2 -kerning first=305 second=226 amount=2 -kerning first=82 second=313 amount=3 -kerning first=348 second=290 amount=3 -kerning first=266 second=82 amount=-4 -kerning first=371 second=227 amount=2 -kerning first=66 second=106 amount=-12 -kerning first=86 second=263 amount=3 -kerning first=67 second=276 amount=-2 -kerning first=228 second=108 amount=-1 -kerning first=333 second=253 amount=-2 -kerning first=71 second=226 amount=5 -kerning first=160 second=82 amount=-9 -kerning first=272 second=342 amount=-3 -kerning first=233 second=228 amount=2 -kerning first=118 second=240 amount=5 -kerning first=194 second=84 amount=-20 -kerning first=299 second=229 amount=2 -kerning first=342 second=293 amount=-2 -kerning first=260 second=85 amount=-7 -kerning first=365 second=230 amount=1 -kerning first=280 second=242 amount=-2 -kerning first=195 second=254 amount=-3 -kerning first=300 second=369 amount=-2 -kerning first=80 second=266 amount=3 -kerning first=83 second=46 amount=-4 -kerning first=241 second=98 amount=-1 -kerning first=199 second=204 amount=3 -kerning first=84 second=216 amount=-2 -kerning first=307 second=99 amount=1 -kerning first=350 second=193 amount=-9 -kerning first=373 second=100 amount=5 -kerning first=65 second=229 amount=-10 -kerning first=200 second=344 amount=-6 -kerning first=85 second=356 amount=-6 -kerning first=223 second=281 amount=1 -kerning first=351 second=333 amount=1 -kerning first=354 second=113 amount=-10 -kerning first=374 second=270 amount=-4 -kerning first=207 second=74 amount=-2 -kerning first=112 second=243 amount=2 -kerning first=355 second=283 amount=1 -kerning first=70 second=319 amount=-4 -kerning first=73 second=99 amount=-2 -kerning first=336 second=296 amount=3 -kerning first=359 second=233 amount=1 -kerning first=274 second=245 amount=-2 -kerning first=74 second=269 amount=-5 -kerning first=120 second=113 amount=2 -kerning first=193 second=207 amount=-7 -kerning first=298 second=322 amount=-2 -kerning first=236 second=271 amount=2 -kerning first=344 second=196 amount=3 -kerning first=121 second=283 amount=3 -kerning first=367 second=103 amount=2 -kerning first=279 second=335 amount=1 -kerning first=194 second=347 amount=-11 -kerning first=260 second=348 amount=-8 -kerning first=368 second=273 amount=2 -kerning first=283 second=285 amount=2 -kerning first=198 second=297 amount=-7 -kerning first=86 second=89 amount=4 -kerning first=221 second=234 amount=-4 -kerning first=326 second=349 amount=1 -kerning first=106 second=246 amount=1 -kerning first=352 second=66 amount=-3 -kerning first=264 second=298 amount=3 -kerning first=372 second=223 amount=2 -kerning first=287 second=235 amount=2 -kerning first=87 second=259 amount=2 -kerning first=245 second=311 amount=-1 -kerning first=353 second=236 amount=1 -kerning first=373 second=363 amount=2 -kerning first=45 second=335 amount=4 -kerning first=68 second=272 amount=-6 -kerning first=229 second=104 amount=-1 -kerning first=114 second=116 amount=-1 -kerning first=272 second=198 amount=-10 -kerning first=72 second=222 amount=-2 -kerning first=207 second=337 amount=-2 -kerning first=358 second=326 amount=-6 -kerning first=361 second=106 amount=-10 -kerning first=276 second=118 amount=-2 -kerning first=296 second=275 amount=-2 -kerning first=234 second=224 amount=2 -kerning first=119 second=236 amount=2 -kerning first=254 second=351 amount=2 -kerning first=339 second=339 amount=1 -kerning first=362 second=276 amount=-6 -kerning first=280 second=68 amount=-5 -kerning first=192 second=300 amount=-7 -kerning first=195 second=80 amount=-17 -kerning first=343 second=289 amount=-2 -kerning first=346 second=69 amount=-3 -kerning first=366 second=226 amount=2 -kerning first=58 second=325 amount=-5 -kerning first=327 second=82 amount=-2 -kerning first=347 second=239 amount=1 -kerning first=200 second=200 amount=-5 -kerning first=85 second=212 amount=2 -kerning first=105 second=339 amount=1 -kerning first=266 second=201 amount=-2 -kerning first=46 second=68 amount=-3 -kerning first=371 second=316 amount=-1 -kerning first=289 second=108 amount=2 -kerning first=66 second=225 amount=3 -kerning first=201 second=340 amount=-6 -kerning first=204 second=120 amount=-1 -kerning first=309 second=265 amount=1 -kerning first=109 second=289 amount=2 -kerning first=352 second=329 amount=-5 -kerning first=290 second=278 amount=-2 -kerning first=208 second=70 amount=-5 -kerning first=228 second=227 amount=2 -kerning first=356 second=279 amount=-7 -kerning first=271 second=291 amount=-8 -kerning first=294 second=228 amount=2 -kerning first=209 second=240 amount=2 -kerning first=360 second=229 amount=2 -kerning first=160 second=201 amount=-6 -kerning first=75 second=265 amount=-10 -kerning first=318 second=305 amount=-3 -kerning first=236 second=97 amount=2 -kerning first=121 second=109 amount=3 -kerning first=256 second=254 amount=-3 -kerning first=341 second=242 amount=-2 -kerning first=194 second=203 amount=-10 -kerning first=302 second=98 amount=-2 -kerning first=237 second=267 amount=1 -kerning first=122 second=279 amount=1 -kerning first=260 second=204 amount=-7 -kerning first=280 second=331 amount=-2 -kerning first=283 second=111 amount=1 -kerning first=195 second=343 amount=-12 -kerning first=218 second=280 amount=-6 -kerning first=346 second=332 amount=3 -kerning first=349 second=112 amount=1 -kerning first=199 second=293 amount=2 -kerning first=84 second=305 amount=-2 -kerning first=107 second=242 amount=1 -kerning first=242 second=357 amount=-1 -kerning first=350 second=282 amount=-3 -kerning first=65 second=318 amount=-12 -kerning first=203 second=243 amount=-2 -kerning first=331 second=295 amount=-1 -kerning first=246 second=307 amount=-2 -kerning first=354 second=232 amount=-7 -kerning first=269 second=244 amount=-1 -kerning first=374 second=359 amount=-2 -kerning first=289 second=371 amount=2 -kerning first=227 second=320 amount=-1 -kerning first=230 second=100 amount=2 -kerning first=115 second=112 amount=1 -kerning first=296 second=101 amount=-2 -kerning first=359 second=322 amount=-1 -kerning first=297 second=271 amount=2 -kerning first=74 second=358 amount=-5 -kerning first=97 second=295 amount=-1 -kerning first=340 second=335 amount=-2 -kerning first=343 second=115 amount=-2 -kerning first=193 second=296 amount=-7 -kerning first=196 second=76 amount=-7 -kerning first=101 second=245 amount=1 -kerning first=197 second=246 amount=-12 -kerning first=82 second=258 amount=3 -kerning first=302 second=361 amount=-2 -kerning first=224 second=103 amount=2 -kerning first=106 second=335 amount=1 -kerning first=109 second=115 amount=1 -kerning first=349 second=375 amount=1 -kerning first=8211 second=80 amount=-6 -kerning first=44 second=284 amount=-3 -kerning first=287 second=324 amount=2 -kerning first=290 second=104 amount=2 -kerning first=205 second=116 amount=-2 -kerning first=225 second=273 amount=2 -kerning first=110 second=285 amount=2 -kerning first=356 second=105 amount=-2 -kerning first=8212 second=250 amount=2 -kerning first=271 second=117 amount=-9 -kerning first=376 second=262 amount=-1 -kerning first=209 second=66 amount=2 -kerning first=334 second=338 amount=3 -kerning first=114 second=235 amount=-2 -kerning first=337 second=118 amount=-2 -kerning first=357 second=275 amount=-9 -kerning first=272 second=287 amount=2 -kerning first=295 second=224 amount=2 -kerning first=115 second=375 amount=1 -kerning first=256 second=80 amount=-17 -kerning first=361 second=225 amount=2 -kerning first=195 second=199 amount=-11 -kerning first=300 second=314 amount=-2 -kerning first=80 second=211 amount=3 -kerning first=218 second=106 amount=-12 -kerning first=103 second=118 amount=2 -kerning first=284 second=107 amount=2 -kerning first=196 second=339 amount=-12 -kerning first=219 second=276 amount=-6 -kerning first=327 second=201 amount=-6 -kerning first=347 second=328 amount=1 -kerning first=262 second=340 amount=-4 -kerning first=265 second=120 amount=2 -kerning first=285 second=277 amount=2 -kerning first=203 second=69 amount=-5 -kerning first=88 second=81 amount=-4 -kerning first=223 second=226 amount=2 -kerning first=354 second=58 amount=-15 -kerning first=289 second=227 amount=5 -kerning first=204 second=239 amount=-2 -kerning first=355 second=228 amount=2 -kerning first=270 second=240 amount=2 -kerning first=228 second=316 amount=-1 -kerning first=54 second=57 amount=2 -kerning first=297 second=97 amount=2 -kerning first=363 second=98 amount=-1 -kerning first=160 second=290 amount=-3 -kerning first=278 second=110 amount=-2 -kerning first=193 second=122 amount=-7 -kerning first=298 second=267 amount=-2 -kerning first=75 second=354 amount=-9 -kerning first=216 second=59 amount=-5 -kerning first=98 second=291 amount=5 -kerning first=344 second=111 amount=-2 -kerning first=121 second=228 amount=7 -kerning first=256 second=343 amount=-12 -kerning first=364 second=268 amount=2 -kerning first=197 second=72 amount=-4 -kerning first=79 second=304 amount=3 -kerning first=82 second=84 amount=-8 -kerning first=217 second=229 amount=2 -kerning first=102 second=241 amount=-7 -kerning first=345 second=281 amount=-2 -kerning first=260 second=293 amount=-12 -kerning first=198 second=242 amount=-5 -kerning first=349 second=231 amount=1 -kerning first=8212 second=76 amount=3 -kerning first=45 second=280 amount=-7 -kerning first=291 second=100 amount=5 -kerning first=206 second=112 amount=-2 -kerning first=311 second=257 amount=2 -kerning first=357 second=101 amount=-9 -kerning first=269 second=333 amount=-1 -kerning first=272 second=113 amount=2 -kerning first=289 second=8211 amount=4 -kerning first=292 second=270 amount=-6 -kerning first=115 second=231 amount=1 -kerning first=358 second=271 amount=-10 -kerning first=273 second=283 amount=1 -kerning first=73 second=307 amount=-2 -kerning first=316 second=347 amount=1 -kerning first=231 second=359 amount=-1 -kerning first=277 second=233 amount=1 -kerning first=192 second=245 amount=-12 -kerning first=77 second=257 amount=1 -kerning first=235 second=309 amount=-13 -kerning first=343 second=234 amount=-2 -kerning first=258 second=246 amount=-12 -kerning first=278 second=373 amount=-2 -kerning first=58 second=270 amount=-3 -kerning first=196 second=195 amount=-7 -kerning first=81 second=207 amount=3 -kerning first=239 second=259 amount=2 -kerning first=121 second=8212 amount=4 -kerning first=367 second=311 amount=-1 -kerning first=285 second=103 amount=5 -kerning first=197 second=335 amount=-12 -kerning first=220 second=272 amount=-6 -kerning first=351 second=104 amount=1 -kerning first=266 second=116 amount=2 -kerning first=86 second=297 amount=3 -kerning first=352 second=274 amount=-3 -kerning first=8211 second=199 amount=5 -kerning first=270 second=66 amount=-6 -kerning first=290 second=223 amount=3 -kerning first=205 second=235 amount=-2 -kerning first=356 second=224 amount=-10 -kerning first=8212 second=339 amount=4 -kerning first=271 second=236 amount=-3 -kerning first=376 second=351 amount=-4 -kerning first=291 second=363 amount=2 -kerning first=206 second=375 amount=-2 -kerning first=229 second=312 amount=-1 -kerning first=337 second=237 amount=-2 -kerning first=117 second=104 amount=-1 -kerning first=75 second=210 amount=-8 -kerning first=98 second=117 amount=2 -kerning first=256 second=199 amount=-11 -kerning first=361 second=314 amount=-1 -kerning first=276 second=326 amount=-2 -kerning first=279 second=106 amount=-13 -kerning first=194 second=118 amount=-13 -kerning first=99 second=287 amount=1 -kerning first=345 second=107 amount=-1 -kerning first=260 second=119 amount=-13 -kerning first=280 second=276 amount=-5 -kerning first=195 second=288 amount=-11 -kerning first=198 second=68 amount=-2 -kerning first=83 second=80 amount=-3 -kerning first=218 second=225 amount=2 -kerning first=323 second=340 amount=-2 -kerning first=103 second=237 amount=3 -kerning first=326 second=120 amount=-1 -kerning first=261 second=289 amount=2 -kerning first=264 second=69 amount=-2 -kerning first=304 second=353 amount=-2 -kerning first=327 second=290 amount=3 -kerning first=330 second=70 amount=-2 -kerning first=370 second=354 amount=-6 -kerning first=45 second=106 amount=-7 -kerning first=65 second=263 amount=-12 -kerning first=88 second=200 amount=-2 -kerning first=331 second=240 amount=2 -kerning first=111 second=107 amount=-1 -kerning first=246 second=252 amount=-2 -kerning first=351 second=367 amount=1 -kerning first=46 second=276 amount=-4 -kerning first=289 second=316 amount=2 -kerning first=204 second=328 amount=-2 -kerning first=207 second=108 amount=-2 -kerning first=89 second=340 amount=-1 -kerning first=112 second=277 amount=2 -kerning first=358 second=97 amount=-10 -kerning first=70 second=353 amount=-4 -kerning first=208 second=278 amount=-6 -kerning first=211 second=58 amount=-5 -kerning first=116 second=227 amount=2 -kerning first=359 second=267 amount=1 -kerning first=192 second=71 amount=-11 -kerning first=74 second=303 amount=-1 -kerning first=97 second=240 amount=2 -kerning first=232 second=355 amount=-1 -kerning first=258 second=72 amount=-4 -kerning first=298 second=356 amount=-2 -kerning first=344 second=230 amount=-2 -kerning first=59 second=266 amount=-3 -kerning first=194 second=381 amount=-7 -kerning first=198 second=331 amount=-6 -kerning first=201 second=111 amount=-2 -kerning first=221 second=268 amount=-1 -kerning first=349 second=320 amount=1 -kerning first=372 second=257 amount=2 -kerning first=287 second=269 amount=2 -kerning first=110 second=230 amount=1 -kerning first=350 second=8211 amount=4 -kerning first=8212 second=195 amount=-13 -kerning first=268 second=282 amount=-2 -kerning first=45 second=369 amount=2 -kerning first=71 second=86 amount=4 -kerning first=206 second=231 amount=-2 -kerning first=207 second=371 amount=-2 -kerning first=115 second=320 amount=1 -kerning first=118 second=100 amount=5 -kerning first=296 second=309 amount=-14 -kerning first=99 second=113 amount=1 -kerning first=277 second=322 amount=-1 -kerning first=192 second=334 amount=-11 -kerning first=195 second=114 amount=-12 -kerning first=212 second=8212 amount=3 -kerning first=100 second=283 amount=1 -kerning first=258 second=335 amount=-12 -kerning first=261 second=115 amount=1 -kerning first=196 second=284 amount=-11 -kerning first=81 second=296 amount=3 -kerning first=84 second=76 amount=-1 -kerning first=347 second=273 amount=3 -kerning first=370 second=210 amount=2 -kerning first=65 second=89 amount=-7 -kerning first=305 second=349 amount=1 -kerning first=66 second=259 amount=3 -kerning first=89 second=196 amount=-3 -kerning first=224 second=311 amount=-1 -kerning first=112 second=103 amount=5 -kerning first=8211 second=288 amount=5 -kerning first=267 second=375 amount=-1 -kerning first=50 second=52 amount=-3 -kerning first=290 second=312 amount=2 -kerning first=205 second=324 amount=-2 -kerning first=113 second=273 amount=2 -kerning first=356 second=313 amount=-1 -kerning first=71 second=349 amount=2 -kerning first=209 second=274 amount=-6 -kerning first=337 second=326 amount=-2 -kerning first=117 second=223 amount=4 -kerning first=275 second=275 amount=1 -kerning first=193 second=67 amount=-11 -kerning first=75 second=299 amount=-7 -kerning first=78 second=79 amount=3 -kerning first=318 second=339 amount=-9 -kerning first=98 second=236 amount=2 -kerning first=233 second=351 amount=1 -kerning first=118 second=363 amount=2 -kerning first=256 second=288 amount=-11 -kerning first=364 second=213 amount=2 -kerning first=279 second=225 amount=2 -kerning first=325 second=69 amount=-6 -kerning first=345 second=226 amount=-2 -kerning first=365 second=353 amount=1 -kerning first=280 second=365 amount=-2 -kerning first=195 second=377 amount=-7 -kerning first=83 second=199 amount=3 -kerning first=103 second=326 amount=2 -kerning first=106 second=106 amount=-2 -kerning first=199 second=327 amount=4 -kerning first=84 second=339 amount=-7 -kerning first=222 second=264 amount=4 -kerning first=327 second=379 amount=4 -kerning first=268 second=108 amount=2 -kerning first=45 second=225 amount=4 -kerning first=373 second=253 amount=2 -kerning first=291 second=45 amount=4 -kerning first=65 second=352 amount=-8 -kerning first=331 second=329 amount=-3 -kerning first=354 second=266 amount=-2 -kerning first=272 second=58 amount=-3 -kerning first=72 second=82 amount=-2 -kerning first=358 second=216 amount=-2 -kerning first=273 second=228 amount=2 -kerning first=73 second=252 amount=-2 -kerning first=339 second=229 amount=2 -kerning first=254 second=241 amount=2 -kerning first=320 second=242 amount=-1 -kerning first=97 second=329 amount=-3 -kerning first=235 second=254 amount=-1 -kerning first=366 second=86 amount=2 -kerning first=281 second=98 amount=-1 -kerning first=193 second=330 amount=-15 -kerning first=196 second=110 amount=-13 -kerning first=78 second=342 amount=-2 -kerning first=101 second=279 amount=1 -kerning first=344 second=319 amount=3 -kerning first=347 second=99 amount=1 -kerning first=197 second=280 amount=-10 -kerning first=325 second=332 amount=3 -kerning first=105 second=229 amount=2 -kerning first=66 second=85 amount=2 -kerning first=86 second=242 amount=3 -kerning first=221 second=357 amount=-2 -kerning first=8211 second=114 amount=2 -kerning first=113 second=99 amount=1 -kerning first=353 second=359 amount=1 -kerning first=8212 second=284 amount=5 -kerning first=51 second=48 amount=2 -kerning first=294 second=88 amount=3 -kerning first=71 second=205 amount=3 -kerning first=206 second=320 amount=-2 -kerning first=209 second=100 amount=2 -kerning first=229 second=257 amount=2 -kerning first=114 second=269 amount=-2 -kerning first=357 second=309 amount=-13 -kerning first=360 second=89 amount=2 -kerning first=275 second=101 amount=1 -kerning first=256 second=114 amount=-12 -kerning first=361 second=259 amount=2 -kerning first=234 second=347 amount=1 -kerning first=119 second=359 amount=2 -kerning first=195 second=233 amount=-12 -kerning first=323 second=285 amount=2 -kerning first=346 second=222 amount=-3 -kerning first=196 second=373 amount=-13 -kerning first=84 second=195 amount=-13 -kerning first=285 second=311 amount=2 -kerning first=65 second=208 amount=-10 -kerning first=351 second=312 amount=1 -kerning first=269 second=104 amount=-1 -kerning first=89 second=285 amount=-3 -kerning first=335 second=105 amount=-2 -kerning first=8211 second=377 amount=-4 -kerning first=270 second=274 amount=-6 -kerning first=208 second=223 amount=2 -kerning first=74 second=248 amount=-5 -kerning first=298 second=301 amount=-2 -kerning first=256 second=377 amount=-7 -kerning first=279 second=314 amount=-1 -kerning first=59 second=211 amount=-3 -kerning first=194 second=326 amount=-13 -kerning first=302 second=251 amount=-2 -kerning first=79 second=338 amount=3 -kerning first=102 second=275 amount=-8 -kerning first=260 second=327 amount=-15 -kerning first=198 second=276 amount=-2 -kerning first=83 second=288 amount=3 -kerning first=221 second=213 amount=-1 -kerning first=329 second=108 amount=-1 -kerning first=106 second=225 amount=2 -kerning first=244 second=120 amount=-2 -kerning first=349 second=265 amount=1 -kerning first=352 second=45 amount=4 -kerning first=372 second=202 amount=-6 -kerning first=222 second=353 amount=1 -kerning first=330 second=278 amount=-6 -kerning first=8212 second=110 amount=2 -kerning first=311 second=291 amount=2 -kerning first=354 second=355 amount=-3 -kerning first=72 second=201 amount=-6 -kerning first=207 second=316 amount=-2 -kerning first=115 second=265 amount=1 -kerning first=118 second=45 amount=4 -kerning first=358 second=305 amount=-2 -kerning first=296 second=254 amount=-2 -kerning first=214 second=46 amount=-5 -kerning first=339 second=318 amount=-1 -kerning first=342 second=98 amount=-2 -kerning first=277 second=267 amount=1 -kerning first=192 second=279 amount=-12 -kerning first=195 second=59 amount=-10 -kerning first=77 second=291 amount=1 -kerning first=80 second=71 amount=3 -kerning first=100 second=228 amount=2 -kerning first=120 second=355 amount=-1 -kerning first=258 second=280 amount=-10 -kerning first=196 second=229 amount=-10 -kerning first=197 second=369 amount=-13 -kerning first=348 second=358 amount=-3 -kerning first=371 second=295 amount=-1 -kerning first=204 second=99 amount=-2 -kerning first=309 second=244 amount=1 -kerning first=86 second=331 amount=2 -kerning first=89 second=111 amount=-4 -kerning first=8211 second=233 amount=4 -kerning first=267 second=320 amount=-1 -kerning first=270 second=100 amount=2 -kerning first=375 second=245 amount=3 -kerning first=67 second=344 amount=-4 -kerning first=205 second=269 amount=-2 -kerning first=356 second=258 amount=-13 -kerning first=8212 second=373 amount=2 -kerning first=334 second=8212 amount=3 -kerning first=360 second=208 amount=-6 -kerning first=295 second=347 amount=1 -kerning first=75 second=244 amount=-10 -kerning first=256 second=233 amount=-12 -kerning first=102 second=101 amount=-8 -kerning first=237 second=246 amount=1 -kerning first=195 second=322 amount=-12 -kerning first=198 second=102 amount=-5 -kerning first=80 second=334 amount=3 -kerning first=218 second=259 amount=2 -kerning first=103 second=271 amount=5 -kerning first=199 second=272 amount=-2 -kerning first=84 second=284 amount=-2 -kerning first=245 second=116 amount=-1 -kerning first=265 second=273 amount=1 -kerning first=203 second=222 amount=-6 -kerning first=88 second=234 amount=-2 -kerning first=354 second=211 amount=-2 -kerning first=269 second=223 amount=2 -kerning first=374 second=338 amount=-1 -kerning first=312 second=287 amount=2 -kerning first=112 second=311 amount=3 -kerning first=355 second=351 amount=1 -kerning first=296 second=80 amount=-2 -kerning first=362 second=81 amount=2 -kerning first=74 second=337 amount=-5 -kerning first=340 second=314 amount=-2 -kerning first=193 second=275 amount=-12 -kerning first=78 second=287 amount=2 -kerning first=324 second=107 amount=-1 -kerning first=101 second=224 amount=2 -kerning first=236 second=339 amount=1 -kerning first=121 second=351 amount=2 -kerning first=197 second=225 amount=-10 -kerning first=302 second=340 amount=-2 -kerning first=240 second=289 amount=2 -kerning first=348 second=214 amount=3 -kerning first=263 second=226 amount=1 -kerning first=283 second=353 amount=1 -kerning first=198 second=365 amount=-6 -kerning first=329 second=227 amount=2 -kerning first=372 second=291 amount=2 -kerning first=287 second=303 amount=3 -kerning first=67 second=200 amount=-2 -kerning first=356 second=84 amount=-8 -kerning first=8212 second=229 amount=4 -kerning first=268 second=316 amount=2 -kerning first=291 second=253 amount=2 -kerning first=68 second=340 amount=-3 -kerning first=206 second=265 amount=-2 -kerning first=272 second=266 amount=4 -kerning first=75 second=70 amount=-7 -kerning first=318 second=110 amount=-9 -kerning first=256 second=59 amount=-10 -kerning first=257 second=229 amount=2 -kerning first=362 second=344 amount=-2 -kerning first=300 second=293 amount=-2 -kerning first=103 second=97 amount=5 -kerning first=343 second=357 amount=-1 -kerning first=258 second=369 amount=-13 -kerning first=284 second=86 amount=4 -kerning first=196 second=318 amount=-12 -kerning first=199 second=98 amount=2 -kerning first=84 second=110 amount=-6 -kerning first=304 second=243 amount=-2 -kerning first=347 second=307 amount=1 -kerning first=85 second=280 amount=-6 -kerning first=328 second=320 amount=-1 -kerning first=331 second=100 amount=2 -kerning first=246 second=112 amount=-2 -kerning first=351 second=257 amount=3 -kerning first=374 second=194 amount=-3 -kerning first=309 second=333 amount=1 -kerning first=89 second=230 amount=-3 -kerning first=312 second=113 amount=2 -kerning first=109 second=357 amount=-1 -kerning first=70 second=243 amount=-4 -kerning first=205 second=358 amount=-2 -kerning first=228 second=295 amount=-1 -kerning first=356 second=347 amount=-10 -kerning first=74 second=193 amount=-8 -kerning first=97 second=100 amount=2 -kerning first=232 second=245 amount=1 -kerning first=117 second=257 amount=2 -kerning first=275 second=309 amount=-13 -kerning first=193 second=101 amount=-12 -kerning first=298 second=246 amount=-2 -kerning first=75 second=333 amount=-10 -kerning first=78 second=113 amount=2 -kerning first=318 second=373 amount=-10 -kerning first=256 second=322 amount=-12 -kerning first=279 second=259 amount=2 -kerning first=194 second=271 amount=-10 -kerning first=217 second=208 amount=-6 -kerning first=325 second=103 amount=2 -kerning first=237 second=335 amount=1 -kerning first=240 second=115 amount=1 -kerning first=122 second=347 amount=1 -kerning first=260 second=272 amount=-10 -kerning first=326 second=273 amount=2 -kerning first=241 second=285 amount=2 -kerning first=264 second=222 amount=-2 -kerning first=84 second=373 amount=-5 -kerning first=330 second=223 amount=2 -kerning first=373 second=287 amount=5 -kerning first=45 second=259 amount=4 -kerning first=376 second=67 amount=-1 -kerning first=68 second=196 amount=-8 -kerning first=246 second=375 amount=-2 -kerning first=354 second=300 amount=-2 -kerning first=319 second=106 amount=-6 -kerning first=339 second=263 amount=1 -kerning first=254 second=275 amount=2 -kerning first=362 second=200 amount=-6 -kerning first=192 second=224 amount=-10 -kerning first=300 second=119 amount=-2 -kerning first=77 second=236 amount=1 -kerning first=258 second=225 amount=-10 -kerning first=366 second=120 amount=-2 -kerning first=301 second=289 amount=2 -kerning first=324 second=226 amount=2 -kerning first=370 second=70 amount=-2 -kerning first=197 second=314 amount=-12 -kerning first=105 second=263 amount=1 -kerning first=371 second=240 amount=2 -kerning first=329 second=316 amount=-1 -kerning first=244 second=328 amount=-2 -kerning first=270 second=45 amount=4 -kerning first=290 second=202 amount=-2 -kerning first=70 second=69 amount=-9 -kerning first=336 second=46 amount=-5 -kerning first=110 second=353 amount=1 -kerning first=356 second=203 amount=-8 -kerning first=71 second=239 amount=1 -kerning first=206 second=354 amount=-2 -kerning first=229 second=291 amount=2 -kerning first=357 second=343 amount=-9 -kerning first=72 second=379 amount=4 -kerning first=210 second=304 amount=3 -kerning first=318 second=229 amount=-8 -kerning first=338 second=356 amount=-4 -kerning first=118 second=253 amount=2 -kerning first=361 second=293 amount=-1 -kerning first=194 second=97 amount=-10 -kerning first=76 second=329 amount=-3 -kerning first=257 second=318 amount=-1 -kerning first=260 second=98 amount=-12 -kerning first=195 second=267 amount=-12 -kerning first=83 second=59 amount=-4 -kerning first=346 second=256 amount=-9 -kerning first=284 second=205 amount=3 -kerning first=84 second=229 amount=-10 -kerning first=219 second=344 amount=-2 -kerning first=45 second=85 amount=5 -kerning first=373 second=113 amount=5 -kerning first=65 second=242 amount=-12 -kerning first=266 second=358 amount=-2 -kerning first=289 second=295 amount=2 -kerning first=204 second=307 amount=-2 -kerning first=312 second=232 amount=1 -kerning first=89 second=319 amount=-3 -kerning first=358 second=76 amount=-1 -kerning first=73 second=112 amount=-2 -kerning first=208 second=257 amount=2 -kerning first=254 second=101 amount=2 -kerning first=359 second=246 amount=1 -kerning first=74 second=282 amount=-5 -kerning first=212 second=207 amount=3 -kerning first=160 second=358 amount=-12 -kerning first=278 second=208 amount=-5 -kerning first=298 second=335 amount=-2 -kerning first=301 second=115 amount=1 -kerning first=98 second=359 amount=3 -kerning first=364 second=336 amount=2 -kerning first=367 second=116 amount=-1 -kerning first=325 second=222 amount=-2 -kerning first=102 second=309 amount=-13 -kerning first=240 second=234 amount=1 -kerning first=345 second=349 amount=-2 -kerning first=260 second=361 amount=-13 -kerning first=368 second=286 amount=2 -kerning first=86 second=102 amount=2 -kerning first=106 second=259 amount=2 -kerning first=349 second=299 amount=1 -kerning first=352 second=79 amount=3 -kerning first=264 second=311 amount=2 -kerning first=44 second=208 amount=-3 -kerning first=287 second=248 amount=2 -kerning first=87 second=272 amount=-6 -kerning first=245 second=324 amount=-2 -kerning first=248 second=104 amount=-1 -kerning first=353 second=249 amount=1 -kerning first=68 second=285 amount=2 -kerning first=272 second=211 amount=4 -kerning first=380 second=106 amount=-8 -kerning first=230 second=287 amount=2 -kerning first=115 second=299 amount=1 -kerning first=358 second=339 amount=-7 -kerning first=273 second=351 amount=1 -kerning first=73 second=375 amount=-2 -kerning first=211 second=300 amount=3 -kerning first=119 second=249 amount=2 -kerning first=362 second=289 amount=2 -kerning first=192 second=313 amount=-7 -kerning first=300 second=238 amount=-2 -kerning first=80 second=105 amount=1 -kerning first=346 second=82 amount=-3 -kerning first=258 second=314 amount=-12 -kerning first=58 second=338 amount=-3 -kerning first=196 second=263 amount=-12 -kerning first=219 second=200 amount=-6 -kerning first=242 second=107 amount=-1 -kerning first=347 second=252 amount=1 -kerning first=65 second=68 amount=-10 -kerning first=85 second=225 amount=2 -kerning first=220 second=340 amount=-2 -kerning first=223 second=120 amount=-2 -kerning first=371 second=329 amount=-3 -kerning first=46 second=81 amount=-3 -kerning first=374 second=109 amount=-5 -kerning first=289 second=121 amount=2 -kerning first=86 second=365 amount=2 -kerning first=352 second=342 amount=-3 -kerning first=8211 second=267 amount=4 -kerning first=375 second=279 amount=3 -kerning first=205 second=303 amount=-2 -kerning first=228 second=240 amount=2 -kerning first=333 second=355 amount=-1 -kerning first=248 second=367 amount=-2 -kerning first=274 second=84 amount=-5 -kerning first=71 second=328 amount=2 -kerning first=160 second=214 amount=-3 -kerning first=275 second=254 amount=-1 -kerning first=193 second=46 amount=-10 -kerning first=75 second=278 amount=-9 -kerning first=121 second=122 amount=4 -kerning first=256 second=267 amount=-12 -kerning first=59 second=71 amount=-3 -kerning first=194 second=216 amount=-11 -kerning first=302 second=111 amount=-2 -kerning first=99 second=355 amount=-1 -kerning first=280 second=344 amount=-6 -kerning first=195 second=356 amount=-20 -kerning first=303 second=281 amount=1 -kerning first=103 second=305 amount=3 -kerning first=241 second=230 amount=1 -kerning first=261 second=357 amount=-1 -kerning first=307 second=231 amount=1 -kerning first=84 second=318 amount=-3 -kerning first=327 second=358 amount=-6 -kerning first=268 second=87 amount=4 -kerning first=45 second=204 amount=-5 -kerning first=373 second=232 amount=4 -kerning first=65 second=331 amount=-13 -kerning first=88 second=268 amount=-4 -kerning first=246 second=320 amount=-1 -kerning first=354 second=245 amount=-7 -kerning first=269 second=257 amount=1 -kerning first=46 second=344 amount=-4 -kerning first=230 second=113 amount=2 -kerning first=112 second=345 amount=2 -kerning first=358 second=195 amount=-13 -kerning first=296 second=114 amount=-2 -kerning first=73 second=231 amount=-2 -kerning first=313 second=8212 amount=-5 -kerning first=316 second=271 amount=2 -kerning first=359 second=335 amount=1 -kerning first=74 second=371 amount=-4 -kerning first=212 second=296 amount=3 -kerning first=363 second=285 amount=2 -kerning first=196 second=89 amount=-7 -kerning first=301 second=234 amount=1 -kerning first=59 second=334 amount=-3 -kerning first=197 second=259 amount=-10 -kerning first=79 second=8212 amount=3 -kerning first=221 second=336 amount=-1 -kerning first=224 second=116 amount=-1 -kerning first=352 second=198 amount=-11 -kerning first=375 second=105 amount=3 -kerning first=287 second=337 amount=2 -kerning first=248 second=223 amount=2 -kerning first=356 second=118 amount=-5 -kerning first=8212 second=263 amount=4 -kerning first=291 second=287 amount=5 -kerning first=206 second=299 amount=-2 -kerning first=209 second=79 amount=3 -kerning first=114 second=248 amount=-2 -kerning first=360 second=68 amount=-6 -kerning first=75 second=104 amount=-7 -kerning first=237 second=106 amount=-11 -kerning first=280 second=200 amount=-5 -kerning first=195 second=212 amount=-11 -kerning first=323 second=264 amount=3 -kerning first=100 second=351 amount=1 -kerning first=346 second=201 amount=-3 -kerning first=369 second=108 amount=-1 -kerning first=196 second=352 amount=-8 -kerning first=304 second=277 amount=-2 -kerning first=219 second=289 amount=2 -kerning first=222 second=69 amount=-9 -kerning first=327 second=214 amount=3 -kerning first=370 second=278 amount=-6 -kerning first=203 second=82 amount=-6 -kerning first=351 second=291 amount=3 -kerning first=354 second=71 amount=-2 -kerning first=374 second=228 amount=-3 -kerning first=46 second=200 amount=-4 -kerning first=289 second=240 amount=5 -kerning first=204 second=252 amount=-2 -kerning first=89 second=264 amount=-1 -kerning first=332 second=304 amount=3 -kerning first=8211 second=356 amount=-7 -kerning first=70 second=277 amount=-6 -kerning first=208 second=202 amount=-6 -kerning first=316 second=97 amount=2 -kerning first=228 second=329 amount=-3 -kerning first=356 second=381 amount=-2 -kerning first=274 second=203 amount=-5 -kerning first=74 second=227 amount=-5 -kerning first=209 second=342 amount=-2 -kerning first=232 second=279 amount=1 -kerning first=117 second=291 amount=2 -kerning first=75 second=367 amount=-8 -kerning first=236 second=229 amount=2 -kerning first=121 second=241 amount=3 -kerning first=256 second=356 amount=-20 -kerning first=279 second=293 amount=-1 -kerning first=197 second=85 amount=-7 -kerning first=283 second=243 amount=1 -kerning first=221 second=192 amount=-3 -kerning first=349 second=244 amount=1 -kerning first=222 second=332 amount=4 -kerning first=330 second=257 amount=2 -kerning first=8212 second=89 amount=3 -kerning first=268 second=206 amount=3 -kerning first=291 second=113 amount=5 -kerning first=334 second=207 amount=3 -kerning first=354 second=334 amount=-2 -kerning first=357 second=114 amount=-9 -kerning first=207 second=295 amount=-2 -kerning first=230 second=232 amount=1 -kerning first=115 second=244 amount=1 -kerning first=358 second=284 amount=-2 -kerning first=296 second=233 amount=-2 -kerning first=73 second=320 amount=-2 -kerning first=254 second=309 amount=-9 -kerning first=277 second=246 amount=1 -kerning first=192 second=258 amount=-7 -kerning first=74 second=8211 amount=-3 -kerning first=323 second=90 amount=4 -kerning first=235 second=322 amount=-1 -kerning first=258 second=259 amount=-10 -kerning first=196 second=208 amount=-10 -kerning first=101 second=347 amount=1 -kerning first=262 second=209 amount=4 -kerning first=285 second=116 amount=2 -kerning first=197 second=348 amount=-8 -kerning first=305 second=273 amount=2 -kerning first=220 second=285 amount=2 -kerning first=351 second=117 amount=1 -kerning first=263 second=349 amount=1 -kerning first=309 second=223 amount=3 -kerning first=89 second=90 amount=-2 -kerning first=8211 second=212 amount=5 -kerning first=270 second=79 amount=4 -kerning first=375 second=224 amount=7 -kerning first=67 second=323 amount=4 -kerning first=70 second=103 amount=-3 -kerning first=205 second=248 amount=-2 -kerning first=248 second=312 amount=-2 -kerning first=356 second=237 amount=-2 -kerning first=71 second=273 amount=5 -kerning first=337 second=250 amount=-2 -kerning first=114 second=337 amount=-2 -kerning first=298 second=106 amount=-14 -kerning first=210 second=338 amount=3 -kerning first=318 second=263 amount=-9 -kerning first=233 second=275 amount=1 -kerning first=118 second=287 amount=5 -kerning first=256 second=212 amount=-11 -kerning first=217 second=68 amount=-6 -kerning first=237 second=225 amount=2 -kerning first=342 second=340 amount=-8 -kerning first=345 second=120 amount=-2 -kerning first=198 second=81 amount=-7 -kerning first=303 second=226 amount=2 -kerning first=103 second=250 amount=2 -kerning first=346 second=290 amount=3 -kerning first=264 second=82 amount=-4 -kerning first=369 second=227 amount=2 -kerning first=84 second=263 amount=-7 -kerning first=45 second=119 amount=2 -kerning first=65 second=276 amount=-10 -kerning first=203 second=201 amount=-5 -kerning first=88 second=213 amount=-4 -kerning first=226 second=108 amount=-1 -kerning first=111 second=120 amount=-2 -kerning first=207 second=121 amount=-2 -kerning first=89 second=353 amount=-4 -kerning first=358 second=110 amount=-6 -kerning first=270 second=342 amount=-3 -kerning first=208 second=291 amount=2 -kerning first=231 second=228 amount=1 -kerning first=116 second=240 amount=2 -kerning first=192 second=84 amount=-20 -kerning first=297 second=229 amount=2 -kerning first=340 second=293 amount=-2 -kerning first=258 second=85 amount=-7 -kerning first=363 second=230 amount=1 -kerning first=278 second=242 amount=-2 -kerning first=193 second=254 amount=-3 -kerning first=298 second=369 amount=-2 -kerning first=78 second=266 amount=3 -kerning first=81 second=46 amount=-5 -kerning first=197 second=204 amount=-7 -kerning first=348 second=193 amount=-9 -kerning first=371 second=100 amount=2 -kerning first=83 second=356 amount=-3 -kerning first=349 second=333 amount=1 -kerning first=372 second=270 amount=-6 -kerning first=205 second=74 amount=-2 -kerning first=90 second=86 amount=3 -kerning first=353 second=283 amount=1 -kerning first=8212 second=208 amount=-7 -kerning first=268 second=295 amount=2 -kerning first=291 second=232 amount=2 -kerning first=71 second=99 amount=3 -kerning first=206 second=244 amount=-2 -kerning first=334 second=296 amount=3 -kerning first=357 second=233 amount=-9 -kerning first=233 second=101 amount=1 -kerning first=115 second=333 amount=1 -kerning first=118 second=113 amount=5 -kerning first=358 second=373 amount=-5 -kerning first=296 second=322 amount=-2 -kerning first=234 second=271 amount=2 -kerning first=342 second=196 amount=3 -kerning first=119 second=283 amount=4 -kerning first=365 second=103 amount=2 -kerning first=277 second=335 amount=1 -kerning first=192 second=347 amount=-11 -kerning first=258 second=348 amount=-8 -kerning first=366 second=273 amount=2 -kerning first=281 second=285 amount=2 -kerning first=84 second=89 amount=-1 -kerning first=304 second=222 amount=-2 -kerning first=324 second=349 amount=1 -kerning first=350 second=66 amount=-3 -kerning first=262 second=298 amount=3 -kerning first=370 second=223 amount=2 -kerning first=285 second=235 amount=2 -kerning first=65 second=102 amount=-12 -kerning first=85 second=259 amount=2 -kerning first=243 second=311 amount=-1 -kerning first=351 second=236 amount=1 -kerning first=66 second=272 amount=-4 -kerning first=227 second=104 amount=-1 -kerning first=112 second=116 amount=3 -kerning first=8211 second=301 amount=2 -kerning first=270 second=198 amount=-10 -kerning first=70 second=222 amount=-7 -kerning first=205 second=337 amount=-2 -kerning first=356 second=326 amount=-6 -kerning first=359 second=106 amount=-12 -kerning first=274 second=118 amount=-2 -kerning first=209 second=287 amount=2 -kerning first=232 second=224 amount=2 -kerning first=360 second=276 amount=-6 -kerning first=278 second=68 amount=-5 -kerning first=193 second=80 amount=-17 -kerning first=75 second=312 amount=-7 -kerning first=98 second=249 amount=2 -kerning first=341 second=289 amount=-2 -kerning first=364 second=226 amount=2 -kerning first=325 second=82 amount=-2 -kerning first=198 second=200 amount=-2 -kerning first=83 second=212 amount=3 -kerning first=221 second=107 amount=-2 -kerning first=103 second=339 amount=2 -kerning first=264 second=201 amount=-2 -kerning first=369 second=316 amount=-1 -kerning first=44 second=68 amount=-3 -kerning first=287 second=108 amount=2 -kerning first=199 second=340 amount=-4 -kerning first=307 second=265 amount=1 -kerning first=84 second=352 amount=-6 -kerning first=330 second=202 amount=-6 -kerning first=107 second=289 amount=2 -kerning first=350 second=329 amount=-5 -kerning first=353 second=109 amount=1 -kerning first=376 second=46 amount=-5 -kerning first=45 second=238 amount=2 -kerning first=65 second=365 amount=-13 -kerning first=206 second=70 amount=-2 -kerning first=226 second=227 amount=2 -kerning first=354 second=279 amount=-7 -kerning first=269 second=291 amount=1 -kerning first=272 second=71 amount=4 -kerning first=292 second=228 amount=2 -kerning first=358 second=229 amount=-10 -kerning first=73 second=265 amount=-2 -kerning first=76 second=45 amount=-5 -kerning first=234 second=97 amount=2 -kerning first=116 second=329 amount=-1 -kerning first=119 second=109 amount=2 -kerning first=254 second=254 amount=3 -kerning first=339 second=242 amount=1 -kerning first=192 second=203 amount=-10 -kerning first=300 second=98 amount=-2 -kerning first=258 second=204 amount=-7 -kerning first=278 second=331 amount=-2 -kerning first=281 second=111 amount=1 -kerning first=193 second=343 amount=-12 -kerning first=347 second=112 amount=1 -kerning first=197 second=293 amount=-12 -kerning first=85 second=85 amount=2 -kerning first=105 second=242 amount=1 -kerning first=240 second=357 amount=-1 -kerning first=348 second=282 amount=-3 -kerning first=201 second=243 amount=-2 -kerning first=329 second=295 amount=-1 -kerning first=244 second=307 amount=-2 -kerning first=267 second=244 amount=-1 -kerning first=287 second=371 amount=2 -kerning first=225 second=320 amount=-1 -kerning first=228 second=100 amount=2 -kerning first=8212 second=297 amount=2 -kerning first=206 second=333 amount=-2 -kerning first=209 second=113 amount=2 -kerning first=160 second=74 amount=-3 -kerning first=272 second=334 amount=4 -kerning first=295 second=271 amount=2 -kerning first=72 second=358 amount=-6 -kerning first=341 second=115 amount=-2 -kerning first=118 second=232 amount=4 -kerning first=194 second=76 amount=-7 -kerning first=99 second=245 amount=-1 -kerning first=260 second=77 amount=-8 -kerning first=195 second=246 amount=-12 -kerning first=80 second=258 amount=-14 -kerning first=300 second=361 amount=-2 -kerning first=304 second=311 amount=-2 -kerning first=84 second=208 amount=-8 -kerning first=222 second=103 amount=2 -kerning first=107 second=115 amount=1 -kerning first=347 second=375 amount=1 -kerning first=285 second=324 amount=2 -kerning first=223 second=273 amount=2 -kerning first=108 second=285 amount=2 -kerning first=354 second=105 amount=-2 -kerning first=374 second=262 amount=-1 -kerning first=332 second=338 amount=3 -kerning first=112 second=235 amount=2 -kerning first=335 second=118 amount=-2 -kerning first=270 second=287 amount=2 -kerning first=70 second=311 amount=-2 -kerning first=359 second=225 amount=2 -kerning first=193 second=199 amount=-11 -kerning first=298 second=314 amount=-2 -kerning first=78 second=211 amount=3 -kerning first=236 second=263 amount=1 -kerning first=121 second=275 amount=3 -kerning first=194 second=339 amount=-12 -kerning first=197 second=119 amount=-13 -kerning first=217 second=276 amount=-6 -kerning first=325 second=201 amount=-6 -kerning first=260 second=340 amount=-17 -kerning first=263 second=120 amount=2 -kerning first=283 second=277 amount=1 -kerning first=198 second=289 amount=-3 -kerning first=201 second=69 amount=-5 -kerning first=86 second=81 amount=5 -kerning first=221 second=226 amount=-3 -kerning first=241 second=353 amount=1 -kerning first=352 second=58 amount=-4 -kerning first=287 second=227 amount=5 -kerning first=330 second=291 amount=2 -kerning first=245 second=303 amount=-2 -kerning first=353 second=228 amount=3 -kerning first=373 second=355 amount=2 -kerning first=45 second=327 amount=-2 -kerning first=68 second=264 amount=4 -kerning first=226 second=316 amount=-1 -kerning first=111 second=328 amount=-2 -kerning first=114 second=108 amount=-1 -kerning first=295 second=97 amount=2 -kerning first=207 second=329 amount=-4 -kerning first=358 second=318 amount=-3 -kerning first=361 second=98 amount=-1 -kerning first=276 second=110 amount=-2 -kerning first=296 second=267 amount=-2 -kerning first=73 second=354 amount=-2 -kerning first=214 second=59 amount=-5 -kerning first=342 second=111 amount=-2 -kerning first=119 second=228 amount=5 -kerning first=362 second=268 amount=2 -kerning first=195 second=72 amount=-4 -kerning first=80 second=84 amount=-9 -kerning first=343 second=281 amount=-2 -kerning first=258 second=293 amount=-12 -kerning first=196 second=242 amount=-12 -kerning first=347 second=231 amount=1 -kerning first=223 second=99 amount=1 -kerning first=108 second=111 amount=1 -kerning first=286 second=320 amount=2 -kerning first=289 second=100 amount=5 -kerning first=204 second=112 amount=-2 -kerning first=309 second=257 amount=2 -kerning first=355 second=101 amount=1 -kerning first=8211 second=246 amount=4 -kerning first=267 second=333 amount=-1 -kerning first=270 second=113 amount=2 -kerning first=287 second=8211 amount=4 -kerning first=67 second=357 amount=2 -kerning first=290 second=270 amount=-2 -kerning first=113 second=231 amount=1 -kerning first=356 second=271 amount=-10 -kerning first=271 second=283 amount=-9 -kerning first=71 second=307 amount=1 -kerning first=229 second=359 amount=-1 -kerning first=160 second=193 amount=-3 -kerning first=275 second=233 amount=1 -kerning first=75 second=257 amount=-7 -kerning first=318 second=297 amount=-3 -kerning first=233 second=309 amount=-13 -kerning first=341 second=234 amount=-2 -kerning first=121 second=101 amount=3 -kerning first=256 second=246 amount=-12 -kerning first=276 second=373 amount=-2 -kerning first=194 second=195 amount=-7 -kerning first=79 second=207 amount=3 -kerning first=102 second=114 amount=-7 -kerning first=237 second=259 amount=2 -kerning first=119 second=8212 amount=4 -kerning first=260 second=196 amount=-7 -kerning first=365 second=311 amount=-1 -kerning first=283 second=103 amount=2 -kerning first=195 second=335 amount=-12 -kerning first=198 second=115 amount=-4 -kerning first=218 second=272 amount=-6 -kerning first=349 second=104 amount=1 -kerning first=264 second=116 amount=2 -kerning first=84 second=297 amount=-2 -kerning first=222 second=222 amount=-7 -kerning first=107 second=234 amount=1 -kerning first=350 second=274 amount=-3 -kerning first=268 second=66 amount=-2 -kerning first=331 second=287 amount=2 -kerning first=246 second=299 amount=-2 -kerning first=354 second=224 amount=-10 -kerning first=46 second=323 amount=-5 -kerning first=374 second=351 amount=-4 -kerning first=289 second=363 amount=2 -kerning first=204 second=375 amount=-2 -kerning first=315 second=80 amount=-4 -kerning first=227 second=312 amount=-1 -kerning first=335 second=237 amount=-2 -kerning first=112 second=324 amount=2 -kerning first=115 second=104 amount=1 -kerning first=359 second=314 amount=-1 -kerning first=274 second=326 amount=-2 -kerning first=277 second=106 amount=-13 -kerning first=192 second=118 amount=-13 -kerning first=97 second=287 amount=2 -kerning first=120 second=224 amount=2 -kerning first=258 second=119 amount=-13 -kerning first=343 second=107 amount=-1 -kerning first=278 second=276 amount=-5 -kerning first=193 second=288 amount=-11 -kerning first=196 second=68 amount=-10 -kerning first=324 second=120 amount=-1 -kerning first=259 second=289 amount=2 -kerning first=262 second=69 amount=-2 -kerning first=302 second=353 amount=-2 -kerning first=325 second=290 amount=3 -kerning first=368 second=354 amount=-6 -kerning first=221 second=315 amount=-3 -kerning first=329 second=240 amount=2 -kerning first=109 second=107 amount=-1 -kerning first=244 second=252 amount=-2 -kerning first=349 second=367 amount=1 -kerning first=44 second=276 amount=-4 -kerning first=287 second=316 amount=2 -kerning first=202 second=328 amount=-2 -kerning first=205 second=108 amount=-2 -kerning first=87 second=340 amount=-2 -kerning first=356 second=97 amount=-10 -kerning first=8212 second=242 amount=4 -kerning first=271 second=109 amount=-9 -kerning first=376 second=254 amount=-2 -kerning first=337 second=110 amount=-2 -kerning first=114 second=227 amount=-2 -kerning first=357 second=267 amount=-9 -kerning first=230 second=355 amount=-1 -kerning first=338 second=280 amount=-4 -kerning first=115 second=367 amount=1 -kerning first=256 second=72 amount=-4 -kerning first=296 second=356 amount=-2 -kerning first=342 second=230 amount=-2 -kerning first=192 second=381 amount=-7 -kerning first=80 second=203 amount=-9 -kerning first=103 second=110 amount=2 -kerning first=196 second=331 amount=-13 -kerning first=347 second=320 amount=1 -kerning first=370 second=257 amount=2 -kerning first=285 second=269 amount=2 -kerning first=331 second=113 amount=2 -kerning first=348 second=8211 amount=4 -kerning first=266 second=282 amount=-2 -kerning first=204 second=231 amount=-2 -kerning first=89 second=243 amount=-4 -kerning first=8211 second=335 amount=4 -kerning first=290 second=359 amount=2 -kerning first=70 second=256 amount=-12 -kerning first=205 second=371 amount=-2 -kerning first=113 second=320 amount=-1 -kerning first=116 second=100 amount=2 -kerning first=294 second=309 amount=-12 -kerning first=97 second=113 amount=2 -kerning first=337 second=373 amount=-2 -kerning first=160 second=282 amount=-6 -kerning first=275 second=322 amount=-1 -kerning first=193 second=114 amount=-12 -kerning first=210 second=8212 amount=3 -kerning first=98 second=283 amount=2 -kerning first=256 second=335 amount=-12 -kerning first=259 second=115 amount=1 -kerning first=194 second=284 amount=-11 -kerning first=79 second=296 amount=3 -kerning first=82 second=76 amount=3 -kerning first=102 second=233 amount=-8 -kerning first=345 second=273 amount=-2 -kerning first=260 second=285 amount=-10 -kerning first=368 second=210 amount=2 -kerning first=198 second=234 amount=-5 -kerning first=303 second=349 amount=1 -kerning first=103 second=373 amount=2 -kerning first=110 second=103 amount=2 -kerning first=8212 second=68 amount=-7 -kerning first=265 second=375 amount=-1 -kerning first=376 second=80 amount=-1 -kerning first=45 second=272 amount=-7 -kerning first=48 second=52 amount=-2 -kerning first=203 second=324 amount=-2 -kerning first=206 second=104 amount=-2 -kerning first=88 second=336 amount=-4 -kerning first=354 second=313 amount=-1 -kerning first=335 second=326 amount=-2 -kerning first=115 second=223 amount=4 -kerning first=358 second=263 amount=-7 -kerning first=273 second=275 amount=1 -kerning first=73 second=299 amount=-2 -kerning first=316 second=339 amount=1 -kerning first=231 second=351 amount=1 -kerning first=362 second=213 amount=2 -kerning first=277 second=225 amount=2 -kerning first=323 second=69 amount=-6 -kerning first=343 second=226 amount=-2 -kerning first=363 second=353 amount=1 -kerning first=278 second=365 amount=-2 -kerning first=58 second=262 amount=-3 -kerning first=193 second=377 amount=-7 -kerning first=304 second=82 amount=-2 -kerning first=104 second=106 amount=-10 -kerning first=197 second=327 amount=-15 -kerning first=325 second=379 amount=4 -kerning first=266 second=108 amount=2 -kerning first=289 second=45 amount=4 -kerning first=86 second=289 amount=6 -kerning first=89 second=69 amount=-4 -kerning first=329 second=329 amount=-3 -kerning first=109 second=226 amount=2 -kerning first=352 second=266 amount=3 -kerning first=270 second=58 amount=-3 -kerning first=67 second=302 amount=3 -kerning first=70 second=82 amount=-7 -kerning first=336 second=59 amount=-5 -kerning first=356 second=216 amount=-2 -kerning first=271 second=228 amount=-8 -kerning first=376 second=343 amount=-5 -kerning first=8212 second=331 amount=2 -kerning first=291 second=355 amount=2 -kerning first=206 second=367 amount=-2 -kerning first=114 second=316 amount=-1 -kerning first=75 second=202 amount=-9 -kerning first=318 second=242 amount=-9 -kerning first=98 second=109 amount=2 -kerning first=233 second=254 amount=-1 -kerning first=364 second=86 amount=2 -kerning first=279 second=98 amount=-1 -kerning first=194 second=110 amount=-13 -kerning first=76 second=342 amount=-4 -kerning first=342 second=319 amount=3 -kerning first=345 second=99 amount=-2 -kerning first=260 second=111 amount=-12 -kerning first=195 second=280 amount=-10 -kerning first=323 second=332 amount=3 -kerning first=103 second=229 amount=5 -kerning first=84 second=242 amount=-7 -kerning first=327 second=282 amount=-6 -kerning first=88 second=192 amount=-5 -kerning first=351 second=359 amount=1 -kerning first=46 second=268 amount=-3 -kerning first=292 second=88 amount=3 -kerning first=204 second=320 amount=-2 -kerning first=89 second=332 amount=-1 -kerning first=227 second=257 amount=2 -kerning first=312 second=245 amount=1 -kerning first=112 second=269 amount=2 -kerning first=355 second=309 amount=-12 -kerning first=358 second=89 amount=-1 -kerning first=70 second=345 amount=-3 -kerning first=208 second=270 amount=-6 -kerning first=254 second=114 amount=2 -kerning first=359 second=259 amount=2 -kerning first=232 second=347 amount=1 -kerning first=117 second=359 amount=-1 -kerning first=193 second=233 amount=-12 -kerning first=344 second=222 amount=-8 -kerning first=194 second=373 amount=-13 -kerning first=82 second=195 amount=3 -kerning first=220 second=90 amount=4 -kerning first=283 second=311 amount=-1 -kerning first=86 second=115 amount=3 -kerning first=221 second=260 amount=-3 -kerning first=349 second=312 amount=1 -kerning first=267 second=104 amount=-1 -kerning first=87 second=285 amount=2 -kerning first=333 second=105 amount=-2 -kerning first=248 second=117 amount=-2 -kerning first=268 second=274 amount=-2 -kerning first=45 second=361 amount=2 -kerning first=376 second=199 amount=-1 -kerning first=272 second=224 amount=2 -kerning first=207 second=363 amount=-2 -kerning first=115 second=312 amount=1 -kerning first=358 second=352 amount=-6 -kerning first=296 second=301 amount=-2 -kerning first=277 second=314 amount=-1 -kerning first=192 second=326 amount=-13 -kerning first=300 second=251 amount=-2 -kerning first=77 second=338 amount=3 -kerning first=80 second=118 amount=1 -kerning first=100 second=275 amount=1 -kerning first=258 second=327 amount=-15 -kerning first=261 second=107 amount=-1 -kerning first=196 second=276 amount=-10 -kerning first=84 second=68 amount=-8 -kerning first=104 second=225 amount=2 -kerning first=242 second=120 amount=-2 -kerning first=347 second=265 amount=1 -kerning first=350 second=45 amount=4 -kerning first=370 second=202 amount=-6 -kerning first=65 second=81 amount=-11 -kerning first=286 second=354 amount=-2 -kerning first=309 second=291 amount=2 -kerning first=8211 second=280 amount=-7 -kerning first=290 second=304 amount=3 -kerning first=70 second=201 amount=-9 -kerning first=205 second=316 amount=-2 -kerning first=113 second=265 amount=1 -kerning first=356 second=305 amount=-2 -kerning first=71 second=341 amount=1 -kerning first=209 second=266 amount=3 -kerning first=212 second=46 amount=-5 -kerning first=337 second=318 amount=-1 -kerning first=340 second=98 amount=-2 -kerning first=275 second=267 amount=1 -kerning first=193 second=59 amount=-10 -kerning first=75 second=291 amount=-7 -kerning first=78 second=71 amount=3 -kerning first=318 second=331 amount=-9 -kerning first=98 second=228 amount=5 -kerning first=118 second=355 amount=2 -kerning first=256 second=280 amount=-10 -kerning first=59 second=84 amount=-10 -kerning first=194 second=229 amount=-10 -kerning first=260 second=230 amount=-10 -kerning first=195 second=369 amount=-13 -kerning first=80 second=381 amount=-4 -kerning first=103 second=318 amount=2 -kerning first=346 second=358 amount=-3 -kerning first=369 second=295 amount=-1 -kerning first=84 second=331 amount=-6 -kerning first=222 second=256 amount=-13 -kerning first=307 second=244 amount=1 -kerning first=265 second=320 amount=-1 -kerning first=373 second=245 amount=4 -kerning first=65 second=344 amount=-17 -kerning first=88 second=281 amount=-2 -kerning first=354 second=258 amount=-13 -kerning first=332 second=8212 amount=3 -kerning first=358 second=208 amount=-8 -kerning first=73 second=244 amount=-2 -kerning first=254 second=233 amount=2 -kerning first=320 second=234 amount=-1 -kerning first=100 second=101 amount=1 -kerning first=193 second=322 amount=-12 -kerning first=196 second=102 amount=-12 -kerning first=78 second=334 amount=3 -kerning first=98 second=8212 amount=4 -kerning first=101 second=271 amount=2 -kerning first=344 second=311 amount=-2 -kerning first=197 second=272 amount=-10 -kerning first=328 second=104 amount=-1 -kerning first=243 second=116 amount=-1 -kerning first=263 second=273 amount=1 -kerning first=66 second=77 amount=2 -kerning first=201 second=222 amount=-6 -kerning first=86 second=234 amount=3 -kerning first=221 second=349 amount=-4 -kerning first=352 second=211 amount=3 -kerning first=8211 second=106 amount=-7 -kerning first=267 second=223 amount=2 -kerning first=375 second=118 amount=3 -kerning first=110 second=311 amount=-1 -kerning first=8212 second=276 amount=-7 -kerning first=376 second=288 amount=-1 -kerning first=294 second=80 amount=-2 -kerning first=206 second=312 amount=-2 -kerning first=114 second=261 amount=-2 -kerning first=357 second=301 amount=-3 -kerning first=360 second=81 amount=2 -kerning first=75 second=117 amount=-8 -kerning first=315 second=377 amount=2 -kerning first=99 second=224 amount=1 -kerning first=234 second=339 amount=1 -kerning first=345 second=44 amount=-7 -kerning first=119 second=351 amount=2 -kerning first=195 second=225 amount=-10 -kerning first=80 second=237 amount=1 -kerning first=300 second=340 amount=-2 -kerning first=238 second=289 amount=2 -kerning first=346 second=214 amount=3 -kerning first=261 second=226 amount=2 -kerning first=281 second=353 amount=1 -kerning first=196 second=365 amount=-13 -kerning first=222 second=82 amount=-7 -kerning first=327 second=227 amount=2 -kerning first=104 second=314 amount=-1 -kerning first=242 second=239 amount=-2 -kerning first=370 second=291 amount=2 -kerning first=285 second=303 amount=3 -kerning first=65 second=200 amount=-10 -kerning first=354 second=84 amount=-8 -kerning first=266 second=316 amount=2 -kerning first=46 second=213 amount=-3 -kerning first=289 second=253 amount=2 -kerning first=66 second=340 amount=-1 -kerning first=204 second=265 amount=-2 -kerning first=355 second=254 amount=-1 -kerning first=8211 second=369 amount=2 -kerning first=270 second=266 amount=4 -kerning first=73 second=70 amount=-2 -kerning first=74 second=240 amount=-5 -kerning first=360 second=344 amount=-2 -kerning first=298 second=293 amount=-2 -kerning first=101 second=97 amount=2 -kerning first=236 second=242 amount=1 -kerning first=341 second=357 amount=-1 -kerning first=121 second=254 amount=3 -kerning first=256 second=369 amount=-13 -kerning first=59 second=203 amount=-4 -kerning first=194 second=318 amount=-12 -kerning first=197 second=98 amount=-12 -kerning first=302 second=243 amount=-2 -kerning first=102 second=267 amount=-8 -kerning first=198 second=268 amount=-7 -kerning first=83 second=280 amount=-3 -kerning first=326 second=320 amount=-1 -kerning first=329 second=100 amount=2 -kerning first=244 second=112 amount=-2 -kerning first=349 second=257 amount=3 -kerning first=67 second=73 amount=3 -kerning first=307 second=333 amount=1 -kerning first=330 second=270 amount=-6 -kerning first=376 second=114 amount=-5 -kerning first=203 second=358 amount=-5 -kerning first=311 second=283 amount=1 -kerning first=226 second=295 amount=-1 -kerning first=111 second=307 amount=-2 -kerning first=354 second=347 amount=-10 -kerning first=269 second=359 amount=-1 -kerning first=230 second=245 amount=1 -kerning first=115 second=257 amount=3 -kerning first=358 second=297 amount=-2 -kerning first=273 second=309 amount=-12 -kerning first=296 second=246 amount=-2 -kerning first=73 second=333 amount=-2 -kerning first=254 second=322 amount=3 -kerning first=277 second=259 amount=2 -kerning first=192 second=271 amount=-10 -kerning first=323 second=103 amount=2 -kerning first=235 second=335 amount=1 -kerning first=238 second=115 amount=1 -kerning first=258 second=272 amount=-10 -kerning first=304 second=116 amount=-2 -kerning first=324 second=273 amount=2 -kerning first=239 second=285 amount=2 -kerning first=262 second=222 amount=-2 -kerning first=197 second=361 amount=-13 -kerning first=328 second=223 amount=4 -kerning first=371 second=287 amount=2 -kerning first=374 second=67 amount=-1 -kerning first=66 second=196 amount=-5 -kerning first=86 second=323 amount=2 -kerning first=89 second=103 amount=-3 -kerning first=244 second=375 amount=-2 -kerning first=8211 second=225 amount=4 -kerning first=375 second=237 amount=3 -kerning first=70 second=116 amount=-2 -kerning first=8212 second=365 amount=2 -kerning first=376 second=377 amount=-2 -kerning first=71 second=286 amount=3 -kerning first=74 second=66 amount=-5 -kerning first=209 second=211 amount=3 -kerning first=360 second=200 amount=-6 -kerning first=298 second=119 amount=-2 -kerning first=75 second=236 amount=-7 -kerning first=256 second=225 amount=-10 -kerning first=364 second=120 amount=-2 -kerning first=299 second=289 amount=2 -kerning first=368 second=70 amount=-2 -kerning first=195 second=314 amount=-12 -kerning first=80 second=326 amount=1 -kerning first=83 second=106 amount=-11 -kerning first=103 second=263 amount=2 -kerning first=369 second=240 amount=2 -kerning first=84 second=276 amount=-8 -kerning first=222 second=201 amount=-9 -kerning first=242 second=328 amount=-2 -kerning first=245 second=108 amount=-1 -kerning first=65 second=289 amount=-10 -kerning first=68 second=69 amount=-6 -kerning first=334 second=46 amount=-5 -kerning first=108 second=353 amount=1 -kerning first=354 second=203 amount=-8 -kerning first=204 second=354 amount=-2 -kerning first=312 second=279 amount=1 -kerning first=227 second=291 amount=2 -kerning first=112 second=303 amount=2 -kerning first=316 second=229 amount=2 -kerning first=359 second=293 amount=-1 -kerning first=192 second=97 amount=-10 -kerning first=258 second=98 amount=-12 -kerning first=193 second=267 amount=-12 -kerning first=81 second=59 amount=-5 -kerning first=216 second=204 amount=3 -kerning first=239 second=111 amount=1 -kerning first=344 second=256 amount=3 -kerning first=217 second=344 amount=-2 -kerning first=240 second=281 amount=1 -kerning first=371 second=113 amount=2 -kerning first=198 second=357 amount=-2 -kerning first=264 second=358 amount=-2 -kerning first=287 second=295 amount=2 -kerning first=245 second=371 amount=-2 -kerning first=356 second=76 amount=-1 -kerning first=8212 second=221 amount=3 -kerning first=376 second=233 amount=-4 -kerning first=291 second=245 amount=2 -kerning first=68 second=332 amount=4 -kerning first=71 second=112 amount=1 -kerning first=357 second=246 amount=-9 -kerning first=272 second=258 amount=-8 -kerning first=72 second=282 amount=-6 -kerning first=210 second=207 amount=3 -kerning first=318 second=102 amount=-4 -kerning first=276 second=208 amount=-5 -kerning first=296 second=335 amount=-2 -kerning first=299 second=115 amount=1 -kerning first=362 second=336 amount=2 -kerning first=365 second=116 amount=-1 -kerning first=323 second=222 amount=-2 -kerning first=100 second=309 amount=-12 -kerning first=343 second=349 amount=-2 -kerning first=258 second=361 amount=-13 -kerning first=366 second=286 amount=2 -kerning first=304 second=235 amount=-2 -kerning first=84 second=102 amount=-3 -kerning first=104 second=259 amount=2 -kerning first=347 second=299 amount=1 -kerning first=350 second=79 amount=3 -kerning first=262 second=311 amount=2 -kerning first=285 second=248 amount=2 -kerning first=65 second=115 amount=-11 -kerning first=85 second=272 amount=-6 -kerning first=243 second=324 amount=-2 -kerning first=246 second=104 amount=-1 -kerning first=351 second=249 amount=1 -kerning first=66 second=285 amount=3 -kerning first=89 second=222 amount=-1 -kerning first=109 second=349 amount=1 -kerning first=270 second=211 amount=4 -kerning first=375 second=326 amount=3 -kerning first=378 second=106 amount=-8 -kerning first=70 second=235 amount=-4 -kerning first=228 second=287 amount=2 -kerning first=356 second=339 amount=-7 -kerning first=271 second=351 amount=-8 -kerning first=71 second=375 amount=1 -kerning first=360 second=289 amount=2 -kerning first=298 second=238 amount=-2 -kerning first=318 second=365 amount=-9 -kerning first=344 second=82 amount=-8 -kerning first=256 second=314 amount=-12 -kerning first=194 second=263 amount=-12 -kerning first=217 second=200 amount=-6 -kerning first=240 second=107 amount=-1 -kerning first=260 second=264 amount=-11 -kerning first=198 second=213 amount=-7 -kerning first=218 second=340 amount=-2 -kerning first=221 second=120 amount=-7 -kerning first=369 second=329 amount=-3 -kerning first=44 second=81 amount=-3 -kerning first=287 second=121 amount=2 -kerning first=84 second=365 amount=-6 -kerning first=222 second=290 amount=4 -kerning first=350 second=342 amount=-3 -kerning first=373 second=279 amount=4 -kerning first=45 second=251 amount=2 -kerning first=376 second=59 amount=-5 -kerning first=311 second=228 amount=2 -kerning first=226 second=240 amount=2 -kerning first=331 second=355 amount=-1 -kerning first=111 second=252 amount=-2 -kerning first=246 second=367 amount=-2 -kerning first=272 second=84 amount=-6 -kerning first=69 second=328 amount=-2 -kerning first=207 second=253 amount=-2 -kerning first=358 second=242 amount=-7 -kerning first=273 second=254 amount=-1 -kerning first=254 second=267 amount=2 -kerning first=192 second=216 amount=-11 -kerning first=300 second=111 amount=-2 -kerning first=77 second=228 amount=1 -kerning first=97 second=355 amount=-1 -kerning first=278 second=344 amount=-6 -kerning first=193 second=356 amount=-20 -kerning first=301 second=281 amount=1 -kerning first=259 second=357 amount=-1 -kerning first=82 second=318 amount=-2 -kerning first=325 second=358 amount=-6 -kerning first=266 second=87 amount=4 -kerning first=66 second=111 amount=2 -kerning first=86 second=268 amount=5 -kerning first=244 second=320 amount=-1 -kerning first=267 second=257 amount=1 -kerning first=44 second=344 amount=-4 -kerning first=228 second=113 amount=2 -kerning first=245 second=8211 amount=3 -kerning first=356 second=195 amount=-13 -kerning first=376 second=322 amount=-2 -kerning first=71 second=231 amount=3 -kerning first=114 second=295 amount=-1 -kerning first=357 second=335 amount=-9 -kerning first=160 second=87 amount=-3 -kerning first=210 second=296 amount=3 -kerning first=233 second=233 amount=1 -kerning first=118 second=245 amount=4 -kerning first=361 second=285 amount=2 -kerning first=194 second=89 amount=-7 -kerning first=260 second=90 amount=-7 -kerning first=195 second=259 amount=-10 -kerning first=241 second=103 amount=2 -kerning first=199 second=209 amount=4 -kerning first=304 second=324 amount=-2 -kerning first=350 second=198 amount=-11 -kerning first=45 second=77 amount=4 -kerning first=373 second=105 amount=2 -kerning first=285 second=337 amount=2 -kerning first=65 second=234 amount=-12 -kerning first=246 second=223 amount=2 -kerning first=354 second=118 amount=-5 -kerning first=289 second=287 amount=5 -kerning first=204 second=299 amount=-2 -kerning first=89 second=311 amount=-2 -kerning first=312 second=224 amount=2 -kerning first=112 second=248 amount=2 -kerning first=358 second=68 amount=-8 -kerning first=70 second=324 amount=-3 -kerning first=73 second=104 amount=-2 -kerning first=294 second=377 amount=4 -kerning first=74 second=274 amount=-5 -kerning first=235 second=106 amount=-13 -kerning first=160 second=350 amount=-3 -kerning first=278 second=200 amount=-5 -kerning first=58 second=67 amount=-3 -kerning first=193 second=212 amount=-11 -kerning first=78 second=224 amount=2 -kerning first=98 second=351 amount=2 -kerning first=367 second=108 amount=-1 -kerning first=194 second=352 amount=-8 -kerning first=302 second=277 amount=-2 -kerning first=217 second=289 amount=2 -kerning first=220 second=69 amount=-6 -kerning first=325 second=214 amount=3 -kerning first=102 second=301 amount=-7 -kerning first=240 second=226 amount=2 -kerning first=260 second=353 amount=-11 -kerning first=368 second=278 amount=-6 -kerning first=286 second=70 amount=-2 -kerning first=201 second=82 amount=-6 -kerning first=349 second=291 amount=3 -kerning first=352 second=71 amount=3 -kerning first=372 second=228 amount=2 -kerning first=44 second=200 amount=-4 -kerning first=287 second=240 amount=5 -kerning first=67 second=107 amount=2 -kerning first=87 second=264 amount=2 -kerning first=245 second=316 amount=-1 -kerning first=353 second=241 amount=1 -kerning first=45 second=340 amount=-6 -kerning first=226 second=329 amount=-3 -kerning first=354 second=381 amount=-2 -kerning first=272 second=203 amount=-6 -kerning first=72 second=227 amount=2 -kerning first=207 second=342 amount=-2 -kerning first=230 second=279 amount=1 -kerning first=338 second=204 amount=-1 -kerning first=115 second=291 amount=3 -kerning first=358 second=331 amount=-6 -kerning first=73 second=367 amount=-2 -kerning first=234 second=229 amount=2 -kerning first=119 second=241 amount=2 -kerning first=277 second=293 amount=-1 -kerning first=195 second=85 amount=-7 -kerning first=320 second=357 amount=-2 -kerning first=100 second=254 amount=-1 -kerning first=281 second=243 amount=1 -kerning first=58 second=330 amount=-5 -kerning first=347 second=244 amount=1 -kerning first=328 second=257 amount=2 -kerning first=266 second=206 amount=3 -kerning first=289 second=113 amount=5 -kerning first=86 second=357 amount=3 -kerning first=332 second=207 amount=3 -kerning first=352 second=334 amount=3 -kerning first=8211 second=259 amount=4 -kerning first=375 second=271 amount=7 -kerning first=205 second=295 amount=-2 -kerning first=113 second=244 amount=1 -kerning first=248 second=359 amount=-1 -kerning first=356 second=284 amount=-2 -kerning first=71 second=320 amount=2 -kerning first=74 second=100 amount=-5 -kerning first=160 second=206 amount=-4 -kerning first=275 second=246 amount=1 -kerning first=75 second=270 amount=-9 -kerning first=233 second=322 amount=-1 -kerning first=121 second=114 amount=3 -kerning first=256 second=259 amount=-10 -kerning first=194 second=208 amount=-10 -kerning first=99 second=347 amount=1 -kerning first=260 second=209 amount=-15 -kerning first=283 second=116 amount=-1 -kerning first=195 second=348 amount=-8 -kerning first=303 second=273 amount=2 -kerning first=218 second=285 amount=2 -kerning first=221 second=65 amount=-3 -kerning first=103 second=297 amount=3 -kerning first=349 second=117 amount=1 -kerning first=261 second=349 amount=1 -kerning first=199 second=298 amount=3 -kerning first=307 second=223 amount=3 -kerning first=87 second=90 amount=4 -kerning first=45 second=196 amount=-13 -kerning first=373 second=224 amount=5 -kerning first=65 second=323 amount=-15 -kerning first=68 second=103 amount=2 -kerning first=203 second=248 amount=-2 -kerning first=88 second=260 amount=-5 -kerning first=246 second=312 amount=-2 -kerning first=354 second=237 amount=-2 -kerning first=46 second=336 amount=-3 -kerning first=335 second=250 amount=-2 -kerning first=112 second=337 amount=2 -kerning first=115 second=117 amount=1 -kerning first=296 second=106 amount=-14 -kerning first=208 second=338 amount=4 -kerning first=316 second=263 amount=1 -kerning first=116 second=287 amount=2 -kerning first=74 second=363 amount=-4 -kerning first=235 second=225 amount=2 -kerning first=340 second=340 amount=-8 -kerning first=343 second=120 amount=-2 -kerning first=196 second=81 amount=-11 -kerning first=301 second=226 amount=2 -kerning first=262 second=82 amount=-4 -kerning first=367 second=227 amount=2 -kerning first=201 second=201 amount=-5 -kerning first=86 second=213 amount=5 -kerning first=221 second=328 amount=-5 -kerning first=224 second=108 amount=-1 -kerning first=109 second=120 amount=-1 -kerning first=8211 second=85 amount=5 -kerning first=375 second=97 amount=7 -kerning first=205 second=121 amount=-2 -kerning first=356 second=110 amount=-6 -kerning first=268 second=342 amount=-4 -kerning first=271 second=122 amount=-10 -kerning first=291 second=279 amount=2 -kerning first=376 second=267 amount=-4 -kerning first=209 second=71 amount=3 -kerning first=229 second=228 amount=2 -kerning first=114 second=240 amount=-2 -kerning first=295 second=229 amount=2 -kerning first=256 second=85 amount=-7 -kerning first=361 second=230 amount=1 -kerning first=276 second=242 amount=-2 -kerning first=296 second=369 amount=-2 -kerning first=79 second=46 amount=-5 -kerning first=234 second=318 amount=-1 -kerning first=195 second=204 amount=-7 -kerning first=80 second=216 amount=3 -kerning first=303 second=99 amount=1 -kerning first=346 second=193 amount=-9 -kerning first=369 second=100 amount=2 -kerning first=196 second=344 amount=-17 -kerning first=304 second=269 amount=-2 -kerning first=104 second=293 amount=-1 -kerning first=347 second=333 amount=1 -kerning first=370 second=270 amount=-6 -kerning first=223 second=231 amount=1 -kerning first=108 second=243 amount=1 -kerning first=351 second=283 amount=1 -kerning first=266 second=295 amount=2 -kerning first=289 second=232 amount=2 -kerning first=204 second=244 amount=-2 -kerning first=89 second=256 amount=-3 -kerning first=332 second=296 amount=3 -kerning first=70 second=269 amount=-4 -kerning first=208 second=194 amount=-8 -kerning first=113 second=333 amount=1 -kerning first=116 second=113 amount=2 -kerning first=356 second=373 amount=-5 -kerning first=209 second=334 amount=3 -kerning first=232 second=271 amount=2 -kerning first=340 second=196 amount=3 -kerning first=363 second=103 amount=2 -kerning first=275 second=335 amount=1 -kerning first=75 second=359 amount=-7 -kerning first=344 second=116 amount=-2 -kerning first=121 second=233 amount=3 -kerning first=256 second=348 amount=-8 -kerning first=364 second=273 amount=2 -kerning first=279 second=285 amount=2 -kerning first=197 second=77 amount=-8 -kerning first=302 second=222 amount=-2 -kerning first=102 second=246 amount=-8 -kerning first=348 second=66 amount=-3 -kerning first=260 second=298 amount=-7 -kerning first=368 second=223 amount=2 -kerning first=283 second=235 amount=1 -kerning first=241 second=311 amount=-1 -kerning first=349 second=236 amount=1 -kerning first=222 second=324 amount=2 -kerning first=225 second=104 amount=-1 -kerning first=110 second=116 amount=-1 -kerning first=8212 second=81 amount=5 -kerning first=45 second=285 amount=4 -kerning first=291 second=105 amount=3 -kerning first=68 second=222 amount=-5 -kerning first=203 second=337 amount=-2 -kerning first=206 second=117 amount=-2 -kerning first=354 second=326 amount=-6 -kerning first=357 second=106 amount=-13 -kerning first=230 second=224 amount=2 -kerning first=115 second=236 amount=1 -kerning first=358 second=276 amount=-8 -kerning first=276 second=68 amount=-5 -kerning first=73 second=312 amount=-2 -kerning first=339 second=289 amount=2 -kerning first=254 second=301 amount=2 -kerning first=362 second=226 amount=2 -kerning first=77 second=262 amount=3 -kerning first=323 second=82 amount=-2 -kerning first=235 second=314 amount=-1 -kerning first=196 second=200 amount=-10 -kerning first=101 second=339 amount=1 -kerning first=262 second=201 amount=-2 -kerning first=367 second=316 amount=-1 -kerning first=282 second=328 amount=-2 -kerning first=285 second=108 amount=2 -kerning first=197 second=340 amount=-17 -kerning first=105 second=289 amount=2 -kerning first=348 second=329 amount=-5 -kerning first=351 second=109 amount=1 -kerning first=374 second=46 amount=-5 -kerning first=286 second=278 amount=-2 -kerning first=204 second=70 amount=-2 -kerning first=86 second=302 amount=5 -kerning first=89 second=82 amount=-1 -kerning first=224 second=227 amount=2 -kerning first=8211 second=204 amount=-5 -kerning first=267 second=291 amount=1 -kerning first=270 second=71 amount=4 -kerning first=356 second=229 amount=-10 -kerning first=8212 second=344 amount=-6 -kerning first=71 second=265 amount=3 -kerning first=74 second=45 amount=-3 -kerning first=232 second=97 amount=2 -kerning first=357 second=369 amount=-9 -kerning first=295 second=318 amount=-1 -kerning first=298 second=98 amount=-2 -kerning first=233 second=267 amount=1 -kerning first=118 second=279 amount=4 -kerning first=256 second=204 amount=-7 -kerning first=276 second=331 amount=-2 -kerning first=279 second=111 amount=1 -kerning first=195 second=293 amount=-12 -kerning first=103 second=242 amount=2 -kerning first=346 second=282 amount=-3 -kerning first=304 second=358 amount=-2 -kerning first=242 second=307 amount=-2 -kerning first=265 second=244 amount=-1 -kerning first=45 second=111 amount=4 -kerning first=285 second=371 amount=2 -kerning first=65 second=268 amount=-11 -kerning first=226 second=100 amount=2 -kerning first=111 second=112 amount=-2 -kerning first=204 second=333 amount=-2 -kerning first=89 second=345 amount=-5 -kerning first=358 second=102 amount=-3 -kerning first=270 second=334 amount=4 -kerning first=70 second=358 amount=-9 -kerning first=339 second=115 amount=1 -kerning first=192 second=76 amount=-7 -kerning first=258 second=77 amount=-8 -kerning first=193 second=246 amount=-12 -kerning first=298 second=361 amount=-2 -kerning first=121 second=322 amount=3 -kerning first=197 second=196 amount=-7 -kerning first=302 second=311 amount=-2 -kerning first=220 second=103 amount=2 -kerning first=102 second=335 amount=-8 -kerning first=105 second=115 amount=1 -kerning first=286 second=104 amount=2 -kerning first=198 second=336 amount=-7 -kerning first=221 second=273 amount=-3 -kerning first=106 second=285 amount=2 -kerning first=330 second=338 amount=3 -kerning first=333 second=118 amount=-2 -kerning first=353 second=275 amount=1 -kerning first=8212 second=200 amount=-7 -kerning first=45 second=374 amount=3 -kerning first=376 second=212 amount=-1 -kerning first=291 second=224 amount=5 -kerning first=206 second=236 amount=-2 -kerning first=311 second=351 amount=1 -kerning first=111 second=375 amount=-2 -kerning first=357 second=225 amount=-8 -kerning first=118 second=105 amount=2 -kerning first=358 second=365 amount=-6 -kerning first=56 second=54 amount=2 -kerning first=296 second=314 amount=-2 -kerning first=99 second=118 amount=-1 -kerning first=234 second=263 amount=1 -kerning first=119 second=275 amount=4 -kerning first=192 second=339 amount=-12 -kerning first=195 second=119 amount=-13 -kerning first=323 second=201 amount=-6 -kerning first=258 second=340 amount=-17 -kerning first=261 second=120 amount=-1 -kerning first=281 second=277 amount=1 -kerning first=196 second=289 amount=-10 -kerning first=199 second=69 amount=-2 -kerning first=84 second=81 amount=-2 -kerning first=219 second=226 amount=2 -kerning first=239 second=353 amount=1 -kerning first=350 second=58 amount=-4 -kerning first=285 second=227 amount=5 -kerning first=328 second=291 amount=2 -kerning first=243 second=303 amount=-2 -kerning first=351 second=228 amount=3 -kerning first=371 second=355 amount=-1 -kerning first=66 second=264 amount=3 -kerning first=89 second=201 amount=-4 -kerning first=224 second=316 amount=-1 -kerning first=112 second=108 amount=3 -kerning first=205 second=329 amount=-4 -kerning first=356 second=318 amount=-3 -kerning first=359 second=98 amount=-1 -kerning first=274 second=110 amount=-2 -kerning first=71 second=354 amount=-2 -kerning first=212 second=59 amount=-5 -kerning first=337 second=331 amount=-2 -kerning first=117 second=228 amount=2 -kerning first=340 second=111 amount=-2 -kerning first=360 second=268 amount=2 -kerning first=193 second=72 amount=-4 -kerning first=78 second=84 amount=-6 -kerning first=98 second=241 amount=2 -kerning first=341 second=281 amount=-2 -kerning first=256 second=293 amount=-12 -kerning first=194 second=242 amount=-12 -kerning first=345 second=231 amount=-2 -kerning first=198 second=192 amount=-6 -kerning first=221 second=99 amount=-4 -kerning first=103 second=331 amount=2 -kerning first=106 second=111 amount=1 -kerning first=372 second=88 amount=3 -kerning first=284 second=320 amount=2 -kerning first=287 second=100 amount=5 -kerning first=307 second=257 amount=2 -kerning first=84 second=344 amount=-5 -kerning first=107 second=281 amount=1 -kerning first=353 second=101 amount=1 -kerning first=265 second=333 amount=-1 -kerning first=285 second=8211 amount=4 -kerning first=65 second=357 amount=-12 -kerning first=203 second=282 amount=-5 -kerning first=354 second=271 amount=-10 -kerning first=207 second=232 amount=-2 -kerning first=312 second=347 amount=1 -kerning first=227 second=359 amount=-1 -kerning first=112 second=371 amount=2 -kerning first=273 second=233 amount=1 -kerning first=231 second=309 amount=-11 -kerning first=339 second=234 amount=1 -kerning first=119 second=101 amount=4 -kerning first=254 second=246 amount=2 -kerning first=274 second=373 amount=-2 -kerning first=192 second=195 amount=-7 -kerning first=235 second=259 amount=2 -kerning first=120 second=271 amount=2 -kerning first=258 second=196 amount=-7 -kerning first=363 second=311 amount=-1 -kerning first=281 second=103 amount=2 -kerning first=193 second=335 amount=-12 -kerning first=196 second=115 amount=-11 -kerning first=347 second=104 amount=1 -kerning first=262 second=116 amount=2 -kerning first=197 second=285 amount=-10 -kerning first=220 second=222 amount=-2 -kerning first=105 second=234 amount=1 -kerning first=240 second=349 amount=1 -kerning first=348 second=274 amount=-3 -kerning first=266 second=66 amount=-2 -kerning first=286 second=223 amount=3 -kerning first=329 second=287 amount=2 -kerning first=8211 second=119 amount=2 -kerning first=44 second=323 amount=-5 -kerning first=287 second=363 amount=2 -kerning first=202 second=375 amount=-3 -kerning first=313 second=80 amount=-4 -kerning first=225 second=312 amount=-1 -kerning first=333 second=237 amount=-2 -kerning first=113 second=104 amount=-1 -kerning first=248 second=249 amount=-2 -kerning first=8212 second=289 amount=4 -kerning first=160 second=66 amount=-6 -kerning first=275 second=106 amount=-13 -kerning first=118 second=224 amount=5 -kerning first=256 second=119 amount=-13 -kerning first=341 second=107 amount=-1 -kerning first=276 second=276 amount=-5 -kerning first=194 second=68 amount=-10 -kerning first=319 second=340 amount=-4 -kerning first=257 second=289 amount=2 -kerning first=260 second=69 amount=-10 -kerning first=300 second=353 amount=-2 -kerning first=80 second=250 amount=1 -kerning first=323 second=290 amount=3 -kerning first=366 second=354 amount=-6 -kerning first=304 second=303 amount=-2 -kerning first=84 second=200 amount=-8 -kerning first=327 second=240 amount=2 -kerning first=242 second=252 amount=-2 -kerning first=347 second=367 amount=1 -kerning first=285 second=316 amount=2 -kerning first=65 second=213 amount=-11 -kerning first=200 second=328 amount=-2 -kerning first=85 second=340 amount=-2 -kerning first=223 second=265 amount=1 -kerning first=108 second=277 amount=1 -kerning first=354 second=97 amount=-10 -kerning first=374 second=254 amount=-2 -kerning first=66 second=353 amount=1 -kerning first=89 second=290 amount=-1 -kerning first=335 second=110 amount=-2 -kerning first=112 second=227 amount=5 -kerning first=70 second=303 amount=-4 -kerning first=208 second=228 amount=2 -kerning first=228 second=355 amount=-1 -kerning first=294 second=356 amount=-6 -kerning first=340 second=230 amount=-2 -kerning first=120 second=97 amount=2 -kerning first=78 second=203 amount=-6 -kerning first=121 second=267 amount=3 -kerning first=59 second=216 amount=-3 -kerning first=194 second=331 amount=-13 -kerning first=197 second=111 amount=-12 -kerning first=345 second=320 amount=-1 -kerning first=260 second=332 amount=-11 -kerning first=368 second=257 amount=2 -kerning first=283 second=269 amount=1 -kerning first=198 second=281 amount=-5 -kerning first=86 second=73 amount=5 -kerning first=329 second=113 amount=2 -kerning first=106 second=230 amount=1 -kerning first=346 second=8211 amount=4 -kerning first=264 second=282 amount=-2 -kerning first=67 second=86 amount=4 -kerning first=222 second=358 amount=-9 -kerning first=245 second=295 amount=-1 -kerning first=8212 second=115 amount=4 -kerning first=45 second=319 amount=3 -kerning first=373 second=347 amount=1 -kerning first=68 second=256 amount=-8 -kerning first=203 second=371 amount=-2 -kerning first=111 second=320 amount=-1 -kerning first=114 second=100 amount=-2 -kerning first=292 second=309 amount=-12 -kerning first=335 second=373 amount=-2 -kerning first=112 second=8211 amount=4 -kerning first=273 second=322 amount=-1 -kerning first=208 second=8212 amount=4 -kerning first=254 second=335 amount=2 -kerning first=257 second=115 amount=1 -kerning first=192 second=284 amount=-11 -kerning first=100 second=233 amount=1 -kerning first=343 second=273 amount=-2 -kerning first=258 second=285 amount=-10 -kerning first=366 second=210 amount=2 -kerning first=58 second=309 amount=-11 -kerning first=196 second=234 amount=-12 -kerning first=301 second=349 amount=1 -kerning first=327 second=66 amount=2 -kerning first=108 second=103 amount=2 -kerning first=263 second=375 amount=-1 -kerning first=374 second=80 amount=-1 -kerning first=286 second=312 amount=2 -kerning first=201 second=324 amount=-2 -kerning first=204 second=104 amount=-2 -kerning first=86 second=336 amount=5 -kerning first=89 second=116 amount=-2 -kerning first=109 second=273 amount=2 -kerning first=8211 second=238 amount=2 -kerning first=375 second=250 amount=3 -kerning first=333 second=326 amount=-2 -kerning first=113 second=223 amount=2 -kerning first=356 second=263 amount=-7 -kerning first=271 second=275 amount=-9 -kerning first=71 second=299 amount=1 -kerning first=209 second=224 amount=2 -kerning first=229 second=351 amount=1 -kerning first=360 second=213 amount=2 -kerning first=275 second=225 amount=2 -kerning first=318 second=289 amount=-8 -kerning first=341 second=226 amount=-2 -kerning first=361 second=353 amount=1 -kerning first=276 second=365 amount=-2 -kerning first=302 second=82 amount=-2 -kerning first=102 second=106 amount=-13 -kerning first=195 second=327 amount=-15 -kerning first=198 second=107 amount=-2 -kerning first=221 second=44 amount=-5 -kerning first=323 second=379 amount=4 -kerning first=264 second=108 amount=2 -kerning first=287 second=45 amount=4 -kerning first=84 second=289 amount=-10 -kerning first=87 second=69 amount=-6 -kerning first=222 second=214 amount=4 -kerning first=107 second=226 amount=2 -kerning first=245 second=121 amount=-2 -kerning first=350 second=266 amount=3 -kerning first=65 second=302 amount=-7 -kerning first=68 second=82 amount=-3 -kerning first=334 second=59 amount=-5 -kerning first=354 second=216 amount=-2 -kerning first=269 second=228 amount=1 -kerning first=374 second=343 amount=-5 -kerning first=289 second=355 amount=2 -kerning first=204 second=367 amount=-2 -kerning first=89 second=379 amount=-2 -kerning first=112 second=316 amount=3 -kerning first=316 second=242 amount=1 -kerning first=231 second=254 amount=-1 -kerning first=362 second=86 amount=2 -kerning first=277 second=98 amount=-1 -kerning first=192 second=110 amount=-13 -kerning first=74 second=342 amount=-4 -kerning first=340 second=319 amount=3 -kerning first=258 second=111 amount=-12 -kerning first=343 second=99 amount=-2 -kerning first=193 second=280 amount=-10 -kerning first=101 second=229 amount=2 -kerning first=197 second=230 amount=-10 -kerning first=325 second=282 amount=-6 -kerning first=102 second=369 amount=-7 -kerning first=86 second=192 amount=-3 -kerning first=221 second=307 amount=-3 -kerning first=349 second=359 amount=1 -kerning first=44 second=268 amount=-3 -kerning first=290 second=88 amount=1 -kerning first=67 second=205 amount=3 -kerning first=87 second=332 amount=2 -kerning first=225 second=257 amount=2 -kerning first=353 second=309 amount=-9 -kerning first=356 second=89 amount=-1 -kerning first=271 second=101 amount=-9 -kerning first=376 second=246 amount=-4 -kerning first=8212 second=234 amount=4 -kerning first=337 second=102 amount=-2 -kerning first=357 second=259 amount=-8 -kerning first=272 second=271 amount=2 -kerning first=318 second=115 amount=-8 -kerning first=230 second=347 amount=1 -kerning first=338 second=272 amount=-2 -kerning first=115 second=359 amount=1 -kerning first=119 second=309 amount=-9 -kerning first=342 second=222 amount=-8 -kerning first=192 second=373 amount=-13 -kerning first=80 second=195 amount=-14 -kerning first=218 second=90 amount=4 -kerning first=100 second=322 amount=-1 -kerning first=281 second=311 amount=-1 -kerning first=196 second=323 amount=-15 -kerning first=304 second=248 amount=-2 -kerning first=84 second=115 amount=-10 -kerning first=347 second=312 amount=1 -kerning first=265 second=104 amount=-1 -kerning first=85 second=285 amount=2 -kerning first=88 second=65 amount=-5 -kerning first=246 second=117 amount=-2 -kerning first=266 second=274 amount=-2 -kerning first=374 second=199 amount=-1 -kerning first=8211 second=327 amount=-2 -kerning first=270 second=224 amount=2 -kerning first=375 second=339 amount=3 -kerning first=70 second=248 amount=-4 -kerning first=205 second=363 amount=-2 -kerning first=356 second=352 amount=-6 -kerning first=74 second=198 amount=-9 -kerning first=337 second=365 amount=-2 -kerning first=160 second=274 amount=-6 -kerning first=275 second=314 amount=-1 -kerning first=298 second=251 amount=-2 -kerning first=75 second=338 amount=-8 -kerning first=98 second=275 amount=2 -kerning first=256 second=327 amount=-15 -kerning first=259 second=107 amount=-1 -kerning first=194 second=276 amount=-10 -kerning first=102 second=225 amount=-6 -kerning first=240 second=120 amount=-1 -kerning first=345 second=265 amount=-2 -kerning first=348 second=45 amount=4 -kerning first=368 second=202 amount=-6 -kerning first=198 second=226 amount=-3 -kerning first=103 second=365 amount=2 -kerning first=284 second=354 amount=-2 -kerning first=307 second=291 amount=2 -kerning first=222 second=303 amount=2 -kerning first=330 second=228 amount=2 -kerning first=45 second=264 amount=5 -kerning first=288 second=304 amount=3 -kerning first=68 second=201 amount=-6 -kerning first=88 second=328 amount=-3 -kerning first=354 second=305 amount=-2 -kerning first=272 second=97 amount=2 -kerning first=210 second=46 amount=-5 -kerning first=335 second=318 amount=-1 -kerning first=192 second=229 amount=-10 -kerning first=320 second=281 amount=-1 -kerning first=235 second=293 amount=-1 -kerning first=258 second=230 amount=-10 -kerning first=193 second=369 amount=-13 -kerning first=304 second=74 amount=-2 -kerning first=78 second=381 amount=4 -kerning first=101 second=318 amount=-1 -kerning first=104 second=98 amount=-1 -kerning first=344 second=358 amount=-8 -kerning first=367 second=295 amount=-1 -kerning first=197 second=319 amount=-7 -kerning first=263 second=320 amount=-1 -kerning first=86 second=281 amount=3 -kerning first=352 second=258 amount=-9 -kerning first=290 second=207 amount=3 -kerning first=70 second=74 amount=-5 -kerning first=356 second=208 amount=-8 -kerning first=8212 second=323 amount=-2 -kerning first=376 second=335 amount=-4 -kerning first=291 second=347 amount=2 -kerning first=71 second=244 amount=3 -kerning first=206 second=359 amount=-2 -kerning first=75 second=194 amount=-3 -kerning first=318 second=234 amount=-9 -kerning first=98 second=101 amount=2 -kerning first=233 second=246 amount=1 -kerning first=194 second=102 amount=-12 -kerning first=99 second=271 amount=1 -kerning first=342 second=311 amount=-2 -kerning first=260 second=103 amount=-10 -kerning first=195 second=272 amount=-10 -kerning first=80 second=284 amount=3 -kerning first=326 second=104 amount=-1 -kerning first=241 second=116 amount=-1 -kerning first=261 second=273 amount=2 -kerning first=199 second=222 amount=-2 -kerning first=304 second=337 amount=-2 -kerning first=84 second=234 amount=-7 -kerning first=327 second=274 amount=-6 -kerning first=350 second=211 amount=3 -kerning first=265 second=223 amount=2 -kerning first=45 second=90 amount=-4 -kerning first=370 second=338 amount=2 -kerning first=373 second=118 amount=3 -kerning first=331 second=224 amount=2 -kerning first=246 second=236 amount=-2 -kerning first=374 second=288 amount=-1 -kerning first=292 second=80 amount=-2 -kerning first=204 second=312 amount=-2 -kerning first=89 second=324 amount=-5 -kerning first=358 second=81 amount=-2 -kerning first=70 second=337 amount=-4 -kerning first=73 second=117 amount=-2 -kerning first=208 second=262 amount=4 -kerning first=313 second=377 amount=2 -kerning first=254 second=106 amount=-9 -kerning first=74 second=287 amount=-5 -kerning first=77 second=67 amount=3 -kerning first=320 second=107 amount=-2 -kerning first=97 second=224 amount=2 -kerning first=232 second=339 amount=1 -kerning first=343 second=44 amount=-7 -kerning first=117 second=351 amount=1 -kerning first=58 second=80 amount=-4 -kerning first=193 second=225 amount=-10 -kerning first=298 second=340 amount=-2 -kerning first=236 second=289 amount=2 -kerning first=121 second=301 amount=3 -kerning first=259 second=226 amount=2 -kerning first=279 second=353 amount=1 -kerning first=194 second=365 amount=-13 -kerning first=220 second=82 amount=-2 -kerning first=325 second=227 amount=2 -kerning first=368 second=291 amount=2 -kerning first=198 second=315 amount=-3 -kerning first=86 second=107 amount=3 -kerning first=352 second=84 amount=-3 -kerning first=264 second=316 amount=2 -kerning first=44 second=213 amount=-3 -kerning first=287 second=253 amount=2 -kerning first=245 second=329 amount=-3 -kerning first=248 second=109 amount=-2 -kerning first=45 second=353 amount=4 -kerning first=68 second=290 amount=4 -kerning first=71 second=70 amount=-2 -kerning first=272 second=216 amount=4 -kerning first=72 second=240 amount=2 -kerning first=207 second=355 amount=-2 -kerning first=358 second=344 amount=-5 -kerning first=296 second=293 amount=-2 -kerning first=99 second=97 amount=1 -kerning first=234 second=242 amount=1 -kerning first=339 second=357 amount=-1 -kerning first=119 second=254 amount=3 -kerning first=254 second=369 amount=2 -kerning first=192 second=318 amount=-12 -kerning first=195 second=98 amount=-12 -kerning first=80 second=110 amount=1 -kerning first=300 second=243 amount=-2 -kerning first=100 second=267 amount=1 -kerning first=258 second=319 amount=-7 -kerning first=196 second=268 amount=-11 -kerning first=324 second=320 amount=-1 -kerning first=327 second=100 amount=2 -kerning first=242 second=112 amount=-2 -kerning first=347 second=257 amount=3 -kerning first=65 second=73 amount=-7 -kerning first=374 second=114 amount=-5 -kerning first=66 second=243 amount=2 -kerning first=201 second=358 amount=-5 -kerning first=309 second=283 amount=1 -kerning first=224 second=295 amount=-1 -kerning first=8211 second=272 amount=-7 -kerning first=267 second=359 amount=-1 -kerning first=290 second=296 amount=3 -kerning first=70 second=193 amount=-12 -kerning first=208 second=88 amount=-3 -kerning first=113 second=257 amount=2 -kerning first=356 second=297 amount=-2 -kerning first=271 second=309 amount=-13 -kerning first=71 second=333 amount=3 -kerning first=74 second=113 amount=-5 -kerning first=275 second=259 amount=2 -kerning first=75 second=283 amount=-10 -kerning first=233 second=335 amount=1 -kerning first=236 second=115 amount=1 -kerning first=118 second=347 amount=2 -kerning first=256 second=272 amount=-10 -kerning first=302 second=116 amount=-2 -kerning first=237 second=285 amount=2 -kerning first=260 second=222 amount=-17 -kerning first=195 second=361 amount=-13 -kerning first=80 second=373 amount=1 -kerning first=326 second=223 amount=4 -kerning first=369 second=287 amount=2 -kerning first=199 second=311 amount=2 -kerning first=84 second=323 amount=-1 -kerning first=87 second=103 amount=2 -kerning first=242 second=375 amount=-2 -kerning first=45 second=209 amount=-2 -kerning first=373 second=237 amount=2 -kerning first=65 second=336 amount=-11 -kerning first=374 second=377 amount=-2 -kerning first=72 second=66 amount=-6 -kerning first=315 second=106 amount=-6 -kerning first=358 second=200 amount=-8 -kerning first=296 second=119 amount=-2 -kerning first=73 second=236 amount=-2 -kerning first=254 second=225 amount=5 -kerning first=362 second=120 amount=-2 -kerning first=382 second=277 amount=1 -kerning first=297 second=289 amount=2 -kerning first=366 second=70 amount=-2 -kerning first=58 second=199 amount=-3 -kerning first=193 second=314 amount=-12 -kerning first=101 second=263 amount=1 -kerning first=367 second=240 amount=2 -kerning first=197 second=264 amount=-11 -kerning first=220 second=201 amount=-6 -kerning first=243 second=108 amount=-1 -kerning first=286 second=202 amount=-2 -kerning first=66 second=69 amount=-4 -kerning first=86 second=226 amount=6 -kerning first=221 second=341 amount=-5 -kerning first=332 second=46 amount=-5 -kerning first=352 second=203 amount=-3 -kerning first=375 second=110 amount=3 -kerning first=202 second=354 amount=-5 -kerning first=225 second=291 amount=2 -kerning first=8212 second=268 amount=5 -kerning first=268 second=355 amount=2 -kerning first=376 second=280 amount=-4 -kerning first=209 second=84 amount=-6 -kerning first=75 second=109 amount=-8 -kerning first=256 second=98 amount=-12 -kerning first=79 second=59 amount=-5 -kerning first=214 second=204 amount=3 -kerning first=237 second=111 amount=1 -kerning first=342 second=256 amount=3 -kerning first=369 second=113 amount=2 -kerning first=196 second=357 amount=-12 -kerning first=222 second=74 amount=-5 -kerning first=262 second=358 amount=-2 -kerning first=285 second=295 amount=2 -kerning first=65 second=192 amount=-7 -kerning first=88 second=99 amount=-2 -kerning first=223 second=244 amount=1 -kerning first=328 second=359 amount=-1 -kerning first=243 second=371 amount=-2 -kerning first=354 second=76 amount=-1 -kerning first=374 second=233 amount=-4 -kerning first=289 second=245 amount=2 -kerning first=89 second=269 amount=-4 -kerning first=8211 second=361 amount=2 -kerning first=270 second=258 amount=-8 -kerning first=375 second=373 amount=3 -kerning first=70 second=282 amount=-9 -kerning first=248 second=8212 amount=3 -kerning first=274 second=208 amount=-5 -kerning first=297 second=115 amount=1 -kerning first=74 second=232 amount=-5 -kerning first=360 second=336 amount=2 -kerning first=363 second=116 amount=-1 -kerning first=98 second=309 amount=-7 -kerning first=236 second=234 amount=1 -kerning first=341 second=349 amount=-2 -kerning first=121 second=246 amount=3 -kerning first=256 second=361 amount=-13 -kerning first=364 second=286 amount=2 -kerning first=197 second=90 amount=-7 -kerning first=302 second=235 amount=-2 -kerning first=102 second=259 amount=-6 -kerning first=348 second=79 amount=3 -kerning first=260 second=311 amount=-12 -kerning first=283 second=248 amount=1 -kerning first=198 second=260 amount=-6 -kerning first=83 second=272 amount=-3 -kerning first=221 second=197 amount=-3 -kerning first=244 second=104 amount=-1 -kerning first=349 second=249 amount=1 -kerning first=87 second=222 amount=-2 -kerning first=330 second=262 amount=3 -kerning first=107 second=349 amount=1 -kerning first=45 second=298 amount=-5 -kerning first=373 second=326 amount=2 -kerning first=291 second=118 amount=2 -kerning first=376 second=106 amount=-7 -kerning first=311 second=275 amount=1 -kerning first=226 second=287 amount=2 -kerning first=354 second=339 amount=-7 -kerning first=357 second=119 amount=-10 -kerning first=269 second=351 amount=1 -kerning first=69 second=375 amount=-3 -kerning first=115 second=249 amount=1 -kerning first=358 second=289 amount=-10 -kerning first=296 second=238 amount=-2 -kerning first=342 second=82 amount=-8 -kerning first=254 second=314 amount=3 -kerning first=192 second=263 amount=-12 -kerning first=258 second=264 amount=-11 -kerning first=58 second=288 amount=-3 -kerning first=196 second=213 amount=-11 -kerning first=304 second=108 amount=-2 -kerning first=367 second=329 amount=-3 -kerning first=285 second=121 amount=2 -kerning first=197 second=353 amount=-11 -kerning first=348 second=342 amount=-3 -kerning first=374 second=59 amount=-5 -kerning first=309 second=228 amount=2 -kerning first=86 second=315 amount=4 -kerning first=224 second=240 amount=2 -kerning first=329 second=355 amount=-1 -kerning first=244 second=367 amount=-2 -kerning first=270 second=84 amount=-6 -kerning first=375 second=229 amount=7 -kerning first=70 second=108 amount=-2 -kerning first=205 second=253 amount=-2 -kerning first=356 second=242 amount=-7 -kerning first=376 second=369 amount=-5 -kerning first=71 second=278 amount=-2 -kerning first=74 second=58 amount=-5 -kerning first=209 second=203 amount=-6 -kerning first=298 second=111 amount=-2 -kerning first=75 second=228 amount=-7 -kerning first=276 second=344 amount=-6 -kerning first=257 second=357 amount=-1 -kerning first=198 second=86 amount=-2 -kerning first=303 second=231 amount=1 -kerning first=323 second=358 amount=-6 -kerning first=264 second=87 amount=4 -kerning first=304 second=371 amount=-2 -kerning first=84 second=268 amount=-2 -kerning first=222 second=193 amount=-13 -kerning first=330 second=88 amount=3 -kerning first=242 second=320 amount=-1 -kerning first=265 second=257 amount=1 -kerning first=65 second=281 amount=-12 -kerning first=311 second=101 amount=1 -kerning first=223 second=333 amount=1 -kerning first=226 second=113 amount=2 -kerning first=243 second=8211 amount=3 -kerning first=354 second=195 amount=-13 -kerning first=374 second=322 amount=-2 -kerning first=312 second=271 amount=2 -kerning first=112 second=295 amount=3 -kerning first=355 second=335 amount=1 -kerning first=358 second=115 amount=-10 -kerning first=70 second=371 amount=-3 -kerning first=359 second=285 amount=2 -kerning first=192 second=89 amount=-7 -kerning first=258 second=90 amount=-7 -kerning first=193 second=259 amount=-10 -kerning first=75 second=8212 amount=-10 -kerning first=78 second=271 amount=2 -kerning first=239 second=103 amount=2 -kerning first=121 second=335 amount=3 -kerning first=59 second=284 amount=-3 -kerning first=197 second=209 amount=-15 -kerning first=302 second=324 amount=-2 -kerning first=240 second=273 amount=2 -kerning first=348 second=198 amount=-11 -kerning first=283 second=337 amount=1 -kerning first=198 second=349 amount=-4 -kerning first=221 second=286 amount=-1 -kerning first=244 second=223 amount=2 -kerning first=287 second=287 amount=5 -kerning first=245 second=363 amount=-2 -kerning first=356 second=68 amount=-8 -kerning first=8212 second=213 amount=5 -kerning first=268 second=300 amount=3 -kerning first=376 second=225 amount=-3 -kerning first=291 second=237 amount=3 -kerning first=71 second=104 amount=2 -kerning first=206 second=249 amount=-2 -kerning first=357 second=238 amount=-3 -kerning first=292 second=377 amount=4 -kerning first=72 second=274 amount=-6 -kerning first=233 second=106 amount=-13 -kerning first=118 second=118 amount=3 -kerning first=276 second=200 amount=-5 -kerning first=365 second=108 amount=-1 -kerning first=192 second=352 amount=-8 -kerning first=300 second=277 amount=-2 -kerning first=218 second=69 amount=-6 -kerning first=323 second=214 amount=3 -kerning first=238 second=226 amount=2 -kerning first=258 second=353 amount=-11 -kerning first=366 second=278 amount=-6 -kerning first=284 second=70 amount=-2 -kerning first=196 second=302 amount=-7 -kerning first=199 second=82 amount=-4 -kerning first=347 second=291 amount=3 -kerning first=350 second=71 amount=3 -kerning first=370 second=228 amount=2 -kerning first=285 second=240 amount=5 -kerning first=65 second=107 amount=-12 -kerning first=85 second=264 amount=2 -kerning first=220 second=379 amount=4 -kerning first=243 second=316 amount=-1 -kerning first=351 second=241 amount=1 -kerning first=66 second=277 amount=2 -kerning first=312 second=97 amount=2 -kerning first=89 second=214 amount=-1 -kerning first=224 second=329 amount=-3 -kerning first=112 second=121 amount=2 -kerning first=270 second=203 amount=-6 -kerning first=70 second=227 amount=-3 -kerning first=205 second=342 amount=-2 -kerning first=336 second=204 amount=3 -kerning first=113 second=291 amount=2 -kerning first=356 second=331 amount=-6 -kerning first=359 second=111 amount=1 -kerning first=271 second=343 amount=-9 -kerning first=294 second=280 amount=-6 -kerning first=71 second=367 amount=2 -kerning first=232 second=229 amount=2 -kerning first=275 second=293 amount=-1 -kerning first=193 second=85 amount=-7 -kerning first=78 second=97 amount=2 -kerning first=98 second=254 amount=3 -kerning first=279 second=243 amount=1 -kerning first=240 second=99 amount=1 -kerning first=345 second=244 amount=-2 -kerning first=260 second=256 amount=-7 -kerning first=221 second=112 amount=-5 -kerning first=326 second=257 amount=2 -kerning first=264 second=206 amount=3 -kerning first=287 second=113 amount=5 -kerning first=84 second=357 amount=-3 -kerning first=222 second=282 amount=-9 -kerning first=350 second=334 amount=3 -kerning first=353 second=114 amount=1 -kerning first=373 second=271 amount=5 -kerning first=45 second=243 amount=4 -kerning first=331 second=347 amount=1 -kerning first=246 second=359 amount=-1 -kerning first=354 second=284 amount=-2 -kerning first=72 second=100 amount=2 -kerning first=207 second=245 amount=-2 -kerning first=358 second=234 amount=-7 -kerning first=319 second=90 amount=2 -kerning first=231 second=322 amount=-1 -kerning first=119 second=114 amount=2 -kerning first=254 second=259 amount=5 -kerning first=192 second=208 amount=-10 -kerning first=97 second=347 amount=1 -kerning first=258 second=209 amount=-15 -kerning first=281 second=116 amount=-1 -kerning first=193 second=348 amount=-8 -kerning first=301 second=273 amount=2 -kerning first=344 second=337 amount=-2 -kerning first=347 second=117 amount=1 -kerning first=259 second=349 amount=1 -kerning first=197 second=298 amount=-7 -kerning first=85 second=90 amount=4 -kerning first=371 second=224 amount=2 -kerning first=66 second=103 amount=3 -kerning first=201 second=248 amount=-2 -kerning first=86 second=260 amount=-3 -kerning first=221 second=375 amount=-5 -kerning first=244 second=312 amount=-2 -kerning first=44 second=336 amount=-3 -kerning first=333 second=250 amount=-2 -kerning first=8212 second=302 amount=-5 -kerning first=376 second=314 amount=-2 -kerning first=291 second=326 amount=2 -kerning first=71 second=223 amount=3 -kerning first=294 second=106 amount=-12 -kerning first=114 second=287 amount=-2 -kerning first=160 second=79 amount=-3 -kerning first=233 second=225 amount=2 -kerning first=338 second=340 amount=-7 -kerning first=118 second=237 amount=2 -kerning first=341 second=120 amount=-2 -kerning first=194 second=81 amount=-11 -kerning first=299 second=226 amount=2 -kerning first=260 second=82 amount=-17 -kerning first=365 second=227 amount=2 -kerning first=199 second=201 amount=-2 -kerning first=304 second=316 amount=-2 -kerning first=84 second=213 amount=-2 -kerning first=245 second=45 amount=3 -kerning first=45 second=69 amount=-7 -kerning first=373 second=97 amount=5 -kerning first=65 second=226 amount=-10 -kerning first=203 second=121 amount=-3 -kerning first=354 second=110 amount=-6 -kerning first=266 second=342 amount=-4 -kerning first=374 second=267 amount=-4 -kerning first=289 second=279 amount=2 -kerning first=227 second=228 amount=2 -kerning first=112 second=240 amount=5 -kerning first=70 second=316 amount=-2 -kerning first=359 second=230 amount=1 -kerning first=274 second=242 amount=-2 -kerning first=209 second=381 amount=4 -kerning first=232 second=318 amount=-1 -kerning first=235 second=98 amount=-1 -kerning first=160 second=342 amount=-9 -kerning first=193 second=204 amount=-7 -kerning first=301 second=99 amount=1 -kerning first=78 second=216 amount=3 -kerning first=344 second=193 amount=3 -kerning first=367 second=100 amount=2 -kerning first=194 second=344 amount=-17 -kerning first=302 second=269 amount=-2 -kerning first=345 second=333 amount=-2 -kerning first=260 second=345 amount=-12 -kerning first=368 second=270 amount=-6 -kerning first=86 second=86 amount=4 -kerning first=221 second=231 amount=-4 -kerning first=106 second=243 amount=1 -kerning first=349 second=283 amount=1 -kerning first=264 second=295 amount=2 -kerning first=287 second=232 amount=2 -kerning first=202 second=244 amount=-2 -kerning first=222 second=371 amount=2 -kerning first=353 second=233 amount=1 -kerning first=45 second=332 amount=5 -kerning first=311 second=309 amount=-12 -kerning first=114 second=113 amount=-2 -kerning first=354 second=373 amount=-5 -kerning first=272 second=195 amount=-8 -kerning first=230 second=271 amount=2 -kerning first=115 second=283 amount=1 -kerning first=358 second=323 amount=-1 -kerning first=361 second=103 amount=2 -kerning first=273 second=335 amount=1 -kerning first=73 second=359 amount=-2 -kerning first=342 second=116 amount=-2 -kerning first=119 second=233 amount=4 -kerning first=362 second=273 amount=2 -kerning first=277 second=285 amount=2 -kerning first=195 second=77 amount=-8 -kerning first=300 second=222 amount=-2 -kerning first=77 second=309 amount=-11 -kerning first=100 second=246 amount=1 -kerning first=346 second=66 amount=-3 -kerning first=258 second=298 amount=-7 -kerning first=366 second=223 amount=2 -kerning first=281 second=235 amount=1 -kerning first=327 second=79 amount=3 -kerning first=347 second=236 amount=1 -kerning first=282 second=375 amount=-3 -kerning first=289 second=105 amount=3 -kerning first=66 second=222 amount=-1 -kerning first=201 second=337 amount=-2 -kerning first=204 second=117 amount=-2 -kerning first=86 second=349 amount=3 -kerning first=355 second=106 amount=-12 -kerning first=8211 second=251 amount=2 -kerning first=375 second=263 amount=3 -kerning first=208 second=67 amount=4 -kerning first=228 second=224 amount=2 -kerning first=356 second=276 amount=-8 -kerning first=274 second=68 amount=-5 -kerning first=294 second=225 amount=2 -kerning first=71 second=312 amount=2 -kerning first=360 second=226 amount=2 -kerning first=75 second=262 amount=-8 -kerning first=233 second=314 amount=-1 -kerning first=118 second=326 amount=2 -kerning first=194 second=200 amount=-10 -kerning first=102 second=119 amount=-7 -kerning first=260 second=201 amount=-10 -kerning first=365 second=316 amount=-1 -kerning first=280 second=328 amount=-2 -kerning first=283 second=108 amount=-1 -kerning first=195 second=340 amount=-17 -kerning first=198 second=120 amount=-5 -kerning first=303 second=265 amount=1 -kerning first=103 second=289 amount=5 -kerning first=346 second=329 amount=-5 -kerning first=349 second=109 amount=1 -kerning first=284 second=278 amount=-2 -kerning first=202 second=70 amount=-6 -kerning first=84 second=302 amount=-2 -kerning first=87 second=82 amount=-2 -kerning first=327 second=342 amount=-2 -kerning first=330 second=122 amount=3 -kerning first=265 second=291 amount=1 -kerning first=65 second=315 amount=-7 -kerning first=354 second=229 amount=-10 -kerning first=230 second=97 amount=2 -kerning first=115 second=109 amount=1 -kerning first=296 second=98 amount=-2 -kerning first=274 second=331 amount=-2 -kerning first=277 second=111 amount=1 -kerning first=120 second=229 amount=2 -kerning first=193 second=293 amount=-12 -kerning first=196 second=73 amount=-7 -kerning first=101 second=242 amount=1 -kerning first=121 second=369 amount=3 -kerning first=197 second=243 amount=-12 -kerning first=302 second=358 amount=-2 -kerning first=263 second=244 amount=-1 -kerning first=86 second=205 amount=5 -kerning first=221 second=320 amount=-2 -kerning first=224 second=100 amount=2 -kerning first=8211 second=77 amount=4 -kerning first=372 second=309 amount=-12 -kerning first=202 second=333 amount=-2 -kerning first=222 second=8211 amount=3 -kerning first=353 second=322 amount=1 -kerning first=356 second=102 amount=-3 -kerning first=271 second=114 amount=-9 -kerning first=376 second=259 amount=-3 -kerning first=291 second=271 amount=5 -kerning first=68 second=358 amount=-6 -kerning first=206 second=283 amount=-2 -kerning first=114 second=232 amount=-2 -kerning first=272 second=284 amount=4 -kerning first=256 second=77 amount=-8 -kerning first=296 second=361 amount=-2 -kerning first=119 second=322 amount=2 -kerning first=122 second=102 amount=2 -kerning first=195 second=196 amount=-7 -kerning first=300 second=311 amount=-2 -kerning first=80 second=208 amount=-9 -kerning first=218 second=103 amount=2 -kerning first=100 second=335 amount=1 -kerning first=103 second=115 amount=2 -kerning first=284 second=104 amount=2 -kerning first=196 second=336 amount=-11 -kerning first=199 second=116 amount=2 -kerning first=219 second=273 amount=2 -kerning first=104 second=285 amount=2 -kerning first=370 second=262 amount=2 -kerning first=203 second=66 amount=-5 -kerning first=108 second=235 amount=1 -kerning first=351 second=275 amount=1 -kerning first=374 second=212 amount=-1 -kerning first=289 second=224 amount=5 -kerning first=204 second=236 amount=-2 -kerning first=355 second=225 amount=2 -kerning first=8211 second=340 amount=-6 -kerning first=356 second=365 amount=-6 -kerning first=54 second=54 amount=2 -kerning first=232 second=263 amount=1 -kerning first=193 second=119 amount=-13 -kerning first=75 second=351 amount=-8 -kerning first=344 second=108 amount=-2 -kerning first=121 second=225 amount=7 -kerning first=256 second=340 amount=-17 -kerning first=259 second=120 amount=-1 -kerning first=279 second=277 amount=1 -kerning first=194 second=289 amount=-10 -kerning first=197 second=69 amount=-10 -kerning first=217 second=226 amount=2 -kerning first=102 second=238 amount=-7 -kerning first=237 second=353 amount=1 -kerning first=348 second=58 amount=-4 -kerning first=260 second=290 amount=-11 -kerning first=283 second=227 amount=2 -kerning first=198 second=239 amount=-7 -kerning first=326 second=291 amount=2 -kerning first=349 second=228 amount=3 -kerning first=369 second=355 amount=-1 -kerning first=87 second=201 amount=-6 -kerning first=110 second=108 amount=-1 -kerning first=245 second=253 amount=-2 -kerning first=8212 second=73 amount=-5 -kerning first=45 second=277 amount=4 -kerning first=48 second=57 amount=2 -kerning first=291 second=97 amount=5 -kerning first=68 second=214 amount=4 -kerning first=206 second=109 amount=-2 -kerning first=373 second=305 amount=2 -kerning first=88 second=341 amount=-2 -kerning first=114 second=58 amount=-7 -kerning first=354 second=318 amount=-3 -kerning first=69 second=354 amount=-5 -kerning first=207 second=279 amount=-2 -kerning first=210 second=59 amount=-5 -kerning first=335 second=331 amount=-2 -kerning first=115 second=228 amount=3 -kerning first=358 second=268 amount=-2 -kerning first=339 second=281 amount=1 -kerning first=254 second=293 amount=3 -kerning first=192 second=242 amount=-12 -kerning first=343 second=231 amount=-2 -kerning first=120 second=318 amount=-1 -kerning first=258 second=243 amount=-12 -kerning first=196 second=192 amount=-7 -kerning first=81 second=204 amount=3 -kerning first=370 second=88 amount=3 -kerning first=285 second=100 amount=5 -kerning first=197 second=332 amount=-11 -kerning first=305 second=257 amount=2 -kerning first=82 second=344 amount=-8 -kerning first=105 second=281 amount=1 -kerning first=351 second=101 amount=1 -kerning first=263 second=333 amount=-1 -kerning first=286 second=270 amount=-2 -kerning first=201 second=282 amount=-5 -kerning first=8211 second=196 amount=-13 -kerning first=205 second=232 amount=-2 -kerning first=225 second=359 amount=-1 -kerning first=8212 second=336 amount=5 -kerning first=271 second=233 amount=-9 -kerning first=376 second=348 amount=-4 -kerning first=71 second=257 amount=5 -kerning first=229 second=309 amount=-10 -kerning first=357 second=361 amount=-9 -kerning first=55 second=50 amount=-6 -kerning first=98 second=114 amount=2 -kerning first=233 second=259 amount=2 -kerning first=118 second=271 amount=5 -kerning first=256 second=196 amount=-7 -kerning first=361 second=311 amount=-1 -kerning first=279 second=103 amount=2 -kerning first=194 second=115 amount=-11 -kerning first=345 second=104 amount=-1 -kerning first=260 second=116 amount=-12 -kerning first=195 second=285 amount=-10 -kerning first=198 second=65 amount=-6 -kerning first=80 second=297 amount=1 -kerning first=218 second=222 amount=-2 -kerning first=103 second=234 amount=2 -kerning first=238 second=349 amount=1 -kerning first=346 second=274 amount=-3 -kerning first=264 second=66 amount=-2 -kerning first=284 second=223 amount=3 -kerning first=327 second=287 amount=2 -kerning first=330 second=67 amount=3 -kerning first=242 second=299 amount=-2 -kerning first=45 second=103 amount=4 -kerning first=285 second=363 amount=2 -kerning first=65 second=260 amount=-7 -kerning first=200 second=375 amount=-3 -kerning first=88 second=197 amount=-5 -kerning first=111 second=104 amount=-1 -kerning first=246 second=249 amount=-2 -kerning first=49 second=53 amount=-2 -kerning first=207 second=105 amount=-2 -kerning first=89 second=337 amount=-4 -kerning first=355 second=314 amount=-1 -kerning first=273 second=106 amount=-12 -kerning first=116 second=224 amount=2 -kerning first=254 second=119 amount=2 -kerning first=339 second=107 amount=-1 -kerning first=274 second=276 amount=-5 -kerning first=192 second=68 amount=-10 -kerning first=77 second=80 amount=-4 -kerning first=320 second=120 amount=-3 -kerning first=258 second=69 amount=-10 -kerning first=298 second=353 amount=-2 -kerning first=121 second=314 amount=3 -kerning first=364 second=354 amount=-6 -kerning first=302 second=303 amount=-2 -kerning first=325 second=240 amount=2 -kerning first=260 second=379 amount=-7 -kerning first=283 second=316 amount=-1 -kerning first=198 second=328 amount=-6 -kerning first=83 second=340 amount=-3 -kerning first=221 second=265 amount=-4 -kerning first=106 second=277 amount=1 -kerning first=202 second=278 amount=-5 -kerning first=87 second=290 amount=2 -kerning first=90 second=70 amount=2 -kerning first=333 second=110 amount=-2 -kerning first=110 second=227 amount=2 -kerning first=353 second=267 amount=1 -kerning first=45 second=366 amount=5 -kerning first=8212 second=192 amount=-13 -kerning first=226 second=355 amount=-1 -kerning first=111 second=367 amount=-2 -kerning first=272 second=229 amount=2 -kerning first=292 second=356 amount=-6 -kerning first=118 second=97 amount=5 -kerning first=358 second=357 amount=-3 -kerning first=119 second=267 amount=4 -kerning first=192 second=331 amount=-13 -kerning first=195 second=111 amount=-12 -kerning first=343 second=320 amount=-1 -kerning first=258 second=332 amount=-11 -kerning first=366 second=257 amount=2 -kerning first=281 second=269 amount=1 -kerning first=58 second=356 amount=-10 -kerning first=196 second=281 amount=-12 -kerning first=84 second=73 amount=-2 -kerning first=327 second=113 amount=2 -kerning first=104 second=230 amount=1 -kerning first=262 second=282 amount=-2 -kerning first=65 second=86 amount=-7 -kerning first=220 second=358 amount=-6 -kerning first=243 second=295 amount=-1 -kerning first=371 second=347 amount=1 -kerning first=286 second=359 amount=2 -kerning first=66 second=256 amount=-5 -kerning first=201 second=371 amount=-2 -kerning first=89 second=193 amount=-3 -kerning first=109 second=320 amount=-1 -kerning first=112 second=100 amount=5 -kerning first=8211 second=285 amount=4 -kerning first=50 second=49 amount=-4 -kerning first=375 second=297 amount=3 -kerning first=333 second=373 amount=-2 -kerning first=294 second=259 amount=2 -kerning first=209 second=271 amount=2 -kerning first=98 second=233 amount=2 -kerning first=341 second=273 amount=-2 -kerning first=256 second=285 amount=-10 -kerning first=364 second=210 amount=2 -kerning first=194 second=234 amount=-12 -kerning first=299 second=349 amount=1 -kerning first=325 second=66 amount=2 -kerning first=99 second=373 amount=-1 -kerning first=260 second=235 amount=-12 -kerning first=83 second=196 amount=-9 -kerning first=106 second=103 amount=2 -kerning first=372 second=80 amount=-2 -kerning first=284 second=312 amount=2 -kerning first=84 second=336 amount=-2 -kerning first=107 second=273 amount=2 -kerning first=373 second=250 amount=2 -kerning first=45 second=222 amount=-8 -kerning first=65 second=349 amount=-11 -kerning first=203 second=274 amount=-5 -kerning first=88 second=286 amount=-4 -kerning first=111 second=223 amount=2 -kerning first=354 second=263 amount=-7 -kerning first=312 second=339 amount=1 -kerning first=227 second=351 amount=1 -kerning first=112 second=363 amount=2 -kerning first=358 second=213 amount=-2 -kerning first=273 second=225 amount=2 -kerning first=73 second=249 amount=-2 -kerning first=316 second=289 amount=2 -kerning first=339 second=226 amount=2 -kerning first=254 second=238 amount=2 -kerning first=359 second=353 amount=1 -kerning first=274 second=365 amount=-2 -kerning first=300 second=82 amount=-2 -kerning first=77 second=199 amount=3 -kerning first=100 second=106 amount=-12 -kerning first=58 second=212 amount=-3 -kerning first=193 second=327 amount=-15 -kerning first=196 second=107 amount=-12 -kerning first=344 second=316 amount=-2 -kerning first=262 second=108 amount=2 -kerning first=285 second=45 amount=4 -kerning first=197 second=277 amount=-12 -kerning first=85 second=69 amount=-6 -kerning first=105 second=226 amount=2 -kerning first=243 second=121 amount=-2 -kerning first=348 second=266 amount=3 -kerning first=66 second=82 amount=-1 -kerning first=86 second=239 amount=3 -kerning first=332 second=59 amount=-5 -kerning first=352 second=216 amount=3 -kerning first=267 second=228 amount=1 -kerning first=8211 second=111 amount=4 -kerning first=287 second=355 amount=2 -kerning first=202 second=367 amount=-2 -kerning first=87 second=379 amount=4 -kerning first=110 second=316 amount=-1 -kerning first=248 second=241 amount=-2 -kerning first=8212 second=281 amount=4 -kerning first=376 second=293 amount=-2 -kerning first=291 second=305 amount=3 -kerning first=71 second=202 amount=-2 -kerning first=209 second=97 amount=2 -kerning first=229 second=254 amount=-1 -kerning first=360 second=86 amount=2 -kerning first=275 second=98 amount=-1 -kerning first=72 second=342 amount=-2 -kerning first=75 second=122 amount=-4 -kerning first=341 second=99 amount=-2 -kerning first=256 second=111 amount=-12 -kerning first=99 second=229 amount=1 -kerning first=195 second=230 amount=-10 -kerning first=323 second=282 amount=-6 -kerning first=304 second=295 amount=-2 -kerning first=84 second=192 amount=-13 -kerning first=107 second=99 amount=1 -kerning first=347 second=359 amount=1 -kerning first=65 second=205 amount=-7 -kerning first=85 second=332 amount=2 -kerning first=88 second=112 amount=-3 -kerning first=223 second=257 amount=2 -kerning first=108 second=269 amount=1 -kerning first=351 second=309 amount=-9 -kerning first=354 second=89 amount=-1 -kerning first=374 second=246 amount=-4 -kerning first=89 second=282 amount=-4 -kerning first=335 second=102 amount=-2 -kerning first=355 second=259 amount=2 -kerning first=8211 second=374 amount=3 -kerning first=270 second=271 amount=2 -kerning first=70 second=295 amount=-2 -kerning first=316 second=115 amount=1 -kerning first=228 second=347 amount=1 -kerning first=113 second=359 amount=-1 -kerning first=74 second=245 amount=-5 -kerning first=340 second=222 amount=-8 -kerning first=117 second=309 amount=-10 -kerning first=98 second=322 amount=3 -kerning first=121 second=259 amount=7 -kerning first=279 second=311 amount=-1 -kerning first=59 second=208 amount=-3 -kerning first=194 second=323 amount=-15 -kerning first=197 second=103 amount=-10 -kerning first=302 second=248 amount=-2 -kerning first=260 second=324 amount=-13 -kerning first=263 second=104 amount=-1 -kerning first=198 second=273 amount=-3 -kerning first=86 second=65 amount=-3 -kerning first=221 second=210 amount=-1 -kerning first=244 second=117 amount=-2 -kerning first=264 second=274 amount=-2 -kerning first=67 second=78 amount=4 -kerning first=202 second=223 amount=3 -kerning first=373 second=339 amount=4 -kerning first=376 second=119 amount=-4 -kerning first=203 second=363 amount=-2 -kerning first=111 second=312 amount=-2 -kerning first=354 second=352 amount=-6 -kerning first=335 second=365 amount=-2 -kerning first=358 second=302 amount=-2 -kerning first=273 second=314 amount=-1 -kerning first=296 second=251 amount=-2 -kerning first=257 second=107 amount=-1 -kerning first=192 second=276 amount=-10 -kerning first=77 second=288 amount=3 -kerning first=80 second=68 amount=-9 -kerning first=100 second=225 amount=2 -kerning first=343 second=265 amount=-2 -kerning first=346 second=45 amount=4 -kerning first=258 second=277 amount=-12 -kerning first=366 second=202 amount=-6 -kerning first=196 second=226 amount=-10 -kerning first=304 second=121 amount=-2 -kerning first=282 second=354 amount=-5 -kerning first=305 second=291 amount=2 -kerning first=328 second=228 amount=2 -kerning first=286 second=304 amount=3 -kerning first=66 second=201 amount=-4 -kerning first=86 second=328 amount=2 -kerning first=89 second=108 amount=-2 -kerning first=112 second=45 amount=4 -kerning first=270 second=97 amount=2 -kerning first=375 second=242 amount=3 -kerning first=290 second=254 amount=2 -kerning first=70 second=121 amount=-3 -kerning first=208 second=46 amount=-3 -kerning first=333 second=318 amount=-1 -kerning first=8212 second=370 amount=5 -kerning first=271 second=267 amount=-9 -kerning first=71 second=291 amount=5 -kerning first=209 second=216 amount=3 -kerning first=114 second=355 amount=-1 -kerning first=318 second=281 amount=-9 -kerning first=233 second=293 amount=-1 -kerning first=118 second=305 amount=2 -kerning first=256 second=230 amount=-10 -kerning first=302 second=74 amount=-2 -kerning first=76 second=381 amount=2 -kerning first=99 second=318 amount=-1 -kerning first=237 second=243 amount=1 -kerning first=342 second=358 amount=-8 -kerning first=365 second=295 amount=-1 -kerning first=195 second=319 amount=-7 -kerning first=198 second=99 amount=-5 -kerning first=80 second=331 amount=1 -kerning first=303 second=244 amount=1 -kerning first=261 second=320 amount=-1 -kerning first=84 second=281 amount=-7 -kerning first=350 second=258 amount=-9 -kerning first=288 second=207 amount=3 -kerning first=88 second=231 amount=-2 -kerning first=331 second=271 amount=2 -kerning first=354 second=208 amount=-8 -kerning first=374 second=335 amount=-4 -kerning first=289 second=347 amount=2 -kerning first=69 second=244 amount=-2 -kerning first=204 second=359 amount=-2 -kerning first=89 second=371 amount=-5 -kerning first=208 second=309 amount=-12 -kerning first=316 second=234 amount=1 -kerning first=231 second=246 amount=-1 -kerning first=192 second=102 amount=-12 -kerning first=97 second=271 amount=2 -kerning first=340 second=311 amount=-2 -kerning first=258 second=103 amount=-10 -kerning first=193 second=272 amount=-10 -kerning first=78 second=284 amount=3 -kerning first=324 second=104 amount=-1 -kerning first=259 second=273 amount=2 -kerning first=197 second=222 amount=-17 -kerning first=302 second=337 amount=-2 -kerning first=325 second=274 amount=-6 -kerning first=102 second=361 amount=-7 -kerning first=348 second=211 amount=3 -kerning first=263 second=223 amount=2 -kerning first=368 second=338 amount=2 -kerning first=329 second=224 amount=2 -kerning first=290 second=80 amount=-2 -kerning first=353 second=301 amount=1 -kerning first=356 second=81 amount=-2 -kerning first=8212 second=226 amount=4 -kerning first=376 second=238 amount=-3 -kerning first=291 second=250 amount=2 -kerning first=71 second=117 amount=2 -kerning first=72 second=287 amount=2 -kerning first=75 second=67 amount=-8 -kerning first=230 second=339 amount=1 -kerning first=341 second=44 amount=-7 -kerning first=296 second=340 amount=-2 -kerning first=234 second=289 amount=2 -kerning first=119 second=301 amount=2 -kerning first=257 second=226 amount=2 -kerning first=277 second=353 amount=1 -kerning first=192 second=365 amount=-13 -kerning first=218 second=82 amount=-2 -kerning first=323 second=227 amount=2 -kerning first=100 second=314 amount=-1 -kerning first=366 second=291 amount=2 -kerning first=196 second=315 amount=-7 -kerning first=84 second=107 amount=-3 -kerning first=350 second=84 amount=-3 -kerning first=262 second=316 amount=2 -kerning first=285 second=253 amount=2 -kerning first=65 second=120 amount=-14 -kerning first=331 second=97 amount=2 -kerning first=243 second=329 amount=-3 -kerning first=246 second=109 amount=-2 -kerning first=66 second=290 amount=3 -kerning first=69 second=70 amount=-6 -kerning first=89 second=227 amount=-3 -kerning first=8211 second=319 amount=3 -kerning first=270 second=216 amount=4 -kerning first=375 second=331 amount=3 -kerning first=70 second=240 amount=-3 -kerning first=205 second=355 amount=-2 -kerning first=356 second=344 amount=-5 -kerning first=97 second=97 amount=2 -kerning first=232 second=242 amount=1 -kerning first=337 second=357 amount=-1 -kerning first=117 second=254 amount=-1 -kerning first=160 second=266 amount=-3 -kerning first=193 second=98 amount=-12 -kerning first=298 second=243 amount=-2 -kerning first=98 second=267 amount=2 -kerning first=256 second=319 amount=-7 -kerning first=194 second=268 amount=-11 -kerning first=325 second=100 amount=2 -kerning first=345 second=257 amount=-2 -kerning first=303 second=333 amount=1 -kerning first=103 second=357 amount=2 -kerning first=199 second=358 amount=-2 -kerning first=307 second=283 amount=1 -kerning first=265 second=359 amount=-1 -kerning first=45 second=256 amount=-13 -kerning first=288 second=296 amount=3 -kerning first=68 second=193 amount=-8 -kerning first=206 second=88 amount=2 -kerning first=311 second=233 amount=1 -kerning first=354 second=297 amount=-2 -kerning first=269 second=309 amount=-11 -kerning first=272 second=89 amount=2 -kerning first=69 second=333 amount=-2 -kerning first=72 second=113 amount=2 -kerning first=273 second=259 amount=2 -kerning first=73 second=283 amount=-2 -kerning first=231 second=335 amount=-1 -kerning first=234 second=115 amount=1 -kerning first=116 second=347 amount=1 -kerning first=300 second=116 amount=-2 -kerning first=235 second=285 amount=2 -kerning first=258 second=222 amount=-17 -kerning first=193 second=361 amount=-13 -kerning first=216 second=298 amount=3 -kerning first=324 second=223 amount=4 -kerning first=239 second=235 amount=1 -kerning first=367 second=287 amount=2 -kerning first=370 second=67 amount=2 -kerning first=197 second=311 amount=-12 -kerning first=85 second=103 amount=2 -kerning first=86 second=273 amount=6 -kerning first=372 second=377 amount=4 -kerning first=70 second=66 amount=-9 -kerning first=313 second=106 amount=-6 -kerning first=90 second=223 amount=2 -kerning first=356 second=200 amount=-8 -kerning first=8212 second=315 amount=3 -kerning first=291 second=339 amount=2 -kerning first=71 second=236 amount=1 -kerning first=206 second=351 amount=-2 -kerning first=360 second=120 amount=-2 -kerning first=380 second=277 amount=1 -kerning first=295 second=289 amount=2 -kerning first=318 second=226 amount=-8 -kerning first=118 second=250 amount=2 -kerning first=364 second=70 amount=-2 -kerning first=365 second=240 amount=2 -kerning first=195 second=264 amount=-11 -kerning first=80 second=276 amount=-9 -kerning first=218 second=201 amount=-6 -kerning first=241 second=108 amount=-1 -kerning first=284 second=202 amount=-2 -kerning first=304 second=329 amount=-4 -kerning first=84 second=226 amount=-10 -kerning first=222 second=121 amount=1 -kerning first=327 second=266 amount=3 -kerning first=104 second=353 amount=1 -kerning first=350 second=203 amount=-3 -kerning first=373 second=110 amount=2 -kerning first=45 second=82 amount=-6 -kerning first=200 second=354 amount=-5 -kerning first=223 second=291 amount=2 -kerning first=266 second=355 amount=2 -kerning first=374 second=280 amount=-4 -kerning first=207 second=84 amount=-2 -kerning first=312 second=229 amount=2 -kerning first=89 second=316 amount=-2 -kerning first=112 second=253 amount=2 -kerning first=355 second=293 amount=-1 -kerning first=358 second=73 amount=-2 -kerning first=73 second=109 amount=-2 -kerning first=254 second=98 amount=3 -kerning first=359 second=243 amount=1 -kerning first=74 second=279 amount=-5 -kerning first=212 second=204 amount=3 -kerning first=320 second=99 amount=-1 -kerning first=235 second=111 amount=1 -kerning first=340 second=256 amount=3 -kerning first=78 second=229 amount=2 -kerning first=236 second=281 amount=1 -kerning first=121 second=293 amount=3 -kerning first=367 second=113 amount=2 -kerning first=194 second=357 amount=-12 -kerning first=240 second=231 amount=1 -kerning first=260 second=358 amount=-20 -kerning first=283 second=295 amount=-1 -kerning first=198 second=307 amount=-7 -kerning first=86 second=99 amount=3 -kerning first=326 second=359 amount=-1 -kerning first=287 second=245 amount=2 -kerning first=330 second=309 amount=-12 -kerning first=353 second=246 amount=1 -kerning first=373 second=373 amount=3 -kerning first=68 second=282 amount=-6 -kerning first=246 second=8212 amount=3 -kerning first=272 second=208 amount=-6 -kerning first=295 second=115 amount=1 -kerning first=207 second=347 amount=-2 -kerning first=358 second=336 amount=-2 -kerning first=361 second=116 amount=-1 -kerning first=319 second=222 amount=-4 -kerning first=234 second=234 amount=1 -kerning first=339 second=349 amount=1 -kerning first=119 second=246 amount=4 -kerning first=254 second=361 amount=2 -kerning first=362 second=286 amount=2 -kerning first=195 second=90 amount=-7 -kerning first=300 second=235 amount=-2 -kerning first=100 second=259 amount=2 -kerning first=346 second=79 amount=3 -kerning first=258 second=311 amount=-12 -kerning first=281 second=248 amount=1 -kerning first=196 second=260 amount=-7 -kerning first=242 second=104 amount=-1 -kerning first=347 second=249 amount=1 -kerning first=65 second=65 amount=-7 -kerning first=85 second=222 amount=-2 -kerning first=105 second=349 amount=1 -kerning first=46 second=78 amount=-5 -kerning first=374 second=106 amount=-7 -kerning first=289 second=118 amount=2 -kerning first=66 second=235 amount=2 -kerning first=309 second=275 amount=1 -kerning first=224 second=287 amount=2 -kerning first=8211 second=264 amount=5 -kerning first=267 second=351 amount=1 -kerning first=208 second=80 amount=-5 -kerning first=356 second=289 amount=-10 -kerning first=271 second=301 amount=-3 -kerning first=74 second=105 amount=-1 -kerning first=340 second=82 amount=-8 -kerning first=160 second=211 amount=-3 -kerning first=75 second=275 amount=-10 -kerning first=118 second=339 amount=4 -kerning first=121 second=119 amount=3 -kerning first=256 second=264 amount=-11 -kerning first=59 second=68 amount=-3 -kerning first=194 second=213 amount=-11 -kerning first=302 second=108 amount=-2 -kerning first=237 second=277 amount=1 -kerning first=260 second=214 amount=-11 -kerning first=365 second=329 amount=-3 -kerning first=195 second=353 amount=-11 -kerning first=80 second=365 amount=1 -kerning first=221 second=70 amount=-1 -kerning first=241 second=227 amount=2 -kerning first=346 second=342 amount=-3 -kerning first=307 second=228 amount=2 -kerning first=84 second=315 amount=-1 -kerning first=242 second=367 amount=-2 -kerning first=268 second=84 amount=-2 -kerning first=45 second=201 amount=-7 -kerning first=373 second=229 amount=5 -kerning first=65 second=328 amount=-13 -kerning first=88 second=265 amount=-2 -kerning first=354 second=242 amount=-7 -kerning first=269 second=254 amount=-1 -kerning first=374 second=369 amount=-5 -kerning first=69 second=278 amount=-5 -kerning first=358 second=192 amount=-13 -kerning first=296 second=111 amount=-2 -kerning first=274 second=344 amount=-6 -kerning first=196 second=86 amount=-7 -kerning first=301 second=231 amount=1 -kerning first=262 second=87 amount=4 -kerning first=282 second=244 amount=-2 -kerning first=197 second=256 amount=-7 -kerning first=302 second=371 amount=-2 -kerning first=240 second=320 amount=-1 -kerning first=263 second=257 amount=1 -kerning first=309 second=101 amount=1 -kerning first=221 second=333 amount=-4 -kerning first=224 second=113 amount=2 -kerning first=352 second=195 amount=-9 -kerning first=8211 second=90 amount=-4 -kerning first=375 second=102 amount=4 -kerning first=47 second=74 amount=-2 -kerning first=87 second=358 amount=-6 -kerning first=110 second=295 amount=-1 -kerning first=353 second=335 amount=1 -kerning first=356 second=115 amount=-10 -kerning first=8212 second=260 amount=-13 -kerning first=376 second=272 amount=-4 -kerning first=114 second=245 amount=-2 -kerning first=357 second=285 amount=-8 -kerning first=75 second=101 amount=-10 -kerning first=338 second=298 amount=-1 -kerning first=256 second=90 amount=-7 -kerning first=237 second=103 amount=2 -kerning first=119 second=335 amount=4 -kerning first=122 second=115 amount=1 -kerning first=195 second=209 amount=-15 -kerning first=300 second=324 amount=-2 -kerning first=238 second=273 amount=2 -kerning first=346 second=198 amount=-11 -kerning first=281 second=337 amount=1 -kerning first=196 second=349 amount=-11 -kerning first=222 second=66 amount=-9 -kerning first=327 second=211 amount=3 -kerning first=242 second=223 amount=2 -kerning first=285 second=287 amount=5 -kerning first=328 second=351 amount=1 -kerning first=108 second=248 amount=1 -kerning first=243 second=363 amount=-2 -kerning first=354 second=68 amount=-8 -kerning first=266 second=300 amount=3 -kerning first=374 second=225 amount=-3 -kerning first=289 second=237 amount=3 -kerning first=204 second=249 amount=-2 -kerning first=8211 second=353 amount=4 -kerning first=375 second=365 amount=3 -kerning first=70 second=274 amount=-9 -kerning first=208 second=199 amount=4 -kerning first=231 second=106 amount=-11 -kerning first=274 second=200 amount=-5 -kerning first=74 second=224 amount=-5 -kerning first=363 second=108 amount=-1 -kerning first=160 second=300 amount=-4 -kerning first=298 second=277 amount=-2 -kerning first=98 second=301 amount=2 -kerning first=236 second=226 amount=2 -kerning first=121 second=238 amount=3 -kerning first=256 second=353 amount=-11 -kerning first=364 second=278 amount=-6 -kerning first=282 second=70 amount=-6 -kerning first=194 second=302 amount=-7 -kerning first=197 second=82 amount=-17 -kerning first=102 second=251 amount=-7 -kerning first=345 second=291 amount=-2 -kerning first=348 second=71 amount=3 -kerning first=368 second=228 amount=2 -kerning first=283 second=240 amount=2 -kerning first=198 second=252 amount=-7 -kerning first=83 second=264 amount=3 -kerning first=218 second=379 amount=4 -kerning first=241 second=316 amount=-1 -kerning first=349 second=241 amount=1 -kerning first=202 second=202 amount=-5 -kerning first=87 second=214 amount=2 -kerning first=8212 second=86 amount=3 -kerning first=268 second=203 amount=-2 -kerning first=45 second=290 amount=5 -kerning first=373 second=318 amount=5 -kerning first=291 second=110 amount=2 -kerning first=376 second=98 amount=-2 -kerning first=68 second=227 amount=2 -kerning first=203 second=342 amount=-6 -kerning first=88 second=354 amount=-2 -kerning first=311 second=267 amount=1 -kerning first=334 second=204 amount=3 -kerning first=354 second=331 amount=-6 -kerning first=357 second=111 amount=-9 -kerning first=292 second=280 amount=-6 -kerning first=69 second=367 amount=-2 -kerning first=230 second=229 amount=2 -kerning first=115 second=241 amount=1 -kerning first=358 second=281 amount=-7 -kerning first=273 second=293 amount=-1 -kerning first=277 second=243 amount=1 -kerning first=343 second=244 amount=-2 -kerning first=258 second=256 amount=-7 -kerning first=58 second=280 amount=-4 -kerning first=196 second=205 amount=-7 -kerning first=324 second=257 amount=2 -kerning first=262 second=206 amount=3 -kerning first=282 second=333 amount=-2 -kerning first=285 second=113 amount=5 -kerning first=197 second=345 amount=-12 -kerning first=82 second=357 amount=-2 -kerning first=220 second=282 amount=-6 -kerning first=348 second=334 amount=3 -kerning first=351 second=114 amount=1 -kerning first=371 second=271 amount=2 -kerning first=86 second=307 amount=3 -kerning first=329 second=347 amount=1 -kerning first=244 second=359 amount=-1 -kerning first=352 second=284 amount=3 -kerning first=8211 second=209 amount=-2 -kerning first=67 second=320 amount=2 -kerning first=70 second=100 amount=-3 -kerning first=205 second=245 amount=-2 -kerning first=248 second=309 amount=-13 -kerning first=356 second=234 amount=-7 -kerning first=271 second=246 amount=-9 -kerning first=376 second=361 amount=-5 -kerning first=8212 second=349 amount=4 -kerning first=291 second=373 amount=2 -kerning first=68 second=8211 amount=4 -kerning first=71 second=270 amount=-2 -kerning first=229 second=322 amount=-1 -kerning first=256 second=209 amount=-15 -kerning first=279 second=116 amount=-1 -kerning first=299 second=273 amount=2 -kerning first=342 second=337 amount=-2 -kerning first=257 second=349 amount=1 -kerning first=195 second=298 amount=-7 -kerning first=303 second=223 amount=3 -kerning first=369 second=224 amount=2 -kerning first=304 second=363 amount=-2 -kerning first=84 second=260 amount=-13 -kerning first=330 second=80 amount=-2 -kerning first=242 second=312 amount=-2 -kerning first=65 second=273 amount=-10 -kerning first=88 second=210 amount=-4 -kerning first=108 second=337 amount=1 -kerning first=111 second=117 amount=-2 -kerning first=374 second=314 amount=-2 -kerning first=46 second=286 amount=-3 -kerning first=289 second=326 amount=2 -kerning first=69 second=223 amount=3 -kerning first=207 second=118 amount=-2 -kerning first=292 second=106 amount=-12 -kerning first=89 second=350 amount=-4 -kerning first=312 second=263 amount=1 -kerning first=112 second=287 amount=5 -kerning first=358 second=107 amount=-3 -kerning first=70 second=363 amount=-3 -kerning first=208 second=288 amount=4 -kerning first=231 second=225 amount=1 -kerning first=339 second=120 amount=-2 -kerning first=359 second=277 amount=1 -kerning first=192 second=81 amount=-11 -kerning first=297 second=226 amount=2 -kerning first=258 second=82 amount=-17 -kerning first=363 second=227 amount=2 -kerning first=58 second=106 amount=-11 -kerning first=59 second=276 amount=-4 -kerning first=197 second=201 amount=-10 -kerning first=302 second=316 amount=-2 -kerning first=240 second=265 amount=1 -kerning first=243 second=45 amount=3 -kerning first=371 second=97 amount=2 -kerning first=201 second=121 amount=-3 -kerning first=221 second=278 amount=-4 -kerning first=264 second=342 amount=-4 -kerning first=287 second=279 amount=2 -kerning first=90 second=83 amount=2 -kerning first=225 second=228 amount=2 -kerning first=110 second=240 amount=2 -kerning first=245 second=355 amount=-1 -kerning first=8212 second=205 amount=-5 -kerning first=45 second=379 amount=-4 -kerning first=291 second=229 amount=5 -kerning first=206 second=241 amount=-2 -kerning first=75 second=46 amount=-5 -kerning first=230 second=318 amount=-1 -kerning first=233 second=98 amount=-1 -kerning first=118 second=110 amount=2 -kerning first=342 second=193 amount=3 -kerning first=365 second=100 amount=2 -kerning first=192 second=344 amount=-17 -kerning first=300 second=269 amount=-2 -kerning first=77 second=356 amount=-7 -kerning first=100 second=293 amount=-1 -kerning first=343 second=333 amount=-2 -kerning first=258 second=345 amount=-12 -kerning first=366 second=270 amount=-6 -kerning first=84 second=86 amount=-1 -kerning first=347 second=283 amount=1 -kerning first=262 second=295 amount=2 -kerning first=285 second=232 amount=2 -kerning first=65 second=99 amount=-12 -kerning first=200 second=244 amount=-2 -kerning first=351 second=233 amount=1 -kerning first=66 second=269 amount=2 -kerning first=309 second=309 amount=-2 -kerning first=112 second=113 amount=5 -kerning first=8211 second=298 amount=-5 -kerning first=270 second=195 amount=-8 -kerning first=290 second=322 amount=2 -kerning first=90 second=346 amount=2 -kerning first=228 second=271 amount=2 -kerning first=113 second=283 amount=1 -kerning first=356 second=323 amount=-1 -kerning first=359 second=103 amount=2 -kerning first=271 second=335 amount=-9 -kerning first=294 second=272 amount=-6 -kerning first=71 second=359 amount=2 -kerning first=209 second=284 amount=3 -kerning first=340 second=116 amount=-2 -kerning first=360 second=273 amount=2 -kerning first=275 second=285 amount=2 -kerning first=193 second=77 amount=-8 -kerning first=298 second=222 amount=-2 -kerning first=318 second=349 amount=-8 -kerning first=98 second=246 amount=2 -kerning first=118 second=373 amount=3 -kerning first=256 second=298 amount=-7 -kerning first=364 second=223 amount=2 -kerning first=279 second=235 amount=1 -kerning first=325 second=79 amount=3 -kerning first=260 second=248 amount=-12 -kerning first=280 second=375 amount=-3 -kerning first=198 second=197 amount=-6 -kerning first=221 second=104 amount=-2 -kerning first=287 second=105 amount=3 -kerning first=202 second=117 amount=-2 -kerning first=84 second=349 amount=-10 -kerning first=222 second=274 amount=-9 -kerning first=330 second=199 amount=3 -kerning first=353 second=106 amount=-9 -kerning first=45 second=235 amount=4 -kerning first=373 second=263 amount=4 -kerning first=226 second=224 amount=2 -kerning first=354 second=276 amount=-8 -kerning first=272 second=68 amount=-6 -kerning first=292 second=225 amount=2 -kerning first=207 second=237 amount=-2 -kerning first=338 second=69 amount=-4 -kerning first=358 second=226 amount=-10 -kerning first=319 second=82 amount=-4 -kerning first=231 second=314 amount=-1 -kerning first=119 second=106 amount=-9 -kerning first=254 second=251 amount=2 -kerning first=192 second=200 amount=-10 -kerning first=77 second=212 amount=3 -kerning first=258 second=201 amount=-10 -kerning first=363 second=316 amount=-1 -kerning first=278 second=328 amount=-2 -kerning first=281 second=108 amount=-1 -kerning first=193 second=340 amount=-17 -kerning first=196 second=120 amount=-14 -kerning first=301 second=265 amount=1 -kerning first=101 second=289 amount=2 -kerning first=344 second=329 amount=-2 -kerning first=347 second=109 amount=1 -kerning first=282 second=278 amount=-5 -kerning first=197 second=290 amount=-11 -kerning first=200 second=70 amount=-6 -kerning first=85 second=82 amount=-2 -kerning first=220 second=227 amount=2 -kerning first=325 second=342 amount=-2 -kerning first=263 second=291 amount=1 -kerning first=221 second=367 amount=-5 -kerning first=372 second=356 amount=-6 -kerning first=228 second=97 amount=2 -kerning first=110 second=329 amount=-3 -kerning first=248 second=254 amount=-1 -kerning first=353 second=369 amount=1 -kerning first=291 second=318 amount=2 -kerning first=114 second=279 amount=-2 -kerning first=160 second=71 amount=-3 -kerning first=275 second=111 amount=1 -kerning first=118 second=229 amount=5 -kerning first=194 second=73 amount=-7 -kerning first=99 second=242 amount=-1 -kerning first=234 second=357 amount=-1 -kerning first=119 second=369 amount=2 -kerning first=260 second=74 amount=-9 -kerning first=195 second=243 amount=-12 -kerning first=300 second=358 amount=-2 -kerning first=84 second=205 amount=-2 -kerning first=200 second=333 amount=-2 -kerning first=351 second=322 amount=1 -kerning first=354 second=102 amount=-3 -kerning first=374 second=259 amount=-3 -kerning first=289 second=271 amount=5 -kerning first=66 second=358 amount=-4 -kerning first=204 second=283 amount=-2 -kerning first=112 second=232 amount=2 -kerning first=270 second=284 amount=4 -kerning first=73 second=88 amount=2 -kerning first=74 second=258 amount=-8 -kerning first=117 second=322 amount=-1 -kerning first=160 second=334 amount=-3 -kerning first=193 second=196 amount=-7 -kerning first=298 second=311 amount=-2 -kerning first=78 second=208 amount=-6 -kerning first=98 second=335 amount=2 -kerning first=101 second=115 amount=1 -kerning first=194 second=336 amount=-11 -kerning first=197 second=116 amount=-12 -kerning first=217 second=273 amount=2 -kerning first=102 second=285 amount=-6 -kerning first=260 second=337 amount=-12 -kerning first=368 second=262 amount=2 -kerning first=198 second=286 amount=-7 -kerning first=201 second=66 amount=-5 -kerning first=86 second=78 amount=2 -kerning first=106 second=235 amount=1 -kerning first=349 second=275 amount=1 -kerning first=287 second=224 amount=5 -kerning first=307 second=351 amount=1 -kerning first=222 second=363 amount=2 -kerning first=330 second=288 amount=3 -kerning first=353 second=225 amount=3 -kerning first=45 second=324 amount=2 -kerning first=354 second=365 amount=-6 -kerning first=207 second=326 amount=-2 -kerning first=230 second=263 amount=1 -kerning first=115 second=275 amount=1 -kerning first=358 second=315 amount=-1 -kerning first=73 second=351 amount=-2 -kerning first=342 second=108 amount=-2 -kerning first=119 second=225 amount=5 -kerning first=257 second=120 amount=-1 -kerning first=277 second=277 amount=1 -kerning first=192 second=289 amount=-10 -kerning first=195 second=69 amount=-10 -kerning first=77 second=301 amount=1 -kerning first=80 second=81 amount=3 -kerning first=235 second=353 amount=1 -kerning first=346 second=58 amount=-4 -kerning first=258 second=290 amount=-11 -kerning first=281 second=227 amount=2 -kerning first=324 second=291 amount=2 -kerning first=327 second=71 amount=3 -kerning first=347 second=228 amount=3 -kerning first=367 second=355 amount=-1 -kerning first=282 second=367 amount=-2 -kerning first=65 second=44 amount=-10 -kerning first=197 second=379 amount=-7 -kerning first=85 second=201 amount=-6 -kerning first=243 second=253 amount=-2 -kerning first=289 second=97 amount=5 -kerning first=204 second=109 amount=-2 -kerning first=86 second=341 amount=3 -kerning first=89 second=121 amount=-5 -kerning first=355 second=98 amount=-1 -kerning first=8211 second=243 amount=4 -kerning first=67 second=354 amount=-2 -kerning first=205 second=279 amount=-2 -kerning first=208 second=59 amount=-3 -kerning first=333 second=331 amount=-2 -kerning first=113 second=228 amount=2 -kerning first=356 second=268 amount=-2 -kerning first=71 second=304 amount=3 -kerning first=74 second=84 amount=-5 -kerning first=209 second=229 amount=2 -kerning first=295 second=357 amount=-1 -kerning first=75 second=254 amount=-7 -kerning first=341 second=231 amount=-2 -kerning first=118 second=318 amount=5 -kerning first=121 second=98 amount=3 -kerning first=256 second=243 amount=-12 -kerning first=194 second=192 amount=-7 -kerning first=79 second=204 amount=3 -kerning first=102 second=111 amount=-8 -kerning first=260 second=193 amount=-7 -kerning first=368 second=88 amount=3 -kerning first=283 second=100 amount=2 -kerning first=195 second=332 amount=-11 -kerning first=198 second=112 amount=-7 -kerning first=80 second=344 amount=-7 -kerning first=303 second=257 amount=2 -kerning first=103 second=281 amount=2 -kerning first=349 second=101 amount=1 -kerning first=284 second=270 amount=-2 -kerning first=199 second=282 amount=-2 -kerning first=327 second=334 amount=3 -kerning first=107 second=231 amount=1 -kerning first=68 second=87 amount=2 -kerning first=88 second=244 amount=-2 -kerning first=374 second=348 amount=-4 -kerning first=227 second=309 amount=-10 -kerning first=115 second=101 amount=1 -kerning first=231 second=259 amount=1 -kerning first=116 second=271 amount=2 -kerning first=359 second=311 amount=-1 -kerning first=277 second=103 amount=2 -kerning first=192 second=115 amount=-11 -kerning first=343 second=104 amount=-1 -kerning first=258 second=116 amount=-12 -kerning first=193 second=285 amount=-10 -kerning first=196 second=65 amount=-7 -kerning first=101 second=234 amount=1 -kerning first=236 second=349 amount=1 -kerning first=121 second=361 amount=3 -kerning first=262 second=66 amount=-2 -kerning first=282 second=223 amount=3 -kerning first=197 second=235 amount=-12 -kerning first=325 second=287 amount=2 -kerning first=198 second=375 amount=-7 -kerning first=86 second=197 amount=-3 -kerning first=221 second=312 amount=-2 -kerning first=109 second=104 amount=-1 -kerning first=244 second=249 amount=-2 -kerning first=8211 second=69 amount=-7 -kerning first=205 second=105 amount=-2 -kerning first=330 second=377 amount=4 -kerning first=353 second=314 amount=1 -kerning first=8212 second=239 amount=2 -kerning first=271 second=106 amount=-13 -kerning first=291 second=263 amount=2 -kerning first=206 second=275 amount=-2 -kerning first=114 second=224 amount=-2 -kerning first=337 second=107 amount=-1 -kerning first=272 second=276 amount=-6 -kerning first=75 second=80 amount=-7 -kerning first=315 second=340 amount=-4 -kerning first=318 second=120 amount=-11 -kerning first=256 second=69 amount=-10 -kerning first=296 second=353 amount=-2 -kerning first=119 second=314 amount=2 -kerning first=362 second=354 amount=-6 -kerning first=300 second=303 amount=-2 -kerning first=80 second=200 amount=-9 -kerning first=323 second=240 amount=2 -kerning first=103 second=107 amount=2 -kerning first=258 second=379 amount=-7 -kerning first=281 second=316 amount=-1 -kerning first=196 second=328 amount=-13 -kerning first=199 second=108 amount=2 -kerning first=84 second=120 amount=-13 -kerning first=222 second=45 amount=3 -kerning first=304 second=253 amount=-2 -kerning first=200 second=278 amount=-5 -kerning first=85 second=290 amount=2 -kerning first=88 second=70 amount=-2 -kerning first=108 second=227 amount=2 -kerning first=351 second=267 amount=1 -kerning first=89 second=240 amount=-3 -kerning first=224 second=355 amount=-1 -kerning first=8211 second=332 amount=5 -kerning first=270 second=229 amount=2 -kerning first=290 second=356 amount=-2 -kerning first=116 second=97 amount=2 -kerning first=356 second=357 amount=-3 -kerning first=271 second=369 amount=-9 -kerning first=74 second=203 amount=-5 -kerning first=193 second=111 amount=-12 -kerning first=75 second=343 amount=-9 -kerning first=341 second=320 amount=-1 -kerning first=256 second=332 amount=-11 -kerning first=364 second=257 amount=2 -kerning first=279 second=269 amount=1 -kerning first=194 second=281 amount=-12 -kerning first=325 second=113 amount=2 -kerning first=102 second=230 amount=-7 -kerning first=260 second=282 amount=-10 -kerning first=198 second=231 amount=-5 -kerning first=218 second=358 amount=-6 -kerning first=241 second=295 amount=-1 -kerning first=369 second=347 amount=1 -kerning first=284 second=359 amount=2 -kerning first=110 second=100 amount=2 -kerning first=8212 second=65 amount=-13 -kerning first=45 second=269 amount=4 -kerning first=373 second=297 amount=2 -kerning first=206 second=101 amount=-2 -kerning first=311 second=246 amount=1 -kerning first=88 second=333 amount=-2 -kerning first=269 second=322 amount=-1 -kerning first=292 second=259 amount=2 -kerning first=358 second=260 amount=-13 -kerning first=339 second=273 amount=2 -kerning first=254 second=285 amount=5 -kerning first=362 second=210 amount=2 -kerning first=192 second=234 amount=-12 -kerning first=297 second=349 amount=1 -kerning first=323 second=66 amount=2 -kerning first=258 second=235 amount=-12 -kerning first=104 second=103 amount=2 -kerning first=370 second=80 amount=-2 -kerning first=197 second=324 amount=-13 -kerning first=105 second=273 amount=2 -kerning first=201 second=274 amount=-5 -kerning first=86 second=286 amount=5 -kerning first=109 second=223 amount=4 -kerning first=225 second=351 amount=1 -kerning first=356 second=213 amount=-2 -kerning first=8212 second=328 amount=2 -kerning first=271 second=225 amount=-8 -kerning first=376 second=340 amount=-1 -kerning first=357 second=353 amount=-8 -kerning first=298 second=82 amount=-2 -kerning first=75 second=199 amount=-8 -kerning first=318 second=239 amount=-3 -kerning first=98 second=106 amount=-7 -kerning first=118 second=263 amount=4 -kerning first=194 second=107 amount=-12 -kerning first=319 second=379 amount=2 -kerning first=342 second=316 amount=-2 -kerning first=260 second=108 amount=-12 -kerning first=195 second=277 amount=-12 -kerning first=83 second=69 amount=-3 -kerning first=103 second=226 amount=5 -kerning first=346 second=266 amount=3 -kerning first=304 second=342 amount=-2 -kerning first=84 second=239 amount=-2 -kerning first=219 second=354 amount=-6 -kerning first=350 second=216 amount=3 -kerning first=265 second=228 amount=1 -kerning first=285 second=355 amount=2 -kerning first=200 second=367 amount=-2 -kerning first=85 second=379 amount=4 -kerning first=331 second=229 amount=2 -kerning first=246 second=241 amount=-2 -kerning first=374 second=293 amount=-2 -kerning first=289 second=305 amount=3 -kerning first=69 second=202 amount=-5 -kerning first=312 second=242 amount=1 -kerning first=89 second=329 amount=-6 -kerning first=227 second=254 amount=-1 -kerning first=358 second=86 amount=-1 -kerning first=273 second=98 amount=-1 -kerning first=70 second=342 amount=-7 -kerning first=339 second=99 amount=1 -kerning first=254 second=111 amount=2 -kerning first=97 second=229 amount=2 -kerning first=193 second=230 amount=-10 -kerning first=98 second=369 amount=2 -kerning first=302 second=295 amount=-2 -kerning first=82 second=192 amount=3 -kerning first=105 second=99 amount=1 -kerning first=240 second=244 amount=1 -kerning first=345 second=359 amount=-1 -kerning first=260 second=371 amount=-13 -kerning first=286 second=88 amount=1 -kerning first=198 second=320 amount=-2 -kerning first=83 second=332 amount=3 -kerning first=86 second=112 amount=3 -kerning first=221 second=257 amount=-3 -kerning first=106 second=269 amount=1 -kerning first=349 second=309 amount=-9 -kerning first=202 second=270 amount=-5 -kerning first=87 second=282 amount=-6 -kerning first=333 second=102 amount=-2 -kerning first=248 second=114 amount=-2 -kerning first=353 second=259 amount=3 -kerning first=376 second=196 amount=-3 -kerning first=45 second=358 amount=-7 -kerning first=311 second=335 amount=1 -kerning first=226 second=347 amount=1 -kerning first=111 second=359 amount=-1 -kerning first=338 second=222 amount=-7 -kerning first=115 second=309 amount=-9 -kerning first=358 second=349 amount=-10 -kerning first=119 second=259 amount=5 -kerning first=277 second=311 amount=-1 -kerning first=192 second=323 amount=-15 -kerning first=195 second=103 amount=-10 -kerning first=300 second=248 amount=-2 -kerning first=258 second=324 amount=-13 -kerning first=261 second=104 amount=-1 -kerning first=196 second=273 amount=-10 -kerning first=84 second=65 amount=-13 -kerning first=239 second=337 amount=1 -kerning first=242 second=117 amount=-2 -kerning first=262 second=274 amount=-2 -kerning first=370 second=199 amount=2 -kerning first=65 second=78 amount=-15 -kerning first=200 second=223 amount=3 -kerning first=374 second=119 amount=-4 -kerning first=66 second=248 amount=2 -kerning first=201 second=363 amount=-2 -kerning first=86 second=375 amount=3 -kerning first=8211 second=277 amount=4 -kerning first=375 second=289 amount=7 -kerning first=70 second=198 amount=-15 -kerning first=333 second=365 amount=-2 -kerning first=356 second=302 amount=-2 -kerning first=71 second=338 amount=3 -kerning first=75 second=288 amount=-8 -kerning first=78 second=68 amount=-6 -kerning first=318 second=328 amount=-9 -kerning first=98 second=225 amount=5 -kerning first=341 second=265 amount=-2 -kerning first=256 second=277 amount=-12 -kerning first=364 second=202 amount=-6 -kerning first=59 second=81 amount=-3 -kerning first=194 second=226 amount=-10 -kerning first=302 second=121 amount=-2 -kerning first=260 second=227 amount=-10 -kerning first=280 second=354 amount=-5 -kerning first=303 second=291 amount=2 -kerning first=221 second=83 amount=-4 -kerning first=326 second=228 amount=2 -kerning first=241 second=240 amount=2 -kerning first=284 second=304 amount=3 -kerning first=199 second=316 amount=2 -kerning first=84 second=328 amount=-6 -kerning first=107 second=265 amount=1 -kerning first=45 second=214 amount=5 -kerning first=373 second=242 amount=4 -kerning first=65 second=341 amount=-12 -kerning first=88 second=278 amount=-2 -kerning first=331 second=318 amount=-1 -kerning first=46 second=354 amount=-10 -kerning first=112 second=355 amount=3 -kerning first=358 second=205 amount=-2 -kerning first=73 second=241 amount=-2 -kerning first=208 second=356 amount=-6 -kerning first=316 second=281 amount=1 -kerning first=231 second=293 amount=-1 -kerning first=254 second=230 amount=2 -kerning first=300 second=74 amount=-2 -kerning first=320 second=231 amount=-1 -kerning first=97 second=318 amount=-1 -kerning first=100 second=98 amount=-1 -kerning first=340 second=358 amount=-8 -kerning first=363 second=295 amount=-1 -kerning first=193 second=319 amount=-7 -kerning first=196 second=99 amount=-12 -kerning first=301 second=244 amount=1 -kerning first=259 second=320 amount=-1 -kerning first=59 second=344 amount=-4 -kerning first=197 second=269 amount=-12 -kerning first=240 second=333 amount=1 -kerning first=348 second=258 amount=-9 -kerning first=260 second=8211 amount=-12 -kerning first=286 second=207 amount=3 -kerning first=66 second=74 amount=-1 -kerning first=86 second=231 amount=3 -kerning first=221 second=346 amount=-4 -kerning first=329 second=271 amount=2 -kerning first=352 second=208 amount=-3 -kerning first=8211 second=103 amount=4 -kerning first=287 second=347 amount=2 -kerning first=8212 second=273 amount=4 -kerning first=376 second=285 amount=-3 -kerning first=291 second=297 amount=3 -kerning first=206 second=309 amount=-14 -kerning first=75 second=114 amount=-9 -kerning first=256 second=103 amount=-10 -kerning first=257 second=273 amount=2 -kerning first=195 second=222 amount=-17 -kerning first=300 second=337 amount=-2 -kerning first=323 second=274 amount=-6 -kerning first=346 second=211 amount=3 -kerning first=366 second=338 amount=2 -kerning first=222 second=79 amount=4 -kerning first=327 second=224 amount=2 -kerning first=104 second=311 amount=-1 -kerning first=242 second=236 amount=-2 -kerning first=370 second=288 amount=2 -kerning first=65 second=197 amount=-7 -kerning first=351 second=301 amount=1 -kerning first=354 second=81 amount=-2 -kerning first=374 second=238 amount=-3 -kerning first=46 second=210 amount=-3 -kerning first=66 second=337 amount=2 -kerning first=69 second=117 amount=-2 -kerning first=289 second=250 amount=2 -kerning first=89 second=274 amount=-4 -kerning first=8211 second=366 amount=5 -kerning first=70 second=287 amount=-3 -kerning first=208 second=212 amount=4 -kerning first=231 second=119 amount=-1 -kerning first=294 second=340 amount=-2 -kerning first=74 second=237 amount=-1 -kerning first=232 second=289 amount=2 -kerning first=275 second=353 amount=1 -kerning first=213 second=302 amount=3 -kerning first=98 second=314 amount=3 -kerning first=121 second=251 amount=3 -kerning first=364 second=291 amount=2 -kerning first=59 second=200 amount=-4 -kerning first=194 second=315 amount=-7 -kerning first=82 second=107 amount=-2 -kerning first=348 second=84 amount=-3 -kerning first=260 second=316 amount=-12 -kerning first=198 second=265 amount=-5 -kerning first=221 second=202 amount=-4 -kerning first=329 second=97 amount=2 -kerning first=241 second=329 amount=-3 -kerning first=244 second=109 amount=-2 -kerning first=67 second=70 amount=-2 -kerning first=87 second=227 amount=2 -kerning first=222 second=342 amount=-7 -kerning first=8212 second=99 amount=4 -kerning first=45 second=303 amount=2 -kerning first=373 second=331 amount=2 -kerning first=376 second=111 amount=-4 -kerning first=68 second=240 amount=2 -kerning first=88 second=367 amount=-3 -kerning first=354 second=344 amount=-5 -kerning first=230 second=242 amount=1 -kerning first=335 second=357 amount=-1 -kerning first=296 second=243 amount=-2 -kerning first=192 second=268 amount=-11 -kerning first=320 second=320 amount=-2 -kerning first=323 second=100 amount=2 -kerning first=343 second=257 amount=-2 -kerning first=258 second=269 amount=-12 -kerning first=301 second=333 amount=1 -kerning first=101 second=357 amount=-1 -kerning first=197 second=358 amount=-20 -kerning first=263 second=359 amount=-1 -kerning first=286 second=296 amount=3 -kerning first=66 second=193 amount=-5 -kerning first=204 second=88 amount=2 -kerning first=309 second=233 amount=1 -kerning first=86 second=320 amount=3 -kerning first=89 second=100 amount=-3 -kerning first=109 second=257 amount=2 -kerning first=8211 second=222 amount=-8 -kerning first=267 second=309 amount=-11 -kerning first=270 second=89 amount=2 -kerning first=375 second=234 amount=3 -kerning first=70 second=113 amount=-3 -kerning first=8212 second=362 amount=5 -kerning first=271 second=259 amount=-8 -kerning first=71 second=283 amount=3 -kerning first=209 second=208 amount=-6 -kerning first=232 second=115 amount=1 -kerning first=114 second=347 amount=-2 -kerning first=298 second=116 amount=-2 -kerning first=75 second=233 amount=-10 -kerning first=318 second=273 amount=-8 -kerning first=233 second=285 amount=2 -kerning first=118 second=297 amount=2 -kerning first=256 second=222 amount=-17 -kerning first=214 second=298 amount=3 -kerning first=322 second=223 amount=3 -kerning first=237 second=235 amount=1 -kerning first=365 second=287 amount=2 -kerning first=368 second=67 amount=2 -kerning first=195 second=311 amount=-12 -kerning first=261 second=312 amount=-1 -kerning first=84 second=273 amount=-10 -kerning first=222 second=198 amount=-15 -kerning first=245 second=105 amount=-2 -kerning first=370 second=377 amount=4 -kerning first=65 second=286 amount=-11 -kerning first=68 second=66 amount=-6 -kerning first=311 second=106 amount=-12 -kerning first=354 second=200 amount=-8 -kerning first=289 second=339 amount=2 -kerning first=204 second=351 amount=-2 -kerning first=89 second=363 amount=-5 -kerning first=358 second=120 amount=-13 -kerning first=378 second=277 amount=1 -kerning first=316 second=226 amount=2 -kerning first=362 second=70 amount=-2 -kerning first=74 second=326 amount=-4 -kerning first=77 second=106 amount=-11 -kerning first=363 second=240 amount=2 -kerning first=193 second=264 amount=-11 -kerning first=196 second=44 amount=-10 -kerning first=78 second=276 amount=-6 -kerning first=282 second=202 amount=-5 -kerning first=197 second=214 amount=-11 -kerning first=302 second=329 amount=-4 -kerning first=325 second=266 amount=3 -kerning first=102 second=353 amount=-7 -kerning first=348 second=203 amount=-3 -kerning first=198 second=354 amount=-2 -kerning first=221 second=291 amount=-3 -kerning first=264 second=355 amount=2 -kerning first=372 second=280 amount=-6 -kerning first=205 second=84 amount=-2 -kerning first=330 second=356 amount=-6 -kerning first=353 second=293 amount=1 -kerning first=356 second=73 amount=-2 -kerning first=376 second=230 amount=-3 -kerning first=291 second=242 amount=2 -kerning first=71 second=109 amount=2 -kerning first=206 second=254 amount=-2 -kerning first=357 second=243 amount=-9 -kerning first=75 second=59 amount=-5 -kerning first=210 second=204 amount=3 -kerning first=318 second=99 amount=-9 -kerning first=233 second=111 amount=1 -kerning first=234 second=281 amount=1 -kerning first=119 second=293 amount=2 -kerning first=365 second=113 amount=2 -kerning first=192 second=357 amount=-12 -kerning first=258 second=358 amount=-20 -kerning first=281 second=295 amount=-1 -kerning first=199 second=87 amount=4 -kerning first=304 second=232 amount=-2 -kerning first=84 second=99 amount=-7 -kerning first=324 second=359 amount=-1 -kerning first=285 second=245 amount=2 -kerning first=328 second=309 amount=-10 -kerning first=351 second=246 amount=1 -kerning first=66 second=282 amount=-4 -kerning first=244 second=8212 amount=3 -kerning first=270 second=208 amount=-6 -kerning first=70 second=232 amount=-6 -kerning first=205 second=347 amount=-2 -kerning first=356 second=336 amount=-2 -kerning first=359 second=116 amount=-1 -kerning first=294 second=285 amount=2 -kerning first=232 second=234 amount=1 -kerning first=360 second=286 amount=2 -kerning first=160 second=258 amount=-3 -kerning first=193 second=90 amount=-7 -kerning first=298 second=235 amount=-2 -kerning first=75 second=322 amount=-7 -kerning first=98 second=259 amount=5 -kerning first=256 second=311 amount=-12 -kerning first=279 second=248 amount=1 -kerning first=194 second=260 amount=-7 -kerning first=240 second=104 amount=-1 -kerning first=198 second=210 amount=-7 -kerning first=83 second=222 amount=-3 -kerning first=221 second=117 amount=-5 -kerning first=103 second=349 amount=2 -kerning first=44 second=78 amount=-5 -kerning first=372 second=106 amount=-12 -kerning first=287 second=118 amount=2 -kerning first=307 second=275 amount=1 -kerning first=222 second=287 amount=2 -kerning first=330 second=212 amount=3 -kerning first=353 second=119 amount=1 -kerning first=265 second=351 amount=1 -kerning first=45 second=248 amount=4 -kerning first=65 second=375 amount=-4 -kerning first=206 second=80 amount=-2 -kerning first=311 second=225 amount=2 -kerning first=111 second=249 amount=-2 -kerning first=354 second=289 amount=-10 -kerning first=272 second=81 amount=4 -kerning first=207 second=250 amount=-2 -kerning first=338 second=82 amount=-7 -kerning first=358 second=239 amount=-2 -kerning first=73 second=275 amount=-2 -kerning first=234 second=107 amount=-1 -kerning first=119 second=119 amount=3 -kerning first=192 second=213 amount=-11 -kerning first=300 second=108 amount=-2 -kerning first=77 second=225 amount=1 -kerning first=320 second=265 amount=-1 -kerning first=120 second=289 amount=2 -kerning first=258 second=214 amount=-11 -kerning first=363 second=329 amount=-3 -kerning first=193 second=353 amount=-11 -kerning first=219 second=70 amount=-2 -kerning first=239 second=227 amount=2 -kerning first=344 second=342 amount=-8 -kerning first=305 second=228 amount=2 -kerning first=82 second=315 amount=3 -kerning first=220 second=240 amount=2 -kerning first=266 second=84 amount=-2 -kerning first=371 second=229 amount=2 -kerning first=86 second=265 amount=3 -kerning first=267 second=254 amount=-1 -kerning first=67 second=278 amount=-2 -kerning first=70 second=58 amount=-8 -kerning first=356 second=192 amount=-13 -kerning first=8212 second=307 amount=2 -kerning first=376 second=319 amount=-3 -kerning first=291 second=331 amount=2 -kerning first=71 second=228 amount=5 -kerning first=160 second=84 amount=-12 -kerning first=272 second=344 amount=-3 -kerning first=213 second=73 amount=3 -kerning first=118 second=242 amount=4 -kerning first=194 second=86 amount=-7 -kerning first=260 second=87 amount=-7 -kerning first=280 second=244 amount=-2 -kerning first=195 second=256 amount=-7 -kerning first=80 second=268 amount=3 -kerning first=300 second=371 amount=-2 -kerning first=241 second=100 amount=2 -kerning first=261 second=257 amount=2 -kerning first=199 second=206 amount=3 -kerning first=307 second=101 amount=1 -kerning first=222 second=113 amount=3 -kerning first=350 second=195 amount=-9 -kerning first=373 second=102 amount=2 -kerning first=45 second=74 amount=-7 -kerning first=65 second=231 amount=-12 -kerning first=85 second=358 amount=-6 -kerning first=223 second=283 amount=1 -kerning first=351 second=335 amount=1 -kerning first=354 second=115 amount=-10 -kerning first=374 second=272 amount=-4 -kerning first=112 second=245 amount=2 -kerning first=355 second=285 amount=2 -kerning first=358 second=65 amount=-13 -kerning first=73 second=101 amount=-2 -kerning first=336 second=298 amount=3 -kerning first=359 second=235 amount=1 -kerning first=71 second=8212 amount=4 -kerning first=74 second=271 amount=-5 -kerning first=235 second=103 amount=2 -kerning first=193 second=209 amount=-15 -kerning first=298 second=324 amount=-2 -kerning first=236 second=273 amount=2 -kerning first=344 second=198 amount=3 -kerning first=121 second=285 amount=7 -kerning first=279 second=337 amount=1 -kerning first=282 second=117 amount=-2 -kerning first=194 second=349 amount=-11 -kerning first=220 second=66 amount=-6 -kerning first=325 second=211 amount=3 -kerning first=260 second=350 amount=-8 -kerning first=283 second=287 amount=2 -kerning first=198 second=299 amount=-7 -kerning first=326 second=351 amount=1 -kerning first=106 second=248 amount=1 -kerning first=352 second=68 amount=-3 -kerning first=264 second=300 amount=3 -kerning first=372 second=225 amount=2 -kerning first=287 second=237 amount=3 -kerning first=67 second=104 amount=2 -kerning first=353 second=238 amount=1 -kerning first=373 second=365 amount=2 -kerning first=45 second=337 amount=4 -kerning first=68 second=274 amount=-6 -kerning first=229 second=106 amount=-10 -kerning first=272 second=200 amount=-6 -kerning first=72 second=224 amount=2 -kerning first=207 second=339 amount=-2 -kerning first=295 second=107 amount=-1 -kerning first=338 second=201 amount=-4 -kerning first=358 second=328 amount=-6 -kerning first=361 second=108 amount=-1 -kerning first=296 second=277 amount=-2 -kerning first=234 second=226 amount=2 -kerning first=119 second=238 amount=2 -kerning first=254 second=353 amount=2 -kerning first=362 second=278 amount=-6 -kerning first=280 second=70 amount=-6 -kerning first=192 second=302 amount=-7 -kerning first=195 second=82 amount=-17 -kerning first=343 second=291 amount=-2 -kerning first=346 second=71 amount=3 -kerning first=366 second=228 amount=2 -kerning first=281 second=240 amount=2 -kerning first=58 second=327 amount=-5 -kerning first=84 second=44 amount=-15 -kerning first=327 second=84 amount=-6 -kerning first=347 second=241 amount=1 -kerning first=200 second=202 amount=-5 -kerning first=85 second=214 amount=2 -kerning first=328 second=254 amount=-1 -kerning first=266 second=203 amount=-2 -kerning first=46 second=70 amount=-4 -kerning first=371 second=318 amount=-1 -kerning first=289 second=110 amount=2 -kerning first=374 second=98 amount=-2 -kerning first=66 second=227 amount=3 -kerning first=201 second=342 amount=-6 -kerning first=309 second=267 amount=1 -kerning first=332 second=204 amount=3 -kerning first=109 second=291 amount=2 -kerning first=355 second=111 amount=1 -kerning first=8211 second=256 amount=-13 -kerning first=290 second=280 amount=-2 -kerning first=228 second=229 amount=2 -kerning first=356 second=281 amount=-7 -kerning first=74 second=97 amount=-5 -kerning first=160 second=203 amount=-6 -kerning first=275 second=243 amount=1 -kerning first=75 second=267 amount=-10 -kerning first=318 second=307 amount=-3 -kerning first=236 second=99 amount=1 -kerning first=341 second=244 amount=-2 -kerning first=118 second=331 amount=2 -kerning first=121 second=111 amount=3 -kerning first=256 second=256 amount=-7 -kerning first=194 second=205 amount=-7 -kerning first=237 second=269 amount=1 -kerning first=122 second=281 amount=1 -kerning first=260 second=206 amount=-7 -kerning first=280 second=333 amount=-2 -kerning first=283 second=113 amount=2 -kerning first=195 second=345 amount=-12 -kerning first=218 second=282 amount=-6 -kerning first=346 second=334 amount=3 -kerning first=349 second=114 amount=1 -kerning first=369 second=271 amount=2 -kerning first=199 second=295 amount=2 -kerning first=84 second=307 amount=-2 -kerning first=107 second=244 amount=1 -kerning first=242 second=359 amount=-1 -kerning first=350 second=284 amount=3 -kerning first=45 second=193 amount=-13 -kerning first=65 second=320 amount=-12 -kerning first=68 second=100 amount=2 -kerning first=203 second=245 amount=-2 -kerning first=246 second=309 amount=-13 -kerning first=354 second=234 amount=-7 -kerning first=269 second=246 amount=-1 -kerning first=374 second=361 amount=-5 -kerning first=289 second=373 amount=2 -kerning first=66 second=8211 amount=5 -kerning first=69 second=270 amount=-5 -kerning first=315 second=90 amount=2 -kerning first=227 second=322 amount=-1 -kerning first=115 second=114 amount=1 -kerning first=277 second=116 amount=-1 -kerning first=297 second=273 amount=2 -kerning first=340 second=337 amount=-2 -kerning first=193 second=298 amount=-7 -kerning first=196 second=78 amount=-15 -kerning first=301 second=223 amount=3 -kerning first=367 second=224 amount=2 -kerning first=59 second=323 amount=-5 -kerning first=197 second=248 amount=-12 -kerning first=82 second=260 amount=3 -kerning first=302 second=363 amount=-2 -kerning first=240 second=312 amount=-1 -kerning first=86 second=210 amount=5 -kerning first=106 second=337 amount=1 -kerning first=8211 second=82 amount=-6 -kerning first=44 second=286 amount=-3 -kerning first=287 second=326 amount=2 -kerning first=67 second=223 amount=3 -kerning first=205 second=118 amount=-2 -kerning first=110 second=287 amount=2 -kerning first=356 second=107 amount=-3 -kerning first=8212 second=252 amount=2 -kerning first=271 second=119 amount=-10 -kerning first=376 second=264 amount=-1 -kerning first=209 second=68 amount=-6 -kerning first=229 second=225 amount=2 -kerning first=337 second=120 amount=-2 -kerning first=357 second=277 amount=-9 -kerning first=272 second=289 amount=2 -kerning first=295 second=226 amount=2 -kerning first=256 second=82 amount=-17 -kerning first=361 second=227 amount=2 -kerning first=195 second=201 amount=-10 -kerning first=300 second=316 amount=-2 -kerning first=80 second=213 amount=3 -kerning first=103 second=120 amount=-1 -kerning first=369 second=97 amount=2 -kerning first=196 second=341 amount=-12 -kerning first=219 second=278 amount=-6 -kerning first=222 second=58 amount=-8 -kerning first=327 second=203 amount=-6 -kerning first=262 second=342 amount=-4 -kerning first=285 second=279 amount=2 -kerning first=223 second=228 amount=2 -kerning first=108 second=240 amount=2 -kerning first=243 second=355 amount=-1 -kerning first=289 second=229 amount=5 -kerning first=204 second=241 amount=-2 -kerning first=355 second=230 amount=1 -kerning first=228 second=318 amount=-1 -kerning first=231 second=98 amount=-1 -kerning first=340 second=193 amount=3 -kerning first=363 second=100 amount=2 -kerning first=160 second=292 amount=-6 -kerning first=298 second=269 amount=-2 -kerning first=75 second=356 amount=-9 -kerning first=98 second=293 amount=3 -kerning first=341 second=333 amount=-2 -kerning first=121 second=230 amount=2 -kerning first=256 second=345 amount=-12 -kerning first=364 second=270 amount=-6 -kerning first=197 second=74 amount=-9 -kerning first=102 second=243 amount=-8 -kerning first=345 second=283 amount=-2 -kerning first=260 second=295 amount=-12 -kerning first=283 second=232 amount=1 -kerning first=198 second=244 amount=-5 -kerning first=83 second=256 amount=-9 -kerning first=349 second=233 amount=1 -kerning first=307 second=309 amount=-11 -kerning first=107 second=333 amount=1 -kerning first=110 second=113 amount=2 -kerning first=8212 second=78 amount=-2 -kerning first=45 second=282 amount=-7 -kerning first=376 second=90 amount=-2 -kerning first=206 second=114 amount=-2 -kerning first=311 second=259 amount=2 -kerning first=226 second=271 amount=2 -kerning first=354 second=323 amount=-1 -kerning first=357 second=103 amount=-8 -kerning first=269 second=335 amount=-1 -kerning first=292 second=272 amount=-6 -kerning first=115 second=233 amount=1 -kerning first=358 second=273 amount=-10 -kerning first=273 second=285 amount=2 -kerning first=296 second=222 amount=-2 -kerning first=73 second=309 amount=-14 -kerning first=316 second=349 amount=1 -kerning first=362 second=223 amount=2 -kerning first=277 second=235 amount=1 -kerning first=77 second=259 amount=1 -kerning first=323 second=79 amount=3 -kerning first=235 second=311 amount=-1 -kerning first=258 second=248 amount=-12 -kerning first=278 second=375 amount=-3 -kerning first=58 second=272 amount=-3 -kerning first=196 second=197 amount=-7 -kerning first=104 second=116 amount=-1 -kerning first=285 second=105 amount=3 -kerning first=197 second=337 amount=-12 -kerning first=200 second=117 amount=-2 -kerning first=220 second=274 amount=-6 -kerning first=351 second=106 amount=-9 -kerning first=86 second=299 amount=3 -kerning first=89 second=79 amount=-1 -kerning first=224 second=224 amount=2 -kerning first=352 second=276 amount=-3 -kerning first=8211 second=201 amount=-7 -kerning first=270 second=68 amount=-6 -kerning first=67 second=312 amount=2 -kerning first=205 second=237 amount=-2 -kerning first=356 second=226 amount=-10 -kerning first=271 second=238 amount=-3 -kerning first=376 second=353 amount=-4 -kerning first=291 second=365 amount=2 -kerning first=71 second=262 amount=3 -kerning first=229 second=314 amount=-1 -kerning first=117 second=106 amount=-10 -kerning first=55 second=55 amount=-8 -kerning first=75 second=212 amount=-8 -kerning first=98 second=119 amount=2 -kerning first=256 second=201 amount=-10 -kerning first=361 second=316 amount=-1 -kerning first=276 second=328 amount=-2 -kerning first=279 second=108 amount=-1 -kerning first=194 second=120 amount=-14 -kerning first=99 second=289 amount=1 -kerning first=342 second=329 amount=-2 -kerning first=260 second=121 amount=-4 -kerning first=280 second=278 amount=-5 -kerning first=195 second=290 amount=-11 -kerning first=198 second=70 amount=-2 -kerning first=83 second=82 amount=-3 -kerning first=218 second=227 amount=2 -kerning first=323 second=342 amount=-2 -kerning first=103 second=239 amount=3 -kerning first=261 second=291 amount=2 -kerning first=304 second=355 amount=-2 -kerning first=370 second=356 amount=-6 -kerning first=65 second=265 amount=-12 -kerning first=68 second=45 amount=4 -kerning first=88 second=202 amount=-2 -kerning first=226 second=97 amount=2 -kerning first=108 second=329 amount=-1 -kerning first=111 second=109 amount=-2 -kerning first=246 second=254 amount=-1 -kerning first=351 second=369 amount=1 -kerning first=46 second=278 amount=-4 -kerning first=289 second=318 amount=2 -kerning first=207 second=110 amount=-2 -kerning first=89 second=342 amount=-1 -kerning first=112 second=279 amount=2 -kerning first=358 second=99 amount=-7 -kerning first=273 second=111 amount=1 -kerning first=70 second=355 amount=-2 -kerning first=208 second=280 amount=-6 -kerning first=116 second=229 amount=2 -kerning first=359 second=269 amount=1 -kerning first=192 second=73 amount=-7 -kerning first=74 second=305 amount=-1 -kerning first=232 second=357 amount=-1 -kerning first=258 second=74 amount=-9 -kerning first=193 second=243 amount=-12 -kerning first=298 second=358 amount=-2 -kerning first=59 second=268 amount=-3 -kerning first=197 second=193 amount=-7 -kerning first=220 second=100 amount=2 -kerning first=240 second=257 amount=2 -kerning first=198 second=333 amount=-5 -kerning first=221 second=270 amount=-4 -kerning first=349 second=322 amount=1 -kerning first=372 second=259 amount=2 -kerning first=287 second=271 amount=5 -kerning first=8212 second=197 amount=-13 -kerning first=45 second=371 amount=2 -kerning first=71 second=88 amount=1 -kerning first=206 second=233 amount=-2 -kerning first=207 second=373 amount=-2 -kerning first=115 second=322 amount=1 -kerning first=118 second=102 amount=2 -kerning first=56 second=51 amount=2 -kerning first=296 second=311 amount=-2 -kerning first=99 second=115 amount=1 -kerning first=192 second=336 amount=-11 -kerning first=195 second=116 amount=-12 -kerning first=100 second=285 amount=2 -kerning first=258 second=337 amount=-12 -kerning first=366 second=262 amount=2 -kerning first=196 second=286 amount=-11 -kerning first=199 second=66 amount=-2 -kerning first=81 second=298 amount=3 -kerning first=84 second=78 amount=-1 -kerning first=219 second=223 amount=2 -kerning first=347 second=275 amount=1 -kerning first=370 second=212 amount=2 -kerning first=285 second=224 amount=5 -kerning first=305 second=351 amount=1 -kerning first=351 second=225 amount=3 -kerning first=112 second=105 amount=2 -kerning first=8211 second=290 amount=5 -kerning first=290 second=314 amount=2 -kerning first=205 second=326 amount=-2 -kerning first=208 second=106 amount=-12 -kerning first=113 second=275 amount=1 -kerning first=356 second=315 amount=-1 -kerning first=71 second=351 amount=2 -kerning first=209 second=276 amount=-6 -kerning first=337 second=328 amount=-2 -kerning first=117 second=225 amount=2 -kerning first=340 second=108 amount=-2 -kerning first=275 second=277 amount=1 -kerning first=193 second=69 amount=-10 -kerning first=75 second=301 amount=-7 -kerning first=78 second=81 amount=3 -kerning first=318 second=341 amount=-9 -kerning first=98 second=238 amount=2 -kerning first=233 second=353 amount=1 -kerning first=118 second=365 amount=2 -kerning first=256 second=290 amount=-11 -kerning first=279 second=227 amount=2 -kerning first=325 second=71 amount=3 -kerning first=345 second=228 amount=-2 -kerning first=260 second=240 amount=-10 -kerning first=365 second=355 amount=-1 -kerning first=280 second=367 amount=-2 -kerning first=195 second=379 amount=-7 -kerning first=83 second=201 amount=-3 -kerning first=103 second=328 amount=2 -kerning first=287 second=97 amount=5 -kerning first=202 second=109 amount=-2 -kerning first=84 second=341 amount=-6 -kerning first=222 second=266 amount=4 -kerning first=327 second=381 amount=4 -kerning first=353 second=98 amount=1 -kerning first=45 second=227 amount=4 -kerning first=65 second=354 amount=-20 -kerning first=354 second=268 amount=-2 -kerning first=72 second=84 amount=-6 -kerning first=273 second=230 amount=1 -kerning first=73 second=254 amount=-2 -kerning first=339 second=231 amount=1 -kerning first=119 second=98 amount=2 -kerning first=254 second=243 amount=2 -kerning first=192 second=192 amount=-7 -kerning first=320 second=244 amount=-1 -kerning first=100 second=111 amount=1 -kerning first=258 second=193 amount=-7 -kerning first=366 second=88 amount=3 -kerning first=281 second=100 amount=2 -kerning first=193 second=332 amount=-11 -kerning first=301 second=257 amount=2 -kerning first=78 second=344 amount=-2 -kerning first=101 second=281 amount=1 -kerning first=347 second=101 amount=1 -kerning first=282 second=270 amount=-5 -kerning first=197 second=282 amount=-10 -kerning first=325 second=334 amount=3 -kerning first=105 second=231 amount=1 -kerning first=66 second=87 amount=2 -kerning first=86 second=244 amount=3 -kerning first=221 second=359 amount=-2 -kerning first=225 second=309 amount=-10 -kerning first=113 second=101 amount=1 -kerning first=353 second=361 amount=1 -kerning first=8212 second=286 amount=5 -kerning first=294 second=90 amount=4 -kerning first=71 second=207 amount=3 -kerning first=206 second=322 amount=-2 -kerning first=229 second=259 amount=2 -kerning first=111 second=8212 amount=3 -kerning first=114 second=271 amount=-2 -kerning first=275 second=103 amount=2 -kerning first=341 second=104 amount=-1 -kerning first=256 second=116 amount=-12 -kerning first=194 second=65 amount=-7 -kerning first=234 second=349 amount=1 -kerning first=119 second=361 amount=2 -kerning first=260 second=66 amount=-8 -kerning first=280 second=223 amount=3 -kerning first=195 second=235 amount=-12 -kerning first=323 second=287 amount=2 -kerning first=196 second=375 amount=-4 -kerning first=84 second=197 amount=-13 -kerning first=242 second=249 amount=-2 -kerning first=65 second=210 amount=-11 -kerning first=88 second=117 amount=-3 -kerning first=351 second=314 amount=1 -kerning first=269 second=106 amount=-11 -kerning first=289 second=263 amount=2 -kerning first=204 second=275 amount=-2 -kerning first=89 second=287 amount=-3 -kerning first=112 second=224 amount=5 -kerning first=335 second=107 amount=-1 -kerning first=358 second=44 amount=-15 -kerning first=8211 second=379 amount=-4 -kerning first=270 second=276 amount=-6 -kerning first=73 second=80 amount=-2 -kerning first=208 second=225 amount=2 -kerning first=313 second=340 amount=-4 -kerning first=316 second=120 amount=2 -kerning first=117 second=314 amount=-1 -kerning first=360 second=354 amount=-6 -kerning first=298 second=303 amount=-2 -kerning first=78 second=200 amount=-6 -kerning first=101 second=107 amount=-1 -kerning first=256 second=379 amount=-7 -kerning first=279 second=316 amount=-1 -kerning first=59 second=213 amount=-3 -kerning first=194 second=328 amount=-13 -kerning first=197 second=108 amount=-12 -kerning first=82 second=120 amount=-2 -kerning first=302 second=253 amount=-2 -kerning first=102 second=277 amount=-8 -kerning first=260 second=329 amount=-19 -kerning first=198 second=278 amount=-2 -kerning first=83 second=290 amount=3 -kerning first=106 second=227 amount=2 -kerning first=349 second=267 amount=1 -kerning first=87 second=240 amount=2 -kerning first=330 second=280 amount=-6 -kerning first=8212 second=112 amount=2 -kerning first=114 second=97 amount=-2 -kerning first=354 second=357 amount=-3 -kerning first=72 second=203 amount=-6 -kerning first=207 second=318 amount=-2 -kerning first=115 second=267 amount=1 -kerning first=358 second=307 amount=-2 -kerning first=339 second=320 amount=-1 -kerning first=362 second=257 amount=2 -kerning first=277 second=269 amount=1 -kerning first=192 second=281 amount=-12 -kerning first=320 second=333 amount=-1 -kerning first=100 second=230 amount=1 -kerning first=323 second=113 amount=2 -kerning first=120 second=357 amount=-1 -kerning first=258 second=282 amount=-10 -kerning first=196 second=231 amount=-12 -kerning first=367 second=347 amount=1 -kerning first=197 second=371 amount=-13 -kerning first=108 second=100 amount=2 -kerning first=204 second=101 amount=-2 -kerning first=309 second=246 amount=1 -kerning first=86 second=333 amount=3 -kerning first=89 second=113 amount=-3 -kerning first=8211 second=235 amount=4 -kerning first=267 second=322 amount=-1 -kerning first=356 second=260 amount=-13 -kerning first=8212 second=375 amount=2 -kerning first=71 second=296 amount=3 -kerning first=360 second=210 amount=2 -kerning first=295 second=349 amount=1 -kerning first=75 second=246 amount=-10 -kerning first=256 second=235 amount=-12 -kerning first=102 second=103 amount=-6 -kerning first=237 second=248 amount=1 -kerning first=368 second=80 amount=-2 -kerning first=195 second=324 amount=-13 -kerning first=198 second=104 amount=-2 -kerning first=80 second=336 amount=3 -kerning first=103 second=273 amount=5 -kerning first=199 second=274 amount=-2 -kerning first=84 second=286 amount=-2 -kerning first=87 second=66 amount=-6 -kerning first=222 second=211 amount=4 -kerning first=107 second=223 amount=3 -kerning first=245 second=118 amount=-2 -kerning first=330 second=106 amount=-12 -kerning first=68 second=79 amount=4 -kerning first=354 second=213 amount=-2 -kerning first=269 second=225 amount=1 -kerning first=374 second=340 amount=-1 -kerning first=312 second=289 amount=2 -kerning first=355 second=353 amount=1 -kerning first=296 second=82 amount=-2 -kerning first=192 second=107 amount=-12 -kerning first=74 second=339 amount=-5 -kerning first=340 second=316 amount=-2 -kerning first=258 second=108 amount=-12 -kerning first=193 second=277 amount=-12 -kerning first=78 second=289 amount=2 -kerning first=101 second=226 amount=2 -kerning first=121 second=353 amount=2 -kerning first=197 second=227 amount=-10 -kerning first=302 second=342 amount=-2 -kerning first=217 second=354 amount=-6 -kerning first=240 second=291 amount=2 -kerning first=348 second=216 amount=3 -kerning first=263 second=228 amount=1 -kerning first=283 second=355 amount=-1 -kerning first=198 second=367 amount=-6 -kerning first=329 second=229 amount=2 -kerning first=244 second=241 amount=-2 -kerning first=287 second=305 amount=3 -kerning first=67 second=202 amount=-2 -kerning first=290 second=85 amount=4 -kerning first=225 second=254 amount=-1 -kerning first=356 second=86 amount=-1 -kerning first=8212 second=231 amount=4 -kerning first=268 second=318 amount=2 -kerning first=376 second=243 amount=-4 -kerning first=68 second=342 amount=-3 -kerning first=206 second=267 amount=-2 -kerning first=272 second=268 amount=4 -kerning first=318 second=112 amount=-11 -kerning first=300 second=295 amount=-2 -kerning first=80 second=192 amount=-14 -kerning first=103 second=99 amount=2 -kerning first=343 second=359 amount=-1 -kerning first=258 second=371 amount=-13 -kerning first=284 second=88 amount=1 -kerning first=196 second=320 amount=-12 -kerning first=84 second=112 amount=-6 -kerning first=219 second=257 amount=2 -kerning first=304 second=245 amount=-2 -kerning first=347 second=309 amount=-9 -kerning first=197 second=8211 amount=-12 -kerning first=200 second=270 amount=-5 -kerning first=85 second=282 amount=-6 -kerning first=328 second=322 amount=-1 -kerning first=246 second=114 amount=-2 -kerning first=351 second=259 amount=3 -kerning first=374 second=196 amount=-3 -kerning first=309 second=335 amount=1 -kerning first=224 second=347 amount=1 -kerning first=312 second=115 amount=1 -kerning first=109 second=359 amount=-1 -kerning first=8211 second=324 amount=2 -kerning first=70 second=245 amount=-4 -kerning first=356 second=349 amount=-10 -kerning first=271 second=361 amount=-9 -kerning first=74 second=195 amount=-8 -kerning first=117 second=259 amount=2 -kerning first=275 second=311 amount=-1 -kerning first=193 second=103 amount=-10 -kerning first=298 second=248 amount=-2 -kerning first=75 second=335 amount=-10 -kerning first=256 second=324 amount=-13 -kerning first=259 second=104 amount=-1 -kerning first=194 second=273 amount=-10 -kerning first=82 second=65 amount=3 -kerning first=237 second=337 amount=1 -kerning first=122 second=349 amount=1 -kerning first=260 second=274 amount=-10 -kerning first=368 second=199 amount=2 -kerning first=241 second=287 amount=2 -kerning first=84 second=375 amount=-10 -kerning first=330 second=225 amount=2 -kerning first=245 second=237 amount=-2 -kerning first=373 second=289 amount=5 -kerning first=376 second=69 amount=-4 -kerning first=68 second=198 amount=-10 -kerning first=354 second=302 amount=-2 -kerning first=269 second=314 amount=-1 -kerning first=207 second=263 amount=-2 -kerning first=234 second=120 amount=-2 -kerning first=339 second=265 amount=1 -kerning first=254 second=277 amount=2 -kerning first=362 second=202 amount=-6 -kerning first=192 second=226 amount=-10 -kerning first=300 second=121 amount=-2 -kerning first=77 second=238 amount=1 -kerning first=258 second=227 amount=-10 -kerning first=278 second=354 amount=-5 -kerning first=301 second=291 amount=2 -kerning first=324 second=228 amount=2 -kerning first=239 second=240 amount=2 -kerning first=344 second=355 amount=-2 -kerning first=197 second=316 amount=-12 -kerning first=105 second=265 amount=1 -kerning first=286 second=254 amount=2 -kerning first=89 second=58 amount=-5 -kerning first=329 second=318 amount=-1 -kerning first=44 second=354 amount=-10 -kerning first=290 second=204 amount=3 -kerning first=110 second=355 amount=-1 -kerning first=356 second=205 amount=-2 -kerning first=376 second=332 amount=-1 -kerning first=206 second=356 amount=-2 -kerning first=229 second=293 amount=-1 -kerning first=357 second=345 amount=-9 -kerning first=298 second=74 amount=-2 -kerning first=72 second=381 amount=4 -kerning first=318 second=231 amount=-9 -kerning first=98 second=98 amount=3 -kerning first=233 second=243 amount=1 -kerning first=338 second=358 amount=-4 -kerning first=361 second=295 amount=-1 -kerning first=194 second=99 amount=-12 -kerning first=257 second=320 amount=-1 -kerning first=260 second=100 amount=-10 -kerning first=195 second=269 amount=-12 -kerning first=238 second=333 amount=1 -kerning first=241 second=113 amount=2 -kerning first=346 second=258 amount=-9 -kerning first=258 second=8211 amount=-12 -kerning first=284 second=207 amount=3 -kerning first=84 second=231 amount=-7 -kerning first=327 second=271 amount=2 -kerning first=350 second=208 amount=-3 -kerning first=45 second=87 amount=3 -kerning first=373 second=115 amount=1 -kerning first=285 second=347 amount=2 -kerning first=65 second=244 amount=-12 -kerning first=374 second=285 amount=-3 -kerning first=289 second=297 amount=3 -kerning first=204 second=309 amount=-14 -kerning first=312 second=234 amount=1 -kerning first=358 second=78 amount=-1 -kerning first=73 second=114 amount=-2 -kerning first=208 second=259 amount=2 -kerning first=90 second=8212 amount=-6 -kerning first=254 second=103 amount=5 -kerning first=359 second=248 amount=1 -kerning first=320 second=104 amount=-2 -kerning first=235 second=116 amount=-1 -kerning first=193 second=222 amount=-17 -kerning first=298 second=337 amount=-2 -kerning first=98 second=361 amount=2 -kerning first=364 second=338 amount=2 -kerning first=325 second=224 amount=2 -kerning first=345 second=351 amount=-2 -kerning first=260 second=363 amount=-13 -kerning first=368 second=288 amount=2 -kerning first=286 second=80 amount=-2 -kerning first=198 second=312 amount=-7 -kerning first=86 second=104 amount=3 -kerning first=106 second=261 amount=1 -kerning first=349 second=301 amount=1 -kerning first=352 second=81 amount=3 -kerning first=44 second=210 amount=-3 -kerning first=287 second=250 amount=2 -kerning first=87 second=274 amount=-6 -kerning first=245 second=326 amount=-2 -kerning first=248 second=106 amount=-13 -kerning first=353 second=251 amount=1 -kerning first=68 second=287 amount=2 -kerning first=71 second=67 amount=3 -kerning first=272 second=213 amount=4 -kerning first=292 second=340 amount=-2 -kerning first=230 second=289 amount=2 -kerning first=115 second=301 amount=1 -kerning first=358 second=341 amount=-6 -kerning first=273 second=353 amount=1 -kerning first=211 second=302 amount=3 -kerning first=119 second=251 amount=2 -kerning first=362 second=291 amount=2 -kerning first=192 second=315 amount=-7 -kerning first=346 second=84 amount=-3 -kerning first=258 second=316 amount=-12 -kerning first=58 second=340 amount=-4 -kerning first=196 second=265 amount=-12 -kerning first=219 second=202 amount=-6 -kerning first=327 second=97 amount=2 -kerning first=239 second=329 amount=-2 -kerning first=242 second=109 amount=-2 -kerning first=65 second=70 amount=-17 -kerning first=85 second=227 amount=2 -kerning first=220 second=342 amount=-2 -kerning first=223 second=122 amount=-1 -kerning first=374 second=111 amount=-4 -kerning first=66 second=240 amount=3 -kerning first=86 second=367 amount=2 -kerning first=352 second=344 amount=-3 -kerning first=8211 second=269 amount=4 -kerning first=375 second=281 amount=3 -kerning first=290 second=293 amount=2 -kerning first=208 second=85 amount=2 -kerning first=333 second=357 amount=-1 -kerning first=248 second=369 amount=-2 -kerning first=74 second=110 amount=-4 -kerning first=337 second=307 amount=-2 -kerning first=160 second=216 amount=-3 -kerning first=75 second=280 amount=-9 -kerning first=213 second=205 amount=3 -kerning first=341 second=257 amount=-2 -kerning first=256 second=269 amount=-12 -kerning first=299 second=333 amount=1 -kerning first=319 second=8211 amount=-5 -kerning first=99 second=357 amount=-1 -kerning first=195 second=358 amount=-20 -kerning first=303 second=283 amount=1 -kerning first=103 second=307 amount=3 -kerning first=261 second=359 amount=-1 -kerning first=284 second=296 amount=3 -kerning first=202 second=88 amount=3 -kerning first=307 second=233 amount=1 -kerning first=84 second=320 amount=-3 -kerning first=87 second=100 amount=2 -kerning first=107 second=257 amount=2 -kerning first=265 second=309 amount=-11 -kerning first=45 second=206 amount=-5 -kerning first=268 second=89 amount=4 -kerning first=373 second=234 amount=4 -kerning first=65 second=333 amount=-12 -kerning first=68 second=113 amount=2 -kerning first=88 second=270 amount=-2 -kerning first=246 second=322 amount=-1 -kerning first=269 second=259 amount=1 -kerning first=230 second=115 amount=1 -kerning first=112 second=347 amount=2 -kerning first=358 second=197 amount=-13 -kerning first=296 second=116 amount=-2 -kerning first=73 second=233 amount=-2 -kerning first=316 second=273 amount=2 -kerning first=231 second=285 amount=1 -kerning first=359 second=337 amount=1 -kerning first=212 second=298 amount=3 -kerning first=320 second=223 amount=3 -kerning first=235 second=235 amount=1 -kerning first=363 second=287 amount=2 -kerning first=366 second=67 amount=2 -kerning first=193 second=311 amount=-12 -kerning first=259 second=312 amount=-1 -kerning first=59 second=336 amount=-3 -kerning first=243 second=105 amount=-2 -kerning first=368 second=377 amount=4 -kerning first=66 second=66 amount=-4 -kerning first=309 second=106 amount=-2 -kerning first=86 second=223 amount=5 -kerning first=221 second=338 amount=-1 -kerning first=352 second=200 amount=-3 -kerning first=287 second=339 amount=2 -kerning first=356 second=120 amount=-13 -kerning first=8212 second=265 amount=4 -kerning first=291 second=289 amount=5 -kerning first=294 second=69 amount=-6 -kerning first=206 second=301 amount=-2 -kerning first=209 second=81 amount=3 -kerning first=360 second=70 amount=-2 -kerning first=361 second=240 amount=2 -kerning first=194 second=44 amount=-10 -kerning first=260 second=45 amount=-12 -kerning first=280 second=202 amount=-5 -kerning first=195 second=214 amount=-11 -kerning first=300 second=329 amount=-4 -kerning first=323 second=266 amount=3 -kerning first=100 second=353 amount=1 -kerning first=346 second=203 amount=-3 -kerning first=196 second=354 amount=-20 -kerning first=304 second=279 amount=-2 -kerning first=219 second=291 amount=2 -kerning first=222 second=71 amount=4 -kerning first=327 second=216 amount=3 -kerning first=262 second=355 amount=2 -kerning first=370 second=280 amount=-6 -kerning first=203 second=84 amount=-5 -kerning first=351 second=293 amount=1 -kerning first=354 second=73 amount=-2 -kerning first=374 second=230 amount=-3 -kerning first=46 second=202 amount=-4 -kerning first=289 second=242 amount=2 -kerning first=66 second=329 amount=-1 -kerning first=69 second=109 amount=-2 -kerning first=204 second=254 amount=-2 -kerning first=89 second=266 amount=-1 -kerning first=8211 second=358 amount=-7 -kerning first=70 second=279 amount=-6 -kerning first=316 second=99 amount=1 -kerning first=231 second=111 amount=-1 -kerning first=74 second=229 amount=-5 -kerning first=209 second=344 amount=-2 -kerning first=232 second=281 amount=1 -kerning first=117 second=293 amount=-1 -kerning first=363 second=113 amount=2 -kerning first=75 second=369 amount=-8 -kerning first=236 second=231 amount=1 -kerning first=121 second=243 amount=3 -kerning first=256 second=358 amount=-20 -kerning first=279 second=295 amount=-1 -kerning first=197 second=87 amount=-7 -kerning first=302 second=232 amount=-2 -kerning first=283 second=245 amount=1 -kerning first=198 second=257 amount=-3 -kerning first=221 second=194 amount=-3 -kerning first=326 second=309 amount=-10 -kerning first=349 second=246 amount=1 -kerning first=222 second=334 amount=4 -kerning first=330 second=259 amount=2 -kerning first=242 second=8212 amount=3 -kerning first=268 second=208 amount=-2 -kerning first=376 second=103 amount=-3 -kerning first=291 second=115 amount=2 -kerning first=354 second=336 amount=-2 -kerning first=292 second=285 amount=2 -kerning first=207 second=297 amount=-2 -kerning first=315 second=222 amount=-4 -kerning first=230 second=234 amount=1 -kerning first=115 second=246 amount=1 -kerning first=358 second=286 amount=-2 -kerning first=296 second=235 amount=-2 -kerning first=73 second=322 amount=-2 -kerning first=254 second=311 amount=3 -kerning first=277 second=248 amount=1 -kerning first=192 second=260 amount=-7 -kerning first=320 second=312 amount=-2 -kerning first=196 second=210 amount=-11 -kerning first=304 second=105 amount=-2 -kerning first=101 second=349 amount=1 -kerning first=285 second=118 amount=2 -kerning first=197 second=350 amount=-8 -kerning first=220 second=287 amount=2 -kerning first=351 second=119 amount=1 -kerning first=263 second=351 amount=1 -kerning first=204 second=80 amount=-2 -kerning first=309 second=225 amount=2 -kerning first=86 second=312 amount=3 -kerning first=8211 second=214 amount=5 -kerning first=270 second=81 amount=4 -kerning first=375 second=226 amount=7 -kerning first=67 second=325 amount=4 -kerning first=70 second=105 amount=-1 -kerning first=205 second=250 amount=-2 -kerning first=248 second=314 amount=-1 -kerning first=356 second=239 amount=-2 -kerning first=8212 second=354 amount=-7 -kerning first=71 second=275 amount=3 -kerning first=209 second=200 amount=-6 -kerning first=232 second=107 amount=-1 -kerning first=337 second=252 amount=-2 -kerning first=114 second=339 amount=-2 -kerning first=298 second=108 amount=-2 -kerning first=75 second=225 amount=-7 -kerning first=318 second=265 amount=-9 -kerning first=233 second=277 amount=1 -kerning first=118 second=289 amount=5 -kerning first=256 second=214 amount=-11 -kerning first=361 second=329 amount=-3 -kerning first=217 second=70 amount=-2 -kerning first=237 second=227 amount=2 -kerning first=342 second=342 amount=-8 -kerning first=198 second=83 amount=-3 -kerning first=303 second=228 amount=2 -kerning first=218 second=240 amount=2 -kerning first=103 second=252 amount=2 -kerning first=264 second=84 amount=-2 -kerning first=369 second=229 amount=2 -kerning first=84 second=265 amount=-7 -kerning first=265 second=254 amount=-1 -kerning first=45 second=121 amount=2 -kerning first=65 second=278 amount=-10 -kerning first=68 second=58 amount=-3 -kerning first=203 second=203 amount=-5 -kerning first=354 second=192 amount=-13 -kerning first=374 second=319 amount=-3 -kerning first=289 second=331 amount=2 -kerning first=89 second=355 amount=-2 -kerning first=358 second=112 amount=-6 -kerning first=270 second=344 amount=-3 -kerning first=211 second=73 amount=3 -kerning first=192 second=86 amount=-7 -kerning first=258 second=87 amount=-7 -kerning first=278 second=244 amount=-2 -kerning first=193 second=256 amount=-7 -kerning first=298 second=371 amount=-2 -kerning first=78 second=268 amount=3 -kerning first=239 second=100 amount=2 -kerning first=259 second=257 amount=2 -kerning first=197 second=206 amount=-7 -kerning first=220 second=113 amount=2 -kerning first=348 second=195 amount=-9 -kerning first=198 second=346 amount=-3 -kerning first=83 second=358 amount=-3 -kerning first=349 second=335 amount=1 -kerning first=372 second=272 amount=-6 -kerning first=90 second=88 amount=3 -kerning first=353 second=285 amount=3 -kerning first=356 second=65 amount=-13 -kerning first=8212 second=210 amount=5 -kerning first=376 second=222 amount=-1 -kerning first=291 second=234 amount=2 -kerning first=71 second=101 amount=3 -kerning first=206 second=246 amount=-2 -kerning first=334 second=298 amount=3 -kerning first=357 second=235 amount=-9 -kerning first=72 second=271 amount=2 -kerning first=233 second=103 amount=2 -kerning first=115 second=335 amount=1 -kerning first=118 second=115 amount=2 -kerning first=358 second=375 amount=-10 -kerning first=296 second=324 amount=-2 -kerning first=234 second=273 amount=2 -kerning first=342 second=198 amount=3 -kerning first=119 second=285 amount=5 -kerning first=277 second=337 amount=1 -kerning first=280 second=117 amount=-2 -kerning first=192 second=349 amount=-11 -kerning first=218 second=66 amount=-6 -kerning first=323 second=211 amount=3 -kerning first=238 second=223 amount=3 -kerning first=258 second=350 amount=-8 -kerning first=281 second=287 amount=2 -kerning first=324 second=351 amount=1 -kerning first=350 second=68 amount=-3 -kerning first=262 second=300 amount=3 -kerning first=370 second=225 amount=2 -kerning first=285 second=237 amount=3 -kerning first=65 second=104 amount=-12 -kerning first=351 second=238 amount=1 -kerning first=66 second=274 amount=-4 -kerning first=89 second=211 amount=-1 -kerning first=227 second=106 amount=-10 -kerning first=112 second=118 amount=2 -kerning first=8211 second=303 amount=2 -kerning first=270 second=200 amount=-6 -kerning first=70 second=224 amount=-3 -kerning first=205 second=339 amount=-2 -kerning first=356 second=328 amount=-6 -kerning first=359 second=108 amount=-1 -kerning first=209 second=289 amount=2 -kerning first=232 second=226 amount=2 -kerning first=360 second=278 amount=-6 -kerning first=278 second=70 amount=-6 -kerning first=193 second=82 amount=-17 -kerning first=75 second=314 amount=-7 -kerning first=98 second=251 amount=2 -kerning first=341 second=291 amount=-2 -kerning first=364 second=228 amount=2 -kerning first=279 second=240 amount=2 -kerning first=325 second=84 amount=-6 -kerning first=198 second=202 amount=-2 -kerning first=83 second=214 amount=3 -kerning first=221 second=109 amount=-5 -kerning first=326 second=254 amount=-1 -kerning first=264 second=203 amount=-2 -kerning first=44 second=70 amount=-4 -kerning first=369 second=318 amount=-1 -kerning first=287 second=110 amount=2 -kerning first=199 second=342 amount=-4 -kerning first=307 second=267 amount=1 -kerning first=84 second=354 amount=-8 -kerning first=107 second=291 amount=2 -kerning first=353 second=111 amount=1 -kerning first=45 second=240 amount=4 -kerning first=65 second=367 amount=-13 -kerning first=226 second=229 amount=2 -kerning first=111 second=241 amount=-2 -kerning first=354 second=281 amount=-7 -kerning first=269 second=293 amount=-1 -kerning first=72 second=97 amount=2 -kerning first=207 second=242 amount=-2 -kerning first=358 second=231 amount=-7 -kerning first=273 second=243 amount=1 -kerning first=73 second=267 amount=-2 -kerning first=234 second=99 amount=1 -kerning first=339 second=244 amount=1 -kerning first=119 second=111 amount=4 -kerning first=192 second=205 amount=-7 -kerning first=258 second=206 amount=-7 -kerning first=278 second=333 amount=-2 -kerning first=281 second=113 amount=2 -kerning first=193 second=345 amount=-12 -kerning first=347 second=114 amount=1 -kerning first=367 second=271 amount=2 -kerning first=197 second=295 amount=-12 -kerning first=85 second=87 amount=2 -kerning first=105 second=244 amount=1 -kerning first=240 second=359 amount=-1 -kerning first=348 second=284 amount=3 -kerning first=66 second=100 amount=3 -kerning first=201 second=245 amount=-2 -kerning first=86 second=257 amount=6 -kerning first=267 second=246 amount=-1 -kerning first=287 second=373 amount=2 -kerning first=67 second=270 amount=-2 -kerning first=313 second=90 amount=2 -kerning first=225 second=322 amount=-1 -kerning first=8212 second=299 amount=2 -kerning first=376 second=311 amount=-2 -kerning first=294 second=103 amount=2 -kerning first=206 second=335 amount=-2 -kerning first=357 second=324 amount=-9 -kerning first=272 second=336 amount=4 -kerning first=275 second=116 amount=-1 -kerning first=295 second=273 amount=2 -kerning first=118 second=234 amount=4 -kerning first=194 second=78 amount=-15 -kerning first=299 second=223 amount=3 -kerning first=260 second=79 amount=-11 -kerning first=365 second=224 amount=2 -kerning first=195 second=248 amount=-12 -kerning first=80 second=260 amount=-14 -kerning first=300 second=363 amount=-2 -kerning first=84 second=210 amount=-2 -kerning first=222 second=105 amount=2 -kerning first=45 second=66 amount=-7 -kerning first=285 second=326 amount=2 -kerning first=65 second=223 amount=-10 -kerning first=203 second=118 amount=-2 -kerning first=223 second=275 amount=1 -kerning first=108 second=287 amount=2 -kerning first=354 second=107 amount=-3 -kerning first=269 second=119 amount=-1 -kerning first=374 second=264 amount=-1 -kerning first=227 second=225 amount=2 -kerning first=335 second=120 amount=-2 -kerning first=112 second=237 amount=2 -kerning first=270 second=289 amount=2 -kerning first=70 second=313 amount=-4 -kerning first=359 second=227 amount=2 -kerning first=74 second=263 amount=-5 -kerning first=120 second=107 amount=-1 -kerning first=193 second=201 amount=-10 -kerning first=298 second=316 amount=-2 -kerning first=78 second=213 amount=3 -kerning first=101 second=120 amount=-2 -kerning first=236 second=265 amount=1 -kerning first=121 second=277 amount=3 -kerning first=367 second=97 amount=2 -kerning first=282 second=109 amount=-2 -kerning first=194 second=341 amount=-12 -kerning first=197 second=121 amount=-4 -kerning first=217 second=278 amount=-6 -kerning first=325 second=203 amount=-6 -kerning first=260 second=342 amount=-17 -kerning first=283 second=279 amount=1 -kerning first=198 second=291 amount=-3 -kerning first=221 second=228 amount=-3 -kerning first=106 second=240 amount=2 -kerning first=241 second=355 amount=-1 -kerning first=287 second=229 amount=5 -kerning first=353 second=230 amount=2 -kerning first=373 second=357 amount=5 -kerning first=68 second=266 amount=4 -kerning first=226 second=318 amount=-1 -kerning first=229 second=98 amount=-1 -kerning first=272 second=192 amount=-8 -kerning first=207 second=331 amount=-2 -kerning first=358 second=320 amount=-3 -kerning first=361 second=100 amount=2 -kerning first=296 second=269 amount=-2 -kerning first=73 second=356 amount=-2 -kerning first=339 second=333 amount=1 -kerning first=119 second=230 amount=2 -kerning first=362 second=270 amount=-6 -kerning first=195 second=74 amount=-9 -kerning first=100 second=243 amount=1 -kerning first=343 second=283 amount=-2 -kerning first=258 second=295 amount=-12 -kerning first=281 second=232 amount=1 -kerning first=196 second=244 amount=-12 -kerning first=347 second=233 amount=1 -kerning first=305 second=309 amount=-11 -kerning first=223 second=101 amount=1 -kerning first=105 second=333 amount=1 -kerning first=108 second=113 amount=2 -kerning first=374 second=90 amount=-2 -kerning first=286 second=322 amount=2 -kerning first=204 second=114 amount=-2 -kerning first=309 second=259 amount=2 -kerning first=224 second=271 amount=2 -kerning first=355 second=103 amount=2 -kerning first=8211 second=248 amount=4 -kerning first=267 second=335 amount=-1 -kerning first=290 second=272 amount=-2 -kerning first=67 second=359 amount=2 -kerning first=113 second=233 amount=1 -kerning first=356 second=273 amount=-10 -kerning first=271 second=285 amount=-8 -kerning first=71 second=309 amount=-10 -kerning first=294 second=222 amount=-2 -kerning first=360 second=223 amount=2 -kerning first=160 second=195 amount=-3 -kerning first=275 second=235 amount=1 -kerning first=75 second=259 amount=-7 -kerning first=318 second=299 amount=-3 -kerning first=233 second=311 amount=-1 -kerning first=121 second=103 amount=7 -kerning first=256 second=248 amount=-12 -kerning first=276 second=375 amount=-3 -kerning first=194 second=197 amount=-7 -kerning first=260 second=198 amount=-6 -kerning first=195 second=337 amount=-12 -kerning first=198 second=117 amount=-6 -kerning first=218 second=274 amount=-6 -kerning first=349 second=106 amount=-9 -kerning first=84 second=299 amount=-2 -kerning first=87 second=79 amount=2 -kerning first=350 second=276 amount=-3 -kerning first=268 second=68 amount=-2 -kerning first=65 second=312 amount=-12 -kerning first=331 second=289 amount=2 -kerning first=246 second=301 amount=-2 -kerning first=354 second=226 amount=-10 -kerning first=46 second=325 amount=-5 -kerning first=374 second=353 amount=-4 -kerning first=289 second=365 amount=2 -kerning first=315 second=82 amount=-4 -kerning first=227 second=314 amount=-1 -kerning first=112 second=326 amount=2 -kerning first=115 second=106 amount=-9 -kerning first=359 second=316 amount=-1 -kerning first=274 second=328 amount=-2 -kerning first=277 second=108 amount=-1 -kerning first=192 second=120 amount=-14 -kerning first=97 second=289 amount=2 -kerning first=340 second=329 amount=-2 -kerning first=120 second=226 amount=2 -kerning first=258 second=121 amount=-4 -kerning first=278 second=278 amount=-5 -kerning first=193 second=290 amount=-11 -kerning first=196 second=70 amount=-17 -kerning first=259 second=291 amount=2 -kerning first=197 second=240 amount=-10 -kerning first=302 second=355 amount=-2 -kerning first=368 second=356 amount=-6 -kerning first=66 second=45 amount=5 -kerning first=224 second=97 amount=2 -kerning first=106 second=329 amount=-2 -kerning first=244 second=254 amount=-1 -kerning first=349 second=369 amount=1 -kerning first=8211 second=74 amount=-7 -kerning first=44 second=278 amount=-4 -kerning first=287 second=318 amount=2 -kerning first=290 second=98 amount=2 -kerning first=205 second=110 amount=-2 -kerning first=87 second=342 amount=-2 -kerning first=356 second=99 amount=-7 -kerning first=8212 second=244 amount=4 -kerning first=271 second=111 amount=-9 -kerning first=376 second=256 amount=-3 -kerning first=337 second=112 amount=-2 -kerning first=114 second=229 amount=-2 -kerning first=357 second=269 amount=-9 -kerning first=75 second=85 amount=-3 -kerning first=230 second=357 amount=-1 -kerning first=338 second=282 amount=-4 -kerning first=115 second=369 amount=1 -kerning first=256 second=74 amount=-9 -kerning first=296 second=358 amount=-2 -kerning first=195 second=193 amount=-7 -kerning first=218 second=100 amount=2 -kerning first=103 second=112 amount=2 -kerning first=238 second=257 amount=2 -kerning first=196 second=333 amount=-12 -kerning first=216 second=8211 amount=3 -kerning first=219 second=270 amount=-6 -kerning first=347 second=322 amount=1 -kerning first=370 second=259 amount=2 -kerning first=285 second=271 amount=5 -kerning first=331 second=115 amount=1 -kerning first=108 second=232 amount=1 -kerning first=69 second=88 amount=3 -kerning first=204 second=233 amount=-2 -kerning first=89 second=245 amount=-4 -kerning first=8211 second=337 amount=4 -kerning first=70 second=258 amount=-12 -kerning first=205 second=373 amount=-2 -kerning first=113 second=322 amount=-1 -kerning first=54 second=51 amount=2 -kerning first=74 second=208 amount=-5 -kerning first=97 second=115 amount=1 -kerning first=337 second=375 amount=-2 -kerning first=160 second=284 amount=-3 -kerning first=193 second=116 amount=-12 -kerning first=98 second=285 amount=5 -kerning first=256 second=337 amount=-12 -kerning first=364 second=262 amount=2 -kerning first=194 second=286 amount=-11 -kerning first=197 second=66 amount=-8 -kerning first=79 second=298 amount=3 -kerning first=217 second=223 amount=2 -kerning first=102 second=235 amount=-8 -kerning first=345 second=275 amount=-2 -kerning first=260 second=287 amount=-10 -kerning first=368 second=212 amount=2 -kerning first=283 second=224 amount=2 -kerning first=198 second=236 amount=-7 -kerning first=303 second=351 amount=1 -kerning first=103 second=375 amount=2 -kerning first=349 second=225 amount=3 -kerning first=245 second=250 amount=-2 -kerning first=8212 second=70 amount=-7 -kerning first=376 second=82 amount=-1 -kerning first=45 second=274 amount=-7 -kerning first=48 second=54 amount=2 -kerning first=68 second=211 amount=4 -kerning first=203 second=326 amount=-2 -kerning first=206 second=106 amount=-14 -kerning first=88 second=338 amount=-4 -kerning first=354 second=315 amount=-1 -kerning first=335 second=328 amount=-2 -kerning first=115 second=225 amount=3 -kerning first=358 second=265 amount=-7 -kerning first=73 second=301 amount=-2 -kerning first=231 second=353 amount=1 -kerning first=277 second=227 amount=2 -kerning first=323 second=71 amount=3 -kerning first=343 second=228 amount=-2 -kerning first=258 second=240 amount=-10 -kerning first=363 second=355 amount=-1 -kerning first=278 second=367 amount=-2 -kerning first=58 second=264 amount=-3 -kerning first=193 second=379 amount=-7 -kerning first=304 second=84 amount=-2 -kerning first=104 second=108 amount=-1 -kerning first=370 second=85 amount=2 -kerning first=285 second=97 amount=5 -kerning first=197 second=329 amount=-19 -kerning first=200 second=109 amount=-2 -kerning first=325 second=381 amount=4 -kerning first=351 second=98 amount=1 -kerning first=86 second=291 amount=6 -kerning first=89 second=71 amount=-1 -kerning first=109 second=228 amount=2 -kerning first=352 second=268 amount=3 -kerning first=8211 second=193 amount=-13 -kerning first=67 second=304 amount=3 -kerning first=70 second=84 amount=-9 -kerning first=248 second=293 amount=-1 -kerning first=8212 second=333 amount=4 -kerning first=376 second=345 amount=-5 -kerning first=291 second=357 amount=2 -kerning first=71 second=254 amount=2 -kerning first=206 second=369 amount=-2 -kerning first=114 second=318 amount=-1 -kerning first=117 second=98 amount=-1 -kerning first=318 second=244 amount=-9 -kerning first=98 second=111 amount=2 -kerning first=256 second=193 amount=-7 -kerning first=364 second=88 amount=3 -kerning first=279 second=100 amount=2 -kerning first=299 second=257 amount=2 -kerning first=76 second=344 amount=-4 -kerning first=345 second=101 amount=-2 -kerning first=260 second=113 amount=-10 -kerning first=280 second=270 amount=-5 -kerning first=195 second=282 amount=-10 -kerning first=323 second=334 amount=3 -kerning first=103 second=231 amount=2 -kerning first=304 second=347 amount=-2 -kerning first=84 second=244 amount=-7 -kerning first=327 second=284 amount=3 -kerning first=45 second=100 amount=4 -kerning first=65 second=257 amount=-10 -kerning first=88 second=194 amount=-5 -kerning first=223 second=309 amount=-12 -kerning first=351 second=361 amount=1 -kerning first=46 second=270 amount=-3 -kerning first=292 second=90 amount=4 -kerning first=204 second=322 amount=-2 -kerning first=207 second=102 amount=-3 -kerning first=89 second=334 amount=-1 -kerning first=227 second=259 amount=2 -kerning first=112 second=271 amount=5 -kerning first=355 second=311 amount=-1 -kerning first=273 second=103 amount=2 -kerning first=70 second=347 amount=-4 -kerning first=208 second=272 amount=-6 -kerning first=339 second=104 amount=-1 -kerning first=254 second=116 amount=3 -kerning first=192 second=65 amount=-7 -kerning first=74 second=297 amount=-1 -kerning first=232 second=349 amount=1 -kerning first=258 second=66 amount=-8 -kerning first=278 second=223 amount=3 -kerning first=193 second=235 amount=-12 -kerning first=121 second=311 amount=3 -kerning first=194 second=375 amount=-4 -kerning first=82 second=197 amount=3 -kerning first=102 second=324 amount=-7 -kerning first=86 second=117 amount=2 -kerning first=221 second=262 amount=-1 -kerning first=349 second=314 amount=1 -kerning first=267 second=106 amount=-11 -kerning first=287 second=263 amount=2 -kerning first=87 second=287 amount=2 -kerning first=333 second=107 amount=-1 -kerning first=110 second=224 amount=2 -kerning first=248 second=119 amount=-2 -kerning first=356 second=44 amount=-15 -kerning first=268 second=276 amount=-2 -kerning first=45 second=363 amount=2 -kerning first=376 second=201 amount=-4 -kerning first=71 second=80 amount=-2 -kerning first=272 second=226 amount=2 -kerning first=207 second=365 amount=-2 -kerning first=115 second=314 amount=1 -kerning first=358 second=354 amount=-8 -kerning first=296 second=303 amount=-2 -kerning first=277 second=316 amount=-1 -kerning first=192 second=328 amount=-13 -kerning first=195 second=108 amount=-12 -kerning first=77 second=340 amount=-4 -kerning first=80 second=120 amount=-2 -kerning first=300 second=253 amount=-2 -kerning first=100 second=277 amount=1 -kerning first=258 second=329 amount=-19 -kerning first=196 second=278 amount=-10 -kerning first=84 second=70 amount=-5 -kerning first=104 second=227 amount=2 -kerning first=347 second=267 amount=1 -kerning first=65 second=83 amount=-8 -kerning first=85 second=240 amount=2 -kerning first=286 second=356 amount=-2 -kerning first=112 second=97 amount=5 -kerning first=8211 second=282 amount=-7 -kerning first=70 second=203 amount=-9 -kerning first=205 second=318 amount=-2 -kerning first=113 second=267 amount=1 -kerning first=356 second=307 amount=-2 -kerning first=71 second=343 amount=1 -kerning first=209 second=268 amount=3 -kerning first=337 second=320 amount=-1 -kerning first=360 second=257 amount=2 -kerning first=275 second=269 amount=1 -kerning first=75 second=293 amount=-7 -kerning first=318 second=333 amount=-9 -kerning first=98 second=230 amount=2 -kerning first=118 second=357 amount=5 -kerning first=256 second=282 amount=-10 -kerning first=194 second=231 amount=-12 -kerning first=365 second=347 amount=1 -kerning first=195 second=371 amount=-13 -kerning first=83 second=193 amount=-9 -kerning first=103 second=320 amount=2 -kerning first=106 second=100 amount=2 -kerning first=84 second=333 amount=-7 -kerning first=87 second=113 amount=2 -kerning first=222 second=258 amount=-13 -kerning first=307 second=246 amount=1 -kerning first=265 second=322 amount=-1 -kerning first=65 second=346 amount=-8 -kerning first=88 second=283 amount=-2 -kerning first=354 second=260 amount=-13 -kerning first=358 second=210 amount=-2 -kerning first=73 second=246 amount=-2 -kerning first=339 second=223 amount=4 -kerning first=254 second=235 amount=2 -kerning first=100 second=103 amount=2 -kerning first=235 second=248 amount=1 -kerning first=366 second=80 amount=-2 -kerning first=58 second=209 amount=-5 -kerning first=193 second=324 amount=-13 -kerning first=196 second=104 amount=-12 -kerning first=78 second=336 amount=3 -kerning first=101 second=273 amount=2 -kerning first=344 second=313 amount=3 -kerning first=197 second=274 amount=-10 -kerning first=85 second=66 amount=-6 -kerning first=328 second=106 amount=-10 -kerning first=105 second=223 amount=3 -kerning first=243 second=118 amount=-2 -kerning first=86 second=236 amount=3 -kerning first=221 second=351 amount=-4 -kerning first=352 second=213 amount=3 -kerning first=267 second=225 amount=1 -kerning first=372 second=340 amount=-2 -kerning first=375 second=120 amount=3 -kerning first=248 second=238 amount=-2 -kerning first=8212 second=278 amount=-7 -kerning first=376 second=290 amount=-1 -kerning first=294 second=82 amount=-2 -kerning first=71 second=199 amount=3 -kerning first=206 second=314 amount=-2 -kerning first=114 second=263 amount=-2 -kerning first=357 second=303 amount=-3 -kerning first=75 second=119 amount=-10 -kerning first=213 second=44 amount=-5 -kerning first=315 second=379 amount=2 -kerning first=256 second=108 amount=-12 -kerning first=319 second=329 amount=-3 -kerning first=99 second=226 amount=1 -kerning first=345 second=46 amount=-7 -kerning first=119 second=353 amount=2 -kerning first=260 second=58 amount=-10 -kerning first=195 second=227 amount=-10 -kerning first=80 second=239 amount=1 -kerning first=300 second=342 amount=-2 -kerning first=238 second=291 amount=2 -kerning first=346 second=216 amount=3 -kerning first=261 second=228 amount=2 -kerning first=281 second=355 amount=-1 -kerning first=196 second=367 amount=-13 -kerning first=222 second=84 amount=-9 -kerning first=327 second=229 amount=2 -kerning first=104 second=316 amount=-1 -kerning first=242 second=241 amount=-2 -kerning first=285 second=305 amount=3 -kerning first=65 second=202 amount=-10 -kerning first=88 second=109 amount=-3 -kerning first=354 second=86 amount=-1 -kerning first=266 second=318 amount=2 -kerning first=269 second=98 amount=-1 -kerning first=374 second=243 amount=-4 -kerning first=66 second=342 amount=-1 -kerning first=204 second=267 amount=-2 -kerning first=8211 second=371 amount=2 -kerning first=270 second=268 amount=4 -kerning first=74 second=242 amount=-5 -kerning first=298 second=295 amount=-2 -kerning first=101 second=99 amount=1 -kerning first=236 second=244 amount=1 -kerning first=341 second=359 amount=-1 -kerning first=256 second=371 amount=-13 -kerning first=282 second=88 amount=3 -kerning first=194 second=320 amount=-12 -kerning first=197 second=100 amount=-10 -kerning first=302 second=245 amount=-2 -kerning first=217 second=257 amount=2 -kerning first=102 second=269 amount=-8 -kerning first=345 second=309 amount=-10 -kerning first=195 second=8211 amount=-12 -kerning first=198 second=270 amount=-2 -kerning first=83 second=282 amount=-3 -kerning first=326 second=322 amount=-1 -kerning first=244 second=114 amount=-2 -kerning first=349 second=259 amount=3 -kerning first=307 second=335 amount=1 -kerning first=222 second=347 amount=1 -kerning first=330 second=272 amount=-6 -kerning first=376 second=116 amount=-2 -kerning first=311 second=285 amount=2 -kerning first=354 second=349 amount=-10 -kerning first=115 second=259 amount=3 -kerning first=358 second=299 amount=-2 -kerning first=273 second=311 amount=-1 -kerning first=296 second=248 amount=-2 -kerning first=73 second=335 amount=-2 -kerning first=254 second=324 amount=2 -kerning first=257 second=104 amount=-1 -kerning first=192 second=273 amount=-10 -kerning first=77 second=285 amount=1 -kerning first=80 second=65 amount=-14 -kerning first=235 second=337 amount=1 -kerning first=258 second=274 amount=-10 -kerning first=366 second=199 amount=2 -kerning first=196 second=223 amount=-10 -kerning first=304 second=118 amount=-2 -kerning first=239 second=287 amount=2 -kerning first=197 second=363 amount=-13 -kerning first=328 second=225 amount=2 -kerning first=243 second=237 amount=-2 -kerning first=371 second=289 amount=2 -kerning first=374 second=69 amount=-4 -kerning first=86 second=325 amount=2 -kerning first=89 second=105 amount=-3 -kerning first=8211 second=227 amount=4 -kerning first=267 second=314 amount=-1 -kerning first=375 second=239 amount=3 -kerning first=70 second=118 amount=-4 -kerning first=205 second=263 amount=-2 -kerning first=8212 second=367 amount=2 -kerning first=376 second=379 amount=-2 -kerning first=294 second=201 amount=-6 -kerning first=74 second=68 amount=-5 -kerning first=209 second=213 amount=3 -kerning first=232 second=120 amount=-2 -kerning first=360 second=202 amount=-6 -kerning first=298 second=121 amount=-2 -kerning first=75 second=238 amount=-7 -kerning first=256 second=227 amount=-10 -kerning first=276 second=354 amount=-5 -kerning first=299 second=291 amount=2 -kerning first=237 second=240 amount=2 -kerning first=342 second=355 amount=-2 -kerning first=195 second=316 amount=-12 -kerning first=80 second=328 amount=1 -kerning first=103 second=265 amount=2 -kerning first=284 second=254 amount=2 -kerning first=84 second=278 amount=-8 -kerning first=222 second=203 amount=-9 -kerning first=245 second=110 amount=-2 -kerning first=288 second=204 amount=3 -kerning first=65 second=291 amount=-10 -kerning first=68 second=71 amount=4 -kerning first=311 second=111 amount=1 -kerning first=354 second=205 amount=-2 -kerning first=374 second=332 amount=-1 -kerning first=204 second=356 amount=-2 -kerning first=312 second=281 amount=1 -kerning first=227 second=293 amount=-1 -kerning first=296 second=74 amount=-2 -kerning first=316 second=231 amount=1 -kerning first=231 second=243 amount=-1 -kerning first=359 second=295 amount=-1 -kerning first=382 second=232 amount=1 -kerning first=192 second=99 amount=-12 -kerning first=74 second=331 amount=-4 -kerning first=258 second=100 amount=-10 -kerning first=193 second=269 amount=-12 -kerning first=216 second=206 amount=3 -kerning first=236 second=333 amount=1 -kerning first=239 second=113 amount=2 -kerning first=344 second=258 amount=3 -kerning first=256 second=8211 amount=-12 -kerning first=325 second=271 amount=2 -kerning first=240 second=283 amount=1 -kerning first=348 second=208 amount=-3 -kerning first=371 second=115 amount=1 -kerning first=283 second=347 amount=1 -kerning first=198 second=359 amount=-2 -kerning first=372 second=285 amount=2 -kerning first=287 second=297 amount=3 -kerning first=202 second=309 amount=-10 -kerning first=245 second=373 amount=-2 -kerning first=356 second=78 amount=-1 -kerning first=68 second=334 amount=4 -kerning first=71 second=114 amount=1 -kerning first=88 second=8212 amount=-8 -kerning first=357 second=248 amount=-9 -kerning first=272 second=260 amount=-8 -kerning first=233 second=116 amount=-1 -kerning first=296 second=337 amount=-2 -kerning first=362 second=338 amount=2 -kerning first=323 second=224 amount=2 -kerning first=100 second=311 amount=-1 -kerning first=343 second=351 amount=-2 -kerning first=258 second=363 amount=-13 -kerning first=366 second=288 amount=2 -kerning first=284 second=80 amount=-2 -kerning first=196 second=312 amount=-12 -kerning first=304 second=237 amount=-2 -kerning first=84 second=104 amount=-3 -kerning first=347 second=301 amount=1 -kerning first=350 second=81 amount=3 -kerning first=285 second=250 amount=2 -kerning first=65 second=117 amount=-13 -kerning first=85 second=274 amount=-6 -kerning first=328 second=314 amount=-1 -kerning first=243 second=326 amount=-2 -kerning first=246 second=106 amount=-13 -kerning first=351 second=251 amount=1 -kerning first=66 second=287 amount=3 -kerning first=89 second=224 amount=-3 -kerning first=109 second=351 amount=1 -kerning first=270 second=213 amount=4 -kerning first=375 second=328 amount=3 -kerning first=290 second=340 amount=-4 -kerning first=70 second=237 amount=-1 -kerning first=228 second=289 amount=2 -kerning first=356 second=341 amount=-6 -kerning first=271 second=353 amount=-8 -kerning first=360 second=291 amount=2 -kerning first=318 second=367 amount=-9 -kerning first=344 second=84 amount=-8 -kerning first=256 second=316 amount=-12 -kerning first=194 second=265 amount=-12 -kerning first=197 second=45 amount=-12 -kerning first=217 second=202 amount=-6 -kerning first=325 second=97 amount=2 -kerning first=237 second=329 amount=-2 -kerning first=345 second=254 amount=-1 -kerning first=260 second=266 amount=-11 -kerning first=218 second=342 amount=-2 -kerning first=199 second=355 amount=2 -kerning first=84 second=367 amount=-6 -kerning first=350 second=344 amount=-3 -kerning first=373 second=281 amount=4 -kerning first=45 second=253 amount=2 -kerning first=311 second=230 amount=1 -kerning first=331 second=357 amount=-1 -kerning first=111 second=254 amount=-1 -kerning first=246 second=369 amount=-2 -kerning first=272 second=86 amount=2 -kerning first=335 second=307 amount=-2 -kerning first=358 second=244 amount=-7 -kerning first=211 second=205 amount=3 -kerning first=339 second=257 amount=2 -kerning first=254 second=269 amount=2 -kerning first=297 second=333 amount=1 -kerning first=97 second=357 amount=-1 -kerning first=193 second=358 amount=-20 -kerning first=301 second=283 amount=1 -kerning first=259 second=359 amount=-1 -kerning first=200 second=88 amount=3 -kerning first=82 second=320 amount=-2 -kerning first=85 second=100 amount=2 -kerning first=105 second=257 amount=2 -kerning first=263 second=309 amount=-11 -kerning first=266 second=89 amount=4 -kerning first=66 second=113 amount=3 -kerning first=83 second=8211 amount=4 -kerning first=267 second=259 amount=1 -kerning first=228 second=115 amount=1 -kerning first=110 second=347 amount=1 -kerning first=356 second=197 amount=-13 -kerning first=8212 second=312 amount=2 -kerning first=376 second=324 amount=-5 -kerning first=71 second=233 amount=3 -kerning first=229 second=285 amount=2 -kerning first=357 second=337 amount=-9 -kerning first=160 second=89 amount=-3 -kerning first=210 second=298 amount=3 -kerning first=318 second=223 amount=3 -kerning first=233 second=235 amount=1 -kerning first=361 second=287 amount=2 -kerning first=364 second=67 amount=2 -kerning first=257 second=312 amount=-1 -kerning first=366 second=377 amount=4 -kerning first=304 second=326 amount=-2 -kerning first=307 second=106 amount=-11 -kerning first=84 second=223 amount=1 -kerning first=222 second=118 amount=1 -kerning first=350 second=200 amount=-3 -kerning first=45 second=79 amount=5 -kerning first=285 second=339 amount=2 -kerning first=373 second=107 amount=2 -kerning first=354 second=120 amount=-13 -kerning first=289 second=289 amount=5 -kerning first=292 second=69 amount=-6 -kerning first=204 second=301 amount=-2 -kerning first=89 second=313 amount=-3 -kerning first=312 second=226 amount=2 -kerning first=112 second=250 amount=2 -kerning first=358 second=70 amount=-5 -kerning first=70 second=326 amount=-3 -kerning first=73 second=106 amount=-14 -kerning first=359 second=240 amount=2 -kerning first=192 second=44 amount=-10 -kerning first=294 second=379 amount=4 -kerning first=74 second=276 amount=-5 -kerning first=235 second=108 amount=-1 -kerning first=258 second=45 amount=-12 -kerning first=160 second=352 amount=-3 -kerning first=278 second=202 amount=-5 -kerning first=58 second=69 amount=-4 -kerning first=193 second=214 amount=-11 -kerning first=298 second=329 amount=-4 -kerning first=78 second=226 amount=2 -kerning first=98 second=353 amount=2 -kerning first=194 second=354 amount=-20 -kerning first=302 second=279 amount=-2 -kerning first=217 second=291 amount=2 -kerning first=325 second=216 amount=3 -kerning first=102 second=303 amount=-7 -kerning first=240 second=228 amount=2 -kerning first=260 second=355 amount=-12 -kerning first=368 second=280 amount=-6 -kerning first=201 second=84 amount=-5 -kerning first=349 second=293 amount=1 -kerning first=44 second=202 amount=-4 -kerning first=287 second=242 amount=2 -kerning first=87 second=266 amount=2 -kerning first=245 second=318 amount=-1 -kerning first=248 second=98 amount=-1 -kerning first=353 second=243 amount=1 -kerning first=45 second=342 amount=-6 -kerning first=72 second=229 amount=2 -kerning first=207 second=344 amount=-2 -kerning first=230 second=281 amount=1 -kerning first=338 second=206 amount=-1 -kerning first=115 second=293 amount=1 -kerning first=358 second=333 amount=-7 -kerning first=361 second=113 amount=2 -kerning first=73 second=369 amount=-2 -kerning first=234 second=231 amount=1 -kerning first=119 second=243 amount=4 -kerning first=277 second=295 amount=-1 -kerning first=195 second=87 amount=-7 -kerning first=300 second=232 amount=-2 -kerning first=320 second=359 amount=-2 -kerning first=281 second=245 amount=1 -kerning first=58 second=332 amount=-3 -kerning first=196 second=257 amount=-10 -kerning first=324 second=309 amount=-10 -kerning first=347 second=246 amount=1 -kerning first=328 second=259 amount=2 -kerning first=266 second=208 amount=-2 -kerning first=374 second=103 amount=-3 -kerning first=289 second=115 amount=2 -kerning first=66 second=232 amount=2 -kerning first=86 second=359 amount=3 -kerning first=352 second=336 amount=3 -kerning first=355 second=116 amount=-1 -kerning first=375 second=273 amount=7 -kerning first=205 second=297 amount=-2 -kerning first=313 second=222 amount=-4 -kerning first=113 second=246 amount=1 -kerning first=248 second=361 amount=-2 -kerning first=356 second=286 amount=-2 -kerning first=71 second=322 amount=2 -kerning first=160 second=208 amount=-6 -kerning first=275 second=248 amount=1 -kerning first=75 second=272 amount=-9 -kerning first=121 second=116 amount=3 -kerning first=194 second=210 amount=-11 -kerning first=302 second=105 amount=-2 -kerning first=99 second=349 amount=1 -kerning first=260 second=211 amount=-11 -kerning first=195 second=350 amount=-8 -kerning first=303 second=275 amount=1 -kerning first=218 second=287 amount=2 -kerning first=221 second=67 amount=-1 -kerning first=103 second=299 amount=3 -kerning first=241 second=224 amount=2 -kerning first=349 second=119 amount=1 -kerning first=261 second=351 amount=1 -kerning first=199 second=300 amount=3 -kerning first=202 second=80 amount=-6 -kerning first=84 second=312 amount=-3 -kerning first=222 second=237 amount=2 -kerning first=307 second=225 amount=2 -kerning first=373 second=226 amount=5 -kerning first=65 second=325 amount=-15 -kerning first=88 second=262 amount=-4 -kerning first=246 second=314 amount=-1 -kerning first=354 second=239 amount=-2 -kerning first=46 second=338 amount=-3 -kerning first=230 second=107 amount=-1 -kerning first=335 second=252 amount=-2 -kerning first=112 second=339 amount=2 -kerning first=115 second=119 amount=1 -kerning first=296 second=108 amount=-2 -kerning first=208 second=340 amount=-3 -kerning first=316 second=265 amount=1 -kerning first=319 second=45 amount=-5 -kerning first=116 second=289 amount=2 -kerning first=359 second=329 amount=-1 -kerning first=74 second=365 amount=-4 -kerning first=235 second=227 amount=2 -kerning first=340 second=342 amount=-8 -kerning first=196 second=83 amount=-8 -kerning first=301 second=228 amount=2 -kerning first=262 second=84 amount=-2 -kerning first=367 second=229 amount=2 -kerning first=263 second=254 amount=-1 -kerning first=201 second=203 amount=-5 -kerning first=352 second=192 amount=-9 -kerning first=8211 second=87 amount=3 -kerning first=375 second=99 amount=3 -kerning first=287 second=331 amount=2 -kerning first=356 second=112 amount=-6 -kerning first=8212 second=257 amount=4 -kerning first=268 second=344 amount=-4 -kerning first=376 second=269 amount=-4 -kerning first=291 second=281 amount=2 -kerning first=206 second=293 amount=-2 -kerning first=229 second=230 amount=1 -kerning first=114 second=242 amount=-2 -kerning first=75 second=98 amount=-7 -kerning first=256 second=87 amount=-7 -kerning first=276 second=244 amount=-2 -kerning first=296 second=371 amount=-2 -kerning first=234 second=320 amount=-1 -kerning first=237 second=100 amount=2 -kerning first=257 second=257 amount=2 -kerning first=195 second=206 amount=-7 -kerning first=303 second=101 amount=1 -kerning first=218 second=113 amount=2 -kerning first=346 second=195 amount=-9 -kerning first=196 second=346 amount=-8 -kerning first=327 second=208 amount=-6 -kerning first=347 second=335 amount=1 -kerning first=370 second=272 amount=-6 -kerning first=223 second=233 amount=1 -kerning first=108 second=245 amount=1 -kerning first=351 second=285 amount=3 -kerning first=354 second=65 amount=-13 -kerning first=374 second=222 amount=-1 -kerning first=289 second=234 amount=2 -kerning first=204 second=246 amount=-2 -kerning first=89 second=258 amount=-3 -kerning first=332 second=298 amount=3 -kerning first=355 second=235 amount=1 -kerning first=70 second=271 amount=-3 -kerning first=208 second=196 amount=-8 -kerning first=231 second=103 amount=1 -kerning first=113 second=335 amount=1 -kerning first=116 second=115 amount=1 -kerning first=356 second=375 amount=-10 -kerning first=209 second=336 amount=3 -kerning first=232 second=273 amount=2 -kerning first=340 second=198 amount=3 -kerning first=117 second=285 amount=2 -kerning first=275 second=337 amount=1 -kerning first=278 second=117 amount=-2 -kerning first=75 second=361 amount=-8 -kerning first=236 second=223 amount=3 -kerning first=121 second=235 amount=3 -kerning first=256 second=350 amount=-8 -kerning first=279 second=287 amount=2 -kerning first=197 second=79 amount=-11 -kerning first=102 second=248 amount=-8 -kerning first=348 second=68 amount=-3 -kerning first=260 second=300 amount=-7 -kerning first=368 second=225 amount=2 -kerning first=198 second=249 amount=-7 -kerning first=349 second=238 amount=1 -kerning first=87 second=211 amount=2 -kerning first=222 second=326 amount=2 -kerning first=225 second=106 amount=-10 -kerning first=268 second=200 amount=-2 -kerning first=45 second=287 amount=4 -kerning first=68 second=224 amount=2 -kerning first=206 second=119 amount=-2 -kerning first=291 second=107 amount=2 -kerning first=354 second=328 amount=-6 -kerning first=272 second=120 amount=-3 -kerning first=230 second=226 amount=2 -kerning first=115 second=238 amount=1 -kerning first=358 second=278 amount=-8 -kerning first=276 second=70 amount=-6 -kerning first=73 second=314 amount=-2 -kerning first=339 second=291 amount=2 -kerning first=254 second=303 amount=2 -kerning first=362 second=228 amount=2 -kerning first=277 second=240 amount=2 -kerning first=77 second=264 amount=3 -kerning first=80 second=44 amount=-4 -kerning first=323 second=84 amount=-6 -kerning first=235 second=316 amount=-1 -kerning first=196 second=202 amount=-10 -kerning first=324 second=254 amount=-1 -kerning first=262 second=203 amount=-2 -kerning first=367 second=318 amount=-1 -kerning first=285 second=110 amount=2 -kerning first=197 second=342 amount=-17 -kerning first=82 second=354 amount=-8 -kerning first=105 second=291 amount=2 -kerning first=351 second=111 amount=1 -kerning first=286 second=280 amount=-2 -kerning first=86 second=304 amount=5 -kerning first=224 second=229 amount=2 -kerning first=8211 second=206 amount=-5 -kerning first=267 second=293 amount=-1 -kerning first=70 second=97 amount=-3 -kerning first=205 second=242 amount=-2 -kerning first=356 second=231 amount=-7 -kerning first=271 second=243 amount=-9 -kerning first=71 second=267 amount=3 -kerning first=74 second=47 amount=-7 -kerning first=232 second=99 amount=1 -kerning first=357 second=371 amount=-9 -kerning first=295 second=320 amount=-1 -kerning first=318 second=257 amount=-8 -kerning first=233 second=269 amount=1 -kerning first=118 second=281 amount=4 -kerning first=256 second=206 amount=-7 -kerning first=276 second=333 amount=-2 -kerning first=279 second=113 amount=2 -kerning first=365 second=271 amount=2 -kerning first=195 second=295 amount=-12 -kerning first=198 second=75 amount=-3 -kerning first=80 second=307 amount=1 -kerning first=103 second=244 amount=2 -kerning first=346 second=284 amount=3 -kerning first=84 second=257 amount=-10 -kerning first=242 second=309 amount=-13 -kerning first=265 second=246 amount=-1 -kerning first=45 second=113 amount=4 -kerning first=285 second=373 amount=2 -kerning first=65 second=270 amount=-10 -kerning first=111 second=114 amount=-2 -kerning first=374 second=311 amount=-2 -kerning first=292 second=103 amount=2 -kerning first=204 second=335 amount=-2 -kerning first=207 second=115 amount=-2 -kerning first=89 second=347 amount=-4 -kerning first=358 second=104 amount=-3 -kerning first=270 second=336 amount=4 -kerning first=273 second=116 amount=-1 -kerning first=208 second=285 amount=2 -kerning first=192 second=78 amount=-15 -kerning first=297 second=223 amount=3 -kerning first=258 second=79 amount=-11 -kerning first=363 second=224 amount=2 -kerning first=193 second=248 amount=-12 -kerning first=298 second=363 amount=-2 -kerning first=121 second=324 amount=3 -kerning first=197 second=198 amount=-6 -kerning first=102 second=337 amount=-8 -kerning first=198 second=338 amount=-7 -kerning first=201 second=118 amount=-2 -kerning first=106 second=287 amount=2 -kerning first=267 second=119 amount=-1 -kerning first=90 second=80 amount=2 -kerning first=225 second=225 amount=2 -kerning first=330 second=340 amount=-2 -kerning first=333 second=120 amount=-2 -kerning first=353 second=277 amount=1 -kerning first=8212 second=202 amount=-7 -kerning first=45 second=376 amount=3 -kerning first=376 second=214 amount=-1 -kerning first=291 second=226 amount=5 -kerning first=206 second=238 amount=-2 -kerning first=311 second=353 amount=1 -kerning first=357 second=227 amount=-8 -kerning first=118 second=107 amount=2 -kerning first=358 second=367 amount=-6 -kerning first=56 second=56 amount=2 -kerning first=296 second=316 amount=-2 -kerning first=99 second=120 amount=2 -kerning first=234 second=265 amount=1 -kerning first=119 second=277 amount=4 -kerning first=365 second=97 amount=2 -kerning first=280 second=109 amount=-2 -kerning first=192 second=341 amount=-12 -kerning first=195 second=121 amount=-4 -kerning first=323 second=203 amount=-6 -kerning first=258 second=342 amount=-17 -kerning first=281 second=279 amount=1 -kerning first=196 second=291 amount=-10 -kerning first=84 second=83 amount=-6 -kerning first=219 second=228 amount=2 -kerning first=104 second=240 amount=2 -kerning first=285 second=229 amount=5 -kerning first=328 second=293 amount=-1 -kerning first=351 second=230 amount=2 -kerning first=371 second=357 amount=-1 -kerning first=66 second=266 amount=3 -kerning first=89 second=203 amount=-4 -kerning first=224 second=318 amount=-1 -kerning first=112 second=110 amount=2 -kerning first=227 second=98 amount=-1 -kerning first=270 second=192 amount=-8 -kerning first=375 second=307 amount=3 -kerning first=205 second=331 amount=-2 -kerning first=356 second=320 amount=-3 -kerning first=359 second=100 amount=2 -kerning first=71 second=356 amount=-2 -kerning first=117 second=230 amount=1 -kerning first=360 second=270 amount=-6 -kerning first=193 second=74 amount=-9 -kerning first=98 second=243 amount=2 -kerning first=341 second=283 amount=-2 -kerning first=256 second=295 amount=-12 -kerning first=279 second=232 amount=1 -kerning first=194 second=244 amount=-12 -kerning first=345 second=233 amount=-2 -kerning first=198 second=194 amount=-6 -kerning first=303 second=309 amount=-11 -kerning first=103 second=333 amount=2 -kerning first=106 second=113 amount=2 -kerning first=372 second=90 amount=4 -kerning first=284 second=322 amount=2 -kerning first=307 second=259 amount=2 -kerning first=84 second=346 amount=-6 -kerning first=107 second=283 amount=1 -kerning first=353 second=103 amount=3 -kerning first=265 second=335 amount=-1 -kerning first=45 second=232 amount=4 -kerning first=65 second=359 amount=-12 -kerning first=354 second=273 amount=-10 -kerning first=269 second=285 amount=1 -kerning first=272 second=65 amount=-8 -kerning first=69 second=309 amount=-10 -kerning first=207 second=234 amount=-2 -kerning first=292 second=222 amount=-2 -kerning first=312 second=349 amount=1 -kerning first=112 second=373 amount=2 -kerning first=358 second=223 amount=1 -kerning first=273 second=235 amount=1 -kerning first=119 second=103 amount=5 -kerning first=254 second=248 amount=2 -kerning first=274 second=375 amount=-3 -kerning first=57 second=52 amount=-2 -kerning first=192 second=197 amount=-7 -kerning first=100 second=116 amount=-1 -kerning first=120 second=273 amount=2 -kerning first=258 second=198 amount=-6 -kerning first=58 second=222 amount=-4 -kerning first=193 second=337 amount=-12 -kerning first=196 second=117 amount=-13 -kerning first=347 second=106 amount=-9 -kerning first=197 second=287 amount=-10 -kerning first=85 second=79 amount=2 -kerning first=220 second=224 amount=2 -kerning first=240 second=351 amount=1 -kerning first=348 second=276 amount=-3 -kerning first=266 second=68 amount=-2 -kerning first=329 second=289 amount=2 -kerning first=8211 second=121 amount=2 -kerning first=44 second=325 amount=-5 -kerning first=287 second=365 amount=2 -kerning first=313 second=82 amount=-4 -kerning first=225 second=314 amount=-1 -kerning first=248 second=251 amount=-2 -kerning first=8212 second=291 amount=4 -kerning first=160 second=68 amount=-6 -kerning first=275 second=108 amount=-1 -kerning first=118 second=226 amount=5 -kerning first=256 second=121 amount=-4 -kerning first=276 second=278 amount=-5 -kerning first=194 second=70 amount=-17 -kerning first=319 second=342 amount=-4 -kerning first=345 second=59 amount=-7 -kerning first=257 second=291 amount=2 -kerning first=260 second=71 amount=-11 -kerning first=195 second=240 amount=-10 -kerning first=300 second=355 amount=-2 -kerning first=80 second=252 amount=1 -kerning first=366 second=356 amount=-6 -kerning first=84 second=202 amount=-8 -kerning first=104 second=329 amount=-3 -kerning first=242 second=254 amount=-1 -kerning first=347 second=369 amount=1 -kerning first=285 second=318 amount=2 -kerning first=203 second=110 amount=-2 -kerning first=85 second=342 amount=-2 -kerning first=223 second=267 amount=1 -kerning first=108 second=279 amount=1 -kerning first=354 second=99 amount=-7 -kerning first=269 second=111 amount=-1 -kerning first=374 second=256 amount=-3 -kerning first=335 second=112 amount=-2 -kerning first=112 second=229 amount=5 -kerning first=70 second=305 amount=-1 -kerning first=228 second=357 amount=-1 -kerning first=294 second=358 amount=-6 -kerning first=193 second=193 amount=-7 -kerning first=236 second=257 amount=2 -kerning first=121 second=269 amount=3 -kerning first=194 second=333 amount=-12 -kerning first=197 second=113 amount=-10 -kerning first=214 second=8211 amount=3 -kerning first=217 second=270 amount=-6 -kerning first=345 second=322 amount=-1 -kerning first=260 second=334 amount=-11 -kerning first=368 second=259 amount=2 -kerning first=283 second=271 amount=2 -kerning first=198 second=283 amount=-5 -kerning first=329 second=115 amount=1 -kerning first=106 second=232 amount=1 -kerning first=241 second=347 amount=1 -kerning first=67 second=88 amount=1 -kerning first=330 second=285 amount=2 -kerning first=245 second=297 amount=-2 -kerning first=8212 second=117 amount=2 -kerning first=373 second=349 amount=1 -kerning first=68 second=258 amount=-8 -kerning first=203 second=373 amount=-2 -kerning first=72 second=208 amount=-6 -kerning first=335 second=375 amount=-2 -kerning first=358 second=312 amount=-3 -kerning first=254 second=337 amount=2 -kerning first=362 second=262 amount=2 -kerning first=192 second=286 amount=-11 -kerning first=195 second=66 amount=-8 -kerning first=100 second=235 amount=1 -kerning first=343 second=275 amount=-2 -kerning first=258 second=287 amount=-10 -kerning first=366 second=212 amount=2 -kerning first=281 second=224 amount=2 -kerning first=301 second=351 amount=1 -kerning first=327 second=68 amount=-6 -kerning first=347 second=225 amount=3 -kerning first=243 second=250 amount=-2 -kerning first=374 second=82 amount=-1 -kerning first=286 second=314 amount=2 -kerning first=201 second=326 amount=-2 -kerning first=204 second=106 amount=-14 -kerning first=86 second=338 amount=5 -kerning first=89 second=118 amount=-4 -kerning first=8211 second=240 amount=4 -kerning first=375 second=252 amount=3 -kerning first=333 second=328 amount=-2 -kerning first=113 second=225 amount=2 -kerning first=356 second=265 amount=-7 -kerning first=271 second=277 amount=-9 -kerning first=71 second=301 amount=1 -kerning first=209 second=226 amount=2 -kerning first=229 second=353 amount=1 -kerning first=275 second=227 amount=2 -kerning first=318 second=291 amount=-8 -kerning first=341 second=228 amount=-2 -kerning first=256 second=240 amount=-10 -kerning first=361 second=355 amount=-1 -kerning first=276 second=367 amount=-2 -kerning first=302 second=84 amount=-2 -kerning first=368 second=85 amount=2 -kerning first=283 second=97 amount=2 -kerning first=195 second=329 amount=-19 -kerning first=198 second=109 amount=-6 -kerning first=221 second=46 amount=-5 -kerning first=323 second=381 amount=4 -kerning first=349 second=98 amount=1 -kerning first=84 second=291 amount=-10 -kerning first=87 second=71 amount=2 -kerning first=222 second=216 amount=4 -kerning first=107 second=228 amount=2 -kerning first=350 second=268 amount=3 -kerning first=65 second=304 amount=-7 -kerning first=68 second=84 amount=-6 -kerning first=246 second=293 amount=-1 -kerning first=374 second=345 amount=-5 -kerning first=289 second=357 amount=2 -kerning first=204 second=369 amount=-2 -kerning first=89 second=381 amount=-2 -kerning first=112 second=318 amount=3 -kerning first=115 second=98 amount=1 -kerning first=316 second=244 amount=1 -kerning first=362 second=88 amount=3 -kerning first=277 second=100 amount=2 -kerning first=297 second=257 amount=2 -kerning first=74 second=344 amount=-4 -kerning first=343 second=101 amount=-2 -kerning first=258 second=113 amount=-10 -kerning first=278 second=270 amount=-5 -kerning first=193 second=282 amount=-10 -kerning first=101 second=231 amount=1 -kerning first=197 second=232 amount=-12 -kerning first=302 second=347 amount=-2 -kerning first=325 second=284 amount=3 -kerning first=102 second=371 amount=-7 -kerning first=86 second=194 amount=-3 -kerning first=349 second=361 amount=1 -kerning first=8211 second=66 amount=-7 -kerning first=44 second=270 amount=-3 -kerning first=67 second=207 amount=3 -kerning first=205 second=102 amount=-3 -kerning first=87 second=334 amount=2 -kerning first=225 second=259 amount=2 -kerning first=110 second=271 amount=2 -kerning first=353 second=311 amount=1 -kerning first=8212 second=236 amount=2 -kerning first=268 second=323 amount=4 -kerning first=271 second=103 amount=-8 -kerning first=337 second=104 amount=-1 -kerning first=272 second=273 amount=2 -kerning first=318 second=117 amount=-9 -kerning first=230 second=349 amount=1 -kerning first=338 second=274 amount=-4 -kerning first=115 second=361 amount=1 -kerning first=256 second=66 amount=-8 -kerning first=276 second=223 amount=3 -kerning first=119 second=311 amount=2 -kerning first=192 second=375 amount=-4 -kerning first=80 second=197 amount=-14 -kerning first=103 second=104 amount=2 -kerning first=196 second=325 amount=-15 -kerning first=304 second=250 amount=-2 -kerning first=84 second=117 amount=-6 -kerning first=347 second=314 amount=1 -kerning first=265 second=106 amount=-11 -kerning first=285 second=263 amount=2 -kerning first=85 second=287 amount=2 -kerning first=88 second=67 amount=-4 -kerning first=108 second=224 amount=2 -kerning first=246 second=119 amount=-2 -kerning first=331 second=107 amount=-1 -kerning first=354 second=44 amount=-15 -kerning first=266 second=276 amount=-2 -kerning first=374 second=201 amount=-4 -kerning first=69 second=80 amount=-6 -kerning first=89 second=237 amount=-3 -kerning first=270 second=226 amount=2 -kerning first=205 second=365 amount=-2 -kerning first=113 second=314 amount=-1 -kerning first=356 second=354 amount=-8 -kerning first=74 second=200 amount=-5 -kerning first=97 second=107 amount=-1 -kerning first=337 second=367 amount=-2 -kerning first=160 second=276 amount=-6 -kerning first=275 second=316 amount=-1 -kerning first=193 second=108 amount=-12 -kerning first=298 second=253 amount=-2 -kerning first=75 second=340 amount=-7 -kerning first=216 second=45 amount=3 -kerning first=98 second=277 amount=2 -kerning first=256 second=329 amount=-19 -kerning first=194 second=278 amount=-10 -kerning first=197 second=58 amount=-10 -kerning first=82 second=70 amount=-8 -kerning first=102 second=227 amount=-6 -kerning first=345 second=267 amount=-2 -kerning first=198 second=228 amount=-3 -kerning first=103 second=367 amount=2 -kerning first=284 second=356 amount=-2 -kerning first=222 second=305 amount=2 -kerning first=110 second=97 amount=2 -kerning first=45 second=266 amount=5 -kerning first=68 second=203 amount=-6 -kerning first=206 second=98 amount=-2 -kerning first=311 second=243 amount=1 -kerning first=354 second=307 amount=-2 -kerning first=335 second=320 amount=-1 -kerning first=358 second=257 amount=-10 -kerning first=273 second=269 amount=1 -kerning first=73 second=293 amount=-2 -kerning first=316 second=333 amount=1 -kerning first=336 second=8211 amount=3 -kerning first=192 second=231 amount=-12 -kerning first=320 second=283 amount=-1 -kerning first=235 second=295 amount=-1 -kerning first=258 second=232 amount=-12 -kerning first=363 second=347 amount=1 -kerning first=193 second=371 amount=-13 -kerning first=219 second=88 amount=3 -kerning first=101 second=320 amount=-1 -kerning first=104 second=100 amount=2 -kerning first=282 second=309 amount=-10 -kerning first=82 second=333 amount=-2 -kerning first=85 second=113 amount=2 -kerning first=263 second=322 amount=-1 -kerning first=86 second=283 amount=3 -kerning first=352 second=260 amount=-9 -kerning first=67 second=296 amount=3 -kerning first=70 second=76 amount=-4 -kerning first=356 second=210 amount=-2 -kerning first=8212 second=325 amount=-2 -kerning first=376 second=337 amount=-4 -kerning first=291 second=349 amount=2 -kerning first=71 second=246 amount=3 -kerning first=206 second=361 amount=-2 -kerning first=337 second=223 amount=2 -kerning first=75 second=196 amount=-3 -kerning first=318 second=236 amount=-3 -kerning first=98 second=103 amount=5 -kerning first=233 second=248 amount=1 -kerning first=364 second=80 amount=-2 -kerning first=194 second=104 amount=-12 -kerning first=99 second=273 amount=1 -kerning first=342 second=313 amount=3 -kerning first=195 second=274 amount=-10 -kerning first=80 second=286 amount=3 -kerning first=83 second=66 amount=-3 -kerning first=326 second=106 amount=-10 -kerning first=103 second=223 amount=5 -kerning first=304 second=339 amount=-2 -kerning first=84 second=236 amount=-2 -kerning first=327 second=276 amount=-6 -kerning first=350 second=213 amount=3 -kerning first=265 second=225 amount=1 -kerning first=370 second=340 amount=-2 -kerning first=373 second=120 amount=5 -kerning first=331 second=226 amount=2 -kerning first=246 second=238 amount=-2 -kerning first=46 second=262 amount=-3 -kerning first=374 second=290 amount=-1 -kerning first=292 second=82 amount=-2 -kerning first=204 second=314 amount=-2 -kerning first=89 second=326 amount=-5 -kerning first=112 second=263 amount=2 -kerning first=358 second=83 amount=-6 -kerning first=70 second=339 amount=-4 -kerning first=73 second=119 amount=-2 -kerning first=208 second=264 amount=4 -kerning first=211 second=44 amount=-5 -kerning first=313 second=379 amount=2 -kerning first=254 second=108 amount=3 -kerning first=74 second=289 amount=-5 -kerning first=97 second=226 amount=2 -kerning first=343 second=46 amount=-7 -kerning first=117 second=353 amount=1 -kerning first=258 second=58 amount=-10 -kerning first=58 second=82 amount=-4 -kerning first=193 second=227 amount=-10 -kerning first=298 second=342 amount=-2 -kerning first=236 second=291 amount=2 -kerning first=121 second=303 amount=3 -kerning first=259 second=228 amount=2 -kerning first=279 second=355 amount=-1 -kerning first=194 second=367 amount=-13 -kerning first=220 second=84 amount=-6 -kerning first=325 second=229 amount=2 -kerning first=286 second=85 amount=4 -kerning first=83 second=329 amount=-5 -kerning first=86 second=109 amount=2 -kerning first=221 second=254 amount=-2 -kerning first=264 second=318 amount=2 -kerning first=267 second=98 amount=-1 -kerning first=245 second=331 amount=-2 -kerning first=376 second=193 amount=-3 -kerning first=207 second=357 amount=-2 -kerning first=358 second=346 amount=-6 -kerning first=296 second=295 amount=-2 -kerning first=234 second=244 amount=1 -kerning first=339 second=359 amount=-1 -kerning first=254 second=371 amount=2 -kerning first=280 second=88 amount=3 -kerning first=192 second=320 amount=-12 -kerning first=195 second=100 amount=-10 -kerning first=77 second=332 amount=3 -kerning first=80 second=112 amount=1 -kerning first=300 second=245 amount=-2 -kerning first=100 second=269 amount=1 -kerning first=343 second=309 amount=-10 -kerning first=193 second=8211 amount=-12 -kerning first=196 second=270 amount=-10 -kerning first=324 second=322 amount=-1 -kerning first=242 second=114 amount=-2 -kerning first=347 second=259 amount=3 -kerning first=65 second=75 amount=-5 -kerning first=374 second=116 amount=-2 -kerning first=66 second=245 amount=2 -kerning first=309 second=285 amount=2 -kerning first=109 second=309 amount=-10 -kerning first=8211 second=274 amount=-7 -kerning first=290 second=298 amount=3 -kerning first=70 second=195 amount=-12 -kerning first=113 second=259 amount=2 -kerning first=356 second=299 amount=-2 -kerning first=71 second=335 amount=3 -kerning first=337 second=312 amount=-2 -kerning first=75 second=285 amount=-7 -kerning first=233 second=337 amount=1 -kerning first=118 second=349 amount=2 -kerning first=256 second=274 amount=-10 -kerning first=364 second=199 amount=2 -kerning first=59 second=78 amount=-5 -kerning first=194 second=223 amount=-10 -kerning first=302 second=118 amount=-2 -kerning first=237 second=287 amount=2 -kerning first=260 second=224 amount=-10 -kerning first=195 second=363 amount=-13 -kerning first=80 second=375 amount=1 -kerning first=221 second=80 amount=-1 -kerning first=326 second=225 amount=2 -kerning first=103 second=312 amount=2 -kerning first=369 second=289 amount=2 -kerning first=372 second=69 amount=-6 -kerning first=84 second=325 amount=-1 -kerning first=265 second=314 amount=-1 -kerning first=373 second=239 amount=2 -kerning first=45 second=211 amount=5 -kerning first=65 second=338 amount=-11 -kerning first=88 second=275 amount=-2 -kerning first=272 second=44 amount=-3 -kerning first=374 second=379 amount=-2 -kerning first=292 second=201 amount=-6 -kerning first=72 second=68 amount=-6 -kerning first=230 second=120 amount=-2 -kerning first=358 second=202 amount=-8 -kerning first=296 second=121 amount=-2 -kerning first=73 second=238 amount=-2 -kerning first=254 second=227 amount=5 -kerning first=274 second=354 amount=-5 -kerning first=382 second=279 amount=1 -kerning first=297 second=291 amount=2 -kerning first=235 second=240 amount=2 -kerning first=340 second=355 amount=-2 -kerning first=58 second=201 amount=-4 -kerning first=193 second=316 amount=-12 -kerning first=101 second=265 amount=1 -kerning first=197 second=266 amount=-11 -kerning first=220 second=203 amount=-6 -kerning first=328 second=98 amount=-1 -kerning first=243 second=110 amount=-2 -kerning first=286 second=204 amount=3 -kerning first=66 second=71 amount=3 -kerning first=309 second=111 amount=1 -kerning first=86 second=228 amount=6 -kerning first=221 second=343 amount=-5 -kerning first=8211 second=100 amount=4 -kerning first=375 second=112 amount=3 -kerning first=202 second=356 amount=-5 -kerning first=225 second=293 amount=-1 -kerning first=8212 second=270 amount=-7 -kerning first=268 second=357 amount=2 -kerning first=376 second=282 amount=-4 -kerning first=380 second=232 amount=1 -kerning first=75 second=111 amount=-10 -kerning first=256 second=100 amount=-10 -kerning first=214 second=206 amount=3 -kerning first=234 second=333 amount=1 -kerning first=237 second=113 amount=2 -kerning first=342 second=258 amount=3 -kerning first=254 second=8211 amount=3 -kerning first=323 second=271 amount=2 -kerning first=346 second=208 amount=-3 -kerning first=369 second=115 amount=1 -kerning first=281 second=347 amount=1 -kerning first=196 second=359 amount=-12 -kerning first=370 second=285 amount=2 -kerning first=285 second=297 amount=3 -kerning first=65 second=194 amount=-7 -kerning first=200 second=309 amount=-10 -kerning first=88 second=101 amount=-2 -kerning first=223 second=246 amount=1 -kerning first=243 second=373 amount=-2 -kerning first=354 second=78 amount=-1 -kerning first=89 second=271 amount=-3 -kerning first=8211 second=363 amount=2 -kerning first=270 second=260 amount=-8 -kerning first=375 second=375 amount=3 -kerning first=231 second=116 amount=-1 -kerning first=74 second=234 amount=-5 -kerning first=160 second=310 amount=-6 -kerning first=360 second=338 amount=2 -kerning first=98 second=311 amount=3 -kerning first=341 second=351 amount=-2 -kerning first=121 second=248 amount=3 -kerning first=256 second=363 amount=-13 -kerning first=364 second=288 amount=2 -kerning first=282 second=80 amount=-6 -kerning first=194 second=312 amount=-12 -kerning first=302 second=237 amount=-2 -kerning first=82 second=104 amount=-2 -kerning first=102 second=261 amount=-7 -kerning first=348 second=81 amount=3 -kerning first=198 second=262 amount=-7 -kerning first=83 second=274 amount=-3 -kerning first=221 second=199 amount=-1 -kerning first=326 second=314 amount=-1 -kerning first=244 second=106 amount=-13 -kerning first=349 second=251 amount=1 -kerning first=87 second=224 amount=2 -kerning first=330 second=264 amount=3 -kerning first=107 second=351 amount=1 -kerning first=45 second=300 amount=-5 -kerning first=373 second=328 amount=2 -kerning first=291 second=120 amount=-1 -kerning first=376 second=108 amount=-2 -kerning first=311 second=277 amount=1 -kerning first=226 second=289 amount=2 -kerning first=354 second=341 amount=-6 -kerning first=357 second=121 amount=-11 -kerning first=269 second=353 amount=1 -kerning first=115 second=251 amount=1 -kerning first=358 second=291 amount=-10 -kerning first=342 second=84 amount=-8 -kerning first=254 second=316 amount=3 -kerning first=192 second=265 amount=-12 -kerning first=195 second=45 amount=-12 -kerning first=323 second=97 amount=2 -kerning first=343 second=254 amount=-1 -kerning first=258 second=266 amount=-11 -kerning first=58 second=290 amount=-3 -kerning first=304 second=110 amount=-2 -kerning first=197 second=355 amount=-12 -kerning first=348 second=344 amount=-3 -kerning first=286 second=293 amount=2 -kerning first=309 second=230 amount=1 -kerning first=89 second=97 amount=-3 -kerning first=329 second=357 amount=-1 -kerning first=109 second=254 amount=-1 -kerning first=244 second=369 amount=-2 -kerning first=270 second=86 amount=2 -kerning first=375 second=231 amount=3 -kerning first=67 second=330 amount=4 -kerning first=70 second=110 amount=-3 -kerning first=333 second=307 amount=-2 -kerning first=356 second=244 amount=-7 -kerning first=376 second=371 amount=-5 -kerning first=71 second=280 amount=-2 -kerning first=75 second=230 amount=-8 -kerning first=315 second=8211 amount=-5 -kerning first=381 second=8212 amount=-6 -kerning first=237 second=232 amount=1 -kerning first=257 second=359 amount=-1 -kerning first=303 second=233 amount=1 -kerning first=103 second=257 amount=5 -kerning first=261 second=309 amount=-10 -kerning first=264 second=89 amount=4 -kerning first=304 second=373 amount=-2 -kerning first=81 second=8211 amount=3 -kerning first=84 second=270 amount=-8 -kerning first=222 second=195 amount=-13 -kerning first=330 second=90 amount=4 -kerning first=242 second=322 amount=-1 -kerning first=245 second=102 amount=-2 -kerning first=265 second=259 amount=1 -kerning first=65 second=283 amount=-12 -kerning first=203 second=208 amount=-5 -kerning first=311 second=103 amount=2 -kerning first=223 second=335 amount=1 -kerning first=226 second=115 amount=1 -kerning first=108 second=347 amount=1 -kerning first=354 second=197 amount=-13 -kerning first=374 second=324 amount=-5 -kerning first=312 second=273 amount=2 -kerning first=227 second=285 amount=2 -kerning first=112 second=297 amount=2 -kerning first=355 second=337 amount=1 -kerning first=358 second=117 amount=-6 -kerning first=70 second=373 amount=-4 -kerning first=316 second=223 amount=4 -kerning first=359 second=287 amount=2 -kerning first=362 second=67 amount=2 -kerning first=77 second=103 amount=1 -kerning first=78 second=273 amount=2 -kerning first=216 second=198 amount=-7 -kerning first=121 second=337 amount=3 -kerning first=364 second=377 amount=4 -kerning first=59 second=286 amount=-3 -kerning first=197 second=211 amount=-11 -kerning first=302 second=326 amount=-2 -kerning first=305 second=106 amount=-11 -kerning first=240 second=275 amount=1 -kerning first=348 second=200 amount=-3 -kerning first=371 second=107 amount=-1 -kerning first=283 second=339 amount=1 -kerning first=198 second=351 amount=-4 -kerning first=221 second=288 amount=-1 -kerning first=287 second=289 amount=5 -kerning first=290 second=69 amount=-2 -kerning first=245 second=365 amount=-2 -kerning first=356 second=70 amount=-5 -kerning first=268 second=302 amount=3 -kerning first=376 second=227 amount=-3 -kerning first=291 second=239 amount=3 -kerning first=71 second=106 amount=-10 -kerning first=206 second=251 amount=-2 -kerning first=357 second=240 amount=-8 -kerning first=292 second=379 amount=4 -kerning first=72 second=276 amount=-6 -kerning first=233 second=108 amount=-1 -kerning first=118 second=120 amount=3 -kerning first=256 second=45 amount=-12 -kerning first=276 second=202 amount=-5 -kerning first=296 second=329 amount=-4 -kerning first=192 second=354 amount=-20 -kerning first=300 second=279 amount=-2 -kerning first=323 second=216 amount=3 -kerning first=238 second=228 amount=2 -kerning first=258 second=355 amount=-12 -kerning first=366 second=280 amount=-6 -kerning first=196 second=304 amount=-7 -kerning first=199 second=84 amount=-2 -kerning first=347 second=293 amount=1 -kerning first=285 second=242 amount=2 -kerning first=65 second=109 amount=-13 -kerning first=85 second=266 amount=2 -kerning first=220 second=381 amount=4 -kerning first=243 second=318 amount=-1 -kerning first=246 second=98 amount=-1 -kerning first=351 second=243 amount=1 -kerning first=66 second=279 amount=2 -kerning first=312 second=99 amount=1 -kerning first=89 second=216 amount=-1 -kerning first=70 second=229 amount=-3 -kerning first=205 second=344 amount=-2 -kerning first=336 second=206 amount=3 -kerning first=113 second=293 amount=-1 -kerning first=356 second=333 amount=-7 -kerning first=359 second=113 amount=2 -kerning first=271 second=345 amount=-9 -kerning first=294 second=282 amount=-6 -kerning first=71 second=369 amount=2 -kerning first=232 second=231 amount=1 -kerning first=275 second=295 amount=-1 -kerning first=193 second=87 amount=-7 -kerning first=298 second=232 amount=-2 -kerning first=75 second=319 amount=-3 -kerning first=344 second=76 amount=3 -kerning first=279 second=245 amount=1 -kerning first=194 second=257 amount=-10 -kerning first=240 second=101 amount=1 -kerning first=345 second=246 amount=-2 -kerning first=260 second=258 amount=-7 -kerning first=221 second=114 amount=-5 -kerning first=326 second=259 amount=2 -kerning first=241 second=271 amount=2 -kerning first=264 second=208 amount=-2 -kerning first=372 second=103 amount=2 -kerning first=287 second=115 amount=2 -kerning first=84 second=359 amount=-3 -kerning first=222 second=284 amount=4 -kerning first=350 second=336 amount=3 -kerning first=353 second=116 amount=1 -kerning first=373 second=273 amount=5 -kerning first=45 second=245 amount=4 -kerning first=88 second=309 amount=-10 -kerning first=331 second=349 amount=1 -kerning first=246 second=361 amount=-2 -kerning first=354 second=286 amount=-2 -kerning first=358 second=236 amount=-2 -kerning first=273 second=248 amount=1 -kerning first=234 second=104 amount=-1 -kerning first=119 second=116 amount=2 -kerning first=192 second=210 amount=-11 -kerning first=300 second=105 amount=-2 -kerning first=77 second=222 amount=-4 -kerning first=97 second=349 amount=1 -kerning first=258 second=211 amount=-11 -kerning first=193 second=350 amount=-8 -kerning first=301 second=275 amount=1 -kerning first=239 second=224 amount=2 -kerning first=347 second=119 amount=1 -kerning first=259 second=351 amount=1 -kerning first=197 second=300 amount=-7 -kerning first=200 second=80 amount=-6 -kerning first=82 second=312 amount=-2 -kerning first=305 second=225 amount=2 -kerning first=371 second=226 amount=2 -kerning first=86 second=262 amount=5 -kerning first=221 second=377 amount=-2 -kerning first=244 second=314 amount=-1 -kerning first=44 second=338 amount=-3 -kerning first=228 second=107 amount=-1 -kerning first=333 second=252 amount=-2 -kerning first=8212 second=304 amount=-5 -kerning first=376 second=316 amount=-2 -kerning first=291 second=328 amount=2 -kerning first=71 second=225 amount=5 -kerning first=206 second=340 amount=-2 -kerning first=114 second=289 amount=-2 -kerning first=160 second=81 amount=-3 -kerning first=233 second=227 amount=2 -kerning first=338 second=342 amount=-7 -kerning first=118 second=239 amount=2 -kerning first=194 second=83 amount=-8 -kerning first=299 second=228 amount=2 -kerning first=102 second=160 amount=-5 -kerning first=260 second=84 amount=-20 -kerning first=365 second=229 amount=2 -kerning first=83 second=45 amount=4 -kerning first=241 second=97 amount=2 -kerning first=261 second=254 amount=-1 -kerning first=199 second=203 amount=-2 -kerning first=304 second=318 amount=-2 -kerning first=222 second=110 amount=2 -kerning first=350 second=192 amount=-9 -kerning first=45 second=71 amount=5 -kerning first=373 second=99 amount=4 -kerning first=285 second=331 amount=2 -kerning first=65 second=228 amount=-10 -kerning first=354 second=112 amount=-6 -kerning first=266 second=344 amount=-4 -kerning first=374 second=269 amount=-4 -kerning first=289 second=281 amount=2 -kerning first=204 second=293 amount=-2 -kerning first=89 second=305 amount=-3 -kerning first=227 second=230 amount=1 -kerning first=112 second=242 amount=2 -kerning first=70 second=318 amount=-2 -kerning first=73 second=98 amount=-2 -kerning first=359 second=232 amount=1 -kerning first=274 second=244 amount=-2 -kerning first=232 second=320 amount=-1 -kerning first=235 second=100 amount=2 -kerning first=160 second=344 amount=-9 -kerning first=193 second=206 amount=-7 -kerning first=301 second=101 amount=1 -kerning first=344 second=195 amount=3 -kerning first=194 second=346 amount=-8 -kerning first=325 second=208 amount=-6 -kerning first=345 second=335 amount=-2 -kerning first=260 second=347 amount=-11 -kerning first=368 second=272 amount=-6 -kerning first=221 second=233 amount=-4 -kerning first=106 second=245 amount=1 -kerning first=349 second=285 amount=3 -kerning first=352 second=65 amount=-9 -kerning first=372 second=222 amount=-2 -kerning first=287 second=234 amount=2 -kerning first=202 second=246 amount=-2 -kerning first=222 second=373 amount=1 -kerning first=353 second=235 amount=1 -kerning first=45 second=334 amount=5 -kerning first=65 second=8212 amount=-12 -kerning first=68 second=271 amount=2 -kerning first=229 second=103 amount=2 -kerning first=114 second=115 amount=-2 -kerning first=354 second=375 amount=-10 -kerning first=272 second=197 amount=-8 -kerning first=295 second=104 amount=-1 -kerning first=230 second=273 amount=2 -kerning first=115 second=285 amount=3 -kerning first=358 second=325 amount=-1 -kerning first=273 second=337 amount=1 -kerning first=276 second=117 amount=-2 -kerning first=73 second=361 amount=-2 -kerning first=234 second=223 amount=4 -kerning first=119 second=235 amount=4 -kerning first=277 second=287 amount=2 -kerning first=195 second=79 amount=-11 -kerning first=100 second=248 amount=1 -kerning first=346 second=68 amount=-3 -kerning first=258 second=300 amount=-7 -kerning first=366 second=225 amount=2 -kerning first=327 second=81 amount=3 -kerning first=347 second=238 amount=1 -kerning first=85 second=211 amount=2 -kerning first=223 second=106 amount=-12 -kerning first=266 second=200 amount=-2 -kerning first=46 second=67 amount=-3 -kerning first=66 second=224 amount=3 -kerning first=204 second=119 amount=-2 -kerning first=289 second=107 amount=2 -kerning first=86 second=351 amount=3 -kerning first=355 second=108 amount=-1 -kerning first=8211 second=253 amount=2 -kerning first=270 second=120 amount=-3 -kerning first=375 second=265 amount=3 -kerning first=208 second=69 amount=-6 -kerning first=228 second=226 amount=2 -kerning first=356 second=278 amount=-8 -kerning first=274 second=70 amount=-6 -kerning first=294 second=227 amount=2 -kerning first=71 second=314 amount=2 -kerning first=160 second=200 amount=-6 -kerning first=360 second=228 amount=2 -kerning first=275 second=240 amount=2 -kerning first=75 second=264 amount=-8 -kerning first=233 second=316 amount=-1 -kerning first=118 second=328 amount=2 -kerning first=121 second=108 amount=3 -kerning first=194 second=202 amount=-10 -kerning first=102 second=121 amount=-7 -kerning first=260 second=203 amount=-10 -kerning first=365 second=318 amount=-1 -kerning first=195 second=342 amount=-17 -kerning first=198 second=122 amount=-2 -kerning first=80 second=354 amount=-9 -kerning first=221 second=59 amount=-5 -kerning first=303 second=267 amount=1 -kerning first=103 second=291 amount=5 -kerning first=349 second=111 amount=1 -kerning first=284 second=280 amount=-2 -kerning first=84 second=304 amount=-2 -kerning first=87 second=84 amount=-6 -kerning first=327 second=344 amount=-2 -kerning first=265 second=293 amount=-1 -kerning first=268 second=73 amount=3 -kerning first=68 second=97 amount=2 -kerning first=203 second=242 amount=-2 -kerning first=354 second=231 amount=-7 -kerning first=269 second=243 amount=-1 -kerning first=46 second=330 amount=-5 -kerning first=230 second=99 amount=1 -kerning first=112 second=331 amount=2 -kerning first=115 second=111 amount=1 -kerning first=208 second=332 amount=4 -kerning first=316 second=257 amount=2 -kerning first=274 second=333 amount=-2 -kerning first=277 second=113 amount=2 -kerning first=363 second=271 amount=2 -kerning first=193 second=295 amount=-12 -kerning first=196 second=75 amount=-5 -kerning first=101 second=244 amount=1 -kerning first=121 second=371 amount=3 -kerning first=197 second=245 amount=-12 -kerning first=240 second=309 amount=-10 -kerning first=263 second=246 amount=-1 -kerning first=86 second=207 amount=5 -kerning first=221 second=322 amount=-2 -kerning first=8211 second=79 amount=5 -kerning first=202 second=335 amount=-2 -kerning first=205 second=115 amount=-2 -kerning first=353 second=324 amount=1 -kerning first=356 second=104 amount=-3 -kerning first=8212 second=249 amount=2 -kerning first=291 second=273 amount=5 -kerning first=337 second=117 amount=-2 -kerning first=114 second=234 amount=-2 -kerning first=272 second=286 amount=4 -kerning first=295 second=223 amount=3 -kerning first=256 second=79 amount=-11 -kerning first=361 second=224 amount=2 -kerning first=296 second=363 amount=-2 -kerning first=119 second=324 amount=2 -kerning first=195 second=198 amount=-6 -kerning first=80 second=210 amount=3 -kerning first=100 second=337 amount=1 -kerning first=103 second=117 amount=2 -kerning first=196 second=338 amount=-11 -kerning first=304 second=263 amount=-2 -kerning first=327 second=200 amount=-6 -kerning first=104 second=287 amount=2 -kerning first=265 second=119 amount=-1 -kerning first=370 second=264 amount=2 -kerning first=203 second=68 amount=-5 -kerning first=223 second=225 amount=2 -kerning first=331 second=120 amount=-1 -kerning first=351 second=277 amount=1 -kerning first=374 second=214 amount=-1 -kerning first=289 second=226 amount=5 -kerning first=204 second=238 amount=-2 -kerning first=355 second=227 amount=2 -kerning first=8211 second=342 amount=-6 -kerning first=70 second=263 amount=-4 -kerning first=356 second=367 amount=-6 -kerning first=54 second=56 amount=2 -kerning first=97 second=120 amount=-1 -kerning first=232 second=265 amount=1 -kerning first=363 second=97 amount=2 -kerning first=278 second=109 amount=-2 -kerning first=193 second=121 amount=-4 -kerning first=75 second=353 amount=-8 -kerning first=216 second=58 amount=-5 -kerning first=121 second=227 amount=7 -kerning first=256 second=342 amount=-17 -kerning first=279 second=279 amount=1 -kerning first=194 second=291 amount=-10 -kerning first=197 second=71 amount=-11 -kerning first=217 second=228 amount=2 -kerning first=102 second=240 amount=-6 -kerning first=283 second=229 amount=2 -kerning first=198 second=241 amount=-7 -kerning first=326 second=293 amount=-1 -kerning first=349 second=230 amount=2 -kerning first=369 second=357 amount=-1 -kerning first=87 second=203 amount=-6 -kerning first=225 second=98 amount=-1 -kerning first=8212 second=75 amount=-5 -kerning first=45 second=279 amount=4 -kerning first=373 second=307 amount=2 -kerning first=291 second=99 amount=2 -kerning first=68 second=216 amount=4 -kerning first=203 second=331 amount=-2 -kerning first=206 second=111 amount=-2 -kerning first=88 second=343 amount=-2 -kerning first=354 second=320 amount=-3 -kerning first=357 second=100 amount=-8 -kerning first=69 second=356 amount=-5 -kerning first=207 second=281 amount=-2 -kerning first=115 second=230 amount=2 -kerning first=358 second=270 amount=-8 -kerning first=339 second=283 amount=1 -kerning first=254 second=295 amount=3 -kerning first=277 second=232 amount=1 -kerning first=192 second=244 amount=-12 -kerning first=343 second=233 amount=-2 -kerning first=120 second=320 amount=-1 -kerning first=258 second=245 amount=-12 -kerning first=196 second=194 amount=-7 -kerning first=81 second=206 amount=3 -kerning first=301 second=309 amount=-11 -kerning first=101 second=333 amount=1 -kerning first=104 second=113 amount=2 -kerning first=121 second=8211 amount=4 -kerning first=370 second=90 amount=4 -kerning first=197 second=334 amount=-11 -kerning first=305 second=259 amount=2 -kerning first=220 second=271 amount=2 -kerning first=105 second=283 amount=1 -kerning first=351 second=103 amount=3 -kerning first=263 second=335 amount=-1 -kerning first=286 second=272 amount=-2 -kerning first=86 second=296 amount=5 -kerning first=89 second=76 amount=-3 -kerning first=267 second=285 amount=1 -kerning first=270 second=65 amount=-8 -kerning first=290 second=222 amount=-2 -kerning first=205 second=234 amount=-2 -kerning first=356 second=223 amount=1 -kerning first=8212 second=338 amount=5 -kerning first=271 second=235 amount=-9 -kerning first=376 second=350 amount=-4 -kerning first=71 second=259 amount=5 -kerning first=229 second=311 amount=-1 -kerning first=117 second=103 amount=2 -kerning first=357 second=363 amount=-9 -kerning first=295 second=312 amount=-1 -kerning first=98 second=116 amount=3 -kerning first=118 second=273 amount=5 -kerning first=256 second=198 amount=-6 -kerning first=194 second=117 amount=-13 -kerning first=345 second=106 amount=-10 -kerning first=260 second=118 amount=-13 -kerning first=195 second=287 amount=-10 -kerning first=198 second=67 amount=-7 -kerning first=80 second=299 amount=1 -kerning first=83 second=79 amount=3 -kerning first=218 second=224 amount=2 -kerning first=103 second=236 amount=3 -kerning first=238 second=351 amount=1 -kerning first=346 second=276 amount=-3 -kerning first=264 second=68 amount=-2 -kerning first=327 second=289 amount=2 -kerning first=330 second=69 amount=-6 -kerning first=242 second=301 amount=-2 -kerning first=45 second=105 amount=2 -kerning first=285 second=365 amount=2 -kerning first=65 second=262 amount=-11 -kerning first=88 second=199 amount=-4 -kerning first=111 second=106 amount=-13 -kerning first=246 second=251 amount=-2 -kerning first=49 second=55 amount=-8 -kerning first=207 second=107 amount=-2 -kerning first=89 second=339 amount=-4 -kerning first=355 second=316 amount=-1 -kerning first=273 second=108 amount=-1 -kerning first=116 second=226 amount=2 -kerning first=254 second=121 amount=2 -kerning first=274 second=278 amount=-5 -kerning first=192 second=70 amount=-17 -kerning first=77 second=82 amount=-4 -kerning first=343 second=59 amount=-7 -kerning first=258 second=71 amount=-11 -kerning first=193 second=240 amount=-10 -kerning first=298 second=355 amount=-2 -kerning first=121 second=316 amount=3 -kerning first=364 second=356 amount=-6 -kerning first=220 second=97 amount=2 -kerning first=102 second=329 amount=-8 -kerning first=240 second=254 amount=-1 -kerning first=260 second=381 amount=-7 -kerning first=283 second=318 amount=-1 -kerning first=286 second=98 amount=2 -kerning first=201 second=110 amount=-2 -kerning first=83 second=342 amount=-3 -kerning first=86 second=122 amount=2 -kerning first=221 second=267 amount=-4 -kerning first=106 second=279 amount=1 -kerning first=267 second=111 amount=-1 -kerning first=202 second=280 amount=-5 -kerning first=330 second=332 amount=3 -kerning first=333 second=112 amount=-2 -kerning first=110 second=229 amount=2 -kerning first=353 second=269 amount=1 -kerning first=8212 second=194 amount=-13 -kerning first=45 second=368 amount=5 -kerning first=71 second=85 amount=4 -kerning first=226 second=357 amount=-1 -kerning first=111 second=369 amount=-2 -kerning first=292 second=358 amount=-6 -kerning first=118 second=99 amount=4 -kerning first=358 second=359 amount=-3 -kerning first=56 second=48 amount=2 -kerning first=234 second=257 amount=2 -kerning first=119 second=269 amount=4 -kerning first=192 second=333 amount=-12 -kerning first=195 second=113 amount=-10 -kerning first=212 second=8211 amount=3 -kerning first=343 second=322 amount=-1 -kerning first=258 second=334 amount=-11 -kerning first=366 second=259 amount=2 -kerning first=281 second=271 amount=2 -kerning first=58 second=358 amount=-10 -kerning first=196 second=283 amount=-12 -kerning first=84 second=75 amount=-7 -kerning first=239 second=347 amount=1 -kerning first=65 second=88 amount=-9 -kerning first=328 second=285 amount=2 -kerning first=243 second=297 amount=-2 -kerning first=371 second=349 amount=1 -kerning first=66 second=258 amount=-5 -kerning first=201 second=373 amount=-2 -kerning first=89 second=195 amount=-3 -kerning first=109 second=322 amount=-1 -kerning first=112 second=102 amount=3 -kerning first=8211 second=287 amount=4 -kerning first=375 second=299 amount=3 -kerning first=290 second=311 amount=2 -kerning first=70 second=208 amount=-9 -kerning first=208 second=103 amount=2 -kerning first=333 second=375 amount=-2 -kerning first=356 second=312 amount=-3 -kerning first=271 second=324 amount=-9 -kerning first=209 second=273 amount=2 -kerning first=360 second=262 amount=2 -kerning first=193 second=66 amount=-8 -kerning first=98 second=235 amount=2 -kerning first=341 second=275 amount=-2 -kerning first=256 second=287 amount=-10 -kerning first=364 second=212 amount=2 -kerning first=279 second=224 amount=2 -kerning first=299 second=351 amount=1 -kerning first=325 second=68 amount=-6 -kerning first=99 second=375 amount=-1 -kerning first=345 second=225 amount=-2 -kerning first=83 second=198 amount=-11 -kerning first=372 second=82 amount=-2 -kerning first=284 second=314 amount=2 -kerning first=202 second=106 amount=-10 -kerning first=84 second=338 amount=-2 -kerning first=107 second=275 amount=1 -kerning first=268 second=107 amount=2 -kerning first=45 second=224 amount=4 -kerning first=373 second=252 amount=2 -kerning first=65 second=351 amount=-11 -kerning first=203 second=276 amount=-5 -kerning first=88 second=288 amount=-4 -kerning first=354 second=265 amount=-7 -kerning first=227 second=353 amount=1 -kerning first=112 second=365 amount=2 -kerning first=273 second=227 amount=2 -kerning first=73 second=251 amount=-2 -kerning first=316 second=291 amount=2 -kerning first=339 second=228 amount=2 -kerning first=254 second=240 amount=5 -kerning first=359 second=355 amount=-1 -kerning first=274 second=367 amount=-2 -kerning first=300 second=84 amount=-2 -kerning first=100 second=108 amount=-1 -kerning first=366 second=85 amount=2 -kerning first=281 second=97 amount=2 -kerning first=58 second=214 amount=-3 -kerning first=193 second=329 amount=-19 -kerning first=196 second=109 amount=-13 -kerning first=344 second=318 amount=-2 -kerning first=347 second=98 amount=1 -kerning first=59 second=354 amount=-10 -kerning first=197 second=279 amount=-12 -kerning first=85 second=71 amount=2 -kerning first=105 second=228 amount=2 -kerning first=348 second=268 amount=3 -kerning first=66 second=84 amount=-4 -kerning first=244 second=293 amount=-1 -kerning first=8211 second=113 amount=4 -kerning first=287 second=357 amount=2 -kerning first=67 second=254 amount=2 -kerning first=202 second=369 amount=-2 -kerning first=87 second=381 amount=4 -kerning first=110 second=318 amount=-1 -kerning first=113 second=98 amount=-1 -kerning first=8212 second=283 amount=4 -kerning first=291 second=307 amount=3 -kerning first=71 second=204 amount=3 -kerning first=360 second=88 amount=3 -kerning first=275 second=100 amount=2 -kerning first=295 second=257 amount=2 -kerning first=72 second=344 amount=-2 -kerning first=341 second=101 amount=-2 -kerning first=256 second=113 amount=-10 -kerning first=276 second=270 amount=-5 -kerning first=195 second=232 amount=-12 -kerning first=300 second=347 amount=-2 -kerning first=323 second=284 amount=3 -kerning first=304 second=297 amount=-2 -kerning first=84 second=194 amount=-13 -kerning first=219 second=309 amount=-12 -kerning first=107 second=101 amount=1 -kerning first=347 second=361 amount=1 -kerning first=65 second=207 amount=-7 -kerning first=85 second=334 amount=2 -kerning first=88 second=114 amount=-2 -kerning first=223 second=259 amount=2 -kerning first=108 second=271 amount=2 -kerning first=351 second=311 amount=1 -kerning first=266 second=323 amount=4 -kerning first=269 second=103 amount=1 -kerning first=66 second=347 amount=1 -kerning first=89 second=284 amount=-1 -kerning first=335 second=104 amount=-1 -kerning first=8211 second=376 amount=3 -kerning first=270 second=273 amount=2 -kerning first=70 second=297 amount=-4 -kerning first=208 second=222 amount=-5 -kerning first=228 second=349 amount=1 -kerning first=274 second=223 amount=3 -kerning first=117 second=311 amount=-1 -kerning first=160 second=323 amount=-8 -kerning first=98 second=324 amount=2 -kerning first=101 second=104 amount=-1 -kerning first=59 second=210 amount=-3 -kerning first=194 second=325 amount=-15 -kerning first=302 second=250 amount=-2 -kerning first=345 second=314 amount=-1 -kerning first=260 second=326 amount=-13 -kerning first=263 second=106 amount=-11 -kerning first=283 second=263 amount=1 -kerning first=198 second=275 amount=-5 -kerning first=86 second=67 amount=5 -kerning first=221 second=212 amount=-1 -kerning first=106 second=224 amount=2 -kerning first=244 second=119 amount=-2 -kerning first=329 second=107 amount=-1 -kerning first=352 second=44 amount=-4 -kerning first=264 second=276 amount=-2 -kerning first=372 second=201 amount=-6 -kerning first=67 second=80 amount=-2 -kerning first=8212 second=109 amount=2 -kerning first=45 second=313 amount=3 -kerning first=376 second=121 amount=-5 -kerning first=203 second=365 amount=-2 -kerning first=111 second=314 amount=-1 -kerning first=354 second=354 amount=-8 -kerning first=72 second=200 amount=-6 -kerning first=335 second=367 amount=-2 -kerning first=358 second=304 amount=-2 -kerning first=273 second=316 amount=-1 -kerning first=296 second=253 amount=-2 -kerning first=73 second=340 amount=-2 -kerning first=214 second=45 amount=3 -kerning first=192 second=278 amount=-10 -kerning first=195 second=58 amount=-10 -kerning first=77 second=290 amount=3 -kerning first=80 second=70 amount=-7 -kerning first=100 second=227 amount=2 -kerning first=343 second=267 amount=-2 -kerning first=258 second=279 amount=-12 -kerning first=196 second=228 amount=-10 -kerning first=282 second=356 amount=-5 -kerning first=328 second=230 amount=1 -kerning first=108 second=97 amount=2 -kerning first=66 second=203 amount=-4 -kerning first=204 second=98 amount=-2 -kerning first=309 second=243 amount=1 -kerning first=86 second=330 amount=2 -kerning first=89 second=110 amount=-5 -kerning first=8211 second=232 amount=4 -kerning first=375 second=244 amount=3 -kerning first=333 second=320 amount=-1 -kerning first=356 second=257 amount=-10 -kerning first=271 second=269 amount=-9 -kerning first=71 second=293 amount=2 -kerning first=334 second=8211 amount=3 -kerning first=114 second=357 amount=-1 -kerning first=75 second=243 amount=-10 -kerning first=318 second=283 amount=-9 -kerning first=233 second=295 amount=-1 -kerning first=118 second=307 amount=2 -kerning first=256 second=232 amount=-12 -kerning first=361 second=347 amount=1 -kerning first=217 second=88 amount=3 -kerning first=99 second=320 amount=-1 -kerning first=102 second=100 amount=-6 -kerning first=237 second=245 amount=1 -kerning first=280 second=309 amount=-10 -kerning first=198 second=101 amount=-5 -kerning first=303 second=246 amount=1 -kerning first=261 second=322 amount=-1 -kerning first=196 second=8212 amount=-12 -kerning first=84 second=283 amount=-7 -kerning first=222 second=208 amount=-9 -kerning first=330 second=103 amount=2 -kerning first=350 second=260 amount=-9 -kerning first=65 second=296 amount=-7 -kerning first=88 second=233 amount=-2 -kerning first=331 second=273 amount=2 -kerning first=354 second=210 amount=-2 -kerning first=374 second=337 amount=-4 -kerning first=46 second=309 amount=-11 -kerning first=289 second=349 amount=2 -kerning first=69 second=246 amount=-2 -kerning first=204 second=361 amount=-2 -kerning first=89 second=373 amount=-4 -kerning first=335 second=223 amount=2 -kerning first=231 second=248 amount=-1 -kerning first=362 second=80 amount=-2 -kerning first=192 second=104 amount=-12 -kerning first=97 second=273 amount=2 -kerning first=340 second=313 amount=3 -kerning first=193 second=274 amount=-10 -kerning first=78 second=286 amount=3 -kerning first=324 second=106 amount=-10 -kerning first=101 second=223 amount=4 -kerning first=197 second=224 amount=-10 -kerning first=302 second=339 amount=-2 -kerning first=325 second=276 amount=-6 -kerning first=102 second=363 amount=-7 -kerning first=348 second=213 amount=3 -kerning first=263 second=225 amount=1 -kerning first=368 second=340 amount=-2 -kerning first=371 second=120 amount=-1 -kerning first=329 second=226 amount=2 -kerning first=244 second=238 amount=-2 -kerning first=44 second=262 amount=-3 -kerning first=290 second=82 amount=-4 -kerning first=353 second=303 amount=1 -kerning first=356 second=83 amount=-6 -kerning first=8212 second=228 amount=4 -kerning first=376 second=240 amount=-3 -kerning first=291 second=252 amount=2 -kerning first=71 second=119 amount=2 -kerning first=72 second=289 amount=2 -kerning first=75 second=69 amount=-9 -kerning first=315 second=329 amount=-3 -kerning first=318 second=109 amount=-9 -kerning first=341 second=46 amount=-7 -kerning first=256 second=58 amount=-10 -kerning first=296 second=342 amount=-2 -kerning first=234 second=291 amount=2 -kerning first=119 second=303 amount=2 -kerning first=257 second=228 amount=2 -kerning first=277 second=355 amount=-1 -kerning first=192 second=367 amount=-13 -kerning first=218 second=84 amount=-6 -kerning first=323 second=229 amount=2 -kerning first=100 second=316 amount=-1 -kerning first=284 second=85 amount=4 -kerning first=304 second=242 amount=-2 -kerning first=84 second=109 amount=-6 -kerning first=262 second=318 amount=2 -kerning first=265 second=98 amount=-1 -kerning first=65 second=122 amount=-7 -kerning first=243 second=331 amount=-2 -kerning first=374 second=193 amount=-3 -kerning first=89 second=229 amount=-3 -kerning first=375 second=333 amount=3 -kerning first=70 second=242 amount=-4 -kerning first=205 second=357 amount=-2 -kerning first=356 second=346 amount=-6 -kerning first=74 second=192 amount=-8 -kerning first=232 second=244 amount=1 -kerning first=337 second=359 amount=-1 -kerning first=160 second=268 amount=-3 -kerning first=278 second=88 amount=3 -kerning first=193 second=100 amount=-10 -kerning first=298 second=245 amount=-2 -kerning first=75 second=332 amount=-8 -kerning first=98 second=269 amount=2 -kerning first=341 second=309 amount=-10 -kerning first=194 second=270 amount=-10 -kerning first=345 second=259 amount=-2 -kerning first=260 second=271 amount=-10 -kerning first=303 second=335 amount=1 -kerning first=103 second=359 amount=2 -kerning first=307 second=285 amount=2 -kerning first=222 second=297 amount=2 -kerning first=330 second=222 amount=-2 -kerning first=107 second=309 amount=-12 -kerning first=45 second=258 amount=-13 -kerning first=288 second=298 amount=3 -kerning first=68 second=195 amount=-8 -kerning first=311 second=235 amount=1 -kerning first=354 second=299 amount=-2 -kerning first=69 second=335 amount=-2 -kerning first=335 second=312 amount=-2 -kerning first=231 second=337 amount=-1 -kerning first=116 second=349 amount=1 -kerning first=362 second=199 amount=2 -kerning first=192 second=223 amount=-10 -kerning first=300 second=118 amount=-2 -kerning first=320 second=275 amount=-1 -kerning first=235 second=287 amount=2 -kerning first=258 second=224 amount=-10 -kerning first=193 second=363 amount=-13 -kerning first=216 second=300 amount=3 -kerning first=219 second=80 amount=-2 -kerning first=324 second=225 amount=2 -kerning first=367 second=289 amount=2 -kerning first=370 second=69 amount=-6 -kerning first=197 second=313 amount=-7 -kerning first=263 second=314 amount=-1 -kerning first=86 second=275 amount=3 -kerning first=270 second=44 amount=-3 -kerning first=372 second=379 amount=4 -kerning first=290 second=201 amount=-2 -kerning first=70 second=68 amount=-9 -kerning first=228 second=120 amount=-1 -kerning first=336 second=45 amount=3 -kerning first=356 second=202 amount=-8 -kerning first=376 second=329 amount=-6 -kerning first=71 second=238 amount=1 -kerning first=206 second=353 amount=-2 -kerning first=272 second=354 amount=-6 -kerning first=380 second=279 amount=1 -kerning first=295 second=291 amount=2 -kerning first=318 second=228 amount=-8 -kerning first=233 second=240 amount=2 -kerning first=118 second=252 amount=2 -kerning first=260 second=97 amount=-10 -kerning first=195 second=266 amount=-11 -kerning first=80 second=278 amount=-9 -kerning first=83 second=58 amount=-4 -kerning first=218 second=203 amount=-6 -kerning first=326 second=98 amount=-1 -kerning first=284 second=204 amount=3 -kerning first=304 second=331 amount=-2 -kerning first=84 second=228 amount=-10 -kerning first=307 second=111 amount=1 -kerning first=327 second=268 amount=3 -kerning first=104 second=355 amount=-1 -kerning first=370 second=332 amount=2 -kerning first=45 second=84 amount=-7 -kerning first=373 second=112 amount=2 -kerning first=200 second=356 amount=-5 -kerning first=266 second=357 amount=2 -kerning first=374 second=282 amount=-4 -kerning first=312 second=231 amount=1 -kerning first=89 second=318 amount=-2 -kerning first=355 second=295 amount=-1 -kerning first=358 second=75 amount=-7 -kerning first=378 second=232 amount=1 -kerning first=70 second=331 amount=-3 -kerning first=73 second=111 amount=-2 -kerning first=208 second=256 amount=-8 -kerning first=254 second=100 amount=5 -kerning first=359 second=245 amount=1 -kerning first=74 second=281 amount=-5 -kerning first=212 second=206 amount=3 -kerning first=320 second=101 amount=-1 -kerning first=232 second=333 amount=1 -kerning first=235 second=113 amount=2 -kerning first=340 second=258 amount=3 -kerning first=236 second=283 amount=1 -kerning first=121 second=295 amount=3 -kerning first=367 second=115 amount=1 -kerning first=279 second=347 amount=1 -kerning first=194 second=359 amount=-12 -kerning first=240 second=233 amount=1 -kerning first=368 second=285 amount=2 -kerning first=198 second=309 amount=-13 -kerning first=86 second=101 amount=3 -kerning first=221 second=246 amount=-4 -kerning first=84 second=8212 amount=-7 -kerning first=87 second=271 amount=2 -kerning first=353 second=248 amount=1 -kerning first=45 second=347 amount=4 -kerning first=373 second=375 amount=2 -kerning first=68 second=284 amount=4 -kerning first=229 second=116 amount=-1 -kerning first=272 second=210 amount=4 -kerning first=207 second=349 amount=-2 -kerning first=358 second=338 amount=-2 -kerning first=339 second=351 amount=1 -kerning first=119 second=248 amount=4 -kerning first=254 second=363 amount=2 -kerning first=362 second=288 amount=2 -kerning first=280 second=80 amount=-6 -kerning first=192 second=312 amount=-12 -kerning first=300 second=237 amount=-2 -kerning first=346 second=81 amount=3 -kerning first=258 second=313 amount=-7 -kerning first=196 second=262 amount=-11 -kerning first=324 second=314 amount=-1 -kerning first=242 second=106 amount=-13 -kerning first=347 second=251 amount=1 -kerning first=65 second=67 amount=-11 -kerning first=85 second=224 amount=2 -kerning first=105 second=351 amount=1 -kerning first=46 second=80 amount=-4 -kerning first=374 second=108 amount=-2 -kerning first=286 second=340 amount=-4 -kerning first=289 second=120 amount=-1 -kerning first=309 second=277 amount=1 -kerning first=224 second=289 amount=2 -kerning first=8211 second=266 amount=5 -kerning first=267 second=353 amount=1 -kerning first=208 second=82 amount=-3 -kerning first=356 second=291 amount=-10 -kerning first=271 second=303 amount=-3 -kerning first=294 second=240 amount=2 -kerning first=340 second=84 amount=-8 -kerning first=160 second=213 amount=-3 -kerning first=193 second=45 amount=-12 -kerning first=75 second=277 amount=-10 -kerning first=341 second=254 amount=-1 -kerning first=121 second=121 amount=3 -kerning first=256 second=266 amount=-11 -kerning first=59 second=70 amount=-4 -kerning first=302 second=110 amount=-2 -kerning first=237 second=279 amount=1 -kerning first=260 second=216 amount=-11 -kerning first=195 second=355 amount=-12 -kerning first=80 second=367 amount=1 -kerning first=241 second=229 amount=2 -kerning first=346 second=344 amount=-3 -kerning first=284 second=293 amount=2 -kerning first=307 second=230 amount=2 -kerning first=87 second=97 amount=2 -kerning first=242 second=369 amount=-2 -kerning first=268 second=86 amount=4 -kerning first=45 second=203 amount=-7 -kerning first=373 second=231 amount=4 -kerning first=65 second=330 amount=-15 -kerning first=88 second=267 amount=-2 -kerning first=354 second=244 amount=-7 -kerning first=374 second=371 amount=-5 -kerning first=69 second=280 amount=-5 -kerning first=358 second=194 amount=-13 -kerning first=313 second=8211 amount=-5 -kerning first=379 second=8212 amount=-6 -kerning first=196 second=88 amount=-9 -kerning first=301 second=233 amount=1 -kerning first=101 second=257 amount=2 -kerning first=259 second=309 amount=-10 -kerning first=262 second=89 amount=4 -kerning first=282 second=246 amount=-2 -kerning first=197 second=258 amount=-7 -kerning first=302 second=373 amount=-2 -kerning first=79 second=8211 amount=3 -kerning first=240 second=322 amount=-1 -kerning first=243 second=102 amount=-2 -kerning first=263 second=259 amount=1 -kerning first=201 second=208 amount=-5 -kerning first=309 second=103 amount=2 -kerning first=221 second=335 amount=-4 -kerning first=224 second=115 amount=1 -kerning first=352 second=197 amount=-9 -kerning first=290 second=116 amount=2 -kerning first=225 second=285 amount=2 -kerning first=353 second=337 amount=1 -kerning first=356 second=117 amount=-6 -kerning first=8212 second=262 amount=5 -kerning first=376 second=274 amount=-4 -kerning first=294 second=66 amount=-6 -kerning first=314 second=223 amount=3 -kerning first=357 second=287 amount=-8 -kerning first=360 second=67 amount=2 -kerning first=75 second=103 amount=-7 -kerning first=338 second=300 amount=-1 -kerning first=214 second=198 amount=-7 -kerning first=119 second=337 amount=4 -kerning first=362 second=377 amount=4 -kerning first=195 second=211 amount=-11 -kerning first=300 second=326 amount=-2 -kerning first=303 second=106 amount=-11 -kerning first=80 second=223 amount=3 -kerning first=346 second=200 amount=-3 -kerning first=369 second=107 amount=-1 -kerning first=281 second=339 amount=1 -kerning first=196 second=351 amount=-11 -kerning first=222 second=68 amount=-9 -kerning first=327 second=213 amount=3 -kerning first=285 second=289 amount=5 -kerning first=328 second=353 amount=1 -kerning first=243 second=365 amount=-2 -kerning first=354 second=70 amount=-5 -kerning first=266 second=302 amount=3 -kerning first=374 second=227 amount=-3 -kerning first=46 second=199 amount=-3 -kerning first=289 second=239 amount=3 -kerning first=69 second=106 amount=-10 -kerning first=204 second=251 amount=-2 -kerning first=89 second=263 amount=-4 -kerning first=355 second=240 amount=2 -kerning first=375 second=367 amount=3 -kerning first=70 second=276 amount=-9 -kerning first=208 second=201 amount=-6 -kerning first=231 second=108 amount=-1 -kerning first=116 second=120 amount=2 -kerning first=254 second=45 amount=3 -kerning first=274 second=202 amount=-5 -kerning first=74 second=226 amount=-5 -kerning first=160 second=302 amount=-4 -kerning first=298 second=279 amount=-2 -kerning first=98 second=303 amount=2 -kerning first=236 second=228 amount=2 -kerning first=121 second=240 amount=7 -kerning first=256 second=355 amount=-12 -kerning first=364 second=280 amount=-6 -kerning first=194 second=304 amount=-7 -kerning first=197 second=84 amount=-20 -kerning first=102 second=253 amount=-7 -kerning first=345 second=293 amount=-1 -kerning first=283 second=242 amount=1 -kerning first=198 second=254 amount=-2 -kerning first=83 second=266 amount=3 -kerning first=218 second=381 amount=4 -kerning first=241 second=318 amount=-1 -kerning first=244 second=98 amount=-1 -kerning first=349 second=243 amount=1 -kerning first=87 second=216 amount=2 -kerning first=222 second=331 amount=2 -kerning first=8212 second=88 amount=-6 -kerning first=268 second=205 amount=3 -kerning first=373 second=320 amount=2 -kerning first=376 second=100 amount=-3 -kerning first=291 second=112 amount=2 -kerning first=68 second=229 amount=2 -kerning first=203 second=344 amount=-6 -kerning first=88 second=356 amount=-2 -kerning first=311 second=269 amount=1 -kerning first=334 second=206 amount=3 -kerning first=111 second=293 amount=-1 -kerning first=354 second=333 amount=-7 -kerning first=357 second=113 amount=-8 -kerning first=292 second=282 amount=-6 -kerning first=69 second=369 amount=-2 -kerning first=230 second=231 amount=1 -kerning first=115 second=243 amount=1 -kerning first=358 second=283 amount=-7 -kerning first=273 second=295 amount=-1 -kerning first=296 second=232 amount=-2 -kerning first=342 second=76 amount=3 -kerning first=277 second=245 amount=1 -kerning first=192 second=257 amount=-10 -kerning first=320 second=309 amount=-12 -kerning first=343 second=246 amount=-2 -kerning first=258 second=258 amount=-7 -kerning first=58 second=282 amount=-4 -kerning first=196 second=207 amount=-7 -kerning first=304 second=102 amount=-3 -kerning first=324 second=259 amount=2 -kerning first=239 second=271 amount=2 -kerning first=262 second=208 amount=-2 -kerning first=370 second=103 amount=2 -kerning first=282 second=335 amount=-2 -kerning first=285 second=115 amount=2 -kerning first=197 second=347 amount=-11 -kerning first=82 second=359 amount=-2 -kerning first=348 second=336 amount=3 -kerning first=351 second=116 amount=1 -kerning first=371 second=273 amount=2 -kerning first=86 second=309 amount=-9 -kerning first=329 second=349 amount=1 -kerning first=244 second=361 amount=-2 -kerning first=352 second=286 amount=3 -kerning first=8211 second=211 amount=5 -kerning first=375 second=223 amount=5 -kerning first=67 second=322 amount=2 -kerning first=248 second=311 amount=-1 -kerning first=356 second=236 amount=-2 -kerning first=271 second=248 amount=-9 -kerning first=376 second=363 amount=-5 -kerning first=8212 second=351 amount=4 -kerning first=291 second=375 amount=2 -kerning first=71 second=272 amount=-2 -kerning first=232 second=104 amount=-1 -kerning first=337 second=249 amount=-2 -kerning first=117 second=116 amount=-1 -kerning first=298 second=105 amount=-2 -kerning first=75 second=222 amount=-7 -kerning first=256 second=211 amount=-11 -kerning first=237 second=224 amount=2 -kerning first=257 second=351 amount=1 -kerning first=195 second=300 amount=-7 -kerning first=303 second=225 amount=2 -kerning first=80 second=312 amount=1 -kerning first=103 second=249 amount=2 -kerning first=369 second=226 amount=2 -kerning first=304 second=365 amount=-2 -kerning first=84 second=262 amount=-2 -kerning first=219 second=377 amount=4 -kerning first=330 second=82 amount=-2 -kerning first=242 second=314 amount=-1 -kerning first=45 second=118 amount=2 -kerning first=65 second=275 amount=-12 -kerning first=203 second=200 amount=-5 -kerning first=88 second=212 amount=-4 -kerning first=226 second=107 amount=-1 -kerning first=108 second=339 amount=1 -kerning first=111 second=119 amount=-2 -kerning first=374 second=316 amount=-2 -kerning first=46 second=288 amount=-3 -kerning first=289 second=328 amount=2 -kerning first=204 second=340 amount=-2 -kerning first=207 second=120 amount=-1 -kerning first=312 second=265 amount=1 -kerning first=89 second=352 amount=-4 -kerning first=315 second=45 amount=-5 -kerning first=112 second=289 amount=5 -kerning first=355 second=329 amount=-1 -kerning first=358 second=109 amount=-6 -kerning first=70 second=365 amount=-3 -kerning first=208 second=290 amount=4 -kerning first=231 second=227 amount=1 -kerning first=359 second=279 amount=1 -kerning first=192 second=83 amount=-8 -kerning first=297 second=228 amount=2 -kerning first=258 second=84 amount=-20 -kerning first=363 second=229 amount=2 -kerning first=81 second=45 amount=3 -kerning first=239 second=97 amount=2 -kerning first=259 second=254 amount=-1 -kerning first=59 second=278 amount=-4 -kerning first=197 second=203 amount=-10 -kerning first=302 second=318 amount=-2 -kerning first=240 second=267 amount=1 -kerning first=348 second=192 amount=-9 -kerning first=221 second=280 amount=-4 -kerning first=264 second=344 amount=-4 -kerning first=287 second=281 amount=2 -kerning first=90 second=85 amount=3 -kerning first=225 second=230 amount=1 -kerning first=245 second=357 amount=-1 -kerning first=8212 second=207 amount=-5 -kerning first=45 second=381 amount=-4 -kerning first=291 second=231 amount=2 -kerning first=71 second=98 amount=2 -kerning first=206 second=243 amount=-2 -kerning first=357 second=232 amount=-9 -kerning first=230 second=320 amount=-1 -kerning first=233 second=100 amount=2 -kerning first=118 second=112 amount=2 -kerning first=342 second=195 amount=3 -kerning first=192 second=346 amount=-8 -kerning first=77 second=358 amount=-7 -kerning first=323 second=208 amount=-6 -kerning first=100 second=295 amount=-1 -kerning first=343 second=335 amount=-2 -kerning first=258 second=347 amount=-11 -kerning first=366 second=272 amount=-6 -kerning first=196 second=296 amount=-7 -kerning first=84 second=88 amount=-3 -kerning first=347 second=285 amount=3 -kerning first=350 second=65 amount=-9 -kerning first=370 second=222 amount=-2 -kerning first=285 second=234 amount=2 -kerning first=65 second=101 amount=-12 -kerning first=200 second=246 amount=-2 -kerning first=351 second=235 amount=1 -kerning first=66 second=271 amount=3 -kerning first=89 second=208 amount=-4 -kerning first=227 second=103 amount=2 -kerning first=112 second=115 amount=2 -kerning first=8211 second=300 amount=-5 -kerning first=270 second=197 amount=-8 -kerning first=375 second=312 amount=3 -kerning first=90 second=348 amount=2 -kerning first=228 second=273 amount=2 -kerning first=336 second=198 amount=-7 -kerning first=113 second=285 amount=2 -kerning first=356 second=325 amount=-1 -kerning first=271 second=337 amount=-9 -kerning first=274 second=117 amount=-2 -kerning first=294 second=274 amount=-6 -kerning first=71 second=361 amount=2 -kerning first=209 second=286 amount=3 -kerning first=232 second=223 amount=4 -kerning first=275 second=287 amount=2 -kerning first=193 second=79 amount=-11 -kerning first=75 second=311 amount=-7 -kerning first=318 second=351 amount=-8 -kerning first=98 second=248 amount=2 -kerning first=118 second=375 amount=2 -kerning first=256 second=300 amount=-7 -kerning first=364 second=225 amount=2 -kerning first=325 second=81 amount=3 -kerning first=198 second=199 amount=-7 -kerning first=83 second=211 amount=3 -kerning first=221 second=106 amount=-7 -kerning first=264 second=200 amount=-2 -kerning first=44 second=67 amount=-3 -kerning first=287 second=107 amount=2 -kerning first=202 second=119 amount=-2 -kerning first=84 second=351 amount=-10 -kerning first=222 second=276 amount=-9 -kerning first=330 second=201 amount=-6 -kerning first=353 second=108 amount=1 -kerning first=45 second=237 amount=2 -kerning first=373 second=265 amount=4 -kerning first=226 second=226 amount=2 -kerning first=111 second=238 amount=-2 -kerning first=354 second=278 amount=-8 -kerning first=272 second=70 amount=-5 -kerning first=292 second=227 amount=2 -kerning first=207 second=239 amount=-2 -kerning first=358 second=228 amount=-10 -kerning first=273 second=240 amount=2 -kerning first=231 second=316 amount=-1 -kerning first=119 second=108 amount=2 -kerning first=254 second=253 amount=2 -kerning first=57 second=57 amount=2 -kerning first=192 second=202 amount=-10 -kerning first=77 second=214 amount=3 -kerning first=320 second=254 amount=-2 -kerning first=258 second=203 amount=-10 -kerning first=363 second=318 amount=-1 -kerning first=193 second=342 amount=-17 -kerning first=196 second=122 amount=-7 -kerning first=78 second=354 amount=-6 -kerning first=301 second=267 amount=1 -kerning first=101 second=291 amount=2 -kerning first=347 second=111 amount=1 -kerning first=282 second=280 amount=-5 -kerning first=85 second=84 amount=-6 -kerning first=220 second=229 amount=2 -kerning first=325 second=344 amount=-2 -kerning first=263 second=293 amount=-1 -kerning first=266 second=73 amount=3 -kerning first=66 second=97 amount=3 -kerning first=201 second=242 amount=-2 -kerning first=86 second=254 amount=3 -kerning first=221 second=369 amount=-5 -kerning first=267 second=243 amount=-1 -kerning first=372 second=358 amount=-6 -kerning first=44 second=330 amount=-5 -kerning first=113 second=111 amount=1 -kerning first=353 second=371 amount=1 -kerning first=8212 second=296 amount=-5 -kerning first=291 second=320 amount=2 -kerning first=294 second=100 amount=2 -kerning first=114 second=281 amount=-2 -kerning first=160 second=73 amount=-4 -kerning first=275 second=113 amount=2 -kerning first=118 second=231 amount=4 -kerning first=358 second=8212 amount=-7 -kerning first=361 second=271 amount=2 -kerning first=194 second=75 amount=-5 -kerning first=99 second=244 amount=-1 -kerning first=234 second=359 amount=-1 -kerning first=119 second=371 amount=2 -kerning first=195 second=245 amount=-12 -kerning first=84 second=207 amount=-2 -kerning first=200 second=335 amount=-2 -kerning first=351 second=324 amount=1 -kerning first=354 second=104 amount=-3 -kerning first=269 second=116 amount=-1 -kerning first=289 second=273 amount=5 -kerning first=335 second=117 amount=-2 -kerning first=112 second=234 amount=2 -kerning first=270 second=286 amount=4 -kerning first=293 second=223 amount=3 -kerning first=359 second=224 amount=2 -kerning first=74 second=260 amount=-8 -kerning first=120 second=104 amount=-1 -kerning first=160 second=336 amount=-3 -kerning first=193 second=198 amount=-6 -kerning first=78 second=210 amount=3 -kerning first=98 second=337 amount=2 -kerning first=282 second=106 amount=-10 -kerning first=194 second=338 amount=-11 -kerning first=197 second=118 amount=-13 -kerning first=302 second=263 amount=-2 -kerning first=325 second=200 amount=-6 -kerning first=102 second=287 amount=-6 -kerning first=263 second=119 amount=-1 -kerning first=368 second=264 amount=2 -kerning first=198 second=288 amount=-7 -kerning first=201 second=68 amount=-5 -kerning first=221 second=225 amount=-3 -kerning first=329 second=120 amount=-1 -kerning first=349 second=277 amount=1 -kerning first=287 second=226 amount=5 -kerning first=307 second=353 amount=1 -kerning first=222 second=365 amount=2 -kerning first=330 second=290 amount=3 -kerning first=353 second=227 amount=3 -kerning first=45 second=326 amount=2 -kerning first=114 second=107 amount=-1 -kerning first=354 second=367 amount=-6 -kerning first=207 second=328 amount=-2 -kerning first=230 second=265 amount=1 -kerning first=115 second=277 amount=1 -kerning first=361 second=97 amount=2 -kerning first=273 second=329 amount=-1 -kerning first=276 second=109 amount=-2 -kerning first=73 second=353 amount=-2 -kerning first=214 second=58 amount=-5 -kerning first=119 second=227 amount=5 -kerning first=277 second=279 amount=1 -kerning first=192 second=291 amount=-10 -kerning first=195 second=71 amount=-11 -kerning first=77 second=303 amount=1 -kerning first=100 second=240 amount=2 -kerning first=235 second=355 amount=-1 -kerning first=281 second=229 amount=2 -kerning first=324 second=293 amount=-1 -kerning first=347 second=230 amount=2 -kerning first=367 second=357 amount=-1 -kerning first=282 second=369 amount=-2 -kerning first=65 second=46 amount=-10 -kerning first=197 second=381 amount=-7 -kerning first=85 second=203 amount=-6 -kerning first=289 second=99 amount=2 -kerning first=201 second=331 amount=-2 -kerning first=204 second=111 amount=-2 -kerning first=86 second=343 amount=3 -kerning first=355 second=100 amount=2 -kerning first=8211 second=245 amount=4 -kerning first=375 second=257 amount=7 -kerning first=67 second=356 amount=-2 -kerning first=205 second=281 amount=-2 -kerning first=356 second=270 amount=-8 -kerning first=160 second=192 amount=-3 -kerning first=275 second=232 amount=1 -kerning first=295 second=359 amount=-1 -kerning first=75 second=256 amount=-3 -kerning first=341 second=233 amount=-2 -kerning first=118 second=320 amount=2 -kerning first=121 second=100 amount=7 -kerning first=256 second=245 amount=-12 -kerning first=194 second=194 amount=-7 -kerning first=79 second=206 amount=3 -kerning first=99 second=333 amount=-1 -kerning first=102 second=113 amount=-6 -kerning first=119 second=8211 amount=4 -kerning first=260 second=195 amount=-7 -kerning first=368 second=90 amount=4 -kerning first=195 second=334 amount=-11 -kerning first=198 second=114 amount=-7 -kerning first=303 second=259 amount=2 -kerning first=218 second=271 amount=2 -kerning first=103 second=283 amount=2 -kerning first=349 second=103 amount=3 -kerning first=284 second=272 amount=-2 -kerning first=84 second=296 amount=-2 -kerning first=327 second=336 amount=3 -kerning first=107 second=233 amount=1 -kerning first=265 second=285 amount=1 -kerning first=68 second=89 amount=2 -kerning first=88 second=246 amount=-2 -kerning first=354 second=223 amount=1 -kerning first=374 second=350 amount=-4 -kerning first=227 second=311 amount=-1 -kerning first=115 second=103 amount=3 -kerning first=116 second=273 amount=2 -kerning first=192 second=117 amount=-13 -kerning first=343 second=106 amount=-10 -kerning first=120 second=223 amount=1 -kerning first=258 second=118 amount=-13 -kerning first=193 second=287 amount=-10 -kerning first=196 second=67 amount=-11 -kerning first=236 second=351 amount=1 -kerning first=121 second=363 amount=3 -kerning first=262 second=68 amount=-2 -kerning first=325 second=289 amount=2 -kerning first=198 second=377 amount=-3 -kerning first=86 second=199 amount=5 -kerning first=221 second=314 amount=-2 -kerning first=109 second=106 amount=-10 -kerning first=244 second=251 amount=-2 -kerning first=8211 second=71 amount=5 -kerning first=205 second=107 amount=-2 -kerning first=330 second=379 amount=4 -kerning first=353 second=316 amount=1 -kerning first=8212 second=241 amount=2 -kerning first=291 second=265 amount=2 -kerning first=206 second=277 amount=-2 -kerning first=337 second=109 amount=-2 -kerning first=114 second=226 amount=-2 -kerning first=272 second=278 amount=-6 -kerning first=75 second=82 amount=-7 -kerning first=315 second=342 amount=-4 -kerning first=318 second=122 amount=-10 -kerning first=341 second=59 amount=-7 -kerning first=256 second=71 amount=-11 -kerning first=296 second=355 amount=-2 -kerning first=119 second=316 amount=2 -kerning first=362 second=356 amount=-6 -kerning first=80 second=202 amount=-9 -kerning first=218 second=97 amount=2 -kerning first=100 second=329 amount=-1 -kerning first=103 second=109 amount=2 -kerning first=258 second=381 amount=-7 -kerning first=281 second=318 amount=-1 -kerning first=196 second=330 amount=-15 -kerning first=284 second=98 amount=2 -kerning first=84 second=122 amount=-10 -kerning first=265 second=111 amount=-1 -kerning first=200 second=280 amount=-5 -kerning first=108 second=229 amount=2 -kerning first=351 second=269 amount=1 -kerning first=89 second=242 amount=-4 -kerning first=224 second=357 amount=-1 -kerning first=8211 second=334 amount=5 -kerning first=290 second=358 amount=-2 -kerning first=356 second=359 amount=-3 -kerning first=271 second=371 amount=-9 -kerning first=54 second=48 amount=2 -kerning first=232 second=257 amount=2 -kerning first=193 second=113 amount=-10 -kerning first=75 second=345 amount=-9 -kerning first=210 second=8211 amount=3 -kerning first=341 second=322 amount=-1 -kerning first=256 second=334 amount=-11 -kerning first=364 second=259 amount=2 -kerning first=279 second=271 amount=2 -kerning first=194 second=283 amount=-12 -kerning first=102 second=232 amount=-8 -kerning first=237 second=347 amount=1 -kerning first=260 second=284 amount=-11 -kerning first=198 second=233 amount=-5 -kerning first=326 second=285 amount=2 -kerning first=369 second=349 amount=1 -kerning first=8212 second=67 amount=5 -kerning first=45 second=271 amount=4 -kerning first=48 second=51 amount=2 -kerning first=373 second=299 amount=2 -kerning first=376 second=79 amount=-1 -kerning first=68 second=208 amount=-6 -kerning first=311 second=248 amount=1 -kerning first=88 second=335 amount=-2 -kerning first=354 second=312 amount=-3 -kerning first=358 second=262 amount=-2 -kerning first=339 second=275 amount=1 -kerning first=254 second=287 amount=5 -kerning first=362 second=212 amount=2 -kerning first=277 second=224 amount=2 -kerning first=297 second=351 amount=1 -kerning first=323 second=68 amount=-6 -kerning first=343 second=225 amount=-2 -kerning first=120 second=312 amount=-1 -kerning first=81 second=198 amount=-7 -kerning first=370 second=82 amount=-2 -kerning first=197 second=326 amount=-13 -kerning first=200 second=106 amount=-10 -kerning first=105 second=275 amount=1 -kerning first=266 second=107 amount=2 -kerning first=201 second=276 amount=-5 -kerning first=86 second=288 amount=5 -kerning first=89 second=68 amount=-4 -kerning first=109 second=225 amount=2 -kerning first=225 second=353 amount=1 -kerning first=336 second=58 amount=-5 -kerning first=8212 second=330 amount=-2 -kerning first=271 second=227 amount=-8 -kerning first=376 second=342 amount=-1 -kerning first=298 second=84 amount=-2 -kerning first=75 second=201 amount=-9 -kerning first=98 second=108 amount=3 -kerning first=118 second=265 amount=4 -kerning first=121 second=45 amount=4 -kerning first=364 second=85 amount=2 -kerning first=279 second=97 amount=2 -kerning first=194 second=109 amount=-13 -kerning first=319 second=381 amount=2 -kerning first=342 second=318 amount=-2 -kerning first=345 second=98 amount=-1 -kerning first=260 second=110 amount=-13 -kerning first=195 second=279 amount=-12 -kerning first=83 second=71 amount=3 -kerning first=103 second=228 amount=5 -kerning first=346 second=268 amount=3 -kerning first=304 second=344 amount=-2 -kerning first=219 second=356 amount=-6 -kerning first=242 second=293 amount=-1 -kerning first=45 second=97 amount=4 -kerning first=285 second=357 amount=2 -kerning first=65 second=254 amount=-3 -kerning first=200 second=369 amount=-2 -kerning first=85 second=381 amount=4 -kerning first=111 second=98 amount=-1 -kerning first=289 second=307 amount=3 -kerning first=207 second=99 amount=-2 -kerning first=312 second=244 amount=1 -kerning first=89 second=331 amount=-5 -kerning first=358 second=88 amount=-3 -kerning first=273 second=100 amount=2 -kerning first=70 second=344 amount=-7 -kerning first=339 second=101 amount=1 -kerning first=254 second=113 amount=5 -kerning first=274 second=270 amount=-5 -kerning first=337 second=8212 amount=3 -kerning first=193 second=232 amount=-12 -kerning first=298 second=347 amount=-2 -kerning first=98 second=371 amount=2 -kerning first=302 second=297 amount=-2 -kerning first=82 second=194 amount=3 -kerning first=217 second=309 amount=-12 -kerning first=105 second=101 amount=1 -kerning first=240 second=246 amount=1 -kerning first=260 second=373 amount=-13 -kerning first=198 second=322 amount=-2 -kerning first=83 second=334 amount=3 -kerning first=86 second=114 amount=3 -kerning first=221 second=259 amount=-3 -kerning first=103 second=8212 amount=4 -kerning first=106 second=271 amount=2 -kerning first=349 second=311 amount=1 -kerning first=264 second=323 amount=4 -kerning first=267 second=103 amount=1 -kerning first=202 second=272 amount=-5 -kerning first=87 second=284 amount=2 -kerning first=333 second=104 amount=-1 -kerning first=248 second=116 amount=-1 -kerning first=45 second=360 amount=5 -kerning first=206 second=222 amount=-2 -kerning first=311 second=337 amount=1 -kerning first=226 second=349 amount=1 -kerning first=111 second=361 amount=-2 -kerning first=272 second=223 amount=2 -kerning first=115 second=311 amount=1 -kerning first=358 second=351 amount=-10 -kerning first=99 second=104 amount=-1 -kerning first=119 second=261 amount=5 -kerning first=192 second=325 amount=-15 -kerning first=300 second=250 amount=-2 -kerning first=80 second=117 amount=1 -kerning first=343 second=314 amount=-1 -kerning first=258 second=326 amount=-13 -kerning first=261 second=106 amount=-10 -kerning first=281 second=263 amount=1 -kerning first=196 second=275 amount=-12 -kerning first=84 second=67 amount=-2 -kerning first=104 second=224 amount=2 -kerning first=242 second=119 amount=-2 -kerning first=350 second=44 amount=-4 -kerning first=262 second=276 amount=-2 -kerning first=370 second=201 amount=-6 -kerning first=65 second=80 amount=-17 -kerning first=374 second=121 amount=-5 -kerning first=201 second=365 amount=-2 -kerning first=109 second=314 amount=-1 -kerning first=352 second=354 amount=-3 -kerning first=8211 second=279 amount=4 -kerning first=375 second=291 amount=7 -kerning first=70 second=200 amount=-9 -kerning first=333 second=367 amount=-2 -kerning first=356 second=304 amount=-2 -kerning first=71 second=340 amount=-4 -kerning first=212 second=45 amount=3 -kerning first=193 second=58 amount=-10 -kerning first=75 second=290 amount=-8 -kerning first=78 second=70 amount=-2 -kerning first=98 second=227 amount=5 -kerning first=341 second=267 amount=-2 -kerning first=256 second=279 amount=-12 -kerning first=194 second=228 amount=-10 -kerning first=260 second=229 amount=-10 -kerning first=280 second=356 amount=-5 -kerning first=326 second=230 amount=1 -kerning first=106 second=97 amount=2 -kerning first=199 second=318 amount=2 -kerning first=307 second=243 amount=1 -kerning first=84 second=330 amount=-1 -kerning first=107 second=267 amount=1 -kerning first=45 second=216 amount=5 -kerning first=373 second=244 amount=4 -kerning first=65 second=343 amount=-12 -kerning first=88 second=280 amount=-2 -kerning first=331 second=320 amount=-1 -kerning first=354 second=257 amount=-10 -kerning first=46 second=356 amount=-10 -kerning first=312 second=333 amount=1 -kerning first=332 second=8211 amount=3 -kerning first=112 second=357 amount=3 -kerning first=358 second=207 amount=-2 -kerning first=73 second=243 amount=-2 -kerning first=208 second=358 amount=-6 -kerning first=316 second=283 amount=1 -kerning first=231 second=295 amount=-1 -kerning first=254 second=232 amount=2 -kerning first=359 second=347 amount=1 -kerning first=320 second=233 amount=-1 -kerning first=97 second=320 amount=-1 -kerning first=100 second=100 amount=2 -kerning first=120 second=257 amount=2 -kerning first=278 second=309 amount=-10 -kerning first=196 second=101 amount=-12 -kerning first=301 second=246 amount=1 -kerning first=98 second=8211 amount=4 -kerning first=259 second=322 amount=-1 -kerning first=194 second=8212 amount=-12 -kerning first=197 second=271 amount=-10 -kerning first=220 second=208 amount=-6 -kerning first=328 second=103 amount=2 -kerning first=240 second=335 amount=1 -kerning first=348 second=260 amount=-9 -kerning first=86 second=233 amount=3 -kerning first=221 second=348 amount=-4 -kerning first=329 second=273 amount=2 -kerning first=352 second=210 amount=3 -kerning first=8211 second=105 amount=2 -kerning first=375 second=117 amount=3 -kerning first=44 second=309 amount=-11 -kerning first=287 second=349 amount=2 -kerning first=202 second=361 amount=-2 -kerning first=333 second=223 amount=2 -kerning first=8212 second=275 amount=4 -kerning first=376 second=287 amount=-3 -kerning first=291 second=299 amount=3 -kerning first=206 second=311 amount=-2 -kerning first=360 second=80 amount=-2 -kerning first=75 second=116 amount=-7 -kerning first=99 second=223 amount=2 -kerning first=195 second=224 amount=-10 -kerning first=300 second=339 amount=-2 -kerning first=80 second=236 amount=1 -kerning first=323 second=276 amount=-6 -kerning first=346 second=213 amount=3 -kerning first=261 second=225 amount=2 -kerning first=366 second=340 amount=-2 -kerning first=369 second=120 amount=-1 -kerning first=222 second=81 amount=4 -kerning first=327 second=226 amount=2 -kerning first=242 second=238 amount=-2 -kerning first=370 second=290 amount=2 -kerning first=65 second=199 amount=-11 -kerning first=88 second=106 amount=-10 -kerning first=108 second=263 amount=1 -kerning first=351 second=303 amount=1 -kerning first=354 second=83 amount=-6 -kerning first=374 second=240 amount=-3 -kerning first=46 second=212 amount=-3 -kerning first=289 second=252 amount=2 -kerning first=66 second=339 amount=2 -kerning first=69 second=119 amount=-2 -kerning first=89 second=276 amount=-4 -kerning first=8211 second=368 amount=5 -kerning first=70 second=289 amount=-3 -kerning first=208 second=214 amount=4 -kerning first=313 second=329 amount=-3 -kerning first=231 second=121 amount=-1 -kerning first=294 second=342 amount=-2 -kerning first=74 second=239 amount=-1 -kerning first=209 second=354 amount=-6 -kerning first=232 second=291 amount=2 -kerning first=275 second=355 amount=-1 -kerning first=213 second=304 amount=3 -kerning first=98 second=316 amount=3 -kerning first=121 second=253 amount=3 -kerning first=59 second=202 amount=-4 -kerning first=197 second=97 amount=-10 -kerning first=302 second=242 amount=-2 -kerning first=260 second=318 amount=-12 -kerning first=263 second=98 amount=-1 -kerning first=198 second=267 amount=-5 -kerning first=87 second=229 amount=2 -kerning first=222 second=344 amount=-7 -kerning first=8212 second=101 amount=4 -kerning first=373 second=333 amount=4 -kerning first=376 second=113 amount=-3 -kerning first=88 second=369 amount=-3 -kerning first=354 second=346 amount=-6 -kerning first=207 second=307 amount=-2 -kerning first=230 second=244 amount=1 -kerning first=335 second=359 amount=-1 -kerning first=358 second=296 amount=-2 -kerning first=276 second=88 amount=3 -kerning first=296 second=245 amount=-2 -kerning first=339 second=309 amount=-13 -kerning first=192 second=270 amount=-10 -kerning first=320 second=322 amount=-2 -kerning first=343 second=259 amount=-2 -kerning first=258 second=271 amount=-10 -kerning first=301 second=335 amount=1 -kerning first=304 second=115 amount=-2 -kerning first=101 second=359 amount=-1 -kerning first=305 second=285 amount=2 -kerning first=105 second=309 amount=-11 -kerning first=286 second=298 amount=3 -kerning first=66 second=195 amount=-5 -kerning first=309 second=235 amount=1 -kerning first=86 second=322 amount=3 -kerning first=89 second=102 amount=-4 -kerning first=109 second=259 amount=2 -kerning first=8211 second=224 amount=4 -kerning first=375 second=236 amount=3 -kerning first=70 second=115 amount=-4 -kerning first=333 second=312 amount=-2 -kerning first=248 second=324 amount=-2 -kerning first=8212 second=364 amount=5 -kerning first=71 second=285 amount=5 -kerning first=74 second=65 amount=-8 -kerning first=209 second=210 amount=3 -kerning first=114 second=349 amount=-2 -kerning first=360 second=199 amount=2 -kerning first=298 second=118 amount=-2 -kerning first=75 second=235 amount=-10 -kerning first=318 second=275 amount=-9 -kerning first=233 second=287 amount=2 -kerning first=118 second=299 amount=2 -kerning first=256 second=224 amount=-10 -kerning first=214 second=300 amount=3 -kerning first=217 second=80 amount=-2 -kerning first=365 second=289 amount=2 -kerning first=368 second=69 amount=-6 -kerning first=195 second=313 amount=-7 -kerning first=261 second=314 amount=-1 -kerning first=84 second=275 amount=-7 -kerning first=222 second=200 amount=-9 -kerning first=245 second=107 amount=-1 -kerning first=370 second=379 amount=4 -kerning first=65 second=288 amount=-11 -kerning first=68 second=68 amount=-6 -kerning first=226 second=120 amount=-1 -kerning first=334 second=45 amount=3 -kerning first=354 second=202 amount=-8 -kerning first=374 second=329 amount=-6 -kerning first=204 second=353 amount=-2 -kerning first=89 second=365 amount=-5 -kerning first=358 second=122 amount=-10 -kerning first=270 second=354 amount=-6 -kerning first=378 second=279 amount=1 -kerning first=70 second=378 amount=-6 -kerning first=316 second=228 amount=2 -kerning first=231 second=240 amount=1 -kerning first=74 second=328 amount=-4 -kerning first=258 second=97 amount=-10 -kerning first=193 second=266 amount=-11 -kerning first=196 second=46 amount=-10 -kerning first=78 second=278 amount=-6 -kerning first=81 second=58 amount=-5 -kerning first=324 second=98 amount=-1 -kerning first=197 second=216 amount=-11 -kerning first=302 second=331 amount=-2 -kerning first=325 second=268 amount=3 -kerning first=368 second=332 amount=2 -kerning first=198 second=356 amount=-2 -kerning first=221 second=293 amount=-2 -kerning first=264 second=357 amount=2 -kerning first=372 second=282 amount=-6 -kerning first=330 second=358 amount=-6 -kerning first=353 second=295 amount=1 -kerning first=356 second=75 amount=-7 -kerning first=291 second=244 amount=2 -kerning first=71 second=111 amount=3 -kerning first=357 second=245 amount=-9 -kerning first=272 second=257 amount=2 -kerning first=210 second=206 amount=3 -kerning first=318 second=101 amount=-9 -kerning first=230 second=333 amount=1 -kerning first=233 second=113 amount=2 -kerning first=234 second=283 amount=1 -kerning first=119 second=295 amount=2 -kerning first=365 second=115 amount=1 -kerning first=277 second=347 amount=1 -kerning first=192 second=359 amount=-12 -kerning first=366 second=285 amount=2 -kerning first=199 second=89 amount=4 -kerning first=304 second=234 amount=-2 -kerning first=84 second=101 amount=-7 -kerning first=65 second=114 amount=-12 -kerning first=85 second=271 amount=2 -kerning first=328 second=311 amount=-1 -kerning first=351 second=248 amount=1 -kerning first=66 second=284 amount=3 -kerning first=227 second=116 amount=-1 -kerning first=8211 second=313 amount=3 -kerning first=270 second=210 amount=4 -kerning first=70 second=234 amount=-4 -kerning first=205 second=349 amount=-2 -kerning first=356 second=338 amount=-2 -kerning first=294 second=287 amount=2 -kerning first=360 second=288 amount=2 -kerning first=160 second=260 amount=-3 -kerning first=278 second=80 amount=-6 -kerning first=298 second=237 amount=-2 -kerning first=75 second=324 amount=-8 -kerning first=256 second=313 amount=-7 -kerning first=194 second=262 amount=-11 -kerning first=240 second=106 amount=-10 -kerning first=198 second=212 amount=-7 -kerning first=221 second=119 amount=-4 -kerning first=103 second=351 amount=2 -kerning first=44 second=80 amount=-4 -kerning first=284 second=340 amount=-4 -kerning first=287 second=120 amount=-1 -kerning first=307 second=277 amount=1 -kerning first=222 second=289 amount=2 -kerning first=330 second=214 amount=3 -kerning first=353 second=121 amount=1 -kerning first=265 second=353 amount=1 -kerning first=45 second=250 amount=2 -kerning first=376 second=58 amount=-5 -kerning first=65 second=377 amount=-7 -kerning first=206 second=82 amount=-2 -kerning first=311 second=227 amount=2 -kerning first=111 second=251 amount=-2 -kerning first=354 second=291 amount=-10 -kerning first=292 second=240 amount=2 -kerning first=207 second=252 amount=-2 -kerning first=338 second=84 amount=-4 -kerning first=73 second=277 amount=-2 -kerning first=231 second=329 amount=-4 -kerning first=339 second=254 amount=-1 -kerning first=119 second=121 amount=2 -kerning first=300 second=110 amount=-2 -kerning first=77 second=227 amount=1 -kerning first=320 second=267 amount=-1 -kerning first=120 second=291 amount=2 -kerning first=258 second=216 amount=-11 -kerning first=193 second=355 amount=-12 -kerning first=239 second=229 amount=2 -kerning first=344 second=344 amount=-8 -kerning first=85 second=97 amount=2 -kerning first=266 second=86 amount=4 -kerning first=86 second=267 amount=3 -kerning first=67 second=280 amount=-2 -kerning first=356 second=194 amount=-13 -kerning first=8212 second=309 amount=-7 -kerning first=291 second=333 amount=2 -kerning first=294 second=113 amount=2 -kerning first=71 second=230 amount=4 -kerning first=160 second=86 amount=-3 -kerning first=377 second=8212 amount=-6 -kerning first=233 second=232 amount=1 -kerning first=118 second=244 amount=4 -kerning first=194 second=88 amount=-9 -kerning first=99 second=257 amount=1 -kerning first=257 second=309 amount=-10 -kerning first=260 second=89 amount=-7 -kerning first=280 second=246 amount=-2 -kerning first=195 second=258 amount=-7 -kerning first=300 second=373 amount=-2 -kerning first=80 second=270 amount=-9 -kerning first=261 second=259 amount=2 -kerning first=199 second=208 amount=-2 -kerning first=307 second=103 amount=2 -kerning first=222 second=115 amount=1 -kerning first=104 second=347 amount=1 -kerning first=350 second=197 amount=-9 -kerning first=373 second=104 amount=2 -kerning first=45 second=76 amount=3 -kerning first=65 second=233 amount=-12 -kerning first=223 second=285 amount=2 -kerning first=351 second=337 amount=1 -kerning first=354 second=117 amount=-6 -kerning first=374 second=274 amount=-4 -kerning first=292 second=66 amount=-6 -kerning first=355 second=287 amount=2 -kerning first=358 second=67 amount=-2 -kerning first=336 second=300 amount=3 -kerning first=74 second=273 amount=-5 -kerning first=212 second=198 amount=-7 -kerning first=360 second=377 amount=4 -kerning first=193 second=211 amount=-11 -kerning first=298 second=326 amount=-2 -kerning first=301 second=106 amount=-11 -kerning first=78 second=223 amount=2 -kerning first=213 second=338 amount=3 -kerning first=236 second=275 amount=1 -kerning first=121 second=287 amount=7 -kerning first=367 second=107 amount=-1 -kerning first=279 second=339 amount=1 -kerning first=282 second=119 amount=-2 -kerning first=194 second=351 amount=-11 -kerning first=220 second=68 amount=-6 -kerning first=325 second=213 amount=3 -kerning first=240 second=225 amount=2 -kerning first=260 second=352 amount=-8 -kerning first=283 second=289 amount=2 -kerning first=286 second=69 amount=-2 -kerning first=198 second=301 amount=-7 -kerning first=221 second=238 amount=-3 -kerning first=326 second=353 amount=1 -kerning first=352 second=70 amount=-3 -kerning first=264 second=302 amount=3 -kerning first=372 second=227 amount=2 -kerning first=44 second=199 amount=-3 -kerning first=287 second=239 amount=3 -kerning first=353 second=240 amount=3 -kerning first=373 second=367 amount=2 -kerning first=45 second=339 amount=4 -kerning first=68 second=276 amount=-6 -kerning first=229 second=108 amount=-1 -kerning first=114 second=120 amount=-2 -kerning first=272 second=202 amount=-6 -kerning first=72 second=226 amount=2 -kerning first=338 second=203 amount=-4 -kerning first=358 second=330 amount=-1 -kerning first=296 second=279 amount=-2 -kerning first=234 second=228 amount=2 -kerning first=119 second=240 amount=5 -kerning first=254 second=355 amount=3 -kerning first=362 second=280 amount=-6 -kerning first=192 second=304 amount=-7 -kerning first=195 second=84 amount=-20 -kerning first=343 second=293 amount=-1 -kerning first=281 second=242 amount=1 -kerning first=196 second=254 amount=-3 -kerning first=84 second=46 amount=-15 -kerning first=242 second=98 amount=-1 -kerning first=347 second=243 amount=1 -kerning first=65 second=59 amount=-10 -kerning first=85 second=216 amount=2 -kerning first=223 second=111 amount=1 -kerning first=266 second=205 amount=3 -kerning first=371 second=320 amount=-1 -kerning first=374 second=100 amount=-3 -kerning first=289 second=112 amount=2 -kerning first=66 second=229 amount=3 -kerning first=201 second=344 amount=-6 -kerning first=309 second=269 amount=1 -kerning first=332 second=206 amount=3 -kerning first=109 second=293 amount=-1 -kerning first=355 second=113 amount=2 -kerning first=8211 second=258 amount=-13 -kerning first=290 second=282 amount=-2 -kerning first=113 second=243 amount=1 -kerning first=356 second=283 amount=-7 -kerning first=74 second=99 amount=-5 -kerning first=340 second=76 amount=3 -kerning first=160 second=205 amount=-4 -kerning first=275 second=245 amount=1 -kerning first=75 second=269 amount=-10 -kerning first=318 second=309 amount=-13 -kerning first=236 second=101 amount=1 -kerning first=341 second=246 amount=-2 -kerning first=118 second=333 amount=4 -kerning first=121 second=113 amount=7 -kerning first=256 second=258 amount=-7 -kerning first=194 second=207 amount=-7 -kerning first=302 second=102 amount=-3 -kerning first=237 second=271 amount=2 -kerning first=122 second=283 amount=1 -kerning first=260 second=208 amount=-10 -kerning first=368 second=103 amount=2 -kerning first=280 second=335 amount=-2 -kerning first=283 second=115 amount=1 -kerning first=195 second=347 amount=-11 -kerning first=346 second=336 amount=3 -kerning first=349 second=116 amount=1 -kerning first=369 second=273 amount=2 -kerning first=84 second=309 amount=-13 -kerning first=107 second=246 amount=1 -kerning first=242 second=361 amount=-2 -kerning first=350 second=286 amount=3 -kerning first=268 second=78 amount=4 -kerning first=45 second=195 amount=-13 -kerning first=373 second=223 amount=5 -kerning first=65 second=322 amount=-12 -kerning first=246 second=311 amount=-1 -kerning first=354 second=236 amount=-2 -kerning first=269 second=248 amount=-1 -kerning first=374 second=363 amount=-5 -kerning first=289 second=375 amount=2 -kerning first=69 second=272 amount=-5 -kerning first=230 second=104 amount=-1 -kerning first=335 second=249 amount=-2 -kerning first=115 second=116 amount=1 -kerning first=296 second=105 amount=-2 -kerning first=73 second=222 amount=-2 -kerning first=235 second=224 amount=2 -kerning first=193 second=300 amount=-7 -kerning first=196 second=80 amount=-17 -kerning first=301 second=225 amount=2 -kerning first=367 second=226 amount=2 -kerning first=59 second=325 amount=-5 -kerning first=302 second=365 amount=-2 -kerning first=217 second=377 amount=4 -kerning first=240 second=314 amount=-1 -kerning first=201 second=200 amount=-5 -kerning first=86 second=212 amount=5 -kerning first=224 second=107 amount=-1 -kerning first=106 second=339 amount=1 -kerning first=8211 second=84 amount=-7 -kerning first=44 second=288 amount=-3 -kerning first=287 second=328 amount=2 -kerning first=290 second=108 amount=2 -kerning first=202 second=340 amount=-6 -kerning first=205 second=120 amount=-1 -kerning first=313 second=45 amount=-5 -kerning first=110 second=289 amount=2 -kerning first=356 second=109 amount=-6 -kerning first=271 second=121 amount=-11 -kerning first=376 second=266 amount=-1 -kerning first=209 second=70 amount=-2 -kerning first=229 second=227 amount=2 -kerning first=357 second=279 amount=-9 -kerning first=272 second=291 amount=2 -kerning first=295 second=228 amount=2 -kerning first=256 second=84 amount=-20 -kerning first=361 second=229 amount=2 -kerning first=79 second=45 amount=3 -kerning first=237 second=97 amount=2 -kerning first=257 second=254 amount=-1 -kerning first=195 second=203 amount=-10 -kerning first=300 second=318 amount=-2 -kerning first=346 second=192 amount=-9 -kerning first=196 second=343 amount=-12 -kerning first=219 second=280 amount=-6 -kerning first=262 second=344 amount=-4 -kerning first=285 second=281 amount=2 -kerning first=108 second=242 amount=1 -kerning first=243 second=357 amount=-1 -kerning first=289 second=231 amount=2 -kerning first=204 second=243 amount=-2 -kerning first=8211 second=347 amount=4 -kerning first=208 second=193 amount=-8 -kerning first=228 second=320 amount=-1 -kerning first=231 second=100 amount=1 -kerning first=340 second=195 amount=3 -kerning first=160 second=294 amount=-6 -kerning first=75 second=358 amount=-9 -kerning first=98 second=295 amount=3 -kerning first=341 second=335 amount=-2 -kerning first=121 second=232 amount=3 -kerning first=256 second=347 amount=-11 -kerning first=364 second=272 amount=-6 -kerning first=194 second=296 amount=-7 -kerning first=197 second=76 amount=-7 -kerning first=102 second=245 amount=-8 -kerning first=345 second=285 amount=-2 -kerning first=348 second=65 amount=-9 -kerning first=368 second=222 amount=-2 -kerning first=283 second=234 amount=1 -kerning first=198 second=246 amount=-5 -kerning first=83 second=258 amount=-9 -kerning first=349 second=235 amount=1 -kerning first=87 second=208 amount=-6 -kerning first=225 second=103 amount=2 -kerning first=107 second=335 amount=1 -kerning first=110 second=115 amount=1 -kerning first=8212 second=80 amount=-6 -kerning first=45 second=284 amount=5 -kerning first=373 second=312 amount=2 -kerning first=291 second=104 amount=2 -kerning first=206 second=116 amount=-2 -kerning first=226 second=273 amount=2 -kerning first=334 second=198 amount=-7 -kerning first=354 second=325 amount=-1 -kerning first=357 second=105 amount=-3 -kerning first=269 second=337 amount=-1 -kerning first=292 second=274 amount=-6 -kerning first=69 second=361 amount=-2 -kerning first=230 second=223 amount=4 -kerning first=115 second=235 amount=1 -kerning first=358 second=275 amount=-7 -kerning first=273 second=287 amount=2 -kerning first=73 second=311 amount=-2 -kerning first=316 second=351 amount=1 -kerning first=362 second=225 amount=2 -kerning first=323 second=81 amount=3 -kerning first=58 second=274 amount=-4 -kerning first=196 second=199 amount=-11 -kerning first=219 second=106 amount=-12 -kerning first=262 second=200 amount=-2 -kerning first=285 second=107 amount=2 -kerning first=197 second=339 amount=-12 -kerning first=200 second=119 amount=-2 -kerning first=220 second=276 amount=-6 -kerning first=351 second=108 amount=1 -kerning first=86 second=301 amount=3 -kerning first=89 second=81 amount=-1 -kerning first=224 second=226 amount=2 -kerning first=352 second=278 amount=-3 -kerning first=270 second=70 amount=-5 -kerning first=8211 second=203 amount=-7 -kerning first=67 second=314 amount=2 -kerning first=205 second=239 amount=-2 -kerning first=356 second=228 amount=-10 -kerning first=271 second=240 amount=-8 -kerning first=376 second=355 amount=-2 -kerning first=291 second=367 amount=2 -kerning first=71 second=264 amount=3 -kerning first=74 second=44 amount=-5 -kerning first=229 second=316 amount=-1 -kerning first=337 second=241 amount=-2 -kerning first=117 second=108 amount=-1 -kerning first=55 second=57 amount=-5 -kerning first=75 second=214 amount=-8 -kerning first=98 second=121 amount=2 -kerning first=256 second=203 amount=-10 -kerning first=361 second=318 amount=-1 -kerning first=194 second=122 amount=-7 -kerning first=99 second=291 amount=1 -kerning first=345 second=111 amount=-2 -kerning first=280 second=280 amount=-5 -kerning first=198 second=72 amount=-5 -kerning first=83 second=84 amount=-3 -kerning first=218 second=229 amount=2 -kerning first=323 second=344 amount=-2 -kerning first=103 second=241 amount=2 -kerning first=261 second=293 amount=-1 -kerning first=264 second=73 amount=3 -kerning first=304 second=357 amount=-2 -kerning first=84 second=254 amount=-3 -kerning first=265 second=243 amount=-1 -kerning first=370 second=358 amount=-6 -kerning first=45 second=110 amount=2 -kerning first=65 second=267 amount=-12 -kerning first=351 second=371 amount=1 -kerning first=46 second=280 amount=-4 -kerning first=289 second=320 amount=2 -kerning first=292 second=100 amount=2 -kerning first=207 second=112 amount=-2 -kerning first=312 second=257 amount=2 -kerning first=89 second=344 amount=-1 -kerning first=112 second=281 amount=2 -kerning first=358 second=101 amount=-7 -kerning first=273 second=113 amount=2 -kerning first=70 second=357 amount=-2 -kerning first=208 second=282 amount=-6 -kerning first=356 second=8212 amount=-7 -kerning first=359 second=271 amount=2 -kerning first=192 second=75 amount=-5 -kerning first=74 second=307 amount=-1 -kerning first=232 second=359 amount=-1 -kerning first=258 second=76 amount=-7 -kerning first=193 second=245 amount=-12 -kerning first=78 second=257 amount=2 -kerning first=236 second=309 amount=-11 -kerning first=59 second=270 amount=-3 -kerning first=197 second=195 amount=-7 -kerning first=240 second=259 amount=2 -kerning first=198 second=335 amount=-5 -kerning first=221 second=272 amount=-4 -kerning first=349 second=324 amount=1 -kerning first=267 second=116 amount=-1 -kerning first=287 second=273 amount=5 -kerning first=333 second=117 amount=-2 -kerning first=8212 second=199 amount=5 -kerning first=376 second=211 amount=-1 -kerning first=45 second=373 amount=2 -kerning first=291 second=223 amount=5 -kerning first=206 second=235 amount=-2 -kerning first=357 second=224 amount=-8 -kerning first=207 second=375 amount=-2 -kerning first=115 second=324 amount=1 -kerning first=118 second=104 amount=2 -kerning first=280 second=106 amount=-10 -kerning first=192 second=338 amount=-11 -kerning first=195 second=118 amount=-13 -kerning first=300 second=263 amount=-2 -kerning first=323 second=200 amount=-6 -kerning first=100 second=287 amount=2 -kerning first=258 second=339 amount=-12 -kerning first=366 second=264 amount=2 -kerning first=196 second=288 amount=-11 -kerning first=199 second=68 amount=-2 -kerning first=81 second=300 amount=3 -kerning first=84 second=80 amount=-5 -kerning first=219 second=225 amount=2 -kerning first=347 second=277 amount=1 -kerning first=370 second=214 amount=2 -kerning first=285 second=226 amount=5 -kerning first=305 second=353 amount=1 -kerning first=351 second=227 amount=3 -kerning first=46 second=106 amount=-11 -kerning first=66 second=263 amount=2 -kerning first=89 second=200 amount=-4 -kerning first=112 second=107 amount=3 -kerning first=290 second=316 amount=2 -kerning first=205 second=328 amount=-2 -kerning first=90 second=340 amount=2 -kerning first=113 second=277 amount=1 -kerning first=359 second=97 amount=2 -kerning first=274 second=109 amount=-2 -kerning first=71 second=353 amount=2 -kerning first=209 second=278 amount=-6 -kerning first=212 second=58 amount=-5 -kerning first=117 second=227 amount=2 -kerning first=275 second=279 amount=1 -kerning first=193 second=71 amount=-11 -kerning first=75 second=303 amount=-7 -kerning first=318 second=343 amount=-9 -kerning first=98 second=240 amount=5 -kerning first=233 second=355 amount=-1 -kerning first=118 second=367 amount=2 -kerning first=279 second=229 amount=2 -kerning first=365 second=357 amount=-1 -kerning first=280 second=369 amount=-2 -kerning first=195 second=381 amount=-7 -kerning first=83 second=203 amount=-3 -kerning first=221 second=98 amount=-2 -kerning first=287 second=99 amount=2 -kerning first=202 second=111 amount=-2 -kerning first=84 second=343 amount=-6 -kerning first=222 second=268 amount=4 -kerning first=353 second=100 amount=3 -kerning first=45 second=229 amount=4 -kerning first=373 second=257 amount=5 -kerning first=65 second=356 amount=-20 -kerning first=354 second=270 amount=-8 -kerning first=207 second=231 amount=-2 -kerning first=339 second=233 amount=1 -kerning first=119 second=100 amount=5 -kerning first=254 second=245 amount=2 -kerning first=192 second=194 amount=-7 -kerning first=320 second=246 amount=-1 -kerning first=100 second=113 amount=2 -kerning first=258 second=195 amount=-7 -kerning first=366 second=90 amount=4 -kerning first=193 second=334 amount=-11 -kerning first=196 second=114 amount=-12 -kerning first=301 second=259 amount=2 -kerning first=213 second=8212 amount=3 -kerning first=101 second=283 amount=1 -kerning first=347 second=103 amount=3 -kerning first=282 second=272 amount=-5 -kerning first=197 second=284 amount=-11 -kerning first=325 second=336 amount=3 -kerning first=328 second=116 amount=-1 -kerning first=105 second=233 amount=1 -kerning first=263 second=285 amount=1 -kerning first=66 second=89 amount=2 -kerning first=286 second=222 amount=-2 -kerning first=86 second=246 amount=3 -kerning first=221 second=361 amount=-5 -kerning first=352 second=223 amount=2 -kerning first=8211 second=118 amount=2 -kerning first=225 second=311 amount=-1 -kerning first=113 second=103 amount=2 -kerning first=353 second=363 amount=1 -kerning first=8212 second=288 amount=5 -kerning first=51 second=52 amount=-2 -kerning first=291 second=312 amount=2 -kerning first=206 second=324 amount=-2 -kerning first=114 second=273 amount=-2 -kerning first=160 second=65 amount=-3 -kerning first=341 second=106 amount=-10 -kerning first=118 second=223 amount=5 -kerning first=256 second=118 amount=-13 -kerning first=194 second=67 amount=-11 -kerning first=234 second=351 amount=1 -kerning first=119 second=363 amount=2 -kerning first=260 second=68 amount=-10 -kerning first=80 second=249 amount=1 -kerning first=323 second=289 amount=2 -kerning first=196 second=377 amount=-7 -kerning first=84 second=199 amount=-2 -kerning first=107 second=106 amount=-12 -kerning first=242 second=251 amount=-2 -kerning first=65 second=212 amount=-11 -kerning first=88 second=119 amount=-4 -kerning first=351 second=316 amount=1 -kerning first=269 second=108 amount=-1 -kerning first=289 second=265 amount=2 -kerning first=204 second=277 amount=-2 -kerning first=89 second=289 amount=-3 -kerning first=335 second=109 amount=-2 -kerning first=112 second=226 amount=5 -kerning first=358 second=46 amount=-15 -kerning first=8211 second=381 amount=-4 -kerning first=270 second=278 amount=-6 -kerning first=73 second=82 amount=-2 -kerning first=208 second=227 amount=2 -kerning first=313 second=342 amount=-4 -kerning first=117 second=316 amount=-1 -kerning first=360 second=356 amount=-6 -kerning first=78 second=202 amount=-6 -kerning first=256 second=381 amount=-7 -kerning first=279 second=318 amount=-1 -kerning first=194 second=330 amount=-15 -kerning first=197 second=110 amount=-13 -kerning first=102 second=279 amount=-8 -kerning first=260 second=331 amount=-13 -kerning first=263 second=111 amount=-1 -kerning first=198 second=280 amount=-2 -kerning first=106 second=229 amount=2 -kerning first=349 second=269 amount=1 -kerning first=67 second=85 amount=4 -kerning first=330 second=282 amount=-6 -kerning first=8212 second=114 amount=2 -kerning first=114 second=99 amount=-2 -kerning first=354 second=359 amount=-3 -kerning first=207 second=320 amount=-2 -kerning first=230 second=257 amount=2 -kerning first=115 second=269 amount=1 -kerning first=358 second=309 amount=-13 -kerning first=208 second=8211 amount=4 -kerning first=339 second=322 amount=-1 -kerning first=362 second=259 amount=2 -kerning first=277 second=271 amount=2 -kerning first=192 second=283 amount=-12 -kerning first=80 second=75 amount=-6 -kerning first=320 second=335 amount=-1 -kerning first=100 second=232 amount=1 -kerning first=235 second=347 amount=1 -kerning first=120 second=359 amount=-1 -kerning first=258 second=284 amount=-11 -kerning first=196 second=233 amount=-12 -kerning first=324 second=285 amount=2 -kerning first=367 second=349 amount=1 -kerning first=282 second=361 amount=-2 -kerning first=197 second=373 amount=-13 -kerning first=374 second=79 amount=-1 -kerning first=286 second=311 amount=2 -kerning first=66 second=208 amount=-4 -kerning first=309 second=248 amount=1 -kerning first=86 second=335 amount=3 -kerning first=89 second=115 amount=-4 -kerning first=8211 second=237 amount=2 -kerning first=375 second=249 amount=3 -kerning first=356 second=262 amount=-2 -kerning first=8212 second=377 amount=-4 -kerning first=71 second=298 amount=3 -kerning first=209 second=223 amount=2 -kerning first=360 second=212 amount=2 -kerning first=275 second=224 amount=2 -kerning first=295 second=351 amount=1 -kerning first=75 second=248 amount=-10 -kerning first=341 second=225 amount=-2 -kerning first=118 second=312 amount=2 -kerning first=79 second=198 amount=-7 -kerning first=102 second=105 amount=-7 -kerning first=368 second=82 amount=-2 -kerning first=195 second=326 amount=-13 -kerning first=198 second=106 amount=-13 -kerning first=80 second=338 amount=3 -kerning first=103 second=275 amount=2 -kerning first=264 second=107 amount=2 -kerning first=199 second=276 amount=-2 -kerning first=84 second=288 amount=-2 -kerning first=87 second=68 amount=-6 -kerning first=107 second=225 amount=2 -kerning first=222 second=213 amount=4 -kerning first=245 second=120 amount=-2 -kerning first=68 second=81 amount=4 -kerning first=334 second=58 amount=-5 -kerning first=269 second=227 amount=1 -kerning first=374 second=342 amount=-1 -kerning first=312 second=291 amount=2 -kerning first=355 second=355 amount=-1 -kerning first=296 second=84 amount=-2 -kerning first=119 second=45 amount=4 -kerning first=362 second=85 amount=2 -kerning first=277 second=97 amount=2 -kerning first=192 second=109 amount=-13 -kerning first=340 second=318 amount=-2 -kerning first=343 second=98 amount=-1 -kerning first=258 second=110 amount=-13 -kerning first=193 second=279 amount=-12 -kerning first=196 second=59 amount=-10 -kerning first=78 second=291 amount=2 -kerning first=101 second=228 amount=2 -kerning first=121 second=355 amount=3 -kerning first=197 second=229 amount=-10 -kerning first=302 second=344 amount=-2 -kerning first=217 second=356 amount=-6 -kerning first=240 second=293 amount=-1 -kerning first=283 second=357 amount=-1 -kerning first=198 second=369 amount=-6 -kerning first=109 second=98 amount=-1 -kerning first=287 second=307 amount=3 -kerning first=67 second=204 amount=3 -kerning first=205 second=99 amount=-2 -kerning first=290 second=87 amount=4 -kerning first=356 second=88 amount=-3 -kerning first=8212 second=233 amount=4 -kerning first=268 second=320 amount=2 -kerning first=271 second=100 amount=-8 -kerning first=376 second=245 amount=-4 -kerning first=291 second=257 amount=5 -kerning first=68 second=344 amount=-3 -kerning first=206 second=269 amount=-2 -kerning first=272 second=270 amount=-6 -kerning first=318 second=114 amount=-9 -kerning first=335 second=8212 amount=3 -kerning first=296 second=347 amount=-2 -kerning first=300 second=297 amount=-2 -kerning first=80 second=194 amount=-14 -kerning first=103 second=101 amount=2 -kerning first=258 second=373 amount=-13 -kerning first=196 second=322 amount=-12 -kerning first=84 second=114 amount=-6 -kerning first=219 second=259 amount=2 -kerning first=104 second=271 amount=2 -kerning first=347 second=311 amount=1 -kerning first=262 second=323 amount=4 -kerning first=265 second=103 amount=1 -kerning first=200 second=272 amount=-5 -kerning first=85 second=284 amount=2 -kerning first=331 second=104 amount=-1 -kerning first=246 second=116 amount=-1 -kerning first=204 second=222 amount=-2 -kerning first=309 second=337 amount=1 -kerning first=89 second=234 amount=-4 -kerning first=224 second=349 amount=1 -kerning first=8211 second=326 amount=2 -kerning first=270 second=223 amount=2 -kerning first=113 second=311 amount=-1 -kerning first=356 second=351 amount=-10 -kerning first=271 second=363 amount=-9 -kerning first=74 second=197 amount=-8 -kerning first=97 second=104 amount=-1 -kerning first=298 second=250 amount=-2 -kerning first=75 second=337 amount=-10 -kerning first=341 second=314 amount=-1 -kerning first=256 second=326 amount=-13 -kerning first=259 second=106 amount=-10 -kerning first=279 second=263 amount=1 -kerning first=194 second=275 amount=-12 -kerning first=102 second=224 amount=-6 -kerning first=237 second=339 amount=1 -kerning first=348 second=44 amount=-4 -kerning first=122 second=351 amount=1 -kerning first=260 second=276 amount=-10 -kerning first=368 second=201 amount=-6 -kerning first=198 second=225 amount=-3 -kerning first=241 second=289 amount=2 -kerning first=84 second=377 amount=-2 -kerning first=330 second=227 amount=2 -kerning first=245 second=239 amount=-2 -kerning first=350 second=354 amount=-3 -kerning first=45 second=263 amount=4 -kerning first=373 second=291 amount=2 -kerning first=376 second=71 amount=-1 -kerning first=68 second=200 amount=-6 -kerning first=311 second=240 amount=2 -kerning first=114 second=44 amount=-7 -kerning first=354 second=304 amount=-2 -kerning first=269 second=316 amount=-1 -kerning first=69 second=340 amount=-6 -kerning first=207 second=265 amount=-2 -kerning first=210 second=45 amount=3 -kerning first=358 second=254 amount=-3 -kerning first=76 second=70 amount=-4 -kerning first=339 second=267 amount=1 -kerning first=254 second=279 amount=2 -kerning first=192 second=228 amount=-10 -kerning first=77 second=240 amount=1 -kerning first=258 second=229 amount=-10 -kerning first=278 second=356 amount=-5 -kerning first=324 second=230 amount=1 -kerning first=104 second=97 amount=2 -kerning first=344 second=357 amount=-2 -kerning first=197 second=318 amount=-12 -kerning first=105 second=267 amount=1 -kerning first=329 second=320 amount=-1 -kerning first=44 second=356 amount=-10 -kerning first=290 second=206 amount=3 -kerning first=67 second=293 amount=2 -kerning first=110 second=357 amount=-1 -kerning first=356 second=207 amount=-2 -kerning first=376 second=334 amount=-1 -kerning first=71 second=243 amount=3 -kerning first=206 second=358 amount=-2 -kerning first=229 second=295 amount=-1 -kerning first=357 second=347 amount=-8 -kerning first=75 second=193 amount=-3 -kerning first=318 second=233 amount=-9 -kerning first=98 second=100 amount=5 -kerning first=233 second=245 amount=1 -kerning first=118 second=257 amount=5 -kerning first=276 second=309 amount=-10 -kerning first=194 second=101 amount=-12 -kerning first=257 second=322 amount=-1 -kerning first=260 second=102 amount=-12 -kerning first=192 second=8212 amount=-12 -kerning first=195 second=271 amount=-10 -kerning first=218 second=208 amount=-6 -kerning first=326 second=103 amount=2 -kerning first=238 second=335 amount=1 -kerning first=241 second=115 amount=1 -kerning first=346 second=260 amount=-9 -kerning first=84 second=233 amount=-7 -kerning first=327 second=273 amount=2 -kerning first=350 second=210 amount=3 -kerning first=373 second=117 amount=2 -kerning first=45 second=89 amount=3 -kerning first=285 second=349 amount=2 -kerning first=65 second=246 amount=-12 -kerning first=200 second=361 amount=-2 -kerning first=331 second=223 amount=4 -kerning first=374 second=287 amount=-3 -kerning first=289 second=299 amount=3 -kerning first=204 second=311 amount=-2 -kerning first=358 second=80 amount=-5 -kerning first=73 second=116 amount=-2 -kerning first=254 second=105 amount=2 -kerning first=320 second=106 amount=-12 -kerning first=58 second=79 amount=-3 -kerning first=193 second=224 amount=-10 -kerning first=298 second=339 amount=-2 -kerning first=98 second=363 amount=2 -kerning first=259 second=225 amount=2 -kerning first=364 second=340 amount=-2 -kerning first=367 second=120 amount=-1 -kerning first=325 second=226 amount=2 -kerning first=345 second=353 amount=-2 -kerning first=260 second=365 amount=-13 -kerning first=368 second=290 amount=2 -kerning first=286 second=82 amount=-4 -kerning first=198 second=314 amount=-2 -kerning first=86 second=106 amount=-9 -kerning first=106 second=263 amount=1 -kerning first=349 second=303 amount=1 -kerning first=372 second=240 amount=2 -kerning first=44 second=212 amount=-3 -kerning first=287 second=252 amount=2 -kerning first=87 second=276 amount=-6 -kerning first=245 second=328 amount=-2 -kerning first=248 second=108 amount=-1 -kerning first=353 second=253 amount=1 -kerning first=68 second=289 amount=2 -kerning first=71 second=69 amount=-2 -kerning first=311 second=329 amount=-2 -kerning first=292 second=342 amount=-2 -kerning first=207 second=354 amount=-2 -kerning first=230 second=291 amount=2 -kerning first=115 second=303 amount=1 -kerning first=358 second=343 amount=-6 -kerning first=273 second=355 amount=-1 -kerning first=211 second=304 amount=3 -kerning first=119 second=253 amount=2 -kerning first=195 second=97 amount=-10 -kerning first=300 second=242 amount=-2 -kerning first=80 second=109 amount=1 -kerning first=258 second=318 amount=-12 -kerning first=261 second=98 amount=-1 -kerning first=58 second=342 amount=-4 -kerning first=196 second=267 amount=-12 -kerning first=84 second=59 amount=-15 -kerning first=65 second=72 amount=-4 -kerning first=85 second=229 amount=2 -kerning first=220 second=344 amount=-2 -kerning first=374 second=113 amount=-3 -kerning first=66 second=242 amount=2 -kerning first=86 second=369 amount=2 -kerning first=8211 second=271 amount=4 -kerning first=375 second=283 amount=3 -kerning first=290 second=295 amount=2 -kerning first=70 second=192 amount=-12 -kerning first=205 second=307 amount=-2 -kerning first=208 second=87 amount=2 -kerning first=333 second=359 amount=-1 -kerning first=248 second=371 amount=-2 -kerning first=356 second=296 amount=-2 -kerning first=274 second=88 amount=3 -kerning first=209 second=257 amount=2 -kerning first=75 second=282 amount=-9 -kerning first=213 second=207 amount=3 -kerning first=341 second=259 amount=-2 -kerning first=256 second=271 amount=-10 -kerning first=299 second=335 amount=1 -kerning first=302 second=115 amount=-2 -kerning first=99 second=359 amount=-1 -kerning first=303 second=285 amount=2 -kerning first=372 second=66 amount=-6 -kerning first=284 second=298 amount=3 -kerning first=307 second=235 amount=1 -kerning first=84 second=322 amount=-3 -kerning first=107 second=259 amount=2 -kerning first=45 second=208 amount=-7 -kerning first=373 second=236 amount=2 -kerning first=65 second=335 amount=-12 -kerning first=88 second=272 amount=-2 -kerning first=246 second=324 amount=-2 -kerning first=112 second=349 amount=2 -kerning first=358 second=199 amount=-2 -kerning first=296 second=118 amount=-2 -kerning first=73 second=235 amount=-2 -kerning first=316 second=275 amount=1 -kerning first=231 second=287 amount=1 -kerning first=254 second=224 amount=5 -kerning first=359 second=339 amount=1 -kerning first=212 second=300 amount=3 -kerning first=97 second=312 amount=-1 -kerning first=363 second=289 amount=2 -kerning first=366 second=69 amount=-6 -kerning first=193 second=313 amount=-7 -kerning first=259 second=314 amount=-1 -kerning first=59 second=338 amount=-3 -kerning first=197 second=263 amount=-12 -kerning first=220 second=200 amount=-6 -kerning first=243 second=107 amount=-1 -kerning first=368 second=379 amount=4 -kerning first=286 second=201 amount=-2 -kerning first=66 second=68 amount=-4 -kerning first=86 second=225 amount=6 -kerning first=221 second=340 amount=-1 -kerning first=224 second=120 amount=-1 -kerning first=332 second=45 amount=3 -kerning first=352 second=202 amount=-3 -kerning first=8211 second=97 amount=4 -kerning first=375 second=109 amount=3 -kerning first=356 second=122 amount=-10 -kerning first=8212 second=267 amount=4 -kerning first=268 second=354 amount=-2 -kerning first=291 second=291 amount=5 -kerning first=206 second=303 amount=-2 -kerning first=229 second=240 amount=2 -kerning first=75 second=108 amount=-7 -kerning first=98 second=45 amount=4 -kerning first=256 second=97 amount=-10 -kerning first=194 second=46 amount=-10 -kerning first=79 second=58 amount=-5 -kerning first=195 second=216 amount=-11 -kerning first=300 second=331 amount=-2 -kerning first=303 second=111 amount=1 -kerning first=323 second=268 amount=3 -kerning first=100 second=355 amount=-1 -kerning first=366 second=332 amount=2 -kerning first=196 second=356 amount=-20 -kerning first=304 second=281 amount=-2 -kerning first=262 second=357 amount=2 -kerning first=370 second=282 amount=-6 -kerning first=223 second=243 amount=1 -kerning first=351 second=295 amount=1 -kerning first=354 second=75 amount=-7 -kerning first=289 second=244 amount=2 -kerning first=69 second=111 amount=-2 -kerning first=89 second=268 amount=-1 -kerning first=8211 second=360 amount=5 -kerning first=270 second=257 amount=2 -kerning first=70 second=281 amount=-6 -kerning first=316 second=101 amount=1 -kerning first=231 second=113 amount=1 -kerning first=248 second=8211 amount=3 -kerning first=74 second=231 amount=-5 -kerning first=232 second=283 amount=1 -kerning first=117 second=295 amount=-1 -kerning first=363 second=115 amount=1 -kerning first=275 second=347 amount=1 -kerning first=75 second=371 amount=-8 -kerning first=213 second=296 amount=3 -kerning first=236 second=233 amount=1 -kerning first=121 second=245 amount=3 -kerning first=364 second=285 amount=2 -kerning first=197 second=89 amount=-7 -kerning first=302 second=234 amount=-2 -kerning first=198 second=259 amount=-3 -kerning first=80 second=8212 amount=2 -kerning first=221 second=196 amount=-3 -kerning first=326 second=311 amount=-1 -kerning first=349 second=248 amount=1 -kerning first=222 second=336 amount=4 -kerning first=225 second=116 amount=-1 -kerning first=376 second=105 amount=-3 -kerning first=45 second=297 amount=2 -kerning first=291 second=117 amount=2 -kerning first=88 second=361 amount=-3 -kerning first=354 second=338 amount=-2 -kerning first=357 second=118 amount=-10 -kerning first=292 second=287 amount=2 -kerning first=207 second=299 amount=-2 -kerning first=115 second=248 amount=1 -kerning first=358 second=288 amount=-2 -kerning first=276 second=80 amount=-6 -kerning first=296 second=237 amount=-2 -kerning first=73 second=324 amount=-2 -kerning first=192 second=262 amount=-11 -kerning first=320 second=314 amount=-2 -kerning first=238 second=106 amount=-11 -kerning first=258 second=263 amount=-12 -kerning first=196 second=212 amount=-11 -kerning first=304 second=107 amount=-2 -kerning first=101 second=351 amount=1 -kerning first=282 second=340 amount=-6 -kerning first=197 second=352 amount=-8 -kerning first=285 second=120 amount=-1 -kerning first=220 second=289 amount=2 -kerning first=351 second=121 amount=1 -kerning first=263 second=353 amount=1 -kerning first=374 second=58 amount=-5 -kerning first=204 second=82 amount=-2 -kerning first=309 second=227 amount=2 -kerning first=86 second=314 amount=3 -kerning first=8211 second=216 amount=5 -kerning first=375 second=228 amount=7 -kerning first=67 second=327 amount=4 -kerning first=70 second=107 amount=-2 -kerning first=205 second=252 amount=-2 -kerning first=248 second=316 amount=-1 -kerning first=8212 second=356 amount=-7 -kerning first=71 second=277 amount=3 -kerning first=209 second=202 amount=-6 -kerning first=229 second=329 amount=-3 -kerning first=337 second=254 amount=-1 -kerning first=298 second=110 amount=-2 -kerning first=75 second=227 amount=-7 -kerning first=318 second=267 amount=-9 -kerning first=233 second=279 amount=1 -kerning first=118 second=291 amount=5 -kerning first=256 second=216 amount=-11 -kerning first=237 second=229 amount=2 -kerning first=342 second=344 amount=-8 -kerning first=198 second=85 amount=-2 -kerning first=103 second=254 amount=3 -kerning first=264 second=86 amount=4 -kerning first=84 second=267 amount=-7 -kerning first=222 second=192 amount=-13 -kerning first=65 second=280 amount=-10 -kerning first=311 second=100 amount=2 -kerning first=331 second=257 amount=2 -kerning first=354 second=194 amount=-13 -kerning first=289 second=333 amount=2 -kerning first=292 second=113 amount=2 -kerning first=89 second=357 amount=-2 -kerning first=358 second=114 amount=-6 -kerning first=116 second=244 amount=1 -kerning first=192 second=88 amount=-9 -kerning first=77 second=100 amount=1 -kerning first=97 second=257 amount=2 -kerning first=258 second=89 amount=-7 -kerning first=278 second=246 amount=-2 -kerning first=193 second=258 amount=-7 -kerning first=298 second=373 amount=-2 -kerning first=75 second=8211 amount=-10 -kerning first=78 second=270 amount=-6 -kerning first=259 second=259 amount=2 -kerning first=197 second=208 amount=-10 -kerning first=305 second=103 amount=2 -kerning first=102 second=347 amount=-7 -kerning first=348 second=197 amount=-9 -kerning first=371 second=104 amount=-1 -kerning first=286 second=116 amount=2 -kerning first=198 second=348 amount=-3 -kerning first=221 second=285 amount=-3 -kerning first=349 second=337 amount=1 -kerning first=372 second=274 amount=-6 -kerning first=290 second=66 amount=-2 -kerning first=353 second=287 amount=3 -kerning first=356 second=67 amount=-2 -kerning first=8212 second=212 amount=5 -kerning first=376 second=224 amount=-3 -kerning first=291 second=236 amount=3 -kerning first=71 second=103 amount=5 -kerning first=206 second=248 amount=-2 -kerning first=334 second=300 amount=3 -kerning first=357 second=237 amount=-3 -kerning first=72 second=273 amount=2 -kerning first=210 second=198 amount=-7 -kerning first=115 second=337 amount=1 -kerning first=118 second=117 amount=2 -kerning first=358 second=377 amount=-2 -kerning first=296 second=326 amount=-2 -kerning first=299 second=106 amount=-11 -kerning first=211 second=338 amount=3 -kerning first=234 second=275 amount=1 -kerning first=119 second=287 amount=5 -kerning first=365 second=107 amount=-1 -kerning first=277 second=339 amount=1 -kerning first=280 second=119 amount=-2 -kerning first=192 second=351 amount=-11 -kerning first=218 second=68 amount=-6 -kerning first=323 second=213 amount=3 -kerning first=238 second=225 amount=2 -kerning first=258 second=352 amount=-8 -kerning first=281 second=289 amount=2 -kerning first=284 second=69 amount=-2 -kerning first=324 second=353 amount=1 -kerning first=350 second=70 amount=-3 -kerning first=262 second=302 amount=3 -kerning first=370 second=227 amount=2 -kerning first=285 second=239 amount=3 -kerning first=351 second=240 amount=3 -kerning first=66 second=276 amount=-4 -kerning first=89 second=213 amount=-1 -kerning first=227 second=108 amount=-1 -kerning first=112 second=120 amount=2 -kerning first=270 second=202 amount=-6 -kerning first=70 second=226 amount=-3 -kerning first=356 second=330 amount=-1 -kerning first=209 second=291 amount=2 -kerning first=232 second=228 amount=2 -kerning first=117 second=240 amount=2 -kerning first=360 second=280 amount=-6 -kerning first=193 second=84 amount=-20 -kerning first=75 second=316 amount=-7 -kerning first=98 second=253 amount=2 -kerning first=341 second=293 amount=-1 -kerning first=279 second=242 amount=1 -kerning first=194 second=254 amount=-3 -kerning first=240 second=98 amount=-1 -kerning first=345 second=243 amount=-2 -kerning first=83 second=216 amount=3 -kerning first=221 second=111 amount=-4 -kerning first=264 second=205 amount=3 -kerning first=369 second=320 amount=-1 -kerning first=372 second=100 amount=2 -kerning first=287 second=112 amount=2 -kerning first=199 second=344 amount=-4 -kerning first=307 second=269 amount=1 -kerning first=84 second=356 amount=-8 -kerning first=353 second=113 amount=3 -kerning first=45 second=242 amount=4 -kerning first=65 second=369 amount=-13 -kerning first=206 second=74 amount=-2 -kerning first=354 second=283 amount=-7 -kerning first=269 second=295 amount=-1 -kerning first=207 second=244 amount=-2 -kerning first=358 second=233 amount=-7 -kerning first=73 second=269 amount=-2 -kerning first=316 second=309 amount=-12 -kerning first=234 second=101 amount=1 -kerning first=339 second=246 amount=1 -kerning first=116 second=333 amount=1 -kerning first=119 second=113 amount=5 -kerning first=192 second=207 amount=-7 -kerning first=300 second=102 amount=-3 -kerning first=235 second=271 amount=2 -kerning first=258 second=208 amount=-10 -kerning first=366 second=103 amount=2 -kerning first=278 second=335 amount=-2 -kerning first=281 second=115 amount=1 -kerning first=193 second=347 amount=-11 -kerning first=347 second=116 amount=1 -kerning first=367 second=273 amount=2 -kerning first=85 second=89 amount=2 -kerning first=105 second=246 amount=1 -kerning first=348 second=286 amount=3 -kerning first=266 second=78 amount=4 -kerning first=371 second=223 amount=4 -kerning first=86 second=259 amount=6 -kerning first=244 second=311 amount=-1 -kerning first=267 second=248 amount=-1 -kerning first=287 second=375 amount=2 -kerning first=67 second=272 amount=-2 -kerning first=228 second=104 amount=-1 -kerning first=333 second=249 amount=-2 -kerning first=113 second=116 amount=-1 -kerning first=8212 second=301 amount=2 -kerning first=376 second=313 amount=-3 -kerning first=71 second=222 amount=-2 -kerning first=206 second=337 amount=-2 -kerning first=160 second=78 amount=-8 -kerning first=357 second=326 amount=-9 -kerning first=272 second=338 amount=4 -kerning first=233 second=224 amount=2 -kerning first=118 second=236 amount=2 -kerning first=194 second=80 amount=-17 -kerning first=299 second=225 amount=2 -kerning first=260 second=81 amount=-11 -kerning first=365 second=226 amount=2 -kerning first=300 second=365 amount=-2 -kerning first=80 second=262 amount=3 -kerning first=199 second=200 amount=-2 -kerning first=84 second=212 amount=-2 -kerning first=45 second=68 amount=-7 -kerning first=285 second=328 amount=2 -kerning first=65 second=225 amount=-10 -kerning first=200 second=340 amount=-6 -kerning first=223 second=277 amount=1 -kerning first=108 second=289 amount=2 -kerning first=354 second=109 amount=-6 -kerning first=269 second=121 amount=-1 -kerning first=374 second=266 amount=-1 -kerning first=207 second=70 amount=-2 -kerning first=227 second=227 amount=2 -kerning first=112 second=239 amount=2 -kerning first=355 second=279 amount=1 -kerning first=358 second=59 amount=-15 -kerning first=270 second=291 amount=2 -kerning first=70 second=315 amount=-4 -kerning first=208 second=240 amount=2 -kerning first=359 second=229 amount=2 -kerning first=74 second=265 amount=-5 -kerning first=235 second=97 amount=2 -kerning first=117 second=329 amount=-3 -kerning first=193 second=203 amount=-10 -kerning first=298 second=318 amount=-2 -kerning first=236 second=267 amount=1 -kerning first=344 second=192 amount=3 -kerning first=121 second=279 amount=3 -kerning first=282 second=111 amount=-2 -kerning first=194 second=343 amount=-12 -kerning first=217 second=280 amount=-6 -kerning first=260 second=344 amount=-17 -kerning first=283 second=281 amount=1 -kerning first=198 second=293 amount=-2 -kerning first=86 second=85 amount=4 -kerning first=221 second=230 amount=-3 -kerning first=106 second=242 amount=1 -kerning first=241 second=357 amount=-1 -kerning first=67 second=98 amount=2 -kerning first=202 second=243 amount=-2 -kerning first=287 second=231 amount=2 -kerning first=245 second=307 amount=-2 -kerning first=353 second=232 amount=1 -kerning first=373 second=359 amount=2 -kerning first=45 second=331 amount=2 -kerning first=68 second=268 amount=4 -kerning first=226 second=320 amount=-1 -kerning first=229 second=100 amount=2 -kerning first=272 second=194 amount=-8 -kerning first=207 second=333 amount=-2 -kerning first=358 second=322 amount=-3 -kerning first=73 second=358 amount=-2 -kerning first=339 second=335 amount=1 -kerning first=119 second=232 amount=4 -kerning first=254 second=347 amount=2 -kerning first=362 second=272 amount=-6 -kerning first=192 second=296 amount=-7 -kerning first=195 second=76 amount=-7 -kerning first=80 second=88 amount=-3 -kerning first=100 second=245 amount=1 -kerning first=343 second=285 amount=-2 -kerning first=346 second=65 amount=-9 -kerning first=366 second=222 amount=-2 -kerning first=281 second=234 amount=1 -kerning first=196 second=246 amount=-12 -kerning first=347 second=235 amount=1 -kerning first=85 second=208 amount=-6 -kerning first=223 second=103 amount=2 -kerning first=105 second=335 amount=1 -kerning first=108 second=115 amount=1 -kerning first=289 second=104 amount=2 -kerning first=204 second=116 amount=-2 -kerning first=309 second=261 amount=1 -kerning first=224 second=273 amount=2 -kerning first=332 second=198 amount=-7 -kerning first=109 second=285 amount=2 -kerning first=8211 second=250 amount=2 -kerning first=267 second=337 amount=-1 -kerning first=290 second=274 amount=-2 -kerning first=208 second=66 amount=-6 -kerning first=113 second=235 amount=1 -kerning first=356 second=275 amount=-7 -kerning first=271 second=287 amount=-8 -kerning first=71 second=311 amount=2 -kerning first=294 second=224 amount=2 -kerning first=360 second=225 amount=2 -kerning first=160 second=197 amount=-3 -kerning first=318 second=301 amount=-3 -kerning first=121 second=105 amount=3 -kerning first=194 second=199 amount=-11 -kerning first=217 second=106 amount=-12 -kerning first=102 second=118 amount=-7 -kerning first=237 second=263 amount=1 -kerning first=122 second=275 amount=1 -kerning first=260 second=200 amount=-10 -kerning first=283 second=107 amount=-1 -kerning first=195 second=339 amount=-12 -kerning first=198 second=119 amount=-6 -kerning first=218 second=276 amount=-6 -kerning first=349 second=108 amount=1 -kerning first=202 second=69 amount=-5 -kerning first=84 second=301 amount=-2 -kerning first=87 second=81 amount=2 -kerning first=350 second=278 amount=-3 -kerning first=268 second=70 amount=-2 -kerning first=65 second=314 amount=-12 -kerning first=331 second=291 amount=2 -kerning first=246 second=303 amount=-2 -kerning first=354 second=228 amount=-10 -kerning first=269 second=240 amount=1 -kerning first=46 second=327 amount=-5 -kerning first=374 second=355 amount=-2 -kerning first=289 second=367 amount=2 -kerning first=227 second=316 amount=-1 -kerning first=335 second=241 amount=-2 -kerning first=112 second=328 amount=2 -kerning first=115 second=108 amount=1 -kerning first=53 second=57 amount=1 -kerning first=359 second=318 amount=-1 -kerning first=192 second=122 amount=-7 -kerning first=74 second=354 amount=-5 -kerning first=97 second=291 amount=2 -kerning first=343 second=111 amount=-2 -kerning first=120 second=228 amount=2 -kerning first=278 second=280 amount=-5 -kerning first=196 second=72 amount=-4 -kerning first=259 second=293 amount=-1 -kerning first=262 second=73 amount=3 -kerning first=197 second=242 amount=-12 -kerning first=302 second=357 amount=-2 -kerning first=82 second=254 amount=-2 -kerning first=263 second=243 amount=-1 -kerning first=368 second=358 amount=-6 -kerning first=86 second=204 amount=5 -kerning first=221 second=319 amount=-3 -kerning first=349 second=371 amount=1 -kerning first=8211 second=76 amount=3 -kerning first=44 second=280 amount=-4 -kerning first=287 second=320 amount=2 -kerning first=205 second=112 amount=-2 -kerning first=87 second=344 amount=-2 -kerning first=356 second=101 amount=-7 -kerning first=8212 second=246 amount=4 -kerning first=271 second=113 amount=-8 -kerning first=376 second=258 amount=-3 -kerning first=337 second=114 amount=-2 -kerning first=114 second=231 amount=-2 -kerning first=354 second=8212 amount=-7 -kerning first=357 second=271 amount=-8 -kerning first=75 second=87 amount=-3 -kerning first=230 second=359 amount=-1 -kerning first=115 second=371 amount=1 -kerning first=256 second=76 amount=-7 -kerning first=234 second=309 amount=-13 -kerning first=122 second=101 amount=1 -kerning first=195 second=195 amount=-7 -kerning first=103 second=114 amount=2 -kerning first=238 second=259 amount=2 -kerning first=196 second=335 amount=-12 -kerning first=219 second=272 amount=-6 -kerning first=347 second=324 amount=1 -kerning first=265 second=116 amount=-1 -kerning first=285 second=273 amount=5 -kerning first=108 second=234 amount=1 -kerning first=374 second=211 amount=-1 -kerning first=289 second=223 amount=5 -kerning first=204 second=235 amount=-2 -kerning first=355 second=224 amount=2 -kerning first=8211 second=339 amount=4 -kerning first=70 second=260 amount=-12 -kerning first=205 second=375 amount=-2 -kerning first=228 second=312 amount=-1 -kerning first=160 second=286 amount=-3 -kerning first=278 second=106 amount=-10 -kerning first=193 second=118 amount=-13 -kerning first=298 second=263 amount=-2 -kerning first=98 second=287 amount=5 -kerning first=344 second=107 amount=-2 -kerning first=121 second=224 amount=7 -kerning first=256 second=339 amount=-12 -kerning first=364 second=264 amount=2 -kerning first=194 second=288 amount=-11 -kerning first=197 second=68 amount=-10 -kerning first=79 second=300 amount=3 -kerning first=82 second=80 amount=-8 -kerning first=217 second=225 amount=2 -kerning first=102 second=237 amount=-7 -kerning first=345 second=277 amount=-2 -kerning first=260 second=289 amount=-10 -kerning first=368 second=214 amount=2 -kerning first=283 second=226 amount=2 -kerning first=198 second=238 amount=-7 -kerning first=303 second=353 amount=1 -kerning first=349 second=227 amount=3 -kerning first=44 second=106 amount=-11 -kerning first=87 second=200 amount=-6 -kerning first=330 second=240 amount=2 -kerning first=110 second=107 amount=-1 -kerning first=245 second=252 amount=-2 -kerning first=45 second=276 amount=-7 -kerning first=48 second=56 amount=2 -kerning first=68 second=213 amount=4 -kerning first=203 second=328 amount=-2 -kerning first=206 second=108 amount=-2 -kerning first=357 second=97 amount=-8 -kerning first=269 second=329 amount=-4 -kerning first=210 second=58 amount=-5 -kerning first=115 second=227 amount=3 -kerning first=358 second=267 amount=-7 -kerning first=273 second=279 amount=1 -kerning first=73 second=303 amount=-2 -kerning first=231 second=355 amount=-1 -kerning first=277 second=229 amount=2 -kerning first=320 second=293 amount=-2 -kerning first=258 second=242 amount=-12 -kerning first=363 second=357 amount=-1 -kerning first=278 second=369 amount=-2 -kerning first=58 second=266 amount=-3 -kerning first=193 second=381 amount=-7 -kerning first=370 second=87 amount=2 -kerning first=285 second=99 amount=2 -kerning first=197 second=331 amount=-13 -kerning first=200 second=111 amount=-2 -kerning first=351 second=100 amount=3 -kerning first=371 second=257 amount=2 -kerning first=86 second=293 amount=3 -kerning first=109 second=230 amount=1 -kerning first=352 second=270 amount=-3 -kerning first=8211 second=195 amount=-13 -kerning first=205 second=231 amount=-2 -kerning first=248 second=295 amount=-1 -kerning first=8212 second=335 amount=4 -kerning first=271 second=232 amount=-9 -kerning first=376 second=347 amount=-4 -kerning first=291 second=359 amount=2 -kerning first=206 second=371 amount=-2 -kerning first=114 second=320 amount=-1 -kerning first=117 second=100 amount=2 -kerning first=55 second=49 amount=-4 -kerning first=318 second=246 amount=-9 -kerning first=98 second=113 amount=5 -kerning first=256 second=195 amount=-7 -kerning first=364 second=90 amount=4 -kerning first=194 second=114 amount=-12 -kerning first=299 second=259 amount=2 -kerning first=211 second=8212 amount=3 -kerning first=345 second=103 amount=-2 -kerning first=260 second=115 amount=-11 -kerning first=280 second=272 amount=-5 -kerning first=195 second=284 amount=-11 -kerning first=323 second=336 amount=3 -kerning first=326 second=116 amount=-1 -kerning first=103 second=233 amount=2 -kerning first=261 second=285 amount=2 -kerning first=284 second=222 amount=-2 -kerning first=304 second=349 amount=-2 -kerning first=84 second=246 amount=-7 -kerning first=327 second=286 amount=3 -kerning first=330 second=66 amount=2 -kerning first=350 second=223 amount=2 -kerning first=65 second=259 amount=-10 -kerning first=88 second=196 amount=-5 -kerning first=351 second=363 amount=1 -kerning first=46 second=272 amount=-3 -kerning first=49 second=52 amount=-6 -kerning first=289 second=312 amount=2 -kerning first=204 second=324 amount=-2 -kerning first=207 second=104 amount=-2 -kerning first=89 second=336 amount=-1 -kerning first=112 second=273 amount=5 -kerning first=70 second=349 amount=-4 -kerning first=208 second=274 amount=-6 -kerning first=339 second=106 amount=-13 -kerning first=116 second=223 amount=4 -kerning first=254 second=118 amount=2 -kerning first=359 second=263 amount=1 -kerning first=192 second=67 amount=-11 -kerning first=74 second=299 amount=-1 -kerning first=77 second=79 amount=3 -kerning first=232 second=351 amount=1 -kerning first=258 second=68 amount=-10 -kerning first=59 second=262 amount=-3 -kerning first=194 second=377 amount=-7 -kerning first=102 second=326 amount=-7 -kerning first=105 second=106 amount=-11 -kerning first=86 second=119 amount=3 -kerning first=221 second=264 amount=-1 -kerning first=349 second=316 amount=1 -kerning first=267 second=108 amount=-1 -kerning first=287 second=265 amount=2 -kerning first=87 second=289 amount=2 -kerning first=333 second=109 amount=-2 -kerning first=110 second=226 amount=2 -kerning first=248 second=121 amount=-2 -kerning first=356 second=46 amount=-15 -kerning first=268 second=278 amount=-2 -kerning first=45 second=365 amount=2 -kerning first=376 second=203 amount=-4 -kerning first=71 second=82 amount=-4 -kerning first=272 second=228 amount=2 -kerning first=207 second=367 amount=-2 -kerning first=115 second=316 amount=1 -kerning first=358 second=356 amount=-8 -kerning first=234 second=254 amount=-1 -kerning first=277 second=318 amount=-1 -kerning first=192 second=330 amount=-15 -kerning first=195 second=110 amount=-13 -kerning first=77 second=342 amount=-4 -kerning first=100 second=279 amount=1 -kerning first=258 second=331 amount=-13 -kerning first=196 second=280 amount=-10 -kerning first=104 second=229 amount=2 -kerning first=347 second=269 amount=1 -kerning first=65 second=85 amount=-7 -kerning first=286 second=358 amount=-2 -kerning first=89 second=192 amount=-3 -kerning first=112 second=99 amount=2 -kerning first=8211 second=284 amount=5 -kerning first=205 second=320 amount=-2 -kerning first=208 second=100 amount=2 -kerning first=228 second=257 amount=2 -kerning first=113 second=269 amount=1 -kerning first=356 second=309 amount=-13 -kerning first=71 second=345 amount=1 -kerning first=209 second=270 amount=-6 -kerning first=360 second=259 amount=2 -kerning first=272 second=8212 amount=4 -kerning first=275 second=271 amount=2 -kerning first=75 second=295 amount=-7 -kerning first=318 second=335 amount=-9 -kerning first=98 second=232 amount=2 -kerning first=233 second=347 amount=1 -kerning first=118 second=359 amount=2 -kerning first=256 second=284 amount=-11 -kerning first=194 second=233 amount=-12 -kerning first=365 second=349 amount=1 -kerning first=280 second=361 amount=-2 -kerning first=195 second=373 amount=-13 -kerning first=83 second=195 amount=-9 -kerning first=221 second=90 amount=-2 -kerning first=103 second=322 amount=2 -kerning first=284 second=311 amount=2 -kerning first=199 second=323 amount=4 -kerning first=84 second=335 amount=-7 -kerning first=222 second=260 amount=-13 -kerning first=307 second=248 amount=1 -kerning first=268 second=104 amount=2 -kerning first=45 second=221 amount=3 -kerning first=373 second=249 amount=2 -kerning first=65 second=348 amount=-8 -kerning first=354 second=262 amount=-2 -kerning first=358 second=212 amount=-2 -kerning first=273 second=224 amount=2 -kerning first=73 second=248 amount=-2 -kerning first=339 second=225 amount=2 -kerning first=254 second=237 amount=2 -kerning first=366 second=82 amount=-2 -kerning first=58 second=211 amount=-3 -kerning first=193 second=326 amount=-13 -kerning first=78 second=338 amount=3 -kerning first=101 second=275 amount=1 -kerning first=344 second=315 amount=3 -kerning first=262 second=107 amount=2 -kerning first=197 second=276 amount=-10 -kerning first=85 second=68 amount=-6 -kerning first=328 second=108 amount=-1 -kerning first=105 second=225 amount=2 -kerning first=243 second=120 amount=-2 -kerning first=86 second=238 amount=3 -kerning first=221 second=353 amount=-4 -kerning first=332 second=58 amount=-5 -kerning first=8211 second=110 amount=2 -kerning first=267 second=227 amount=1 -kerning first=372 second=342 amount=-2 -kerning first=375 second=122 amount=4 -kerning first=353 second=355 amount=1 -kerning first=8212 second=280 amount=-7 -kerning first=294 second=84 amount=-6 -kerning first=71 second=201 amount=-2 -kerning first=206 second=316 amount=-2 -kerning first=114 second=265 amount=-2 -kerning first=357 second=305 amount=-3 -kerning first=360 second=85 amount=2 -kerning first=275 second=97 amount=2 -kerning first=295 second=254 amount=-1 -kerning first=75 second=121 amount=-4 -kerning first=213 second=46 amount=-5 -kerning first=315 second=381 amount=2 -kerning first=341 second=98 amount=-1 -kerning first=256 second=110 amount=-13 -kerning first=194 second=59 amount=-10 -kerning first=99 second=228 amount=1 -kerning first=119 second=355 amount=2 -kerning first=195 second=229 amount=-10 -kerning first=80 second=241 amount=1 -kerning first=300 second=344 amount=-2 -kerning first=261 second=230 amount=1 -kerning first=281 second=357 amount=-1 -kerning first=196 second=369 amount=-13 -kerning first=104 second=318 amount=-1 -kerning first=285 second=307 amount=3 -kerning first=65 second=204 amount=-7 -kerning first=88 second=111 amount=-2 -kerning first=354 second=88 amount=-3 -kerning first=266 second=320 amount=2 -kerning first=269 second=100 amount=1 -kerning first=374 second=245 amount=-4 -kerning first=289 second=257 amount=5 -kerning first=66 second=344 amount=-1 -kerning first=204 second=269 amount=-2 -kerning first=8211 second=373 amount=2 -kerning first=270 second=270 amount=-6 -kerning first=73 second=74 amount=-2 -kerning first=333 second=8212 amount=3 -kerning first=74 second=244 amount=-5 -kerning first=298 second=297 amount=-2 -kerning first=101 second=101 amount=1 -kerning first=236 second=246 amount=1 -kerning first=256 second=373 amount=-13 -kerning first=194 second=322 amount=-12 -kerning first=197 second=102 amount=-12 -kerning first=217 second=259 amount=2 -kerning first=102 second=271 amount=-6 -kerning first=345 second=311 amount=-1 -kerning first=260 second=323 amount=-15 -kerning first=263 second=103 amount=1 -kerning first=198 second=272 amount=-2 -kerning first=83 second=284 amount=3 -kerning first=329 second=104 amount=-1 -kerning first=244 second=116 amount=-1 -kerning first=202 second=222 amount=-6 -kerning first=307 second=337 amount=1 -kerning first=222 second=349 amount=1 -kerning first=330 second=274 amount=-6 -kerning first=8212 second=106 amount=-7 -kerning first=268 second=223 amount=3 -kerning first=376 second=118 amount=-4 -kerning first=311 second=287 amount=2 -kerning first=88 second=374 amount=2 -kerning first=111 second=311 amount=-1 -kerning first=354 second=351 amount=-10 -kerning first=207 second=312 amount=-2 -kerning first=358 second=301 amount=-2 -kerning first=296 second=250 amount=-2 -kerning first=73 second=337 amount=-2 -kerning first=339 second=314 amount=-1 -kerning first=254 second=326 amount=2 -kerning first=257 second=106 amount=-10 -kerning first=277 second=263 amount=1 -kerning first=192 second=275 amount=-12 -kerning first=77 second=287 amount=1 -kerning first=80 second=67 amount=3 -kerning first=100 second=224 amount=2 -kerning first=346 second=44 amount=-4 -kerning first=258 second=276 amount=-10 -kerning first=366 second=201 amount=-6 -kerning first=196 second=225 amount=-10 -kerning first=304 second=120 amount=-1 -kerning first=239 second=289 amount=2 -kerning first=197 second=365 amount=-13 -kerning first=328 second=227 amount=2 -kerning first=243 second=239 amount=-2 -kerning first=348 second=354 amount=-3 -kerning first=371 second=291 amount=2 -kerning first=374 second=71 amount=-1 -kerning first=66 second=200 amount=-4 -kerning first=309 second=240 amount=2 -kerning first=86 second=327 amount=2 -kerning first=89 second=107 amount=-2 -kerning first=8211 second=229 amount=4 -kerning first=267 second=316 amount=-1 -kerning first=375 second=241 amount=3 -kerning first=67 second=340 amount=-4 -kerning first=70 second=120 amount=-7 -kerning first=205 second=265 amount=-2 -kerning first=208 second=45 amount=4 -kerning first=248 second=329 amount=-3 -kerning first=356 second=254 amount=-3 -kerning first=8212 second=369 amount=2 -kerning first=376 second=381 amount=-2 -kerning first=294 second=203 amount=-6 -kerning first=71 second=290 amount=3 -kerning first=74 second=70 amount=-4 -kerning first=75 second=240 amount=-7 -kerning first=256 second=229 amount=-10 -kerning first=276 second=356 amount=-5 -kerning first=102 second=97 amount=-6 -kerning first=237 second=242 amount=1 -kerning first=342 second=357 amount=-2 -kerning first=195 second=318 amount=-12 -kerning first=198 second=98 amount=-2 -kerning first=303 second=243 amount=1 -kerning first=103 second=267 amount=2 -kerning first=84 second=280 amount=-8 -kerning first=330 second=100 amount=2 -kerning first=245 second=112 amount=-2 -kerning first=288 second=206 amount=3 -kerning first=65 second=293 amount=-12 -kerning first=311 second=113 amount=2 -kerning first=354 second=207 amount=-2 -kerning first=374 second=334 amount=-1 -kerning first=69 second=243 amount=-2 -kerning first=204 second=358 amount=-2 -kerning first=312 second=283 amount=1 -kerning first=227 second=295 amount=-1 -kerning first=112 second=307 amount=2 -kerning first=355 second=347 amount=1 -kerning first=316 second=233 amount=1 -kerning first=231 second=245 amount=-1 -kerning first=116 second=257 amount=2 -kerning first=274 second=309 amount=-10 -kerning first=192 second=101 amount=-12 -kerning first=74 second=333 amount=-5 -kerning first=77 second=113 amount=1 -kerning first=258 second=102 amount=-12 -kerning first=193 second=271 amount=-10 -kerning first=324 second=103 amount=2 -kerning first=236 second=335 amount=1 -kerning first=239 second=115 amount=1 -kerning first=121 second=347 amount=2 -kerning first=344 second=260 amount=3 -kerning first=325 second=273 amount=2 -kerning first=240 second=285 amount=2 -kerning first=348 second=210 amount=3 -kerning first=283 second=349 amount=1 -kerning first=198 second=361 amount=-6 -kerning first=372 second=287 amount=2 -kerning first=287 second=299 amount=3 -kerning first=245 second=375 amount=-2 -kerning first=356 second=80 amount=-5 -kerning first=8212 second=225 amount=4 -kerning first=268 second=312 amount=2 -kerning first=376 second=237 amount=-3 -kerning first=291 second=249 amount=2 -kerning first=68 second=336 amount=4 -kerning first=71 second=116 amount=2 -kerning first=272 second=262 amount=4 -kerning first=75 second=66 amount=-9 -kerning first=318 second=106 amount=-13 -kerning first=296 second=339 amount=-2 -kerning first=257 second=225 amount=2 -kerning first=362 second=340 amount=-2 -kerning first=365 second=120 amount=-1 -kerning first=323 second=226 amount=2 -kerning first=343 second=353 amount=-2 -kerning first=258 second=365 amount=-13 -kerning first=366 second=290 amount=2 -kerning first=284 second=82 amount=-4 -kerning first=196 second=314 amount=-12 -kerning first=84 second=106 amount=-13 -kerning first=304 second=239 amount=-2 -kerning first=347 second=303 amount=1 -kerning first=370 second=240 amount=2 -kerning first=285 second=252 amount=2 -kerning first=65 second=119 amount=-13 -kerning first=85 second=276 amount=-6 -kerning first=328 second=316 amount=-1 -kerning first=243 second=328 amount=-2 -kerning first=246 second=108 amount=-1 -kerning first=351 second=253 amount=1 -kerning first=66 second=289 amount=3 -kerning first=69 second=69 amount=-5 -kerning first=309 second=329 amount=-2 -kerning first=89 second=226 amount=-3 -kerning first=109 second=353 amount=1 -kerning first=290 second=342 amount=-4 -kerning first=70 second=239 amount=-1 -kerning first=205 second=354 amount=-2 -kerning first=228 second=291 amount=2 -kerning first=356 second=343 amount=-6 -kerning first=193 second=97 amount=-10 -kerning first=298 second=242 amount=-2 -kerning first=75 second=329 amount=-9 -kerning first=318 second=369 amount=-9 -kerning first=256 second=318 amount=-12 -kerning first=259 second=98 amount=-1 -kerning first=194 second=267 amount=-12 -kerning first=240 second=111 amount=1 -kerning first=260 second=268 amount=-11 -kerning first=218 second=344 amount=-2 -kerning first=372 second=113 amount=2 -kerning first=199 second=357 amount=2 -kerning first=84 second=369 amount=-6 -kerning first=373 second=283 amount=4 -kerning first=68 second=192 amount=-8 -kerning first=311 second=232 amount=1 -kerning first=331 second=359 amount=-1 -kerning first=246 second=371 amount=-2 -kerning first=354 second=296 amount=-2 -kerning first=272 second=88 amount=-3 -kerning first=358 second=246 amount=-7 -kerning first=211 second=207 amount=3 -kerning first=339 second=259 amount=2 -kerning first=254 second=271 amount=5 -kerning first=297 second=335 amount=1 -kerning first=300 second=115 amount=-2 -kerning first=97 second=359 amount=-1 -kerning first=301 second=285 amount=2 -kerning first=101 second=309 amount=-13 -kerning first=370 second=66 amount=-6 -kerning first=105 second=259 amount=2 -kerning first=66 second=115 amount=1 -kerning first=329 second=312 amount=-1 -kerning first=244 second=324 amount=-2 -kerning first=70 second=65 amount=-12 -kerning first=90 second=222 amount=2 -kerning first=110 second=349 amount=1 -kerning first=356 second=199 amount=-2 -kerning first=376 second=326 amount=-5 -kerning first=71 second=235 amount=3 -kerning first=229 second=287 amount=2 -kerning first=357 second=339 amount=-9 -kerning first=210 second=300 amount=3 -kerning first=318 second=225 amount=-8 -kerning first=118 second=249 amount=2 -kerning first=361 second=289 amount=2 -kerning first=364 second=69 amount=-6 -kerning first=257 second=314 amount=-1 -kerning first=195 second=263 amount=-12 -kerning first=218 second=200 amount=-6 -kerning first=241 second=107 amount=-1 -kerning first=366 second=379 amount=4 -kerning first=284 second=201 amount=-2 -kerning first=304 second=328 amount=-2 -kerning first=84 second=225 amount=-10 -kerning first=219 second=340 amount=-2 -kerning first=222 second=120 amount=-2 -kerning first=350 second=202 amount=-3 -kerning first=45 second=81 amount=5 -kerning first=373 second=109 amount=2 -kerning first=354 second=122 amount=-10 -kerning first=266 second=354 amount=-2 -kerning first=289 second=291 amount=5 -kerning first=204 second=303 amount=-2 -kerning first=89 second=315 amount=-3 -kerning first=227 second=240 amount=2 -kerning first=312 second=228 amount=2 -kerning first=112 second=252 amount=2 -kerning first=70 second=328 amount=-3 -kerning first=73 second=108 amount=-2 -kerning first=254 second=97 amount=5 -kerning first=359 second=242 amount=1 -kerning first=192 second=46 amount=-10 -kerning first=294 second=381 amount=4 -kerning first=74 second=278 amount=-5 -kerning first=320 second=98 amount=-2 -kerning first=160 second=354 amount=-12 -kerning first=58 second=71 amount=-3 -kerning first=193 second=216 amount=-11 -kerning first=298 second=331 amount=-2 -kerning first=78 second=228 amount=2 -kerning first=301 second=111 amount=1 -kerning first=98 second=355 amount=3 -kerning first=364 second=332 amount=2 -kerning first=194 second=356 amount=-20 -kerning first=302 second=281 amount=-2 -kerning first=240 second=230 amount=1 -kerning first=260 second=357 amount=-12 -kerning first=368 second=282 amount=-6 -kerning first=86 second=98 amount=3 -kerning first=221 second=243 amount=-4 -kerning first=349 second=295 amount=1 -kerning first=287 second=244 amount=2 -kerning first=87 second=268 amount=2 -kerning first=245 second=320 amount=-1 -kerning first=353 second=245 amount=1 -kerning first=45 second=344 amount=-6 -kerning first=229 second=113 amount=2 -kerning first=246 second=8211 amount=3 -kerning first=230 second=283 amount=1 -kerning first=338 second=208 amount=-2 -kerning first=115 second=295 amount=1 -kerning first=358 second=335 amount=-7 -kerning first=361 second=115 amount=1 -kerning first=273 second=347 amount=1 -kerning first=73 second=371 amount=-2 -kerning first=211 second=296 amount=3 -kerning first=234 second=233 amount=1 -kerning first=119 second=245 amount=4 -kerning first=362 second=285 amount=2 -kerning first=195 second=89 amount=-7 -kerning first=300 second=234 amount=-2 -kerning first=58 second=334 amount=-3 -kerning first=196 second=259 amount=-10 -kerning first=324 second=311 amount=-1 -kerning first=347 second=248 amount=1 -kerning first=374 second=105 amount=-3 -kerning first=289 second=117 amount=2 -kerning first=66 second=234 amount=2 -kerning first=86 second=361 amount=2 -kerning first=352 second=338 amount=3 -kerning first=8211 second=263 amount=4 -kerning first=375 second=275 amount=3 -kerning first=205 second=299 amount=-2 -kerning first=208 second=79 amount=4 -kerning first=113 second=248 amount=1 -kerning first=248 second=363 amount=-2 -kerning first=356 second=288 amount=-2 -kerning first=274 second=80 amount=-6 -kerning first=71 second=324 amount=2 -kerning first=160 second=210 amount=-3 -kerning first=75 second=274 amount=-9 -kerning first=236 second=106 amount=-11 -kerning first=121 second=118 amount=3 -kerning first=256 second=263 amount=-12 -kerning first=59 second=67 amount=-3 -kerning first=194 second=212 amount=-11 -kerning first=302 second=107 amount=-2 -kerning first=99 second=351 amount=1 -kerning first=260 second=213 amount=-11 -kerning first=280 second=340 amount=-6 -kerning first=283 second=120 amount=-2 -kerning first=195 second=352 amount=-8 -kerning first=303 second=277 amount=1 -kerning first=218 second=289 amount=2 -kerning first=221 second=69 amount=-4 -kerning first=103 second=301 amount=3 -kerning first=241 second=226 amount=2 -kerning first=349 second=121 amount=1 -kerning first=261 second=353 amount=1 -kerning first=199 second=302 amount=3 -kerning first=202 second=82 amount=-6 -kerning first=84 second=314 amount=-3 -kerning first=222 second=239 amount=2 -kerning first=307 second=227 amount=2 -kerning first=327 second=354 amount=-6 -kerning first=45 second=200 amount=-7 -kerning first=373 second=228 amount=5 -kerning first=65 second=327 amount=-15 -kerning first=88 second=264 amount=-4 -kerning first=246 second=316 amount=-1 -kerning first=46 second=340 amount=-4 -kerning first=227 second=329 amount=-3 -kerning first=335 second=254 amount=-1 -kerning first=112 second=341 amount=2 -kerning first=115 second=121 amount=1 -kerning first=296 second=110 amount=-2 -kerning first=208 second=342 amount=-3 -kerning first=316 second=267 amount=1 -kerning first=116 second=291 amount=2 -kerning first=74 second=367 amount=-4 -kerning first=235 second=229 amount=2 -kerning first=340 second=344 amount=-8 -kerning first=196 second=85 amount=-7 -kerning first=101 second=254 amount=-1 -kerning first=262 second=86 amount=4 -kerning first=282 second=243 amount=-2 -kerning first=59 second=330 amount=-5 -kerning first=309 second=100 amount=2 -kerning first=221 second=332 amount=-1 -kerning first=329 second=257 amount=2 -kerning first=352 second=194 amount=-9 -kerning first=8211 second=89 amount=3 -kerning first=375 second=101 amount=3 -kerning first=287 second=333 amount=2 -kerning first=356 second=114 amount=-6 -kerning first=8212 second=259 amount=4 -kerning first=376 second=271 amount=-3 -kerning first=291 second=283 amount=2 -kerning first=206 second=295 amount=-2 -kerning first=114 second=244 amount=-2 -kerning first=75 second=100 amount=-7 -kerning first=256 second=89 amount=-7 -kerning first=276 second=246 amount=-2 -kerning first=296 second=373 amount=-2 -kerning first=234 second=322 amount=-1 -kerning first=257 second=259 amount=2 -kerning first=195 second=208 amount=-10 -kerning first=303 second=103 amount=2 -kerning first=100 second=347 amount=1 -kerning first=346 second=197 amount=-9 -kerning first=369 second=104 amount=-1 -kerning first=284 second=116 amount=2 -kerning first=196 second=348 amount=-8 -kerning first=219 second=285 amount=2 -kerning first=222 second=65 amount=-13 -kerning first=327 second=210 amount=3 -kerning first=347 second=337 amount=1 -kerning first=370 second=274 amount=-6 -kerning first=223 second=235 amount=1 -kerning first=351 second=287 amount=3 -kerning first=354 second=67 amount=-2 -kerning first=374 second=224 amount=-3 -kerning first=289 second=236 amount=3 -kerning first=204 second=248 amount=-2 -kerning first=89 second=260 amount=-3 -kerning first=332 second=300 amount=3 -kerning first=70 second=273 amount=-3 -kerning first=208 second=198 amount=-10 -kerning first=113 second=337 amount=1 -kerning first=356 second=377 amount=-2 -kerning first=297 second=106 amount=-11 -kerning first=74 second=223 amount=2 -kerning first=209 second=338 amount=3 -kerning first=232 second=275 amount=1 -kerning first=117 second=287 amount=2 -kerning first=363 second=107 amount=-1 -kerning first=275 second=339 amount=1 -kerning first=278 second=119 amount=-2 -kerning first=75 second=363 amount=-8 -kerning first=236 second=225 amount=2 -kerning first=344 second=120 amount=-2 -kerning first=121 second=237 amount=3 -kerning first=256 second=352 amount=-8 -kerning first=279 second=289 amount=2 -kerning first=282 second=69 amount=-5 -kerning first=197 second=81 amount=-11 -kerning first=102 second=250 amount=-7 -kerning first=348 second=70 amount=-3 -kerning first=260 second=302 amount=-7 -kerning first=368 second=227 amount=2 -kerning first=198 second=251 amount=-7 -kerning first=349 second=240 amount=3 -kerning first=202 second=201 amount=-5 -kerning first=87 second=213 amount=2 -kerning first=222 second=328 amount=2 -kerning first=225 second=108 amount=-1 -kerning first=110 second=120 amount=-1 -kerning first=248 second=45 amount=3 -kerning first=8212 second=85 amount=5 -kerning first=268 second=202 amount=-2 -kerning first=376 second=97 amount=-3 -kerning first=45 second=289 amount=4 -kerning first=291 second=109 amount=2 -kerning first=68 second=226 amount=2 -kerning first=206 second=121 amount=-2 -kerning first=354 second=330 amount=-1 -kerning first=357 second=110 amount=-9 -kerning first=230 second=228 amount=2 -kerning first=115 second=240 amount=3 -kerning first=358 second=280 amount=-8 -kerning first=73 second=316 amount=-2 -kerning first=339 second=293 amount=-1 -kerning first=277 second=242 amount=1 -kerning first=192 second=254 amount=-3 -kerning first=77 second=266 amount=3 -kerning first=80 second=46 amount=-4 -kerning first=235 second=318 amount=-1 -kerning first=343 second=243 amount=-2 -kerning first=196 second=204 amount=-7 -kerning first=304 second=99 amount=-2 -kerning first=262 second=205 amount=3 -kerning first=367 second=320 amount=-1 -kerning first=370 second=100 amount=2 -kerning first=285 second=112 amount=2 -kerning first=197 second=344 amount=-17 -kerning first=82 second=356 amount=-8 -kerning first=351 second=113 amount=3 -kerning first=286 second=282 amount=-2 -kerning first=204 second=74 amount=-2 -kerning first=8211 second=208 amount=-7 -kerning first=267 second=295 amount=-1 -kerning first=70 second=99 amount=-4 -kerning first=205 second=244 amount=-2 -kerning first=356 second=233 amount=-7 -kerning first=271 second=245 amount=-9 -kerning first=71 second=269 amount=3 -kerning first=232 second=101 amount=1 -kerning first=114 second=333 amount=-2 -kerning first=117 second=113 amount=2 -kerning first=357 second=373 amount=-10 -kerning first=298 second=102 amount=-3 -kerning first=318 second=259 amount=-8 -kerning first=233 second=271 amount=2 -kerning first=118 second=283 amount=4 -kerning first=256 second=208 amount=-10 -kerning first=364 second=103 amount=2 -kerning first=276 second=335 amount=-2 -kerning first=279 second=115 amount=1 -kerning first=345 second=116 amount=-1 -kerning first=365 second=273 amount=2 -kerning first=80 second=309 amount=-10 -kerning first=103 second=246 amount=2 -kerning first=346 second=286 amount=3 -kerning first=264 second=78 amount=4 -kerning first=369 second=223 amount=4 -kerning first=84 second=259 amount=-10 -kerning first=330 second=79 amount=3 -kerning first=242 second=311 amount=-1 -kerning first=265 second=248 amount=-1 -kerning first=45 second=115 amount=4 -kerning first=285 second=375 amount=2 -kerning first=65 second=272 amount=-10 -kerning first=226 second=104 amount=-1 -kerning first=111 second=116 amount=-1 -kerning first=374 second=313 amount=-3 -kerning first=69 second=222 amount=-6 -kerning first=204 second=337 amount=-2 -kerning first=89 second=349 amount=-4 -kerning first=207 second=117 amount=-2 -kerning first=358 second=106 amount=-13 -kerning first=270 second=338 amount=4 -kerning first=208 second=287 amount=2 -kerning first=231 second=224 amount=1 -kerning first=192 second=80 amount=-17 -kerning first=297 second=225 amount=2 -kerning first=258 second=81 amount=-11 -kerning first=363 second=226 amount=2 -kerning first=298 second=365 amount=-2 -kerning first=78 second=262 amount=3 -kerning first=121 second=326 amount=3 -kerning first=197 second=200 amount=-10 -kerning first=102 second=339 amount=-8 -kerning first=286 second=108 amount=2 -kerning first=106 second=289 amount=2 -kerning first=267 second=121 amount=-1 -kerning first=205 second=70 amount=-2 -kerning first=90 second=82 amount=2 -kerning first=225 second=227 amount=2 -kerning first=330 second=342 amount=-2 -kerning first=353 second=279 amount=1 -kerning first=356 second=59 amount=-15 -kerning first=8212 second=204 amount=-5 -kerning first=376 second=216 amount=-1 -kerning first=291 second=228 amount=5 -kerning first=357 second=229 amount=-8 -kerning first=75 second=45 amount=-10 -kerning first=233 second=97 amount=2 -kerning first=118 second=109 amount=2 -kerning first=358 second=369 amount=-6 -kerning first=296 second=318 amount=-2 -kerning first=234 second=267 amount=1 -kerning first=342 second=192 amount=3 -kerning first=119 second=279 amount=4 -kerning first=280 second=111 amount=-2 -kerning first=192 second=343 amount=-12 -kerning first=258 second=344 amount=-17 -kerning first=281 second=281 amount=1 -kerning first=196 second=293 amount=-12 -kerning first=199 second=73 amount=3 -kerning first=84 second=85 amount=-1 -kerning first=285 second=231 amount=2 -kerning first=65 second=98 amount=-12 -kerning first=200 second=243 amount=-2 -kerning first=328 second=295 amount=-1 -kerning first=243 second=307 amount=-2 -kerning first=351 second=232 amount=1 -kerning first=371 second=359 amount=-1 -kerning first=66 second=268 amount=3 -kerning first=224 second=320 amount=-1 -kerning first=112 second=112 amount=2 -kerning first=227 second=100 amount=2 -kerning first=8211 second=297 amount=2 -kerning first=270 second=194 amount=-8 -kerning first=205 second=333 amount=-2 -kerning first=208 second=113 amount=2 -kerning first=356 second=322 amount=-3 -kerning first=291 second=8212 amount=4 -kerning first=294 second=271 amount=2 -kerning first=71 second=358 amount=-2 -kerning first=360 second=272 amount=-6 -kerning first=193 second=76 amount=-7 -kerning first=78 second=88 amount=3 -kerning first=98 second=245 amount=2 -kerning first=341 second=285 amount=-2 -kerning first=344 second=65 amount=3 -kerning first=364 second=222 amount=-2 -kerning first=279 second=234 amount=1 -kerning first=194 second=246 amount=-12 -kerning first=345 second=235 amount=-2 -kerning first=198 second=196 amount=-6 -kerning first=83 second=208 amount=-3 -kerning first=221 second=103 amount=-3 -kerning first=103 second=335 amount=2 -kerning first=287 second=104 amount=2 -kerning first=84 second=348 amount=-6 -kerning first=107 second=285 amount=2 -kerning first=353 second=105 amount=1 -kerning first=265 second=337 amount=-1 -kerning first=45 second=234 amount=4 -kerning first=65 second=361 amount=-13 -kerning first=354 second=275 amount=-7 -kerning first=269 second=287 amount=1 -kerning first=272 second=67 amount=4 -kerning first=292 second=224 amount=2 -kerning first=207 second=236 amount=-2 -kerning first=312 second=351 amount=1 -kerning first=338 second=68 amount=-2 -kerning first=112 second=375 amount=2 -kerning first=358 second=225 amount=-10 -kerning first=119 second=105 amount=2 -kerning first=254 second=250 amount=2 -kerning first=57 second=54 amount=2 -kerning first=192 second=199 amount=-11 -kerning first=77 second=211 amount=3 -kerning first=258 second=200 amount=-10 -kerning first=281 second=107 amount=-1 -kerning first=193 second=339 amount=-12 -kerning first=196 second=119 amount=-13 -kerning first=347 second=108 amount=1 -kerning first=197 second=289 amount=-10 -kerning first=200 second=69 amount=-5 -kerning first=85 second=81 amount=2 -kerning first=220 second=226 amount=2 -kerning first=240 second=353 amount=1 -kerning first=348 second=278 amount=-3 -kerning first=266 second=70 amount=-2 -kerning first=329 second=291 amount=2 -kerning first=267 second=240 amount=1 -kerning first=44 second=327 amount=-5 -kerning first=287 second=367 amount=2 -kerning first=70 second=44 amount=-8 -kerning first=225 second=316 amount=-1 -kerning first=333 second=241 amount=-2 -kerning first=113 second=108 amount=-1 -kerning first=248 second=253 amount=-2 -kerning first=376 second=305 amount=-3 -kerning first=51 second=57 amount=2 -kerning first=294 second=97 amount=2 -kerning first=206 second=329 amount=-4 -kerning first=160 second=70 amount=-9 -kerning first=72 second=354 amount=-6 -kerning first=213 second=59 amount=-5 -kerning first=341 second=111 amount=-2 -kerning first=118 second=228 amount=5 -kerning first=276 second=280 amount=-5 -kerning first=194 second=72 amount=-4 -kerning first=319 second=344 amount=-4 -kerning first=257 second=293 amount=-1 -kerning first=260 second=73 amount=-7 -kerning first=195 second=242 amount=-12 -kerning first=300 second=357 amount=-2 -kerning first=366 second=358 amount=-6 -kerning first=304 second=307 amount=-2 -kerning first=84 second=204 amount=-2 -kerning first=107 second=111 amount=1 -kerning first=347 second=371 amount=1 -kerning first=285 second=320 amount=2 -kerning first=85 second=344 amount=-2 -kerning first=223 second=269 amount=1 -kerning first=108 second=281 amount=1 -kerning first=354 second=101 amount=-7 -kerning first=269 second=113 amount=1 -kerning first=374 second=258 amount=-3 -kerning first=335 second=114 amount=-2 -kerning first=112 second=231 amount=2 -kerning first=352 second=8212 amount=4 -kerning first=355 second=271 amount=2 -kerning first=70 second=307 amount=-1 -kerning first=228 second=359 amount=-1 -kerning first=74 second=257 amount=-5 -kerning first=232 second=309 amount=-13 -kerning first=193 second=195 amount=-7 -kerning first=236 second=259 amount=2 -kerning first=118 second=8212 amount=4 -kerning first=121 second=271 amount=7 -kerning first=194 second=335 amount=-12 -kerning first=197 second=115 amount=-11 -kerning first=217 second=272 amount=-6 -kerning first=260 second=336 amount=-11 -kerning first=263 second=116 amount=-1 -kerning first=283 second=273 amount=2 -kerning first=198 second=285 amount=-3 -kerning first=86 second=77 amount=5 -kerning first=221 second=222 amount=-1 -kerning first=106 second=234 amount=1 -kerning first=241 second=349 amount=1 -kerning first=287 second=223 amount=5 -kerning first=330 second=287 amount=2 -kerning first=245 second=299 amount=-2 -kerning first=353 second=224 amount=3 -kerning first=8212 second=119 amount=2 -kerning first=373 second=351 amount=1 -kerning first=45 second=323 amount=-2 -kerning first=68 second=260 amount=-8 -kerning first=203 second=375 amount=-3 -kerning first=226 second=312 amount=-1 -kerning first=111 second=324 amount=-2 -kerning first=114 second=104 amount=-1 -kerning first=52 second=53 amount=-3 -kerning first=358 second=314 amount=-3 -kerning first=276 second=106 amount=-10 -kerning first=296 second=263 amount=-2 -kerning first=342 second=107 amount=-2 -kerning first=119 second=224 amount=5 -kerning first=254 second=339 amount=2 -kerning first=362 second=264 amount=2 -kerning first=192 second=288 amount=-11 -kerning first=195 second=68 amount=-10 -kerning first=80 second=80 amount=-7 -kerning first=343 second=277 amount=-2 -kerning first=258 second=289 amount=-10 -kerning first=366 second=214 amount=2 -kerning first=281 second=226 amount=2 -kerning first=301 second=353 amount=1 -kerning first=327 second=70 amount=-2 -kerning first=347 second=227 amount=3 -kerning first=85 second=200 amount=-6 -kerning first=328 second=240 amount=2 -kerning first=243 second=252 amount=-2 -kerning first=286 second=316 amount=2 -kerning first=201 second=328 amount=-2 -kerning first=204 second=108 amount=-2 -kerning first=89 second=120 amount=-7 -kerning first=355 second=97 amount=2 -kerning first=8211 second=242 amount=4 -kerning first=267 second=329 amount=-4 -kerning first=208 second=58 amount=-3 -kerning first=113 second=227 amount=2 -kerning first=356 second=267 amount=-7 -kerning first=271 second=279 amount=-9 -kerning first=71 second=303 amount=1 -kerning first=209 second=228 amount=2 -kerning first=229 second=355 amount=-1 -kerning first=275 second=229 amount=2 -kerning first=121 second=97 amount=7 -kerning first=256 second=242 amount=-12 -kerning first=361 second=357 amount=-1 -kerning first=276 second=369 amount=-2 -kerning first=102 second=110 amount=-7 -kerning first=260 second=192 amount=-7 -kerning first=368 second=87 amount=2 -kerning first=283 second=99 amount=1 -kerning first=195 second=331 amount=-13 -kerning first=198 second=111 amount=-5 -kerning first=349 second=100 amount=3 -kerning first=369 second=257 amount=2 -kerning first=84 second=293 amount=-3 -kerning first=330 second=113 amount=2 -kerning first=107 second=230 amount=1 -kerning first=350 second=270 amount=-3 -kerning first=68 second=86 amount=2 -kerning first=88 second=243 amount=-2 -kerning first=246 second=295 amount=-1 -kerning first=374 second=347 amount=-4 -kerning first=289 second=359 amount=2 -kerning first=204 second=371 amount=-2 -kerning first=112 second=320 amount=3 -kerning first=115 second=100 amount=3 -kerning first=53 second=49 amount=-3 -kerning first=316 second=246 amount=1 -kerning first=362 second=90 amount=4 -kerning first=192 second=114 amount=-12 -kerning first=297 second=259 amount=2 -kerning first=343 second=103 amount=-2 -kerning first=258 second=115 amount=-11 -kerning first=278 second=272 amount=-5 -kerning first=193 second=284 amount=-11 -kerning first=324 second=116 amount=-1 -kerning first=101 second=233 amount=1 -kerning first=259 second=285 amount=2 -kerning first=59 second=309 amount=-11 -kerning first=197 second=234 amount=-12 -kerning first=282 second=222 amount=-6 -kerning first=302 second=349 amount=-2 -kerning first=325 second=286 amount=3 -kerning first=102 second=373 amount=-7 -kerning first=348 second=223 amount=2 -kerning first=86 second=196 amount=-3 -kerning first=221 second=311 amount=-2 -kerning first=109 second=103 amount=2 -kerning first=349 second=363 amount=1 -kerning first=8211 second=68 amount=-7 -kerning first=44 second=272 amount=-3 -kerning first=287 second=312 amount=2 -kerning first=67 second=209 amount=4 -kerning first=202 second=324 amount=-2 -kerning first=205 second=104 amount=-2 -kerning first=87 second=336 amount=2 -kerning first=110 second=273 amount=2 -kerning first=8212 second=238 amount=2 -kerning first=268 second=325 amount=4 -kerning first=271 second=105 amount=-3 -kerning first=337 second=106 amount=-13 -kerning first=114 second=223 amount=2 -kerning first=357 second=263 amount=-9 -kerning first=75 second=79 amount=-8 -kerning first=318 second=119 amount=-10 -kerning first=230 second=351 amount=1 -kerning first=338 second=276 amount=-4 -kerning first=115 second=363 amount=1 -kerning first=256 second=68 amount=-10 -kerning first=192 second=377 amount=-7 -kerning first=80 second=199 amount=3 -kerning first=196 second=327 amount=-15 -kerning first=199 second=107 amount=2 -kerning first=304 second=252 amount=-2 -kerning first=84 second=119 amount=-5 -kerning first=222 second=44 amount=-8 -kerning first=347 second=316 amount=1 -kerning first=265 second=108 amount=-1 -kerning first=285 second=265 amount=2 -kerning first=85 second=289 amount=2 -kerning first=88 second=69 amount=-2 -kerning first=328 second=329 amount=-3 -kerning first=108 second=226 amount=2 -kerning first=246 second=121 amount=-2 -kerning first=354 second=46 amount=-15 -kerning first=266 second=278 amount=-2 -kerning first=374 second=203 amount=-4 -kerning first=69 second=82 amount=-6 -kerning first=8211 second=331 amount=2 -kerning first=270 second=228 amount=2 -kerning first=290 second=355 amount=2 -kerning first=205 second=367 amount=-2 -kerning first=113 second=316 amount=-1 -kerning first=356 second=356 amount=-8 -kerning first=74 second=202 amount=-5 -kerning first=232 second=254 amount=-1 -kerning first=337 second=369 amount=-2 -kerning first=160 second=278 amount=-6 -kerning first=275 second=318 amount=-1 -kerning first=193 second=110 amount=-13 -kerning first=75 second=342 amount=-7 -kerning first=78 second=122 amount=3 -kerning first=98 second=279 amount=2 -kerning first=256 second=331 amount=-13 -kerning first=194 second=280 amount=-10 -kerning first=102 second=229 amount=-6 -kerning first=345 second=269 amount=-2 -kerning first=103 second=369 amount=2 -kerning first=284 second=358 amount=-2 -kerning first=222 second=307 amount=2 -kerning first=376 second=76 amount=-3 -kerning first=45 second=268 amount=5 -kerning first=48 second=48 amount=2 -kerning first=311 second=245 amount=1 -kerning first=88 second=332 amount=-4 -kerning first=226 second=257 amount=2 -kerning first=354 second=309 amount=-13 -kerning first=358 second=259 amount=-10 -kerning first=270 second=8212 amount=4 -kerning first=273 second=271 amount=2 -kerning first=73 second=295 amount=-2 -kerning first=316 second=335 amount=1 -kerning first=231 second=347 amount=1 -kerning first=192 second=233 amount=-12 -kerning first=120 second=309 amount=-9 -kerning first=258 second=234 amount=-12 -kerning first=363 second=349 amount=1 -kerning first=278 second=361 amount=-2 -kerning first=193 second=373 amount=-13 -kerning first=219 second=90 amount=4 -kerning first=101 second=322 amount=-1 -kerning first=370 second=79 amount=2 -kerning first=197 second=323 amount=-15 -kerning first=82 second=335 amount=-2 -kerning first=266 second=104 amount=2 -kerning first=86 second=285 amount=6 -kerning first=89 second=65 amount=-3 -kerning first=352 second=262 amount=3 -kerning first=67 second=298 amount=3 -kerning first=356 second=212 amount=-2 -kerning first=8212 second=327 amount=-2 -kerning first=271 second=224 amount=-8 -kerning first=376 second=339 amount=-4 -kerning first=291 second=351 amount=2 -kerning first=71 second=248 amount=3 -kerning first=206 second=363 amount=-2 -kerning first=318 second=238 amount=-3 -kerning first=98 second=105 amount=2 -kerning first=364 second=82 amount=-2 -kerning first=342 second=315 amount=3 -kerning first=260 second=107 amount=-12 -kerning first=195 second=276 amount=-10 -kerning first=80 second=288 amount=3 -kerning first=83 second=68 amount=-3 -kerning first=326 second=108 amount=-1 -kerning first=103 second=225 amount=5 -kerning first=241 second=120 amount=-1 -kerning first=84 second=238 amount=-2 -kerning first=327 second=278 amount=-6 -kerning first=265 second=227 amount=1 -kerning first=370 second=342 amount=-2 -kerning first=331 second=228 amount=2 -kerning first=351 second=355 amount=1 -kerning first=46 second=264 amount=-3 -kerning first=292 second=84 amount=-6 -kerning first=69 second=201 amount=-5 -kerning first=204 second=316 amount=-2 -kerning first=89 second=328 amount=-5 -kerning first=112 second=265 amount=2 -kerning first=358 second=85 amount=-1 -kerning first=273 second=97 amount=2 -kerning first=70 second=341 amount=-3 -kerning first=73 second=121 amount=-2 -kerning first=208 second=266 amount=4 -kerning first=211 second=46 amount=-5 -kerning first=313 second=381 amount=2 -kerning first=339 second=98 amount=-1 -kerning first=254 second=110 amount=2 -kerning first=192 second=59 amount=-10 -kerning first=74 second=291 amount=-5 -kerning first=77 second=71 amount=3 -kerning first=320 second=111 amount=-1 -kerning first=97 second=228 amount=2 -kerning first=117 second=355 amount=-1 -kerning first=58 second=84 amount=-10 -kerning first=193 second=229 amount=-10 -kerning first=298 second=344 amount=-2 -kerning first=259 second=230 amount=1 -kerning first=279 second=357 amount=-1 -kerning first=194 second=369 amount=-13 -kerning first=240 second=243 amount=1 -kerning first=286 second=87 amount=4 -kerning first=198 second=319 amount=-3 -kerning first=86 second=111 amount=3 -kerning first=221 second=256 amount=-3 -kerning first=264 second=320 amount=2 -kerning first=267 second=100 amount=1 -kerning first=287 second=257 amount=5 -kerning first=268 second=270 amount=-2 -kerning first=376 second=195 amount=-3 -kerning first=207 second=359 amount=-2 -kerning first=358 second=348 amount=-6 -kerning first=296 second=297 amount=-2 -kerning first=234 second=246 amount=1 -kerning first=254 second=373 amount=2 -kerning first=192 second=322 amount=-12 -kerning first=195 second=102 amount=-12 -kerning first=77 second=334 amount=3 -kerning first=80 second=114 amount=1 -kerning first=100 second=271 amount=2 -kerning first=343 second=311 amount=-1 -kerning first=258 second=323 amount=-15 -kerning first=261 second=103 amount=2 -kerning first=196 second=272 amount=-10 -kerning first=242 second=116 amount=-1 -kerning first=65 second=77 amount=-8 -kerning first=200 second=222 amount=-6 -kerning first=266 second=223 amount=3 -kerning first=374 second=118 amount=-4 -kerning first=309 second=287 amount=2 -kerning first=109 second=311 amount=-1 -kerning first=8211 second=276 amount=-7 -kerning first=290 second=300 amount=3 -kerning first=70 second=197 amount=-12 -kerning first=205 second=312 amount=-2 -kerning first=356 second=301 amount=-2 -kerning first=71 second=337 amount=3 -kerning first=74 second=117 amount=-4 -kerning first=209 second=262 amount=3 -kerning first=337 second=314 amount=-1 -kerning first=275 second=263 amount=1 -kerning first=75 second=287 amount=-7 -kerning first=78 second=67 amount=3 -kerning first=98 second=224 amount=5 -kerning first=233 second=339 amount=1 -kerning first=118 second=351 amount=2 -kerning first=256 second=276 amount=-10 -kerning first=364 second=201 amount=-6 -kerning first=59 second=80 amount=-4 -kerning first=194 second=225 amount=-10 -kerning first=302 second=120 amount=-1 -kerning first=237 second=289 amount=2 -kerning first=260 second=226 amount=-10 -kerning first=195 second=365 amount=-13 -kerning first=80 second=377 amount=-4 -kerning first=221 second=82 amount=-1 -kerning first=326 second=227 amount=2 -kerning first=103 second=314 amount=2 -kerning first=346 second=354 amount=-3 -kerning first=369 second=291 amount=2 -kerning first=84 second=327 amount=-1 -kerning first=307 second=240 amount=2 -kerning first=265 second=316 amount=-1 -kerning first=373 second=241 amount=2 -kerning first=45 second=213 amount=5 -kerning first=65 second=340 amount=-17 -kerning first=68 second=120 amount=-3 -kerning first=88 second=277 amount=-2 -kerning first=246 second=329 amount=-3 -kerning first=354 second=254 amount=-3 -kerning first=272 second=46 amount=-3 -kerning first=374 second=381 amount=-2 -kerning first=292 second=203 amount=-6 -kerning first=72 second=70 amount=-2 -kerning first=358 second=204 amount=-2 -kerning first=254 second=229 amount=5 -kerning first=274 second=356 amount=-5 -kerning first=382 second=281 amount=1 -kerning first=100 second=97 amount=2 -kerning first=340 second=357 amount=-2 -kerning first=120 second=254 amount=-2 -kerning first=58 second=203 amount=-4 -kerning first=193 second=318 amount=-12 -kerning first=196 second=98 amount=-12 -kerning first=301 second=243 amount=1 -kerning first=101 second=267 amount=1 -kerning first=197 second=268 amount=-11 -kerning first=328 second=100 amount=2 -kerning first=243 second=112 amount=-2 -kerning first=286 second=206 amount=3 -kerning first=309 second=113 amount=2 -kerning first=86 second=230 amount=4 -kerning first=221 second=345 amount=-5 -kerning first=375 second=114 amount=3 -kerning first=202 second=358 amount=-5 -kerning first=225 second=295 amount=-1 -kerning first=8212 second=272 amount=-7 -kerning first=268 second=359 amount=2 -kerning first=376 second=284 amount=-1 -kerning first=209 second=88 amount=3 -kerning first=114 second=257 amount=-2 -kerning first=357 second=297 amount=-3 -kerning first=272 second=309 amount=-12 -kerning first=75 second=113 amount=-7 -kerning first=256 second=102 amount=-12 -kerning first=234 second=335 amount=1 -kerning first=237 second=115 amount=1 -kerning first=119 second=347 amount=2 -kerning first=342 second=260 amount=3 -kerning first=323 second=273 amount=2 -kerning first=238 second=285 amount=2 -kerning first=346 second=210 amount=3 -kerning first=281 second=349 amount=1 -kerning first=196 second=361 amount=-13 -kerning first=327 second=223 amount=2 -kerning first=370 second=287 amount=2 -kerning first=285 second=299 amount=3 -kerning first=65 second=196 amount=-7 -kerning first=223 second=248 amount=1 -kerning first=243 second=375 amount=-2 -kerning first=354 second=80 amount=-5 -kerning first=266 second=312 amount=2 -kerning first=46 second=209 amount=-5 -kerning first=374 second=237 amount=-3 -kerning first=289 second=249 amount=2 -kerning first=89 second=273 amount=-3 -kerning first=8211 second=365 amount=2 -kerning first=270 second=262 amount=4 -kerning first=208 second=211 amount=4 -kerning first=316 second=106 amount=-12 -kerning first=231 second=118 amount=-1 -kerning first=74 second=236 amount=-1 -kerning first=360 second=340 amount=-2 -kerning first=363 second=120 amount=-1 -kerning first=341 second=353 amount=-2 -kerning first=121 second=250 amount=3 -kerning first=256 second=365 amount=-13 -kerning first=364 second=290 amount=2 -kerning first=282 second=82 amount=-6 -kerning first=59 second=199 amount=-3 -kerning first=194 second=314 amount=-12 -kerning first=302 second=239 amount=-2 -kerning first=102 second=263 amount=-8 -kerning first=368 second=240 amount=2 -kerning first=198 second=264 amount=-7 -kerning first=83 second=276 amount=-3 -kerning first=221 second=201 amount=-4 -kerning first=326 second=316 amount=-1 -kerning first=244 second=108 amount=-1 -kerning first=349 second=253 amount=1 -kerning first=67 second=69 amount=-2 -kerning first=307 second=329 amount=-2 -kerning first=87 second=226 amount=2 -kerning first=330 second=266 amount=3 -kerning first=107 second=353 amount=1 -kerning first=45 second=302 amount=-5 -kerning first=376 second=110 amount=-5 -kerning first=203 second=354 amount=-5 -kerning first=311 second=279 amount=1 -kerning first=226 second=291 amount=2 -kerning first=354 second=343 amount=-6 -kerning first=269 second=355 amount=-1 -kerning first=115 second=253 amount=1 -kerning first=358 second=293 amount=-3 -kerning first=296 second=242 amount=-2 -kerning first=73 second=329 amount=-4 -kerning first=254 second=318 amount=3 -kerning first=257 second=98 amount=-1 -kerning first=192 second=267 amount=-12 -kerning first=80 second=59 amount=-4 -kerning first=238 second=111 amount=1 -kerning first=258 second=268 amount=-11 -kerning first=304 second=112 amount=-2 -kerning first=370 second=113 amount=2 -kerning first=197 second=357 amount=-12 -kerning first=286 second=295 amount=2 -kerning first=66 second=192 amount=-5 -kerning first=309 second=232 amount=1 -kerning first=86 second=319 amount=4 -kerning first=89 second=99 amount=-4 -kerning first=329 second=359 amount=-1 -kerning first=244 second=371 amount=-2 -kerning first=270 second=88 amount=-3 -kerning first=375 second=233 amount=3 -kerning first=8211 second=221 amount=3 -kerning first=70 second=112 amount=-3 -kerning first=356 second=246 amount=-7 -kerning first=8212 second=361 amount=2 -kerning first=376 second=373 amount=-4 -kerning first=71 second=282 amount=-2 -kerning first=298 second=115 amount=-2 -kerning first=75 second=232 amount=-10 -kerning first=299 second=285 amount=2 -kerning first=99 second=309 amount=-11 -kerning first=237 second=234 amount=1 -kerning first=368 second=66 amount=-6 -kerning first=198 second=90 amount=-3 -kerning first=303 second=235 amount=1 -kerning first=103 second=259 amount=5 -kerning first=261 second=311 amount=-1 -kerning first=304 second=375 amount=-2 -kerning first=84 second=272 amount=-8 -kerning first=222 second=197 amount=-13 -kerning first=242 second=324 amount=-2 -kerning first=245 second=104 amount=-1 -kerning first=65 second=285 amount=-10 -kerning first=68 second=65 amount=-8 -kerning first=223 second=337 amount=1 -kerning first=108 second=349 amount=1 -kerning first=354 second=199 amount=-2 -kerning first=374 second=326 amount=-5 -kerning first=312 second=275 amount=1 -kerning first=227 second=287 amount=2 -kerning first=112 second=299 amount=2 -kerning first=355 second=339 amount=1 -kerning first=358 second=119 amount=-5 -kerning first=70 second=375 amount=-3 -kerning first=316 second=225 amount=2 -kerning first=359 second=289 amount=2 -kerning first=362 second=69 amount=-6 -kerning first=77 second=105 amount=1 -kerning first=193 second=263 amount=-12 -kerning first=121 second=339 amount=3 -kerning first=364 second=379 amount=4 -kerning first=282 second=201 amount=-5 -kerning first=59 second=288 amount=-3 -kerning first=197 second=213 amount=-11 -kerning first=302 second=328 amount=-2 -kerning first=217 second=340 amount=-2 -kerning first=240 second=277 amount=1 -kerning first=348 second=202 amount=-3 -kerning first=198 second=353 amount=-4 -kerning first=221 second=290 amount=-1 -kerning first=264 second=354 amount=-2 -kerning first=287 second=291 amount=5 -kerning first=225 second=240 amount=2 -kerning first=245 second=367 amount=-2 -kerning first=268 second=304 amount=3 -kerning first=376 second=229 amount=-3 -kerning first=291 second=241 amount=2 -kerning first=71 second=108 amount=2 -kerning first=206 second=253 amount=-2 -kerning first=357 second=242 amount=-9 -kerning first=292 second=381 amount=4 -kerning first=72 second=278 amount=-6 -kerning first=75 second=58 amount=-5 -kerning first=296 second=331 amount=-2 -kerning first=299 second=111 amount=1 -kerning first=362 second=332 amount=2 -kerning first=192 second=356 amount=-20 -kerning first=300 second=281 amount=-2 -kerning first=258 second=357 amount=-12 -kerning first=366 second=282 amount=-6 -kerning first=199 second=86 amount=4 -kerning first=304 second=231 amount=-2 -kerning first=84 second=98 amount=-3 -kerning first=347 second=295 amount=1 -kerning first=65 second=111 amount=-12 -kerning first=285 second=244 amount=2 -kerning first=85 second=268 amount=2 -kerning first=243 second=320 amount=-1 -kerning first=351 second=245 amount=1 -kerning first=66 second=281 amount=2 -kerning first=312 second=101 amount=1 -kerning first=227 second=113 amount=2 -kerning first=244 second=8211 amount=3 -kerning first=70 second=231 amount=-4 -kerning first=113 second=295 amount=-1 -kerning first=356 second=335 amount=-7 -kerning first=359 second=115 amount=1 -kerning first=271 second=347 amount=-8 -kerning first=71 second=371 amount=2 -kerning first=232 second=233 amount=1 -kerning first=360 second=285 amount=2 -kerning first=193 second=89 amount=-7 -kerning first=298 second=234 amount=-2 -kerning first=318 second=361 amount=-9 -kerning first=194 second=259 amount=-10 -kerning first=76 second=8212 amount=-5 -kerning first=240 second=103 amount=2 -kerning first=345 second=248 amount=-2 -kerning first=260 second=260 amount=-7 -kerning first=221 second=116 amount=-2 -kerning first=241 second=273 amount=2 -kerning first=287 second=117 amount=2 -kerning first=84 second=361 amount=-6 -kerning first=222 second=286 amount=4 -kerning first=330 second=211 amount=3 -kerning first=245 second=223 amount=2 -kerning first=350 second=338 amount=3 -kerning first=353 second=118 amount=1 -kerning first=373 second=275 amount=4 -kerning first=311 second=224 amount=2 -kerning first=331 second=351 amount=1 -kerning first=246 second=363 amount=-2 -kerning first=354 second=288 amount=-2 -kerning first=272 second=80 amount=-5 -kerning first=69 second=324 amount=-2 -kerning first=207 second=249 amount=-2 -kerning first=358 second=238 amount=-2 -kerning first=234 second=106 amount=-13 -kerning first=119 second=118 amount=3 -kerning first=254 second=263 amount=2 -kerning first=192 second=212 amount=-11 -kerning first=300 second=107 amount=-2 -kerning first=77 second=224 amount=1 -kerning first=97 second=351 amount=1 -kerning first=258 second=213 amount=-11 -kerning first=278 second=340 amount=-6 -kerning first=281 second=120 amount=-2 -kerning first=193 second=352 amount=-8 -kerning first=301 second=277 amount=1 -kerning first=219 second=69 amount=-6 -kerning first=239 second=226 amount=2 -kerning first=347 second=121 amount=1 -kerning first=259 second=353 amount=1 -kerning first=197 second=302 amount=-7 -kerning first=200 second=82 amount=-6 -kerning first=82 second=314 amount=-2 -kerning first=305 second=227 amount=2 -kerning first=325 second=354 amount=-6 -kerning first=371 second=228 amount=2 -kerning first=86 second=264 amount=5 -kerning first=89 second=44 amount=-5 -kerning first=221 second=379 amount=-2 -kerning first=244 second=316 amount=-1 -kerning first=44 second=340 amount=-4 -kerning first=225 second=329 amount=-3 -kerning first=333 second=254 amount=-1 -kerning first=376 second=318 amount=-2 -kerning first=71 second=227 amount=5 -kerning first=206 second=342 amount=-2 -kerning first=209 second=122 amount=3 -kerning first=114 second=291 amount=-2 -kerning first=357 second=331 amount=-9 -kerning first=160 second=83 amount=-3 -kerning first=233 second=229 amount=2 -kerning first=338 second=344 amount=-7 -kerning first=118 second=241 amount=2 -kerning first=194 second=85 amount=-7 -kerning first=99 second=254 amount=-1 -kerning first=260 second=86 amount=-7 -kerning first=280 second=243 amount=-2 -kerning first=199 second=205 amount=3 -kerning first=304 second=320 amount=-2 -kerning first=307 second=100 amount=2 -kerning first=222 second=112 amount=1 -kerning first=327 second=257 amount=2 -kerning first=350 second=194 amount=-9 -kerning first=45 second=73 amount=-5 -kerning first=373 second=101 amount=4 -kerning first=285 second=333 amount=2 -kerning first=65 second=230 amount=-10 -kerning first=354 second=114 amount=-6 -kerning first=374 second=271 amount=-3 -kerning first=289 second=283 amount=2 -kerning first=204 second=295 amount=-2 -kerning first=89 second=307 amount=-3 -kerning first=112 second=244 amount=2 -kerning first=70 second=320 amount=-2 -kerning first=359 second=234 amount=1 -kerning first=274 second=246 amount=-2 -kerning first=71 second=8211 amount=4 -kerning first=74 second=270 amount=-5 -kerning first=232 second=322 amount=-1 -kerning first=160 second=346 amount=-3 -kerning first=193 second=208 amount=-10 -kerning first=301 second=103 amount=2 -kerning first=98 second=347 amount=2 -kerning first=344 second=197 amount=3 -kerning first=367 second=104 amount=-1 -kerning first=194 second=348 amount=-8 -kerning first=217 second=285 amount=2 -kerning first=325 second=210 amount=3 -kerning first=102 second=297 amount=-7 -kerning first=345 second=337 amount=-2 -kerning first=260 second=349 amount=-11 -kerning first=368 second=274 amount=-6 -kerning first=286 second=66 amount=-2 -kerning first=349 second=287 amount=3 -kerning first=352 second=67 amount=3 -kerning first=372 second=224 amount=2 -kerning first=287 second=236 amount=3 -kerning first=202 second=248 amount=-2 -kerning first=222 second=375 amount=1 -kerning first=245 second=312 amount=-2 -kerning first=353 second=237 amount=1 -kerning first=45 second=336 amount=5 -kerning first=68 second=273 amount=2 -kerning first=354 second=377 amount=-2 -kerning first=272 second=199 amount=4 -kerning first=295 second=106 amount=-10 -kerning first=72 second=223 amount=2 -kerning first=230 second=275 amount=1 -kerning first=338 second=200 amount=-4 -kerning first=115 second=287 amount=3 -kerning first=358 second=327 amount=-1 -kerning first=361 second=107 amount=-1 -kerning first=273 second=339 amount=1 -kerning first=276 second=119 amount=-2 -kerning first=73 second=363 amount=-2 -kerning first=234 second=225 amount=2 -kerning first=342 second=120 amount=-2 -kerning first=119 second=237 amount=2 -kerning first=277 second=289 amount=2 -kerning first=280 second=69 amount=-5 -kerning first=195 second=81 amount=-11 -kerning first=346 second=70 amount=-3 -kerning first=258 second=302 amount=-7 -kerning first=366 second=227 amount=2 -kerning first=347 second=240 amount=3 -kerning first=200 second=201 amount=-5 -kerning first=85 second=213 amount=2 -kerning first=108 second=120 amount=2 -kerning first=246 second=45 amount=3 -kerning first=266 second=202 amount=-2 -kerning first=374 second=97 amount=-3 -kerning first=46 second=69 amount=-4 -kerning first=289 second=109 amount=2 -kerning first=66 second=226 amount=3 -kerning first=204 second=121 amount=-2 -kerning first=86 second=353 amount=3 -kerning first=375 second=267 amount=3 -kerning first=208 second=71 amount=4 -kerning first=228 second=228 amount=2 -kerning first=113 second=240 amount=2 -kerning first=248 second=355 amount=-1 -kerning first=356 second=280 amount=-8 -kerning first=294 second=229 amount=2 -kerning first=71 second=316 amount=2 -kerning first=337 second=293 amount=-1 -kerning first=160 second=202 amount=-6 -kerning first=275 second=242 amount=1 -kerning first=75 second=266 amount=-8 -kerning first=233 second=318 amount=-1 -kerning first=341 second=243 amount=-2 -kerning first=121 second=110 amount=3 -kerning first=194 second=204 amount=-7 -kerning first=302 second=99 amount=-2 -kerning first=260 second=205 amount=-7 -kerning first=365 second=320 amount=-1 -kerning first=368 second=100 amount=2 -kerning first=195 second=344 amount=-17 -kerning first=303 second=269 amount=1 -kerning first=80 second=356 amount=-9 -kerning first=103 second=293 amount=2 -kerning first=349 second=113 amount=3 -kerning first=284 second=282 amount=-2 -kerning first=107 second=243 amount=1 -kerning first=265 second=295 amount=-1 -kerning first=45 second=192 amount=-13 -kerning first=65 second=319 amount=-7 -kerning first=203 second=244 amount=-2 -kerning first=88 second=256 amount=-5 -kerning first=354 second=233 amount=-7 -kerning first=269 second=245 amount=-1 -kerning first=46 second=332 amount=-3 -kerning first=312 second=309 amount=-12 -kerning first=230 second=101 amount=1 -kerning first=112 second=333 amount=2 -kerning first=115 second=113 amount=3 -kerning first=296 second=102 amount=-3 -kerning first=208 second=334 amount=4 -kerning first=316 second=259 amount=2 -kerning first=231 second=271 amount=1 -kerning first=362 second=103 amount=2 -kerning first=274 second=335 amount=-2 -kerning first=277 second=115 amount=1 -kerning first=343 second=116 amount=-1 -kerning first=363 second=273 amount=2 -kerning first=196 second=77 amount=-8 -kerning first=78 second=309 amount=-12 -kerning first=101 second=246 amount=1 -kerning first=121 second=373 amount=3 -kerning first=262 second=78 amount=4 -kerning first=367 second=223 amount=4 -kerning first=240 second=311 amount=-1 -kerning first=263 second=248 amount=-1 -kerning first=86 second=209 amount=2 -kerning first=221 second=324 amount=-5 -kerning first=224 second=104 amount=-1 -kerning first=109 second=116 amount=-1 -kerning first=8211 second=81 amount=5 -kerning first=67 second=222 amount=-2 -kerning first=202 second=337 amount=-2 -kerning first=205 second=117 amount=-2 -kerning first=353 second=326 amount=1 -kerning first=356 second=106 amount=-13 -kerning first=271 second=118 amount=-10 -kerning first=376 second=263 amount=-4 -kerning first=8212 second=251 amount=2 -kerning first=291 second=275 amount=2 -kerning first=209 second=67 amount=3 -kerning first=229 second=224 amount=2 -kerning first=337 second=119 amount=-2 -kerning first=272 second=288 amount=4 -kerning first=295 second=225 amount=2 -kerning first=256 second=81 amount=-11 -kerning first=361 second=226 amount=2 -kerning first=296 second=365 amount=-2 -kerning first=234 second=314 amount=-1 -kerning first=119 second=326 amount=2 -kerning first=122 second=106 amount=-9 -kerning first=195 second=200 amount=-10 -kerning first=80 second=212 amount=3 -kerning first=100 second=339 amount=1 -kerning first=103 second=119 amount=2 -kerning first=284 second=108 amount=2 -kerning first=196 second=340 amount=-17 -kerning first=304 second=265 amount=-2 -kerning first=327 second=202 amount=-6 -kerning first=104 second=289 amount=2 -kerning first=265 second=121 amount=-1 -kerning first=370 second=266 amount=2 -kerning first=203 second=70 amount=-6 -kerning first=223 second=227 amount=2 -kerning first=351 second=279 amount=1 -kerning first=354 second=59 amount=-15 -kerning first=374 second=216 amount=-1 -kerning first=289 second=228 amount=5 -kerning first=355 second=229 amount=2 -kerning first=8211 second=344 amount=-6 -kerning first=70 second=265 amount=-4 -kerning first=231 second=97 amount=1 -kerning first=113 second=329 amount=-3 -kerning first=356 second=369 amount=-6 -kerning first=232 second=267 amount=1 -kerning first=340 second=192 amount=3 -kerning first=278 second=111 amount=-2 -kerning first=75 second=355 amount=-7 -kerning first=121 second=229 amount=7 -kerning first=256 second=344 amount=-17 -kerning first=279 second=281 amount=1 -kerning first=194 second=293 amount=-12 -kerning first=197 second=73 amount=-7 -kerning first=102 second=242 amount=-8 -kerning first=283 second=231 amount=1 -kerning first=198 second=243 amount=-5 -kerning first=326 second=295 amount=-1 -kerning first=349 second=232 amount=1 -kerning first=369 second=359 amount=-1 -kerning first=225 second=100 amount=2 -kerning first=8212 second=77 amount=4 -kerning first=45 second=281 amount=4 -kerning first=373 second=309 amount=-7 -kerning first=291 second=101 amount=2 -kerning first=203 second=333 amount=-2 -kerning first=88 second=345 amount=-2 -kerning first=354 second=322 amount=-3 -kerning first=357 second=102 amount=-4 -kerning first=289 second=8212 amount=4 -kerning first=292 second=271 amount=2 -kerning first=69 second=358 amount=-5 -kerning first=207 second=283 amount=-2 -kerning first=115 second=232 amount=1 -kerning first=358 second=272 amount=-8 -kerning first=339 second=285 amount=2 -kerning first=342 second=65 amount=3 -kerning first=254 second=297 amount=2 -kerning first=362 second=222 amount=-2 -kerning first=277 second=234 amount=1 -kerning first=192 second=246 amount=-12 -kerning first=343 second=235 amount=-2 -kerning first=120 second=322 amount=-1 -kerning first=196 second=196 amount=-7 -kerning first=219 second=103 amount=2 -kerning first=101 second=335 amount=1 -kerning first=104 second=115 amount=1 -kerning first=282 second=324 amount=-2 -kerning first=285 second=104 amount=2 -kerning first=197 second=336 amount=-11 -kerning first=220 second=273 amount=2 -kerning first=105 second=285 amount=2 -kerning first=351 second=105 amount=1 -kerning first=263 second=337 amount=-1 -kerning first=286 second=274 amount=-2 -kerning first=86 second=298 amount=5 -kerning first=8211 second=200 amount=-7 -kerning first=267 second=287 amount=1 -kerning first=270 second=67 amount=4 -kerning first=67 second=311 amount=2 -kerning first=205 second=236 amount=-2 -kerning first=356 second=225 amount=-10 -kerning first=8212 second=340 amount=-6 -kerning first=271 second=237 amount=-3 -kerning first=376 second=352 amount=-4 -kerning first=337 second=238 amount=-2 -kerning first=357 second=365 amount=-9 -kerning first=55 second=54 amount=-6 -kerning first=295 second=314 amount=-1 -kerning first=75 second=211 amount=-8 -kerning first=98 second=118 amount=2 -kerning first=233 second=263 amount=1 -kerning first=118 second=275 amount=4 -kerning first=256 second=200 amount=-10 -kerning first=279 second=107 amount=-1 -kerning first=194 second=119 amount=-13 -kerning first=345 second=108 amount=-1 -kerning first=260 second=120 amount=-14 -kerning first=195 second=289 amount=-10 -kerning first=198 second=69 amount=-2 -kerning first=80 second=301 amount=1 -kerning first=83 second=81 amount=3 -kerning first=218 second=226 amount=2 -kerning first=103 second=238 amount=3 -kerning first=238 second=353 amount=1 -kerning first=346 second=278 amount=-3 -kerning first=264 second=70 amount=-2 -kerning first=304 second=354 amount=-2 -kerning first=327 second=291 amount=2 -kerning first=330 second=71 amount=3 -kerning first=242 second=303 amount=-2 -kerning first=265 second=240 amount=1 -kerning first=285 second=367 amount=2 -kerning first=65 second=264 amount=-11 -kerning first=68 second=44 amount=-3 -kerning first=88 second=201 amount=-2 -kerning first=111 second=108 amount=-1 -kerning first=246 second=253 amount=-2 -kerning first=374 second=305 amount=-3 -kerning first=49 second=57 amount=-2 -kerning first=292 second=97 amount=2 -kerning first=204 second=329 amount=-4 -kerning first=207 second=109 amount=-2 -kerning first=89 second=341 amount=-5 -kerning first=355 second=318 amount=-1 -kerning first=358 second=98 amount=-3 -kerning first=70 second=354 amount=-9 -kerning first=211 second=59 amount=-5 -kerning first=339 second=111 amount=1 -kerning first=116 second=228 amount=2 -kerning first=274 second=280 amount=-5 -kerning first=192 second=72 amount=-4 -kerning first=77 second=84 amount=-7 -kerning first=258 second=73 amount=-7 -kerning first=193 second=242 amount=-12 -kerning first=298 second=357 amount=-2 -kerning first=121 second=318 amount=3 -kerning first=364 second=358 amount=-6 -kerning first=197 second=192 amount=-7 -kerning first=302 second=307 amount=-2 -kerning first=102 second=331 amount=-7 -kerning first=105 second=111 amount=1 -kerning first=283 second=320 amount=-1 -kerning first=198 second=332 amount=-7 -kerning first=83 second=344 amount=-3 -kerning first=221 second=269 amount=-4 -kerning first=106 second=281 amount=1 -kerning first=267 second=113 amount=1 -kerning first=202 second=282 amount=-5 -kerning first=330 second=334 amount=3 -kerning first=333 second=114 amount=-2 -kerning first=350 second=8212 amount=4 -kerning first=353 second=271 amount=3 -kerning first=8212 second=196 amount=-13 -kerning first=45 second=370 amount=5 -kerning first=376 second=208 amount=-4 -kerning first=71 second=87 amount=4 -kerning first=206 second=232 amount=-2 -kerning first=311 second=347 amount=1 -kerning first=226 second=359 amount=-1 -kerning first=111 second=371 amount=-2 -kerning first=72 second=257 amount=2 -kerning first=230 second=309 amount=-12 -kerning first=118 second=101 amount=4 -kerning first=358 second=361 amount=-6 -kerning first=234 second=259 amount=2 -kerning first=119 second=271 amount=5 -kerning first=192 second=335 amount=-12 -kerning first=195 second=115 amount=-11 -kerning first=258 second=336 amount=-11 -kerning first=261 second=116 amount=-1 -kerning first=281 second=273 amount=2 -kerning first=196 second=285 amount=-10 -kerning first=84 second=77 amount=-7 -kerning first=219 second=222 amount=-2 -kerning first=239 second=349 amount=1 -kerning first=370 second=211 amount=2 -kerning first=285 second=223 amount=5 -kerning first=65 second=90 amount=-7 -kerning first=328 second=287 amount=2 -kerning first=243 second=299 amount=-2 -kerning first=351 second=224 amount=3 -kerning first=371 second=351 amount=1 -kerning first=66 second=260 amount=-5 -kerning first=201 second=375 amount=-3 -kerning first=89 second=197 amount=-3 -kerning first=224 second=312 amount=-1 -kerning first=112 second=104 amount=3 -kerning first=8211 second=289 amount=4 -kerning first=375 second=301 amount=3 -kerning first=356 second=314 amount=-3 -kerning first=271 second=326 amount=-9 -kerning first=274 second=106 amount=-10 -kerning first=340 second=107 amount=-2 -kerning first=117 second=224 amount=2 -kerning first=360 second=264 amount=2 -kerning first=193 second=68 amount=-10 -kerning first=78 second=80 amount=-2 -kerning first=98 second=237 amount=2 -kerning first=341 second=277 amount=-2 -kerning first=256 second=289 amount=-10 -kerning first=364 second=214 amount=2 -kerning first=279 second=226 amount=2 -kerning first=299 second=353 amount=1 -kerning first=325 second=70 amount=-2 -kerning first=345 second=227 amount=-2 -kerning first=83 second=200 amount=-3 -kerning first=326 second=240 amount=2 -kerning first=372 second=84 amount=-6 -kerning first=284 second=316 amount=2 -kerning first=84 second=340 amount=-5 -kerning first=107 second=277 amount=1 -kerning first=353 second=97 amount=3 -kerning first=265 second=329 amount=-4 -kerning first=373 second=254 amount=-1 -kerning first=45 second=226 amount=4 -kerning first=65 second=353 amount=-11 -kerning first=203 second=278 amount=-5 -kerning first=88 second=290 amount=-4 -kerning first=354 second=267 amount=-7 -kerning first=272 second=59 amount=-3 -kerning first=227 second=355 amount=-1 -kerning first=112 second=367 amount=2 -kerning first=273 second=229 amount=2 -kerning first=73 second=253 amount=-2 -kerning first=119 second=97 amount=5 -kerning first=254 second=242 amount=2 -kerning first=359 second=357 amount=-1 -kerning first=274 second=369 amount=-2 -kerning first=320 second=243 amount=-1 -kerning first=258 second=192 amount=-7 -kerning first=366 second=87 amount=2 -kerning first=281 second=99 amount=1 -kerning first=58 second=216 amount=-3 -kerning first=193 second=331 amount=-13 -kerning first=196 second=111 amount=-12 -kerning first=344 second=320 amount=-2 -kerning first=347 second=100 amount=3 -kerning first=367 second=257 amount=2 -kerning first=59 second=356 amount=-10 -kerning first=197 second=281 amount=-12 -kerning first=82 second=293 amount=-2 -kerning first=328 second=113 amount=2 -kerning first=348 second=270 amount=-3 -kerning first=66 second=86 amount=2 -kerning first=86 second=243 amount=3 -kerning first=8211 second=115 amount=4 -kerning first=287 second=359 amount=2 -kerning first=202 second=371 amount=-2 -kerning first=110 second=320 amount=-1 -kerning first=113 second=100 amount=2 -kerning first=8212 second=285 amount=4 -kerning first=51 second=49 amount=-4 -kerning first=71 second=206 amount=3 -kerning first=111 second=8211 amount=3 -kerning first=360 second=90 amount=4 -kerning first=295 second=259 amount=2 -kerning first=341 second=103 amount=-2 -kerning first=256 second=115 amount=-11 -kerning first=276 second=272 amount=-5 -kerning first=257 second=285 amount=2 -kerning first=260 second=65 amount=-7 -kerning first=280 second=222 amount=-6 -kerning first=195 second=234 amount=-12 -kerning first=300 second=349 amount=-2 -kerning first=323 second=286 amount=3 -kerning first=346 second=223 amount=2 -kerning first=304 second=299 amount=-2 -kerning first=84 second=196 amount=-13 -kerning first=107 second=103 amount=2 -kerning first=347 second=363 amount=1 -kerning first=285 second=312 amount=2 -kerning first=65 second=209 amount=-15 -kerning first=200 second=324 amount=-2 -kerning first=85 second=336 amount=2 -kerning first=108 second=273 amount=2 -kerning first=266 second=325 amount=4 -kerning first=46 second=222 amount=-4 -kerning first=66 second=349 amount=1 -kerning first=89 second=286 amount=-1 -kerning first=335 second=106 amount=-13 -kerning first=112 second=223 amount=5 -kerning first=70 second=299 amount=-4 -kerning first=208 second=224 amount=2 -kerning first=228 second=351 amount=1 -kerning first=160 second=325 amount=-8 -kerning first=78 second=199 amount=3 -kerning first=98 second=326 amount=2 -kerning first=101 second=106 amount=-13 -kerning first=121 second=263 amount=3 -kerning first=59 second=212 amount=-3 -kerning first=194 second=327 amount=-15 -kerning first=197 second=107 amount=-12 -kerning first=302 second=252 amount=-2 -kerning first=345 second=316 amount=-1 -kerning first=260 second=328 amount=-13 -kerning first=263 second=108 amount=-1 -kerning first=283 second=265 amount=1 -kerning first=198 second=277 amount=-5 -kerning first=221 second=214 amount=-1 -kerning first=326 second=329 amount=-3 -kerning first=106 second=226 amount=2 -kerning first=244 second=121 amount=-2 -kerning first=352 second=46 amount=-4 -kerning first=264 second=278 amount=-2 -kerning first=372 second=203 amount=-6 -kerning first=67 second=82 amount=-4 -kerning first=222 second=354 amount=-9 -kerning first=8212 second=111 amount=4 -kerning first=45 second=315 amount=3 -kerning first=203 second=367 amount=-2 -kerning first=111 second=316 amount=-1 -kerning first=354 second=356 amount=-8 -kerning first=72 second=202 amount=-6 -kerning first=230 second=254 amount=-1 -kerning first=335 second=369 amount=-2 -kerning first=273 second=318 amount=-1 -kerning first=73 second=342 amount=-2 -kerning first=254 second=331 amount=2 -kerning first=192 second=280 amount=-10 -kerning first=100 second=229 amount=2 -kerning first=343 second=269 amount=-2 -kerning first=258 second=281 amount=-12 -kerning first=196 second=230 amount=-10 -kerning first=282 second=358 amount=-5 -kerning first=108 second=99 amount=1 -kerning first=374 second=76 amount=-3 -kerning first=309 second=245 amount=1 -kerning first=86 second=332 amount=5 -kerning first=89 second=112 amount=-5 -kerning first=224 second=257 amount=2 -kerning first=8211 second=234 amount=4 -kerning first=375 second=246 amount=3 -kerning first=356 second=259 amount=-10 -kerning first=8212 second=374 amount=3 -kerning first=271 second=271 amount=-8 -kerning first=294 second=208 amount=-6 -kerning first=71 second=295 amount=2 -kerning first=74 second=75 amount=-2 -kerning first=229 second=347 amount=1 -kerning first=114 second=359 amount=-1 -kerning first=75 second=245 amount=-10 -kerning first=318 second=285 amount=-8 -kerning first=118 second=309 amount=-9 -kerning first=256 second=234 amount=-12 -kerning first=361 second=349 amount=1 -kerning first=276 second=361 amount=-2 -kerning first=217 second=90 amount=4 -kerning first=99 second=322 amount=-1 -kerning first=102 second=102 amount=-3 -kerning first=368 second=79 amount=2 -kerning first=195 second=323 amount=-15 -kerning first=198 second=103 amount=-3 -kerning first=303 second=248 amount=1 -kerning first=264 second=104 amount=2 -kerning first=84 second=285 amount=-10 -kerning first=222 second=210 amount=4 -kerning first=245 second=117 amount=-2 -kerning first=350 second=262 amount=3 -kerning first=65 second=298 amount=-7 -kerning first=203 second=223 amount=3 -kerning first=88 second=235 amount=-2 -kerning first=354 second=212 amount=-2 -kerning first=269 second=224 amount=1 -kerning first=374 second=339 amount=-4 -kerning first=289 second=351 amount=2 -kerning first=69 second=248 amount=-2 -kerning first=204 second=363 amount=-2 -kerning first=89 second=375 amount=-5 -kerning first=112 second=312 amount=2 -kerning first=362 second=82 amount=-2 -kerning first=340 second=315 amount=3 -kerning first=258 second=107 amount=-12 -kerning first=193 second=276 amount=-10 -kerning first=78 second=288 amount=3 -kerning first=324 second=108 amount=-1 -kerning first=101 second=225 amount=2 -kerning first=197 second=226 amount=-10 -kerning first=325 second=278 amount=-6 -kerning first=102 second=365 amount=-7 -kerning first=263 second=227 amount=1 -kerning first=368 second=342 amount=-2 -kerning first=329 second=228 amount=2 -kerning first=349 second=355 amount=1 -kerning first=44 second=264 amount=-3 -kerning first=290 second=84 amount=-2 -kerning first=67 second=201 amount=-2 -kerning first=356 second=85 amount=-1 -kerning first=271 second=97 amount=-8 -kerning first=376 second=242 amount=-4 -kerning first=291 second=254 amount=3 -kerning first=71 second=121 amount=1 -kerning first=337 second=98 amount=-1 -kerning first=72 second=291 amount=2 -kerning first=75 second=71 amount=-8 -kerning first=318 second=111 amount=-9 -kerning first=115 second=355 amount=1 -kerning first=296 second=344 amount=-2 -kerning first=234 second=293 amount=-1 -kerning first=119 second=305 amount=2 -kerning first=257 second=230 amount=1 -kerning first=277 second=357 amount=-1 -kerning first=192 second=369 amount=-13 -kerning first=100 second=318 amount=-1 -kerning first=103 second=98 amount=2 -kerning first=284 second=87 amount=4 -kerning first=196 second=319 amount=-7 -kerning first=304 second=244 amount=-2 -kerning first=84 second=111 amount=-7 -kerning first=262 second=320 amount=2 -kerning first=265 second=100 amount=1 -kerning first=285 second=257 amount=5 -kerning first=266 second=270 amount=-2 -kerning first=374 second=195 amount=-3 -kerning first=89 second=231 amount=-4 -kerning first=8211 second=323 amount=-2 -kerning first=375 second=335 amount=3 -kerning first=70 second=244 amount=-4 -kerning first=205 second=359 amount=-2 -kerning first=356 second=348 amount=-6 -kerning first=74 second=194 amount=-8 -kerning first=209 second=309 amount=-12 -kerning first=232 second=246 amount=1 -kerning first=337 second=361 amount=-2 -kerning first=160 second=270 amount=-6 -kerning first=193 second=102 amount=-12 -kerning first=75 second=334 amount=-8 -kerning first=98 second=271 amount=5 -kerning first=341 second=311 amount=-1 -kerning first=256 second=323 amount=-15 -kerning first=259 second=103 amount=2 -kerning first=194 second=272 amount=-10 -kerning first=240 second=116 amount=-1 -kerning first=345 second=261 amount=-2 -kerning first=260 second=273 amount=-10 -kerning first=303 second=337 amount=1 -kerning first=103 second=361 amount=2 -kerning first=264 second=223 amount=3 -kerning first=307 second=287 amount=2 -kerning first=222 second=299 amount=2 -kerning first=330 second=224 amount=2 -kerning first=245 second=236 amount=-2 -kerning first=45 second=260 amount=-13 -kerning first=376 second=68 amount=-4 -kerning first=288 second=300 amount=3 -kerning first=68 second=197 amount=-8 -kerning first=88 second=324 amount=-3 -kerning first=354 second=301 amount=-2 -kerning first=69 second=337 amount=-2 -kerning first=335 second=314 amount=-1 -kerning first=273 second=263 amount=1 -kerning first=116 second=351 amount=1 -kerning first=362 second=201 amount=-6 -kerning first=192 second=225 amount=-10 -kerning first=300 second=120 amount=-1 -kerning first=77 second=237 amount=1 -kerning first=320 second=277 amount=-1 -kerning first=235 second=289 amount=2 -kerning first=258 second=226 amount=-10 -kerning first=193 second=365 amount=-13 -kerning first=304 second=70 amount=-2 -kerning first=78 second=377 amount=4 -kerning first=216 second=302 amount=3 -kerning first=219 second=82 amount=-2 -kerning first=324 second=227 amount=2 -kerning first=101 second=314 amount=-1 -kerning first=344 second=354 amount=-8 -kerning first=367 second=291 amount=2 -kerning first=370 second=71 amount=2 -kerning first=197 second=315 amount=-7 -kerning first=305 second=240 amount=2 -kerning first=263 second=316 amount=-1 -kerning first=66 second=120 amount=-2 -kerning first=86 second=277 amount=3 -kerning first=244 second=329 amount=-3 -kerning first=270 second=46 amount=-3 -kerning first=372 second=381 amount=4 -kerning first=290 second=203 amount=-2 -kerning first=70 second=70 amount=-7 -kerning first=356 second=204 amount=-2 -kerning first=8212 second=319 amount=3 -kerning first=376 second=331 amount=-5 -kerning first=71 second=240 amount=5 -kerning first=206 second=355 amount=-2 -kerning first=272 second=356 amount=-6 -kerning first=380 second=281 amount=1 -kerning first=295 second=293 amount=-1 -kerning first=98 second=97 amount=5 -kerning first=233 second=242 amount=1 -kerning first=118 second=254 amount=3 -kerning first=194 second=98 amount=-12 -kerning first=195 second=268 amount=-11 -kerning first=80 second=280 amount=-9 -kerning first=326 second=100 amount=2 -kerning first=284 second=206 amount=3 -kerning first=304 second=333 amount=-2 -kerning first=84 second=230 amount=-9 -kerning first=307 second=113 amount=2 -kerning first=327 second=270 amount=-6 -kerning first=104 second=357 amount=-1 -kerning first=370 second=334 amount=2 -kerning first=45 second=86 amount=3 -kerning first=373 second=114 amount=2 -kerning first=65 second=243 amount=-12 -kerning first=200 second=358 amount=-5 -kerning first=266 second=359 amount=2 -kerning first=374 second=284 amount=-1 -kerning first=207 second=88 amount=2 -kerning first=312 second=233 amount=1 -kerning first=89 second=320 amount=-2 -kerning first=112 second=257 amount=5 -kerning first=358 second=77 amount=-7 -kerning first=270 second=309 amount=-12 -kerning first=70 second=333 amount=-4 -kerning first=208 second=258 amount=-8 -kerning first=90 second=8211 amount=-6 -kerning first=74 second=283 amount=-5 -kerning first=232 second=335 amount=1 -kerning first=235 second=115 amount=1 -kerning first=117 second=347 amount=1 -kerning first=340 second=260 amount=3 -kerning first=236 second=285 amount=2 -kerning first=121 second=297 amount=3 -kerning first=279 second=349 amount=1 -kerning first=194 second=361 amount=-13 -kerning first=325 second=223 amount=2 -kerning first=240 second=235 amount=1 -kerning first=368 second=287 amount=2 -kerning first=198 second=311 amount=-2 -kerning first=86 second=103 amount=6 -kerning first=352 second=80 amount=-3 -kerning first=264 second=312 amount=2 -kerning first=44 second=209 amount=-5 -kerning first=287 second=249 amount=2 -kerning first=67 second=116 amount=2 -kerning first=87 second=273 amount=2 -kerning first=248 second=105 amount=-2 -kerning first=353 second=250 amount=1 -kerning first=45 second=349 amount=4 -kerning first=68 second=286 amount=4 -kerning first=71 second=66 amount=-2 -kerning first=272 second=212 amount=4 -kerning first=207 second=351 amount=-2 -kerning first=358 second=340 amount=-5 -kerning first=361 second=120 amount=-1 -kerning first=339 second=353 amount=1 -kerning first=119 second=250 amount=2 -kerning first=254 second=365 amount=2 -kerning first=362 second=290 amount=2 -kerning first=280 second=82 amount=-6 -kerning first=192 second=314 amount=-12 -kerning first=300 second=239 amount=-2 -kerning first=80 second=106 amount=-10 -kerning first=100 second=263 amount=1 -kerning first=258 second=315 amount=-7 -kerning first=366 second=240 amount=2 -kerning first=196 second=264 amount=-11 -kerning first=219 second=201 amount=-6 -kerning first=324 second=316 amount=-1 -kerning first=242 second=108 amount=-1 -kerning first=347 second=253 amount=1 -kerning first=65 second=69 amount=-10 -kerning first=85 second=226 amount=2 -kerning first=105 second=353 amount=1 -kerning first=46 second=82 amount=-4 -kerning first=374 second=110 amount=-5 -kerning first=286 second=342 amount=-4 -kerning first=201 second=354 amount=-5 -kerning first=309 second=279 amount=1 -kerning first=224 second=291 amount=2 -kerning first=8211 second=268 amount=5 -kerning first=267 second=355 amount=-1 -kerning first=208 second=84 amount=-6 -kerning first=356 second=293 amount=-3 -kerning first=271 second=305 amount=-3 -kerning first=74 second=109 amount=-4 -kerning first=75 second=279 amount=-10 -kerning first=213 second=204 amount=3 -kerning first=236 second=111 amount=1 -kerning first=256 second=268 amount=-11 -kerning first=302 second=112 amount=-2 -kerning first=237 second=281 amount=1 -kerning first=368 second=113 amount=2 -kerning first=195 second=357 amount=-12 -kerning first=80 second=369 amount=1 -kerning first=284 second=295 amount=2 -kerning first=84 second=319 amount=-1 -kerning first=307 second=232 amount=1 -kerning first=242 second=371 amount=-2 -kerning first=268 second=88 amount=1 -kerning first=373 second=233 amount=4 -kerning first=45 second=205 amount=-5 -kerning first=65 second=332 amount=-11 -kerning first=88 second=269 amount=-2 -kerning first=331 second=309 amount=-10 -kerning first=354 second=246 amount=-7 -kerning first=374 second=373 amount=-4 -kerning first=69 second=282 amount=-5 -kerning first=358 second=196 amount=-13 -kerning first=296 second=115 amount=-2 -kerning first=73 second=232 amount=-2 -kerning first=297 second=285 amount=2 -kerning first=97 second=309 amount=-10 -kerning first=366 second=66 amount=-6 -kerning first=196 second=90 amount=-7 -kerning first=301 second=235 amount=1 -kerning first=101 second=259 amount=2 -kerning first=259 second=311 amount=-1 -kerning first=282 second=248 amount=-2 -kerning first=197 second=260 amount=-7 -kerning first=302 second=375 amount=-2 -kerning first=243 second=104 amount=-1 -kerning first=66 second=65 amount=-5 -kerning first=221 second=337 amount=-4 -kerning first=352 second=199 amount=3 -kerning first=225 second=287 amount=2 -kerning first=353 second=339 amount=1 -kerning first=356 second=119 amount=-5 -kerning first=8212 second=264 amount=5 -kerning first=376 second=276 amount=-4 -kerning first=294 second=68 amount=-6 -kerning first=209 second=80 amount=-2 -kerning first=357 second=289 amount=-8 -kerning first=360 second=69 amount=-6 -kerning first=75 second=105 amount=-7 -kerning first=338 second=302 amount=-1 -kerning first=119 second=339 amount=4 -kerning first=260 second=44 amount=-10 -kerning first=362 second=379 amount=4 -kerning first=280 second=201 amount=-5 -kerning first=195 second=213 amount=-11 -kerning first=300 second=328 amount=-2 -kerning first=346 second=202 amount=-3 -kerning first=196 second=353 amount=-11 -kerning first=222 second=70 amount=-7 -kerning first=262 second=354 amount=-2 -kerning first=285 second=291 amount=5 -kerning first=223 second=240 amount=2 -kerning first=328 second=355 amount=-1 -kerning first=243 second=367 amount=-2 -kerning first=266 second=304 amount=3 -kerning first=46 second=201 amount=-4 -kerning first=374 second=229 amount=-3 -kerning first=289 second=241 amount=2 -kerning first=204 second=253 amount=-2 -kerning first=89 second=265 amount=-4 -kerning first=375 second=369 amount=3 -kerning first=70 second=278 amount=-9 -kerning first=208 second=203 amount=-6 -kerning first=297 second=111 amount=1 -kerning first=74 second=228 amount=-5 -kerning first=160 second=304 amount=-4 -kerning first=360 second=332 amount=2 -kerning first=298 second=281 amount=-2 -kerning first=216 second=73 amount=3 -kerning first=121 second=242 amount=3 -kerning first=256 second=357 amount=-12 -kerning first=364 second=282 amount=-6 -kerning first=197 second=86 amount=-7 -kerning first=302 second=231 amount=-2 -kerning first=82 second=98 amount=-2 -kerning first=345 second=295 amount=-1 -kerning first=283 second=244 amount=1 -kerning first=198 second=256 amount=-6 -kerning first=83 second=268 amount=3 -kerning first=221 second=193 amount=-3 -kerning first=241 second=320 amount=-1 -kerning first=349 second=245 amount=1 -kerning first=225 second=113 amount=2 -kerning first=242 second=8211 amount=3 -kerning first=8212 second=90 amount=-4 -kerning first=268 second=207 amount=3 -kerning first=373 second=322 amount=2 -kerning first=376 second=102 amount=-4 -kerning first=291 second=114 amount=2 -kerning first=311 second=271 amount=2 -kerning first=88 second=358 amount=-2 -kerning first=354 second=335 amount=-7 -kerning first=357 second=115 amount=-8 -kerning first=269 second=347 amount=1 -kerning first=69 second=371 amount=-2 -kerning first=230 second=233 amount=1 -kerning first=115 second=245 amount=1 -kerning first=358 second=285 amount=-10 -kerning first=296 second=234 amount=-2 -kerning first=231 second=373 amount=-1 -kerning first=192 second=259 amount=-10 -kerning first=74 second=8212 amount=-3 -kerning first=77 second=271 amount=1 -kerning first=320 second=311 amount=-2 -kerning first=238 second=103 amount=2 -kerning first=343 second=248 amount=-2 -kerning first=258 second=260 amount=-7 -kerning first=58 second=284 amount=-3 -kerning first=196 second=209 amount=-15 -kerning first=304 second=104 amount=-2 -kerning first=239 second=273 amount=2 -kerning first=282 second=337 amount=-2 -kerning first=285 second=117 amount=2 -kerning first=197 second=349 amount=-11 -kerning first=243 second=223 amount=2 -kerning first=348 second=338 amount=3 -kerning first=351 second=118 amount=1 -kerning first=309 second=224 amount=2 -kerning first=86 second=311 amount=3 -kerning first=329 second=351 amount=1 -kerning first=244 second=363 amount=-2 -kerning first=352 second=288 amount=3 -kerning first=8211 second=213 amount=5 -kerning first=270 second=80 amount=-5 -kerning first=375 second=225 amount=7 -kerning first=70 second=104 amount=-2 -kerning first=205 second=249 amount=-2 -kerning first=356 second=238 amount=-2 -kerning first=8212 second=353 amount=4 -kerning first=376 second=365 amount=-5 -kerning first=71 second=274 amount=-2 -kerning first=209 second=199 amount=3 -kerning first=232 second=106 amount=-13 -kerning first=337 second=251 amount=-2 -kerning first=298 second=107 amount=-2 -kerning first=75 second=224 amount=-7 -kerning first=256 second=213 amount=-11 -kerning first=276 second=340 amount=-6 -kerning first=279 second=120 amount=-2 -kerning first=217 second=69 amount=-6 -kerning first=237 second=226 amount=2 -kerning first=257 second=353 amount=1 -kerning first=195 second=302 amount=-7 -kerning first=303 second=227 amount=2 -kerning first=323 second=354 amount=-6 -kerning first=103 second=251 amount=2 -kerning first=369 second=228 amount=2 -kerning first=304 second=367 amount=-2 -kerning first=84 second=264 amount=-2 -kerning first=219 second=379 amount=4 -kerning first=330 second=84 amount=-6 -kerning first=242 second=316 amount=-1 -kerning first=65 second=277 amount=-12 -kerning first=203 second=202 amount=-5 -kerning first=311 second=97 amount=2 -kerning first=88 second=214 amount=-4 -kerning first=331 second=254 amount=-1 -kerning first=111 second=121 amount=-2 -kerning first=374 second=318 amount=-2 -kerning first=46 second=290 amount=-3 -kerning first=204 second=342 amount=-2 -kerning first=312 second=267 amount=1 -kerning first=112 second=291 amount=5 -kerning first=358 second=111 amount=-7 -kerning first=70 second=367 amount=-3 -kerning first=231 second=229 amount=1 -kerning first=359 second=281 amount=1 -kerning first=192 second=85 amount=-7 -kerning first=77 second=97 amount=1 -kerning first=97 second=254 amount=-1 -kerning first=258 second=86 amount=-7 -kerning first=278 second=243 amount=-2 -kerning first=121 second=331 amount=3 -kerning first=59 second=280 amount=-4 -kerning first=197 second=205 amount=-7 -kerning first=302 second=320 amount=-2 -kerning first=305 second=100 amount=2 -kerning first=325 second=257 amount=2 -kerning first=240 second=269 amount=1 -kerning first=348 second=194 amount=-9 -kerning first=283 second=333 amount=1 -kerning first=221 second=282 amount=-4 -kerning first=372 second=271 amount=2 -kerning first=287 second=283 amount=2 -kerning first=90 second=87 amount=3 -kerning first=245 second=359 amount=-1 -kerning first=8212 second=209 amount=-2 -kerning first=268 second=296 amount=3 -kerning first=291 second=233 amount=2 -kerning first=71 second=100 amount=5 -kerning first=206 second=245 amount=-2 -kerning first=357 second=234 amount=-9 -kerning first=72 second=270 amount=-6 -kerning first=230 second=322 amount=-1 -kerning first=118 second=114 amount=2 -kerning first=299 second=103 amount=2 -kerning first=342 second=197 amount=3 -kerning first=365 second=104 amount=-1 -kerning first=192 second=348 amount=-8 -kerning first=323 second=210 amount=3 -kerning first=343 second=337 amount=-2 -kerning first=258 second=349 amount=-11 -kerning first=366 second=274 amount=-6 -kerning first=284 second=66 amount=-2 -kerning first=196 second=298 amount=-7 -kerning first=199 second=78 amount=4 -kerning first=84 second=90 amount=-2 -kerning first=347 second=287 amount=3 -kerning first=350 second=67 amount=3 -kerning first=370 second=224 amount=2 -kerning first=285 second=236 amount=3 -kerning first=65 second=103 amount=-10 -kerning first=200 second=248 amount=-2 -kerning first=243 second=312 amount=-2 -kerning first=351 second=237 amount=1 -kerning first=66 second=273 amount=3 -kerning first=89 second=210 amount=-1 -kerning first=112 second=117 amount=2 -kerning first=8211 second=302 amount=-5 -kerning first=270 second=199 amount=4 -kerning first=70 second=223 amount=3 -kerning first=90 second=350 amount=2 -kerning first=113 second=287 amount=2 -kerning first=356 second=327 amount=-1 -kerning first=359 second=107 amount=-1 -kerning first=271 second=339 amount=-9 -kerning first=274 second=119 amount=-2 -kerning first=294 second=276 amount=-6 -kerning first=71 second=363 amount=2 -kerning first=209 second=288 amount=3 -kerning first=232 second=225 amount=2 -kerning first=340 second=120 amount=-2 -kerning first=275 second=289 amount=2 -kerning first=278 second=69 amount=-5 -kerning first=193 second=81 amount=-11 -kerning first=75 second=313 amount=-3 -kerning first=318 second=353 amount=-8 -kerning first=98 second=250 amount=2 -kerning first=344 second=70 amount=-8 -kerning first=256 second=302 amount=-7 -kerning first=364 second=227 amount=2 -kerning first=59 second=106 amount=-11 -kerning first=345 second=240 amount=-2 -kerning first=198 second=201 amount=-2 -kerning first=83 second=213 amount=3 -kerning first=221 second=108 amount=-2 -kerning first=106 second=120 amount=-3 -kerning first=244 second=45 amount=3 -kerning first=264 second=202 amount=-2 -kerning first=372 second=97 amount=2 -kerning first=44 second=69 amount=-4 -kerning first=287 second=109 amount=2 -kerning first=202 second=121 amount=-3 -kerning first=84 second=353 amount=-10 -kerning first=222 second=278 amount=-9 -kerning first=330 second=203 amount=-6 -kerning first=353 second=110 amount=1 -kerning first=45 second=239 amount=2 -kerning first=373 second=267 amount=4 -kerning first=226 second=228 amount=2 -kerning first=246 second=355 amount=-1 -kerning first=354 second=280 amount=-8 -kerning first=292 second=229 amount=2 -kerning first=207 second=241 amount=-2 -kerning first=335 second=293 amount=-1 -kerning first=338 second=73 amount=-1 -kerning first=358 second=230 amount=-9 -kerning first=273 second=242 amount=1 -kerning first=231 second=318 amount=-1 -kerning first=234 second=98 amount=-1 -kerning first=339 second=243 amount=1 -kerning first=119 second=110 amount=2 -kerning first=192 second=204 amount=-7 -kerning first=300 second=99 amount=-2 -kerning first=77 second=216 amount=3 -kerning first=258 second=205 amount=-7 -kerning first=363 second=320 amount=-1 -kerning first=366 second=100 amount=2 -kerning first=193 second=344 amount=-17 -kerning first=301 second=269 amount=1 -kerning first=78 second=356 amount=-6 -kerning first=101 second=293 amount=-1 -kerning first=344 second=333 amount=-2 -kerning first=347 second=113 amount=3 -kerning first=282 second=282 amount=-5 -kerning first=85 second=86 amount=2 -kerning first=105 second=243 amount=1 -kerning first=263 second=295 amount=-1 -kerning first=66 second=99 amount=2 -kerning first=201 second=244 amount=-2 -kerning first=86 second=256 amount=-3 -kerning first=221 second=371 amount=-5 -kerning first=106 second=383 amount=1 -kerning first=267 second=245 amount=-1 -kerning first=44 second=332 amount=-3 -kerning first=113 second=113 amount=2 -kerning first=353 second=373 amount=1 -kerning first=8212 second=298 amount=-5 -kerning first=291 second=322 amount=2 -kerning first=229 second=271 amount=2 -kerning first=114 second=283 amount=-2 -kerning first=160 second=75 amount=-3 -kerning first=360 second=103 amount=2 -kerning first=275 second=115 amount=1 -kerning first=341 second=116 amount=-1 -kerning first=118 second=233 amount=4 -kerning first=361 second=273 amount=2 -kerning first=194 second=77 amount=-8 -kerning first=99 second=246 amount=-1 -kerning first=119 second=373 amount=3 -kerning first=260 second=78 amount=-15 -kerning first=365 second=223 amount=4 -kerning first=304 second=312 amount=-2 -kerning first=84 second=209 amount=-1 -kerning first=45 second=65 amount=-13 -kerning first=65 second=222 amount=-17 -kerning first=200 second=337 amount=-2 -kerning first=203 second=117 amount=-2 -kerning first=351 second=326 amount=1 -kerning first=354 second=106 amount=-13 -kerning first=269 second=118 amount=-1 -kerning first=374 second=263 amount=-4 -kerning first=289 second=275 amount=2 -kerning first=227 second=224 amount=2 -kerning first=335 second=119 amount=-2 -kerning first=112 second=236 amount=2 -kerning first=270 second=288 amount=4 -kerning first=70 second=312 amount=-2 -kerning first=359 second=226 amount=2 -kerning first=209 second=377 amount=4 -kerning first=232 second=314 amount=-1 -kerning first=120 second=106 amount=-9 -kerning first=160 second=338 amount=-3 -kerning first=193 second=200 amount=-10 -kerning first=78 second=212 amount=3 -kerning first=98 second=339 amount=2 -kerning first=194 second=340 amount=-17 -kerning first=197 second=120 amount=-14 -kerning first=302 second=265 amount=-2 -kerning first=325 second=202 amount=-6 -kerning first=102 second=289 amount=-6 -kerning first=260 second=341 amount=-12 -kerning first=263 second=121 amount=-1 -kerning first=368 second=266 amount=2 -kerning first=198 second=290 amount=-7 -kerning first=201 second=70 amount=-6 -kerning first=221 second=227 amount=-3 -kerning first=349 second=279 amount=1 -kerning first=352 second=59 amount=-4 -kerning first=287 second=228 amount=5 -kerning first=222 second=367 amount=2 -kerning first=353 second=229 amount=3 -kerning first=45 second=328 amount=2 -kerning first=71 second=45 amount=4 -kerning first=229 second=97 amount=2 -kerning first=111 second=329 amount=-3 -kerning first=354 second=369 amount=-6 -kerning first=295 second=98 amount=-1 -kerning first=230 second=267 amount=1 -kerning first=115 second=279 amount=1 -kerning first=358 second=319 amount=-1 -kerning first=276 second=111 amount=-2 -kerning first=73 second=355 amount=-2 -kerning first=119 second=229 amount=5 -kerning first=277 second=281 amount=1 -kerning first=192 second=293 amount=-12 -kerning first=195 second=73 amount=-7 -kerning first=77 second=305 amount=1 -kerning first=100 second=242 amount=1 -kerning first=235 second=357 amount=-1 -kerning first=281 second=231 amount=1 -kerning first=196 second=243 amount=-12 -kerning first=324 second=295 amount=-1 -kerning first=347 second=232 amount=1 -kerning first=367 second=359 amount=-1 -kerning first=282 second=371 amount=-2 -kerning first=223 second=100 amount=2 -kerning first=371 second=309 amount=-10 -kerning first=289 second=101 amount=2 -kerning first=201 second=333 amount=-2 -kerning first=86 second=345 amount=3 -kerning first=375 second=259 amount=7 -kerning first=287 second=8212 amount=4 -kerning first=67 second=358 amount=-2 -kerning first=205 second=283 amount=-2 -kerning first=113 second=232 amount=1 -kerning first=356 second=272 amount=-8 -kerning first=340 second=65 amount=3 -kerning first=160 second=194 amount=-3 -kerning first=275 second=234 amount=1 -kerning first=360 second=222 amount=-2 -kerning first=75 second=258 amount=-3 -kerning first=341 second=235 amount=-2 -kerning first=118 second=322 amount=2 -kerning first=121 second=102 amount=4 -kerning first=194 second=196 amount=-7 -kerning first=217 second=103 amount=2 -kerning first=99 second=335 amount=-1 -kerning first=102 second=115 amount=-7 -kerning first=260 second=197 amount=-7 -kerning first=280 second=324 amount=-2 -kerning first=283 second=104 amount=-1 -kerning first=195 second=336 amount=-11 -kerning first=198 second=116 amount=-2 -kerning first=218 second=273 amount=2 -kerning first=103 second=285 amount=5 -kerning first=349 second=105 amount=1 -kerning first=284 second=274 amount=-2 -kerning first=202 second=66 amount=-5 -kerning first=84 second=298 amount=-2 -kerning first=222 second=223 amount=3 -kerning first=327 second=338 amount=3 -kerning first=107 second=235 amount=1 -kerning first=265 second=287 amount=1 -kerning first=65 second=311 amount=-12 -kerning first=88 second=248 amount=-2 -kerning first=354 second=225 amount=-10 -kerning first=374 second=352 amount=-4 -kerning first=335 second=238 amount=-2 -kerning first=115 second=105 amount=1 -kerning first=53 second=54 amount=1 -kerning first=277 second=107 amount=-1 -kerning first=192 second=119 amount=-13 -kerning first=343 second=108 amount=-1 -kerning first=120 second=225 amount=2 -kerning first=258 second=120 amount=-14 -kerning first=193 second=289 amount=-10 -kerning first=196 second=69 amount=-10 -kerning first=236 second=353 amount=1 -kerning first=121 second=365 amount=3 -kerning first=262 second=70 amount=-2 -kerning first=302 second=354 amount=-2 -kerning first=325 second=291 amount=2 -kerning first=263 second=240 amount=1 -kerning first=198 second=379 amount=-3 -kerning first=221 second=316 amount=-2 -kerning first=109 second=108 amount=-1 -kerning first=244 second=253 amount=-2 -kerning first=8211 second=73 amount=-5 -kerning first=205 second=109 amount=-2 -kerning first=330 second=381 amount=4 -kerning first=353 second=318 amount=1 -kerning first=356 second=98 amount=-3 -kerning first=268 second=330 amount=4 -kerning first=271 second=110 amount=-9 -kerning first=8212 second=243 amount=4 -kerning first=291 second=267 amount=2 -kerning first=68 second=354 amount=-6 -kerning first=206 second=279 amount=-2 -kerning first=114 second=228 amount=-2 -kerning first=272 second=280 amount=-6 -kerning first=75 second=84 amount=-9 -kerning first=315 second=344 amount=-4 -kerning first=256 second=73 amount=-7 -kerning first=296 second=357 amount=-2 -kerning first=119 second=318 amount=5 -kerning first=362 second=358 amount=-6 -kerning first=195 second=192 amount=-7 -kerning first=300 second=307 amount=-2 -kerning first=103 second=111 amount=2 -kerning first=281 second=320 amount=-1 -kerning first=196 second=332 amount=-11 -kerning first=265 second=113 amount=1 -kerning first=200 second=282 amount=-5 -kerning first=108 second=231 amount=1 -kerning first=348 second=8212 amount=4 -kerning first=351 second=271 amount=3 -kerning first=374 second=208 amount=-4 -kerning first=204 second=232 amount=-2 -kerning first=224 second=359 amount=-1 -kerning first=8211 second=336 amount=5 -kerning first=70 second=257 amount=-3 -kerning first=228 second=309 amount=-10 -kerning first=356 second=361 amount=-6 -kerning first=271 second=373 amount=-10 -kerning first=232 second=259 amount=2 -kerning first=117 second=271 amount=2 -kerning first=193 second=115 amount=-11 -kerning first=75 second=347 amount=-8 -kerning first=344 second=104 amount=-2 -kerning first=256 second=336 amount=-11 -kerning first=259 second=116 amount=-1 -kerning first=279 second=273 amount=2 -kerning first=194 second=285 amount=-10 -kerning first=197 second=65 amount=-7 -kerning first=217 second=222 amount=-2 -kerning first=102 second=234 amount=-8 -kerning first=237 second=349 amount=1 -kerning first=260 second=286 amount=-11 -kerning first=368 second=211 amount=2 -kerning first=283 second=223 amount=4 -kerning first=198 second=235 amount=-5 -kerning first=326 second=287 amount=2 -kerning first=349 second=224 amount=3 -kerning first=369 second=351 amount=1 -kerning first=110 second=104 amount=-1 -kerning first=245 second=249 amount=-2 -kerning first=8212 second=69 amount=-7 -kerning first=45 second=273 amount=4 -kerning first=373 second=301 amount=2 -kerning first=376 second=81 amount=-1 -kerning first=68 second=210 amount=4 -kerning first=206 second=105 amount=-2 -kerning first=88 second=337 amount=-2 -kerning first=354 second=314 amount=-3 -kerning first=272 second=106 amount=-12 -kerning first=207 second=275 amount=-2 -kerning first=115 second=224 amount=3 -kerning first=358 second=264 amount=-2 -kerning first=76 second=80 amount=-4 -kerning first=339 second=277 amount=1 -kerning first=254 second=289 amount=5 -kerning first=362 second=214 amount=2 -kerning first=277 second=226 amount=2 -kerning first=297 second=353 amount=1 -kerning first=323 second=70 amount=-2 -kerning first=343 second=227 amount=-2 -kerning first=120 second=314 amount=-1 -kerning first=324 second=240 amount=2 -kerning first=104 second=107 amount=-1 -kerning first=370 second=84 amount=-6 -kerning first=197 second=328 amount=-13 -kerning first=82 second=340 amount=-8 -kerning first=85 second=120 amount=-2 -kerning first=105 second=277 amount=1 -kerning first=351 second=97 amount=3 -kerning first=263 second=329 amount=-4 -kerning first=371 second=254 amount=-1 -kerning first=201 second=278 amount=-5 -kerning first=86 second=290 amount=5 -kerning first=89 second=70 amount=-1 -kerning first=109 second=227 amount=2 -kerning first=8211 second=192 amount=-13 -kerning first=270 second=59 amount=-3 -kerning first=225 second=355 amount=-1 -kerning first=8212 second=332 amount=5 -kerning first=271 second=229 amount=-8 -kerning first=376 second=344 amount=-1 -kerning first=117 second=97 amount=2 -kerning first=75 second=203 amount=-9 -kerning first=318 second=243 amount=-9 -kerning first=98 second=110 amount=2 -kerning first=118 second=267 amount=4 -kerning first=256 second=192 amount=-7 -kerning first=364 second=87 amount=2 -kerning first=279 second=99 amount=1 -kerning first=194 second=111 amount=-12 -kerning first=342 second=320 amount=-2 -kerning first=345 second=100 amount=-2 -kerning first=365 second=257 amount=2 -kerning first=195 second=281 amount=-12 -kerning first=326 second=113 amount=2 -kerning first=103 second=230 amount=2 -kerning first=346 second=270 amount=-3 -kerning first=84 second=243 amount=-7 -kerning first=219 second=358 amount=-6 -kerning first=242 second=295 amount=-1 -kerning first=45 second=99 amount=4 -kerning first=285 second=359 amount=2 -kerning first=65 second=256 amount=-7 -kerning first=200 second=371 amount=-2 -kerning first=88 second=193 amount=-5 -kerning first=207 second=101 amount=-2 -kerning first=312 second=246 amount=1 -kerning first=89 second=333 amount=-4 -kerning first=358 second=90 amount=-2 -kerning first=208 second=271 amount=2 -kerning first=339 second=103 amount=2 -kerning first=254 second=115 amount=2 -kerning first=274 second=272 amount=-5 -kerning first=320 second=116 amount=-2 -kerning first=258 second=65 amount=-7 -kerning first=278 second=222 amount=-6 -kerning first=193 second=234 amount=-12 -kerning first=298 second=349 amount=-2 -kerning first=98 second=373 amount=2 -kerning first=302 second=299 amount=-2 -kerning first=82 second=196 amount=3 -kerning first=105 second=103 amount=2 -kerning first=240 second=248 amount=1 -kerning first=260 second=375 amount=-4 -kerning first=198 second=324 amount=-6 -kerning first=83 second=336 amount=3 -kerning first=86 second=116 amount=3 -kerning first=106 second=273 amount=2 -kerning first=264 second=325 amount=4 -kerning first=44 second=222 amount=-4 -kerning first=202 second=274 amount=-5 -kerning first=87 second=286 amount=2 -kerning first=333 second=106 amount=-13 -kerning first=110 second=223 amount=4 -kerning first=248 second=118 amount=-2 -kerning first=353 second=263 amount=1 -kerning first=376 second=200 amount=-4 -kerning first=45 second=362 amount=5 -kerning first=311 second=339 amount=1 -kerning first=226 second=351 amount=1 -kerning first=111 second=363 amount=-2 -kerning first=272 second=225 amount=2 -kerning first=358 second=353 amount=-10 -kerning first=99 second=106 amount=-11 -kerning first=119 second=263 amount=4 -kerning first=192 second=327 amount=-15 -kerning first=195 second=107 amount=-12 -kerning first=300 second=252 amount=-2 -kerning first=80 second=119 amount=1 -kerning first=343 second=316 amount=-1 -kerning first=258 second=328 amount=-13 -kerning first=261 second=108 amount=-1 -kerning first=281 second=265 amount=1 -kerning first=196 second=277 amount=-12 -kerning first=84 second=69 amount=-8 -kerning first=324 second=329 amount=-3 -kerning first=104 second=226 amount=2 -kerning first=242 second=121 amount=-2 -kerning first=350 second=46 amount=-4 -kerning first=262 second=278 amount=-2 -kerning first=370 second=203 amount=-6 -kerning first=65 second=82 amount=-17 -kerning first=220 second=354 amount=-6 -kerning first=286 second=355 amount=2 -kerning first=201 second=367 amount=-2 -kerning first=109 second=316 amount=-1 -kerning first=352 second=356 amount=-3 -kerning first=8211 second=281 amount=4 -kerning first=70 second=202 amount=-9 -kerning first=208 second=97 amount=2 -kerning first=90 second=329 amount=-6 -kerning first=228 second=254 amount=-1 -kerning first=333 second=369 amount=-2 -kerning first=71 second=342 amount=-4 -kerning first=98 second=229 amount=5 -kerning first=341 second=269 amount=-2 -kerning first=256 second=281 amount=-12 -kerning first=194 second=230 amount=-10 -kerning first=280 second=358 amount=-5 -kerning first=83 second=192 amount=-9 -kerning first=106 second=99 amount=1 -kerning first=199 second=320 amount=2 -kerning first=307 second=245 amount=1 -kerning first=84 second=332 amount=-2 -kerning first=107 second=269 amount=1 -kerning first=373 second=246 amount=4 -kerning first=65 second=345 amount=-12 -kerning first=203 second=270 amount=-5 -kerning first=88 second=282 amount=-2 -kerning first=331 second=322 amount=-1 -kerning first=354 second=259 amount=-10 -kerning first=269 second=271 amount=1 -kerning first=46 second=358 amount=-10 -kerning first=292 second=208 amount=-6 -kerning first=312 second=335 amount=1 -kerning first=227 second=347 amount=1 -kerning first=112 second=359 amount=3 -kerning first=358 second=209 amount=-1 -kerning first=73 second=245 amount=-2 -kerning first=316 second=285 amount=2 -kerning first=116 second=309 amount=-12 -kerning first=254 second=234 amount=2 -kerning first=359 second=349 amount=1 -kerning first=274 second=361 amount=-2 -kerning first=320 second=235 amount=-1 -kerning first=97 second=322 amount=-1 -kerning first=120 second=259 amount=2 -kerning first=366 second=79 amount=2 -kerning first=58 second=208 amount=-3 -kerning first=193 second=323 amount=-15 -kerning first=196 second=103 amount=-10 -kerning first=301 second=248 amount=1 -kerning first=344 second=312 amount=-2 -kerning first=262 second=104 amount=2 -kerning first=197 second=273 amount=-10 -kerning first=240 second=337 amount=1 -kerning first=243 second=117 amount=-2 -kerning first=348 second=262 amount=3 -kerning first=201 second=223 amount=3 -kerning first=86 second=235 amount=3 -kerning first=221 second=350 amount=-4 -kerning first=352 second=212 amount=3 -kerning first=267 second=224 amount=1 -kerning first=375 second=119 amount=3 -kerning first=287 second=351 amount=2 -kerning first=202 second=363 amount=-2 -kerning first=248 second=237 amount=-2 -kerning first=8212 second=277 amount=4 -kerning first=376 second=289 amount=-3 -kerning first=291 second=301 amount=3 -kerning first=71 second=198 amount=-5 -kerning first=360 second=82 amount=-2 -kerning first=75 second=118 amount=-10 -kerning first=256 second=107 amount=-12 -kerning first=99 second=225 amount=1 -kerning first=195 second=226 amount=-10 -kerning first=80 second=238 amount=1 -kerning first=323 second=278 amount=-6 -kerning first=261 second=227 amount=2 -kerning first=366 second=342 amount=-2 -kerning first=327 second=228 amount=2 -kerning first=347 second=355 amount=1 -kerning first=65 second=201 amount=-10 -kerning first=108 second=265 amount=1 -kerning first=111 second=45 amount=3 -kerning first=354 second=85 amount=-1 -kerning first=269 second=97 amount=1 -kerning first=46 second=214 amount=-3 -kerning first=374 second=242 amount=-4 -kerning first=289 second=254 amount=3 -kerning first=69 second=121 amount=-3 -kerning first=89 second=278 amount=-4 -kerning first=335 second=98 amount=-1 -kerning first=8211 second=370 amount=5 -kerning first=70 second=291 amount=-3 -kerning first=208 second=216 amount=4 -kerning first=316 second=111 amount=1 -kerning first=113 second=355 amount=-1 -kerning first=294 second=344 amount=-2 -kerning first=209 second=356 amount=-6 -kerning first=232 second=293 amount=-1 -kerning first=275 second=357 amount=-1 -kerning first=98 second=318 amount=3 -kerning first=101 second=98 amount=-1 -kerning first=236 second=243 amount=1 -kerning first=194 second=319 amount=-7 -kerning first=197 second=99 amount=-12 -kerning first=302 second=244 amount=-2 -kerning first=82 second=111 amount=-2 -kerning first=260 second=320 amount=-12 -kerning first=263 second=100 amount=1 -kerning first=283 second=257 amount=2 -kerning first=198 second=269 amount=-5 -kerning first=264 second=270 amount=-2 -kerning first=330 second=271 amount=2 -kerning first=8212 second=103 amount=4 -kerning first=45 second=307 amount=2 -kerning first=373 second=335 amount=4 -kerning first=376 second=115 amount=-4 -kerning first=88 second=371 amount=-3 -kerning first=354 second=348 amount=-6 -kerning first=207 second=309 amount=-14 -kerning first=230 second=246 amount=1 -kerning first=335 second=361 amount=-2 -kerning first=358 second=298 amount=-2 -kerning first=339 second=311 amount=-1 -kerning first=257 second=103 amount=2 -kerning first=192 second=272 amount=-10 -kerning first=77 second=284 amount=3 -kerning first=343 second=261 amount=-2 -kerning first=258 second=273 amount=-10 -kerning first=196 second=222 amount=-17 -kerning first=301 second=337 amount=1 -kerning first=304 second=117 amount=-2 -kerning first=262 second=223 amount=3 -kerning first=305 second=287 amount=2 -kerning first=328 second=224 amount=2 -kerning first=243 second=236 amount=-2 -kerning first=374 second=68 amount=-4 -kerning first=286 second=300 amount=3 -kerning first=66 second=197 amount=-5 -kerning first=86 second=324 amount=2 -kerning first=89 second=104 amount=-2 -kerning first=8211 second=226 amount=4 -kerning first=375 second=238 amount=3 -kerning first=70 second=117 amount=-3 -kerning first=333 second=314 amount=-1 -kerning first=248 second=326 amount=-2 -kerning first=8212 second=366 amount=5 -kerning first=271 second=263 amount=-9 -kerning first=294 second=200 amount=-6 -kerning first=71 second=287 amount=5 -kerning first=209 second=212 amount=3 -kerning first=114 second=351 amount=-2 -kerning first=360 second=201 amount=-6 -kerning first=298 second=120 amount=-1 -kerning first=75 second=237 amount=-7 -kerning first=318 second=277 amount=-9 -kerning first=233 second=289 amount=2 -kerning first=118 second=301 amount=2 -kerning first=256 second=226 amount=-10 -kerning first=302 second=70 amount=-2 -kerning first=76 second=377 amount=2 -kerning first=214 second=302 amount=3 -kerning first=217 second=82 amount=-2 -kerning first=99 second=314 amount=-1 -kerning first=342 second=354 amount=-8 -kerning first=365 second=291 amount=2 -kerning first=368 second=71 amount=2 -kerning first=195 second=315 amount=-7 -kerning first=303 second=240 amount=2 -kerning first=261 second=316 amount=-1 -kerning first=84 second=277 amount=-7 -kerning first=222 second=202 amount=-9 -kerning first=330 second=97 amount=2 -kerning first=242 second=329 amount=-3 -kerning first=245 second=109 amount=-2 -kerning first=370 second=381 amount=4 -kerning first=65 second=290 amount=-11 -kerning first=68 second=70 amount=-5 -kerning first=354 second=204 amount=-2 -kerning first=374 second=331 amount=-5 -kerning first=204 second=355 amount=-2 -kerning first=89 second=367 amount=-5 -kerning first=270 second=356 amount=-6 -kerning first=378 second=281 amount=1 -kerning first=70 second=380 amount=-6 -kerning first=231 second=242 amount=-1 -kerning first=192 second=98 amount=-12 -kerning first=258 second=99 amount=-12 -kerning first=193 second=268 amount=-11 -kerning first=78 second=280 amount=-6 -kerning first=216 second=205 amount=3 -kerning first=324 second=100 amount=2 -kerning first=302 second=333 amount=-2 -kerning first=82 second=230 amount=-2 -kerning first=305 second=113 amount=2 -kerning first=325 second=270 amount=-6 -kerning first=368 second=334 amount=2 -kerning first=198 second=358 amount=-2 -kerning first=264 second=359 amount=2 -kerning first=205 second=88 amount=2 -kerning first=110 second=257 amount=2 -kerning first=353 second=297 amount=1 -kerning first=356 second=77 amount=-7 -kerning first=8212 second=222 amount=-8 -kerning first=376 second=234 amount=-4 -kerning first=291 second=246 amount=2 -kerning first=71 second=113 amount=5 -kerning first=88 second=8211 amount=-8 -kerning first=272 second=259 amount=2 -kerning first=318 second=103 amount=-8 -kerning first=230 second=335 amount=1 -kerning first=233 second=115 amount=1 -kerning first=234 second=285 amount=2 -kerning first=119 second=297 amount=2 -kerning first=277 second=349 amount=1 -kerning first=192 second=361 amount=-13 -kerning first=323 second=223 amount=2 -kerning first=366 second=287 amount=2 -kerning first=196 second=311 amount=-12 -kerning first=84 second=103 amount=-10 -kerning first=304 second=236 amount=-2 -kerning first=350 second=80 amount=-3 -kerning first=262 second=312 amount=2 -kerning first=285 second=249 amount=2 -kerning first=65 second=116 amount=-12 -kerning first=85 second=273 amount=2 -kerning first=246 second=105 amount=-2 -kerning first=351 second=250 amount=1 -kerning first=66 second=286 amount=3 -kerning first=69 second=66 amount=-5 -kerning first=312 second=106 amount=-12 -kerning first=8211 second=315 amount=3 -kerning first=270 second=212 amount=4 -kerning first=70 second=236 amount=-4 -kerning first=205 second=351 amount=-2 -kerning first=356 second=340 amount=-5 -kerning first=359 second=120 amount=2 -kerning first=294 second=289 amount=2 -kerning first=360 second=290 amount=2 -kerning first=160 second=262 amount=-3 -kerning first=278 second=82 amount=-6 -kerning first=298 second=239 amount=-2 -kerning first=75 second=326 amount=-8 -kerning first=78 second=106 amount=-12 -kerning first=98 second=263 amount=2 -kerning first=256 second=315 amount=-7 -kerning first=364 second=240 amount=2 -kerning first=194 second=264 amount=-11 -kerning first=197 second=44 amount=-10 -kerning first=217 second=201 amount=-6 -kerning first=240 second=108 amount=-1 -kerning first=198 second=214 amount=-7 -kerning first=303 second=329 amount=-2 -kerning first=221 second=121 amount=-5 -kerning first=103 second=353 amount=2 -kerning first=44 second=82 amount=-4 -kerning first=284 second=342 amount=-4 -kerning first=199 second=354 amount=-2 -kerning first=307 second=279 amount=1 -kerning first=222 second=291 amount=2 -kerning first=330 second=216 amount=3 -kerning first=265 second=355 amount=-1 -kerning first=45 second=252 amount=2 -kerning first=65 second=379 amount=-7 -kerning first=206 second=84 amount=-2 -kerning first=311 second=229 amount=2 -kerning first=111 second=253 amount=-2 -kerning first=354 second=293 amount=-3 -kerning first=272 second=85 amount=2 -kerning first=207 second=254 amount=-2 -kerning first=358 second=243 amount=-7 -kerning first=73 second=279 amount=-2 -kerning first=211 second=204 amount=3 -kerning first=234 second=111 amount=1 -kerning first=300 second=112 amount=-2 -kerning first=77 second=229 amount=1 -kerning first=320 second=269 amount=-1 -kerning first=120 second=293 amount=-1 -kerning first=366 second=113 amount=2 -kerning first=193 second=357 amount=-12 -kerning first=82 second=319 amount=3 -kerning first=266 second=88 amount=1 -kerning first=86 second=269 amount=3 -kerning first=329 second=309 amount=-10 -kerning first=67 second=282 amount=-2 -kerning first=245 second=8212 amount=3 -kerning first=356 second=196 amount=-13 -kerning first=291 second=335 amount=2 -kerning first=71 second=232 amount=3 -kerning first=206 second=347 amount=-2 -kerning first=295 second=285 amount=2 -kerning first=233 second=234 amount=1 -kerning first=118 second=246 amount=4 -kerning first=364 second=66 amount=-6 -kerning first=194 second=90 amount=-7 -kerning first=99 second=259 amount=1 -kerning first=257 second=311 amount=-1 -kerning first=280 second=248 amount=-2 -kerning first=195 second=260 amount=-7 -kerning first=300 second=375 amount=-2 -kerning first=80 second=272 amount=-9 -kerning first=241 second=104 amount=-1 -kerning first=84 second=222 amount=-5 -kerning first=222 second=117 amount=2 -kerning first=327 second=262 amount=3 -kerning first=104 second=349 amount=1 -kerning first=350 second=199 amount=3 -kerning first=373 second=106 amount=-9 -kerning first=45 second=78 amount=-2 -kerning first=65 second=235 amount=-12 -kerning first=223 second=287 amount=2 -kerning first=351 second=339 amount=1 -kerning first=354 second=119 amount=-5 -kerning first=374 second=276 amount=-4 -kerning first=292 second=68 amount=-6 -kerning first=207 second=80 amount=-2 -kerning first=312 second=225 amount=2 -kerning first=89 second=312 amount=-2 -kerning first=112 second=249 amount=2 -kerning first=355 second=289 amount=2 -kerning first=358 second=69 amount=-8 -kerning first=73 second=105 amount=-2 -kerning first=336 second=302 amount=3 -kerning first=74 second=275 amount=-5 -kerning first=235 second=107 amount=-1 -kerning first=258 second=44 amount=-10 -kerning first=360 second=379 amount=4 -kerning first=278 second=201 amount=-5 -kerning first=58 second=68 amount=-3 -kerning first=193 second=213 amount=-11 -kerning first=298 second=328 amount=-2 -kerning first=78 second=225 amount=2 -kerning first=236 second=277 amount=1 -kerning first=121 second=289 amount=7 -kerning first=282 second=121 amount=-3 -kerning first=194 second=353 amount=-11 -kerning first=220 second=70 amount=-2 -kerning first=240 second=227 amount=2 -kerning first=260 second=354 amount=-20 -kerning first=283 second=291 amount=2 -kerning first=198 second=303 amount=-7 -kerning first=221 second=240 amount=-3 -kerning first=326 second=355 amount=-1 -kerning first=264 second=304 amount=3 -kerning first=44 second=201 amount=-4 -kerning first=372 second=229 amount=2 -kerning first=287 second=241 amount=2 -kerning first=67 second=108 amount=2 -kerning first=90 second=45 amount=-6 -kerning first=353 second=242 amount=1 -kerning first=268 second=254 amount=2 -kerning first=373 second=369 amount=2 -kerning first=68 second=278 amount=-6 -kerning first=72 second=228 amount=2 -kerning first=338 second=205 amount=-1 -kerning first=358 second=332 amount=-2 -kerning first=296 second=281 amount=-2 -kerning first=214 second=73 amount=3 -kerning first=119 second=242 amount=4 -kerning first=254 second=357 amount=3 -kerning first=362 second=282 amount=-6 -kerning first=195 second=86 amount=-7 -kerning first=300 second=231 amount=-2 -kerning first=343 second=295 amount=-1 -kerning first=281 second=244 amount=1 -kerning first=196 second=256 amount=-7 -kerning first=327 second=88 amount=3 -kerning first=347 second=245 amount=1 -kerning first=223 second=113 amount=2 -kerning first=266 second=207 amount=3 -kerning first=371 second=322 amount=-1 -kerning first=374 second=102 amount=-4 -kerning first=289 second=114 amount=2 -kerning first=66 second=231 amount=2 -kerning first=309 second=271 amount=2 -kerning first=109 second=295 amount=-1 -kerning first=355 second=115 amount=1 -kerning first=8211 second=260 amount=-13 -kerning first=267 second=347 amount=1 -kerning first=113 second=245 amount=1 -kerning first=356 second=285 amount=-10 -kerning first=271 second=297 amount=-3 -kerning first=74 second=101 amount=-5 -kerning first=160 second=207 amount=-4 -kerning first=75 second=271 amount=-7 -kerning first=236 second=103 amount=2 -kerning first=341 second=248 amount=-2 -kerning first=118 second=335 amount=4 -kerning first=121 second=115 amount=2 -kerning first=256 second=260 amount=-7 -kerning first=194 second=209 amount=-15 -kerning first=302 second=104 amount=-2 -kerning first=237 second=273 amount=2 -kerning first=260 second=210 amount=-11 -kerning first=280 second=337 amount=-2 -kerning first=195 second=349 amount=-11 -kerning first=80 second=361 amount=1 -kerning first=346 second=338 amount=3 -kerning first=349 second=118 amount=1 -kerning first=307 second=224 amount=2 -kerning first=84 second=311 amount=-3 -kerning first=222 second=236 amount=2 -kerning first=107 second=248 amount=1 -kerning first=242 second=363 amount=-2 -kerning first=350 second=288 amount=3 -kerning first=268 second=80 amount=-2 -kerning first=45 second=197 amount=-13 -kerning first=373 second=225 amount=5 -kerning first=65 second=324 amount=-13 -kerning first=354 second=238 amount=-2 -kerning first=374 second=365 amount=-5 -kerning first=69 second=274 amount=-5 -kerning first=230 second=106 amount=-12 -kerning first=335 second=251 amount=-2 -kerning first=115 second=118 amount=1 -kerning first=296 second=107 amount=-2 -kerning first=274 second=340 amount=-6 -kerning first=277 second=120 amount=-2 -kerning first=235 second=226 amount=2 -kerning first=193 second=302 amount=-7 -kerning first=196 second=82 amount=-17 -kerning first=301 second=227 amount=2 -kerning first=367 second=228 amount=2 -kerning first=59 second=327 amount=-5 -kerning first=302 second=367 amount=-2 -kerning first=217 second=379 amount=4 -kerning first=240 second=316 amount=-1 -kerning first=201 second=202 amount=-5 -kerning first=309 second=97 amount=2 -kerning first=86 second=214 amount=5 -kerning first=221 second=329 amount=-6 -kerning first=329 second=254 amount=-1 -kerning first=8211 second=86 amount=3 -kerning first=44 second=290 amount=-3 -kerning first=202 second=342 amount=-6 -kerning first=87 second=354 amount=-6 -kerning first=110 second=291 amount=2 -kerning first=353 second=331 amount=1 -kerning first=356 second=111 amount=-7 -kerning first=8212 second=256 amount=-13 -kerning first=376 second=268 amount=-1 -kerning first=229 second=229 amount=2 -kerning first=357 second=281 amount=-9 -kerning first=295 second=230 amount=1 -kerning first=75 second=97 amount=-7 -kerning first=256 second=86 amount=-7 -kerning first=276 second=243 amount=-2 -kerning first=237 second=99 amount=1 -kerning first=119 second=331 amount=2 -kerning first=195 second=205 amount=-7 -kerning first=300 second=320 amount=-2 -kerning first=303 second=100 amount=2 -kerning first=323 second=257 amount=2 -kerning first=346 second=194 amount=-9 -kerning first=281 second=333 amount=1 -kerning first=196 second=345 amount=-12 -kerning first=219 second=282 amount=-6 -kerning first=370 second=271 amount=2 -kerning first=285 second=283 amount=2 -kerning first=223 second=232 amount=1 -kerning first=328 second=347 amount=1 -kerning first=108 second=244 amount=1 -kerning first=243 second=359 amount=-1 -kerning first=266 second=296 amount=3 -kerning first=289 second=233 amount=2 -kerning first=204 second=245 amount=-2 -kerning first=89 second=257 amount=-3 -kerning first=355 second=234 amount=1 -kerning first=8211 second=349 amount=4 -kerning first=375 second=361 amount=3 -kerning first=70 second=270 amount=-9 -kerning first=208 second=195 amount=-8 -kerning first=228 second=322 amount=-1 -kerning first=297 second=103 amount=2 -kerning first=340 second=197 amount=3 -kerning first=363 second=104 amount=-1 -kerning first=160 second=296 amount=-4 -kerning first=98 second=297 amount=2 -kerning first=341 second=337 amount=-2 -kerning first=121 second=234 amount=3 -kerning first=256 second=349 amount=-11 -kerning first=364 second=274 amount=-6 -kerning first=282 second=66 amount=-5 -kerning first=194 second=298 amount=-7 -kerning first=197 second=78 amount=-15 -kerning first=345 second=287 amount=-2 -kerning first=348 second=67 amount=3 -kerning first=368 second=224 amount=2 -kerning first=198 second=248 amount=-5 -kerning first=83 second=260 amount=-9 -kerning first=241 second=312 amount=-1 -kerning first=349 second=237 amount=1 -kerning first=87 second=210 amount=2 -kerning first=107 second=337 amount=1 -kerning first=8212 second=82 amount=-6 -kerning first=45 second=286 amount=5 -kerning first=373 second=314 amount=2 -kerning first=68 second=223 amount=2 -kerning first=206 second=118 amount=-2 -kerning first=311 second=263 amount=1 -kerning first=354 second=327 amount=-1 -kerning first=292 second=276 amount=-6 -kerning first=69 second=363 amount=-2 -kerning first=230 second=225 amount=2 -kerning first=115 second=237 amount=1 -kerning first=358 second=277 amount=-7 -kerning first=273 second=289 amount=2 -kerning first=276 second=69 amount=-5 -kerning first=316 second=353 amount=1 -kerning first=342 second=70 amount=-8 -kerning first=362 second=227 amount=2 -kerning first=343 second=240 amount=-2 -kerning first=58 second=276 amount=-4 -kerning first=196 second=201 amount=-10 -kerning first=242 second=45 amount=3 -kerning first=262 second=202 amount=-2 -kerning first=370 second=97 amount=2 -kerning first=285 second=109 amount=2 -kerning first=197 second=341 amount=-12 -kerning first=200 second=121 amount=-3 -kerning first=220 second=278 amount=-6 -kerning first=351 second=110 amount=1 -kerning first=86 second=303 amount=3 -kerning first=89 second=83 amount=-4 -kerning first=224 second=228 amount=2 -kerning first=109 second=240 amount=2 -kerning first=244 second=355 amount=-1 -kerning first=352 second=280 amount=-3 -kerning first=8211 second=205 amount=-5 -kerning first=67 second=316 amount=2 -kerning first=205 second=241 amount=-2 -kerning first=333 second=293 amount=-1 -kerning first=336 second=73 amount=3 -kerning first=356 second=230 amount=-9 -kerning first=271 second=242 amount=-9 -kerning first=376 second=357 amount=-2 -kerning first=291 second=369 amount=2 -kerning first=71 second=266 amount=3 -kerning first=74 second=46 amount=-5 -kerning first=229 second=318 amount=-1 -kerning first=232 second=98 amount=-1 -kerning first=298 second=99 amount=-2 -kerning first=75 second=216 amount=-8 -kerning first=256 second=205 amount=-7 -kerning first=361 second=320 amount=-1 -kerning first=364 second=100 amount=2 -kerning first=99 second=293 amount=-1 -kerning first=342 second=333 amount=-2 -kerning first=345 second=113 amount=-2 -kerning first=280 second=282 amount=-5 -kerning first=103 second=243 amount=2 -kerning first=261 second=295 amount=-1 -kerning first=304 second=359 amount=-2 -kerning first=84 second=256 amount=-13 -kerning first=265 second=245 amount=-1 -kerning first=45 second=112 amount=2 -kerning first=65 second=269 amount=-12 -kerning first=108 second=333 amount=1 -kerning first=351 second=373 amount=1 -kerning first=46 second=282 amount=-4 -kerning first=289 second=322 amount=2 -kerning first=207 second=114 amount=-2 -kerning first=312 second=259 amount=2 -kerning first=89 second=346 amount=-4 -kerning first=227 second=271 amount=2 -kerning first=112 second=283 amount=2 -kerning first=358 second=103 amount=-10 -kerning first=273 second=115 amount=1 -kerning first=70 second=359 amount=-2 -kerning first=208 second=284 amount=4 -kerning first=339 second=116 amount=-1 -kerning first=359 second=273 amount=2 -kerning first=192 second=77 amount=-8 -kerning first=258 second=78 amount=-15 -kerning first=363 second=223 amount=4 -kerning first=78 second=259 amount=2 -kerning first=59 second=272 amount=-3 -kerning first=197 second=197 amount=-7 -kerning first=302 second=312 amount=-2 -kerning first=198 second=337 amount=-5 -kerning first=201 second=117 amount=-2 -kerning first=221 second=274 amount=-4 -kerning first=349 second=326 amount=1 -kerning first=352 second=106 amount=-11 -kerning first=267 second=118 amount=-1 -kerning first=287 second=275 amount=2 -kerning first=225 second=224 amount=2 -kerning first=333 second=119 amount=-2 -kerning first=8212 second=201 amount=-7 -kerning first=376 second=213 amount=-1 -kerning first=45 second=375 amount=2 -kerning first=291 second=225 amount=5 -kerning first=206 second=237 amount=-2 -kerning first=357 second=226 amount=-8 -kerning first=230 second=314 amount=-1 -kerning first=115 second=326 amount=1 -kerning first=118 second=106 amount=-9 -kerning first=99 second=119 amount=-1 -kerning first=192 second=340 amount=-17 -kerning first=195 second=120 amount=-14 -kerning first=300 second=265 amount=-2 -kerning first=323 second=202 amount=-6 -kerning first=100 second=289 amount=2 -kerning first=258 second=341 amount=-12 -kerning first=366 second=266 amount=2 -kerning first=196 second=290 amount=-11 -kerning first=199 second=70 amount=-2 -kerning first=81 second=302 amount=3 -kerning first=84 second=82 amount=-5 -kerning first=219 second=227 amount=2 -kerning first=327 second=122 amount=3 -kerning first=347 second=279 amount=1 -kerning first=350 second=59 amount=-4 -kerning first=370 second=216 amount=2 -kerning first=285 second=228 amount=5 -kerning first=351 second=229 amount=3 -kerning first=66 second=265 amount=2 -kerning first=89 second=202 amount=-4 -kerning first=227 second=97 amount=2 -kerning first=109 second=329 amount=-3 -kerning first=112 second=109 amount=2 -kerning first=290 second=318 amount=2 -kerning first=90 second=342 amount=2 -kerning first=113 second=279 amount=1 -kerning first=356 second=319 amount=-1 -kerning first=359 second=99 amount=1 -kerning first=271 second=331 amount=-9 -kerning first=274 second=111 amount=-2 -kerning first=71 second=355 amount=2 -kerning first=209 second=280 amount=-6 -kerning first=117 second=229 amount=2 -kerning first=275 second=281 amount=1 -kerning first=193 second=73 amount=-7 -kerning first=75 second=305 amount=-7 -kerning first=318 second=345 amount=-9 -kerning first=98 second=242 amount=2 -kerning first=233 second=357 amount=-1 -kerning first=118 second=369 amount=2 -kerning first=279 second=231 amount=1 -kerning first=194 second=243 amount=-12 -kerning first=345 second=232 amount=-2 -kerning first=260 second=244 amount=-12 -kerning first=365 second=359 amount=-1 -kerning first=280 second=371 amount=-2 -kerning first=198 second=193 amount=-6 -kerning first=221 second=100 amount=-3 -kerning first=241 second=257 amount=2 -kerning first=369 second=309 amount=-10 -kerning first=287 second=101 amount=2 -kerning first=84 second=345 amount=-6 -kerning first=222 second=270 amount=-9 -kerning first=45 second=231 amount=4 -kerning first=373 second=259 amount=5 -kerning first=285 second=8212 amount=4 -kerning first=65 second=358 amount=-20 -kerning first=354 second=272 amount=-8 -kerning first=72 second=88 amount=3 -kerning first=207 second=233 amount=-2 -kerning first=358 second=222 amount=-5 -kerning first=339 second=235 amount=1 -kerning first=119 second=102 amount=2 -kerning first=57 second=51 amount=2 -kerning first=192 second=196 amount=-7 -kerning first=320 second=248 amount=-1 -kerning first=100 second=115 amount=1 -kerning first=258 second=197 amount=-7 -kerning first=278 second=324 amount=-2 -kerning first=281 second=104 amount=-1 -kerning first=193 second=336 amount=-11 -kerning first=196 second=116 amount=-12 -kerning first=101 second=285 amount=2 -kerning first=347 second=105 amount=1 -kerning first=282 second=274 amount=-5 -kerning first=197 second=286 amount=-11 -kerning first=200 second=66 amount=-5 -kerning first=220 second=223 amount=2 -kerning first=325 second=338 amount=3 -kerning first=105 second=235 amount=1 -kerning first=263 second=287 amount=1 -kerning first=86 second=248 amount=3 -kerning first=221 second=363 amount=-5 -kerning first=333 second=238 amount=-2 -kerning first=248 second=250 amount=-2 -kerning first=353 second=365 amount=1 -kerning first=8212 second=290 amount=5 -kerning first=51 second=54 amount=2 -kerning first=291 second=314 amount=2 -kerning first=206 second=326 amount=-2 -kerning first=209 second=106 amount=-12 -kerning first=114 second=275 amount=-2 -kerning first=160 second=67 amount=-3 -kerning first=275 second=107 amount=-1 -kerning first=341 second=108 amount=-1 -kerning first=118 second=225 amount=5 -kerning first=256 second=120 amount=-14 -kerning first=194 second=69 amount=-10 -kerning first=234 second=353 amount=1 -kerning first=345 second=58 amount=-7 -kerning first=119 second=365 amount=2 -kerning first=260 second=70 amount=-17 -kerning first=300 second=354 amount=-2 -kerning first=80 second=251 amount=1 -kerning first=323 second=291 amount=2 -kerning first=261 second=240 amount=2 -kerning first=196 second=379 amount=-7 -kerning first=84 second=201 amount=-8 -kerning first=242 second=253 amount=-2 -kerning first=65 second=214 amount=-11 -kerning first=203 second=109 amount=-2 -kerning first=351 second=318 amount=1 -kerning first=354 second=98 amount=-3 -kerning first=266 second=330 amount=4 -kerning first=289 second=267 amount=2 -kerning first=66 second=354 amount=-4 -kerning first=204 second=279 amount=-2 -kerning first=89 second=291 amount=-3 -kerning first=112 second=228 amount=5 -kerning first=270 second=280 amount=-6 -kerning first=73 second=84 amount=-2 -kerning first=208 second=229 amount=2 -kerning first=313 second=344 amount=-4 -kerning first=117 second=318 amount=-1 -kerning first=120 second=98 amount=-1 -kerning first=360 second=358 amount=-6 -kerning first=160 second=330 amount=-8 -kerning first=193 second=192 amount=-7 -kerning first=298 second=307 amount=-2 -kerning first=98 second=331 amount=2 -kerning first=101 second=111 amount=1 -kerning first=279 second=320 amount=-1 -kerning first=194 second=332 amount=-11 -kerning first=102 second=281 amount=-8 -kerning first=260 second=333 amount=-12 -kerning first=263 second=113 amount=1 -kerning first=198 second=282 amount=-2 -kerning first=106 second=231 amount=1 -kerning first=346 second=8212 amount=4 -kerning first=349 second=271 amount=3 -kerning first=372 second=208 amount=-6 -kerning first=67 second=87 amount=4 -kerning first=307 second=347 amount=1 -kerning first=330 second=284 amount=3 -kerning first=68 second=257 amount=2 -kerning first=226 second=309 amount=-10 -kerning first=114 second=101 amount=-2 -kerning first=354 second=361 amount=-6 -kerning first=269 second=373 amount=-1 -kerning first=207 second=322 amount=-2 -kerning first=230 second=259 amount=2 -kerning first=112 second=8212 amount=4 -kerning first=115 second=271 amount=3 -kerning first=358 second=311 amount=-3 -kerning first=73 second=347 amount=-2 -kerning first=342 second=104 amount=-2 -kerning first=257 second=116 amount=-1 -kerning first=277 second=273 amount=2 -kerning first=192 second=285 amount=-10 -kerning first=195 second=65 amount=-7 -kerning first=77 second=297 amount=1 -kerning first=320 second=337 amount=-1 -kerning first=100 second=234 amount=1 -kerning first=235 second=349 amount=1 -kerning first=258 second=286 amount=-11 -kerning first=366 second=211 amount=2 -kerning first=281 second=223 amount=4 -kerning first=196 second=235 amount=-12 -kerning first=324 second=287 amount=2 -kerning first=327 second=67 amount=3 -kerning first=347 second=224 amount=3 -kerning first=367 second=351 amount=1 -kerning first=282 second=363 amount=-2 -kerning first=197 second=375 amount=-4 -kerning first=243 second=249 amount=-2 -kerning first=374 second=81 amount=-1 -kerning first=204 second=105 amount=-2 -kerning first=86 second=337 amount=3 -kerning first=89 second=117 amount=-5 -kerning first=8211 second=239 amount=2 -kerning first=270 second=106 amount=-12 -kerning first=375 second=251 amount=3 -kerning first=205 second=275 amount=-2 -kerning first=113 second=224 amount=2 -kerning first=356 second=264 amount=-2 -kerning first=8212 second=379 amount=-4 -kerning first=71 second=300 amount=3 -kerning first=74 second=80 amount=-4 -kerning first=209 second=225 amount=2 -kerning first=360 second=214 amount=2 -kerning first=275 second=226 amount=2 -kerning first=295 second=353 amount=1 -kerning first=341 second=227 amount=-2 -kerning first=118 second=314 amount=2 -kerning first=368 second=84 amount=-6 -kerning first=195 second=328 amount=-13 -kerning first=198 second=108 amount=-2 -kerning first=80 second=340 amount=-7 -kerning first=103 second=277 amount=2 -kerning first=349 second=97 amount=3 -kerning first=261 second=329 amount=-3 -kerning first=369 second=254 amount=-1 -kerning first=199 second=278 amount=-2 -kerning first=84 second=290 amount=-2 -kerning first=87 second=70 amount=-2 -kerning first=107 second=227 amount=2 -kerning first=269 second=229 amount=1 -kerning first=374 second=344 amount=-1 -kerning first=115 second=97 amount=3 -kerning first=355 second=357 amount=-1 -kerning first=316 second=243 amount=1 -kerning first=362 second=87 amount=2 -kerning first=277 second=99 amount=1 -kerning first=192 second=111 amount=-12 -kerning first=340 second=320 amount=-2 -kerning first=343 second=100 amount=-2 -kerning first=363 second=257 amount=2 -kerning first=193 second=281 amount=-12 -kerning first=81 second=73 amount=3 -kerning first=324 second=113 amount=2 -kerning first=121 second=357 amount=3 -kerning first=197 second=231 amount=-12 -kerning first=217 second=358 amount=-6 -kerning first=240 second=295 amount=-1 -kerning first=283 second=359 amount=-1 -kerning first=198 second=371 amount=-6 -kerning first=86 second=193 amount=-3 -kerning first=109 second=100 amount=2 -kerning first=8211 second=65 amount=-13 -kerning first=290 second=89 amount=4 -kerning first=67 second=206 amount=3 -kerning first=205 second=101 amount=-2 -kerning first=356 second=90 amount=-2 -kerning first=8212 second=235 amount=4 -kerning first=268 second=322 amount=2 -kerning first=271 second=102 amount=-4 -kerning first=291 second=259 amount=5 -kerning first=272 second=272 amount=-6 -kerning first=75 second=76 amount=-3 -kerning first=256 second=65 amount=-7 -kerning first=276 second=222 amount=-6 -kerning first=296 second=349 amount=-2 -kerning first=300 second=299 amount=-2 -kerning first=80 second=196 amount=-14 -kerning first=103 second=103 amount=5 -kerning first=258 second=375 amount=-4 -kerning first=196 second=324 amount=-13 -kerning first=199 second=104 amount=2 -kerning first=84 second=116 amount=-3 -kerning first=304 second=249 amount=-2 -kerning first=104 second=273 amount=2 -kerning first=262 second=325 amount=4 -kerning first=200 second=274 amount=-5 -kerning first=85 second=286 amount=2 -kerning first=88 second=66 amount=-2 -kerning first=331 second=106 amount=-10 -kerning first=108 second=223 amount=4 -kerning first=246 second=118 amount=-2 -kerning first=351 second=263 amount=1 -kerning first=374 second=200 amount=-4 -kerning first=309 second=339 amount=1 -kerning first=224 second=351 amount=1 -kerning first=8211 second=328 amount=2 -kerning first=270 second=225 amount=2 -kerning first=356 second=353 amount=-10 -kerning first=271 second=365 amount=-9 -kerning first=97 second=106 amount=-10 -kerning first=193 second=107 amount=-12 -kerning first=298 second=252 amount=-2 -kerning first=75 second=339 amount=-10 -kerning first=216 second=44 amount=-5 -kerning first=341 second=316 amount=-1 -kerning first=256 second=328 amount=-13 -kerning first=259 second=108 amount=-1 -kerning first=279 second=265 amount=1 -kerning first=194 second=277 amount=-12 -kerning first=102 second=226 amount=-6 -kerning first=348 second=46 amount=-4 -kerning first=122 second=353 amount=1 -kerning first=260 second=278 amount=-10 -kerning first=368 second=203 amount=-6 -kerning first=198 second=227 amount=-3 -kerning first=218 second=354 amount=-6 -kerning first=241 second=291 amount=2 -kerning first=284 second=355 amount=2 -kerning first=84 second=379 amount=-2 -kerning first=330 second=229 amount=2 -kerning first=245 second=241 amount=-2 -kerning first=350 second=356 amount=-3 -kerning first=45 second=265 amount=4 -kerning first=373 second=293 amount=2 -kerning first=68 second=202 amount=-6 -kerning first=311 second=242 amount=1 -kerning first=88 second=329 amount=-6 -kerning first=226 second=254 amount=-1 -kerning first=114 second=46 amount=-7 -kerning first=269 second=318 amount=-1 -kerning first=69 second=342 amount=-6 -kerning first=207 second=267 amount=-2 -kerning first=358 second=256 amount=-13 -kerning first=339 second=269 amount=1 -kerning first=254 second=281 amount=2 -kerning first=192 second=230 amount=-10 -kerning first=258 second=231 amount=-12 -kerning first=278 second=358 amount=-5 -kerning first=239 second=244 amount=1 -kerning first=344 second=359 amount=-2 -kerning first=197 second=320 amount=-12 -kerning first=220 second=257 amount=2 -kerning first=105 second=269 amount=1 -kerning first=201 second=270 amount=-5 -kerning first=329 second=322 amount=-1 -kerning first=267 second=271 amount=1 -kerning first=44 second=358 amount=-10 -kerning first=290 second=208 amount=-2 -kerning first=67 second=295 amount=2 -kerning first=225 second=347 amount=1 -kerning first=110 second=359 amount=-1 -kerning first=356 second=209 amount=-1 -kerning first=8212 second=324 amount=2 -kerning first=376 second=336 amount=-1 -kerning first=71 second=245 amount=3 -kerning first=114 second=309 amount=-10 -kerning first=357 second=349 amount=-8 -kerning first=75 second=195 amount=-3 -kerning first=318 second=235 amount=-9 -kerning first=118 second=259 amount=5 -kerning first=364 second=79 amount=2 -kerning first=194 second=103 amount=-10 -kerning first=342 second=312 amount=-2 -kerning first=260 second=104 amount=-12 -kerning first=195 second=273 amount=-10 -kerning first=83 second=65 amount=-9 -kerning first=238 second=337 amount=1 -kerning first=346 second=262 amount=3 -kerning first=199 second=223 amount=3 -kerning first=84 second=235 amount=-7 -kerning first=350 second=212 amount=3 -kerning first=265 second=224 amount=1 -kerning first=373 second=119 amount=3 -kerning first=285 second=351 amount=2 -kerning first=65 second=248 amount=-12 -kerning first=200 second=363 amount=-2 -kerning first=331 second=225 amount=2 -kerning first=246 second=237 amount=-2 -kerning first=374 second=289 amount=-3 -kerning first=289 second=301 amount=3 -kerning first=358 second=82 amount=-5 -kerning first=73 second=118 amount=-2 -kerning first=254 second=107 amount=3 -kerning first=320 second=108 amount=-2 -kerning first=97 second=225 amount=2 -kerning first=235 second=120 amount=-2 -kerning first=58 second=81 amount=-3 -kerning first=193 second=226 amount=-10 -kerning first=98 second=365 amount=2 -kerning first=259 second=227 amount=2 -kerning first=364 second=342 amount=-2 -kerning first=325 second=228 amount=2 -kerning first=240 second=240 amount=2 -kerning first=345 second=355 amount=-1 -kerning first=260 second=367 amount=-13 -kerning first=286 second=84 amount=-2 -kerning first=198 second=316 amount=-2 -kerning first=86 second=108 amount=3 -kerning first=106 second=265 amount=1 -kerning first=267 second=97 amount=1 -kerning first=44 second=214 amount=-3 -kerning first=287 second=254 amount=3 -kerning first=87 second=278 amount=-6 -kerning first=333 second=98 amount=-1 -kerning first=248 second=110 amount=-2 -kerning first=376 second=192 amount=-3 -kerning first=45 second=354 amount=-7 -kerning first=68 second=291 amount=2 -kerning first=71 second=71 amount=3 -kerning first=111 second=355 amount=-1 -kerning first=292 second=344 amount=-2 -kerning first=207 second=356 amount=-2 -kerning first=230 second=293 amount=-1 -kerning first=358 second=345 amount=-6 -kerning first=273 second=357 amount=-1 -kerning first=99 second=98 amount=-1 -kerning first=234 second=243 amount=1 -kerning first=192 second=319 amount=-7 -kerning first=195 second=99 amount=-12 -kerning first=300 second=244 amount=-2 -kerning first=258 second=320 amount=-12 -kerning first=261 second=100 amount=2 -kerning first=281 second=257 amount=2 -kerning first=58 second=344 amount=-4 -kerning first=196 second=269 amount=-12 -kerning first=239 second=333 amount=1 -kerning first=262 second=270 amount=-2 -kerning first=65 second=74 amount=-9 -kerning first=328 second=271 amount=2 -kerning first=374 second=115 amount=-4 -kerning first=66 second=244 amount=2 -kerning first=86 second=371 amount=2 -kerning first=8211 second=273 amount=4 -kerning first=375 second=285 amount=7 -kerning first=70 second=194 amount=-12 -kerning first=205 second=309 amount=-14 -kerning first=208 second=89 amount=2 -kerning first=333 second=361 amount=-2 -kerning first=248 second=373 amount=-2 -kerning first=356 second=298 amount=-2 -kerning first=209 second=259 amount=2 -kerning first=337 second=311 amount=-1 -kerning first=75 second=284 amount=-8 -kerning first=318 second=324 amount=-9 -kerning first=341 second=261 amount=-2 -kerning first=256 second=273 amount=-10 -kerning first=194 second=222 amount=-17 -kerning first=299 second=337 amount=1 -kerning first=302 second=117 amount=-2 -kerning first=260 second=223 amount=-10 -kerning first=303 second=287 amount=2 -kerning first=221 second=79 amount=-1 -kerning first=103 second=311 amount=2 -kerning first=326 second=224 amount=2 -kerning first=372 second=68 amount=-6 -kerning first=284 second=300 amount=3 -kerning first=199 second=312 amount=2 -kerning first=84 second=324 amount=-6 -kerning first=45 second=210 amount=5 -kerning first=373 second=238 amount=2 -kerning first=65 second=337 amount=-12 -kerning first=88 second=274 amount=-2 -kerning first=331 second=314 amount=-1 -kerning first=246 second=326 amount=-2 -kerning first=292 second=200 amount=-6 -kerning first=112 second=351 amount=2 -kerning first=358 second=201 amount=-8 -kerning first=296 second=120 amount=-1 -kerning first=73 second=237 amount=-2 -kerning first=316 second=277 amount=1 -kerning first=231 second=289 amount=1 -kerning first=254 second=226 amount=5 -kerning first=300 second=70 amount=-2 -kerning first=212 second=302 amount=3 -kerning first=97 second=314 amount=-1 -kerning first=340 second=354 amount=-8 -kerning first=363 second=291 amount=2 -kerning first=366 second=71 amount=2 -kerning first=58 second=200 amount=-4 -kerning first=193 second=315 amount=-7 -kerning first=301 second=240 amount=2 -kerning first=259 second=316 amount=-1 -kerning first=59 second=340 amount=-4 -kerning first=197 second=265 amount=-12 -kerning first=220 second=202 amount=-6 -kerning first=328 second=97 amount=2 -kerning first=240 second=329 amount=-3 -kerning first=243 second=109 amount=-2 -kerning first=368 second=381 amount=4 -kerning first=286 second=203 amount=-2 -kerning first=66 second=70 amount=-1 -kerning first=86 second=227 amount=6 -kerning first=221 second=342 amount=-1 -kerning first=8211 second=99 amount=4 -kerning first=375 second=111 amount=3 -kerning first=8212 second=269 amount=4 -kerning first=268 second=356 amount=-2 -kerning first=291 second=293 amount=2 -kerning first=114 second=254 amount=-1 -kerning first=75 second=110 amount=-8 -kerning first=256 second=99 amount=-12 -kerning first=214 second=205 amount=3 -kerning first=300 second=333 amount=-2 -kerning first=303 second=113 amount=2 -kerning first=323 second=270 amount=-6 -kerning first=100 second=357 amount=-1 -kerning first=366 second=334 amount=2 -kerning first=196 second=358 amount=-20 -kerning first=304 second=283 amount=-2 -kerning first=262 second=359 amount=2 -kerning first=370 second=284 amount=2 -kerning first=65 second=193 amount=-7 -kerning first=203 second=88 amount=3 -kerning first=223 second=245 amount=1 -kerning first=108 second=257 amount=2 -kerning first=351 second=297 amount=1 -kerning first=354 second=77 amount=-7 -kerning first=374 second=234 amount=-4 -kerning first=289 second=246 amount=2 -kerning first=66 second=333 amount=2 -kerning first=89 second=270 amount=-4 -kerning first=8211 second=362 amount=5 -kerning first=270 second=259 amount=2 -kerning first=70 second=283 amount=-6 -kerning first=208 second=208 amount=-6 -kerning first=316 second=103 amount=2 -kerning first=231 second=115 amount=1 -kerning first=74 second=233 amount=-5 -kerning first=232 second=285 amount=2 -kerning first=160 second=309 amount=-9 -kerning first=275 second=349 amount=1 -kerning first=75 second=373 amount=-10 -kerning first=213 second=298 amount=3 -kerning first=236 second=235 amount=1 -kerning first=364 second=287 amount=2 -kerning first=194 second=311 amount=-12 -kerning first=302 second=236 amount=-2 -kerning first=348 second=80 amount=-3 -kerning first=260 second=312 amount=-12 -kerning first=244 second=105 amount=-2 -kerning first=349 second=250 amount=1 -kerning first=67 second=66 amount=-2 -kerning first=87 second=223 amount=2 -kerning first=222 second=338 amount=4 -kerning first=376 second=107 amount=-2 -kerning first=45 second=299 amount=2 -kerning first=291 second=119 amount=2 -kerning first=88 second=363 amount=-3 -kerning first=354 second=340 amount=-5 -kerning first=357 second=120 amount=-11 -kerning first=292 second=289 amount=2 -kerning first=207 second=301 amount=-2 -kerning first=115 second=250 amount=1 -kerning first=358 second=290 amount=-2 -kerning first=276 second=82 amount=-6 -kerning first=296 second=239 amount=-2 -kerning first=73 second=326 amount=-2 -kerning first=76 second=106 amount=-6 -kerning first=362 second=240 amount=2 -kerning first=192 second=264 amount=-11 -kerning first=195 second=44 amount=-10 -kerning first=320 second=316 amount=-2 -kerning first=258 second=265 amount=-12 -kerning first=196 second=214 amount=-11 -kerning first=301 second=329 amount=-2 -kerning first=304 second=109 amount=-2 -kerning first=101 second=353 amount=1 -kerning first=282 second=342 amount=-6 -kerning first=197 second=354 amount=-20 -kerning first=220 second=291 amount=2 -kerning first=263 second=355 amount=-1 -kerning first=204 second=84 amount=-2 -kerning first=309 second=229 amount=2 -kerning first=86 second=316 amount=3 -kerning first=270 second=85 amount=2 -kerning first=70 second=109 amount=-3 -kerning first=205 second=254 amount=-2 -kerning first=248 second=318 amount=-1 -kerning first=356 second=243 amount=-7 -kerning first=8212 second=358 amount=-7 -kerning first=71 second=279 amount=3 -kerning first=74 second=59 amount=-5 -kerning first=232 second=111 amount=1 -kerning first=298 second=112 amount=-2 -kerning first=75 second=229 amount=-7 -kerning first=318 second=269 amount=-9 -kerning first=233 second=281 amount=1 -kerning first=118 second=293 amount=2 -kerning first=364 second=113 amount=2 -kerning first=381 second=8211 amount=-6 -kerning first=237 second=231 amount=1 -kerning first=198 second=87 amount=-2 -kerning first=303 second=232 amount=1 -kerning first=264 second=88 amount=1 -kerning first=84 second=269 amount=-7 -kerning first=222 second=194 amount=-13 -kerning first=327 second=309 amount=-12 -kerning first=65 second=282 amount=-10 -kerning first=331 second=259 amount=2 -kerning first=243 second=8212 amount=3 -kerning first=354 second=196 amount=-13 -kerning first=289 second=335 amount=2 -kerning first=204 second=347 amount=-2 -kerning first=89 second=359 amount=-2 -kerning first=358 second=116 amount=-3 -kerning first=362 second=66 amount=-6 -kerning first=192 second=90 amount=-7 -kerning first=97 second=259 amount=2 -kerning first=278 second=248 amount=-2 -kerning first=193 second=260 amount=-7 -kerning first=298 second=375 amount=-2 -kerning first=78 second=272 amount=-6 -kerning first=197 second=210 amount=-11 -kerning first=82 second=222 amount=-8 -kerning first=325 second=262 amount=3 -kerning first=102 second=349 amount=-7 -kerning first=348 second=199 amount=3 -kerning first=371 second=106 amount=-10 -kerning first=198 second=350 amount=-3 -kerning first=221 second=287 amount=-3 -kerning first=349 second=339 amount=1 -kerning first=372 second=276 amount=-6 -kerning first=290 second=68 amount=-2 -kerning first=205 second=80 amount=-2 -kerning first=353 second=289 amount=3 -kerning first=356 second=69 amount=-8 -kerning first=8212 second=214 amount=5 -kerning first=376 second=226 amount=-3 -kerning first=291 second=238 amount=3 -kerning first=71 second=105 amount=1 -kerning first=206 second=250 amount=-2 -kerning first=334 second=302 amount=3 -kerning first=357 second=239 amount=-3 -kerning first=233 second=107 amount=-1 -kerning first=115 second=339 amount=1 -kerning first=118 second=119 amount=3 -kerning first=256 second=44 amount=-10 -kerning first=358 second=379 amount=-2 -kerning first=276 second=201 amount=-5 -kerning first=296 second=328 amount=-2 -kerning first=234 second=277 amount=1 -kerning first=119 second=289 amount=5 -kerning first=280 second=121 amount=-3 -kerning first=192 second=353 amount=-11 -kerning first=218 second=70 amount=-2 -kerning first=238 second=227 amount=2 -kerning first=258 second=354 amount=-20 -kerning first=281 second=291 amount=2 -kerning first=219 second=240 amount=2 -kerning first=324 second=355 amount=-1 -kerning first=262 second=304 amount=3 -kerning first=370 second=229 amount=2 -kerning first=285 second=241 amount=2 -kerning first=65 second=108 amount=-12 -kerning first=88 second=45 amount=-8 -kerning first=351 second=242 amount=1 -kerning first=266 second=254 amount=2 -kerning first=66 second=278 amount=-4 -kerning first=8211 second=307 amount=2 -kerning first=70 second=228 amount=-3 -kerning first=336 second=205 amount=3 -kerning first=356 second=332 amount=-2 -kerning first=212 second=73 amount=3 -kerning first=360 second=282 amount=-6 -kerning first=193 second=86 amount=-7 -kerning first=298 second=231 amount=-2 -kerning first=75 second=318 amount=-7 -kerning first=341 second=295 amount=-1 -kerning first=279 second=244 amount=1 -kerning first=194 second=256 amount=-7 -kerning first=325 second=88 amount=3 -kerning first=240 second=100 amount=2 -kerning first=345 second=245 amount=-2 -kerning first=260 second=257 amount=-10 -kerning first=221 second=113 amount=-3 -kerning first=264 second=207 amount=3 -kerning first=369 second=322 amount=-1 -kerning first=287 second=114 amount=2 -kerning first=307 second=271 amount=2 -kerning first=84 second=358 amount=-8 -kerning first=330 second=208 amount=-6 -kerning first=265 second=347 amount=1 -kerning first=45 second=244 amount=4 -kerning first=65 second=371 amount=-13 -kerning first=354 second=285 amount=-10 -kerning first=207 second=246 amount=-2 -kerning first=358 second=235 amount=-7 -kerning first=234 second=103 amount=2 -kerning first=339 second=248 amount=1 -kerning first=116 second=335 amount=1 -kerning first=119 second=115 amount=2 -kerning first=192 second=209 amount=-15 -kerning first=300 second=104 amount=-2 -kerning first=235 second=273 amount=2 -kerning first=120 second=285 amount=2 -kerning first=258 second=210 amount=-11 -kerning first=278 second=337 amount=-2 -kerning first=193 second=349 amount=-11 -kerning first=219 second=66 amount=-6 -kerning first=239 second=223 amount=3 -kerning first=347 second=118 amount=1 -kerning first=305 second=224 amount=2 -kerning first=82 second=311 amount=-2 -kerning first=105 second=248 amount=1 -kerning first=348 second=288 amount=3 -kerning first=266 second=80 amount=-2 -kerning first=371 second=225 amount=2 -kerning first=67 second=274 amount=-2 -kerning first=228 second=106 amount=-10 -kerning first=333 second=251 amount=-2 -kerning first=8212 second=303 amount=2 -kerning first=376 second=315 amount=-3 -kerning first=71 second=224 amount=5 -kerning first=206 second=339 amount=-2 -kerning first=357 second=328 amount=-9 -kerning first=272 second=340 amount=-3 -kerning first=275 second=120 amount=-2 -kerning first=233 second=226 amount=2 -kerning first=118 second=238 amount=2 -kerning first=194 second=82 amount=-17 -kerning first=299 second=227 amount=2 -kerning first=260 second=83 amount=-8 -kerning first=365 second=228 amount=2 -kerning first=300 second=367 amount=-2 -kerning first=80 second=264 amount=3 -kerning first=83 second=44 amount=-4 -kerning first=199 second=202 amount=-2 -kerning first=307 second=97 amount=2 -kerning first=84 second=214 amount=-2 -kerning first=222 second=109 amount=2 -kerning first=373 second=98 amount=2 -kerning first=45 second=70 amount=-7 -kerning first=65 second=227 amount=-10 -kerning first=200 second=342 amount=-6 -kerning first=85 second=354 amount=-6 -kerning first=223 second=279 amount=1 -kerning first=108 second=291 amount=2 -kerning first=351 second=331 amount=1 -kerning first=354 second=111 amount=-7 -kerning first=374 second=268 amount=-1 -kerning first=227 second=229 amount=2 -kerning first=112 second=241 amount=2 -kerning first=359 second=231 amount=1 -kerning first=274 second=243 amount=-2 -kerning first=74 second=267 amount=-5 -kerning first=193 second=205 amount=-7 -kerning first=298 second=320 amount=-2 -kerning first=301 second=100 amount=2 -kerning first=236 second=269 amount=1 -kerning first=344 second=194 amount=3 -kerning first=121 second=281 amount=3 -kerning first=279 second=333 amount=1 -kerning first=194 second=345 amount=-12 -kerning first=217 second=282 amount=-6 -kerning first=260 second=346 amount=-8 -kerning first=368 second=271 amount=2 -kerning first=283 second=283 amount=1 -kerning first=198 second=295 amount=-2 -kerning first=86 second=87 amount=4 -kerning first=326 second=347 amount=1 -kerning first=106 second=244 amount=1 -kerning first=241 second=359 amount=-1 -kerning first=264 second=296 amount=3 -kerning first=287 second=233 amount=2 -kerning first=202 second=245 amount=-2 -kerning first=87 second=257 amount=2 -kerning first=245 second=309 amount=-13 -kerning first=353 second=234 amount=1 -kerning first=373 second=361 amount=2 -kerning first=45 second=333 amount=4 -kerning first=65 second=8211 amount=-12 -kerning first=68 second=270 amount=-6 -kerning first=226 second=322 amount=-1 -kerning first=272 second=196 amount=-8 -kerning first=295 second=103 amount=2 -kerning first=207 second=335 amount=-2 -kerning first=358 second=324 amount=-6 -kerning first=361 second=104 amount=-1 -kerning first=339 second=337 amount=1 -kerning first=119 second=234 amount=4 -kerning first=254 second=349 amount=2 -kerning first=362 second=274 amount=-6 -kerning first=280 second=66 amount=-5 -kerning first=192 second=298 amount=-7 -kerning first=195 second=78 amount=-15 -kerning first=80 second=90 amount=-4 -kerning first=343 second=287 amount=-2 -kerning first=346 second=67 amount=3 -kerning first=366 second=224 amount=2 -kerning first=58 second=323 amount=-5 -kerning first=196 second=248 amount=-12 -kerning first=327 second=80 amount=-2 -kerning first=347 second=237 amount=1 -kerning first=85 second=210 amount=2 -kerning first=105 second=337 amount=1 -kerning first=371 second=314 amount=-1 -kerning first=66 second=223 amount=3 -kerning first=204 second=118 amount=-2 -kerning first=309 second=263 amount=1 -kerning first=109 second=287 amount=2 -kerning first=355 second=107 amount=-1 -kerning first=8211 second=252 amount=2 -kerning first=290 second=276 amount=-2 -kerning first=208 second=68 amount=-6 -kerning first=228 second=225 amount=2 -kerning first=356 second=277 amount=-7 -kerning first=271 second=289 amount=-8 -kerning first=274 second=69 amount=-5 -kerning first=294 second=226 amount=2 -kerning first=340 second=70 amount=-8 -kerning first=360 second=227 amount=2 -kerning first=160 second=199 amount=-3 -kerning first=75 second=263 amount=-10 -kerning first=318 second=303 amount=-3 -kerning first=341 second=240 amount=-2 -kerning first=121 second=107 amount=3 -kerning first=194 second=201 amount=-10 -kerning first=102 second=120 amount=-7 -kerning first=237 second=265 amount=1 -kerning first=122 second=277 amount=1 -kerning first=260 second=202 amount=-10 -kerning first=368 second=97 amount=2 -kerning first=195 second=341 amount=-12 -kerning first=198 second=121 amount=-7 -kerning first=218 second=278 amount=-6 -kerning first=221 second=58 amount=-5 -kerning first=349 second=110 amount=1 -kerning first=84 second=303 amount=-2 -kerning first=107 second=240 amount=2 -kerning first=242 second=355 amount=-1 -kerning first=350 second=280 amount=-3 -kerning first=65 second=316 amount=-12 -kerning first=331 second=293 amount=-1 -kerning first=334 second=73 amount=3 -kerning first=354 second=230 amount=-9 -kerning first=269 second=242 amount=-1 -kerning first=374 second=357 amount=-2 -kerning first=289 second=369 amount=2 -kerning first=227 second=318 amount=-1 -kerning first=230 second=98 amount=-1 -kerning first=115 second=110 amount=1 -kerning first=296 second=99 amount=-2 -kerning first=359 second=320 amount=-1 -kerning first=362 second=100 amount=2 -kerning first=74 second=356 amount=-5 -kerning first=97 second=293 amount=-1 -kerning first=340 second=333 amount=-2 -kerning first=343 second=113 amount=-2 -kerning first=278 second=282 amount=-5 -kerning first=196 second=74 amount=-9 -kerning first=101 second=243 amount=1 -kerning first=259 second=295 amount=-1 -kerning first=197 second=244 amount=-12 -kerning first=302 second=359 amount=-2 -kerning first=82 second=256 amount=3 -kerning first=102 second=383 amount=-7 -kerning first=263 second=245 amount=-1 -kerning first=86 second=206 amount=5 -kerning first=106 second=333 amount=1 -kerning first=109 second=113 amount=2 -kerning first=349 second=373 amount=1 -kerning first=8211 second=78 amount=-2 -kerning first=44 second=282 amount=-4 -kerning first=287 second=322 amount=2 -kerning first=205 second=114 amount=-2 -kerning first=222 second=8212 amount=3 -kerning first=225 second=271 amount=2 -kerning first=356 second=103 amount=-10 -kerning first=8212 second=248 amount=4 -kerning first=271 second=115 amount=-8 -kerning first=376 second=260 amount=-3 -kerning first=337 second=116 amount=-1 -kerning first=114 second=233 amount=-2 -kerning first=357 second=273 amount=-8 -kerning first=272 second=285 amount=2 -kerning first=72 second=309 amount=-12 -kerning first=75 second=89 amount=-3 -kerning first=115 second=373 amount=1 -kerning first=256 second=78 amount=-15 -kerning first=361 second=223 amount=4 -kerning first=234 second=311 amount=-1 -kerning first=195 second=197 amount=-7 -kerning first=300 second=312 amount=-2 -kerning first=103 second=116 amount=2 -kerning first=196 second=337 amount=-12 -kerning first=219 second=274 amount=-6 -kerning first=327 second=199 amount=3 -kerning first=347 second=326 amount=1 -kerning first=350 second=106 amount=-11 -kerning first=265 second=118 amount=-1 -kerning first=285 second=275 amount=2 -kerning first=88 second=79 amount=-4 -kerning first=223 second=224 amount=2 -kerning first=374 second=213 amount=-1 -kerning first=289 second=225 amount=5 -kerning first=204 second=237 amount=-2 -kerning first=355 second=226 amount=2 -kerning first=228 second=314 amount=-1 -kerning first=116 second=106 amount=-12 -kerning first=54 second=55 amount=-3 -kerning first=160 second=288 amount=-3 -kerning first=193 second=120 amount=-14 -kerning first=298 second=265 amount=-2 -kerning first=98 second=289 amount=5 -kerning first=121 second=226 amount=7 -kerning first=256 second=341 amount=-12 -kerning first=364 second=266 amount=2 -kerning first=194 second=290 amount=-11 -kerning first=197 second=70 amount=-17 -kerning first=79 second=302 amount=3 -kerning first=82 second=82 amount=-8 -kerning first=217 second=227 amount=2 -kerning first=102 second=239 amount=-7 -kerning first=325 second=122 amount=3 -kerning first=345 second=279 amount=-2 -kerning first=348 second=59 amount=-4 -kerning first=260 second=291 amount=-10 -kerning first=368 second=216 amount=2 -kerning first=283 second=228 amount=2 -kerning first=198 second=240 amount=-3 -kerning first=349 second=229 amount=3 -kerning first=87 second=202 amount=-6 -kerning first=225 second=97 amount=2 -kerning first=107 second=329 amount=-2 -kerning first=245 second=254 amount=-1 -kerning first=8212 second=74 amount=-7 -kerning first=45 second=278 amount=-7 -kerning first=291 second=98 amount=2 -kerning first=206 second=110 amount=-2 -kerning first=114 second=59 amount=-7 -kerning first=354 second=319 amount=-1 -kerning first=357 second=99 amount=-9 -kerning first=115 second=229 amount=3 -kerning first=358 second=269 amount=-7 -kerning first=273 second=281 amount=1 -kerning first=231 second=357 amount=-1 -kerning first=277 second=231 amount=1 -kerning first=192 second=243 amount=-12 -kerning first=320 second=295 amount=-2 -kerning first=343 second=232 amount=-2 -kerning first=258 second=244 amount=-12 -kerning first=363 second=359 amount=-1 -kerning first=278 second=371 amount=-2 -kerning first=58 second=268 amount=-3 -kerning first=196 second=193 amount=-7 -kerning first=304 second=88 amount=2 -kerning first=81 second=205 amount=3 -kerning first=219 second=100 amount=2 -kerning first=239 second=257 amount=2 -kerning first=367 second=309 amount=-10 -kerning first=370 second=89 amount=2 -kerning first=285 second=101 amount=2 -kerning first=197 second=333 amount=-12 -kerning first=220 second=270 amount=-6 -kerning first=371 second=259 amount=2 -kerning first=86 second=295 amount=3 -kerning first=352 second=272 amount=-3 -kerning first=8211 second=197 amount=-13 -kerning first=205 second=233 amount=-2 -kerning first=356 second=222 amount=-5 -kerning first=271 second=234 amount=-9 -kerning first=376 second=349 amount=-4 -kerning first=8212 second=337 amount=4 -kerning first=291 second=361 amount=2 -kerning first=206 second=373 amount=-2 -kerning first=114 second=322 amount=-1 -kerning first=55 second=51 amount=-5 -kerning first=295 second=311 amount=-1 -kerning first=75 second=208 amount=-9 -kerning first=318 second=248 amount=-9 -kerning first=98 second=115 amount=2 -kerning first=256 second=197 amount=-7 -kerning first=276 second=324 amount=-2 -kerning first=279 second=104 amount=-1 -kerning first=194 second=116 amount=-12 -kerning first=99 second=285 amount=1 -kerning first=260 second=117 amount=-13 -kerning first=280 second=274 amount=-5 -kerning first=195 second=286 amount=-11 -kerning first=198 second=66 amount=-2 -kerning first=218 second=223 amount=2 -kerning first=323 second=338 amount=3 -kerning first=103 second=235 amount=2 -kerning first=261 second=287 amount=2 -kerning first=304 second=351 amount=-2 -kerning first=84 second=248 amount=-7 -kerning first=327 second=288 amount=3 -kerning first=330 second=68 amount=-6 -kerning first=111 second=105 amount=-2 -kerning first=246 second=250 amount=-2 -kerning first=351 second=365 amount=1 -kerning first=46 second=274 amount=-4 -kerning first=289 second=314 amount=2 -kerning first=204 second=326 amount=-2 -kerning first=207 second=106 amount=-14 -kerning first=89 second=338 amount=-1 -kerning first=112 second=275 amount=2 -kerning first=273 second=107 amount=-1 -kerning first=70 second=351 amount=-4 -kerning first=208 second=276 amount=-6 -kerning first=339 second=108 amount=-1 -kerning first=116 second=225 amount=2 -kerning first=254 second=120 amount=-1 -kerning first=359 second=265 amount=1 -kerning first=192 second=69 amount=-10 -kerning first=74 second=301 amount=-1 -kerning first=77 second=81 amount=3 -kerning first=232 second=353 amount=1 -kerning first=343 second=58 amount=-7 -kerning first=258 second=70 amount=-17 -kerning first=298 second=354 amount=-2 -kerning first=259 second=240 amount=2 -kerning first=59 second=264 amount=-3 -kerning first=194 second=379 amount=-7 -kerning first=102 second=328 amount=-7 -kerning first=201 second=109 amount=-2 -kerning first=86 second=121 amount=3 -kerning first=221 second=266 amount=-1 -kerning first=349 second=318 amount=1 -kerning first=264 second=330 amount=4 -kerning first=287 second=267 amount=2 -kerning first=87 second=291 amount=2 -kerning first=110 second=228 amount=2 -kerning first=8212 second=193 amount=-13 -kerning first=268 second=280 amount=-2 -kerning first=45 second=367 amount=2 -kerning first=71 second=84 amount=-2 -kerning first=207 second=369 amount=-2 -kerning first=115 second=318 amount=1 -kerning first=118 second=98 amount=2 -kerning first=358 second=358 amount=-8 -kerning first=296 second=307 amount=-2 -kerning first=99 second=111 amount=-1 -kerning first=277 second=320 amount=-1 -kerning first=192 second=332 amount=-11 -kerning first=77 second=344 amount=-4 -kerning first=100 second=281 amount=1 -kerning first=258 second=333 amount=-12 -kerning first=261 second=113 amount=2 -kerning first=196 second=282 amount=-10 -kerning first=84 second=74 amount=-7 -kerning first=347 second=271 amount=3 -kerning first=370 second=208 amount=-6 -kerning first=65 second=87 amount=-7 -kerning first=305 second=347 amount=1 -kerning first=66 second=257 amount=3 -kerning first=89 second=194 amount=-3 -kerning first=224 second=309 amount=-10 -kerning first=112 second=101 amount=2 -kerning first=8211 second=286 amount=5 -kerning first=267 second=373 amount=-1 -kerning first=205 second=322 amount=-2 -kerning first=228 second=259 amount=2 -kerning first=113 second=271 amount=2 -kerning first=356 second=311 amount=-3 -kerning first=71 second=347 amount=2 -kerning first=209 second=272 amount=-6 -kerning first=337 second=324 amount=-2 -kerning first=340 second=104 amount=-2 -kerning first=275 second=273 amount=2 -kerning first=193 second=65 amount=-7 -kerning first=75 second=297 amount=-7 -kerning first=318 second=337 amount=-9 -kerning first=98 second=234 amount=2 -kerning first=233 second=349 amount=1 -kerning first=118 second=361 amount=2 -kerning first=256 second=286 amount=-11 -kerning first=364 second=211 amount=2 -kerning first=279 second=223 amount=4 -kerning first=194 second=235 amount=-12 -kerning first=325 second=67 amount=3 -kerning first=345 second=224 amount=-2 -kerning first=365 second=351 amount=1 -kerning first=280 second=363 amount=-2 -kerning first=195 second=375 amount=-4 -kerning first=83 second=197 amount=-9 -kerning first=103 second=324 amount=2 -kerning first=199 second=325 amount=4 -kerning first=84 second=337 amount=-7 -kerning first=222 second=262 amount=4 -kerning first=327 second=377 amount=4 -kerning first=373 second=251 amount=2 -kerning first=65 second=350 amount=-8 -kerning first=354 second=264 amount=-2 -kerning first=72 second=80 amount=-2 -kerning first=358 second=214 amount=-2 -kerning first=273 second=226 amount=2 -kerning first=73 second=250 amount=-2 -kerning first=319 second=70 amount=-4 -kerning first=339 second=227 amount=2 -kerning first=254 second=239 amount=2 -kerning first=100 second=107 amount=-1 -kerning first=366 second=84 amount=-6 -kerning first=58 second=213 amount=-3 -kerning first=193 second=328 amount=-13 -kerning first=196 second=108 amount=-12 -kerning first=78 second=340 amount=-2 -kerning first=101 second=277 amount=1 -kerning first=347 second=97 amount=3 -kerning first=259 second=329 amount=-3 -kerning first=367 second=254 amount=-1 -kerning first=197 second=278 amount=-10 -kerning first=85 second=70 amount=-2 -kerning first=105 second=227 amount=2 -kerning first=86 second=240 amount=6 -kerning first=221 second=355 amount=-2 -kerning first=8211 second=112 amount=2 -kerning first=267 second=229 amount=1 -kerning first=372 second=344 amount=-2 -kerning first=113 second=97 amount=2 -kerning first=353 second=357 amount=1 -kerning first=8212 second=282 amount=-7 -kerning first=71 second=203 amount=-2 -kerning first=206 second=318 amount=-2 -kerning first=114 second=267 amount=-2 -kerning first=357 second=307 amount=-3 -kerning first=360 second=87 amount=2 -kerning first=275 second=99 amount=1 -kerning first=341 second=100 amount=-2 -kerning first=361 second=257 amount=2 -kerning first=79 second=73 amount=3 -kerning first=119 second=357 amount=5 -kerning first=195 second=231 amount=-12 -kerning first=281 second=359 amount=-1 -kerning first=196 second=371 amount=-13 -kerning first=84 second=193 amount=-13 -kerning first=222 second=88 amount=-6 -kerning first=104 second=320 amount=-1 -kerning first=107 second=100 amount=2 -kerning first=65 second=206 amount=-7 -kerning first=354 second=90 amount=-2 -kerning first=266 second=322 amount=2 -kerning first=289 second=259 amount=5 -kerning first=8211 second=375 amount=2 -kerning first=270 second=272 amount=-6 -kerning first=274 second=222 amount=-6 -kerning first=74 second=246 amount=-5 -kerning first=298 second=299 amount=-2 -kerning first=101 second=103 amount=2 -kerning first=236 second=248 amount=1 -kerning first=256 second=375 amount=-4 -kerning first=59 second=209 amount=-5 -kerning first=194 second=324 amount=-13 -kerning first=197 second=104 amount=-12 -kerning first=82 second=116 amount=-2 -kerning first=302 second=249 amount=-2 -kerning first=102 second=273 amount=-6 -kerning first=260 second=325 amount=-15 -kerning first=198 second=274 amount=-2 -kerning first=83 second=286 amount=3 -kerning first=221 second=211 amount=-1 -kerning first=329 second=106 amount=-10 -kerning first=106 second=223 amount=3 -kerning first=244 second=118 amount=-2 -kerning first=349 second=263 amount=1 -kerning first=372 second=200 amount=-6 -kerning first=307 second=339 amount=1 -kerning first=222 second=351 amount=1 -kerning first=330 second=276 amount=-6 -kerning first=376 second=120 amount=-7 -kerning first=45 second=312 amount=2 -kerning first=311 second=289 amount=2 -kerning first=88 second=376 amount=2 -kerning first=354 second=353 amount=-10 -kerning first=207 second=314 amount=-2 -kerning first=115 second=263 amount=1 -kerning first=358 second=303 amount=-2 -kerning first=296 second=252 amount=-2 -kerning first=73 second=339 amount=-2 -kerning first=214 second=44 amount=-5 -kerning first=339 second=316 amount=-1 -kerning first=254 second=328 amount=2 -kerning first=257 second=108 amount=-1 -kerning first=277 second=265 amount=1 -kerning first=192 second=277 amount=-12 -kerning first=77 second=289 amount=1 -kerning first=80 second=69 amount=-9 -kerning first=100 second=226 amount=2 -kerning first=346 second=46 amount=-4 -kerning first=258 second=278 amount=-10 -kerning first=366 second=203 amount=-6 -kerning first=196 second=227 amount=-10 -kerning first=239 second=291 amount=2 -kerning first=197 second=367 amount=-13 -kerning first=328 second=229 amount=2 -kerning first=243 second=241 amount=-2 -kerning first=348 second=356 amount=-3 -kerning first=371 second=293 amount=-1 -kerning first=66 second=202 amount=-4 -kerning first=309 second=242 amount=1 -kerning first=86 second=329 amount=2 -kerning first=89 second=109 amount=-5 -kerning first=224 second=254 amount=-1 -kerning first=8211 second=231 amount=4 -kerning first=267 second=318 amount=-1 -kerning first=375 second=243 amount=3 -kerning first=67 second=342 amount=-4 -kerning first=70 second=122 amount=-6 -kerning first=205 second=267 amount=-2 -kerning first=248 second=331 amount=-2 -kerning first=356 second=256 amount=-13 -kerning first=8212 second=371 amount=2 -kerning first=75 second=242 amount=-10 -kerning first=256 second=231 amount=-12 -kerning first=276 second=358 amount=-5 -kerning first=102 second=99 amount=-8 -kerning first=237 second=244 amount=1 -kerning first=342 second=359 amount=-2 -kerning first=195 second=320 amount=-12 -kerning first=198 second=100 amount=-3 -kerning first=80 second=332 amount=3 -kerning first=218 second=257 amount=2 -kerning first=303 second=245 amount=1 -kerning first=103 second=269 amount=2 -kerning first=196 second=8211 amount=-12 -kerning first=199 second=270 amount=-2 -kerning first=84 second=282 amount=-8 -kerning first=245 second=114 amount=-2 -kerning first=265 second=271 amount=1 -kerning first=65 second=295 amount=-12 -kerning first=311 second=115 amount=1 -kerning first=88 second=232 amount=-2 -kerning first=354 second=209 amount=-1 -kerning first=374 second=336 amount=-1 -kerning first=69 second=245 amount=-2 -kerning first=312 second=285 amount=2 -kerning first=112 second=309 amount=-8 -kerning first=355 second=349 amount=1 -kerning first=316 second=235 amount=1 -kerning first=116 second=259 amount=2 -kerning first=362 second=79 amount=2 -kerning first=192 second=103 amount=-10 -kerning first=74 second=335 amount=-5 -kerning first=340 second=312 amount=-2 -kerning first=258 second=104 amount=-12 -kerning first=193 second=273 amount=-10 -kerning first=78 second=285 amount=2 -kerning first=236 second=337 amount=1 -kerning first=121 second=349 amount=2 -kerning first=197 second=223 amount=-10 -kerning first=240 second=287 amount=2 -kerning first=348 second=212 amount=3 -kerning first=263 second=224 amount=1 -kerning first=283 second=351 amount=1 -kerning first=198 second=363 amount=-6 -kerning first=329 second=225 amount=2 -kerning first=244 second=237 amount=-2 -kerning first=372 second=289 amount=2 -kerning first=287 second=301 amount=3 -kerning first=356 second=82 amount=-5 -kerning first=8212 second=227 amount=4 -kerning first=268 second=314 amount=2 -kerning first=291 second=251 amount=2 -kerning first=68 second=338 amount=4 -kerning first=71 second=118 amount=2 -kerning first=206 second=263 amount=-2 -kerning first=272 second=264 amount=4 -kerning first=75 second=68 amount=-9 -kerning first=233 second=120 amount=-2 -kerning first=257 second=227 amount=2 -kerning first=362 second=342 amount=-2 -kerning first=323 second=228 amount=2 -kerning first=238 second=240 amount=2 -kerning first=343 second=355 amount=-1 -kerning first=258 second=367 amount=-13 -kerning first=284 second=84 amount=-2 -kerning first=196 second=316 amount=-12 -kerning first=84 second=108 amount=-3 -kerning first=304 second=241 amount=-2 -kerning first=265 second=97 amount=1 -kerning first=285 second=254 amount=3 -kerning first=65 second=121 amount=-4 -kerning first=85 second=278 amount=-6 -kerning first=328 second=318 amount=-1 -kerning first=331 second=98 amount=-1 -kerning first=246 second=110 amount=-2 -kerning first=374 second=192 amount=-3 -kerning first=66 second=291 amount=3 -kerning first=312 second=111 amount=1 -kerning first=89 second=228 amount=-3 -kerning first=109 second=355 amount=-1 -kerning first=290 second=344 amount=-4 -kerning first=205 second=356 amount=-2 -kerning first=228 second=293 amount=-1 -kerning first=356 second=345 amount=-6 -kerning first=97 second=98 amount=-1 -kerning first=232 second=243 amount=1 -kerning first=193 second=99 amount=-12 -kerning first=298 second=244 amount=-2 -kerning first=75 second=331 amount=-8 -kerning first=318 second=371 amount=-9 -kerning first=256 second=320 amount=-12 -kerning first=259 second=100 amount=2 -kerning first=279 second=257 amount=2 -kerning first=194 second=269 amount=-12 -kerning first=237 second=333 amount=1 -kerning first=240 second=113 amount=2 -kerning first=260 second=270 amount=-10 -kerning first=326 second=271 amount=2 -kerning first=199 second=359 amount=2 -kerning first=84 second=371 amount=-6 -kerning first=373 second=285 amount=2 -kerning first=45 second=257 amount=4 -kerning first=376 second=65 amount=-3 -kerning first=68 second=194 amount=-8 -kerning first=203 second=309 amount=-10 -kerning first=311 second=234 amount=1 -kerning first=246 second=373 amount=-2 -kerning first=354 second=298 amount=-2 -kerning first=335 second=311 amount=-1 -kerning first=358 second=248 amount=-7 -kerning first=234 second=116 amount=-1 -kerning first=254 second=273 amount=5 -kerning first=192 second=222 amount=-17 -kerning first=297 second=337 amount=1 -kerning first=300 second=117 amount=-2 -kerning first=258 second=223 amount=-10 -kerning first=301 second=287 amount=2 -kerning first=324 second=224 amount=2 -kerning first=101 second=311 amount=-1 -kerning first=370 second=68 amount=-6 -kerning first=197 second=312 amount=-12 -kerning first=329 second=314 amount=-1 -kerning first=244 second=326 amount=-2 -kerning first=290 second=200 amount=-2 -kerning first=336 second=44 amount=-5 -kerning first=110 second=351 amount=1 -kerning first=356 second=201 amount=-8 -kerning first=376 second=328 amount=-5 -kerning first=71 second=237 amount=1 -kerning first=229 second=289 amount=2 -kerning first=357 second=341 amount=-9 -kerning first=298 second=70 amount=-2 -kerning first=72 second=377 amount=4 -kerning first=210 second=302 amount=3 -kerning first=318 second=227 amount=-8 -kerning first=338 second=354 amount=-4 -kerning first=118 second=251 amount=2 -kerning first=361 second=291 amount=2 -kerning first=364 second=71 amount=2 -kerning first=299 second=240 amount=2 -kerning first=257 second=316 amount=-1 -kerning first=195 second=265 amount=-12 -kerning first=218 second=202 amount=-6 -kerning first=326 second=97 amount=2 -kerning first=238 second=329 amount=-2 -kerning first=366 second=381 amount=4 -kerning first=284 second=203 amount=-2 -kerning first=84 second=227 amount=-10 -kerning first=219 second=342 amount=-2 -kerning first=373 second=111 amount=4 -kerning first=65 second=240 amount=-10 -kerning first=266 second=356 amount=-2 -kerning first=289 second=293 amount=2 -kerning first=312 second=230 amount=1 -kerning first=112 second=254 amount=3 -kerning first=358 second=74 amount=-7 -kerning first=73 second=110 amount=-2 -kerning first=254 second=99 amount=2 -kerning first=359 second=244 amount=1 -kerning first=74 second=280 amount=-5 -kerning first=212 second=205 amount=3 -kerning first=160 second=356 amount=-12 -kerning first=298 second=333 amount=-2 -kerning first=301 second=113 amount=2 -kerning first=98 second=357 amount=3 -kerning first=364 second=334 amount=2 -kerning first=194 second=358 amount=-20 -kerning first=302 second=283 amount=-2 -kerning first=102 second=307 amount=-7 -kerning first=240 second=232 amount=1 -kerning first=345 second=347 amount=-2 -kerning first=260 second=359 amount=-12 -kerning first=368 second=284 amount=2 -kerning first=201 second=88 amount=3 -kerning first=86 second=100 amount=6 -kerning first=221 second=245 amount=-4 -kerning first=106 second=257 amount=2 -kerning first=349 second=297 amount=1 -kerning first=287 second=246 amount=2 -kerning first=84 second=8211 amount=-7 -kerning first=87 second=270 amount=-6 -kerning first=245 second=322 amount=-1 -kerning first=248 second=102 amount=-2 -kerning first=229 second=115 amount=1 -kerning first=295 second=116 amount=-1 -kerning first=230 second=285 amount=2 -kerning first=115 second=297 amount=1 -kerning first=358 second=337 amount=-7 -kerning first=273 second=349 amount=1 -kerning first=73 second=373 amount=-2 -kerning first=211 second=298 amount=3 -kerning first=234 second=235 amount=1 -kerning first=362 second=287 amount=2 -kerning first=192 second=311 amount=-12 -kerning first=300 second=236 amount=-2 -kerning first=346 second=80 amount=-3 -kerning first=258 second=312 amount=-12 -kerning first=58 second=336 amount=-3 -kerning first=242 second=105 amount=-2 -kerning first=347 second=250 amount=1 -kerning first=65 second=66 amount=-8 -kerning first=85 second=223 amount=2 -kerning first=374 second=107 amount=-2 -kerning first=46 second=79 amount=-3 -kerning first=289 second=119 amount=2 -kerning first=86 second=363 amount=2 -kerning first=352 second=340 amount=-3 -kerning first=355 second=120 amount=2 -kerning first=8211 second=265 amount=4 -kerning first=375 second=277 amount=3 -kerning first=205 second=301 amount=-2 -kerning first=208 second=81 amount=4 -kerning first=248 second=365 amount=-2 -kerning first=356 second=290 amount=-2 -kerning first=274 second=82 amount=-6 -kerning first=71 second=326 amount=2 -kerning first=160 second=212 amount=-3 -kerning first=360 second=240 amount=2 -kerning first=193 second=44 amount=-10 -kerning first=75 second=276 amount=-9 -kerning first=121 second=120 amount=3 -kerning first=256 second=265 amount=-12 -kerning first=59 second=69 amount=-4 -kerning first=194 second=214 amount=-11 -kerning first=299 second=329 amount=-2 -kerning first=302 second=109 amount=-2 -kerning first=99 second=353 amount=1 -kerning first=280 second=342 amount=-6 -kerning first=195 second=354 amount=-20 -kerning first=303 second=279 amount=1 -kerning first=218 second=291 amount=2 -kerning first=221 second=71 amount=-1 -kerning first=103 second=303 amount=3 -kerning first=241 second=228 amount=2 -kerning first=261 second=355 amount=-1 -kerning first=199 second=304 amount=3 -kerning first=202 second=84 amount=-5 -kerning first=84 second=316 amount=-3 -kerning first=307 second=229 amount=2 -kerning first=327 second=356 amount=-6 -kerning first=268 second=85 amount=4 -kerning first=45 second=202 amount=-7 -kerning first=373 second=230 amount=1 -kerning first=65 second=329 amount=-19 -kerning first=88 second=266 amount=-4 -kerning first=246 second=318 amount=-1 -kerning first=354 second=243 amount=-7 -kerning first=46 second=342 amount=-4 -kerning first=230 second=111 amount=1 -kerning first=112 second=343 amount=2 -kerning first=358 second=193 amount=-13 -kerning first=296 second=112 amount=-2 -kerning first=208 second=344 amount=-3 -kerning first=316 second=269 amount=1 -kerning first=359 second=333 amount=1 -kerning first=362 second=113 amount=2 -kerning first=379 second=8211 amount=-6 -kerning first=74 second=369 amount=-4 -kerning first=196 second=87 amount=-7 -kerning first=301 second=232 amount=1 -kerning first=262 second=88 amount=1 -kerning first=282 second=245 amount=-2 -kerning first=59 second=332 amount=-3 -kerning first=197 second=257 amount=-10 -kerning first=325 second=309 amount=-12 -kerning first=221 second=334 amount=-1 -kerning first=329 second=259 amount=2 -kerning first=352 second=196 amount=-9 -kerning first=375 second=103 amount=7 -kerning first=287 second=335 amount=2 -kerning first=356 second=116 amount=-3 -kerning first=376 second=273 amount=-3 -kerning first=291 second=285 amount=5 -kerning first=206 second=297 amount=-2 -kerning first=114 second=246 amount=-2 -kerning first=360 second=66 amount=-6 -kerning first=75 second=102 amount=-8 -kerning first=276 second=248 amount=-2 -kerning first=296 second=375 amount=-2 -kerning first=195 second=210 amount=-11 -kerning first=80 second=222 amount=-7 -kerning first=323 second=262 amount=3 -kerning first=100 second=349 amount=1 -kerning first=346 second=199 amount=3 -kerning first=369 second=106 amount=-10 -kerning first=196 second=350 amount=-8 -kerning first=304 second=275 amount=-2 -kerning first=219 second=287 amount=2 -kerning first=222 second=67 amount=4 -kerning first=327 second=212 amount=3 -kerning first=347 second=339 amount=1 -kerning first=370 second=276 amount=-6 -kerning first=203 second=80 amount=-6 -kerning first=351 second=289 amount=3 -kerning first=354 second=69 amount=-8 -kerning first=374 second=226 amount=-3 -kerning first=289 second=238 amount=3 -kerning first=204 second=250 amount=-2 -kerning first=89 second=262 amount=-1 -kerning first=332 second=302 amount=3 -kerning first=8211 second=354 amount=-7 -kerning first=70 second=275 amount=-6 -kerning first=208 second=200 amount=-6 -kerning first=113 second=339 amount=1 -kerning first=356 second=379 amount=-2 -kerning first=274 second=201 amount=-5 -kerning first=74 second=225 amount=-5 -kerning first=209 second=340 amount=-2 -kerning first=232 second=277 amount=1 -kerning first=117 second=289 amount=2 -kerning first=278 second=121 amount=-3 -kerning first=75 second=365 amount=-8 -kerning first=236 second=227 amount=2 -kerning first=121 second=239 amount=3 -kerning first=256 second=354 amount=-20 -kerning first=279 second=291 amount=2 -kerning first=197 second=83 amount=-8 -kerning first=217 second=240 amount=2 -kerning first=102 second=252 amount=-7 -kerning first=260 second=304 amount=-7 -kerning first=368 second=229 amount=2 -kerning first=198 second=253 amount=-7 -kerning first=349 second=242 amount=1 -kerning first=264 second=254 amount=2 -kerning first=202 second=203 amount=-5 -kerning first=8212 second=87 amount=3 -kerning first=268 second=204 amount=3 -kerning first=45 second=291 amount=4 -kerning first=376 second=99 amount=-4 -kerning first=291 second=111 amount=2 -kerning first=68 second=228 amount=2 -kerning first=334 second=205 amount=3 -kerning first=354 second=332 amount=-2 -kerning first=357 second=112 amount=-11 -kerning first=207 second=293 amount=-2 -kerning first=210 second=73 amount=3 -kerning first=115 second=242 amount=1 -kerning first=358 second=282 amount=-8 -kerning first=296 second=231 amount=-2 -kerning first=73 second=318 amount=-2 -kerning first=339 second=295 amount=-1 -kerning first=254 second=307 amount=2 -kerning first=277 second=244 amount=1 -kerning first=192 second=256 amount=-7 -kerning first=77 second=268 amount=3 -kerning first=323 second=88 amount=3 -kerning first=235 second=320 amount=-1 -kerning first=238 second=100 amount=2 -kerning first=343 second=245 amount=-2 -kerning first=258 second=257 amount=-10 -kerning first=196 second=206 amount=-7 -kerning first=304 second=101 amount=-2 -kerning first=219 second=113 amount=2 -kerning first=262 second=207 amount=3 -kerning first=367 second=322 amount=-1 -kerning first=285 second=114 amount=2 -kerning first=197 second=346 amount=-8 -kerning first=305 second=271 amount=2 -kerning first=82 second=358 amount=-8 -kerning first=263 second=347 amount=1 -kerning first=8211 second=210 amount=5 -kerning first=70 second=101 amount=-6 -kerning first=205 second=246 amount=-2 -kerning first=356 second=235 amount=-7 -kerning first=68 second=8212 amount=4 -kerning first=71 second=271 amount=5 -kerning first=232 second=103 amount=2 -kerning first=114 second=335 amount=-2 -kerning first=117 second=115 amount=1 -kerning first=298 second=104 amount=-2 -kerning first=233 second=273 amount=2 -kerning first=118 second=285 amount=5 -kerning first=256 second=210 amount=-11 -kerning first=276 second=337 amount=-2 -kerning first=217 second=66 amount=-6 -kerning first=237 second=223 amount=3 -kerning first=198 second=79 amount=-7 -kerning first=303 second=224 amount=2 -kerning first=103 second=248 amount=2 -kerning first=346 second=288 amount=3 -kerning first=264 second=80 amount=-2 -kerning first=369 second=225 amount=2 -kerning first=330 second=81 amount=3 -kerning first=45 second=117 amount=2 -kerning first=65 second=274 amount=-10 -kerning first=88 second=211 amount=-4 -kerning first=226 second=106 amount=-10 -kerning first=111 second=118 amount=-2 -kerning first=374 second=315 amount=-3 -kerning first=204 second=339 amount=-2 -kerning first=207 second=119 amount=-2 -kerning first=89 second=351 amount=-4 -kerning first=358 second=108 amount=-3 -kerning first=270 second=340 amount=-3 -kerning first=273 second=120 amount=2 -kerning first=381 second=45 amount=-6 -kerning first=208 second=289 amount=2 -kerning first=231 second=226 amount=1 -kerning first=192 second=82 amount=-17 -kerning first=297 second=227 amount=2 -kerning first=258 second=83 amount=-8 -kerning first=363 second=228 amount=2 -kerning first=298 second=367 amount=-2 -kerning first=78 second=264 amount=3 -kerning first=81 second=44 amount=-5 -kerning first=121 second=328 amount=3 -kerning first=197 second=202 amount=-10 -kerning first=305 second=97 amount=2 -kerning first=371 second=98 amount=-1 -kerning first=83 second=354 amount=-3 -kerning first=106 second=291 amount=2 -kerning first=349 second=331 amount=1 -kerning first=225 second=229 amount=2 -kerning first=330 second=344 amount=-2 -kerning first=353 second=281 amount=1 -kerning first=8212 second=206 amount=-5 -kerning first=268 second=293 amount=2 -kerning first=291 second=230 amount=2 -kerning first=71 second=97 amount=5 -kerning first=206 second=242 amount=-2 -kerning first=357 second=231 amount=-9 -kerning first=233 second=99 amount=1 -kerning first=115 second=331 amount=1 -kerning first=118 second=111 amount=4 -kerning first=358 second=371 amount=-6 -kerning first=296 second=320 amount=-2 -kerning first=299 second=100 amount=2 -kerning first=234 second=269 amount=1 -kerning first=342 second=194 amount=3 -kerning first=119 second=281 amount=4 -kerning first=277 second=333 amount=1 -kerning first=192 second=345 amount=-12 -kerning first=258 second=346 amount=-8 -kerning first=366 second=271 amount=2 -kerning first=281 second=283 amount=1 -kerning first=196 second=295 amount=-12 -kerning first=84 second=87 amount=-1 -kerning first=324 second=347 amount=1 -kerning first=262 second=296 amount=3 -kerning first=285 second=233 amount=2 -kerning first=65 second=100 amount=-10 -kerning first=200 second=245 amount=-2 -kerning first=85 second=257 amount=2 -kerning first=243 second=309 amount=-13 -kerning first=351 second=234 amount=1 -kerning first=66 second=270 amount=-4 -kerning first=224 second=322 amount=-1 -kerning first=112 second=114 amount=2 -kerning first=8211 second=299 amount=2 -kerning first=270 second=196 amount=-8 -kerning first=205 second=335 amount=-2 -kerning first=356 second=324 amount=-6 -kerning first=359 second=104 amount=-1 -kerning first=294 second=273 amount=2 -kerning first=209 second=285 amount=2 -kerning first=360 second=274 amount=-6 -kerning first=278 second=66 amount=-5 -kerning first=193 second=78 amount=-15 -kerning first=78 second=90 amount=4 -kerning first=341 second=287 amount=-2 -kerning first=364 second=224 amount=2 -kerning first=194 second=248 amount=-12 -kerning first=325 second=80 amount=-2 -kerning first=198 second=198 amount=-7 -kerning first=83 second=210 amount=3 -kerning first=221 second=105 amount=-3 -kerning first=103 second=337 amount=2 -kerning first=369 second=314 amount=-1 -kerning first=202 second=118 amount=-2 -kerning first=307 second=263 amount=1 -kerning first=84 second=350 amount=-6 -kerning first=330 second=200 amount=-6 -kerning first=107 second=287 amount=2 -kerning first=353 second=107 amount=1 -kerning first=376 second=44 amount=-5 -kerning first=45 second=236 amount=2 -kerning first=65 second=363 amount=-13 -kerning first=226 second=225 amount=2 -kerning first=111 second=237 amount=-2 -kerning first=354 second=277 amount=-7 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/selection.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/selection.png deleted file mode 100644 index d2533cb..0000000 Binary files a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/selection.png and /dev/null differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/textfield.9.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/textfield.9.png deleted file mode 100644 index cb8ad31..0000000 Binary files a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/textfield.9.png and /dev/null differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.atlas b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.atlas deleted file mode 100644 index e51dee1..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.atlas +++ /dev/null @@ -1,201 +0,0 @@ - -uiskin.png -size: 256,128 -format: RGBA8888 -filter: Linear,Linear -repeat: none -check-off - rotate: false - xy: 11, 5 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -textfield - rotate: false - xy: 11, 5 - size: 14, 14 - split: 3, 3, 3, 3 - orig: 14, 14 - offset: 0, 0 - index: -1 -check-on - rotate: false - xy: 125, 35 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -cursor - rotate: false - xy: 23, 1 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default - rotate: false - xy: 1, 50 - size: 254, 77 - orig: 254, 77 - offset: 0, 0 - index: -1 -default-pane - rotate: false - xy: 11, 1 - size: 5, 3 - split: 1, 1, 1, 1 - orig: 5, 3 - offset: 0, 0 - index: -1 -default-rect-pad - rotate: false - xy: 11, 1 - size: 5, 3 - split: 1, 1, 1, 1 - orig: 5, 3 - offset: 0, 0 - index: -1 -default-pane-noborder - rotate: false - xy: 170, 44 - size: 1, 1 - split: 0, 0, 0, 0 - orig: 1, 1 - offset: 0, 0 - index: -1 -default-rect - rotate: false - xy: 38, 25 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default-rect-down - rotate: false - xy: 170, 46 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default-round - rotate: false - xy: 112, 29 - size: 12, 20 - split: 5, 5, 5, 4 - pad: 4, 4, 1, 1 - orig: 12, 20 - offset: 0, 0 - index: -1 -default-round-down - rotate: false - xy: 99, 29 - size: 12, 20 - split: 5, 5, 5, 4 - pad: 4, 4, 1, 1 - orig: 12, 20 - offset: 0, 0 - index: -1 -default-round-large - rotate: false - xy: 57, 29 - size: 20, 20 - split: 5, 5, 5, 4 - orig: 20, 20 - offset: 0, 0 - index: -1 -default-scroll - rotate: false - xy: 78, 29 - size: 20, 20 - split: 2, 2, 2, 2 - orig: 20, 20 - offset: 0, 0 - index: -1 -default-select - rotate: false - xy: 29, 29 - size: 27, 20 - split: 4, 14, 4, 4 - orig: 27, 20 - offset: 0, 0 - index: -1 -default-select-selection - rotate: false - xy: 26, 16 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default-slider - rotate: false - xy: 29, 20 - size: 8, 8 - split: 2, 2, 2, 2 - orig: 8, 8 - offset: 0, 0 - index: -1 -default-slider-knob - rotate: false - xy: 1, 1 - size: 9, 18 - orig: 9, 18 - offset: 0, 0 - index: -1 -default-splitpane - rotate: false - xy: 17, 1 - size: 5, 3 - split: 0, 5, 0, 0 - orig: 5, 3 - offset: 0, 0 - index: -1 -default-splitpane-vertical - rotate: false - xy: 125, 29 - size: 3, 5 - split: 0, 0, 0, 5 - orig: 3, 5 - offset: 0, 0 - index: -1 -default-window - rotate: false - xy: 1, 20 - size: 27, 29 - split: 4, 3, 20, 3 - orig: 27, 29 - offset: 0, 0 - index: -1 -selection - rotate: false - xy: 174, 48 - size: 1, 1 - orig: 1, 1 - offset: 0, 0 - index: -1 -tree-minus - rotate: false - xy: 140, 35 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -tree-plus - rotate: false - xy: 155, 35 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -white - rotate: false - xy: 129, 31 - size: 3, 3 - orig: 3, 3 - offset: 0, 0 - index: -1 - diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.png deleted file mode 100644 index c1e5f1a..0000000 Binary files a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.png and /dev/null differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.json b/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json similarity index 68% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.json rename to wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json index ccd5b26..6ea2045 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.json +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json @@ -1,5 +1,5 @@ { - "com.badlogic.gdx.graphics.g2d.BitmapFont": { + "BitmapFont": { "default-font": { "file": "font/coolvetica.fnt" }, @@ -7,39 +7,15 @@ "file": "font/enchanted.fnt" } }, - "com.badlogic.gdx.graphics.Color": { - "green": { - "a": 1, - "b": 0, - "g": 1, - "r": 0 - }, - "white": { - "a": 1, - "b": 1, - "g": 1, - "r": 1 - }, - "red": { - "a": 1, - "b": 0, - "g": 0, - "r": 1 - }, - "black": { - "a": 1, - "b": 0, - "g": 0, - "r": 0 - }, - "gold": { - "a": 1, - "r": 0.9, - "g": 0.75, - "b": 0.125 - } + "Color": { + "green": { "a": 1.0, "b": 0.0, "g": 1.0, "r": 0.0 }, + "white": { "a": 1.0, "b": 1.0, "g": 1.0, "r": 1.0 }, + "red": { "a": 1.0, "b": 0.0, "g": 0.0, "r": 1.0 }, + "black": { "a": 1.0, "b": 0.0, "g": 0.0, "r": 0.0 }, + "gold": { "a": 1.0, "b": 0.125, "g": 0.75, "r": 0.9 }, + "light_gray": { "a": 1.0, "b": 0.6, "g": 0.6, "r": 0.6 } }, - "com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable": { + "TintedDrawable": { "dialogDim": { "name": "white", "color": { @@ -50,7 +26,7 @@ } } }, - "com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle": { + "ButtonStyle": { "default": { "down": "default-round-down", "up": "default-round" @@ -61,11 +37,12 @@ "up": "default-round" } }, - "com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle": { + "TextButtonStyle": { "default": { "font": "enchanted", "fontColor": "white", - "downFontColor": "gold" + "downFontColor": "gold", + "disabledFontColor" : "light_gray" }, "toggle": { "down": "default-round-down", @@ -76,16 +53,16 @@ "downFontColor": "red" } }, - "com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle": { + "ScrollPaneStyle": { "default": { "vScroll": "default-scroll", "hScrollKnob": "default-round-large", - "background": "default-rect", + "background": "default-pane", "hScroll": "default-scroll", "vScrollKnob": "default-round-large" } }, - "com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle": { + "SelectBoxStyle": { "default": { "font": "default-font", "fontColor": "white", @@ -97,7 +74,7 @@ } } }, - "com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle": { + "SplitPaneStyle": { "default-vertical": { "handle": "default-splitpane-vertical" }, @@ -105,7 +82,7 @@ "handle": "default-splitpane" } }, - "com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle": { + "WindowStyle": { "default": { "titleFont": "default-font", "background": "default-window", @@ -118,7 +95,7 @@ "stageBackground": "dialogDim" } }, - "com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle": { + "ProgressBarStyle": { "default-horizontal": { "background": "default-slider", "knob": "default-slider-knob" @@ -128,7 +105,7 @@ "knob": "default-round-large" } }, - "com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle": { + "SliderStyle": { "default-horizontal": { "background": "default-slider", "knob": "default-slider-knob" @@ -138,22 +115,28 @@ "knob": "default-round-large" } }, - "com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle": { + "LabelStyle": { "default": { "font": "default-font", "fontColor": "white" + }, + "textfield": { + "background": "textfield", + "font": "default-font", + "fontColor": "white" } }, - "com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle": { + "TextFieldStyle": { "default": { "selection": "selection", "background": "textfield", "font": "default-font", "fontColor": "white", + "messageFontColor": "light_gray", "cursor": "cursor" } }, - "com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle": { + "CheckBoxStyle": { "default": { "checkboxOn": "check-on", "checkboxOff": "check-off", @@ -161,7 +144,7 @@ "fontColor": "white" } }, - "com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle": { + "ListStyle": { "default": { "fontColorUnselected": "white", "selection": "selection", @@ -169,20 +152,20 @@ "font": "default-font" } }, - "com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle": { + "TouchpadStyle": { "default": { "background": "default-pane", "knob": "default-round-large" } }, - "com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle": { + "TreeStyle": { "default": { "minus": "tree-minus", "plus": "tree-plus", "selection": "default-select-selection" } }, - "com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle": { + "TextTooltipStyle": { "default": { "label": { "font": "default-font", diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/background.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/background.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/background.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/background.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_lo.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_lo.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_lo.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_lo.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_lu.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_lu.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_lu.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_lu.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_ro.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_ro.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_ro.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_ro.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_ru.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_ru.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/ecke_ru.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/ecke_ru.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/pack.json b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/pack.json new file mode 100644 index 0000000..791886b --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/pack.json @@ -0,0 +1,4 @@ +{ + "maxWidth": 2048, + "maxHeight": 2048 +} \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/symbol0.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol0.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/symbol0.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol0.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/symbol1.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol1.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/symbol1.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol1.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/symbol2.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol2.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/symbol2.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol2.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/symbol3.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol3.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/symbol3.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/symbol3.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/title.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/menu/title.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/title.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/menu/title.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/check-off.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/check-off.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/check-off.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/check-off.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/check-on.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/check-on.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/check-on.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/check-on.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/cursor.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/cursor.png new file mode 100644 index 0000000..ba6eb7b Binary files /dev/null and b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/cursor.png differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/debug.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/debug.9.png new file mode 100644 index 0000000..eb5c72d Binary files /dev/null and b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/debug.9.png differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane-noborder.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane-noborder.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane-noborder.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane-noborder.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane.9.png new file mode 100644 index 0000000..798d6e9 Binary files /dev/null and b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane.9.png differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-rect-down.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-rect-down.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-rect-down.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-rect-down.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-rect-pad.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-rect-pad.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-rect-pad.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-rect-pad.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-rect.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-rect.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-rect.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-rect.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-round-down.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-round-down.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-round-down.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-round-down.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-round-large.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-round-large.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-round-large.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-round-large.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-round.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-round.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-round.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-round.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-scroll.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-scroll.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-scroll.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-scroll.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-select-selection.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-select-selection.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-select-selection.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-select-selection.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-select.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-select.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-select.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-select.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-slider-knob.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-slider-knob.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-slider-knob.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-slider-knob.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-slider.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-slider.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-slider.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-slider.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-splitpane-vertical.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-splitpane-vertical.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-splitpane-vertical.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-splitpane-vertical.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-splitpane.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-splitpane.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-splitpane.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-splitpane.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-window.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-window.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-window.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-window.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/pack.json b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/pack.json similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/pack.json rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/pack.json diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.png new file mode 100644 index 0000000..af9977d Binary files /dev/null and b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.png differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield.9.png new file mode 100644 index 0000000..2e871f9 Binary files /dev/null and b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield.9.png differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/tree-minus.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/tree-minus.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/tree-minus.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/tree-minus.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/tree-plus.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/tree-plus.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/tree-plus.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/tree-plus.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/white.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/white.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/white.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/white.png diff --git a/wizard-client/wizard-client-libgdx/desktop/src/main/java/eu/jonahbauer/wizard/client/libgdx/desktop/DesktopLauncher.java b/wizard-client/wizard-client-libgdx/desktop/src/main/java/eu/jonahbauer/wizard/client/libgdx/desktop/DesktopLauncher.java index 3957da3..d4b87c6 100644 --- a/wizard-client/wizard-client-libgdx/desktop/src/main/java/eu/jonahbauer/wizard/client/libgdx/desktop/DesktopLauncher.java +++ b/wizard-client/wizard-client-libgdx/desktop/src/main/java/eu/jonahbauer/wizard/client/libgdx/desktop/DesktopLauncher.java @@ -9,6 +9,7 @@ public class DesktopLauncher { Lwjgl3ApplicationConfiguration config = new Lwjgl3ApplicationConfiguration(); config.setTitle("Wizard Jubilaeumsedition 2021"); config.setForegroundFPS(60); + config.setWindowSizeLimits(853, 480, -1, -1); new Lwjgl3Application(new WizardGame(), config); } }