pax_global_header00006660000000000000000000000064141355370720014521gustar00rootroot0000000000000052 comment=017660be89a7515abaccaa369130560049b232e1 cffsubr-0.2.9/000077500000000000000000000000001413553707200131635ustar00rootroot00000000000000cffsubr-0.2.9/.coveragerc000066400000000000000000000014161413553707200153060ustar00rootroot00000000000000[run] # measure 'branch' coverage in addition to 'statement' coverage # See: http://coverage.readthedocs.org/en/latest/branch.html#branch branch = True parallel = True # list of directories or packages to measure source = cffsubr # these are treated as equivalent when combining data [paths] source = src/cffsubr */site-packages/cffsubr [report] # Regexes for lines to exclude from consideration exclude_lines = # keywords to use in inline comments to skip coverage pragma: no cover # don't complain if tests don't hit defensive assertion code raise AssertionError raise NotImplementedError # don't complain if non-runnable code isn't run if 0: if __name__ == .__main__.: # ignore source code that can’t be found ignore_errors = True cffsubr-0.2.9/.github/000077500000000000000000000000001413553707200145235ustar00rootroot00000000000000cffsubr-0.2.9/.github/workflows/000077500000000000000000000000001413553707200165605ustar00rootroot00000000000000cffsubr-0.2.9/.github/workflows/build_wheels.yml000066400000000000000000000047701413553707200217610ustar00rootroot00000000000000# based on https://github.com/joerick/cibuildwheel/blob/master/examples/github-minimal.yml name: Build wheels on: push: branches: [master] # Sequence of patterns matched against refs/tags tags: - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 pull_request: branches: [master] jobs: build_wheels: name: Build wheels on ${{ matrix.os }} if: "!contains(github.event.head_commit.message, '[skip ci]')" runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] steps: - uses: actions/checkout@v2 with: fetch-depth: 0 # unshallow fetch for setuptools-scm submodules: true - name: Use MSBuild (Windows) uses: microsoft/setup-msbuild@v1.0.2 if: matrix.os == 'windows-latest' - uses: actions/setup-python@v1 name: Install Python with: python-version: '3.7' - name: Install cibuildwheel run: | python -m pip install cibuildwheel==1.4.1 - name: Build wheel run: | python -m cibuildwheel --output-dir dist env: # make sure afdko submodule is not "dirty" before starting a new build CIBW_BEFORE_BUILD: "git submodule foreach git clean -fdx" # The embedded 'tx' C executable is independent of Python ABI so we only need to build it once. # Here we choose the minimum supported version, i.e. Python 3.6 CIBW_BUILD: "cp36-*" # build using the manylinux1 image to ensure manylinux1 wheels are produced CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 # skip PyPy (no manylinux1), 32-bit linux, and other architectures CIBW_SKIP: "pp* cp*manylinux_i686 cp*manylinux_aarch64 cp*manylinux_ppc64le cp*manylinux_s390x" CIBW_TEST_REQUIRES: "pytest" # run test suite with pytest, no coverage # TODO: run with coverage and publish to codecov.io CIBW_TEST_COMMAND: "pytest {project}/tests" - uses: actions/upload-artifact@v1 with: name: cffsubr-dist path: ./dist - name: Build sdist run: | python setup.py sdist if: matrix.os == 'ubuntu-latest' && github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') - name: Publish package to PyPI run: | pip install twine twine upload dist/* env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.pypi_password }} if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') cffsubr-0.2.9/.gitignore000066400000000000000000000013671413553707200151620ustar00rootroot00000000000000# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # pyenv .python-version # Environments .venv venv/ # mypy .mypy_cache/ .dmypy.json dmypy.json # version file generated by setuptools_scm src/cffsubr/_version.py # Visual Studio Code .vscode # binary executable src/cffsubr/tx src/cffsubr/tx.exe cffsubr-0.2.9/.gitmodules000066400000000000000000000001341413553707200153360ustar00rootroot00000000000000[submodule "afdko"] path = external/afdko url = https://github.com/adobe-type-tools/afdko cffsubr-0.2.9/LICENSE000066400000000000000000000261351413553707200141770ustar00rootroot00000000000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. cffsubr-0.2.9/NOTICE000066400000000000000000000006531413553707200140730ustar00rootroot00000000000000cffsubr Copyright 2020 Adobe. All rights reserved. ----- The following font subsets: tests/data/SourceSansPro-Regular.subset.ttx tests/data/SourceSansVariable-Regular.subset.ttx are derived from Source Sans Pro, licensed under SIL OFL 1.1 Copyright 2010-2018 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. cffsubr-0.2.9/README.md000066400000000000000000000003221413553707200144370ustar00rootroot00000000000000![Build wheels](https://github.com/adobe-type-tools/cffsubr/workflows/Build%20wheels/badge.svg) # cffsubr Standalone CFF subroutinizer based on the [AFDKO](https://github.com/adobe-type-tools/afdko) tx tool. cffsubr-0.2.9/external/000077500000000000000000000000001413553707200150055ustar00rootroot00000000000000cffsubr-0.2.9/external/afdko/000077500000000000000000000000001413553707200160715ustar00rootroot00000000000000cffsubr-0.2.9/pyproject.toml000066400000000000000000000002321413553707200160740ustar00rootroot00000000000000[build-system] requires = [ "setuptools", "wheel", "setuptools_scm", "setuptools-git-ls-files", ] build-backend = "setuptools.build_meta" cffsubr-0.2.9/setup.py000077500000000000000000000121361413553707200147030ustar00rootroot00000000000000from __future__ import print_function, absolute_import import platform from setuptools import setup, find_packages, Extension from setuptools.command.build_ext import build_ext from distutils.file_util import copy_file from distutils.dir_util import mkpath from distutils import log import os import subprocess cmdclass = {} try: from wheel.bdist_wheel import bdist_wheel except ImportError: pass else: class UniversalBdistWheel(bdist_wheel): def get_tag(self): return ("py3", "none") + bdist_wheel.get_tag(self)[2:] cmdclass["bdist_wheel"] = UniversalBdistWheel class Executable(Extension): if os.name == "nt": suffix = ".exe" else: suffix = "" def __init__(self, name, build_cmd, output_dir=".", cwd=None, env=None): Extension.__init__(self, name, sources=[]) self.target = self.name.split(".")[-1] + self.suffix self.build_cmd = build_cmd self.output_dir = output_dir self.cwd = cwd self.env = env class ExecutableBuildExt(build_ext): def finalize_options(self): from distutils.ccompiler import get_default_compiler build_ext.finalize_options(self) if self.compiler is None: self.compiler = get_default_compiler(os.name) self._compiler_env = dict(os.environ) def get_ext_filename(self, ext_name): for ext in self.extensions: if isinstance(ext, Executable): return os.path.join(*ext_name.split(".")) + ext.suffix return build_ext.get_ext_filename(self, ext_name) def run(self): if self.compiler == "msvc": self.call_vcvarsall_bat() build_ext.run(self) def call_vcvarsall_bat(self): import struct from setuptools.msvc import msvc14_get_vc_env arch = "x64" if struct.calcsize("P") * 8 == 64 else "x86" vc_env = msvc14_get_vc_env(arch) self._compiler_env.update(vc_env) def build_extension(self, ext): if not isinstance(ext, Executable): build_ext.build_extension(self, ext) return exe_fullpath = os.path.join(ext.output_dir, ext.target) cmd = ext.build_cmd log.debug("running '{}'".format(cmd)) if not self.dry_run: env = self._compiler_env.copy() if ext.env: env.update(ext.env) p = subprocess.run(cmd, cwd=ext.cwd, env=env, shell=True) if p.returncode != 0: from distutils.errors import DistutilsExecError raise DistutilsExecError( "running '{}' command failed".format(ext.build_cmd) ) dest_path = self.get_ext_fullpath(ext.name) mkpath(os.path.dirname(dest_path), verbose=self.verbose, dry_run=self.dry_run) copy_file(exe_fullpath, dest_path, verbose=self.verbose, dry_run=self.dry_run) cmdclass["build_ext"] = ExecutableBuildExt c_programs_dir = os.path.join("external", "afdko", "c") if platform.system() == "Linux": plat = "linux" compiler = "gcc" elif platform.system() == "Darwin": plat = "osx" compiler = "xcode" elif platform.system() == "Windows": plat = "win" compiler = "visualstudio" else: raise NotImplementedError(platform.system()) build_release_cmd = ("build.cmd" if plat == "win" else "sh build.sh") + " release" tx = Executable( "cffsubr.tx", build_cmd=build_release_cmd, cwd=os.path.join(c_programs_dir, "tx", "build", plat, compiler), output_dir=os.path.join(c_programs_dir, "build_all"), ) with open("README.md", "r", encoding="utf-8") as readme: long_description = readme.read() setup( name="cffsubr", use_scm_version={"write_to": "src/cffsubr/_version.py"}, description=("Standalone CFF subroutinizer based on the AFDKO tx tool"), long_description=long_description, long_description_content_type="text/markdown", author="Cosimo Lupo", author_email="cosimo@anthrotype.com", url="https://github.com/adobe-type-tools/cffsubr", license="Apache 2.0", platforms=["posix", "nt"], package_dir={"": "src"}, packages=find_packages("src"), entry_points={"console_scripts": ["cffsubr = cffsubr.__main__:main"]}, ext_modules=[tx], zip_safe=False, cmdclass=cmdclass, install_requires=[ "importlib_resources; python_version < '3.7'", "fontTools >= 4.10.2", ], setup_requires=[ "setuptools_scm", # finds all git tracked files including submodules when making sdist MANIFEST "setuptools-git-ls-files", ], extras_require={"testing": ["pytest"]}, python_requires=">=3.6", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Other Environment", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Topic :: Text Processing :: Fonts", "Topic :: Multimedia :: Graphics", ], ) cffsubr-0.2.9/src/000077500000000000000000000000001413553707200137525ustar00rootroot00000000000000cffsubr-0.2.9/src/cffsubr/000077500000000000000000000000001413553707200154045ustar00rootroot00000000000000cffsubr-0.2.9/src/cffsubr/__init__.py000066400000000000000000000207301413553707200175170ustar00rootroot00000000000000import copy import enum import io import subprocess import os import tempfile from typing import BinaryIO, Optional, Union import sys try: from importlib.resources import path except ImportError: # use backport for python < 3.7 from importlib_resources import path from fontTools import ttLib __all__ = ["subroutinize", "desubroutinize", "has_subroutines", "Error"] try: from ._version import version as __version__ except ImportError: __version__ = "0.0.0+unknown" class CFFTableTag(str, enum.Enum): CFF = "CFF " CFF2 = "CFF2" def __str__(self): return self.value @classmethod def from_version(cls, value: int) -> "CFFTableTag": if value == 1: return cls.CFF elif value == 2: return cls.CFF2 else: raise ValueError(f"{value} is not a valid CFF table version") class Error(Exception): pass TX_EXE = "tx" if sys.platform == "win32": TX_EXE += ".exe" def _run_embedded_tx(*args, **kwargs): """Run the embedded tx executable with the list of positional arguments. All keyword arguments are forwarded to subprocess.run function. Return: subprocess.CompletedProcess object with the following attributes: args, returncode, stdout, stderr. """ with path(__name__, TX_EXE) as tx_cli: return subprocess.run([str(tx_cli)] + list(args), **kwargs) def _tx_subroutinize(data: bytes, output_format: str = CFFTableTag.CFF) -> bytes: """Run tx subroutinizer on OTF or CFF table raw data. Args: data (bytes): CFF 1.0 table data, or an entire OTF sfnt data containing either 'CFF ' or 'CFF2' table. output_format (str): the format of the output table, 'CFF ' or 'CFF2'. Returns: (bytes) Compressed CFF or CFF2 table data. NOTE: Even when a whole OTF is passed in as input, just a single CFF or CFF2 table data is returned. Raises: cffsubr.Error if subroutinization process fails. """ if not isinstance(data, bytes): raise TypeError(f"expected bytes, found {type(data).__name__}") output_format = CFFTableTag(output_format.rjust(4)) # We can't read from stdin because of this issue: # https://github.com/adobe-type-tools/afdko/issues/937 with tempfile.NamedTemporaryFile(prefix="tx-", delete=False) as input_tmp: input_tmp.write(data) args = [f"-{output_format.rstrip().lower()}", "+S", "+b"] kwargs = dict(check=True, stderr=subprocess.PIPE) if sys.platform == "win32": # On Windows, we also can't write to stdout and capture output, because tx # doesn't seem to correctly handle binary data in stdout. # https://github.com/adobe-type-tools/cffsubr/pull/4#issuecomment-635624491 with tempfile.NamedTemporaryFile(prefix="tx-", delete=False) as output_tmp: output_tmp.write(data) args.extend(["-o", output_tmp.name]) else: # On Unix we write to stdout and capture output kwargs["stdout"] = subprocess.PIPE output_tmp = None args.append(input_tmp.name) try: result = _run_embedded_tx(*args, **kwargs) except subprocess.CalledProcessError as e: raise Error(e.stderr.decode()) else: if output_tmp is not None: with open(output_tmp.name, "rb") as fp: output_data = fp.read() else: output_data = result.stdout finally: os.remove(input_tmp.name) if output_tmp is not None: os.remove(output_tmp.name) return output_data def _sniff_cff_table_format(otf: ttLib.TTFont) -> CFFTableTag: cff_tag = next( ( CFFTableTag(tag) for tag in otf.keys() if tag in CFFTableTag.__members__.values() ), None, ) if not cff_tag: raise Error("Invalid OTF: no 'CFF ' or 'CFF2' tables found") return cff_tag def subroutinize( otf: ttLib.TTFont, cff_version: Optional[int] = None, keep_glyph_names: bool = True, inplace: bool = True, ) -> ttLib.TTFont: """Run subroutinizer on a FontTools TTFont's 'CFF ' or 'CFF2' table. Args: otf (TTFont): the input CFF-flavored OTF as a FontTools TTFont. It should contain either 'CFF ' or 'CFF2' table. cff_version (Optional[str]): the output table format version, 1 for 'CFF ', 2 for 'CFF2'. By default, it's the same as the input table format. keep_glyph_names (bool): CFF 1.0 stores the postscript glyph names and uses the more compact post table format 3.0. CFF2 does not contain glyph names. When converting from CFF to CFF2, the post table will be set to format 2.0 to preserve the glyph names. If you prefer instead to drop all glyph names and keep the post format 3.0, set keep_glyph_names=False. inplace (bool): whether to create a copy or modify the input font. By default the input font is modified. Returns: The modified font containing the subroutinized CFF or CFF2 table. This will be a different TTFont object if inplace=False. Raises: cffsubr.Error if the font doesn't contain 'CFF ' or 'CFF2' table, or if subroutinization process fails. """ input_format = _sniff_cff_table_format(otf) if cff_version is None: output_format = input_format else: output_format = CFFTableTag.from_version(cff_version) if not inplace: otf = copy.deepcopy(otf) # ensure the glyph order is decompiled before CFF table is replaced _ = otf.getGlyphOrder() buf = io.BytesIO() otf.save(buf) otf_data = buf.getvalue() compressed_cff_data = _tx_subroutinize(otf_data, output_format) cff_table = ttLib.newTable(output_format) cff_table.decompile(compressed_cff_data, otf) del otf[input_format] otf[output_format] = cff_table if ( input_format == CFFTableTag.CFF and output_format == CFFTableTag.CFF2 and keep_glyph_names ): # set 'post' to format 2 to keep the glyph names dropped from CFF2 set_post_table_format(otf, 2.0) elif ( input_format == CFFTableTag.CFF2 and output_format == CFFTableTag.CFF ): # set 'post' to format 3 so CFF glyph names are not stored twice # TODO convert to CID when keep_glyph_names=False? set_post_table_format(otf, 3.0) return otf def set_post_table_format(otf, formatType): if formatType not in (2.0, 3.0): raise NotImplementedError(formatType) post = otf.get("post") if post and post.formatType != formatType: post.formatType = formatType if formatType == 2.0: post.extraNames = [] post.mapping = {} post.glyphOrder = otf.getGlyphOrder() else: for attr in ("extraNames", "mapping"): if hasattr(post, attr): delattr(post, attr) post.glyphOrder = None def has_subroutines(otf: ttLib.TTFont) -> bool: """Return True if the font's CFF or CFF2 table contains any subroutines.""" table_tag = _sniff_cff_table_format(otf) top_dict = otf[table_tag].cff.topDictIndex[0] all_subrs = [top_dict.GlobalSubrs] if hasattr(top_dict, "FDArray"): all_subrs.extend( fd.Private.Subrs for fd in top_dict.FDArray if hasattr(fd.Private, "Subrs") ) elif hasattr(top_dict.Private, "Subrs"): all_subrs.append(top_dict.Private.Subrs) return any(all_subrs) def desubroutinize(otf: ttLib.TTFont, inplace=True) -> ttLib.TTFont: """Remove all subroutines from the font. Args: otf (ttLib.TTFont): the input font object. inplace (bool): whether to create a copy or modify the input font. By default the input font is modified. Returns: The modified font containing the desubroutinized CFF or CFF2 table. This will be a different TTFont object if inplace=False. Raises: cffsubr.Error if the font doesn't contain 'CFF ' or 'CFF2' table, or if desubroutinization process fails. """ # the 'desubroutinize' method is dynamically added to the CFF table class # as a side-effect of importing the fontTools.subset.cff module... from fontTools.subset import cff as _ if not inplace: otf = copy.deepcopy(otf) table_tag = _sniff_cff_table_format(otf) try: otf[table_tag].desubroutinize() except Exception as e: raise Error("Desubroutinization failed") from e return otf cffsubr-0.2.9/src/cffsubr/__main__.py000066400000000000000000000040161413553707200174770ustar00rootroot00000000000000import sys import argparse from fontTools import ttLib import cffsubr def main(args=None): """Compress OpenType Font's CFF or CFF2 table by computing subroutines.""" parser = argparse.ArgumentParser("cffsubr", description=main.__doc__) parser.add_argument( "input_file", help="input font file. Must contain either CFF or CFF2 table" ) output_group = parser.add_mutually_exclusive_group() output_group.add_argument( "-o", "--output-file", default=None, help="optional path to output file. By default, dump binary data to stdout", ) output_group.add_argument( "-i", "--inplace", action="store_true", help="whether to overwrite the input file", ) parser.add_argument( "-f", "--cff-version", default=None, type=int, choices=(1, 2), help="output CFF table format version", ) parser.add_argument( "-N", "--no-glyph-names", dest="keep_glyph_names", action="store_false", help="whether to drop postscript glyph names when converting from CFF to CFF2.", ) parser.add_argument( "-d", "--desubroutinize", action="store_true", help="Don't subroutinize, instead remove all subroutines (in any).", ) options = parser.parse_args(args) if options.inplace: options.output_file = options.input_file elif not options.output_file: options.output_file = sys.stdout.buffer # Load TTFont lazily by default assuming output != input; load non-lazily if -i # option is passed, so that fontTools let us overwrite the input file. lazy = True if not options.inplace else None with ttLib.TTFont(options.input_file, lazy=lazy) as font: if options.desubroutinize: cffsubr.desubroutinize(font) else: cffsubr.subroutinize(font, options.cff_version, options.keep_glyph_names) font.save(options.output_file) if __name__ == "__main__": main() cffsubr-0.2.9/tests/000077500000000000000000000000001413553707200143255ustar00rootroot00000000000000cffsubr-0.2.9/tests/cffsubr_test.py000066400000000000000000000117021413553707200173710ustar00rootroot00000000000000import io import pathlib import logging from fontTools import ttLib from fontTools import cffLib import cffsubr import pytest DATA_DIR = pathlib.Path(__file__).parent / "data" def load_test_font(name): font = ttLib.TTFont() font.importXML(DATA_DIR / name) buf = io.BytesIO() font.save(buf) buf.seek(0) return ttLib.TTFont(buf) def recompile_font(otf): buf = io.BytesIO() otf.save(buf) buf.seek(0) return ttLib.TTFont(buf) class TestSubroutinize: @pytest.mark.parametrize( "testfile, table_tag", [ ("SourceSansPro-Regular.subset.ttx", "CFF "), ("SourceSansVariable-Roman.subset.ttx", "CFF2"), ], ) def test_output_same_cff_version(self, testfile, table_tag): font = load_test_font(testfile) assert cffsubr._sniff_cff_table_format(font) == table_tag cffsubr.subroutinize(font) assert cffsubr._sniff_cff_table_format(font) == table_tag @pytest.mark.parametrize( "testfile, cff_version", [ ("SourceSansPro-Regular.subset.ttx", 2), ("SourceSansVariable-Roman.subset.ttx", 1), ], ) def test_output_different_cff_version(self, testfile, cff_version): font = load_test_font(testfile) table_tag = cffsubr._sniff_cff_table_format(font) cffsubr.subroutinize(font, cff_version=cff_version) assert cffsubr._sniff_cff_table_format(font) != table_tag @pytest.mark.parametrize( "testfile", ["SourceSansPro-Regular.subset.ttx", "SourceSansVariable-Roman.subset.ttx"], ) def test_inplace(self, testfile): font = load_test_font(testfile) font2 = cffsubr.subroutinize(font, inplace=False) assert font is not font2 font3 = cffsubr.subroutinize(font, inplace=True) assert font3 is font def test_keep_glyph_names(self): font = load_test_font("SourceSansPro-Regular.subset.ttx") glyph_order = font.getGlyphOrder() assert font["post"].formatType == 3.0 assert font["post"].glyphOrder is None cffsubr.subroutinize(font, cff_version=2) assert font["post"].formatType == 2.0 assert font["post"].glyphOrder == glyph_order font2 = recompile_font(font) assert font2.getGlyphOrder() == glyph_order # now convert from CFF2 to CFF1 and check post format is set to 3.0 # https://github.com/adobe-type-tools/cffsubr/issues/8 cffsubr.subroutinize(font2, cff_version=1) assert font2["post"].formatType == 3.0 assert font2["post"].glyphOrder == None font3 = recompile_font(font2) assert font3.getGlyphOrder() == glyph_order def test_drop_glyph_names(self): font = load_test_font("SourceSansPro-Regular.subset.ttx") glyph_order = font.getGlyphOrder() assert font["post"].formatType == 3.0 assert font["post"].glyphOrder is None cffsubr.subroutinize(font, cff_version=2, keep_glyph_names=False) assert font["post"].formatType == 3.0 assert font["post"].glyphOrder is None buf = io.BytesIO() font.save(buf) buf.seek(0) font2 = ttLib.TTFont(buf) assert font2.getGlyphOrder() != glyph_order def test_non_standard_upem_mute_font_matrix_warning(self, caplog): # See https://github.com/adobe-type-tools/cffsubr/issues/13 font = load_test_font("FontMatrixTest.ttx") assert font["CFF "].cff[0].FontMatrix == [0.0005, 0, 0, 0.0005, 0, 0] cffsubr.subroutinize(font, cff_version=2) with caplog.at_level(logging.WARNING, logger=cffLib.log.name): font2 = recompile_font(font) assert ( "Some CFF FDArray/FontDict keys were ignored upon compile: FontMatrix" not in caplog.text ) @pytest.mark.parametrize( "testfile, table_tag", [ ("SourceSansPro-Regular.subset.ttx", "CFF "), ("SourceSansVariable-Roman.subset.ttx", "CFF2"), ], ) def test_sniff_cff_table_format(testfile, table_tag): font = load_test_font(testfile) assert cffsubr._sniff_cff_table_format(font) == table_tag def test_sniff_cff_table_format_invalid(): with pytest.raises(cffsubr.Error, match="Invalid OTF"): cffsubr._sniff_cff_table_format(ttLib.TTFont()) @pytest.mark.parametrize( "testfile", ["SourceSansPro-Regular.subset.ttx", "SourceSansVariable-Roman.subset.ttx"], ) def test_has_subroutines(testfile): font = load_test_font(testfile) assert not cffsubr.has_subroutines(font) assert cffsubr.has_subroutines(cffsubr.subroutinize(font)) @pytest.mark.parametrize( "testfile", ["SourceSansPro-Regular.subset.ttx", "SourceSansVariable-Roman.subset.ttx"], ) def test_desubroutinize(testfile): font = load_test_font(testfile) cffsubr.subroutinize(font) font2 = cffsubr.desubroutinize(font, inplace=False) assert cffsubr.has_subroutines(font) assert not cffsubr.has_subroutines(font2) cffsubr-0.2.9/tests/data/000077500000000000000000000000001413553707200152365ustar00rootroot00000000000000cffsubr-0.2.9/tests/data/FontMatrixTest.ttx000066400000000000000000000151161413553707200207360ustar00rootroot00000000000000 New Font Regular 0.000;NONE;NewFont-Regular New Font Regular Version 0.000 NewFont-Regular 100 -400 rmoveto 800 2000 -800 -2000 hlineto 100 100 rmoveto 1800 600 -1800 -600 vlineto endchar 0 0 hmoveto 100 100 -100 hlineto endchar endchar cffsubr-0.2.9/tests/data/LICENSE.md000077500000000000000000000107431413553707200166520ustar00rootroot00000000000000Copyright 2010-2018 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. cffsubr-0.2.9/tests/data/SourceSansPro-Regular.subset.ttx000066400000000000000000023244121413553707200234600ustar00rootroot00000000000000 © 2010 - 2019 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. Source Sans Pro Regular 3.006;ADBO;SourceSansPro-Regular;ADOBE Source Sans Pro Version 3.006;hotconv 1.0.111;makeotfexe 2.5.65597 SourceSansPro-Regular Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. Adobe Systems Incorporated Paul D. Hunt http://www.adobe.com/type This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL. This Font Software is distributed on an ‘AS IS’ BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. http://scripts.sil.org/OFL 94 89 0 rmoveto 476 0 rlineto 0 660 rlineto -476 0 rlineto 109 -601 rmoveto 73 131 rlineto 54 102 rlineto 4 0 rlineto 52 -102 rlineto 73 -131 rlineto -129 329 rmoveto -50 94 rlineto -66 118 rlineto 234 0 rlineto -65 -118 rlineto -49 -94 rlineto -175 -277 rmoveto 0 461 rlineto 127 -232 rlineto 217 -229 rmoveto -125 229 rlineto 125 232 rlineto endchar -16 204 366 rmoveto 23 73 21 72 20 76 rrcurveto 4 0 rlineto 21 -76 21 -72 24 -73 rrcurveto 31 -99 rlineto -196 0 rlineto -170 -267 rmoveto 85 0 rlineto 63 199 rlineto 239 0 rlineto 62 -199 rlineto 89 0 rlineto -221 656 rlineto -96 0 rlineto endchar -197 138 632 rmoveto 14 48 15 47 13 49 rrcurveto 2 0 rlineto 14 -48 14 -47 15 -49 rrcurveto 19 -61 rlineto -125 0 rlineto -120 -177 rmoveto 64 0 rlineto 40 127 rlineto 156 0 rlineto 39 -127 rlineto 67 0 rlineto -146 432 rlineto -73 0 rlineto endchar 263 290 376 rmoveto 36 70 36 73 35 71 rrcurveto 4 0 rlineto 0 -332 rlineto -172 0 rlineto -221 -258 rmoveto 89 0 rlineto 98 191 rlineto 206 0 rlineto 0 -191 rlineto 373 0 rlineto 0 71 rlineto -288 0 rlineto 0 238 rlineto 232 0 rlineto 0 71 rlineto -232 0 rlineto 0 205 rlineto 278 0 rlineto 0 71 rlineto -412 0 rlineto endchar -16 204 366 rmoveto 23 73 21 72 20 76 rrcurveto 4 0 rlineto 21 -76 21 -72 24 -73 rrcurveto 31 -99 rlineto -196 0 rlineto -170 -267 rmoveto 85 0 rlineto 63 199 rlineto 239 0 rlineto 62 -199 rlineto 89 0 rlineto -221 656 rlineto -96 0 rlineto -9 41 rmoveto 186 115 rlineto -39 56 rlineto -179 -130 rlineto endchar -16 204 366 rmoveto 23 73 21 72 20 76 rrcurveto 4 0 rlineto 21 -76 21 -72 24 -73 rrcurveto 31 -99 rlineto -196 0 rlineto -170 -267 rmoveto 85 0 rlineto 63 199 rlineto 239 0 rlineto 62 -199 rlineto 89 0 rlineto -221 656 rlineto -96 0 rlineto -65 43 rmoveto 110 92 rlineto 4 0 rlineto 110 -92 rlineto 36 26 rlineto -104 113 rlineto -88 0 rlineto -104 -113 rlineto endchar -16 204 366 rmoveto 23 73 21 72 20 76 rrcurveto 4 0 rlineto 21 -76 21 -72 24 -73 rrcurveto 31 -99 rlineto -196 0 rlineto -170 -267 rmoveto 85 0 rlineto 63 199 rlineto 239 0 rlineto 62 -199 rlineto 89 0 rlineto -221 656 rlineto -96 0 rlineto -56 59 rmoveto 29 0 20 21 0 28 rrcurveto 0 29 -20 21 -29 0 rrcurveto -28 0 -21 -21 0 -29 rrcurveto 0 -28 21 -21 28 0 rrcurveto 206 0 rmoveto 28 0 21 21 0 28 rrcurveto 0 29 -21 21 -28 0 rrcurveto -29 0 -20 -21 0 -29 rrcurveto 0 -28 20 -21 29 0 rrcurveto endchar -16 204 366 rmoveto 23 73 21 72 20 76 rrcurveto 4 0 rlineto 21 -76 21 -72 24 -73 rrcurveto 31 -99 rlineto -196 0 rlineto -170 -267 rmoveto 85 0 rlineto 63 199 rlineto 239 0 rlineto 62 -199 rlineto 89 0 rlineto -221 656 rlineto -96 0 rlineto 103 41 rmoveto 32 41 rlineto -179 130 rlineto -39 -56 rlineto endchar -16 204 366 rmoveto 23 73 21 72 20 76 rrcurveto 4 0 rlineto 21 -76 21 -72 24 -73 rrcurveto 31 -99 rlineto -196 0 rlineto -170 -267 rmoveto 85 0 rlineto 63 199 rlineto 239 0 rlineto 62 -199 rlineto 89 0 rlineto -221 656 rlineto -96 0 rlineto 47 79 rmoveto -33 0 -24 19 0 35 rrcurveto 0 36 24 19 33 0 rrcurveto 33 0 24 -19 0 -36 rrcurveto 0 -35 -24 -19 -33 0 rrcurveto 0 -36 rmoveto 67 0 44 34 0 56 rrcurveto 0 56 -44 35 -67 0 rrcurveto -67 0 -44 -35 0 -56 rrcurveto 0 -56 44 -34 67 0 rrcurveto endchar -16 204 366 rmoveto 23 73 21 72 20 76 rrcurveto 4 0 rlineto 21 -76 21 -72 24 -73 rrcurveto 31 -99 rlineto -196 0 rlineto -170 -267 rmoveto 85 0 rlineto 63 199 rlineto 239 0 rlineto 62 -199 rlineto 89 0 rlineto -221 656 rlineto -96 0 rlineto 122 53 rmoveto 60 0 39 46 3 77 rrcurveto -56 4 rlineto -5 -43 -18 -23 -25 0 rrcurveto -47 0 -26 71 -75 0 rrcurveto -60 0 -39 -46 -3 -77 rrcurveto 56 -4 rlineto 4 42 19 23 25 0 rrcurveto 47 0 26 -70 75 0 rrcurveto endchar 28 90 0 rmoveto 210 0 rlineto 146 0 102 63 0 129 rrcurveto 0 90 -55 52 -78 15 rrcurveto 0 4 rlineto 61 20 35 58 0 65 rrcurveto 0 115 -93 45 -133 0 rrcurveto -195 0 rlineto 84 -279 rmoveto 0 212 rlineto 100 0 rlineto 102 0 52 -28 0 -76 rrcurveto 0 -67 -46 -41 -111 0 rrcurveto -97 -310 rmoveto 0 246 rlineto 114 0 rlineto 114 0 63 -37 0 -81 rrcurveto 0 -88 -65 -40 -112 0 rrcurveto endchar -168 57 394 rmoveto 144 0 rlineto 97 0 69 42 0 85 rrcurveto 0 59 -36 34 -63 11 rrcurveto 0 2 rlineto 51 14 24 38 0 42 rrcurveto 0 76 -63 29 -89 0 rrcurveto -134 0 rlineto 63 -182 rmoveto 0 133 rlineto 65 0 rlineto 64 0 32 -19 0 -44 rrcurveto 0 -45 -28 -25 -71 0 rrcurveto -62 -201 rmoveto 0 155 rlineto 73 0 rlineto 73 0 39 -23 0 -50 rrcurveto 0 -57 -40 -25 -72 0 rrcurveto endchar 11 338 -12 rmoveto 84 0 64 34 53 61 rrcurveto -46 50 rlineto -42 -46 -47 -25 -63 0 rrcurveto -124 0 -78 103 0 165 rrcurveto 0 163 82 101 123 0 rrcurveto 56 0 43 -23 35 -36 rrcurveto 46 52 rlineto -39 43 -62 38 -80 0 rrcurveto -167 0 -124 -129 0 -211 rrcurveto 0 -214 122 -126 164 0 rrcurveto endchar -181 225 386 rmoveto 57 0 44 23 34 40 rrcurveto -35 38 rlineto -26 -29 -31 -17 -40 0 rrcurveto -80 0 -50 65 0 105 rrcurveto 0 103 53 66 80 0 rrcurveto 34 0 27 -15 24 -24 rrcurveto 35 39 rlineto -26 30 -42 24 -53 0 rrcurveto -112 0 -86 -86 0 -139 rrcurveto 0 -141 83 -82 110 0 rrcurveto endchar 11 255 -226 rmoveto 106 5 59 28 0 58 rrcurveto 0 41 -27 19 -46 11 rrcurveto 23 54 rlineto 69 7 54 33 46 53 rrcurveto -46 50 rlineto -42 -46 -47 -25 -63 0 rrcurveto -124 0 -78 103 0 165 rrcurveto 0 163 82 101 123 0 rrcurveto 56 0 43 -23 35 -36 rrcurveto 46 52 rlineto -39 43 -62 38 -80 0 rrcurveto -167 0 -124 -129 0 -211 rrcurveto 0 -204 111 -124 152 -11 rrcurveto -36 -77 rlineto 57 -8 20 -14 0 -26 rrcurveto 0 -29 -25 -15 -84 -6 rrcurveto endchar 56 90 0 rmoveto 168 0 rlineto 198 0 108 122 0 209 rrcurveto 0 208 -108 117 -202 0 rrcurveto -164 0 rlineto 84 -587 rmoveto 0 518 rlineto 74 0 rlineto 153 0 76 -91 0 -165 rrcurveto 0 -166 -76 -96 -153 0 rrcurveto endchar -149 57 394 rmoveto 115 0 rlineto 132 0 74 79 0 140 rrcurveto 0 138 -74 75 -135 0 rrcurveto -112 0 rlineto 63 -381 rmoveto 0 330 rlineto 46 0 rlineto 97 0 50 -54 0 -109 rrcurveto 0 -108 -49 -59 -96 0 rrcurveto endchar -33 90 0 rmoveto 388 0 rlineto 0 71 rlineto -304 0 rlineto 0 238 rlineto 248 0 rlineto 0 71 rlineto -248 0 rlineto 0 205 rlineto 294 0 rlineto 0 71 rlineto -378 0 rlineto endchar -208 57 394 rmoveto 263 0 rlineto 0 53 rlineto -200 0 rlineto 0 148 rlineto 164 0 rlineto 0 52 rlineto -164 0 rlineto 0 127 rlineto 194 0 rlineto 0 52 rlineto -257 0 rlineto endchar -33 90 0 rmoveto 388 0 rlineto 0 71 rlineto -304 0 rlineto 0 238 rlineto 248 0 rlineto 0 71 rlineto -248 0 rlineto 0 205 rlineto 294 0 rlineto 0 71 rlineto -378 0 rlineto 144 41 rmoveto 186 115 rlineto -39 56 rlineto -179 -130 rlineto endchar -33 90 0 rmoveto 388 0 rlineto 0 71 rlineto -304 0 rlineto 0 238 rlineto 248 0 rlineto 0 71 rlineto -248 0 rlineto 0 205 rlineto 294 0 rlineto 0 71 rlineto -378 0 rlineto 88 43 rmoveto 110 92 rlineto 4 0 rlineto 110 -92 rlineto 36 26 rlineto -104 113 rlineto -88 0 rlineto -104 -113 rlineto endchar -33 90 0 rmoveto 388 0 rlineto 0 71 rlineto -304 0 rlineto 0 238 rlineto 248 0 rlineto 0 71 rlineto -248 0 rlineto 0 205 rlineto 294 0 rlineto 0 71 rlineto -378 0 rlineto 97 59 rmoveto 29 0 20 21 0 28 rrcurveto 0 29 -20 21 -29 0 rrcurveto -28 0 -21 -21 0 -29 rrcurveto 0 -28 21 -21 28 0 rrcurveto 206 0 rmoveto 28 0 21 21 0 28 rrcurveto 0 29 -21 21 -28 0 rrcurveto -29 0 -20 -21 0 -29 rrcurveto 0 -28 20 -21 29 0 rrcurveto endchar -33 90 0 rmoveto 388 0 rlineto 0 71 rlineto -304 0 rlineto 0 238 rlineto 248 0 rlineto 0 71 rlineto -248 0 rlineto 0 205 rlineto 294 0 rlineto 0 71 rlineto -378 0 rlineto 256 41 rmoveto 32 41 rlineto -179 130 rlineto -39 -56 rlineto endchar 77 112 0 rmoveto 168 0 rlineto 198 0 108 122 0 209 rrcurveto 0 208 -108 117 -202 0 rrcurveto -164 0 rlineto 0 -280 rlineto -79 -3 rlineto 0 -60 rlineto 79 0 rlineto 84 -244 rmoveto 0 244 rlineto 148 0 rlineto 0 63 rlineto -148 0 rlineto 0 211 rlineto 74 0 rlineto 153 0 76 -91 0 -165 rrcurveto 0 -166 -76 -96 -153 0 rrcurveto endchar -65 90 0 rmoveto 84 0 rlineto 0 293 rlineto 250 0 rlineto 0 71 rlineto -250 0 rlineto 0 221 rlineto 294 0 rlineto 0 71 rlineto -378 0 rlineto endchar -230 57 394 rmoveto 63 0 rlineto 0 189 rlineto 165 0 rlineto 0 53 rlineto -165 0 rlineto 0 138 rlineto 194 0 rlineto 0 52 rlineto -257 0 rlineto endchar 57 348 -12 rmoveto 88 0 72 32 43 44 rrcurveto 0 276 rlineto -216 0 rlineto 0 -69 rlineto 139 0 rlineto 0 -171 rlineto -26 -24 -45 -14 -47 0 rrcurveto -140 0 -77 103 0 165 rrcurveto 0 163 84 101 132 0 rrcurveto 66 0 42 -25 33 -34 rrcurveto 46 52 rlineto -38 41 -60 40 -91 0 rrcurveto -174 0 -127 -129 0 -211 rrcurveto 0 -214 123 -126 173 0 rrcurveto endchar -148 232 386 rmoveto 59 0 49 22 29 28 rrcurveto 0 186 rlineto -145 0 rlineto 0 -52 rlineto 89 0 rlineto 0 -106 rlineto -16 -14 -29 -9 -29 0 rrcurveto -91 0 -50 65 0 106 rrcurveto 0 103 54 65 85 0 rrcurveto 43 0 27 -16 22 -22 rrcurveto 34 39 rlineto -27 27 -40 26 -59 0 rrcurveto -118 0 -86 -85 0 -140 rrcurveto 0 -141 83 -82 116 0 rrcurveto endchar 92 90 0 rmoveto 84 0 rlineto 0 308 rlineto 304 0 rlineto 0 -308 rlineto 84 0 rlineto 0 656 rlineto -84 0 rlineto 0 -274 rlineto -304 0 rlineto 0 274 rlineto -84 0 rlineto endchar -125 57 394 rmoveto 63 0 rlineto 0 200 rlineto 195 0 rlineto 0 -200 rlineto 63 0 rlineto 0 432 rlineto -63 0 rlineto 0 -177 rlineto -195 0 rlineto 0 177 rlineto -63 0 rlineto endchar -297 90 0 rmoveto 84 0 rlineto 0 656 rlineto -84 0 rlineto endchar -383 57 394 rmoveto 63 0 rlineto 0 432 rlineto -63 0 rlineto endchar -297 90 0 rmoveto 84 0 rlineto 0 656 rlineto -84 0 rlineto -14 41 rmoveto 186 115 rlineto -39 56 rlineto -179 -130 rlineto endchar -297 90 0 rmoveto 84 0 rlineto 0 656 rlineto -84 0 rlineto -70 43 rmoveto 110 92 rlineto 4 0 rlineto 110 -92 rlineto 36 26 rlineto -104 113 rlineto -88 0 rlineto -104 -113 rlineto endchar -297 90 0 rmoveto 84 0 rlineto 0 656 rlineto -84 0 rlineto -61 59 rmoveto 29 0 20 21 0 28 rrcurveto 0 29 -20 21 -29 0 rrcurveto -28 0 -21 -21 0 -29 rrcurveto 0 -28 21 -21 28 0 rrcurveto 206 0 rmoveto 28 0 21 21 0 28 rrcurveto 0 29 -21 21 -28 0 rrcurveto -29 0 -20 -21 0 -29 rrcurveto 0 -28 20 -21 29 0 rrcurveto endchar -297 90 0 rmoveto 84 0 rlineto 0 656 rlineto -84 0 rlineto 98 41 rmoveto 32 41 rlineto -179 130 rlineto -39 -56 rlineto endchar -80 207 -12 rmoveto 132 0 54 92 0 116 rrcurveto 0 460 rlineto -84 0 rlineto 0 -453 rlineto 0 -101 -35 -40 -72 0 rrcurveto -48 0 -37 21 -28 49 rrcurveto -56 -38 rlineto 36 -71 59 -35 79 0 rrcurveto endchar -238 140 386 rmoveto 89 0 37 62 0 77 rrcurveto 0 301 rlineto -63 0 rlineto 0 -296 rlineto 0 -64 -23 -25 -45 0 rrcurveto -30 0 -24 14 -19 33 rrcurveto -44 -31 rlineto 26 -46 39 -25 57 0 rrcurveto endchar 19 90 0 rmoveto 84 0 rlineto 0 207 rlineto 112 133 rlineto 195 -340 rlineto 94 0 rlineto -237 406 rlineto 206 250 rlineto -96 0 rlineto -271 -328 rlineto -3 0 rlineto 0 328 rlineto -84 0 rlineto endchar -173 57 394 rmoveto 63 0 rlineto 0 135 rlineto 72 84 rlineto 126 -219 rlineto 70 0 rlineto -158 268 rlineto 136 164 rlineto -71 0 rlineto -173 -209 rlineto -2 0 rlineto 0 209 rlineto -63 0 rlineto endchar -74 90 0 rmoveto 370 0 rlineto 0 71 rlineto -286 0 rlineto 0 585 rlineto -84 0 rlineto endchar -235 57 394 rmoveto 251 0 rlineto 0 53 rlineto -188 0 rlineto 0 379 rlineto -63 0 rlineto endchar 167 89 0 rmoveto 77 0 rlineto 0 362 rlineto 0 58 -7 81 -5 57 rrcurveto 4 0 rlineto 52 -153 rlineto 122 -339 rlineto 61 0 rlineto 123 339 rlineto 51 153 rlineto 4 0 rlineto -5 -57 -7 -81 0 -58 rrcurveto 0 -362 rlineto 79 0 rlineto 0 656 rlineto -105 0 rlineto -124 -351 rlineto -16 -46 -12 -42 -15 -49 rrcurveto -4 0 rlineto -14 49 -14 42 -16 46 rrcurveto -124 351 rlineto -105 0 rlineto endchar -75 57 395 rmoveto 58 0 rlineto 0 226 rlineto 0 38 -3 49 -4 42 rrcurveto 2 0 rlineto 33 -100 rlineto 79 -214 rlineto 42 0 rlineto 78 214 rlineto 33 100 rlineto 2 0 rlineto -4 -42 -4 -49 0 -38 rrcurveto 0 -226 rlineto 60 0 rlineto 0 432 rlineto -74 0 rlineto -82 -225 rlineto -27 -88 rlineto -3 0 rlineto -27 88 rlineto -85 225 rlineto -74 0 rlineto endchar 86 90 0 rmoveto 79 0 rlineto 0 345 rlineto 0 68 -6 71 -5 66 rrcurveto 4 0 rlineto 22 -48 24 -49 25 -44 rrcurveto 234 -409 rlineto 90 0 rlineto 0 656 rlineto -79 0 rlineto 0 -342 rlineto 0 -68 6 -72 5 -68 rrcurveto -4 0 rlineto -23 48 -23 49 -25 44 rrcurveto -234 409 rlineto -90 0 rlineto endchar -130 57 395 rmoveto 58 0 rlineto 0 216 rlineto 0 45 -3 47 -4 46 rrcurveto 3 0 rlineto 47 -94 rlineto 148 -260 rlineto 68 0 rlineto 0 432 rlineto -58 0 rlineto 0 -213 rlineto 0 -46 2 -50 5 -45 rrcurveto -3 0 rlineto -46 94 rlineto -148 260 rlineto -69 0 rlineto endchar 87 90 0 rmoveto 79 0 rlineto 0 345 rlineto 0 68 -6 71 -5 66 rrcurveto 4 0 rlineto 22 -48 24 -49 25 -44 rrcurveto 234 -409 rlineto 90 0 rlineto 0 656 rlineto -79 0 rlineto 0 -342 rlineto 0 -68 6 -72 5 -68 rrcurveto -4 0 rlineto -23 48 -23 49 -25 44 rrcurveto -234 409 rlineto -90 0 rlineto 319 53 rmoveto 60 0 39 46 3 77 rrcurveto -56 4 rlineto -5 -43 -18 -23 -25 0 rrcurveto -47 0 -26 71 -75 0 rrcurveto -60 0 -39 -46 -3 -77 rrcurveto 56 -4 rlineto 4 42 19 23 25 0 rrcurveto 47 0 26 -70 75 0 rrcurveto endchar 104 332 -12 rmoveto 165 0 116 132 0 211 rrcurveto 0 209 -116 128 -165 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -211 115 -132 165 0 rrcurveto 0 74 rmoveto -117 0 -76 105 0 164 rrcurveto 0 163 76 100 117 0 rrcurveto 117 0 77 -100 0 -163 rrcurveto 0 -164 -77 -105 -117 0 rrcurveto endchar -117 221 386 rmoveto 112 0 79 87 0 139 rrcurveto 0 139 -79 83 -112 0 rrcurveto -110 0 -79 -83 0 -139 rrcurveto 0 -139 79 -87 110 0 rrcurveto 0 55 rmoveto -75 0 -48 67 0 104 rrcurveto 0 105 48 63 75 0 rrcurveto 76 0 49 -63 0 -105 rrcurveto 0 -104 -49 -67 -76 0 rrcurveto endchar 104 332 -12 rmoveto 165 0 116 132 0 211 rrcurveto 0 209 -116 128 -165 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -211 115 -132 165 0 rrcurveto 0 74 rmoveto -117 0 -76 105 0 164 rrcurveto 0 163 76 100 117 0 rrcurveto 117 0 77 -100 0 -163 rrcurveto 0 -164 -77 -105 -117 0 rrcurveto -56 635 rmoveto 186 115 rlineto -39 56 rlineto -179 -130 rlineto endchar 104 332 -12 rmoveto 165 0 116 132 0 211 rrcurveto 0 209 -116 128 -165 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -211 115 -132 165 0 rrcurveto 0 74 rmoveto -117 0 -76 105 0 164 rrcurveto 0 163 76 100 117 0 rrcurveto 117 0 77 -100 0 -163 rrcurveto 0 -164 -77 -105 -117 0 rrcurveto -112 637 rmoveto 110 92 rlineto 4 0 rlineto 110 -92 rlineto 36 26 rlineto -104 113 rlineto -88 0 rlineto -104 -113 rlineto endchar 104 332 -12 rmoveto 165 0 116 132 0 211 rrcurveto 0 209 -116 128 -165 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -211 115 -132 165 0 rrcurveto 0 74 rmoveto -117 0 -76 105 0 164 rrcurveto 0 163 76 100 117 0 rrcurveto 117 0 77 -100 0 -163 rrcurveto 0 -164 -77 -105 -117 0 rrcurveto -103 653 rmoveto 29 0 20 21 0 28 rrcurveto 0 29 -20 21 -29 0 rrcurveto -28 0 -21 -21 0 -29 rrcurveto 0 -28 21 -21 28 0 rrcurveto 206 0 rmoveto 28 0 21 21 0 28 rrcurveto 0 29 -21 21 -28 0 rrcurveto -29 0 -20 -21 0 -29 rrcurveto 0 -28 20 -21 29 0 rrcurveto endchar 104 332 -12 rmoveto 165 0 116 132 0 211 rrcurveto 0 209 -116 128 -165 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -211 115 -132 165 0 rrcurveto 0 74 rmoveto -117 0 -76 105 0 164 rrcurveto 0 163 76 100 117 0 rrcurveto 117 0 77 -100 0 -163 rrcurveto 0 -164 -77 -105 -117 0 rrcurveto 56 635 rmoveto 32 41 rlineto -179 130 rlineto -39 -56 rlineto endchar 104 98 -32 rmoveto 64 83 rlineto 46 -41 59 -22 68 0 rrcurveto 165 0 116 132 0 211 rrcurveto 0 94 -23 77 -41 57 rrcurveto 69 89 rlineto -51 40 rlineto -62 -81 rlineto -46 40 -60 21 -67 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -95 23 -78 40 -58 rrcurveto -70 -92 rlineto 94 323 rmoveto 0 163 76 100 117 0 rrcurveto 49 0 43 -18 32 -33 rrcurveto -286 -372 rlineto -20 43 -11 54 0 63 rrcurveto 193 -269 rmoveto -50 0 -42 19 -32 34 rrcurveto 287 373 rlineto 20 -42 11 -53 0 -62 rrcurveto 0 -164 -77 -105 -117 0 rrcurveto endchar 104 332 -12 rmoveto 165 0 116 132 0 211 rrcurveto 0 209 -116 128 -165 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -211 115 -132 165 0 rrcurveto 0 74 rmoveto -117 0 -76 105 0 164 rrcurveto 0 163 76 100 117 0 rrcurveto 117 0 77 -100 0 -163 rrcurveto 0 -164 -77 -105 -117 0 rrcurveto 75 647 rmoveto 60 0 39 46 3 77 rrcurveto -56 4 rlineto -5 -43 -18 -23 -25 0 rrcurveto -47 0 -26 71 -75 0 rrcurveto -60 0 -39 -46 -3 -77 rrcurveto 56 -4 rlineto 4 42 19 23 25 0 rrcurveto 47 0 26 -70 75 0 rrcurveto endchar 7 90 0 rmoveto 84 0 rlineto 0 260 rlineto 107 0 rlineto 144 0 99 64 0 139 rrcurveto 0 144 -100 49 -147 0 rrcurveto -187 0 rlineto 84 -328 rmoveto 0 260 rlineto 93 0 rlineto 115 0 58 -31 0 -94 rrcurveto 0 -93 -55 -42 -114 0 rrcurveto endchar -175 57 394 rmoveto 63 0 rlineto 0 167 rlineto 77 0 rlineto 94 0 69 43 0 94 rrcurveto 0 95 -67 33 -96 0 rrcurveto -140 0 rlineto 63 -214 rmoveto 0 163 rlineto 69 0 rlineto 72 0 36 -19 0 -58 rrcurveto 0 -59 -35 -27 -73 0 rrcurveto endchar 104 332 58 rmoveto -117 0 -76 106 0 167 rrcurveto 0 163 76 100 117 0 rrcurveto 117 0 77 -100 0 -163 rrcurveto 0 -167 -77 -106 -117 0 rrcurveto 201 -223 rmoveto 40 0 35 7 19 9 rrcurveto -16 63 rlineto -17 -5 -23 -4 -29 0 rrcurveto -70 0 -60 29 -30 58 rrcurveto 138 24 93 126 0 189 rrcurveto 0 209 -116 128 -165 0 rrcurveto -165 0 -115 -127 0 -210 rrcurveto 0 -193 96 -127 143 -20 rrcurveto 38 -90 83 -66 121 0 rrcurveto endchar -117 220 439 rmoveto -75 0 -49 68 0 106 rrcurveto 0 103 49 64 75 0 rrcurveto 76 0 49 -64 0 -103 rrcurveto 0 -106 -49 -68 -76 0 rrcurveto 136 -154 rmoveto 28 0 24 6 14 5 rrcurveto -12 48 rlineto -12 -4 -15 -3 -20 0 rrcurveto -46 0 -39 16 -20 37 rrcurveto 91 17 61 83 0 123 rrcurveto 0 137 -78 84 -112 0 rrcurveto -111 0 -78 -83 0 -138 rrcurveto 0 -128 65 -83 95 -14 rrcurveto 26 -61 57 -42 82 0 rrcurveto endchar 10 90 0 rmoveto 84 0 rlineto 0 277 rlineto 118 0 rlineto 158 -277 rlineto 95 0 rlineto -167 286 rlineto 89 23 58 60 0 102 rrcurveto 0 137 -96 48 -134 0 rrcurveto -205 0 rlineto 84 -311 rmoveto 0 243 rlineto 109 0 rlineto 102 0 56 -31 0 -86 rrcurveto 0 -84 -56 -42 -102 0 rrcurveto endchar -171 57 394 rmoveto 63 0 rlineto 0 178 rlineto 76 0 rlineto 101 -178 rlineto 71 0 rlineto -108 186 rlineto 56 17 38 41 0 66 rrcurveto 0 90 -67 32 -89 0 rrcurveto -141 0 rlineto 63 -203 rmoveto 0 152 rlineto 70 0 rlineto 66 0 35 -19 0 -54 rrcurveto 0 -53 -35 -26 -66 0 rrcurveto endchar -26 272 -12 rmoveto 138 0 86 83 0 104 rrcurveto 0 97 -59 46 -76 32 rrcurveto -94 41 rlineto -51 21 -57 24 0 63 rrcurveto 0 58 48 37 73 0 rrcurveto 57 0 51 -23 40 -38 rrcurveto 46 56 rlineto -46 46 -68 33 -80 0 rrcurveto -119 0 -87 -74 0 -100 rrcurveto 0 -97 71 -46 61 -26 rrcurveto 95 -42 rlineto 61 -27 48 -21 0 -67 rrcurveto 0 -63 -51 -43 -86 0 rrcurveto -69 0 -67 30 -48 49 rrcurveto -47 -55 rlineto 57 -61 79 -37 94 0 rrcurveto endchar -204 182 386 rmoveto 93 0 57 56 0 73 rrcurveto 0 60 -34 28 -55 23 rrcurveto -62 27 rlineto -34 15 -37 15 0 39 rrcurveto 0 36 29 24 47 0 rrcurveto 41 0 31 -17 28 -24 rrcurveto 33 40 rlineto -32 32 -48 21 -51 0 rrcurveto -82 0 -60 -50 0 -66 rrcurveto 0 -63 45 -29 44 -20 rrcurveto 63 -27 rlineto 41 -18 30 -13 0 -42 rrcurveto 0 -39 -31 -27 -54 0 rrcurveto -45 0 -45 18 -32 34 rrcurveto -35 -42 rlineto 40 -39 54 -25 61 0 rrcurveto endchar -24 226 0 rmoveto 84 0 rlineto 0 585 rlineto 199 0 rlineto 0 71 rlineto -481 0 rlineto 0 -71 rlineto 198 0 rlineto endchar -203 147 394 rmoveto 63 0 rlineto 0 380 rlineto 130 0 rlineto 0 52 rlineto -323 0 rlineto 0 -52 rlineto 130 0 rlineto endchar 24 90 0 rmoveto 84 0 rlineto 0 150 rlineto 117 0 rlineto 144 0 99 64 0 139 rrcurveto 0 143 -98 50 -145 0 rrcurveto -117 0 rlineto 0 110 rlineto -84 0 rlineto 84 -438 rmoveto 0 260 rlineto 107 0 rlineto 113 0 56 -31 0 -94 rrcurveto 0 -94 -55 -41 -114 0 rrcurveto endchar 86 323 -12 rmoveto 134 0 102 73 0 210 rrcurveto 0 385 rlineto -81 0 rlineto 0 -387 rlineto 0 -157 -68 -50 -87 0 rrcurveto -86 0 -66 50 0 157 rrcurveto 0 387 rlineto -84 0 rlineto 0 -385 rlineto 0 -210 102 -73 134 0 rrcurveto endchar -129 217 386 rmoveto 93 0 66 51 0 140 rrcurveto 0 249 rlineto -60 0 rlineto 0 -252 rlineto 0 -101 -43 -32 -56 0 rrcurveto -57 0 -41 32 0 101 rrcurveto 0 252 rlineto -63 0 rlineto 0 -249 rlineto 0 -140 65 -51 96 0 rrcurveto endchar 86 323 -12 rmoveto 134 0 102 73 0 210 rrcurveto 0 385 rlineto -81 0 rlineto 0 -387 rlineto 0 -157 -68 -50 -87 0 rrcurveto -86 0 -66 50 0 157 rrcurveto 0 387 rlineto -84 0 rlineto 0 -385 rlineto 0 -210 102 -73 134 0 rrcurveto -57 709 rmoveto 186 115 rlineto -39 56 rlineto -179 -130 rlineto endchar 86 323 -12 rmoveto 134 0 102 73 0 210 rrcurveto 0 385 rlineto -81 0 rlineto 0 -387 rlineto 0 -157 -68 -50 -87 0 rrcurveto -86 0 -66 50 0 157 rrcurveto 0 387 rlineto -84 0 rlineto 0 -385 rlineto 0 -210 102 -73 134 0 rrcurveto -113 711 rmoveto 110 92 rlineto 4 0 rlineto 110 -92 rlineto 36 26 rlineto -104 113 rlineto -88 0 rlineto -104 -113 rlineto endchar 86 323 -12 rmoveto 134 0 102 73 0 210 rrcurveto 0 385 rlineto -81 0 rlineto 0 -387 rlineto 0 -157 -68 -50 -87 0 rrcurveto -86 0 -66 50 0 157 rrcurveto 0 387 rlineto -84 0 rlineto 0 -385 rlineto 0 -210 102 -73 134 0 rrcurveto -104 727 rmoveto 29 0 20 21 0 28 rrcurveto 0 29 -20 21 -29 0 rrcurveto -28 0 -21 -21 0 -29 rrcurveto 0 -28 21 -21 28 0 rrcurveto 206 0 rmoveto 28 0 21 21 0 28 rrcurveto 0 29 -21 21 -28 0 rrcurveto -29 0 -20 -21 0 -29 rrcurveto 0 -28 20 -21 29 0 rrcurveto endchar 86 323 -12 rmoveto 134 0 102 73 0 210 rrcurveto 0 385 rlineto -81 0 rlineto 0 -387 rlineto 0 -157 -68 -50 -87 0 rrcurveto -86 0 -66 50 0 157 rrcurveto 0 387 rlineto -84 0 rlineto 0 -385 rlineto 0 -210 102 -73 134 0 rrcurveto 55 709 rmoveto 32 41 rlineto -179 130 rlineto -39 -56 rlineto endchar -44 206 0 rmoveto 97 0 rlineto 213 656 rlineto -86 0 rlineto -109 -354 rlineto -23 -77 -16 -63 -24 -76 rrcurveto -4 0 rlineto -24 76 -17 63 -22 77 rrcurveto -102 354 rlineto -89 0 rlineto endchar -214 137 394 rmoveto 74 0 rlineto 138 432 rlineto -65 0 rlineto -67 -227 rlineto -15 -50 -9 -41 -16 -51 rrcurveto -3 0 rlineto -15 51 -11 41 -15 50 rrcurveto -68 227 rlineto -67 0 rlineto endchar 226 162 0 rmoveto 103 0 rlineto 95 396 rlineto 11 52 10 45 10 57 rrcurveto 4 0 rlineto 9 -57 8 -45 12 -52 rrcurveto 97 -396 rlineto 104 0 rlineto 137 656 rlineto -81 0 rlineto -70 -357 rlineto -12 -71 -12 -70 -11 -74 rrcurveto -4 0 rlineto -14 74 -17 71 -16 70 rrcurveto -89 357 rlineto -83 0 rlineto -91 -357 rlineto -16 -71 -15 -70 -13 -74 rrcurveto -4 0 rlineto -12 74 -11 70 -13 71 rrcurveto -68 357 rlineto -87 0 rlineto endchar -34 105 395 rmoveto 78 0 rlineto 59 250 rlineto 8 33 6 32 6 33 rrcurveto 2 0 rlineto 6 -33 6 -32 8 -33 rrcurveto 61 -250 rlineto 78 0 rlineto 89 432 rlineto -60 0 rlineto -45 -229 rlineto -9 -47 -6 -39 -6 -54 rrcurveto -4 0 rlineto -10 54 -8 39 -12 47 rrcurveto -58 229 rlineto -59 0 rlineto -58 -229 rlineto -12 -47 -8 -39 -9 -54 rrcurveto -4 0 rlineto -7 54 -6 39 -9 47 rrcurveto -44 229 rlineto -65 0 rlineto endchar -46 15 0 rmoveto 89 0 rlineto 94 176 rlineto 17 33 16 33 19 40 rrcurveto 4 0 rlineto 21 -40 18 -33 17 -33 rrcurveto 96 -176 rlineto 93 0 rlineto -191 335 rlineto 179 321 rlineto -89 0 rlineto -87 -167 rlineto -16 -30 -13 -27 -17 -39 rrcurveto -4 0 rlineto -21 39 -14 27 -16 30 rrcurveto -89 167 rlineto -93 0 rlineto 178 -317 rlineto endchar -213 8 394 rmoveto 67 0 rlineto 59 112 rlineto 11 22 12 21 12 27 rrcurveto 3 0 rlineto 14 -27 12 -21 11 -22 rrcurveto 60 -112 rlineto 69 0 rlineto -126 221 rlineto 118 211 rlineto -67 0 rlineto -54 -105 rlineto -9 -20 -9 -18 -12 -26 rrcurveto -3 0 rlineto -14 26 -10 18 -10 20 rrcurveto -55 105 rlineto -70 0 rlineto 118 -208 rlineto endchar -84 196 0 rmoveto 84 0 rlineto 0 254 rlineto 198 402 rlineto -88 0 rlineto -84 -185 rlineto -20 -48 -23 -46 -22 -49 rrcurveto -4 0 rlineto -23 49 -20 46 -21 48 rrcurveto -84 185 rlineto -90 0 rlineto 197 -402 rlineto endchar -239 129 394 rmoveto 63 0 rlineto 0 166 rlineto 132 266 rlineto -66 0 rlineto -53 -117 rlineto -13 -32 -14 -30 -15 -33 rrcurveto -3 0 rlineto -15 33 -13 30 -14 32 rrcurveto -54 117 rlineto -67 0 rlineto 132 -266 rlineto endchar -84 196 0 rmoveto 84 0 rlineto 0 254 rlineto 198 402 rlineto -88 0 rlineto -84 -185 rlineto -20 -48 -23 -46 -22 -49 rrcurveto -4 0 rlineto -23 49 -20 46 -21 48 rrcurveto -84 185 rlineto -90 0 rlineto 197 -402 rlineto -14 443 rmoveto 186 115 rlineto -39 56 rlineto -179 -130 rlineto endchar -21 45 0 rmoveto 452 0 rlineto 0 71 rlineto -348 0 rlineto 345 535 rlineto 0 50 rlineto -418 0 rlineto 0 -71 rlineto 313 0 rlineto -344 -535 rlineto endchar -202 27 394 rmoveto 305 0 rlineto 0 53 rlineto -227 0 rlineto 225 342 rlineto 0 37 rlineto -283 0 rlineto 0 -52 rlineto 205 0 rlineto -225 -342 rlineto endchar -56 194 -12 rmoveto 61 0 53 31 46 39 rrcurveto 3 0 rlineto 8 -58 rlineto 68 0 rlineto 0 299 rlineto 0 120 -51 79 -118 0 rrcurveto -78 0 -68 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 56 0 rrcurveto 79 0 20 -59 1 -61 rrcurveto -208 -23 -90 -52 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 54 rrcurveto 0 63 53 37 164 19 rrcurveto 0 -132 rlineto -47 -41 -39 -21 -47 0 rrcurveto endchar -215 136 387 rmoveto 41 0 33 21 27 24 rrcurveto 4 0 rlineto 7 -37 rlineto 49 0 rlineto 0 196 rlineto 0 85 -34 48 -80 0 rrcurveto -52 0 -48 -22 -33 -20 rrcurveto 23 -42 rlineto 27 16 39 18 35 0 rrcurveto 47 0 14 -31 1 -43 rrcurveto -139 -12 -60 -36 0 -71 rrcurveto 0 -57 40 -37 59 0 rrcurveto 18 49 rmoveto -35 0 -21 16 0 34 rrcurveto 0 36 35 25 103 12 rrcurveto 0 -83 rlineto -29 -27 -26 -13 -27 0 rrcurveto endchar -55 194 -12 rmoveto 61 0 53 31 46 39 rrcurveto 3 0 rlineto 8 -58 rlineto 68 0 rlineto 0 299 rlineto 0 120 -51 79 -118 0 rrcurveto -78 0 -68 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 56 0 rrcurveto 79 0 20 -59 1 -61 rrcurveto -208 -23 -90 -52 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 54 rrcurveto 0 63 53 37 164 19 rrcurveto 0 -132 rlineto -47 -41 -39 -21 -47 0 rrcurveto 7 517 rmoveto 179 153 rlineto -51 55 rlineto -170 -166 rlineto endchar -55 194 -12 rmoveto 61 0 53 31 46 39 rrcurveto 3 0 rlineto 8 -58 rlineto 68 0 rlineto 0 299 rlineto 0 120 -51 79 -118 0 rrcurveto -78 0 -68 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 56 0 rrcurveto 79 0 20 -59 1 -61 rrcurveto -208 -23 -90 -52 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 54 rrcurveto 0 63 53 37 164 19 rrcurveto 0 -132 rlineto -47 -41 -39 -21 -47 0 rrcurveto -70 512 rmoveto 118 113 rlineto 4 0 rlineto 118 -113 rlineto 35 32 rlineto -113 140 rlineto -84 0 rlineto -113 -140 rlineto endchar -18 228 573 rmoveto 179 153 rlineto -51 55 rlineto -170 -166 rlineto endchar -55 194 -12 rmoveto 61 0 53 31 46 39 rrcurveto 3 0 rlineto 8 -58 rlineto 68 0 rlineto 0 299 rlineto 0 120 -51 79 -118 0 rrcurveto -78 0 -68 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 56 0 rrcurveto 79 0 20 -59 1 -61 rrcurveto -208 -23 -90 -52 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 54 rrcurveto 0 63 53 37 164 19 rrcurveto 0 -132 rlineto -47 -41 -39 -21 -47 0 rrcurveto -46 531 rmoveto 28 0 21 22 0 28 rrcurveto 0 28 -21 22 -28 0 rrcurveto -29 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 29 0 rrcurveto 192 0 rmoveto 29 0 21 22 0 28 rrcurveto 0 28 -21 22 -29 0 rrcurveto -28 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 28 0 rrcurveto endchar 218 194 -12 rmoveto 63 0 70 32 65 59 rrcurveto 38 -49 52 -42 82 0 rrcurveto 66 0 48 20 44 30 rrcurveto -30 53 rlineto -35 -24 -37 -12 -46 0 rrcurveto -83 0 -62 63 -7 103 rrcurveto 315 0 rlineto 2 12 2 19 0 17 rrcurveto 0 139 -66 90 -119 0 rrcurveto -67 0 -57 -40 -36 -64 rrcurveto -19 64 -49 40 -72 0 rrcurveto -69 0 -69 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 52 0 rrcurveto 80 0 20 -58 0 -62 rrcurveto -202 -22 -92 -53 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 55 rrcurveto 0 63 57 36 155 19 rrcurveto 1 -24 rlineto 2 -37 6 -35 11 -26 rrcurveto -44 -47 -59 -25 -45 0 rrcurveto 206 227 rmoveto 10 87 53 62 68 0 rrcurveto 71 0 42 -53 0 -96 rrcurveto endchar -55 194 -12 rmoveto 61 0 53 31 46 39 rrcurveto 3 0 rlineto 8 -58 rlineto 68 0 rlineto 0 299 rlineto 0 120 -51 79 -118 0 rrcurveto -78 0 -68 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 56 0 rrcurveto 79 0 20 -59 1 -61 rrcurveto -208 -23 -90 -52 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 54 rrcurveto 0 63 53 37 164 19 rrcurveto 0 -132 rlineto -47 -41 -39 -21 -47 0 rrcurveto 93 517 rmoveto 42 42 rlineto -170 166 rlineto -51 -55 rlineto endchar 50 190 514 rmoveto 0 54 31 41 49 0 rrcurveto 44 0 18 -34 0 -38 rrcurveto 0 -58 -51 -40 -60 -40 rrcurveto -20 40 -11 39 0 36 rrcurveto 42 -526 rmoveto 77 0 62 30 51 45 rrcurveto 53 -37 51 -25 46 -13 rrcurveto 23 69 rlineto -36 10 -42 22 -45 30 rrcurveto 52 69 38 80 25 86 rrcurveto -78 0 rlineto -20 -75 -31 -65 -41 -53 rrcurveto -62 51 -60 65 -43 67 rrcurveto 72 53 75 55 0 86 rrcurveto 0 77 -48 53 -81 0 rrcurveto -91 0 -61 -68 0 -88 rrcurveto 0 -47 16 -53 27 -52 rrcurveto -67 -47 -62 -55 0 -88 rrcurveto 0 -106 81 -76 119 0 rrcurveto -119 187 rmoveto 0 51 36 39 46 37 rrcurveto 45 -71 62 -68 65 -56 rrcurveto -39 -32 -42 -21 -44 0 rrcurveto -72 0 -57 48 0 73 rrcurveto endchar -55 194 -12 rmoveto 61 0 53 31 46 39 rrcurveto 3 0 rlineto 8 -58 rlineto 68 0 rlineto 0 299 rlineto 0 120 -51 79 -118 0 rrcurveto -78 0 -68 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 56 0 rrcurveto 79 0 20 -59 1 -61 rrcurveto -208 -23 -90 -52 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 54 rrcurveto 0 63 53 37 164 19 rrcurveto 0 -132 rlineto -47 -41 -39 -21 -47 0 rrcurveto 50 498 rmoveto 68 0 42 42 0 57 rrcurveto 0 56 -42 42 -68 0 rrcurveto -68 0 -42 -42 0 -56 rrcurveto 0 -57 42 -42 68 0 rrcurveto 0 37 rmoveto -32 0 -25 24 0 38 rrcurveto 0 37 25 24 32 0 rrcurveto 32 0 25 -24 0 -37 rrcurveto 0 -38 -25 -24 -32 0 rrcurveto endchar -63 60 284 rmoveto 72 0 rlineto 66 175 rlineto 49 133 rlineto 4 0 rlineto 49 -133 rlineto 65 -175 rlineto 73 0 rlineto -153 386 rlineto -73 0 rlineto endchar -63 336 257 rmoveto 44 0 45 26 36 63 rrcurveto -46 34 rlineto -23 -43 -25 -18 -29 0 rrcurveto -56 0 -42 84 -79 0 rrcurveto -43 0 -46 -26 -36 -64 rrcurveto 47 -33 rlineto 22 43 25 18 29 0 rrcurveto 56 0 42 -84 79 0 rrcurveto endchar -142 138 419 rmoveto 72 86 rlineto 70 -86 rlineto 40 29 rlineto -57 94 rlineto 98 41 rlineto -15 46 rlineto -103 -24 rlineto -9 107 rlineto -50 0 rlineto -9 -108 rlineto -102 25 rlineto -15 -46 rlineto 97 -41 rlineto -57 -94 rlineto endchar 286 402 -155 rmoveto 70 0 62 17 59 34 rrcurveto -25 54 rlineto -44 -25 -55 -17 -60 0 rrcurveto -166 0 -124 108 0 190 rrcurveto 0 228 168 149 174 0 rrcurveto 176 0 93 -115 0 -156 rrcurveto 0 -127 -68 -76 -58 0 rrcurveto -52 0 -17 36 17 77 rrcurveto 40 203 rlineto -58 0 rlineto -11 -40 rlineto -3 0 rlineto -18 34 -24 15 -41 0 rrcurveto -116 0 -77 -128 0 -108 rrcurveto 0 -95 55 -50 69 0 rrcurveto 45 0 45 29 31 40 rrcurveto 3 0 rlineto 8 -50 41 -26 55 0 rrcurveto 92 0 110 92 0 177 rrcurveto 0 197 -127 134 -204 0 rrcurveto -225 0 -194 -175 0 -268 rrcurveto 0 -233 158 -125 196 0 rrcurveto -18 271 rmoveto -37 0 -29 26 0 61 rrcurveto 0 74 48 93 75 0 rrcurveto 27 0 18 -10 20 -31 rrcurveto -29 -155 rlineto -35 -41 -29 -17 -29 0 rrcurveto endchar -55 194 -12 rmoveto 61 0 53 31 46 39 rrcurveto 3 0 rlineto 8 -58 rlineto 68 0 rlineto 0 299 rlineto 0 120 -51 79 -118 0 rrcurveto -78 0 -68 -33 -45 -30 rrcurveto 32 -56 rlineto 38 25 51 25 56 0 rrcurveto 79 0 20 -59 1 -61 rrcurveto -208 -23 -90 -52 0 -108 rrcurveto 0 -88 61 -50 81 0 rrcurveto 23 68 rmoveto -47 0 -37 21 0 54 rrcurveto 0 63 53 37 164 19 rrcurveto 0 -132 rlineto -47 -41 -39 -21 -47 0 rrcurveto 122 521 rmoveto 69 0 29 58 3 77 rrcurveto -55 4 rlineto -3 -46 -14 -33 -29 0 rrcurveto -47 0 -26 84 -71 0 rrcurveto -69 0 -29 -58 -3 -78 rrcurveto 55 -3 rlineto 3 47 14 32 30 0 rrcurveto 46 0 26 -84 71 0 rrcurveto endchar -6 297 -12 rmoveto 111 0 100 97 0 166 rrcurveto 0 150 -68 97 -125 0 rrcurveto -54 0 -54 -29 -45 -38 rrcurveto 3 87 rlineto 0 194 rlineto -83 0 rlineto 0 -712 rlineto 66 0 rlineto 8 50 rlineto 3 0 rlineto 43 -39 50 -23 45 0 rrcurveto -14 70 rmoveto -32 0 -44 13 -42 37 rrcurveto 0 254 rlineto 46 44 42 22 41 0 rrcurveto 91 0 37 -71 0 -107 rrcurveto 0 -120 -59 -72 -80 0 rrcurveto endchar -186 202 386 rmoveto 73 0 66 64 0 111 rrcurveto 0 99 -46 64 -84 0 rrcurveto -37 0 -33 -20 -30 -25 rrcurveto 3 58 rlineto 0 126 rlineto -62 0 rlineto 0 -469 rlineto 48 0 rlineto 6 33 rlineto 4 0 rlineto 27 -27 35 -14 30 0 rrcurveto -10 52 rmoveto -23 0 -28 9 -27 22 rrcurveto 0 161 rlineto 28 27 28 15 26 0 rrcurveto 56 0 25 -42 0 -69 rrcurveto 0 -79 -37 -44 -48 0 rrcurveto endchar -210 280 -160 rmoveto 60 0 rlineto -266 870 rlineto -60 0 rlineto endchar -318 92 -250 rmoveto 58 0 rlineto 0 1000 rlineto -58 0 rlineto endchar -256 228 -152 rmoveto 45 0 rlineto 0 47 rlineto -26 0 rlineto -54 0 -14 27 0 64 rrcurveto 0 61 5 52 0 68 rrcurveto 0 64 -16 33 -44 12 rrcurveto 0 4 rlineto 44 12 16 32 0 65 rrcurveto 0 68 -5 52 0 61 rrcurveto 0 64 14 27 54 0 rrcurveto 26 0 rlineto 0 47 rlineto -45 0 rlineto -79 0 -38 -30 0 -103 rrcurveto 0 -73 9 -53 0 -68 rrcurveto 0 -38 -18 -38 -68 -1 rrcurveto 0 -52 rlineto 68 -1 18 -38 0 -39 rrcurveto 0 -67 -9 -53 0 -73 rrcurveto 0 -103 38 -30 79 0 rrcurveto endchar -256 31 -152 rmoveto 45 0 rlineto 79 0 38 30 0 103 rrcurveto 0 73 -9 53 0 67 rrcurveto 0 39 18 38 68 1 rrcurveto 0 52 rlineto -68 1 -18 38 0 38 rrcurveto 0 68 9 53 0 73 rrcurveto 0 103 -38 30 -79 0 rrcurveto -45 0 rlineto 0 -47 rlineto 26 0 rlineto 54 0 14 -27 0 -64 rrcurveto 0 -61 -5 -52 0 -68 rrcurveto 0 -65 16 -32 43 -12 rrcurveto 0 -4 rlineto -43 -12 -16 -33 0 -64 rrcurveto 0 -68 5 -52 0 -61 rrcurveto 0 -64 -14 -27 -54 0 rrcurveto -26 0 rlineto endchar -256 94 -152 rmoveto 179 0 rlineto 0 47 rlineto -116 0 rlineto 0 766 rlineto 116 0 rlineto 0 47 rlineto -179 0 rlineto endchar -256 31 -152 rmoveto 179 0 rlineto 0 860 rlineto -179 0 rlineto 0 -47 rlineto 116 0 rlineto 0 -766 rlineto -116 0 rlineto endchar -318 92 291 rmoveto 58 0 rlineto 0 459 rlineto -58 0 rlineto 0 -1000 rmoveto 58 0 rlineto 0 464 rlineto -58 0 rlineto endchar -104 274 -12 rmoveto 58 0 55 22 44 40 rrcurveto -36 53 rlineto -29 -26 -40 -20 -45 0 rrcurveto -89 0 -60 74 0 111 rrcurveto 0 112 64 75 88 0 rrcurveto 39 0 31 -15 27 -25 rrcurveto 41 52 rlineto -34 32 -44 25 -64 0 rrcurveto -125 0 -109 -93 0 -163 rrcurveto 0 -161 99 -93 129 0 rrcurveto endchar -254 184 386 rmoveto 50 0 33 19 23 19 rrcurveto -26 41 rlineto -19 -15 -21 -12 -34 0 rrcurveto -57 0 -39 48 0 69 rrcurveto 0 70 41 48 55 0 rrcurveto 29 0 16 -9 20 -16 rrcurveto 30 41 rlineto -20 17 -32 18 -47 0 rrcurveto -83 0 -73 -62 0 -107 rrcurveto 0 -107 65 -62 89 0 rrcurveto endchar -104 179 -226 rmoveto 106 5 59 28 0 58 rrcurveto 0 41 -27 19 -46 11 rrcurveto 23 53 rlineto 51 4 47 22 39 35 rrcurveto -36 53 rlineto -29 -26 -40 -20 -45 0 rrcurveto -89 0 -60 74 0 111 rrcurveto 0 112 64 75 88 0 rrcurveto 39 0 31 -15 27 -25 rrcurveto 41 52 rlineto -34 32 -44 25 -64 0 rrcurveto -125 0 -109 -93 0 -163 rrcurveto 0 -147 82 -90 112 -15 rrcurveto -37 -78 rlineto 57 -8 20 -14 0 -26 rrcurveto 0 -29 -25 -15 -84 -6 rrcurveto endchar -18 190 -226 rmoveto 106 5 59 28 0 58 rrcurveto 0 41 -27 19 -46 11 rrcurveto 29 67 rlineto -54 0 rlineto -43 -91 rlineto 57 -8 20 -14 0 -26 rrcurveto 0 -29 -25 -15 -84 -6 rrcurveto endchar -63 262 -33 rmoveto 52 0 rlineto 0 103 rlineto 52 4 49 23 40 35 rrcurveto -37 53 rlineto -27 -23 -35 -21 -42 -3 rrcurveto 0 343 rlineto 35 -2 29 -16 27 -23 rrcurveto 40 52 rlineto -31 29 -42 26 -58 3 rrcurveto 0 103 rlineto -52 0 rlineto 0 -106 rlineto -113 -16 -88 -83 0 -138 rrcurveto 0 -141 82 -84 119 -14 rrcurveto -119 239 rmoveto 0 86 46 62 73 18 rrcurveto 0 -333 rlineto -74 16 -45 63 0 88 rrcurveto endchar -310 125 348 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto 0 -360 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto endchar -383 89 386 rmoveto 26 0 20 19 0 28 rrcurveto 0 29 -20 20 -26 0 rrcurveto -27 0 -19 -20 0 -29 rrcurveto 0 -28 19 -19 27 0 rrcurveto 0 225 rmoveto 26 0 20 19 0 28 rrcurveto 0 29 -20 20 -26 0 rrcurveto -27 0 -19 -20 0 -29 rrcurveto 0 -28 19 -19 27 0 rrcurveto endchar -310 67 -170 rmoveto 82 33 50 68 0 86 rrcurveto 0 61 -26 37 -44 0 rrcurveto -33 0 -28 -22 0 -36 rrcurveto 0 -38 27 -20 32 0 rrcurveto 4 0 3 0 4 1 rrcurveto 0 -53 -34 -44 -57 -25 rrcurveto endchar -383 49 -116 rmoveto 59 22 37 49 0 59 rrcurveto 0 48 -21 26 -33 0 rrcurveto -25 0 -22 -18 0 -28 rrcurveto 0 -29 22 -14 24 0 rrcurveto 2 0 3 0 2 1 rrcurveto 0 -37 -24 -27 -40 -15 rrcurveto endchar -383 49 150 rmoveto 59 22 37 49 0 59 rrcurveto 0 48 -21 26 -33 0 rrcurveto -25 0 -22 -18 0 -28 rrcurveto 0 -29 22 -14 24 0 rrcurveto 2 0 3 0 2 1 rrcurveto 0 -37 -24 -27 -40 -15 rrcurveto endchar -383 49 278 rmoveto 59 22 37 49 0 59 rrcurveto 0 48 -21 26 -33 0 rrcurveto -25 0 -22 -18 0 -28 rrcurveto 0 -29 22 -14 24 0 rrcurveto 2 0 3 0 2 1 rrcurveto 0 -37 -24 -27 -40 -15 rrcurveto endchar 184 372 -11 rmoveto 174 0 149 130 0 204 rrcurveto 0 203 -149 127 -174 0 rrcurveto -174 0 -149 -127 0 -203 rrcurveto 0 -204 149 -130 174 0 rrcurveto 0 42 rmoveto -151 0 -125 117 0 175 rrcurveto 0 174 125 115 151 0 rrcurveto 151 0 125 -115 0 -174 rrcurveto 0 -175 -125 -117 -151 0 rrcurveto 8 94 rmoveto 60 0 38 23 36 35 rrcurveto -32 40 rlineto -29 -26 -24 -16 -46 0 rrcurveto -72 0 -46 52 0 83 rrcurveto 0 83 49 57 72 0 rrcurveto 35 0 29 -14 23 -26 rrcurveto 36 37 rlineto -30 33 -40 26 -56 0 rrcurveto -97 0 -88 -75 0 -121 rrcurveto 0 -120 80 -71 102 0 rrcurveto endchar -63 71 102 rmoveto 67 69 rlineto 32 -24 38 -13 41 0 rrcurveto 39 0 40 13 31 24 rrcurveto 68 -69 rlineto 44 46 rlineto -64 65 rlineto 22 31 14 39 0 46 rrcurveto 0 46 -13 40 -23 31 rrcurveto 64 65 rlineto -44 46 rlineto -68 -69 rlineto -31 23 -39 13 -40 0 rrcurveto -41 0 -39 -13 -31 -23 rrcurveto -67 69 rlineto -45 -46 rlineto 64 -65 rlineto -23 -31 -13 -40 0 -46 rrcurveto 0 -46 13 -39 23 -31 rrcurveto -64 -65 rlineto 223 48 rmoveto -65 0 -53 53 0 80 rrcurveto 0 79 53 55 65 0 rrcurveto 64 0 54 -55 0 -79 rrcurveto 0 -80 -54 -53 -64 0 rrcurveto endchar -5 248 -12 rmoveto 57 0 52 32 38 37 rrcurveto 3 0 rlineto 7 -57 rlineto 68 0 rlineto 0 712 rlineto -83 0 rlineto 0 -187 rlineto 4 -83 rlineto -43 35 -37 21 -56 0 rrcurveto -111 0 -100 -98 0 -158 rrcurveto 0 -162 79 -92 122 0 rrcurveto 18 70 rmoveto -85 0 -48 69 0 116 rrcurveto 0 111 62 74 77 0 rrcurveto 40 0 37 -13 41 -37 rrcurveto 0 -254 rlineto -40 -44 -39 -22 -45 0 rrcurveto endchar -186 170 386 rmoveto 37 0 29 20 26 23 rrcurveto 3 0 rlineto 7 -35 rlineto 50 0 rlineto 0 469 rlineto -62 0 rlineto 0 -119 rlineto 3 -56 rlineto -27 22 -28 14 -35 0 rrcurveto -72 0 -68 -62 0 -101 rrcurveto 0 -111 52 -64 85 0 rrcurveto 14 52 rmoveto -59 0 -28 44 0 79 rrcurveto 0 67 40 45 46 0 rrcurveto 24 0 26 -9 27 -23 rrcurveto 0 -162 rlineto -27 -27 -23 -14 -26 0 rrcurveto endchar -228 166 429 rmoveto 67 0 59 50 0 77 rrcurveto 0 79 -59 50 -67 0 rrcurveto -67 0 -58 -50 0 -79 rrcurveto 0 -77 58 -50 67 0 rrcurveto 0 46 rmoveto -44 0 -31 34 0 47 rrcurveto 0 48 31 35 44 0 rrcurveto 44 0 31 -35 0 -48 rrcurveto 0 -47 -31 -34 -44 0 rrcurveto endchar -18 175 587 rmoveto 28 0 21 22 0 28 rrcurveto 0 28 -21 22 -28 0 rrcurveto -29 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 29 0 rrcurveto 192 0 rmoveto 29 0 21 22 0 28 rrcurveto 0 28 -21 22 -29 0 rrcurveto -28 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 28 0 rrcurveto endchar -63 34 299 rmoveto 429 0 rlineto 0 62 rlineto -429 0 rlineto 215 -266 rmoveto 30 0 24 23 0 32 rrcurveto 0 31 -24 22 -30 0 rrcurveto -31 0 -24 -22 0 -31 rrcurveto 0 -32 24 -23 31 0 rrcurveto 0 360 rmoveto 30 0 24 23 0 32 rrcurveto 0 31 -24 22 -30 0 rrcurveto -31 0 -24 -22 0 -31 rrcurveto 0 -32 24 -23 31 0 rrcurveto endchar -63 222 -110 rmoveto 61 0 rlineto 0 101 rlineto 94 14 60 69 0 97 rrcurveto 0 190 -279 -5 0 129 rrcurveto 0 57 39 39 60 0 rrcurveto 54 0 37 -20 32 -35 rrcurveto 45 45 rlineto -34 41 -45 30 -63 7 rrcurveto 0 99 rlineto -61 0 rlineto 0 -101 rlineto -87 -13 -58 -64 0 -89 rrcurveto 0 -179 279 3 0 -140 rrcurveto 0 -65 -37 -43 -74 0 rrcurveto -61 0 -51 24 -42 39 rrcurveto -39 -51 rlineto 40 -46 62 -29 68 -5 rrcurveto endchar -64 278 -12 rmoveto 67 0 52 20 42 30 rrcurveto -29 53 rlineto -34 -23 -41 -13 -47 0 rrcurveto -92 0 -61 66 -7 100 rrcurveto 327 0 rlineto 3 16 1 15 0 18 rrcurveto 0 140 -71 88 -124 0 rrcurveto -111 0 -107 -97 0 -158 rrcurveto 0 -161 102 -94 130 0 rrcurveto -150 297 rmoveto 10 93 60 54 68 0 rrcurveto 74 0 45 -51 0 -96 rrcurveto endchar -224 186 386 rmoveto 44 0 37 16 31 21 rrcurveto -22 39 rlineto -22 -15 -30 -11 -31 0 rrcurveto -59 0 -41 40 -3 63 rrcurveto 216 0 rlineto 3 14 1 9 0 15 rrcurveto 0 63 -31 84 -101 0 rrcurveto -81 0 -69 -65 0 -103 rrcurveto 0 -108 70 -62 88 0 rrcurveto -96 198 rmoveto 7 55 33 35 49 0 rrcurveto 56 0 19 -48 0 -42 rrcurveto endchar -64 278 -12 rmoveto 67 0 52 20 42 30 rrcurveto -29 53 rlineto -34 -23 -41 -13 -47 0 rrcurveto -92 0 -61 66 -7 100 rrcurveto 327 0 rlineto 3 16 1 15 0 18 rrcurveto 0 140 -71 88 -124 0 rrcurveto -111 0 -107 -97 0 -158 rrcurveto 0 -161 102 -94 130 0 rrcurveto -150 297 rmoveto 10 93 60 54 68 0 rrcurveto 74 0 45 -51 0 -96 rrcurveto -164 288 rmoveto 179 153 rlineto -51 55 rlineto -170 -166 rlineto endchar -224 139 766 rmoveto 131 110 rlineto -39 40 rlineto -123 -119 rlineto 78 -411 rmoveto 44 0 37 16 31 21 rrcurveto -22 39 rlineto -22 -15 -30 -11 -31 0 rrcurveto -59 0 -41 40 -3 63 rrcurveto 216 0 rlineto 3 14 1 9 0 15 rrcurveto 0 63 -31 84 -101 0 rrcurveto -81 0 -69 -65 0 -103 rrcurveto 0 -108 70 -62 88 0 rrcurveto -96 198 rmoveto 7 55 33 35 49 0 rrcurveto 56 0 19 -48 0 -42 rrcurveto endchar -64 278 -12 rmoveto 67 0 52 20 42 30 rrcurveto -29 53 rlineto -34 -23 -41 -13 -47 0 rrcurveto -92 0 -61 66 -7 100 rrcurveto 327 0 rlineto 3 16 1 15 0 18 rrcurveto 0 140 -71 88 -124 0 rrcurveto -111 0 -107 -97 0 -158 rrcurveto 0 -161 102 -94 130 0 rrcurveto -150 297 rmoveto 10 93 60 54 68 0 rrcurveto 74 0 45 -51 0 -96 rrcurveto -241 283 rmoveto 118 113 rlineto 4 0 rlineto 118 -113 rlineto 35 32 rlineto -113 140 rlineto -84 0 rlineto -113 -140 rlineto endchar -64 278 -12 rmoveto 67 0 52 20 42 30 rrcurveto -29 53 rlineto -34 -23 -41 -13 -47 0 rrcurveto -92 0 -61 66 -7 100 rrcurveto 327 0 rlineto 3 16 1 15 0 18 rrcurveto 0 140 -71 88 -124 0 rrcurveto -111 0 -107 -97 0 -158 rrcurveto 0 -161 102 -94 130 0 rrcurveto -150 297 rmoveto 10 93 60 54 68 0 rrcurveto 74 0 45 -51 0 -96 rrcurveto -217 302 rmoveto 28 0 21 22 0 28 rrcurveto 0 28 -21 22 -28 0 rrcurveto -29 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 29 0 rrcurveto 192 0 rmoveto 29 0 21 22 0 28 rrcurveto 0 28 -21 22 -29 0 rrcurveto -28 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 28 0 rrcurveto endchar -64 278 -12 rmoveto 67 0 52 20 42 30 rrcurveto -29 53 rlineto -34 -23 -41 -13 -47 0 rrcurveto -92 0 -61 66 -7 100 rrcurveto 327 0 rlineto 3 16 1 15 0 18 rrcurveto 0 140 -71 88 -124 0 rrcurveto -111 0 -107 -97 0 -158 rrcurveto 0 -161 102 -94 130 0 rrcurveto -150 297 rmoveto 10 93 60 54 68 0 rrcurveto 74 0 45 -51 0 -96 rrcurveto -78 288 rmoveto 42 42 rlineto -170 166 rlineto -51 -55 rlineto endchar -224 211 766 rmoveto 31 31 rlineto -123 119 rlineto -39 -40 rlineto 106 -491 rmoveto 44 0 37 16 31 21 rrcurveto -22 39 rlineto -22 -15 -30 -11 -31 0 rrcurveto -59 0 -41 40 -3 63 rrcurveto 216 0 rlineto 3 14 1 9 0 15 rrcurveto 0 63 -31 84 -101 0 rrcurveto -81 0 -69 -65 0 -103 rrcurveto 0 -108 70 -62 88 0 rrcurveto -96 198 rmoveto 7 55 33 35 49 0 rrcurveto 56 0 19 -48 0 -42 rrcurveto endchar -63 250 -12 rmoveto 124 0 82 75 0 95 rrcurveto 0 86 -54 45 -57 33 rrcurveto 0 4 rlineto 40 30 48 57 0 67 rrcurveto 0 99 -69 71 -111 0 rrcurveto -103 0 -78 -66 0 -98 rrcurveto 0 -67 42 -47 47 -33 rrcurveto 0 -4 rlineto -60 -32 -60 -57 0 -83 rrcurveto 0 -101 89 -74 120 0 rrcurveto 45 360 rmoveto -77 30 -70 32 0 76 rrcurveto 0 62 44 40 59 0 rrcurveto 70 0 41 -50 0 -62 rrcurveto 0 -47 -24 -43 -43 -38 rrcurveto -43 -298 rmoveto -78 0 -58 51 0 70 rrcurveto 0 58 38 47 50 33 rrcurveto 92 -37 81 -29 0 -82 rrcurveto 0 -66 -51 -45 -74 0 rrcurveto endchar -193 182 -12 rmoveto 79 0 59 49 0 63 rrcurveto 0 47 -28 31 -44 23 rrcurveto 0 4 rlineto 26 18 33 31 0 45 rrcurveto 0 63 -55 40 -70 0 rrcurveto -67 0 -54 -41 0 -62 rrcurveto 0 -41 24 -26 34 -22 rrcurveto 0 -4 rlineto -38 -22 -36 -38 0 -49 rrcurveto 0 -59 55 -50 82 0 rrcurveto 23 235 rmoveto -47 15 -38 20 0 40 rrcurveto 0 32 28 23 34 0 rrcurveto 36 0 29 -22 0 -34 rrcurveto 0 -26 -13 -26 -29 -22 rrcurveto -23 -188 rmoveto -46 0 -31 33 0 35 rrcurveto 0 32 19 28 35 21 rrcurveto 53 -22 48 -12 0 -48 rrcurveto 0 -37 -35 -30 -43 0 rrcurveto endchar -193 182 254 rmoveto 79 0 59 49 0 63 rrcurveto 0 47 -28 31 -44 23 rrcurveto 0 4 rlineto 26 18 33 31 0 45 rrcurveto 0 63 -55 40 -70 0 rrcurveto -67 0 -54 -41 0 -62 rrcurveto 0 -41 24 -26 34 -22 rrcurveto 0 -4 rlineto -38 -22 -36 -38 0 -49 rrcurveto 0 -59 55 -50 82 0 rrcurveto 23 235 rmoveto -47 15 -38 20 0 40 rrcurveto 0 32 28 23 34 0 rrcurveto 36 0 29 -22 0 -34 rrcurveto 0 -26 -13 -26 -29 -22 rrcurveto -23 -188 rmoveto -46 0 -31 33 0 35 rrcurveto 0 32 19 28 35 21 rrcurveto 53 -22 48 -12 0 -48 rrcurveto 0 -37 -35 -30 -43 0 rrcurveto endchar -193 182 382 rmoveto 79 0 59 49 0 63 rrcurveto 0 47 -28 31 -44 23 rrcurveto 0 4 rlineto 26 18 33 31 0 45 rrcurveto 0 63 -55 40 -70 0 rrcurveto -67 0 -54 -41 0 -62 rrcurveto 0 -41 24 -26 34 -22 rrcurveto 0 -4 rlineto -38 -22 -36 -38 0 -49 rrcurveto 0 -59 55 -50 82 0 rrcurveto 23 235 rmoveto -47 15 -38 20 0 40 rrcurveto 0 32 28 23 34 0 rrcurveto 36 0 29 -22 0 -34 rrcurveto 0 -26 -13 -26 -29 -22 rrcurveto -23 -188 rmoveto -46 0 -31 33 0 35 rrcurveto 0 32 19 28 35 21 rrcurveto 53 -22 48 -12 0 -48 rrcurveto 0 -37 -35 -30 -43 0 rrcurveto endchar -63 34 406 rmoveto 429 0 rlineto 0 62 rlineto -429 0 rlineto 0 -276 rmoveto 429 0 rlineto 0 62 rlineto -429 0 rlineto endchar -193 30 651 rmoveto 307 0 rlineto 0 53 rlineto -307 0 rlineto 0 -221 rmoveto 307 0 rlineto 0 53 rlineto -307 0 rlineto endchar -15 131 222 rmoveto 0 92 51 68 89 0 rrcurveto 45 0 44 -14 43 -57 rrcurveto 1 -18 1 -19 0 -20 rrcurveto 0 -117 -45 -80 -89 0 rrcurveto -76 0 -64 65 0 100 rrcurveto 138 -234 rmoveto 130 0 86 109 0 160 rrcurveto 0 157 -56 110 -80 81 rrcurveto 129 66 rlineto -24 41 rlineto -142 -73 rlineto -43 36 -47 29 -48 26 rrcurveto -37 -52 rlineto 41 -22 37 -24 33 -26 rrcurveto -127 -65 rlineto 24 -42 rlineto 142 73 rlineto 50 -49 36 -60 19 -80 rrcurveto -34 44 -49 20 -50 0 rrcurveto -116 0 -90 -89 0 -136 rrcurveto 0 -145 103 -89 113 0 rrcurveto endchar -270 116 199 rmoveto 57 0 rlineto 12 377 rlineto 2 94 rlineto -84 0 rlineto 2 -94 rlineto 40 -588 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto endchar -270 103 -184 rmoveto 84 0 rlineto -2 94 rlineto -12 377 rlineto -57 0 rlineto -11 -377 rlineto 40 462 rmoveto 33 0 27 26 0 38 rrcurveto 0 36 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -36 rrcurveto 0 -38 27 -26 33 0 rrcurveto endchar -268 96 0 rmoveto 83 0 rlineto 0 419 rlineto 102 0 rlineto 0 67 rlineto -102 0 rlineto 0 76 rlineto 0 62 22 33 46 0 rrcurveto 17 0 18 -4 19 -6 rrcurveto 18 61 rlineto -20 9 -31 7 -30 0 rrcurveto -97 0 -45 -63 0 -99 rrcurveto 0 -76 rlineto -66 -5 rlineto 0 -62 rlineto 66 0 rlineto endchar -359 64 394 rmoveto 63 0 rlineto 0 273 rlineto 68 0 rlineto 0 49 rlineto -68 0 rlineto 0 46 rlineto 0 38 15 23 29 0 rrcurveto 15 0 12 -3 10 -3 rrcurveto 13 46 rlineto -17 8 -18 3 -22 0 rrcurveto -69 0 -31 -50 0 -66 rrcurveto 0 -42 rlineto -45 -2 rlineto 0 -47 rlineto 45 0 rlineto endchar 18 381 0 rmoveto 83 0 rlineto 0 419 rlineto 103 0 rlineto 0 67 rlineto -103 0 rlineto 0 76 rlineto 0 63 23 32 45 0 rrcurveto 18 0 19 -4 18 -9 rrcurveto 18 64 rlineto -22 9 -29 7 -30 0 rrcurveto -98 0 -45 -63 0 -99 rrcurveto 0 -76 rlineto -202 0 rlineto 0 62 rlineto 0 64 27 35 48 0 rrcurveto 25 0 19 -4 21 -10 rrcurveto 18 63 rlineto -25 11 -32 7 -33 0 rrcurveto -101 0 -50 -63 0 -101 rrcurveto 0 -64 rlineto -66 -5 rlineto 0 -62 rlineto 66 0 rlineto 0 -419 rlineto 83 0 rlineto 0 419 rlineto 202 0 rlineto endchar 321 381 0 rmoveto 83 0 rlineto 0 419 rlineto 174 0 rlineto 0 -268 rlineto 0 -97 35 -66 104 0 rrcurveto 31 0 32 9 28 9 rrcurveto -16 63 rlineto -16 -7 -22 -6 -18 0 rrcurveto -55 0 -20 34 0 59 rrcurveto 0 270 rlineto 132 0 rlineto 0 67 rlineto -132 0 rlineto 0 136 rlineto -69 0 rlineto -10 -136 rlineto -178 0 rlineto 0 76 rlineto 0 63 23 32 45 0 rrcurveto 18 0 19 -4 18 -9 rrcurveto 18 64 rlineto -22 9 -29 7 -30 0 rrcurveto -98 0 -45 -63 0 -99 rrcurveto 0 -76 rlineto -202 0 rlineto 0 62 rlineto 0 64 27 35 48 0 rrcurveto 25 0 19 -4 21 -10 rrcurveto 18 63 rlineto -25 11 -32 7 -33 0 rrcurveto -101 0 -50 -63 0 -101 rrcurveto 0 -64 rlineto -66 -5 rlineto 0 -62 rlineto 66 0 rlineto 0 -419 rlineto 83 0 rlineto 0 419 rlineto 202 0 rlineto endchar 35 96 0 rmoveto 83 0 rlineto 0 419 rlineto 174 0 rlineto 0 -268 rlineto 0 -97 35 -66 104 0 rrcurveto 30 0 33 9 27 9 rrcurveto -16 63 rlineto -16 -7 -22 -6 -17 0 rrcurveto -56 0 -19 34 0 59 rrcurveto 0 270 rlineto 131 0 rlineto 0 67 rlineto -131 0 rlineto 0 136 rlineto -70 0 rlineto -10 -136 rlineto -177 0 rlineto 0 76 rlineto 0 63 22 32 46 0 rrcurveto 17 0 19 -4 19 -9 rrcurveto 17 64 rlineto -22 9 -29 7 -30 0 rrcurveto -97 0 -45 -63 0 -99 rrcurveto 0 -76 rlineto -66 -5 rlineto 0 -62 rlineto 66 0 rlineto endchar -63 234 -12 rmoveto 111 0 104 78 0 138 rrcurveto 0 138 -89 62 -108 0 rrcurveto -39 0 -29 -10 -30 -16 rrcurveto 17 188 rlineto 247 0 rlineto 0 72 rlineto -320 0 rlineto -21 -307 rlineto 44 -28 rlineto 38 25 27 13 44 0 rrcurveto 82 0 53 -51 0 -88 rrcurveto 0 -89 -61 -56 -78 0 rrcurveto -75 0 -48 35 -38 38 rrcurveto -40 -55 rlineto 44 -44 63 -43 102 0 rrcurveto endchar -193 183 -12 rmoveto 79 0 61 55 0 80 rrcurveto 0 84 -57 47 -71 0 rrcurveto -22 0 -22 -7 -18 -8 rrcurveto 10 95 rlineto 160 0 rlineto 0 56 rlineto -213 0 rlineto -18 -188 rlineto 31 -23 rlineto 21 18 22 14 31 0 rrcurveto 47 0 34 -33 0 -53 rrcurveto 0 -49 -33 -37 -46 0 rrcurveto -45 0 -31 22 -25 36 rrcurveto -43 -33 rlineto 31 -44 48 -32 69 0 rrcurveto endchar -193 183 254 rmoveto 79 0 61 55 0 80 rrcurveto 0 84 -57 47 -71 0 rrcurveto -22 0 -22 -7 -18 -8 rrcurveto 10 95 rlineto 160 0 rlineto 0 56 rlineto -213 0 rlineto -18 -188 rlineto 31 -23 rlineto 21 18 22 14 31 0 rrcurveto 47 0 34 -33 0 -53 rrcurveto 0 -49 -33 -37 -46 0 rrcurveto -45 0 -31 22 -25 36 rrcurveto -43 -33 rlineto 31 -44 48 -32 69 0 rrcurveto endchar -193 183 382 rmoveto 79 0 61 55 0 80 rrcurveto 0 84 -57 47 -71 0 rrcurveto -22 0 -22 -7 -18 -8 rrcurveto 10 95 rlineto 160 0 rlineto 0 56 rlineto -213 0 rlineto -18 -188 rlineto 31 -23 rlineto 21 18 22 14 31 0 rrcurveto 47 0 34 -33 0 -53 rrcurveto 0 -49 -33 -37 -46 0 rrcurveto -45 0 -31 22 -25 36 rrcurveto -43 -33 rlineto 31 -44 48 -32 69 0 rrcurveto endchar -63 104 242 rmoveto 149 217 rlineto 18 32 18 28 16 30 rrcurveto 4 0 rlineto -2 -34 -3 -55 0 -33 rrcurveto 0 -185 rlineto 0 -242 rmoveto 78 0 rlineto 0 176 rlineto 87 0 rlineto 0 66 rlineto -87 0 rlineto 0 396 rlineto -92 0 rlineto -273 -407 rlineto 0 -55 rlineto 287 0 rlineto endchar -193 109 150 rmoveto 61 98 rlineto 50 81 rlineto 4 0 rlineto -4 -109 rlineto 0 -70 rlineto 0 -150 rmoveto 58 0 rlineto 0 104 rlineto 58 0 rlineto 0 46 rlineto -58 0 rlineto 0 240 rlineto -73 0 rlineto -163 -253 rlineto 0 -33 rlineto 178 0 rlineto endchar -193 109 416 rmoveto 61 98 rlineto 50 81 rlineto 4 0 rlineto -4 -109 rlineto 0 -70 rlineto 0 -150 rmoveto 58 0 rlineto 0 104 rlineto 58 0 rlineto 0 46 rlineto -58 0 rlineto 0 240 rlineto -73 0 rlineto -163 -253 rlineto 0 -33 rlineto 178 0 rlineto endchar -193 109 544 rmoveto 61 98 rlineto 50 81 rlineto 4 0 rlineto -4 -109 rlineto 0 -70 rlineto 0 -150 rmoveto 58 0 rlineto 0 104 rlineto 58 0 rlineto 0 46 rlineto -58 0 rlineto 0 240 rlineto -73 0 rlineto -163 -253 rlineto 0 -33 rlineto 178 0 rlineto endchar -55 246 -224 rmoveto 151 0 95 78 0 91 rrcurveto 0 80 -57 36 -113 0 rrcurveto -94 0 rlineto -65 0 -20 22 0 30 rrcurveto 0 27 13 16 18 15 rrcurveto 22 -11 26 -6 24 0 rrcurveto 99 0 79 65 0 104 rrcurveto 0 41 -16 36 -23 22 rrcurveto 99 0 rlineto 0 64 rlineto -169 0 rlineto -18 7 -24 5 -27 0 rrcurveto -99 0 -84 -67 0 -106 rrcurveto 0 -58 31 -47 32 -26 rrcurveto 0 -4 rlineto -25 -17 -28 -32 0 -41 rrcurveto 0 -38 19 -26 24 -15 rrcurveto 0 -4 rlineto -44 -30 -27 -39 0 -41 rrcurveto 0 -84 82 -47 119 0 rrcurveto 0 434 rmoveto -56 0 -47 44 0 71 rrcurveto 0 71 46 42 57 0 rrcurveto 57 0 46 -43 0 -70 rrcurveto 0 -71 -47 -44 -56 0 rrcurveto 12 -376 rmoveto -88 0 -53 32 0 52 rrcurveto 0 28 15 29 35 25 rrcurveto 21 -6 23 -2 19 0 rrcurveto 83 0 rlineto 64 0 34 -15 0 -45 rrcurveto 0 -50 -61 -48 -92 0 rrcurveto endchar -217 164 248 rmoveto 104 0 64 52 0 60 rrcurveto 0 56 -37 23 -78 0 rrcurveto -62 0 rlineto -41 0 -15 11 0 21 rrcurveto 0 15 8 10 11 9 rrcurveto 16 -8 17 -2 15 0 rrcurveto 67 0 55 42 0 70 rrcurveto 0 23 -10 24 -13 13 rrcurveto 62 0 rlineto 0 48 rlineto -110 0 rlineto -15 6 -16 3 -20 0 rrcurveto -68 0 -58 -43 0 -72 rrcurveto 0 -38 21 -31 22 -17 rrcurveto 0 -4 rlineto -18 -12 -18 -21 0 -25 rrcurveto 0 -25 12 -18 17 -10 rrcurveto 0 -4 rlineto -30 -18 -16 -24 0 -28 rrcurveto 0 -56 54 -30 80 0 rrcurveto 2 289 rmoveto -39 0 -28 28 0 44 rrcurveto 0 45 28 25 39 0 rrcurveto 36 0 30 -26 0 -44 rrcurveto 0 -44 -30 -28 -36 0 rrcurveto 8 -246 rmoveto -57 0 -34 19 0 33 rrcurveto 0 18 11 16 20 14 rrcurveto 14 -4 17 0 11 0 rrcurveto 53 0 rlineto 40 0 23 -9 0 -27 rrcurveto 0 -31 -40 -29 -58 0 rrcurveto endchar 16 388 -12 rmoveto 98 0 62 65 0 84 rrcurveto 0 162 -185 -22 0 97 rrcurveto 0 69 99 33 0 100 rrcurveto 0 79 -65 67 -109 0 rrcurveto -129 0 -77 -82 0 -125 rrcurveto 0 -515 rlineto 82 0 rlineto 0 499 rlineto 0 103 49 53 74 0 rrcurveto 58 0 35 -38 0 -50 rrcurveto 0 -84 -96 -29 0 -90 rrcurveto 0 -139 185 23 0 -116 rrcurveto 0 -42 -29 -37 -55 0 rrcurveto -38 0 -33 11 -35 29 rrcurveto -33 -56 rlineto 41 -33 46 -16 55 0 rrcurveto endchar -18 314 573 rmoveto 42 42 rlineto -170 166 rlineto -51 -55 rlineto endchar -63 34 130 rmoveto 429 169 rlineto 0 66 rlineto -429 169 rlineto 0 -73 rlineto 211 -77 rlineto 133 -50 rlineto 0 -4 rlineto -133 -50 rlineto -211 -77 rlineto endchar -130 181 66 rmoveto 36 28 rlineto -118 158 rlineto 118 156 rlineto -36 30 rlineto -136 -155 rlineto 0 -62 rlineto 295 -155 rmoveto 36 28 rlineto -118 158 rlineto 118 156 rlineto -36 30 rlineto -136 -155 rlineto 0 -62 rlineto endchar -130 90 66 rmoveto 136 155 rlineto 0 62 rlineto -136 155 rlineto -36 -30 rlineto 118 -156 rlineto -118 -158 rlineto 195 -28 rmoveto 136 155 rlineto 0 62 rlineto -136 155 rlineto -36 -30 rlineto 118 -156 rlineto -118 -158 rlineto endchar -16 82 0 rmoveto 83 0 rlineto 0 352 rlineto 48 49 35 25 49 0 rrcurveto 64 0 28 -38 0 -91 rrcurveto 0 -297 rlineto 83 0 rlineto 0 308 rlineto 0 124 -46 66 -103 0 rrcurveto -67 0 -49 -36 -45 -44 rrcurveto 3 100 rlineto 0 194 rlineto -83 0 rlineto endchar -193 52 394 rmoveto 62 0 rlineto 0 230 rlineto 32 32 26 15 26 0 rrcurveto 50 0 11 -31 0 -51 rrcurveto 0 -195 rlineto 62 0 rlineto 0 204 rlineto 0 75 -26 51 -76 0 rrcurveto -43 0 -38 -25 -27 -28 rrcurveto 3 67 rlineto 0 125 rlineto -62 0 rlineto endchar -249 41 219 rmoveto 230 0 rlineto 0 64 rlineto -230 0 rlineto endchar -324 41 549 rmoveto 156 0 rlineto 0 45 rlineto -156 0 rlineto endchar -313 82 0 rmoveto 83 0 rlineto 0 486 rlineto -83 0 rlineto 42 100 rmoveto 32 0 23 21 0 33 rrcurveto 0 32 -23 22 -32 0 rrcurveto -32 0 -23 -22 0 -32 rrcurveto 0 -33 23 -21 32 0 rrcurveto endchar -394 52 394 rmoveto 62 0 rlineto 0 322 rlineto -62 0 rlineto 32 62 rmoveto 24 0 18 17 0 22 rrcurveto 0 23 -18 17 -24 0 rrcurveto -24 0 -18 -17 0 -23 rrcurveto 0 -22 18 -17 24 0 rrcurveto endchar -313 82 0 rmoveto 83 0 rlineto 0 486 rlineto -83 0 rlineto -1 87 rmoveto 179 153 rlineto -51 55 rlineto -170 -166 rlineto endchar -313 82 0 rmoveto 83 0 rlineto 0 486 rlineto -83 0 rlineto -78 82 rmoveto 118 113 rlineto 4 0 rlineto 118 -113 rlineto 35 32 rlineto -113 140 rlineto -84 0 rlineto -113 -140 rlineto endchar -313 82 0 rmoveto 83 0 rlineto 0 486 rlineto -83 0 rlineto -54 101 rmoveto 28 0 21 22 0 28 rrcurveto 0 28 -21 22 -28 0 rrcurveto -29 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 29 0 rrcurveto 192 0 rmoveto 29 0 21 22 0 28 rrcurveto 0 28 -21 22 -29 0 rrcurveto -28 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 28 0 rrcurveto endchar -313 82 0 rmoveto 83 0 rlineto 0 486 rlineto -83 0 rlineto 85 87 rmoveto 42 42 rlineto -170 166 rlineto -51 -55 rlineto endchar -313 32 -217 rmoveto 97 0 37 63 0 100 rrcurveto 0 540 rlineto -83 0 rlineto 0 -540 rlineto 0 -59 -12 -36 -48 0 rrcurveto -16 0 -18 4 -12 4 rrcurveto -17 -62 rlineto 17 -8 26 -6 29 0 rrcurveto 91 803 rmoveto 32 0 23 21 0 33 rrcurveto 0 32 -23 22 -32 0 rrcurveto -32 0 -23 -22 0 -32 rrcurveto 0 -33 23 -21 32 0 rrcurveto endchar -391 23 250 rmoveto 67 0 26 43 0 72 rrcurveto 0 351 rlineto -62 0 rlineto 0 -355 rlineto 0 -39 -8 -20 -31 0 rrcurveto -13 0 -7 2 -8 3 rrcurveto -13 -49 rlineto 15 -5 12 -3 22 0 rrcurveto 63 528 rmoveto 24 0 18 17 0 22 rrcurveto 0 23 -18 17 -24 0 rrcurveto -24 0 -18 -17 0 -23 rrcurveto 0 -22 18 -17 24 0 rrcurveto endchar -65 82 0 rmoveto 82 0 rlineto 0 128 rlineto 90 105 rlineto 142 -233 rlineto 90 0 rlineto -183 290 rlineto 162 196 rlineto -93 0 rlineto -205 -254 rlineto -3 0 rlineto 0 480 rlineto -82 0 rlineto endchar -222 52 394 rmoveto 62 0 rlineto 0 82 rlineto 56 66 rlineto 93 -148 rlineto 69 0 rlineto -125 190 rlineto 112 132 rlineto -70 0 rlineto -131 -160 rlineto -4 0 rlineto 0 307 rlineto -62 0 rlineto endchar -305 169 -12 rmoveto 21 0 15 3 12 6 rrcurveto -11 62 rlineto -8 -2 -4 0 -5 0 rrcurveto -13 0 -11 9 0 26 rrcurveto 0 620 rlineto -83 0 rlineto 0 -614 rlineto 0 -70 25 -40 62 0 rrcurveto endchar -386 118 386 rmoveto 16 0 10 3 9 4 rrcurveto -9 47 rlineto -6 -2 -3 0 -4 0 rrcurveto -10 0 -7 6 0 19 rrcurveto 0 400 rlineto -62 0 rlineto 0 -395 rlineto 0 -51 17 -31 49 0 rrcurveto endchar -63 463 130 rmoveto 0 73 rlineto -210 77 rlineto -134 50 rlineto 0 4 rlineto 134 50 rlineto 210 77 rlineto 0 73 rlineto -429 -169 rlineto 0 -66 rlineto endchar -63 397 104 rmoveto 66 0 rlineto 0 257 rlineto -429 0 rlineto 0 -62 rlineto 363 0 rlineto endchar 269 82 0 rmoveto 83 0 rlineto 0 352 rlineto 45 50 40 24 36 0 rrcurveto 62 0 28 -38 0 -91 rrcurveto 0 -297 rlineto 83 0 rlineto 0 352 rlineto 45 50 39 24 38 0 rrcurveto 61 0 29 -38 0 -91 rrcurveto 0 -297 rlineto 83 0 rlineto 0 308 rlineto 0 124 -48 66 -100 0 rrcurveto -59 0 -51 -38 -50 -54 rrcurveto -20 57 -40 35 -75 0 rrcurveto -58 0 -50 -36 -43 -46 rrcurveto -3 0 rlineto -7 70 rlineto -68 0 rlineto endchar -1 52 394 rmoveto 62 0 rlineto 0 230 rlineto 31 32 23 15 23 0 rrcurveto 46 0 13 -31 0 -51 rrcurveto 0 -195 rlineto 63 0 rlineto 0 230 rlineto 31 32 22 15 24 0 rrcurveto 46 0 13 -31 0 -51 rrcurveto 0 -195 rlineto 62 0 rlineto 0 204 rlineto 0 75 -29 51 -71 0 rrcurveto -44 0 -35 -28 -30 -32 rrcurveto -15 40 -30 20 -45 0 rrcurveto -43 0 -31 -24 -27 -29 rrcurveto -3 0 rlineto -6 45 rlineto -50 0 rlineto endchar -18 138 601 rmoveto 266 0 rlineto 0 57 rlineto -266 0 rlineto endchar 2 82 -179 rmoveto 84 0 rlineto -6 77 -1 43 0 96 rrcurveto 22 -38 32 -9 39 0 rrcurveto 53 0 47 30 35 62 rrcurveto 2 0 rlineto 7 -65 26 -29 55 0 rrcurveto 27 0 18 5 14 7 rrcurveto -11 63 rlineto -11 -4 -10 -2 -9 0 rrcurveto -21 0 -14 11 0 28 rrcurveto 0 116 4 143 2 131 rrcurveto -84 0 rlineto 0 -332 rlineto -45 -79 -40 -15 -43 0 rrcurveto -63 0 -26 44 0 85 rrcurveto 0 297 rlineto -83 0 rlineto endchar -63 94 126 rmoveto 155 159 rlineto 154 -159 rlineto 44 46 rlineto -154 158 rlineto 154 158 rlineto -44 45 rlineto -154 -159 rlineto -155 159 rlineto -44 -45 rlineto 154 -158 rlineto -154 -158 rlineto endchar -13 82 0 rmoveto 83 0 rlineto 0 352 rlineto 48 49 35 25 49 0 rrcurveto 64 0 28 -38 0 -91 rrcurveto 0 -297 rlineto 83 0 rlineto 0 308 rlineto 0 124 -46 66 -103 0 rrcurveto -67 0 -50 -36 -46 -46 rrcurveto -3 0 rlineto -7 70 rlineto -68 0 rlineto endchar -191 52 394 rmoveto 62 0 rlineto 0 230 rlineto 32 32 26 15 27 0 rrcurveto 49 0 11 -31 0 -51 rrcurveto 0 -195 rlineto 62 0 rlineto 0 204 rlineto 0 75 -26 51 -76 0 rrcurveto -43 0 -37 -24 -28 -29 rrcurveto -3 0 rlineto -7 45 rlineto -49 0 rlineto endchar -63 118 445 rmoveto 0 84 48 55 62 0 rrcurveto 81 0 49 -66 10 -124 rrcurveto -40 -59 -51 -25 -42 0 rrcurveto -78 0 -39 52 0 83 rrcurveto 87 -457 rmoveto 128 0 116 99 0 256 rrcurveto 0 205 -95 102 -126 0 rrcurveto -102 0 -86 -83 0 -122 rrcurveto 0 -131 71 -66 110 0 rrcurveto 52 0 57 30 40 50 rrcurveto -4 -202 -74 -69 -90 0 rrcurveto -40 0 -39 20 -26 30 rrcurveto -46 -52 rlineto 35 -38 51 -29 68 0 rrcurveto endchar -193 99 271 rmoveto 0 47 30 33 40 0 rrcurveto 49 0 35 -39 6 -77 rrcurveto -30 -32 -26 -11 -30 0 rrcurveto -48 0 -26 33 0 46 rrcurveto 51 -283 rmoveto 96 0 74 70 0 147 rrcurveto 0 123 -59 74 -93 0 rrcurveto -73 0 -56 -57 0 -75 rrcurveto 0 -74 44 -51 78 0 rrcurveto 37 0 33 14 28 27 rrcurveto -6 -100 -47 -47 -58 0 rrcurveto -27 0 -21 11 -19 13 rrcurveto -27 -44 rlineto 23 -17 28 -14 45 0 rrcurveto endchar -193 99 537 rmoveto 0 47 30 33 40 0 rrcurveto 49 0 35 -39 6 -77 rrcurveto -30 -32 -26 -11 -30 0 rrcurveto -48 0 -26 33 0 46 rrcurveto 51 -283 rmoveto 96 0 74 70 0 147 rrcurveto 0 123 -59 74 -93 0 rrcurveto -73 0 -56 -57 0 -75 rrcurveto 0 -74 44 -51 78 0 rrcurveto 37 0 33 14 28 27 rrcurveto -6 -100 -47 -47 -58 0 rrcurveto -27 0 -21 11 -19 13 rrcurveto -27 -44 rlineto 23 -17 28 -14 45 0 rrcurveto endchar -193 99 665 rmoveto 0 47 30 33 40 0 rrcurveto 49 0 35 -39 6 -77 rrcurveto -30 -32 -26 -11 -30 0 rrcurveto -48 0 -26 33 0 46 rrcurveto 51 -283 rmoveto 96 0 74 70 0 147 rrcurveto 0 123 -59 74 -93 0 rrcurveto -73 0 -56 -57 0 -75 rrcurveto 0 -74 44 -51 78 0 rrcurveto 37 0 33 14 28 27 rrcurveto -6 -100 -47 -47 -58 0 rrcurveto -27 0 -21 11 -19 13 rrcurveto -27 -44 rlineto 23 -17 28 -14 45 0 rrcurveto endchar -13 82 0 rmoveto 83 0 rlineto 0 352 rlineto 48 49 35 25 49 0 rrcurveto 64 0 28 -38 0 -91 rrcurveto 0 -297 rlineto 83 0 rlineto 0 308 rlineto 0 124 -46 66 -103 0 rrcurveto -67 0 -50 -36 -46 -46 rrcurveto -3 0 rlineto -7 70 rlineto -68 0 rlineto 285 91 rmoveto 69 0 29 58 3 77 rrcurveto -55 4 rlineto -3 -46 -14 -33 -29 0 rrcurveto -47 0 -26 84 -71 0 rrcurveto -69 0 -29 -58 -3 -78 rrcurveto 55 -3 rlineto 3 47 14 32 30 0 rrcurveto 46 0 26 -84 71 0 rrcurveto endchar -63 88 0 rmoveto 59 0 rlineto 25 201 rlineto 125 0 rlineto -24 -201 rlineto 60 0 rlineto 24 201 rlineto 92 0 rlineto 0 63 rlineto -85 0 rlineto 18 143 rlineto 87 0 rlineto 0 63 rlineto -81 0 rlineto 25 180 rlineto -60 0 rlineto -24 -180 rlineto -125 0 rlineto 23 180 rlineto -59 0 rlineto -24 -180 rlineto -90 0 rlineto 0 -63 rlineto 84 0 rlineto -19 -143 rlineto -85 0 rlineto 0 -63 rlineto 79 0 rlineto 66 63 rmoveto 18 143 rlineto 126 0 rlineto -19 -143 rlineto endchar -18 271 -12 rmoveto 119 0 107 93 0 161 rrcurveto 0 163 -107 93 -119 0 rrcurveto -119 0 -106 -93 0 -163 rrcurveto 0 -161 106 -93 119 0 rrcurveto 0 69 rmoveto -83 0 -56 74 0 111 rrcurveto 0 112 56 75 83 0 rrcurveto 84 0 56 -75 0 -112 rrcurveto 0 -111 -56 -74 -84 0 rrcurveto endchar -195 182 386 rmoveto 82 0 70 63 0 106 rrcurveto 0 107 -70 62 -82 0 rrcurveto -83 0 -69 -62 0 -107 rrcurveto 0 -106 69 -63 83 0 rrcurveto 0 52 rmoveto -55 0 -33 48 0 69 rrcurveto 0 71 33 47 55 0 rrcurveto 55 0 33 -47 0 -71 rrcurveto 0 -69 -33 -48 -55 0 rrcurveto endchar -18 271 -12 rmoveto 119 0 107 93 0 161 rrcurveto 0 163 -107 93 -119 0 rrcurveto -119 0 -106 -93 0 -163 rrcurveto 0 -161 106 -93 119 0 rrcurveto 0 69 rmoveto -83 0 -56 74 0 111 rrcurveto 0 112 56 75 83 0 rrcurveto 84 0 56 -75 0 -112 rrcurveto 0 -111 -56 -74 -84 0 rrcurveto -43 516 rmoveto 179 153 rlineto -51 55 rlineto -170 -166 rlineto endchar -18 271 -12 rmoveto 119 0 107 93 0 161 rrcurveto 0 163 -107 93 -119 0 rrcurveto -119 0 -106 -93 0 -163 rrcurveto 0 -161 106 -93 119 0 rrcurveto 0 69 rmoveto -83 0 -56 74 0 111 rrcurveto 0 112 56 75 83 0 rrcurveto 84 0 56 -75 0 -112 rrcurveto 0 -111 -56 -74 -84 0 rrcurveto -120 511 rmoveto 118 113 rlineto 4 0 rlineto 118 -113 rlineto 35 32 rlineto -113 140 rlineto -84 0 rlineto -113 -140 rlineto endchar -18 271 -12 rmoveto 119 0 107 93 0 161 rrcurveto 0 163 -107 93 -119 0 rrcurveto -119 0 -106 -93 0 -163 rrcurveto 0 -161 106 -93 119 0 rrcurveto 0 69 rmoveto -83 0 -56 74 0 111 rrcurveto 0 112 56 75 83 0 rrcurveto 84 0 56 -75 0 -112 rrcurveto 0 -111 -56 -74 -84 0 rrcurveto -96 530 rmoveto 28 0 21 22 0 28 rrcurveto 0 28 -21 22 -28 0 rrcurveto -29 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 29 0 rrcurveto 192 0 rmoveto 29 0 21 22 0 28 rrcurveto 0 28 -21 22 -29 0 rrcurveto -28 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 28 0 rrcurveto endchar -18 271 -12 rmoveto 119 0 107 93 0 161 rrcurveto 0 163 -107 93 -119 0 rrcurveto -119 0 -106 -93 0 -163 rrcurveto 0 -161 106 -93 119 0 rrcurveto 0 69 rmoveto -83 0 -56 74 0 111 rrcurveto 0 112 56 75 83 0 rrcurveto 84 0 56 -75 0 -112 rrcurveto 0 -111 -56 -74 -84 0 rrcurveto 43 516 rmoveto 42 42 rlineto -170 166 rlineto -51 -55 rlineto endchar -63 79 0 rmoveto 360 0 rlineto 0 69 rlineto -131 0 rlineto 0 569 rlineto -64 0 rlineto -35 -21 -42 -16 -59 -10 rrcurveto 0 -54 rlineto 117 0 rlineto 0 -468 rlineto -146 0 rlineto endchar -193 172 0 rmoveto 65 0 rlineto 0 390 rlineto -53 0 rlineto -27 -20 -26 -12 -44 -8 rrcurveto 0 -42 rlineto 85 0 rlineto endchar -193 172 266 rmoveto 65 0 rlineto 0 390 rlineto -53 0 rlineto -27 -20 -26 -12 -44 -8 rrcurveto 0 -42 rlineto 85 0 rlineto endchar -193 172 394 rmoveto 65 0 rlineto 0 390 rlineto -53 0 rlineto -27 -20 -26 -12 -44 -8 rrcurveto 0 -42 rlineto 85 0 rlineto endchar 249 148 266 rmoveto 65 0 rlineto 0 390 rlineto -53 0 rlineto -27 -20 -26 -12 -44 -8 rrcurveto 0 -42 rlineto 85 0 rlineto 12 -586 rmoveto 56 0 rlineto 362 680 rlineto -56 0 rlineto -29 -668 rmoveto 268 0 rlineto 0 55 rlineto -164 0 rlineto 83 85 61 61 0 75 rrcurveto 0 82 -52 44 -78 0 rrcurveto -53 0 -47 -31 -30 -45 rrcurveto 38 -35 rlineto 22 32 29 25 33 0 rrcurveto 46 0 29 -32 0 -50 rrcurveto 0 -59 -64 -61 -121 -109 rrcurveto endchar 221 148 266 rmoveto 65 0 rlineto 0 390 rlineto -53 0 rlineto -27 -20 -26 -12 -44 -8 rrcurveto 0 -42 rlineto 85 0 rlineto 32 -586 rmoveto 56 0 rlineto 362 680 rlineto -56 0 rlineto -19 -518 rmoveto 61 98 rlineto 50 81 rlineto 4 0 rlineto -4 -109 rlineto 0 -70 rlineto 0 -150 rmoveto 58 0 rlineto 0 104 rlineto 58 0 rlineto 0 46 rlineto -58 0 rlineto 0 240 rlineto -73 0 rlineto -163 -253 rlineto 0 -33 rlineto 178 0 rlineto endchar -215 136 387 rmoveto 41 0 33 21 27 24 rrcurveto 4 0 rlineto 7 -37 rlineto 49 0 rlineto 0 196 rlineto 0 85 -34 48 -80 0 rrcurveto -52 0 -48 -22 -33 -20 rrcurveto 23 -42 rlineto 27 16 39 18 35 0 rrcurveto 47 0 14 -31 1 -43 rrcurveto -139 -12 -60 -36 0 -71 rrcurveto 0 -57 40 -37 59 0 rrcurveto 18 49 rmoveto -35 0 -21 16 0 34 rrcurveto 0 36 35 25 103 12 rrcurveto 0 -83 rlineto -29 -27 -26 -13 -27 0 rrcurveto endchar -195 182 386 rmoveto 82 0 70 63 0 106 rrcurveto 0 107 -70 62 -82 0 rrcurveto -83 0 -69 -62 0 -107 rrcurveto 0 -106 69 -63 83 0 rrcurveto 0 52 rmoveto -55 0 -33 48 0 69 rrcurveto 0 71 33 47 55 0 rrcurveto 55 0 33 -47 0 -71 rrcurveto 0 -69 -33 -48 -55 0 rrcurveto endchar -17 126 246 rmoveto 0 110 61 76 84 0 rrcurveto 35 0 30 -12 24 -23 rrcurveto -213 -259 rlineto -14 30 -7 36 0 42 rrcurveto -40 -275 rmoveto 51 62 rlineto 38 -29 47 -16 49 0 rrcurveto 119 0 106 93 0 161 rrcurveto 0 68 -19 56 -30 42 rrcurveto 56 68 rlineto -46 39 rlineto -52 -63 rlineto -38 30 -47 16 -49 0 rrcurveto -119 0 -106 -93 0 -163 rrcurveto 0 -68 19 -56 31 -42 rrcurveto -56 -67 rlineto 231 44 rmoveto -35 0 -30 12 -24 22 rrcurveto 214 259 rlineto 13 -29 7 -36 0 -42 rrcurveto 0 -111 -61 -75 -84 0 rrcurveto endchar -18 271 -12 rmoveto 119 0 107 93 0 161 rrcurveto 0 163 -107 93 -119 0 rrcurveto -119 0 -106 -93 0 -163 rrcurveto 0 -161 106 -93 119 0 rrcurveto 0 69 rmoveto -83 0 -56 74 0 111 rrcurveto 0 112 56 75 83 0 rrcurveto 84 0 56 -75 0 -112 rrcurveto 0 -111 -56 -74 -84 0 rrcurveto 72 520 rmoveto 69 0 29 58 3 77 rrcurveto -55 4 rlineto -3 -46 -14 -33 -29 0 rrcurveto -47 0 -26 84 -71 0 rrcurveto -69 0 -29 -58 -3 -78 rrcurveto 55 -3 rlineto 3 47 14 32 30 0 rrcurveto 46 0 26 -84 71 0 rrcurveto endchar -5 82 -205 rmoveto 83 0 rlineto 0 164 rlineto -2 85 rlineto 44 -35 46 -21 44 0 rrcurveto 111 0 100 97 0 165 rrcurveto 0 151 -68 97 -125 0 rrcurveto -56 0 -55 -31 -44 -37 rrcurveto -3 0 rlineto -7 56 rlineto -68 0 rlineto 201 -428 rmoveto -32 0 -42 13 -44 37 rrcurveto 0 254 rlineto 47 44 41 22 41 0 rrcurveto 91 0 37 -71 0 -107 rrcurveto 0 -120 -59 -72 -80 0 rrcurveto endchar -186 52 257 rmoveto 62 0 rlineto 0 104 rlineto -3 62 rlineto 27 -23 34 -14 30 0 rrcurveto 73 0 66 64 0 111 rrcurveto 0 99 -46 64 -84 0 rrcurveto -38 0 -36 -21 -26 -24 rrcurveto -3 0 rlineto -7 37 rlineto -49 0 rlineto 140 -278 rmoveto -23 0 -28 9 -27 22 rrcurveto 0 161 rlineto 28 27 28 15 26 0 rrcurveto 56 0 25 -42 0 -69 rrcurveto 0 -79 -37 -44 -48 0 rrcurveto endchar 1 380 -80 rmoveto 85 0 rlineto 0 736 rlineto -85 0 rlineto -87 -430 rmoveto 33 0 rlineto 0 430 rlineto -44 0 rlineto -138 0 -103 -56 0 -157 rrcurveto 0 -151 107 -66 145 0 rrcurveto endchar -256 214 -176 rmoveto 51 24 rlineto -77 127 -37 151 0 152 rrcurveto 0 152 37 151 77 127 rrcurveto -51 24 rlineto -83 -134 -49 -144 0 -176 rrcurveto 0 -176 49 -144 83 -134 rrcurveto endchar -323 153 -79 rmoveto 45 22 rlineto -50 80 -21 83 0 89 rrcurveto 0 88 21 84 50 78 rrcurveto -45 22 rlineto -57 -81 -31 -79 0 -112 rrcurveto 0 -113 31 -80 57 -81 rrcurveto endchar -323 153 187 rmoveto 45 22 rlineto -50 80 -21 83 0 89 rrcurveto 0 88 21 84 50 78 rrcurveto -45 22 rlineto -57 -81 -31 -79 0 -112 rrcurveto 0 -113 31 -80 57 -81 rrcurveto endchar -323 153 315 rmoveto 45 22 rlineto -50 80 -21 83 0 89 rrcurveto 0 88 21 84 50 78 rrcurveto -45 22 rlineto -57 -81 -31 -79 0 -112 rrcurveto 0 -113 31 -80 57 -81 rrcurveto endchar -256 90 -176 rmoveto 83 134 49 144 0 176 rrcurveto 0 176 -49 144 -83 134 rrcurveto -52 -24 rlineto 77 -127 38 -151 0 -152 rrcurveto 0 -152 -38 -151 -77 -127 rrcurveto endchar -323 86 -79 rmoveto 55 81 32 80 0 113 rrcurveto 0 112 -32 79 -55 81 rrcurveto -47 -22 rlineto 51 -78 20 -84 0 -88 rrcurveto 0 -89 -20 -83 -51 -80 rrcurveto endchar -323 86 187 rmoveto 55 81 32 80 0 113 rrcurveto 0 112 -32 79 -55 81 rrcurveto -47 -22 rlineto 51 -78 20 -84 0 -88 rrcurveto 0 -89 -20 -83 -51 -80 rrcurveto endchar -323 86 315 rmoveto 55 81 32 80 0 113 rrcurveto 0 112 -32 79 -55 81 rrcurveto -47 -22 rlineto 51 -78 20 -84 0 -88 rrcurveto 0 -89 -20 -83 -51 -80 rrcurveto endchar 265 184 254 rmoveto 89 0 60 75 0 133 rrcurveto 0 131 -60 75 -89 0 rrcurveto -90 0 -59 -75 0 -131 rrcurveto 0 -133 59 -75 90 0 rrcurveto 0 51 rmoveto -51 0 -36 53 0 104 rrcurveto 0 104 36 51 51 0 rrcurveto 51 0 35 -51 0 -104 rrcurveto 0 -104 -35 -53 -51 0 rrcurveto 19 -317 rmoveto 56 0 rlineto 362 680 rlineto -56 0 rlineto 76 -680 rmoveto 89 0 60 75 0 133 rrcurveto 0 131 -60 75 -89 0 rrcurveto -90 0 -59 -75 0 -131 rrcurveto 0 -133 59 -75 90 0 rrcurveto 0 51 rmoveto -51 0 -36 53 0 104 rrcurveto 0 104 36 51 51 0 rrcurveto 51 0 35 -51 0 -104 rrcurveto 0 -104 -35 -53 -51 0 rrcurveto endchar -310 125 -12 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto endchar -383 89 -8 rmoveto 26 0 20 19 0 28 rrcurveto 0 29 -20 20 -26 0 rrcurveto -27 0 -19 -20 0 -29 rrcurveto 0 -28 19 -19 27 0 rrcurveto endchar -383 89 258 rmoveto 26 0 20 19 0 28 rrcurveto 0 29 -20 20 -26 0 rrcurveto -27 0 -19 -20 0 -29 rrcurveto 0 -28 19 -19 27 0 rrcurveto endchar -383 89 386 rmoveto 26 0 20 19 0 28 rrcurveto 0 29 -20 20 -26 0 rrcurveto -27 0 -19 -20 0 -29 rrcurveto 0 -28 19 -19 27 0 rrcurveto endchar -310 125 259 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto endchar -63 216 104 rmoveto 66 0 rlineto 0 195 rlineto 181 0 rlineto 0 62 rlineto -181 0 rlineto 0 195 rlineto -66 0 rlineto 0 -195 rlineto -182 0 rlineto 0 -62 rlineto 182 0 rlineto endchar -193 155 430 rmoveto 56 0 rlineto 0 137 rlineto 126 0 rlineto 0 53 rlineto -126 0 rlineto 0 136 rlineto -56 0 rlineto 0 -136 rlineto -125 0 rlineto 0 -53 rlineto 125 0 rlineto endchar -63 216 127 rmoveto 66 0 rlineto 0 177 rlineto 181 0 rlineto 0 62 rlineto -181 0 rlineto 0 190 rlineto -66 0 rlineto 0 -190 rlineto -182 0 rlineto 0 -62 rlineto 182 0 rlineto -182 -304 rmoveto 429 0 rlineto 0 62 rlineto -429 0 rlineto endchar -5 390 -205 rmoveto 83 0 rlineto 0 691 rlineto -66 0 rlineto -8 -46 rlineto -3 0 rlineto -43 38 -39 20 -56 0 rrcurveto -111 0 -100 -98 0 -158 rrcurveto 0 -162 79 -92 122 0 rrcurveto 56 0 51 30 39 38 rrcurveto -4 -88 rlineto -124 90 rmoveto -85 0 -48 69 0 116 rrcurveto 0 111 62 74 77 0 rrcurveto 40 0 37 -13 41 -37 rrcurveto 0 -254 rlineto -40 -44 -39 -22 -45 0 rrcurveto endchar -186 260 257 rmoveto 62 0 rlineto 0 459 rlineto -48 0 rlineto -6 -32 rlineto -4 0 rlineto -25 26 -30 14 -35 0 rrcurveto -73 0 -68 -63 0 -106 rrcurveto 0 -105 53 -64 85 0 rrcurveto 35 0 33 17 24 24 rrcurveto -3 -59 rlineto -76 70 rmoveto -59 0 -28 45 0 73 rrcurveto 0 72 40 44 46 0 rrcurveto 24 0 27 -10 26 -22 rrcurveto 0 -165 rlineto -26 -25 -24 -12 -26 0 rrcurveto endchar -135 160 199 rmoveto 73 0 rlineto -16 139 161 53 0 131 rrcurveto 0 99 -67 61 -101 0 rrcurveto -73 0 -57 -35 -42 -48 rrcurveto 48 -43 rlineto 31 35 39 22 44 0 rrcurveto 64 0 33 -43 0 -53 rrcurveto 0 -106 -159 -57 22 -155 rrcurveto 38 -211 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -26 -26 0 -38 rrcurveto 0 -37 26 -26 33 0 rrcurveto endchar -135 215 -196 rmoveto 73 0 57 36 42 47 rrcurveto -48 43 rlineto -31 -35 -39 -22 -44 0 rrcurveto -64 0 -32 43 0 54 rrcurveto 0 105 158 57 -21 155 rrcurveto -74 0 rlineto 17 -139 -161 -53 0 -131 rrcurveto 0 -99 66 -61 101 0 rrcurveto 12 568 rmoveto 33 0 27 26 0 38 rrcurveto 0 36 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -36 rrcurveto 0 -38 27 -26 33 0 rrcurveto endchar -133 99 430 rmoveto 51 0 rlineto 16 167 rlineto 2 93 rlineto -88 0 rlineto 3 -93 rlineto 193 -167 rmoveto 51 0 rlineto 16 167 rlineto 2 93 rlineto -88 0 rlineto 3 -93 rlineto endchar -310 99 430 rmoveto 51 0 rlineto 16 167 rlineto 2 93 rlineto -88 0 rlineto 3 -93 rlineto endchar -212 82 0 rmoveto 83 0 rlineto 0 312 rlineto 33 82 49 29 41 0 rrcurveto 19 0 11 -2 14 -4 rrcurveto 18 71 rlineto -15 7 -15 3 -22 0 rrcurveto -54 0 -50 -39 -34 -61 rrcurveto -3 0 rlineto -7 88 rlineto -68 0 rlineto endchar -320 52 394 rmoveto 63 0 rlineto 0 204 rlineto 23 51 31 18 28 0 rrcurveto 12 0 12 -3 8 -2 rrcurveto 12 56 rlineto -8 4 -14 2 -15 0 rrcurveto -36 0 -31 -22 -25 -42 rrcurveto -3 0 rlineto -7 56 rlineto -50 0 rlineto endchar -136 212 319 rmoveto 103 0 85 80 0 117 rrcurveto 0 117 -85 80 -103 0 rrcurveto -104 0 -85 -80 0 -117 rrcurveto 0 -117 85 -80 104 0 rrcurveto 0 37 rmoveto -84 0 -65 65 0 95 rrcurveto 0 94 65 67 84 0 rrcurveto 84 0 64 -67 0 -94 rrcurveto 0 -95 -64 -65 -84 0 rrcurveto -73 61 rmoveto 41 0 rlineto 0 70 rlineto 41 0 rlineto 35 -70 rlineto 46 0 rlineto -46 83 rlineto 23 8 15 23 0 24 rrcurveto 0 48 -37 17 -42 0 rrcurveto -76 0 rlineto 41 -101 rmoveto 0 67 rlineto 28 0 rlineto 30 0 11 -14 0 -19 rrcurveto 0 -22 -16 -12 -27 0 rrcurveto endchar -141 209 -12 rmoveto 115 0 63 66 0 79 rrcurveto 0 88 -73 33 -76 27 rrcurveto -61 21 -42 18 0 44 rrcurveto 0 36 27 34 62 0 rrcurveto 43 0 35 -14 34 -25 rrcurveto 38 48 rlineto -38 32 -52 23 -61 0 rrcurveto -106 0 -62 -60 0 -78 rrcurveto 0 -80 70 -35 73 -26 rrcurveto 55 -20 54 -21 0 -50 rrcurveto 0 -42 -31 -33 -64 0 rrcurveto -60 0 -44 18 -42 35 rrcurveto -38 -48 rlineto 45 -44 65 -26 71 0 rrcurveto endchar -277 144 386 rmoveto 73 0 46 42 0 57 rrcurveto 0 60 -51 19 -46 17 rrcurveto -37 15 -34 10 0 29 rrcurveto 0 21 17 20 36 0 rrcurveto 30 0 20 -11 24 -17 rrcurveto 31 40 rlineto -26 19 -35 17 -46 0 rrcurveto -70 0 -41 -42 0 -50 rrcurveto 0 -55 50 -23 45 -18 rrcurveto 37 -14 36 -12 0 -30 rrcurveto 0 -25 -21 -20 -37 0 rrcurveto -36 0 -31 15 -29 22 rrcurveto -30 -42 rlineto 32 -24 45 -20 48 0 rrcurveto endchar -63 236 -64 rmoveto 95 0 66 58 0 79 rrcurveto 0 34 -11 27 -18 21 rrcurveto 50 29 34 37 0 63 rrcurveto 0 184 -277 -19 0 108 rrcurveto 0 34 24 29 55 0 rrcurveto 45 0 35 -21 31 -26 rrcurveto 41 54 rlineto -39 31 -53 26 -63 0 rrcurveto -100 0 -52 -61 0 -69 rrcurveto 0 -35 12 -26 20 -21 rrcurveto -50 -28 -36 -44 0 -57 rrcurveto 0 -185 276 25 0 -114 rrcurveto 0 -38 -32 -31 -53 0 rrcurveto -53 0 -37 20 -33 33 rrcurveto -50 -46 rlineto 41 -45 61 -26 71 0 rrcurveto -118 412 rmoveto 0 41 24 25 37 20 rrcurveto 83 -47 118 -20 0 -89 rrcurveto 0 -44 -21 -22 -39 -19 rrcurveto -83 49 -119 18 0 88 rrcurveto endchar -310 125 348 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto -58 -518 rmoveto 82 33 50 68 0 86 rrcurveto 0 61 -26 37 -44 0 rrcurveto -33 0 -28 -22 0 -36 rrcurveto 0 -38 27 -20 32 0 rrcurveto 4 0 3 0 4 1 rrcurveto 0 -53 -34 -44 -57 -25 rrcurveto endchar -63 171 0 rmoveto 85 0 rlineto 11 249 35 144 153 194 rrcurveto 0 51 rlineto -411 0 rlineto 0 -72 rlineto 318 0 rlineto -129 -176 -51 -150 -11 -240 rrcurveto endchar -193 131 0 rmoveto 68 0 rlineto 7 136 22 97 95 121 rrcurveto 0 36 rlineto -273 0 rlineto 0 -55 rlineto 200 0 rlineto -79 -109 -32 -91 -8 -135 rrcurveto endchar -193 131 266 rmoveto 68 0 rlineto 7 136 22 97 95 121 rrcurveto 0 36 rlineto -273 0 rlineto 0 -55 rlineto 200 0 rlineto -79 -109 -32 -91 -8 -135 rrcurveto endchar -193 131 394 rmoveto 68 0 rlineto 7 136 22 97 95 121 rrcurveto 0 36 rlineto -273 0 rlineto 0 -55 rlineto 200 0 rlineto -79 -109 -32 -91 -8 -135 rrcurveto endchar -63 261 328 rmoveto 79 0 39 -52 0 -83 rrcurveto 0 -84 -48 -56 -63 0 rrcurveto -80 0 -49 66 -11 124 rrcurveto 40 60 52 25 41 0 rrcurveto 7 -340 rmoveto 103 0 86 83 0 122 rrcurveto 0 131 -71 66 -111 0 rrcurveto -52 0 -57 -32 -40 -50 rrcurveto 3 203 76 70 89 0 rrcurveto 40 0 40 -20 25 -31 rrcurveto 46 52 rlineto -35 39 -50 29 -69 0 rrcurveto -127 0 -116 -99 0 -256 rrcurveto 0 -205 95 -102 125 0 rrcurveto endchar -193 191 198 rmoveto 49 0 26 -33 0 -46 rrcurveto 0 -47 -30 -33 -41 0 rrcurveto -48 0 -35 39 -6 77 rrcurveto 30 32 26 11 29 0 rrcurveto 5 -210 rmoveto 74 0 56 57 0 75 rrcurveto 0 74 -44 51 -78 0 rrcurveto -37 0 -33 -14 -28 -27 rrcurveto 6 100 47 47 58 0 rrcurveto 27 0 21 -11 19 -13 rrcurveto 27 44 rlineto -23 17 -28 14 -45 0 rrcurveto -96 0 -74 -70 0 -147 rrcurveto 0 -123 59 -74 92 0 rrcurveto endchar -193 191 464 rmoveto 49 0 26 -33 0 -46 rrcurveto 0 -47 -30 -33 -41 0 rrcurveto -48 0 -35 39 -6 77 rrcurveto 30 32 26 11 29 0 rrcurveto 5 -210 rmoveto 74 0 56 57 0 75 rrcurveto 0 74 -44 51 -78 0 rrcurveto -37 0 -33 -14 -28 -27 rrcurveto 6 100 47 47 58 0 rrcurveto 27 0 21 -11 19 -13 rrcurveto 27 44 rlineto -23 17 -28 14 -45 0 rrcurveto -96 0 -74 -70 0 -147 rrcurveto 0 -123 59 -74 92 0 rrcurveto endchar -193 191 592 rmoveto 49 0 26 -33 0 -46 rrcurveto 0 -47 -30 -33 -41 0 rrcurveto -48 0 -35 39 -6 77 rrcurveto 30 32 26 11 29 0 rrcurveto 5 -210 rmoveto 74 0 56 57 0 75 rrcurveto 0 74 -44 51 -78 0 rrcurveto -37 0 -33 -14 -28 -27 rrcurveto 6 100 47 47 58 0 rrcurveto 27 0 21 -11 19 -13 rrcurveto 27 44 rlineto -23 17 -28 14 -45 0 rrcurveto -96 0 -74 -70 0 -147 rrcurveto 0 -123 59 -74 92 0 rrcurveto endchar -210 10 -160 rmoveto 60 0 rlineto 266 870 rlineto -60 0 rlineto endchar -474 -167 -12 rmoveto 56 0 rlineto 362 680 rlineto -56 0 rlineto endchar -360 endchar -426 endchar -63 54 0 rmoveto 400 0 rlineto 0 71 rlineto -281 0 rlineto 0 4 rlineto 40 42 21 43 0 69 rrcurveto 0 20 -2 18 -3 18 rrcurveto 146 0 rlineto 0 56 rlineto -159 0 rlineto -11 41 -12 39 0 42 rrcurveto 0 68 39 50 72 0 rrcurveto 46 0 31 -18 26 -33 rrcurveto 46 42 rlineto -33 46 -50 32 -73 0 rrcurveto -111 0 -75 -71 0 -113 rrcurveto 0 -42 14 -41 13 -42 rrcurveto -18 0 rlineto -67 -3 rlineto 0 -53 rlineto 100 0 rlineto 4 -18 3 -18 0 -19 rrcurveto 0 -75 -38 -68 -68 -36 rrcurveto endchar -221 235 -12 rmoveto 33 0 33 9 26 12 rrcurveto -17 59 rlineto -20 -9 -18 -3 -18 0 rrcurveto -55 0 -20 34 0 59 rrcurveto 0 270 rlineto 132 0 rlineto 0 67 rlineto -132 0 rlineto 0 156 rlineto -69 0 rlineto -10 -156 rlineto -76 -5 rlineto 0 -62 rlineto 72 0 rlineto 0 -268 rlineto 0 -97 35 -66 104 0 rrcurveto endchar -328 160 386 rmoveto 23 0 24 6 18 6 rrcurveto -13 47 rlineto -12 -6 -12 -2 -12 0 rrcurveto -34 0 -16 22 0 40 rrcurveto 0 167 rlineto 88 0 rlineto 0 50 rlineto -88 0 rlineto 0 97 rlineto -52 0 rlineto -8 -97 rlineto -50 -2 rlineto 0 -48 rlineto 48 0 rlineto 0 -167 rlineto 0 -67 25 -46 71 0 rrcurveto endchar -5 82 -205 rmoveto 83 0 rlineto 0 164 rlineto -2 83 rlineto 44 -34 43 -20 47 0 rrcurveto 111 0 100 97 0 165 rrcurveto 0 151 -69 97 -128 0 rrcurveto -53 0 -52 -28 -43 -35 rrcurveto 2 84 rlineto 0 193 rlineto -83 0 rlineto 201 -654 rmoveto -32 0 -42 13 -44 37 rrcurveto 0 254 rlineto 47 44 41 22 41 0 rrcurveto 91 0 37 -71 0 -107 rrcurveto 0 -120 -59 -72 -80 0 rrcurveto endchar -63 236 -12 rmoveto 117 0 94 69 0 113 rrcurveto 0 88 -61 56 -77 18 rrcurveto 0 4 rlineto 69 26 46 49 0 77 rrcurveto 0 103 -80 59 -111 0 rrcurveto -75 0 -59 -34 -49 -46 rrcurveto 44 -52 rlineto 38 37 45 27 53 0 rrcurveto 68 0 42 -39 0 -61 rrcurveto 0 -67 -46 -52 -135 0 rrcurveto 0 -63 rlineto 152 0 52 -51 0 -76 rrcurveto 0 -71 -55 -45 -77 0 rrcurveto -75 0 -50 35 -38 40 rrcurveto -42 -54 rlineto 43 -47 65 -43 102 0 rrcurveto endchar -193 180 -12 rmoveto 76 0 63 45 0 72 rrcurveto 0 52 -39 33 -45 11 rrcurveto 41 19 28 31 0 46 rrcurveto 0 66 -58 39 -67 0 rrcurveto -54 0 -40 -25 -34 -39 rrcurveto 39 -35 rlineto 22 28 28 20 29 0 rrcurveto 43 0 27 -25 0 -37 rrcurveto 0 -40 -39 -30 -66 0 rrcurveto 0 -41 rlineto 76 0 45 -24 0 -45 rrcurveto 0 -44 -36 -26 -42 0 rrcurveto -41 0 -34 22 -24 36 rrcurveto -43 -33 rlineto 30 -44 52 -32 63 0 rrcurveto endchar -193 180 254 rmoveto 76 0 63 45 0 72 rrcurveto 0 52 -39 33 -45 11 rrcurveto 41 19 28 31 0 46 rrcurveto 0 66 -58 39 -67 0 rrcurveto -54 0 -40 -25 -34 -39 rrcurveto 39 -35 rlineto 22 28 28 20 29 0 rrcurveto 43 0 27 -25 0 -37 rrcurveto 0 -40 -39 -30 -66 0 rrcurveto 0 -41 rlineto 76 0 45 -24 0 -45 rrcurveto 0 -44 -36 -26 -42 0 rrcurveto -41 0 -34 22 -24 36 rrcurveto -43 -33 rlineto 30 -44 52 -32 63 0 rrcurveto endchar -193 180 382 rmoveto 76 0 63 45 0 72 rrcurveto 0 52 -39 33 -45 11 rrcurveto 41 19 28 31 0 46 rrcurveto 0 66 -58 39 -67 0 rrcurveto -54 0 -40 -25 -34 -39 rrcurveto 39 -35 rlineto 22 28 28 20 29 0 rrcurveto 43 0 27 -25 0 -37 rrcurveto 0 -40 -39 -30 -66 0 rrcurveto 0 -41 rlineto 76 0 45 -24 0 -45 rrcurveto 0 -44 -36 -26 -42 0 rrcurveto -41 0 -34 22 -24 36 rrcurveto -43 -33 rlineto 30 -44 52 -32 63 0 rrcurveto endchar 236 179 254 rmoveto 76 0 63 45 0 72 rrcurveto 0 52 -39 33 -45 11 rrcurveto 41 19 28 31 0 46 rrcurveto 0 66 -58 39 -67 0 rrcurveto -54 0 -40 -25 -34 -39 rrcurveto 39 -35 rlineto 22 28 28 20 29 0 rrcurveto 43 0 27 -25 0 -37 rrcurveto 0 -40 -39 -30 -66 0 rrcurveto 0 -41 rlineto 76 0 45 -24 0 -45 rrcurveto 0 -44 -36 -26 -42 0 rrcurveto -41 0 -34 22 -24 36 rrcurveto -43 -33 rlineto 30 -44 52 -32 63 0 rrcurveto 39 -266 rmoveto 56 0 rlineto 362 680 rlineto -56 0 rlineto -43 -518 rmoveto 61 98 rlineto 50 81 rlineto 4 0 rlineto -4 -109 rlineto 0 -70 rlineto 0 -150 rmoveto 58 0 rlineto 0 104 rlineto 58 0 rlineto 0 46 rlineto -58 0 rlineto 0 240 rlineto -73 0 rlineto -163 -253 rlineto 0 -33 rlineto 178 0 rlineto endchar -63 40 0 rmoveto 412 0 rlineto 0 71 rlineto -191 0 rlineto -33 0 -39 -2 -35 -3 rrcurveto 155 158 112 115 0 124 rrcurveto 0 112 -74 75 -118 0 rrcurveto -82 0 -57 -39 -53 -60 rrcurveto 47 -45 rlineto 36 42 46 34 53 0 rrcurveto 81 0 40 -51 0 -73 rrcurveto 0 -103 -110 -118 -190 -186 rrcurveto endchar -193 52 0 rmoveto 268 0 rlineto 0 55 rlineto -164 0 rlineto 83 85 61 61 0 75 rrcurveto 0 82 -52 44 -78 0 rrcurveto -53 0 -47 -31 -30 -45 rrcurveto 38 -35 rlineto 22 32 29 25 33 0 rrcurveto 46 0 29 -32 0 -50 rrcurveto 0 -59 -64 -61 -121 -109 rrcurveto endchar -193 52 266 rmoveto 268 0 rlineto 0 55 rlineto -164 0 rlineto 83 85 61 61 0 75 rrcurveto 0 82 -52 44 -78 0 rrcurveto -53 0 -47 -31 -30 -45 rrcurveto 38 -35 rlineto 22 32 29 25 33 0 rrcurveto 46 0 29 -32 0 -50 rrcurveto 0 -59 -64 -61 -121 -109 rrcurveto endchar -193 52 394 rmoveto 268 0 rlineto 0 55 rlineto -164 0 rlineto 83 85 61 61 0 75 rrcurveto 0 82 -52 44 -78 0 rrcurveto -53 0 -47 -31 -30 -45 rrcurveto 38 -35 rlineto 22 32 29 25 33 0 rrcurveto 46 0 29 -32 0 -50 rrcurveto 0 -59 -64 -61 -121 -109 rrcurveto endchar -16 224 -12 rmoveto 67 0 48 35 45 53 rrcurveto 3 0 rlineto 7 -76 rlineto 68 0 rlineto 0 486 rlineto -83 0 rlineto 0 -344 rlineto -45 -57 -35 -25 -49 0 rrcurveto -64 0 -28 39 0 90 rrcurveto 0 297 rlineto -83 0 rlineto 0 -308 rlineto 0 -124 46 -66 103 0 rrcurveto endchar -190 153 386 rmoveto 43 0 37 25 27 28 rrcurveto 3 0 rlineto 7 -45 rlineto 49 0 rlineto 0 322 rlineto -62 0 rlineto 0 -229 rlineto -31 -33 -27 -14 -26 0 rrcurveto -50 0 -10 30 0 51 rrcurveto 0 195 rlineto -63 0 rlineto 0 -204 rlineto 0 -75 28 -51 75 0 rrcurveto endchar -16 224 -12 rmoveto 67 0 48 35 45 53 rrcurveto 3 0 rlineto 7 -76 rlineto 68 0 rlineto 0 486 rlineto -83 0 rlineto 0 -344 rlineto -45 -57 -35 -25 -49 0 rrcurveto -64 0 -28 39 0 90 rrcurveto 0 297 rlineto -83 0 rlineto 0 -308 rlineto 0 -124 46 -66 103 0 rrcurveto 4 585 rmoveto 179 153 rlineto -51 55 rlineto -170 -166 rlineto endchar -16 224 -12 rmoveto 67 0 48 35 45 53 rrcurveto 3 0 rlineto 7 -76 rlineto 68 0 rlineto 0 486 rlineto -83 0 rlineto 0 -344 rlineto -45 -57 -35 -25 -49 0 rrcurveto -64 0 -28 39 0 90 rrcurveto 0 297 rlineto -83 0 rlineto 0 -308 rlineto 0 -124 46 -66 103 0 rrcurveto -73 580 rmoveto 118 113 rlineto 4 0 rlineto 118 -113 rlineto 35 32 rlineto -113 140 rlineto -84 0 rlineto -113 -140 rlineto endchar -16 224 -12 rmoveto 67 0 48 35 45 53 rrcurveto 3 0 rlineto 7 -76 rlineto 68 0 rlineto 0 486 rlineto -83 0 rlineto 0 -344 rlineto -45 -57 -35 -25 -49 0 rrcurveto -64 0 -28 39 0 90 rrcurveto 0 297 rlineto -83 0 rlineto 0 -308 rlineto 0 -124 46 -66 103 0 rrcurveto -49 599 rmoveto 28 0 21 22 0 28 rrcurveto 0 28 -21 22 -28 0 rrcurveto -29 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 29 0 rrcurveto 192 0 rmoveto 29 0 21 22 0 28 rrcurveto 0 28 -21 22 -29 0 rrcurveto -28 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 28 0 rrcurveto endchar -16 224 -12 rmoveto 67 0 48 35 45 53 rrcurveto 3 0 rlineto 7 -76 rlineto 68 0 rlineto 0 486 rlineto -83 0 rlineto 0 -344 rlineto -45 -57 -35 -25 -49 0 rrcurveto -64 0 -28 39 0 90 rrcurveto 0 297 rlineto -83 0 rlineto 0 -308 rlineto 0 -124 46 -66 103 0 rrcurveto 90 585 rmoveto 42 42 rlineto -170 166 rlineto -51 -55 rlineto endchar -60 12 -126 rmoveto 476 0 rlineto 0 55 rlineto -476 0 rlineto endchar 412 90 0 rmoveto 370 0 rlineto 0 71 rlineto -286 0 rlineto 0 585 rlineto -84 0 rlineto 287 -394 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto 199 -262 rmoveto 370 0 rlineto 0 71 rlineto -286 0 rlineto 0 585 rlineto -84 0 rlineto endchar 58 169 -12 rmoveto 21 0 15 3 12 6 rrcurveto -11 62 rlineto -8 -2 -4 0 -5 0 rrcurveto -13 0 -11 9 0 26 rrcurveto 0 620 rlineto -83 0 rlineto 0 -614 rlineto 0 -70 25 -40 62 0 rrcurveto 135 274 rmoveto 33 0 27 26 0 37 rrcurveto 0 38 -27 26 -33 0 rrcurveto -33 0 -27 -26 0 -38 rrcurveto 0 -37 27 -26 33 0 rrcurveto 228 -274 rmoveto 21 0 15 3 12 6 rrcurveto -11 62 rlineto -8 -2 -4 0 -5 0 rrcurveto -13 0 -11 9 0 26 rrcurveto 0 620 rlineto -83 0 rlineto 0 -614 rlineto 0 -70 25 -40 62 0 rrcurveto endchar -92 187 0 rmoveto 97 0 rlineto 172 486 rlineto -82 0 rlineto -91 -275 rlineto -15 -48 -16 -49 -14 -47 rrcurveto -4 0 rlineto -15 47 -15 49 -15 48 rrcurveto -91 275 rlineto -86 0 rlineto endchar -238 124 394 rmoveto 74 0 rlineto 116 322 rlineto -62 0 rlineto -58 -176 rlineto -31 -96 rlineto -3 0 rlineto -31 96 rlineto -58 176 rlineto -63 0 rlineto endchar 158 160 0 rmoveto 100 0 rlineto 65 261 rlineto 13 44 9 43 9 57 rrcurveto 4 0 rlineto 11 -57 9 -42 12 -45 rrcurveto 66 -261 rlineto 105 0 rlineto 131 486 rlineto -79 0 rlineto -71 -282 rlineto -11 -44 -8 -42 -10 -52 rrcurveto -4 0 rlineto -10 52 -11 42 -11 44 rrcurveto -74 282 rlineto -89 0 rlineto -73 -282 rlineto -11 -44 -9 -42 -10 -52 rrcurveto -4 0 rlineto -8 52 -10 42 -11 44 rrcurveto -71 282 rlineto -85 0 rlineto endchar -72 105 394 rmoveto 74 0 rlineto 44 164 rlineto 20 91 rlineto 2 0 rlineto 21 -91 rlineto 43 -164 rlineto 76 0 rlineto 87 322 rlineto -60 0 rlineto -43 -178 rlineto -21 -92 rlineto -4 0 rlineto -21 92 rlineto -50 178 rlineto -57 0 rlineto -47 -178 rlineto -22 -92 rlineto -3 0 rlineto -20 92 rlineto -44 178 rlineto -64 0 rlineto endchar -113 14 0 rmoveto 87 0 rlineto 65 113 rlineto 17 29 16 30 16 28 rrcurveto 4 0 rlineto 18 -28 18 -30 17 -29 rrcurveto 71 -113 rlineto 90 0 rlineto -158 245 rlineto 147 241 rlineto -87 0 rlineto -59 -106 rlineto -15 -27 -14 -27 -15 -27 rrcurveto -4 0 rlineto -16 27 -16 27 -15 27 rrcurveto -65 106 rlineto -90 0 rlineto 147 -232 rlineto endchar -252 8 394 rmoveto 66 0 rlineto 41 69 rlineto 33 55 rlineto 4 0 rlineto 35 -55 rlineto 43 -69 rlineto 68 0 rlineto -105 162 rlineto 99 160 rlineto -67 0 rlineto -37 -66 rlineto -27 -51 rlineto -4 0 rlineto -31 51 rlineto -40 66 rlineto -69 0 rlineto 99 -153 rlineto endchar -92 91 -209 rmoveto 97 0 51 73 34 96 rrcurveto 183 526 rlineto -81 0 rlineto -87 -268 rlineto -13 -43 -14 -50 -13 -44 rrcurveto -4 0 rlineto -16 45 -16 50 -16 42 rrcurveto -98 268 rlineto -86 0 rlineto 195 -487 rlineto -11 -36 rlineto -20 -60 -35 -43 -54 0 rrcurveto -12 0 -12 2 -12 4 rrcurveto -18 -65 rlineto 16 -6 19 -4 23 0 rrcurveto endchar -240 65 261 rmoveto 68 0 35 48 25 67 rrcurveto 119 340 rlineto -62 0 rlineto -52 -169 rlineto -10 -31 -10 -30 -9 -32 rrcurveto -4 0 rlineto -10 33 -10 31 -10 29 rrcurveto -63 169 rlineto -64 0 rlineto 131 -320 rlineto -7 -20 rlineto -12 -38 -24 -26 -35 0 rrcurveto -8 0 -7 1 -9 4 rrcurveto -13 -50 rlineto 12 -4 13 -2 16 0 rrcurveto endchar -92 91 -209 rmoveto 97 0 51 73 34 96 rrcurveto 183 526 rlineto -81 0 rlineto -87 -268 rlineto -13 -43 -14 -50 -13 -44 rrcurveto -4 0 rlineto -16 45 -16 50 -16 42 rrcurveto -98 268 rlineto -86 0 rlineto 195 -487 rlineto -11 -36 rlineto -20 -60 -35 -43 -54 0 rrcurveto -12 0 -12 2 -12 4 rrcurveto -18 -65 rlineto 16 -6 19 -4 23 0 rrcurveto 109 782 rmoveto 179 153 rlineto -51 55 rlineto -170 -166 rlineto endchar -92 91 -209 rmoveto 97 0 51 73 34 96 rrcurveto 183 526 rlineto -81 0 rlineto -87 -268 rlineto -13 -43 -14 -50 -13 -44 rrcurveto -4 0 rlineto -16 45 -16 50 -16 42 rrcurveto -98 268 rlineto -86 0 rlineto 195 -487 rlineto -11 -36 rlineto -20 -60 -35 -43 -54 0 rrcurveto -12 0 -12 2 -12 4 rrcurveto -18 -65 rlineto 16 -6 19 -4 23 0 rrcurveto 56 796 rmoveto 28 0 21 22 0 28 rrcurveto 0 28 -21 22 -28 0 rrcurveto -29 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 29 0 rrcurveto 192 0 rmoveto 29 0 21 22 0 28 rrcurveto 0 28 -21 22 -29 0 rrcurveto -28 0 -21 -22 0 -28 rrcurveto 0 -28 21 -22 28 0 rrcurveto endchar -63 207 0 rmoveto 82 0 rlineto 0 151 rlineto 162 0 rlineto 0 52 rlineto -162 0 rlineto 0 67 rlineto 162 0 rlineto 0 52 rlineto -140 0 rlineto 162 316 rlineto -82 0 rlineto -79 -172 rlineto -19 -44 -20 -44 -22 -47 rrcurveto -4 0 rlineto -21 47 -19 44 -20 44 rrcurveto -78 172 rlineto -85 0 rlineto 160 -316 rlineto -139 0 rlineto 0 -52 rlineto 162 0 rlineto 0 -67 rlineto -162 0 rlineto 0 -52 rlineto 162 0 rlineto endchar -135 31 0 rmoveto 369 0 rlineto 0 68 rlineto -264 0 rlineto 255 374 rlineto 0 44 rlineto -332 0 rlineto 0 -67 rlineto 227 0 rlineto -255 -375 rlineto endchar -270 21 394 rmoveto 252 0 rlineto 0 51 rlineto -172 0 rlineto 166 236 rlineto 0 35 rlineto -226 0 rlineto 0 -50 rlineto 147 0 rlineto -167 -238 rlineto endchar -63 249 -12 rmoveto 127 0 77 119 0 214 rrcurveto 0 214 -77 115 -127 0 rrcurveto -128 0 -77 -115 0 -214 rrcurveto 0 -214 77 -119 128 0 rrcurveto 0 67 rmoveto -74 0 -50 79 0 187 rrcurveto 0 187 50 75 74 0 rrcurveto 74 0 50 -75 0 -187 rrcurveto 0 -187 -50 -79 -74 0 rrcurveto endchar -193 184 -12 rmoveto 89 0 60 75 0 133 rrcurveto 0 131 -60 75 -89 0 rrcurveto -90 0 -59 -75 0 -131 rrcurveto 0 -133 59 -75 90 0 rrcurveto 0 51 rmoveto -51 0 -36 53 0 104 rrcurveto 0 104 36 51 51 0 rrcurveto 51 0 35 -51 0 -104 rrcurveto 0 -104 -35 -53 -51 0 rrcurveto endchar -193 184 254 rmoveto 89 0 60 75 0 133 rrcurveto 0 131 -60 75 -89 0 rrcurveto -90 0 -59 -75 0 -131 rrcurveto 0 -133 59 -75 90 0 rrcurveto 0 51 rmoveto -51 0 -36 53 0 104 rrcurveto 0 104 36 51 51 0 rrcurveto 51 0 35 -51 0 -104 rrcurveto 0 -104 -35 -53 -51 0 rrcurveto endchar -193 184 382 rmoveto 89 0 60 75 0 133 rrcurveto 0 131 -60 75 -89 0 rrcurveto -90 0 -59 -75 0 -131 rrcurveto 0 -133 59 -75 90 0 rrcurveto 0 51 rmoveto -51 0 -36 53 0 104 rrcurveto 0 104 36 51 51 0 rrcurveto 51 0 35 -51 0 -104 rrcurveto 0 -104 -35 -53 -51 0 rrcurveto endchar cffsubr-0.2.9/tests/data/SourceSansVariable-Roman.subset.ttx000066400000000000000000033246051413553707200241250ustar00rootroot00000000000000 © 2010 - 2019 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. Source Sans Variable Regular 3.006;ADBO;SourceSansVariable-Roman;ADOBE Source Sans Variable Version 3.006;hotconv 1.0.111;makeotfexe 2.5.65597 SourceSansVariable-Roman Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. Adobe Systems Incorporated Paul D. Hunt http://www.adobe.com/type This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL. This Font Software is distributed on an ‘AS IS’ BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. http://scripts.sil.org/OFL Roman Italic Weight ExtraLight SourceSansRoman-ExtraLight Light SourceSansRoman-Light Regular SourceSansRoman-Regular Semibold SourceSansRoman-Semibold Bold SourceSansRoman-Bold Black SourceSansRoman-Black 96 -12 -20 1 blend 0 rmoveto 432 74 120 1 blend 0 rlineto 0 660 rlineto -432 -74 -120 1 blend 0 rlineto 0 -660 rlineto 48 32 101 164 45 72 2 blend rmoveto 102 176 -47 -76 -75 -120 2 blend rlineto 64 106 -17 -28 -6 -10 2 blend rlineto 4 0 rlineto 62 -106 -16 -26 6 10 2 blend rlineto 100 -176 -46 -74 75 120 2 blend rlineto -332 126 204 1 blend 0 rlineto 166 334 -64 -104 -9 -14 2 blend rmoveto -56 92 10 16 3 4 2 blend rlineto -94 168 47 76 -82 -132 2 blend rlineto 302 -113 -182 1 blend 0 rlineto -94 -168 47 76 82 132 2 blend rlineto -54 -92 9 14 -3 -4 2 blend rlineto -4 0 rlineto -176 -292 9 14 25 40 2 blend rmoveto 0 536 -124 -200 1 blend rlineto 154 -270 -45 -72 63 102 2 blend rlineto -154 -266 45 72 61 98 2 blend rlineto 354 -17 -26 1 blend 0 rmoveto -152 266 44 70 -61 -98 2 blend rlineto 152 270 -44 -70 -63 -102 2 blend rlineto 0 -536 124 200 1 blend rlineto 1 vsindex 10 -20 1 blend 0 rmoveto 32 144 1 blend 0 rlineto 140 396 -66 -80 2 blend rlineto 28 80 24 68 24 82 -12 -18 -8 10 -10 -16 6 blend rrcurveto 4 0 rlineto 24 -82 24 -68 28 -80 -8 17 -8 -11 -12 18 6 blend rrcurveto 138 -396 -64 80 2 blend rlineto 34 148 1 blend 0 rlineto -236 660 38 -10 2 blend rlineto -28 -180 1 blend 0 rlineto -236 -660 38 10 2 blend rlineto 102 236 40 -98 2 blend rmoveto 293 25 1 blend 0 rlineto 0 28 105 1 blend rlineto -293 -25 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 1 vsindex 26 -48 1 blend 0 rmoveto 34 146 1 blend 0 rlineto 220 392 -70 -44 2 blend rlineto 44 82 44 80 42 76 -22 -30 -22 -20 -18 -14 6 blend rrcurveto 4 0 rlineto 0 -630 108 1 blend rlineto 344 76 1 blend 0 rlineto 0 28 116 1 blend rlineto -312 64 1 blend 0 rlineto 0 310 -194 1 blend rlineto 250 -48 1 blend 0 rlineto 0 28 116 1 blend rlineto -250 48 1 blend 0 rlineto 0 266 -164 1 blend rlineto 302 -64 1 blend 0 rlineto 0 28 116 1 blend rlineto -350 -166 1 blend 0 rlineto -372 -660 76 10 2 blend rlineto 148 226 4 -94 2 blend rmoveto 268 70 1 blend 0 rlineto 0 28 105 1 blend rlineto -268 -70 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 1 vsindex 10 -20 1 blend 0 rmoveto 32 144 1 blend 0 rlineto 140 396 -66 -80 2 blend rlineto 28 80 24 68 24 82 -12 -18 -8 10 -10 -16 6 blend rrcurveto 4 0 rlineto 24 -82 24 -68 28 -80 -8 17 -8 -11 -12 18 6 blend rrcurveto 138 -396 -64 80 2 blend rlineto 34 148 1 blend 0 rlineto -236 660 38 -10 2 blend rlineto -28 -180 1 blend 0 rlineto -236 -660 38 10 2 blend rlineto 102 236 40 -98 2 blend rmoveto 293 25 1 blend 0 rlineto 0 28 105 1 blend rlineto -293 -25 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 96 474 62 1 blend rmoveto 156 112 80 8 2 blend rlineto -20 24 -50 86 2 blend rlineto -152 -120 -74 -26 2 blend rlineto 16 -16 44 -68 2 blend rlineto 1 vsindex 10 -20 1 blend 0 rmoveto 32 144 1 blend 0 rlineto 140 396 -66 -80 2 blend rlineto 28 80 24 68 24 82 -12 -18 -8 10 -10 -16 6 blend rrcurveto 4 0 rlineto 24 -82 24 -68 28 -80 -8 17 -8 -11 -12 18 6 blend rrcurveto 138 -396 -64 80 2 blend rlineto 34 148 1 blend 0 rlineto -236 660 38 -10 2 blend rlineto -28 -180 1 blend 0 rlineto -236 -660 38 10 2 blend rlineto 102 236 40 -98 2 blend rmoveto 293 25 1 blend 0 rlineto 0 28 105 1 blend rlineto -293 -25 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 32 474 22 68 2 blend rmoveto 114 100 -12 -20 2 blend rlineto 4 0 rlineto 114 -100 -12 20 2 blend rlineto 14 16 60 28 2 blend rlineto -116 114 32 -4 2 blend rlineto -28 -160 1 blend 0 rlineto -116 -114 32 4 2 blend rlineto 14 -16 60 -28 2 blend rlineto 1 vsindex 10 -20 1 blend 0 rmoveto 32 144 1 blend 0 rlineto 140 396 -66 -80 2 blend rlineto 28 80 24 68 24 82 -12 -18 -8 10 -10 -16 6 blend rrcurveto 4 0 rlineto 24 -82 24 -68 28 -80 -8 17 -8 -11 -12 18 6 blend rrcurveto 138 -396 -64 80 2 blend rlineto 34 148 1 blend 0 rlineto -236 660 38 -10 2 blend rlineto -28 -180 1 blend 0 rlineto -236 -660 38 10 2 blend rlineto 102 236 40 -98 2 blend rmoveto 293 25 1 blend 0 rlineto 0 28 105 1 blend rlineto -293 -25 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 52 492 -8 64 2 blend rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 192 36 1 blend 0 rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 1 vsindex 10 -20 1 blend 0 rmoveto 32 144 1 blend 0 rlineto 140 396 -66 -80 2 blend rlineto 28 80 24 68 24 82 -12 -18 -8 10 -10 -16 6 blend rrcurveto 4 0 rlineto 24 -82 24 -68 28 -80 -8 17 -8 -11 -12 18 6 blend rrcurveto 138 -396 -64 80 2 blend rlineto 34 148 1 blend 0 rlineto -236 660 38 -10 2 blend rlineto -28 -180 1 blend 0 rlineto -236 -660 38 10 2 blend rlineto 102 236 40 -98 2 blend rmoveto 293 25 1 blend 0 rlineto 0 28 105 1 blend rlineto -293 -25 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 200 474 20 62 2 blend rmoveto 16 16 44 68 2 blend rlineto -152 120 -74 26 2 blend rlineto -20 -24 -50 -86 2 blend rlineto 156 -112 80 -8 2 blend rlineto 1 vsindex 10 -20 1 blend 0 rmoveto 32 144 1 blend 0 rlineto 140 396 -66 -80 2 blend rlineto 28 80 24 68 24 82 -12 -18 -8 10 -10 -16 6 blend rrcurveto 4 0 rlineto 24 -82 24 -68 28 -80 -8 17 -8 -11 -12 18 6 blend rrcurveto 138 -396 -64 80 2 blend rlineto 34 148 1 blend 0 rlineto -236 660 38 -10 2 blend rlineto -28 -180 1 blend 0 rlineto -236 -660 38 10 2 blend rlineto 102 236 40 -98 2 blend rmoveto 293 25 1 blend 0 rlineto 0 28 105 1 blend rlineto -293 -25 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 148 464 10 94 2 blend rmoveto 54 36 1 blend 0 40 32 10 8 2 blend 0 52 10 1 blend rrcurveto 0 52 -40 32 -54 10 -10 8 -36 4 blend 0 rrcurveto -54 -36 1 blend 0 -40 -32 -10 -8 2 blend 0 -52 -10 1 blend rrcurveto 0 -52 40 -32 54 -10 10 -8 36 4 blend 0 rrcurveto 0 22 38 1 blend rmoveto -38 14 1 blend 0 -30 20 16 -2 2 blend 0 42 -18 1 blend rrcurveto 0 42 30 20 38 -18 -16 -2 -14 4 blend 0 rrcurveto 38 -14 1 blend 0 30 -20 -16 2 2 blend 0 -42 18 1 blend rrcurveto 0 -42 -30 -20 -38 18 16 2 14 4 blend 0 rrcurveto 1 vsindex 10 -20 1 blend 0 rmoveto 32 144 1 blend 0 rlineto 140 396 -66 -80 2 blend rlineto 28 80 24 68 24 82 -12 -18 -8 10 -10 -16 6 blend rrcurveto 4 0 rlineto 24 -82 24 -68 28 -80 -8 17 -8 -11 -12 18 6 blend rrcurveto 138 -396 -64 80 2 blend rlineto 34 148 1 blend 0 rlineto -236 660 38 -10 2 blend rlineto -28 -180 1 blend 0 rlineto -236 -660 38 10 2 blend rlineto 102 236 40 -98 2 blend rmoveto 293 25 1 blend 0 rlineto 0 28 105 1 blend rlineto -293 -25 1 blend 0 rlineto 0 -28 -105 1 blend rlineto 226 486 2 62 2 blend rmoveto 52 21 1 blend 0 28 49 2 57 29 -7 4 53 4 blend rrcurveto -24 2 -86 6 2 blend rlineto -6 -48 -21 -32 -31 2 14 9 24 15 5 blend 0 rrcurveto -58 30 1 blend 0 -20 82 -78 -16 -30 8 3 blend 0 rrcurveto -52 -21 1 blend 0 -28 -49 -2 -57 -29 7 -4 -53 4 blend rrcurveto 24 -2 86 -6 2 blend rlineto 4 48 23 32 31 -14 -11 -24 -15 4 blend 0 rrcurveto 58 -30 1 blend 0 20 -82 78 16 30 -8 3 blend 0 rrcurveto 1 vsindex 100 -28 1 blend 0 rmoveto 184 70 1 blend 0 rlineto 150 -10 1 blend 0 94 66 22 -8 2 blend 0 126 8 1 blend rrcurveto 0 92 -58 54 -88 14 -6 8 -6 26 4 5 blend rrcurveto 0 4 rlineto 68 -18 1 blend 20 36 54 -4 10 2 blend 0 70 -14 1 blend rrcurveto 0 108 -82 52 -132 20 -28 -18 -4 4 blend 0 rrcurveto -172 -62 1 blend 0 rlineto 0 -660 10 1 blend rlineto 32 366 140 30 2 blend rmoveto 0 266 -144 1 blend rlineto 126 -68 1 blend 0 rlineto 128 -72 1 blend 0 68 -36 -42 20 2 blend 0 -98 58 1 blend rrcurveto 0 -82 -58 -50 -144 42 32 24 88 4 blend 0 rrcurveto -120 62 1 blend 0 rlineto 0 -338 74 1 blend rmoveto 0 310 -172 1 blend rlineto 140 -70 1 blend 0 rlineto 142 -74 1 blend 0 82 -48 -50 30 2 blend 0 -100 52 1 blend rrcurveto 0 -112 -86 -50 -138 64 54 26 70 4 blend 0 rrcurveto -140 70 1 blend 0 rlineto 1 vsindex 328 26 1 blend -12 rmoveto 86 -4 1 blend 0 58 36 50 58 16 -6 8 8 4 blend rrcurveto -20 20 -70 82 2 blend rlineto -50 -56 -52 -28 -70 22 26 12 8 20 5 blend 0 rrcurveto -148 64 1 blend 0 -92 124 36 -56 2 blend 0 190 -68 1 blend rrcurveto 0 190 92 120 152 -72 -26 -50 -76 4 blend 0 rrcurveto 62 -18 1 blend 0 50 -28 36 -42 -18 14 -4 14 4 blend rrcurveto 20 22 70 82 2 blend rlineto -34 40 -58 -12 8 -12 3 blend 38 -76 -10 1 blend 0 rrcurveto -168 4 1 blend 0 -110 -132 -40 8 2 blend 0 -208 -10 1 blend rrcurveto 0 -208 110 -136 162 -14 34 26 4 4 blend 0 rrcurveto 1 vsindex 328 26 1 blend -12 rmoveto 86 -4 1 blend 0 58 36 50 58 16 -6 8 8 4 blend rrcurveto -20 20 -70 82 2 blend rlineto -50 -56 -52 -28 -70 22 26 12 8 20 5 blend 0 rrcurveto -148 64 1 blend 0 -92 124 36 -56 2 blend 0 190 -68 1 blend rrcurveto 0 190 92 120 152 -72 -26 -50 -76 4 blend 0 rrcurveto 62 -18 1 blend 0 50 -28 36 -42 -18 14 -4 14 4 blend rrcurveto 20 22 70 82 2 blend rlineto -34 40 -58 -12 8 -12 3 blend 38 -76 -10 1 blend 0 rrcurveto -168 4 1 blend 0 -110 -132 -40 8 2 blend 0 -208 -10 1 blend rrcurveto 0 -208 110 -136 162 -14 34 26 4 4 blend 0 rrcurveto -64 -204 -48 -28 2 blend rmoveto 90 6 48 26 42 -2 30 6 4 blend 0 50 22 1 blend rrcurveto 0 40 -28 18 -42 10 2 2 4 -10 2 5 blend rrcurveto 30 68 -2 -4 2 blend rlineto -28 -70 1 blend 0 rlineto -40 -86 -10 -14 2 blend rlineto 54 8 1 blend -8 24 -10 1 blend -14 0 -30 12 1 blend rrcurveto 0 -30 -26 -18 -88 -6 2 2 8 12 2 5 blend rrcurveto 6 -26 6 -40 2 blend rlineto 100 -17 -28 1 blend 0 rmoveto 148 33 54 1 blend 0 rlineto 204 -10 -16 1 blend 0 92 136 26 44 -23 -38 2 blend 0 196 21 34 1 blend rrcurveto 0 196 -92 132 -204 20 34 -26 -44 -24 -40 4 6 4 blend 0 rrcurveto -148 -27 -44 1 blend 0 rlineto 0 -660 6 10 1 blend rlineto 32 28 84 140 66 110 2 blend rmoveto 0 604 -138 -230 1 blend rlineto 112 -61 -102 1 blend 0 rlineto 188 -56 -94 1 blend 0 78 -126 -3 -4 56 94 2 blend 0 -174 14 22 1 blend rrcurveto 0 -174 -78 -130 -188 13 22 3 4 55 92 56 94 4 blend 0 rrcurveto -112 61 102 1 blend 0 rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 364 66 1 blend 0 rlineto 0 28 116 1 blend rlineto -332 74 1 blend 0 rlineto 0 310 -194 1 blend rlineto 270 -58 1 blend 0 rlineto 0 28 116 1 blend rlineto -270 58 1 blend 0 rlineto 0 266 -164 1 blend rlineto 322 -74 1 blend 0 rlineto 0 28 116 1 blend rlineto -354 -66 1 blend 0 rlineto 0 -660 10 1 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 364 66 1 blend 0 rlineto 0 28 116 1 blend rlineto -332 74 1 blend 0 rlineto 0 310 -194 1 blend rlineto 270 -58 1 blend 0 rlineto 0 28 116 1 blend rlineto -270 58 1 blend 0 rlineto 0 266 -164 1 blend rlineto 322 -74 1 blend 0 rlineto 0 28 116 1 blend rlineto -354 -66 1 blend 0 rlineto 0 -660 10 1 blend rlineto 138 710 18 -36 2 blend rmoveto 156 112 80 8 2 blend rlineto -20 24 -50 86 2 blend rlineto -152 -120 -74 -26 2 blend rlineto 16 -16 44 -68 2 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 364 66 1 blend 0 rlineto 0 28 116 1 blend rlineto -332 74 1 blend 0 rlineto 0 310 -194 1 blend rlineto 270 -58 1 blend 0 rlineto 0 28 116 1 blend rlineto -270 58 1 blend 0 rlineto 0 266 -164 1 blend rlineto 322 -74 1 blend 0 rlineto 0 28 116 1 blend rlineto -354 -66 1 blend 0 rlineto 0 -660 10 1 blend rlineto 74 710 40 -30 2 blend rmoveto 114 100 -12 -20 2 blend rlineto 4 0 rlineto 114 -100 -12 20 2 blend rlineto 14 16 60 28 2 blend rlineto -116 114 32 -4 2 blend rlineto -28 -160 1 blend 0 rlineto -116 -114 32 4 2 blend rlineto 14 -16 60 -28 2 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 364 66 1 blend 0 rlineto 0 28 116 1 blend rlineto -332 74 1 blend 0 rlineto 0 310 -194 1 blend rlineto 270 -58 1 blend 0 rlineto 0 28 116 1 blend rlineto -270 58 1 blend 0 rlineto 0 266 -164 1 blend rlineto 322 -74 1 blend 0 rlineto 0 28 116 1 blend rlineto -354 -66 1 blend 0 rlineto 0 -660 10 1 blend rlineto 94 728 10 -34 2 blend rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 192 36 1 blend 0 rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 1 vsindex 100 -28 1 blend 0 rmoveto 364 66 1 blend 0 rlineto 0 28 116 1 blend rlineto -332 74 1 blend 0 rlineto 0 310 -194 1 blend rlineto 270 -58 1 blend 0 rlineto 0 28 116 1 blend rlineto -270 58 1 blend 0 rlineto 0 266 -164 1 blend rlineto 322 -74 1 blend 0 rlineto 0 28 116 1 blend rlineto -354 -66 1 blend 0 rlineto 0 -660 10 1 blend rlineto 242 710 38 -36 2 blend rmoveto 16 16 44 68 2 blend rlineto -152 120 -74 26 2 blend rlineto -20 -24 -50 -86 2 blend rlineto 156 -112 80 -8 2 blend rlineto 38 336 -8 -14 -38 -58 2 blend rmoveto 282 48 80 1 blend 0 rlineto 0 28 58 84 1 blend rlineto -198 -53 -88 1 blend 0 rlineto -84 -2 5 8 -2 -4 2 blend rlineto 0 -26 -56 -80 1 blend rlineto 82 -336 -5 -8 38 58 2 blend rmoveto 148 33 54 1 blend 0 rlineto 204 -10 -16 1 blend 0 92 136 26 44 -23 -38 2 blend 0 196 21 34 1 blend rrcurveto 0 196 -92 132 -204 20 34 -26 -44 -24 -40 4 6 4 blend 0 rrcurveto -148 -27 -44 1 blend 0 rlineto 0 -660 6 10 1 blend rlineto 32 28 84 140 66 110 2 blend rmoveto 0 604 -138 -230 1 blend rlineto 112 -61 -102 1 blend 0 rlineto 188 -56 -94 1 blend 0 78 -126 -3 -4 56 94 2 blend 0 -174 14 22 1 blend rrcurveto 0 -174 -78 -130 -188 13 22 3 4 55 92 56 94 4 blend 0 rrcurveto -112 61 102 1 blend 0 rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 326 -88 1 blend rlineto 270 -54 1 blend 0 rlineto 0 28 116 1 blend rlineto -270 54 1 blend 0 rlineto 0 278 -154 1 blend rlineto 320 -68 1 blend 0 rlineto 0 28 116 1 blend rlineto -352 -72 1 blend 0 rlineto 0 -660 10 1 blend rlineto 1 vsindex 334 38 1 blend -12 rmoveto 86 6 1 blend 0 66 30 40 16 6 6 3 blend 44 rrcurveto 0 256 54 1 blend rlineto -196 -52 1 blend 0 rlineto 0 -28 -112 1 blend rlineto 164 -68 1 blend 0 rlineto 0 -218 128 1 blend rlineto -34 -34 -60 -20 -64 22 26 40 16 46 5 blend 0 rrcurveto -154 38 1 blend 0 -92 124 38 -56 2 blend 0 190 -68 1 blend rrcurveto 0 190 96 120 158 -72 -30 -50 -70 4 blend 0 rrcurveto 74 -22 1 blend 0 48 -32 34 -38 -16 18 -2 10 4 blend rrcurveto 20 22 70 82 2 blend rlineto -34 36 -54 42 -88 -12 12 -16 -4 -8 5 blend 0 rrcurveto -174 0 -114 -132 -36 8 2 blend 0 -208 -10 1 blend rrcurveto 0 -208 110 -136 168 -14 36 26 14 4 blend 0 rrcurveto 100 -17 -28 1 blend 0 rmoveto 32 84 140 1 blend 0 rlineto 0 338 -48 -80 1 blend rlineto 370 -105 -176 1 blend 0 rlineto 0 -338 48 80 1 blend rlineto 32 84 140 1 blend 0 rlineto 0 660 -6 -10 1 blend rlineto -32 -84 -140 1 blend 0 rlineto 0 -294 31 52 1 blend rlineto -370 105 176 1 blend 0 rlineto 0 294 -31 -52 1 blend rlineto -32 -84 -140 1 blend 0 rlineto 0 -660 6 10 1 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 660 -10 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 660 -10 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto -36 710 62 -36 2 blend rmoveto 156 112 80 8 2 blend rlineto -20 24 -50 86 2 blend rlineto -152 -120 -74 -26 2 blend rlineto 16 -16 44 -68 2 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 660 -10 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto -100 710 84 -30 2 blend rmoveto 114 100 -12 -20 2 blend rlineto 4 0 rlineto 114 -100 -12 20 2 blend rlineto 14 16 60 28 2 blend rlineto -116 114 32 -4 2 blend rlineto -28 -160 1 blend 0 rlineto -116 -114 32 4 2 blend rlineto 14 -16 60 -28 2 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 660 -10 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto -80 728 54 -34 2 blend rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 192 36 1 blend 0 rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 660 -10 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto 68 710 82 -36 2 blend rmoveto 16 16 44 68 2 blend rlineto -152 120 -74 26 2 blend rlineto -20 -24 -50 -86 2 blend rlineto 156 -112 80 -8 2 blend rlineto 1 vsindex 200 20 1 blend -12 rmoveto 116 42 1 blend 0 42 82 32 28 2 blend 0 104 30 1 blend rrcurveto 0 486 -68 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -482 78 1 blend rlineto 0 -110 -40 -50 -84 24 14 26 32 4 blend 0 rrcurveto -58 26 1 blend 0 -40 22 -34 58 8 -2 18 -26 4 blend rrcurveto -26 -16 -82 -58 2 blend rlineto 32 -60 54 -34 70 12 -28 12 -4 26 5 blend 0 rrcurveto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 234 -72 1 blend rlineto 142 160 -80 -72 2 blend rlineto 226 -394 -82 144 2 blend rlineto 38 150 1 blend 0 rlineto -240 418 8 -32 2 blend rlineto 212 242 -18 22 2 blend rlineto -40 -148 1 blend 0 rlineto -336 -380 172 138 2 blend rlineto -2 -2 1 blend 0 rlineto 0 380 -138 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 342 76 1 blend 0 rlineto 0 28 116 1 blend rlineto -310 64 1 blend 0 rlineto 0 632 -126 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto 100 -18 -28 1 blend 0 rmoveto 30 78 124 1 blend 0 rlineto 0 460 -162 -268 1 blend rlineto 0 52 -2 66 -2 54 10 14 -8 -12 24 54 -6 -6 6 12 5 blend rrcurveto 4 0 rlineto 52 -146 -12 -30 1 blend rlineto 150 -412 -46 -70 120 197 2 blend rlineto 34 44 58 1 blend 0 rlineto 149 412 -43 -69 -120 -197 2 blend rlineto 51 146 1 3 12 30 2 blend rlineto 4 0 rlineto -2 -54 -2 -66 -6 -6 -6 -12 -8 -12 -24 -54 4 blend 0 -52 -10 -14 1 blend rrcurveto 0 -460 162 268 1 blend rlineto 32 78 124 1 blend 0 rlineto 0 660 -6 -10 1 blend rlineto -52 -88 -132 1 blend 0 rlineto -142 -400 30 48 80 134 2 blend rlineto -18 -50 -16 -50 -18 -50 4 6 8 14 6 6 12 10 6 6 2 12 6 blend rrcurveto -4 0 rlineto -18 50 -18 50 -18 50 6 6 -2 -12 6 8 -12 -10 4 6 -8 -14 6 blend rrcurveto -142 400 30 44 -80 -134 2 blend rlineto -52 -88 -132 1 blend 0 rlineto 0 -660 6 10 1 blend rlineto 100 -17 -28 1 blend 0 rmoveto 30 81 134 1 blend 0 rlineto 0 434 -148 -246 1 blend rlineto 0 62 -2 56 -2 62 11 18 -6 -12 25 38 -5 -6 6 12 5 blend rrcurveto 4 0 rlineto 24 -42 26 -44 26 -3 -4 -10 -8 -4 -6 -8 -8 -2 -4 5 blend -44 rrcurveto 292 -484 -96 -148 124 194 2 blend rlineto 34 93 142 1 blend 0 rlineto 0 660 -6 -10 1 blend rlineto -30 -81 -134 1 blend 0 rlineto 0 -428 142 240 1 blend rlineto 0 -62 2 -60 2 -64 -10 -18 6 12 -20 -38 5 6 -6 -6 5 blend rrcurveto -4 0 rlineto -24 42 -26 44 -26 3 4 10 8 4 6 8 8 2 4 5 blend 44 rrcurveto -292 484 96 148 -124 -194 2 blend rlineto -34 -93 -142 1 blend 0 rlineto 0 -660 6 10 1 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 30 134 1 blend 0 rlineto 0 434 -246 1 blend rlineto 0 62 -2 56 -2 62 18 -12 38 -6 12 5 blend rrcurveto 4 0 rlineto 24 -42 26 -44 26 -4 -8 -6 -8 -4 5 blend -44 rrcurveto 292 -484 -148 194 2 blend rlineto 34 142 1 blend 0 rlineto 0 660 -10 1 blend rlineto -30 -134 1 blend 0 rlineto 0 -428 240 1 blend rlineto 0 -62 2 -60 2 -64 -18 12 -38 6 -6 5 blend rrcurveto -4 0 rlineto -24 42 -26 44 -26 4 8 6 8 4 5 blend 44 rrcurveto -292 484 148 -194 2 blend rlineto -34 -142 1 blend 0 rlineto 0 -660 10 1 blend rlineto 308 722 30 -36 2 blend rmoveto 52 21 1 blend 0 28 49 2 57 29 -7 4 53 4 blend rrcurveto -24 2 -86 6 2 blend rlineto -6 -48 -21 -32 -31 2 14 9 24 15 5 blend 0 rrcurveto -58 30 1 blend 0 -20 82 -78 -16 -30 8 3 blend 0 rrcurveto -52 -21 1 blend 0 -28 -49 -2 -57 -29 7 -4 -53 4 blend rrcurveto 24 -2 86 -6 2 blend rlineto 4 48 23 32 31 -14 -11 -24 -15 4 blend 0 rrcurveto 58 -30 1 blend 0 20 -82 78 16 30 -8 3 blend 0 rrcurveto 324 13 22 1 blend -12 rmoveto 156 15 24 1 blend 0 112 136 6 10 -6 -10 2 blend 0 208 4 6 1 blend rrcurveto 0 208 -112 132 -156 3 5 -6 -10 -7 -11 -15 -24 4 blend 0 rrcurveto -156 -14 -24 1 blend 0 -112 -132 -6 -10 7 12 2 blend 0 -208 -3 -6 1 blend rrcurveto 0 -208 112 -136 156 -4 -6 6 10 6 10 14 24 4 blend 0 rrcurveto 0 30 71 118 1 blend rmoveto -140 37 62 1 blend 0 -94 124 28 46 -30 -50 2 blend 0 190 -43 -72 1 blend rrcurveto 0 190 94 120 140 -44 -72 -28 -46 -31 -52 -37 -62 4 blend 0 rrcurveto 140 -37 -62 1 blend 0 94 -120 -28 -46 31 52 2 blend 0 -190 44 72 1 blend rrcurveto 0 -190 -94 -124 -140 43 72 28 46 30 50 37 62 4 blend 0 rrcurveto 1 vsindex 324 22 1 blend -12 rmoveto 156 24 1 blend 0 112 136 10 -10 2 blend 0 208 6 1 blend rrcurveto 0 208 -112 132 -156 5 -10 -11 -24 4 blend 0 rrcurveto -156 -24 1 blend 0 -112 -132 -10 12 2 blend 0 -208 -6 1 blend rrcurveto 0 -208 112 -136 156 -6 10 10 24 4 blend 0 rrcurveto 0 30 118 1 blend rmoveto -140 62 1 blend 0 -94 124 46 -50 2 blend 0 190 -72 1 blend rrcurveto 0 190 94 120 140 -72 -46 -52 -62 4 blend 0 rrcurveto 140 -62 1 blend 0 94 -120 -46 52 2 blend 0 -190 72 1 blend rrcurveto 0 -190 -94 -124 -140 72 46 50 62 4 blend 0 rrcurveto -52 692 -10 -154 2 blend rmoveto 156 112 80 8 2 blend rlineto -20 24 -50 86 2 blend rlineto -152 -120 -74 -26 2 blend rlineto 16 -16 44 -68 2 blend rlineto 1 vsindex 324 22 1 blend -12 rmoveto 156 24 1 blend 0 112 136 10 -10 2 blend 0 208 6 1 blend rrcurveto 0 208 -112 132 -156 5 -10 -11 -24 4 blend 0 rrcurveto -156 -24 1 blend 0 -112 -132 -10 12 2 blend 0 -208 -6 1 blend rrcurveto 0 -208 112 -136 156 -6 10 10 24 4 blend 0 rrcurveto 0 30 118 1 blend rmoveto -140 62 1 blend 0 -94 124 46 -50 2 blend 0 190 -72 1 blend rrcurveto 0 190 94 120 140 -72 -46 -52 -62 4 blend 0 rrcurveto 140 -62 1 blend 0 94 -120 -46 52 2 blend 0 -190 72 1 blend rrcurveto 0 -190 -94 -124 -140 72 46 50 62 4 blend 0 rrcurveto -116 692 12 -148 2 blend rmoveto 114 100 -12 -20 2 blend rlineto 4 0 rlineto 114 -100 -12 20 2 blend rlineto 14 16 60 28 2 blend rlineto -116 114 32 -4 2 blend rlineto -28 -160 1 blend 0 rlineto -116 -114 32 4 2 blend rlineto 14 -16 60 -28 2 blend rlineto 1 vsindex 324 22 1 blend -12 rmoveto 156 24 1 blend 0 112 136 10 -10 2 blend 0 208 6 1 blend rrcurveto 0 208 -112 132 -156 5 -10 -11 -24 4 blend 0 rrcurveto -156 -24 1 blend 0 -112 -132 -10 12 2 blend 0 -208 -6 1 blend rrcurveto 0 -208 112 -136 156 -6 10 10 24 4 blend 0 rrcurveto 0 30 118 1 blend rmoveto -140 62 1 blend 0 -94 124 46 -50 2 blend 0 190 -72 1 blend rrcurveto 0 190 94 120 140 -72 -46 -52 -62 4 blend 0 rrcurveto 140 -62 1 blend 0 94 -120 -46 52 2 blend 0 -190 72 1 blend rrcurveto 0 -190 -94 -124 -140 72 46 50 62 4 blend 0 rrcurveto -96 710 -18 -152 2 blend rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 192 36 1 blend 0 rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 1 vsindex 324 22 1 blend -12 rmoveto 156 24 1 blend 0 112 136 10 -10 2 blend 0 208 6 1 blend rrcurveto 0 208 -112 132 -156 5 -10 -11 -24 4 blend 0 rrcurveto -156 -24 1 blend 0 -112 -132 -10 12 2 blend 0 -208 -6 1 blend rrcurveto 0 -208 112 -136 156 -6 10 10 24 4 blend 0 rrcurveto 0 30 118 1 blend rmoveto -140 62 1 blend 0 -94 124 46 -50 2 blend 0 190 -72 1 blend rrcurveto 0 190 94 120 140 -72 -46 -52 -62 4 blend 0 rrcurveto 140 -62 1 blend 0 94 -120 -46 52 2 blend 0 -190 72 1 blend rrcurveto 0 -190 -94 -124 -140 72 46 50 62 4 blend 0 rrcurveto 52 692 10 -154 2 blend rmoveto 16 16 44 68 2 blend rlineto -152 120 -74 26 2 blend rlineto -20 -24 -50 -86 2 blend rlineto 156 -112 80 -8 2 blend rlineto 80 -20 30 44 -20 -26 2 blend rmoveto 506 684 28 46 -6 -10 2 blend rlineto -22 16 -48 -66 40 52 2 blend rlineto -506 -684 -27 -46 6 10 2 blend rlineto 22 -16 47 66 -40 -52 2 blend rlineto 248 8 -19 -26 20 26 2 blend rmoveto 156 15 24 1 blend 0 112 136 6 10 -6 -10 2 blend 0 208 4 6 1 blend rrcurveto 0 208 -112 132 -156 3 5 -6 -10 -7 -11 -15 -24 4 blend 0 rrcurveto -156 -14 -24 1 blend 0 -112 -132 -6 -10 7 12 2 blend 0 -208 -3 -6 1 blend rrcurveto 0 -208 112 -136 156 -4 -6 6 10 6 10 14 24 4 blend 0 rrcurveto 0 30 71 118 1 blend rmoveto -140 37 62 1 blend 0 -94 124 28 46 -30 -50 2 blend 0 190 -43 -72 1 blend rrcurveto 0 190 94 120 140 -44 -72 -28 -46 -31 -52 -37 -62 4 blend 0 rrcurveto 140 -37 -62 1 blend 0 94 -120 -28 -46 31 52 2 blend 0 -190 44 72 1 blend rrcurveto 0 -190 -94 -124 -140 43 72 28 46 30 50 37 62 4 blend 0 rrcurveto 1 vsindex 324 22 1 blend -12 rmoveto 156 24 1 blend 0 112 136 10 -10 2 blend 0 208 6 1 blend rrcurveto 0 208 -112 132 -156 5 -10 -11 -24 4 blend 0 rrcurveto -156 -24 1 blend 0 -112 -132 -10 12 2 blend 0 -208 -6 1 blend rrcurveto 0 -208 112 -136 156 -6 10 10 24 4 blend 0 rrcurveto 0 30 118 1 blend rmoveto -140 62 1 blend 0 -94 124 46 -50 2 blend 0 190 -72 1 blend rrcurveto 0 190 94 120 140 -72 -46 -52 -62 4 blend 0 rrcurveto 140 -62 1 blend 0 94 -120 -46 52 2 blend 0 -190 72 1 blend rrcurveto 0 -190 -94 -124 -140 72 46 50 62 4 blend 0 rrcurveto 78 704 -8 -154 2 blend rmoveto 52 21 1 blend 0 28 49 2 57 29 -7 4 53 4 blend rrcurveto -24 2 -86 6 2 blend rlineto -6 -48 -21 -32 -31 2 14 9 24 15 5 blend 0 rrcurveto -58 30 1 blend 0 -20 82 -78 -16 -30 8 3 blend 0 rrcurveto -52 -21 1 blend 0 -28 -49 -2 -57 -29 7 -4 -53 4 blend rrcurveto 24 -2 86 -6 2 blend rlineto 4 48 23 32 31 -14 -11 -24 -15 4 blend 0 rrcurveto 58 -30 1 blend 0 20 -82 78 16 30 -8 3 blend 0 rrcurveto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 292 -86 1 blend rlineto 130 -60 1 blend 0 rlineto 148 -12 1 blend 0 84 62 40 7 2 blend 0 126 33 1 blend rrcurveto 0 132 -86 48 -150 32 -36 4 8 4 blend 0 rrcurveto -158 -80 1 blend 0 rlineto 0 -660 10 1 blend rlineto 32 320 140 22 2 blend rmoveto 0 312 -140 1 blend rlineto 114 -56 1 blend 0 rlineto 144 -78 1 blend 0 70 -36 -32 14 2 blend 0 -116 58 1 blend rrcurveto 0 -114 -68 -46 -142 56 36 12 74 4 blend 0 rrcurveto -118 56 1 blend 0 rlineto 1 vsindex 324 22 1 blend -12 rmoveto 156 24 1 blend 0 112 136 10 -10 2 blend 0 208 6 1 blend rrcurveto 0 208 -112 132 -156 5 -10 -11 -24 4 blend 0 rrcurveto -156 -24 1 blend 0 -112 -132 -10 12 2 blend 0 -208 -6 1 blend rrcurveto 0 -208 112 -136 156 -6 10 10 24 4 blend 0 rrcurveto 0 28 112 1 blend rmoveto -140 62 1 blend 0 -94 126 46 -54 2 blend 0 190 -62 1 blend rrcurveto 0 190 94 120 140 -72 -46 -52 -62 4 blend 0 rrcurveto 140 -62 1 blend 0 94 -120 -46 52 2 blend 0 -190 72 1 blend rrcurveto 0 -190 -94 -126 -140 62 46 54 62 4 blend 0 rrcurveto 190 -168 30 -148 2 blend rmoveto 30 25 1 blend 0 30 6 16 6 13 4 10 8 4 blend rrcurveto -8 28 -22 94 2 blend rlineto -16 -4 -20 -4 -2 -6 3 blend -4 -30 2 1 blend 0 rrcurveto -90 34 1 blend 0 -62 44 -28 76 -6 -26 4 -18 4 blend rrcurveto -36 0 -138 -18 2 blend rlineto 28 -86 74 -66 112 20 -26 30 -16 38 5 blend 0 rrcurveto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 312 -94 1 blend rlineto 150 -76 1 blend 0 rlineto 130 10 1 blend 0 82 62 38 3 2 blend 0 116 41 1 blend rrcurveto 0 122 -82 40 -38 2 blend 48 -130 -10 1 blend 0 rrcurveto -182 -64 1 blend 0 rlineto 0 -660 10 1 blend rlineto 32 340 140 14 2 blend rmoveto 0 292 -132 1 blend rlineto 138 -76 1 blend 0 rlineto 122 -54 1 blend 0 68 -38 -32 20 2 blend 0 -104 48 1 blend rrcurveto 0 -102 -68 -48 -122 46 32 18 54 4 blend 0 rrcurveto -138 76 1 blend 0 rlineto 334 -340 -156 -14 2 blend rmoveto 38 154 1 blend 0 rlineto -194 324 -17 53 2 blend rlineto -36 -2 -80 -112 2 blend rlineto 192 -322 -57 59 2 blend rlineto 1 vsindex 268 10 1 blend -12 rmoveto 124 38 1 blend 0 82 74 10 24 2 blend 0 100 10 1 blend rrcurveto 0 102 -67 39 -73 33 -12 21 17 -8 -1 5 blend rrcurveto -102 46 23 -15 2 blend rlineto -47 21 -69 31 -12 2 32 -20 4 blend 0 82 -51 1 blend rrcurveto 0 76 62 50 92 -47 -36 -35 -50 4 blend 0 rrcurveto 68 -30 1 blend 0 54 -28 38 -42 -10 12 6 12 4 blend rrcurveto 20 22 70 90 2 blend rlineto -38 41 -62 37 -80 -21 13 -17 -9 2 5 blend 0 rrcurveto -106 -36 1 blend 0 -80 -64 -20 -27 2 blend 0 -94 -17 1 blend rrcurveto 0 -98 78 -39 56 -25 4 -17 -20 14 -3 5 blend rrcurveto 102 -46 -21 12 2 blend rlineto 66 -30 56 -28 -11 8 -23 18 4 blend 0 -88 57 1 blend rrcurveto 0 -84 -68 -58 -106 55 46 41 54 4 blend 0 rrcurveto -80 28 1 blend 0 -70 36 -48 56 8 -16 2 -18 4 blend rrcurveto -22 -22 -68 -90 2 blend rlineto 50 -58 72 -42 98 20 -8 18 14 -12 5 blend 0 rrcurveto 244 -29 -48 1 blend 0 rmoveto 32 84 140 1 blend 0 rlineto 0 632 -76 -126 1 blend rlineto 214 -25 -42 1 blend 0 rlineto 0 28 70 116 1 blend rlineto -460 -34 -56 1 blend 0 rlineto 0 -28 -70 -116 1 blend rlineto 214 -25 -42 1 blend 0 rlineto 0 -632 76 126 1 blend rlineto 1 vsindex 100 -28 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 172 -60 1 blend rlineto 140 -60 1 blend 0 rlineto 148 -12 1 blend 0 84 62 40 7 2 blend 0 126 33 1 blend rrcurveto 0 132 -84 48 -148 32 -36 4 8 4 blend 0 rrcurveto -140 60 1 blend 0 rlineto 0 120 -26 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto 32 200 140 48 2 blend rmoveto 0 312 -140 1 blend rlineto 128 -56 1 blend 0 rlineto 142 -78 1 blend 0 68 -36 -32 14 2 blend 0 -116 58 1 blend rrcurveto 0 -114 -68 -46 -142 56 36 12 74 4 blend 0 rrcurveto -128 56 1 blend 0 rlineto 1 vsindex 314 24 1 blend -12 rmoveto 106 76 1 blend 0 112 54 -28 50 2 blend 0 204 18 1 blend rrcurveto 0 414 -78 1 blend rlineto -30 -136 1 blend 0 rlineto 0 -406 50 1 blend rlineto 0 -182 -90 -54 -98 66 58 12 30 4 blend 0 rrcurveto -96 28 1 blend 0 -88 54 58 -12 2 blend 0 182 -66 1 blend rrcurveto 0 406 -50 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -414 78 1 blend rlineto 0 -204 110 -54 106 -18 -22 -50 76 4 blend 0 rrcurveto 1 vsindex 314 24 1 blend -12 rmoveto 106 76 1 blend 0 112 54 -28 50 2 blend 0 204 18 1 blend rrcurveto 0 414 -78 1 blend rlineto -30 -136 1 blend 0 rlineto 0 -406 50 1 blend rlineto 0 -182 -90 -54 -98 66 58 12 30 4 blend 0 rrcurveto -96 28 1 blend 0 -88 54 58 -12 2 blend 0 182 -66 1 blend rrcurveto 0 406 -50 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -414 78 1 blend rlineto 0 -204 110 -54 106 -18 -22 -50 76 4 blend 0 rrcurveto -52 722 -12 -36 2 blend rmoveto 156 112 80 8 2 blend rlineto -20 24 -50 86 2 blend rlineto -152 -120 -74 -26 2 blend rlineto 16 -16 44 -68 2 blend rlineto 1 vsindex 314 24 1 blend -12 rmoveto 106 76 1 blend 0 112 54 -28 50 2 blend 0 204 18 1 blend rrcurveto 0 414 -78 1 blend rlineto -30 -136 1 blend 0 rlineto 0 -406 50 1 blend rlineto 0 -182 -90 -54 -98 66 58 12 30 4 blend 0 rrcurveto -96 28 1 blend 0 -88 54 58 -12 2 blend 0 182 -66 1 blend rrcurveto 0 406 -50 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -414 78 1 blend rlineto 0 -204 110 -54 106 -18 -22 -50 76 4 blend 0 rrcurveto -116 722 10 -30 2 blend rmoveto 114 100 -12 -20 2 blend rlineto 4 0 rlineto 114 -100 -12 20 2 blend rlineto 14 16 60 28 2 blend rlineto -116 114 32 -4 2 blend rlineto -28 -160 1 blend 0 rlineto -116 -114 32 4 2 blend rlineto 14 -16 60 -28 2 blend rlineto 1 vsindex 314 24 1 blend -12 rmoveto 106 76 1 blend 0 112 54 -28 50 2 blend 0 204 18 1 blend rrcurveto 0 414 -78 1 blend rlineto -30 -136 1 blend 0 rlineto 0 -406 50 1 blend rlineto 0 -182 -90 -54 -98 66 58 12 30 4 blend 0 rrcurveto -96 28 1 blend 0 -88 54 58 -12 2 blend 0 182 -66 1 blend rrcurveto 0 406 -50 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -414 78 1 blend rlineto 0 -204 110 -54 106 -18 -22 -50 76 4 blend 0 rrcurveto -96 740 -20 -34 2 blend rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 192 36 1 blend 0 rmoveto 18 28 1 blend 0 14 12 18 22 2 blend 0 20 24 1 blend rrcurveto 0 20 -14 12 -18 24 -18 22 -28 4 blend 0 rrcurveto -18 -28 1 blend 0 -14 -12 -18 -22 2 blend 0 -20 -24 1 blend rrcurveto 0 -20 14 -12 18 -24 18 -22 28 4 blend 0 rrcurveto 1 vsindex 314 24 1 blend -12 rmoveto 106 76 1 blend 0 112 54 -28 50 2 blend 0 204 18 1 blend rrcurveto 0 414 -78 1 blend rlineto -30 -136 1 blend 0 rlineto 0 -406 50 1 blend rlineto 0 -182 -90 -54 -98 66 58 12 30 4 blend 0 rrcurveto -96 28 1 blend 0 -88 54 58 -12 2 blend 0 182 -66 1 blend rrcurveto 0 406 -50 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -414 78 1 blend rlineto 0 -204 110 -54 106 -18 -22 -50 76 4 blend 0 rrcurveto 52 722 8 -36 2 blend rmoveto 16 16 44 68 2 blend rlineto -152 120 -74 26 2 blend rlineto -20 -24 -50 -86 2 blend rlineto 156 -112 80 -8 2 blend rlineto 1 vsindex 222 -44 1 blend 0 rmoveto 32 176 1 blend 0 rlineto 222 660 -26 -10 2 blend rlineto -32 -144 1 blend 0 rlineto -132 -396 62 112 2 blend rlineto -27 -82 -17 -60 -28 -81 10 13 4 -7 10 11 6 blend rrcurveto -4 0 rlineto -28 81 -18 60 -26 82 10 -11 4 7 10 -13 6 blend rrcurveto -124 396 60 -112 2 blend rlineto -34 -148 1 blend 0 rlineto 216 -660 -28 10 2 blend rlineto 182 -34 -60 1 blend 0 rmoveto 32 118 182 1 blend 0 rlineto 128 474 -54 -80 -130 -216 2 blend rlineto 12 52 14 44 12 52 -1 -2 0 -2 -7 -7 2 10 -4 -5 8 -4 6 blend rrcurveto 4 0 rlineto 12 -52 12 -44 12 -52 -4 -6 -8 4 -8 -4 -2 -10 0 -2 0 2 6 blend rrcurveto 126 -474 -48 -76 130 216 2 blend rlineto 32 120 186 1 blend 0 rlineto 154 660 -29 -44 -6 -10 2 blend rlineto -32 -81 -132 1 blend 0 rlineto -90 -400 34 52 70 116 2 blend rlineto -16 -72 -14 -72 -16 -72 6 9 3 6 4 6 3 3 8 9 -4 3 6 blend rrcurveto -4 0 rlineto -18 72 -18 72 -18 72 6 6 4 -3 3 6 -2 -2 3 6 -4 -7 6 blend rrcurveto -106 400 28 46 -70 -116 2 blend rlineto -36 -78 -108 1 blend 0 rlineto -110 -400 32 46 70 116 2 blend rlineto -18 -72 -18 -72 -16 -72 3 6 3 5 5 6 3 3 4 4 -4 4 6 blend rrcurveto -4 0 rlineto -16 72 -16 72 -16 72 8 9 4 -4 7 8 -4 -4 5 9 -2 -4 6 blend rrcurveto -86 400 30 52 -70 -116 2 blend rlineto -34 -88 -142 1 blend 0 rlineto 152 -660 -22 -40 6 10 2 blend rlineto 1 vsindex 18 -8 1 blend 0 rmoveto 32 152 1 blend 0 rlineto 122 212 -74 -96 2 blend rlineto 18 32 18 32 22 -4 2 -4 2 -8 5 blend 40 rrcurveto 4 0 rlineto 24 -8 1 blend -40 20 -32 18 -32 -6 -2 -2 -2 4 blend rrcurveto 122 -212 -70 96 2 blend rlineto 34 158 1 blend 0 rlineto -200 340 24 -14 2 blend rlineto 186 320 -20 4 2 blend rlineto -32 -152 1 blend 0 rlineto -116 -204 78 98 2 blend rlineto -18 6 1 blend -30 -12 -22 -20 -36 -2 -14 6 -6 4 blend rrcurveto -4 0 rlineto -22 36 4 6 2 blend -14 22 -18 14 4 2 blend 30 rrcurveto -116 204 72 -98 2 blend rlineto -34 -158 1 blend 0 rlineto 186 -318 -20 2 2 blend rlineto -200 -342 24 8 2 blend rlineto 202 -10 -16 1 blend 0 rmoveto 32 84 140 1 blend 0 rlineto 0 272 -29 -48 1 blend rlineto 198 388 -1 -2 23 38 2 blend rlineto -32 -89 -148 1 blend 0 rlineto -106 -214 35 58 47 78 2 blend rlineto -22 -48 -26 -46 -26 -48 3 5 -1 -1 6 9 1 1 5 9 -2 -3 6 blend rrcurveto -4 0 rlineto -26 48 -22 46 -24 48 5 9 2 3 4 6 -1 -1 5 8 1 1 6 blend rrcurveto -106 214 35 58 -47 -78 2 blend rlineto -34 -90 -150 1 blend 0 rlineto 198 -388 -2 -2 -23 -38 2 blend rlineto 0 -272 29 48 1 blend rlineto 1 vsindex 202 -16 1 blend 0 rmoveto 32 140 1 blend 0 rlineto 0 272 -48 1 blend rlineto 198 388 -2 38 2 blend rlineto -32 -148 1 blend 0 rlineto -106 -214 58 78 2 blend rlineto -22 -48 -26 -46 -26 -48 5 -1 9 1 9 -3 6 blend rrcurveto -4 0 rlineto -26 48 -22 46 -24 48 9 3 6 -1 8 1 6 blend rrcurveto -106 214 58 -78 2 blend rlineto -34 -150 1 blend 0 rlineto 198 -388 -2 -38 2 blend rlineto 0 -272 48 1 blend rlineto -36 710 60 -36 2 blend rmoveto 156 112 80 8 2 blend rlineto -20 24 -50 86 2 blend rlineto -152 -120 -74 -26 2 blend rlineto 16 -16 44 -68 2 blend rlineto 1 vsindex 52 -20 1 blend 0 rmoveto 436 44 1 blend 0 rlineto 0 28 116 1 blend rlineto -396 128 1 blend 0 rlineto 392 614 -126 -212 2 blend rlineto 0 18 86 1 blend rlineto -398 -54 1 blend 0 rlineto 0 -28 -116 1 blend rlineto 358 -118 1 blend 0 rlineto -392 -614 126 212 2 blend rlineto 0 -18 -86 1 blend rlineto 198 -6 -10 1 blend -12 rmoveto 64 -6 -10 1 blend 0 60 36 50 40 -12 -16 -8 -12 -6 -10 -2 -4 4 blend rrcurveto 2 2 2 1 blend 0 rlineto 4 -64 6 8 10 16 2 blend rlineto 26 70 114 1 blend 0 rlineto 0 310 -19 -32 1 blend rlineto 0 96 -34 84 -112 41 68 -28 -44 -8 -14 -10 -18 4 blend 0 rrcurveto -78 0 -66 -38 -30 -24 -4 -6 8 14 -24 -40 -10 -18 4 blend rrcurveto 16 -22 26 44 -56 -88 2 blend rlineto 30 22 58 34 68 14 22 4 6 -12 -20 -14 -22 -20 -32 5 blend 0 rrcurveto 100 -34 -56 1 blend 0 20 -86 -2 -78 0 2 44 70 4 6 28 42 4 blend rrcurveto -216 -24 -98 -50 14 24 2 4 12 18 -4 -8 4 blend 0 -107 -1 3 1 blend rrcurveto 0 -91 64 -38 74 5 9 -4 -8 -20 -34 12 20 4 blend 0 rrcurveto 2 28 34 58 66 104 2 blend rmoveto -58 18 28 1 blend 0 -50 28 22 34 -12 -15 2 blend 0 74 -32 -51 1 blend rrcurveto 0 82 72 48 210 24 -32 -54 -32 -46 -18 -22 -76 -128 -8 -12 5 blend rrcurveto 0 -174 70 106 1 blend rlineto -64 -54 -52 -28 -58 28 46 20 34 22 36 12 14 18 30 5 blend 0 rrcurveto 1 vsindex 198 -10 1 blend -12 rmoveto 64 -10 1 blend 0 60 36 50 40 -16 -12 -10 -4 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -64 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 310 -32 1 blend rlineto 0 96 -34 84 -112 68 -44 -14 -18 4 blend 0 rrcurveto -78 0 -66 -38 -30 -24 -6 14 -40 -18 4 blend rrcurveto 16 -22 44 -88 2 blend rlineto 30 22 58 34 68 22 6 -20 -22 -32 5 blend 0 rrcurveto 100 -56 1 blend 0 20 -86 -2 -78 2 70 6 42 4 blend rrcurveto -216 -24 -98 -50 24 4 18 -8 4 blend 0 -107 3 1 blend rrcurveto 0 -91 64 -38 74 9 -8 -34 20 4 blend 0 rrcurveto 2 28 58 104 2 blend rmoveto -58 28 1 blend 0 -50 28 34 -15 2 blend 0 74 -51 1 blend rrcurveto 0 82 72 48 210 24 -54 -46 -22 -128 -12 5 blend rrcurveto 0 -174 106 1 blend rlineto -64 -54 -52 -28 -58 46 34 36 14 30 5 blend 0 rrcurveto 16 558 -24 -106 2 blend rmoveto 148 150 82 8 2 blend rlineto -24 20 -72 94 2 blend rlineto -142 -154 -76 -34 2 blend rlineto 18 -16 66 -68 2 blend rlineto 1 vsindex 198 -10 1 blend -12 rmoveto 64 -10 1 blend 0 60 36 50 40 -16 -12 -10 -4 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -64 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 310 -32 1 blend rlineto 0 96 -34 84 -112 68 -44 -14 -18 4 blend 0 rrcurveto -78 0 -66 -38 -30 -24 -6 14 -40 -18 4 blend rrcurveto 16 -22 44 -88 2 blend rlineto 30 22 58 34 68 22 6 -20 -22 -32 5 blend 0 rrcurveto 100 -56 1 blend 0 20 -86 -2 -78 2 70 6 42 4 blend rrcurveto -216 -24 -98 -50 24 4 18 -8 4 blend 0 -107 3 1 blend rrcurveto 0 -91 64 -38 74 9 -8 -34 20 4 blend 0 rrcurveto 2 28 58 104 2 blend rmoveto -58 28 1 blend 0 -50 28 34 -15 2 blend 0 74 -51 1 blend rrcurveto 0 82 72 48 210 24 -54 -46 -22 -128 -12 5 blend rrcurveto 0 -174 106 1 blend rlineto -64 -54 -52 -28 -58 46 34 36 14 30 5 blend 0 rrcurveto -54 558 -44 -120 2 blend rmoveto 112 130 16 -46 2 blend rlineto 4 0 rlineto 112 -130 16 46 2 blend rlineto 18 16 46 44 2 blend rlineto -118 146 12 -18 2 blend rlineto -28 -148 1 blend 0 rlineto -118 -146 12 18 2 blend rlineto 18 -16 46 -44 2 blend rlineto 1 vsindex 222 574 18 -2 2 blend rmoveto 148 150 82 8 2 blend rlineto -24 20 -72 94 2 blend rlineto -142 -154 -76 -34 2 blend rlineto 18 -16 66 -68 2 blend rlineto 1 vsindex 198 -10 1 blend -12 rmoveto 64 -10 1 blend 0 60 36 50 40 -16 -12 -10 -4 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -64 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 310 -32 1 blend rlineto 0 96 -34 84 -112 68 -44 -14 -18 4 blend 0 rrcurveto -78 0 -66 -38 -30 -24 -6 14 -40 -18 4 blend rrcurveto 16 -22 44 -88 2 blend rlineto 30 22 58 34 68 22 6 -20 -22 -32 5 blend 0 rrcurveto 100 -56 1 blend 0 20 -86 -2 -78 2 70 6 42 4 blend rrcurveto -216 -24 -98 -50 24 4 18 -8 4 blend 0 -107 3 1 blend rrcurveto 0 -91 64 -38 74 9 -8 -34 20 4 blend 0 rrcurveto 2 28 58 104 2 blend rmoveto -58 28 1 blend 0 -50 28 34 -15 2 blend 0 74 -51 1 blend rrcurveto 0 82 72 48 210 24 -54 -46 -22 -128 -12 5 blend rrcurveto 0 -174 106 1 blend rlineto -64 -54 -52 -28 -58 46 34 36 14 30 5 blend 0 rrcurveto -26 586 -56 -144 2 blend rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 172 56 1 blend 0 rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 198 -6 -10 1 blend -12 rmoveto 60 4 7 1 blend 0 82 40 62 62 -20 -33 -14 -23 6 10 -4 -7 4 blend rrcurveto 34 -50 50 -52 88 6 9 2 5 4 7 16 25 -11 -18 5 blend 0 rrcurveto 72 -9 -16 1 blend 0 36 20 36 1 blend 20 36 26 12 18 6 12 2 blend rrcurveto -14 22 -26 -40 52 80 2 blend rlineto -34 -26 -40 -14 -54 -2 -2 4 6 6 6 2 4 12 20 5 blend 0 rrcurveto -102 32 50 1 blend 0 -78 94 2 128 26 36 -50 -68 -14 -14 -42 -72 4 blend rrcurveto 338 -38 -62 1 blend 0 rlineto 2 12 0 10 3 4 14 14 2 blend 0 10 12 20 1 blend rrcurveto 0 142 -5 -8 1 blend -66 78 -110 21 34 -15 -26 2 blend 0 rrcurveto -72 8 16 1 blend 0 -64 -50 -34 -76 12 22 16 28 -4 -10 20 34 4 blend rrcurveto -14 76 -46 50 -80 -8 -18 -20 -36 -4 -2 -16 -26 13 22 5 blend 0 rrcurveto -72 4 0 1 blend 0 -66 -38 -30 -24 -5 -2 8 14 -24 -40 -10 -18 4 blend rrcurveto 16 -22 26 44 -56 -88 2 blend rlineto 30 22 58 34 62 14 22 4 6 -12 -20 -14 -22 -16 -26 5 blend 0 rrcurveto 100 -33 -55 1 blend 0 20 -86 -2 -78 -1 -1 46 69 4 6 26 43 4 blend rrcurveto -208 -24 -100 -50 10 18 3 4 12 20 -5 -8 4 blend 0 -108 0 4 1 blend rrcurveto 0 -90 64 -38 74 4 8 -4 -8 -20 -34 12 20 4 blend 0 rrcurveto 2 28 35 58 66 104 2 blend rmoveto -58 17 28 1 blend 0 -50 28 22 34 -12 -15 2 blend 0 74 -30 -51 1 blend rrcurveto 0 82 76 48 200 24 -33 -53 -31 -47 -19 -23 -75 -125 -8 -12 5 blend rrcurveto 0 -28 2 2 6 9 2 blend rlineto 0 -48 8 -50 14 -30 3 2 19 31 -4 -4 24 32 -5 -8 7 12 6 blend rrcurveto -58 -64 -78 -36 -54 23 38 28 46 33 55 18 24 15 25 5 blend 0 rrcurveto 198 248 13 18 -34 -60 2 blend rmoveto 10 116 70 82 84 -1 0 -48 -66 -27 -44 -34 -58 -28 -46 5 blend 0 rrcurveto 90 -30 -52 1 blend 0 56 -66 -24 -32 22 38 2 blend 0 -132 60 86 1 blend rrcurveto -310 110 174 1 blend 0 rlineto 1 vsindex 198 -10 1 blend -12 rmoveto 64 -10 1 blend 0 60 36 50 40 -16 -12 -10 -4 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -64 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 310 -32 1 blend rlineto 0 96 -34 84 -112 68 -44 -14 -18 4 blend 0 rrcurveto -78 0 -66 -38 -30 -24 -6 14 -40 -18 4 blend rrcurveto 16 -22 44 -88 2 blend rlineto 30 22 58 34 68 22 6 -20 -22 -32 5 blend 0 rrcurveto 100 -56 1 blend 0 20 -86 -2 -78 2 70 6 42 4 blend rrcurveto -216 -24 -98 -50 24 4 18 -8 4 blend 0 -107 3 1 blend rrcurveto 0 -91 64 -38 74 9 -8 -34 20 4 blend 0 rrcurveto 2 28 58 104 2 blend rmoveto -58 28 1 blend 0 -50 28 34 -15 2 blend 0 74 -51 1 blend rrcurveto 0 82 72 48 210 24 -54 -46 -22 -128 -12 5 blend rrcurveto 0 -174 106 1 blend rlineto -64 -54 -52 -28 -58 46 34 36 14 30 5 blend 0 rrcurveto 104 558 -32 -106 2 blend rmoveto 18 16 66 68 2 blend rlineto -142 154 -76 34 2 blend rlineto -24 -20 -72 -94 2 blend rlineto 148 -150 82 -8 2 blend rlineto 1 vsindex 224 22 1 blend -12 rmoveto 78 38 1 blend 0 58 40 50 56 32 6 14 14 4 blend rrcurveto 58 69 42 91 28 16 14 6 -2 2 5 blend 98 rrcurveto -30 -126 1 blend 0 rlineto -26 -94 -38 -82 -56 -64 4 12 -4 18 6 16 6 blend rrcurveto -44 -50 -56 -36 -62 2 12 10 12 20 5 blend 0 rrcurveto -84 32 1 blend 0 -72 60 40 -32 2 blend 0 92 -52 1 blend rrcurveto 0 164 294 60 -54 -20 -24 3 blend 0 164 12 1 blend rrcurveto 0 66 -36 50 -68 28 -32 10 -36 4 blend 0 rrcurveto -76 -40 1 blend 0 -54 -60 -18 -22 2 blend 0 -84 -10 1 blend rrcurveto 0 -146 134 -186 128 -114 19 12 9 43 7 5 blend rrcurveto 54 -48 50 -30 42 -16 16 4 25 -1 28 4 6 blend rrcurveto 12 28 28 110 2 blend rlineto -42 16 -48 30 -50 44 -1 -11 -6 -8 -5 -14 6 blend rrcurveto -120 104 -130 182 -16 -29 -13 -50 4 blend 0 138 -42 1 blend rrcurveto 0 62 36 52 62 -20 -12 -30 -35 4 blend 0 rrcurveto 56 -31 1 blend 0 20 -46 -7 32 2 blend 0 -44 16 1 blend rrcurveto 0 -152 -296 -56 30 -10 66 3 blend 0 -180 -40 1 blend rrcurveto 0 -110 86 -68 100 12 -13 -22 51 4 blend 0 rrcurveto 1 vsindex 198 -10 1 blend -12 rmoveto 64 -10 1 blend 0 60 36 50 40 -16 -12 -10 -4 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -64 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 310 -32 1 blend rlineto 0 96 -34 84 -112 68 -44 -14 -18 4 blend 0 rrcurveto -78 0 -66 -38 -30 -24 -6 14 -40 -18 4 blend rrcurveto 16 -22 44 -88 2 blend rlineto 30 22 58 34 68 22 6 -20 -22 -32 5 blend 0 rrcurveto 100 -56 1 blend 0 20 -86 -2 -78 2 70 6 42 4 blend rrcurveto -216 -24 -98 -50 24 4 18 -8 4 blend 0 -107 3 1 blend rrcurveto 0 -91 64 -38 74 9 -8 -34 20 4 blend 0 rrcurveto 2 28 58 104 2 blend rmoveto -58 28 1 blend 0 -50 28 34 -15 2 blend 0 74 -51 1 blend rrcurveto 0 82 72 48 210 24 -54 -46 -22 -128 -12 5 blend rrcurveto 0 -174 106 1 blend rlineto -64 -54 -52 -28 -58 46 34 36 14 30 5 blend 0 rrcurveto 60 530 -28 -82 2 blend rmoveto 52 42 1 blend 0 40 38 6 10 2 blend 0 56 2 1 blend rrcurveto 0 56 -40 38 -52 2 -6 10 -42 4 blend 0 rrcurveto -52 -42 1 blend 0 -40 -38 -6 -10 2 blend 0 -56 -2 1 blend rrcurveto 0 -56 40 -38 52 -2 6 -10 42 4 blend 0 rrcurveto 0 22 40 1 blend rmoveto -38 17 1 blend 0 -30 28 13 -10 2 blend 0 44 -18 1 blend rrcurveto 0 44 30 28 38 -18 -13 -10 -17 4 blend 0 rrcurveto 38 -17 1 blend 0 30 -28 -13 10 2 blend 0 -44 18 1 blend rrcurveto 0 -44 -30 -28 -38 18 13 10 17 4 blend 0 rrcurveto 1 vsindex 68 292 -22 -22 2 blend rmoveto 32 108 1 blend 0 rlineto 82 214 -44 -104 2 blend rlineto 52 132 -8 4 2 blend rlineto 4 0 rlineto 52 -132 -8 -4 2 blend rlineto 82 -214 -44 104 2 blend rlineto 32 108 1 blend 0 rlineto -150 378 -6 22 2 blend rlineto -36 -100 1 blend 0 rlineto -150 -378 -6 -22 2 blend rlineto 1 vsindex 326 270 28 -36 2 blend rmoveto 38 14 1 blend 0 40 26 26 52 14 2 28 28 4 blend rrcurveto -22 14 -66 54 2 blend rlineto -24 -48 -26 -16 -30 4 14 3 -6 3 5 blend 0 rrcurveto -58 4 1 blend 0 -48 92 -76 16 -20 -8 3 blend 0 rrcurveto -38 -14 1 blend 0 -40 -26 -26 -54 -14 -2 -28 -26 4 blend rrcurveto 22 -12 66 -56 2 blend rlineto 24 48 26 16 30 -4 -14 -2 6 -4 5 blend 0 rrcurveto 58 -4 1 blend 0 48 -92 76 -16 20 8 3 blend 0 rrcurveto 1 vsindex 130 478 22 -157 2 blend rmoveto 64 82 20 9 2 blend rlineto 62 -82 22 -9 2 blend rlineto 22 16 48 35 2 blend rlineto -54 86 -7 21 2 blend rlineto 88 34 25 18 2 blend rlineto -8 24 -19 59 2 blend rlineto -92 -24 -29 -1 2 blend rlineto -6 98 -8 25 2 blend rlineto -26 -62 1 blend 0 rlineto -6 -100 -8 -22 2 blend rlineto -92 26 -29 -2 2 blend rlineto -8 -24 -19 -59 2 blend rlineto 88 -34 24 -18 2 blend rlineto -54 -86 -6 -21 2 blend rlineto 22 -16 48 -35 2 blend rlineto 382 -142 34 56 -22 -36 2 blend rmoveto 68 2 4 1 blend 0 62 18 56 36 1 2 -2 -4 4 6 -2 -4 4 blend rrcurveto -14 24 -17 -22 50 68 2 blend rlineto -48 -30 -54 -20 -68 6 8 8 10 -2 -6 4 4 13 20 5 blend 0 rrcurveto -182 27 32 1 blend 0 -120 124 -6 -20 -26 -36 2 blend 0 194 -6 4 1 blend rrcurveto 0 240 174 156 184 -20 -18 -10 -6 -12 -12 -17 -16 4 blend 0 rrcurveto 170 9 32 1 blend 0 110 -110 -28 -40 -8 -22 2 blend 0 -176 32 40 1 blend rrcurveto 0 -146 -82 -82 -64 32 44 24 28 10 14 9 4 4 blend 0 rrcurveto -64 21 24 1 blend 0 -22 46 24 96 8 8 -16 -22 -11 -12 -32 -46 4 blend rrcurveto 34 184 9 14 32 44 2 blend rlineto -26 -52 -78 1 blend 0 rlineto -8 -40 -6 -8 0 -2 2 blend rlineto -2 -2 0 1 blend 0 rlineto -20 32 -28 16 -36 4 4 3 4 6 2 -1 -2 -8 4 5 blend 0 rrcurveto -118 4 4 1 blend 0 -66 -128 -18 -26 0 6 2 blend 0 -94 -24 -34 1 blend rrcurveto 0 -90 52 -44 60 -8 -2 4 2 -10 -18 16 22 4 blend 0 rrcurveto 46 -2 -6 1 blend 0 40 32 36 38 8 14 -6 -6 -8 -10 4 2 4 blend rrcurveto 2 2 0 1 blend 0 rlineto 4 -52 38 -24 52 6 8 4 4 5 11 -4 -4 5 7 5 blend 0 rrcurveto 80 20 30 1 blend 0 98 90 20 30 3 2 2 blend 0 168 15 18 1 blend rrcurveto 0 188 -118 124 -190 15 26 -16 -24 17 28 -22 -32 4 blend 0 rrcurveto -206 -32 -48 1 blend 0 -184 -168 -16 -26 -12 -20 2 blend 0 -258 -16 -26 1 blend rrcurveto 0 -216 138 -128 192 -28 -48 32 50 4 8 8 10 4 blend 0 rrcurveto -26 234 13 22 62 94 2 blend rmoveto -46 15 16 1 blend 0 -38 28 14 22 -4 -7 2 blend 0 80 -31 -43 1 blend rrcurveto 0 88 58 104 94 -23 -34 -16 -26 -18 -26 -32 -42 4 blend 0 rrcurveto 32 -8 -14 1 blend 0 20 -12 26 -40 -4 -5 2 2 -10 -19 16 26 4 blend rrcurveto -32 -178 6 10 38 52 2 blend rlineto -42 -48 -38 -22 -34 12 20 12 18 14 22 8 12 9 16 5 blend 0 rrcurveto 1 vsindex 198 -10 1 blend -12 rmoveto 64 -10 1 blend 0 60 36 50 40 -16 -12 -10 -4 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -64 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 310 -32 1 blend rlineto 0 96 -34 84 -112 68 -44 -14 -18 4 blend 0 rrcurveto -78 0 -66 -38 -30 -24 -6 14 -40 -18 4 blend rrcurveto 16 -22 44 -88 2 blend rlineto 30 22 58 34 68 22 6 -20 -22 -32 5 blend 0 rrcurveto 100 -56 1 blend 0 20 -86 -2 -78 2 70 6 42 4 blend rrcurveto -216 -24 -98 -50 24 4 18 -8 4 blend 0 -107 3 1 blend rrcurveto 0 -91 64 -38 74 9 -8 -34 20 4 blend 0 rrcurveto 2 28 58 104 2 blend rmoveto -58 28 1 blend 0 -50 28 34 -15 2 blend 0 74 -51 1 blend rrcurveto 0 82 72 48 210 24 -54 -46 -22 -128 -12 5 blend rrcurveto 0 -174 106 1 blend rlineto -64 -54 -52 -28 -58 46 34 36 14 30 5 blend 0 rrcurveto 137 564 -41 -112 2 blend rmoveto 63 17 1 blend 0 16 66 4 56 34 -21 -2 57 4 blend rrcurveto -26 2 -80 4 2 blend rlineto -2 -52 -16 -46 -37 -2 16 6 36 21 5 blend 0 rrcurveto -59 33 1 blend 0 -20 100 -76 -18 -44 16 3 blend 0 rrcurveto -64 -16 1 blend 0 -16 -65 -4 -57 -34 20 2 -56 4 blend rrcurveto 26 -2 80 -4 2 blend rlineto 2 54 16 44 38 2 -18 -6 -34 -22 5 blend 0 rrcurveto 58 -32 1 blend 0 20 -100 77 18 44 -17 3 blend 0 rrcurveto 1 vsindex 274 62 1 blend -12 rmoveto 114 -8 1 blend 0 98 96 4 2 2 blend 0 162 11 1 blend rrcurveto 0 148 -62 96 -130 5 -15 4 12 4 blend 0 rrcurveto -60 16 1 blend 0 -60 -36 -50 -42 16 18 15 10 4 blend rrcurveto 2 96 2 -24 2 blend rlineto 0 214 -52 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -722 26 1 blend rlineto 26 108 1 blend 0 rlineto 4 48 10 6 2 blend rlineto 2 2 1 blend 0 rlineto 46 -36 54 -24 46 -8 -8 -10 2 -2 5 blend 0 rrcurveto 2 28 -44 112 2 blend rmoveto -38 16 1 blend 0 -56 18 -56 48 34 -12 36 -30 4 blend rrcurveto 0 296 -112 1 blend rlineto 60 54 56 30 50 -38 -28 -36 -20 -24 5 blend 0 rrcurveto 118 -72 1 blend 0 44 -94 -20 60 2 blend 0 -122 40 1 blend rrcurveto 0 -134 -74 -96 -104 38 40 64 64 4 blend 0 rrcurveto 1 vsindex 322 -112 1 blend -160 rmoveto 30 80 1 blend 0 rlineto -320 144 1 blend 870 rlineto -30 -80 1 blend 0 rlineto 320 -144 1 blend -870 rlineto 1 vsindex 96 -12 1 blend -250 rmoveto 28 82 1 blend 0 rlineto 0 1000 rlineto -28 -82 1 blend 0 rlineto 0 -1000 rlineto 1 vsindex 222 16 1 blend -152 rmoveto 30 40 1 blend 0 rlineto 0 22 68 1 blend rlineto -32 16 1 blend 0 rlineto -64 27 1 blend 0 -16 36 5 -26 2 blend 0 72 -20 1 blend rrcurveto 0 66 6 56 -15 -2 -9 3 blend 0 74 -16 1 blend rrcurveto 0 54 -10 36 -38 26 -17 -8 -15 4 blend 12 rrcurveto 0 4 rlineto 38 15 1 blend 12 10 34 17 -6 2 blend 0 56 24 1 blend rrcurveto 0 74 -6 56 -16 2 -9 3 blend 0 66 -15 1 blend rrcurveto 0 72 16 36 64 -20 -5 -26 -27 4 blend 0 rrcurveto 32 -16 1 blend 0 rlineto 0 22 68 1 blend rlineto -30 -40 1 blend 0 rlineto -72 -20 1 blend 0 -36 -26 -4 -10 2 blend 0 -100 -10 1 blend rrcurveto 0 -74 8 -66 4 2 36 3 blend 0 -72 10 1 blend rrcurveto 0 -40 -16 -40 -70 0 6 -6 4 6 -2 5 blend rrcurveto 0 -24 -76 1 blend rlineto 70 0 16 -40 -6 -2 6 4 4 blend 0 -42 8 1 blend rrcurveto 0 -70 -8 -66 8 -2 36 3 blend 0 -74 4 1 blend rrcurveto 0 -100 36 -26 72 -10 4 -10 20 4 blend 0 rrcurveto 1 vsindex 18 34 1 blend -152 rmoveto 30 40 1 blend 0 rlineto 72 20 1 blend 0 36 26 4 10 2 blend 0 100 10 1 blend rrcurveto 0 74 -8 66 -4 -2 -36 3 blend 0 70 -8 1 blend rrcurveto 0 42 16 40 70 0 -8 6 -4 -6 2 5 blend rrcurveto 0 24 76 1 blend rlineto -70 0 -16 40 6 2 -6 -4 4 blend 0 40 -6 1 blend rrcurveto 0 72 8 66 -10 2 -36 3 blend 0 74 -4 1 blend rrcurveto 0 100 -36 26 -72 10 -4 10 -20 4 blend 0 rrcurveto -30 -40 1 blend 0 rlineto 0 -22 -68 1 blend rlineto 32 -16 1 blend 0 rlineto 64 -27 1 blend 0 16 -36 -5 26 2 blend 0 -72 20 1 blend rrcurveto 0 -66 -6 -56 15 2 9 3 blend 0 -74 16 1 blend rrcurveto 0 -56 10 -34 38 -24 17 6 15 4 blend -12 rrcurveto 0 -4 rlineto -38 -15 1 blend -12 -10 -36 -17 8 2 blend 0 -54 -26 1 blend rrcurveto 0 -74 6 -56 16 -2 9 3 blend 0 -66 15 1 blend rrcurveto 0 -72 -16 -36 -64 20 5 26 27 4 blend 0 rrcurveto -32 16 1 blend 0 rlineto 0 -22 -68 1 blend rlineto 1 vsindex 100 -16 1 blend -152 rmoveto 152 72 1 blend 0 rlineto 0 22 68 1 blend rlineto -128 32 1 blend 0 rlineto 0 816 -136 1 blend rlineto 128 -32 1 blend 0 rlineto 0 22 68 1 blend rlineto -152 -72 1 blend 0 rlineto 0 -860 rlineto 1 vsindex 18 34 1 blend -152 rmoveto 152 72 1 blend 0 rlineto 0 860 rlineto -152 -72 1 blend 0 rlineto 0 -22 -68 1 blend rlineto 128 -32 1 blend 0 rlineto 0 -816 136 1 blend rlineto -128 32 1 blend 0 rlineto 0 -22 -68 1 blend rlineto 1 vsindex 96 274 -12 46 2 blend rmoveto 28 82 1 blend 0 rlineto 0 476 -46 1 blend rlineto -28 -82 1 blend 0 rlineto 0 -476 46 1 blend rlineto 0 -524 -46 1 blend rmoveto 28 82 1 blend 0 rlineto 0 472 -22 1 blend rlineto -28 -82 1 blend 0 rlineto 0 -472 22 1 blend rlineto 1 vsindex 268 16 1 blend -12 rmoveto 62 -10 1 blend 0 50 26 40 38 14 -12 10 6 4 blend rrcurveto -18 20 -48 88 2 blend rlineto -33 -31 -47 -25 -54 9 13 21 15 24 5 blend 0 rrcurveto -110 56 1 blend 0 -72 90 30 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 80 92 102 -56 -42 -44 -38 4 blend 0 rrcurveto 52 -34 1 blend 0 40 -22 30 -30 -24 18 -8 14 4 blend rrcurveto 18 20 62 86 2 blend rlineto -32 -6 1 blend 32 -42 28 -66 -6 -8 6 3 blend 0 rrcurveto -114 -28 1 blend 0 -100 -92 -26 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 92 -92 122 -8 18 -4 20 4 blend 0 rrcurveto 1 vsindex 268 16 1 blend -12 rmoveto 62 -10 1 blend 0 50 26 40 38 14 -12 10 6 4 blend rrcurveto -18 20 -48 88 2 blend rlineto -33 -31 -47 -25 -54 9 13 21 15 24 5 blend 0 rrcurveto -110 56 1 blend 0 -72 90 30 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 80 92 102 -56 -42 -44 -38 4 blend 0 rrcurveto 52 -34 1 blend 0 40 -22 30 -30 -24 18 -8 14 4 blend rrcurveto 18 20 62 86 2 blend rlineto -32 -6 1 blend 32 -42 28 -66 -6 -8 6 3 blend 0 rrcurveto -114 -28 1 blend 0 -100 -92 -26 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 92 -92 122 -8 18 -4 20 4 blend 0 rrcurveto -72 -204 -60 -28 2 blend rmoveto 90 6 48 26 42 -2 30 6 4 blend 0 50 22 1 blend rrcurveto 0 40 -28 18 -42 10 2 2 4 -10 2 5 blend rrcurveto 30 68 -2 -4 2 blend rlineto -28 -70 1 blend 0 rlineto -40 -86 -10 -14 2 blend rlineto 54 8 1 blend -8 24 -10 1 blend -14 0 -30 12 1 blend rrcurveto 0 -30 -26 -18 -88 -6 2 2 8 12 2 5 blend rrcurveto 6 -26 6 -40 2 blend rlineto 1 vsindex 202 -216 -30 -28 2 blend rmoveto 90 6 48 26 42 -2 30 6 4 blend 0 50 22 1 blend rrcurveto 0 40 -28 18 -42 10 2 2 4 -10 2 5 blend rrcurveto 30 68 -2 -4 2 blend rlineto -28 -70 1 blend 0 rlineto -40 -86 -10 -14 2 blend rlineto 54 8 1 blend -8 24 -10 1 blend -14 0 -30 12 1 blend rrcurveto 0 -30 -26 -18 -88 -6 2 2 8 12 2 5 blend rrcurveto 6 -26 6 -40 2 blend rlineto 1 vsindex 276 84 56 -40 2 blend rmoveto 62 -10 1 blend 0 50 28 40 36 16 -10 10 8 4 blend rrcurveto -18 20 -50 88 2 blend rlineto -34 -31 -46 -25 -54 12 15 20 9 22 5 blend 0 rrcurveto -110 28 1 blend 0 -72 80 28 -32 2 blend 0 120 -44 1 blend rrcurveto 0 120 80 80 102 -44 -40 -32 -10 4 blend 0 rrcurveto 50 -32 1 blend 0 40 -22 32 -30 -22 16 -10 12 4 blend rrcurveto 18 20 60 86 2 blend rlineto -32 30 -42 30 -66 -2 4 -10 -8 6 5 blend 0 rrcurveto -114 -48 1 blend 0 -100 -80 -26 -16 2 blend 0 -148 -18 1 blend rrcurveto 0 -146 92 -82 122 -20 16 -14 42 4 blend 0 rrcurveto -24 -110 -28 22 2 blend rmoveto 28 64 1 blend 0 rlineto 0 678 22 1 blend rlineto -28 -64 1 blend 0 rlineto 0 -678 -22 1 blend rlineto 1 vsindex 104 378 56 -80 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 0 -390 80 1 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 1 vsindex 60 -150 20 -54 2 blend rmoveto 52 32 40 54 78 4 28 36 4 blend 0 68 50 1 blend rrcurveto 0 38 -18 24 -26 60 -22 34 -48 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -12 -28 -26 2 blend 0 -24 -32 1 blend rrcurveto 0 -24 16 -12 20 -36 32 -22 32 4 blend 0 rrcurveto 12 10 1 blend 0 12 2 8 14 8 5 8 -2 4 blend rrcurveto -34 42 -17 49 2 blend rlineto 14 -54 -14 -54 2 blend rlineto 0 -58 -30 -42 -42 -24 1 8 -11 -6 -39 -2 6 blend rrcurveto 12 -24 22 -66 2 blend rlineto 1 vsindex 370 -12 6 4 2 blend rmoveto 172 6 1 blend 0 146 132 8 -6 2 blend 0 202 6 1 blend rrcurveto 0 200 -146 130 -172 7 -8 -7 -6 4 blend 0 rrcurveto -172 -6 1 blend 0 -146 -130 -8 8 2 blend 0 -200 -8 1 blend rrcurveto 0 -202 146 -132 172 -6 8 6 6 4 blend 0 rrcurveto 0 26 42 1 blend rmoveto -154 8 1 blend 0 -134 124 24 -18 2 blend 0 184 -24 1 blend rrcurveto 0 182 134 122 154 -22 -24 -20 -8 4 blend 0 rrcurveto 154 -8 1 blend 0 134 -122 -24 20 2 blend 0 -182 22 1 blend rrcurveto 0 -184 -134 -124 -154 24 24 18 8 4 blend 0 rrcurveto 4 110 10 -42 2 blend rmoveto 66 -17 1 blend 0 36 24 34 38 7 -4 4 -8 4 blend rrcurveto -18 18 -36 60 2 blend rlineto -32 -32 -28 -18 -56 8 14 10 6 26 5 blend 0 rrcurveto -84 34 1 blend 0 -56 60 25 -22 2 blend 0 98 -38 1 blend rrcurveto 0 100 62 66 80 -48 -34 -22 -21 4 blend 0 rrcurveto 42 -18 1 blend 0 34 -16 26 -30 -16 4 -7 10 4 blend rrcurveto 20 18 43 52 2 blend rlineto -28 34 -4 -2 2 blend -40 24 -52 4 -12 2 blend 0 rrcurveto -94 -8 1 blend 0 -84 -74 -10 -2 2 blend 0 -122 4 1 blend rrcurveto 0 -120 78 -68 94 4 -8 22 3 blend 0 rrcurveto 1 vsindex 52 118 50 -42 2 blend rmoveto 65 68 6 3 2 blend rlineto 32 -31 42 -17 45 -1 18 -9 11 -12 5 blend 0 rrcurveto 44 -12 1 blend 0 43 17 -9 -11 2 blend 31 31 -18 1 blend rrcurveto 66 -68 5 -3 2 blend rlineto 20 22 65 63 2 blend rlineto -66 68 5 -8 2 blend rlineto 23 32 15 41 -2 -2 -2 -5 4 blend 0 47 -4 1 blend rrcurveto 0 49 -15 42 -24 32 -7 3 -6 3 -3 5 blend rrcurveto 67 69 -7 -9 2 blend rlineto -20 22 -65 63 2 blend rlineto -66 -69 -4 -1 2 blend rlineto -32 30 -42 17 -44 1 -17 8 -10 11 5 blend 0 rrcurveto -45 12 1 blend 0 -42 -17 8 10 2 blend -31 -30 17 1 blend rrcurveto -66 69 -4 1 2 blend rlineto -20 -22 -65 -63 2 blend rlineto 66 -69 -7 9 2 blend rlineto -24 -32 -14 -42 4 3 2 6 4 blend 0 -49 7 1 blend rrcurveto 0 -47 14 -41 24 -32 4 -2 5 -3 2 5 blend rrcurveto -66 -68 6 8 2 blend rlineto 20 -22 65 -63 2 blend rlineto 184 48 -16 122 2 blend rmoveto -78 36 1 blend 0 -66 66 34 -34 2 blend 0 96 -44 1 blend rrcurveto 0 96 66 68 78 -44 -34 -36 -36 4 blend 0 rrcurveto 78 -36 1 blend 0 66 -68 -34 36 2 blend 0 -96 44 1 blend rrcurveto 0 -96 -66 -66 -78 44 34 34 36 4 blend 0 rrcurveto 1 vsindex 252 -12 1 blend -12 rmoveto 66 -22 1 blend 0 54 36 40 40 -6 -12 -6 -6 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -64 8 18 2 blend rlineto 26 114 1 blend 0 rlineto 0 722 -26 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -202 40 1 blend rlineto 2 -90 4 18 2 blend rlineto -50 38 -40 22 -58 20 -8 8 -2 4 5 blend 0 rrcurveto -116 14 1 blend 0 -98 -4 1 blend -98 0 -154 -10 1 blend rrcurveto 0 -162 78 -88 120 2 -12 4 3 blend 0 rrcurveto 2 28 44 112 2 blend rmoveto -108 62 1 blend 0 -60 90 32 -56 2 blend 0 132 -42 1 blend rrcurveto 0 124 78 100 102 -36 -44 -68 -66 4 blend 0 rrcurveto 50 -28 1 blend 0 44 -18 54 -48 -18 12 -34 30 4 blend rrcurveto 0 -296 112 1 blend rlineto -54 -54 -50 -30 -56 36 26 30 22 30 5 blend 0 rrcurveto 1 vsindex 152 454 38 -68 2 blend rmoveto 56 30 1 blend 0 54 42 12 22 2 blend 0 72 14 1 blend rrcurveto 0 74 -54 42 -56 12 -12 22 -30 4 blend 0 rrcurveto -56 -30 1 blend 0 -54 -42 -12 -22 2 blend 0 -74 -12 1 blend rrcurveto 0 -72 54 -42 56 -14 12 -22 30 4 blend 0 rrcurveto 0 26 54 1 blend rmoveto -48 10 1 blend 0 -34 38 8 -10 2 blend 0 50 -8 1 blend rrcurveto 0 52 34 38 48 -10 -8 -10 -10 4 blend 0 rrcurveto 48 -10 1 blend 0 34 -38 -8 10 2 blend 0 -52 10 1 blend rrcurveto 0 -50 -34 -38 -48 8 8 10 10 4 blend 0 rrcurveto 1 vsindex 180 602 -14 -40 2 blend rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 172 56 1 blend 0 rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 1 vsindex 34 316 -46 1 blend rmoveto 404 68 1 blend 0 rlineto 0 28 92 1 blend rlineto -404 -68 1 blend 0 rlineto 0 -28 -92 1 blend rlineto 202 -202 34 -4 2 blend rmoveto 18 34 1 blend 0 14 14 26 22 2 blend 0 22 28 1 blend rrcurveto 0 20 -14 14 -18 30 -26 22 -34 4 blend 0 rrcurveto -18 -34 1 blend 0 -14 -14 -26 -22 2 blend 0 -20 -30 1 blend rrcurveto 0 -22 14 -14 18 -28 26 -22 34 4 blend 0 rrcurveto 0 360 rmoveto 18 34 1 blend 0 14 14 26 22 2 blend 0 22 28 1 blend rrcurveto 0 20 -14 14 -18 30 -26 22 -34 4 blend 0 rrcurveto -18 -34 1 blend 0 -14 -14 -26 -22 2 blend 0 -20 -30 1 blend rrcurveto 0 -22 14 -14 18 -28 26 -22 34 4 blend 0 rrcurveto 1 vsindex 244 2 1 blend -12 rmoveto 92 66 1 blend 0 76 64 24 1 blend 0 106 12 1 blend rrcurveto 0 194 -292 -10 -12 34 14 3 blend 0 160 -84 1 blend rrcurveto 0 68 50 54 72 -30 -29 -40 -33 4 blend 0 rrcurveto 64 -26 1 blend 0 38 -22 30 -38 -2 6 4 8 4 blend rrcurveto 20 16 66 78 2 blend rlineto -32 42 -46 30 -72 -18 12 -16 6 -16 5 blend 0 rrcurveto -88 -47 1 blend 0 -68 -64 -15 -12 2 blend 0 -88 -34 1 blend rrcurveto 0 -180 292 10 5 -34 -21 3 blend 0 -174 92 1 blend rrcurveto 0 -82 -48 -58 -88 46 28 40 38 4 blend 0 rrcurveto -72 30 1 blend 0 -56 32 -36 38 14 -22 -16 4 4 blend rrcurveto -18 -18 -58 -88 2 blend rlineto 36 -46 68 -34 78 24 -14 10 10 -4 5 blend 0 rrcurveto -16 -18 1 blend -98 rmoveto 30 82 1 blend 0 rlineto 0 102 68 1 blend rlineto -30 -82 1 blend 0 rlineto 0 -102 -68 1 blend rlineto 0 744 -40 1 blend rmoveto 30 82 1 blend 0 rlineto 0 116 34 1 blend rlineto -30 -82 1 blend 0 rlineto 0 -116 -34 1 blend rlineto 272 10 18 1 blend -12 rmoveto 72 -8 -16 1 blend 0 40 22 36 24 20 32 -4 -2 10 18 10 14 4 blend rrcurveto -14 22 -26 -40 52 80 2 blend rlineto -34 -24 -44 -16 -54 0 -2 2 4 6 10 4 6 12 20 5 blend 0 rrcurveto -114 36 58 1 blend 0 -74 94 0 128 22 30 -46 -74 -12 -16 -46 -68 4 blend rrcurveto 352 -42 -67 1 blend 0 rlineto 2 12 0 10 2 1 6 0 2 4 8 20 4 blend 0 10 14 20 1 blend rrcurveto 0 142 -70 78 -110 -4 -8 -2 0 18 30 -23 -38 4 blend 0 rrcurveto -106 -9 -16 1 blend 0 -100 -96 -12 -18 -2 -4 2 blend 0 -156 -4 -6 1 blend rrcurveto 0 -156 98 -94 120 -8 -10 8 14 0 -2 16 26 4 blend 0 rrcurveto -186 278 60 92 32 44 2 blend rmoveto 10 122 78 74 86 -48 -72 -30 -46 -34 -52 -30 -48 4 blend 0 rrcurveto 90 -26 -38 1 blend 0 60 -64 -26 -44 22 30 2 blend 0 -132 60 94 1 blend rrcurveto -324 112 176 1 blend 0 rlineto 1 vsindex 272 18 1 blend -12 rmoveto 72 -16 1 blend 0 40 22 36 24 32 -2 18 14 4 blend rrcurveto -14 22 -40 80 2 blend rlineto -34 -24 -44 -16 -54 -2 4 10 6 20 5 blend 0 rrcurveto -114 58 1 blend 0 -74 94 0 128 30 -74 -16 -68 4 blend rrcurveto 352 -67 1 blend 0 rlineto 2 1 1 blend 12 0 10 4 20 2 blend 0 10 20 1 blend rrcurveto 0 142 -8 1 blend -70 78 -110 30 -38 2 blend 0 rrcurveto -106 -16 1 blend 0 -100 -96 -18 -4 2 blend 0 -156 -6 1 blend rrcurveto 0 -156 98 -94 120 -10 14 -2 26 4 blend 0 rrcurveto -186 278 92 44 2 blend rmoveto 10 122 78 74 86 -72 -46 -52 -48 4 blend 0 rrcurveto 90 -38 1 blend 0 60 -64 -44 30 2 blend 0 -132 94 1 blend rrcurveto -324 176 1 blend 0 rlineto 130 308 -96 -46 2 blend rmoveto 148 150 82 8 2 blend rlineto -24 20 -72 94 2 blend rlineto -142 -154 -76 -34 2 blend rlineto 18 -16 66 -68 2 blend rlineto 1 vsindex 272 18 1 blend -12 rmoveto 72 -16 1 blend 0 40 22 36 24 32 -2 18 14 4 blend rrcurveto -14 22 -40 80 2 blend rlineto -34 -24 -44 -16 -54 -2 4 10 6 20 5 blend 0 rrcurveto -114 58 1 blend 0 -74 94 0 128 30 -74 -16 -68 4 blend rrcurveto 352 -67 1 blend 0 rlineto 2 1 1 blend 12 0 10 4 20 2 blend 0 10 20 1 blend rrcurveto 0 142 -8 1 blend -70 78 -110 30 -38 2 blend 0 rrcurveto -106 -16 1 blend 0 -100 -96 -18 -4 2 blend 0 -156 -6 1 blend rrcurveto 0 -156 98 -94 120 -10 14 -2 26 4 blend 0 rrcurveto -186 278 92 44 2 blend rmoveto 10 122 78 74 86 -72 -46 -52 -48 4 blend 0 rrcurveto 90 -38 1 blend 0 60 -64 -44 30 2 blend 0 -132 94 1 blend rrcurveto -324 176 1 blend 0 rlineto 60 308 -116 -60 2 blend rmoveto 112 130 16 -46 2 blend rlineto 4 0 rlineto 112 -130 16 46 2 blend rlineto 18 16 46 44 2 blend rlineto -118 146 12 -18 2 blend rlineto -28 -148 1 blend 0 rlineto -118 -146 12 18 2 blend rlineto 18 -16 46 -44 2 blend rlineto 1 vsindex 272 18 1 blend -12 rmoveto 72 -16 1 blend 0 40 22 36 24 32 -2 18 14 4 blend rrcurveto -14 22 -40 80 2 blend rlineto -34 -24 -44 -16 -54 -2 4 10 6 20 5 blend 0 rrcurveto -114 58 1 blend 0 -74 94 0 128 30 -74 -16 -68 4 blend rrcurveto 352 -67 1 blend 0 rlineto 2 1 1 blend 12 0 10 4 20 2 blend 0 10 20 1 blend rrcurveto 0 142 -8 1 blend -70 78 -110 30 -38 2 blend 0 rrcurveto -106 -16 1 blend 0 -100 -96 -18 -4 2 blend 0 -156 -6 1 blend rrcurveto 0 -156 98 -94 120 -10 14 -2 26 4 blend 0 rrcurveto -186 278 92 44 2 blend rmoveto 10 122 78 74 86 -72 -46 -52 -48 4 blend 0 rrcurveto 90 -38 1 blend 0 60 -64 -44 30 2 blend 0 -132 94 1 blend rrcurveto -324 176 1 blend 0 rlineto 88 336 -128 -84 2 blend rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 172 56 1 blend 0 rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 1 vsindex 272 18 1 blend -12 rmoveto 72 -16 1 blend 0 40 22 36 24 32 -2 18 14 4 blend rrcurveto -14 22 -40 80 2 blend rlineto -34 -24 -44 -16 -54 -2 4 10 6 20 5 blend 0 rrcurveto -114 58 1 blend 0 -74 94 0 128 30 -74 -16 -68 4 blend rrcurveto 352 -67 1 blend 0 rlineto 2 1 1 blend 12 0 10 4 20 2 blend 0 10 20 1 blend rrcurveto 0 142 -8 1 blend -70 78 -110 30 -38 2 blend 0 rrcurveto -106 -16 1 blend 0 -100 -96 -18 -4 2 blend 0 -156 -6 1 blend rrcurveto 0 -156 98 -94 120 -10 14 -2 26 4 blend 0 rrcurveto -186 278 92 44 2 blend rmoveto 10 122 78 74 86 -72 -46 -52 -48 4 blend 0 rrcurveto 90 -38 1 blend 0 60 -64 -44 30 2 blend 0 -132 94 1 blend rrcurveto -324 176 1 blend 0 rlineto 218 308 -104 -46 2 blend rmoveto 18 16 66 68 2 blend rlineto -142 154 -76 34 2 blend rlineto -24 -20 -72 -94 2 blend rlineto 148 -150 82 -8 2 blend rlineto 1 vsindex 240 28 1 blend -12 rmoveto 114 25 1 blend 0 76 74 17 2 2 blend 0 92 10 1 blend rrcurveto 0 86 -58 42 -54 34 -2 11 8 -8 -1 5 blend rrcurveto 0 4 rlineto 36 30 56 64 9 -1 -20 -18 4 blend 0 72 -14 1 blend rrcurveto 0 94 -62 72 -108 14 -18 -4 -10 4 blend 0 rrcurveto -90 -34 1 blend 0 -72 -64 -16 -4 2 blend 0 -90 -22 1 blend rrcurveto 0 -68 46 -48 46 -30 2 -12 2 4 -8 5 blend rrcurveto 0 -4 rlineto -60 -32 -70 -64 26 20 2 blend 0 -88 14 1 blend rrcurveto 0 -100 84 -76 116 -4 13 6 13 4 blend 0 rrcurveto 48 342 -10 48 2 blend rmoveto -86 34 -92 38 26 -10 58 -16 4 blend 0 96 -54 1 blend rrcurveto 0 72 54 54 76 -28 -27 -36 -45 4 blend 0 rrcurveto 88 -48 1 blend 0 50 -64 -26 38 2 blend 0 -74 30 1 blend rrcurveto 0 -58 -32 -52 -58 -46 30 22 26 40 20 5 blend rrcurveto -48 -314 14 42 2 blend rmoveto -98 54 1 blend 0 -70 66 31 -40 2 blend 0 82 -32 1 blend rrcurveto 0 74 52 56 70 40 -42 -38 -24 -51 -18 5 blend rrcurveto 102 -40 102 -36 -27 8 -58 18 4 blend 0 -104 58 1 blend rrcurveto 0 -76 -62 -62 -96 28 31 44 58 4 blend 0 rrcurveto 1 vsindex 34 416 -26 1 blend rmoveto 404 68 1 blend 0 rlineto 0 28 92 1 blend rlineto -404 -68 1 blend 0 rlineto 0 -28 -92 1 blend rlineto 0 -200 -40 1 blend rmoveto 404 68 1 blend 0 rlineto 0 28 92 1 blend rlineto -404 -68 1 blend 0 rlineto 0 -28 -92 1 blend rlineto 1 vsindex 266 8 1 blend -12 rmoveto 116 38 1 blend 0 82 102 10 18 2 blend 0 160 2 1 blend rrcurveto 0 260 -138 128 -154 84 -4 -34 4 -17 2 5 blend rrcurveto -14 -22 -60 -82 2 blend rlineto 146 -86 128 -104 33 -4 -50 7 4 blend 0 -260 67 1 blend rrcurveto 0 -128 -50 -106 -116 30 14 70 72 4 blend 0 rrcurveto -94 48 1 blend 0 -78 84 38 -50 2 blend 0 118 -48 1 blend rrcurveto 0 102 59 92 115 -27 -22 -65 -69 4 blend 0 rrcurveto 54 -21 1 blend 0 56 -18 56 -86 -26 7 -30 57 4 blend rrcurveto 0 38 -2 48 2 blend rlineto -42 62 -58 32 -64 22 -2 4 -12 14 5 blend 0 rrcurveto -126 26 1 blend 0 -82 -92 -20 10 2 blend 0 -130 -16 1 blend rrcurveto 0 -144 100 -86 104 -4 8 -8 24 4 blend 0 rrcurveto -104 532 -54 -55 2 blend rmoveto 302 158 84 35 2 blend rlineto -12 22 -32 53 2 blend rlineto -302 -158 -84 -36 2 blend rlineto 12 -22 32 -52 2 blend rlineto 1 vsindex 112 172 12 72 2 blend rmoveto 24 88 1 blend 0 rlineto 4 436 20 -158 2 blend rlineto 0 62 6 86 2 blend rlineto -32 -140 1 blend 0 rlineto 0 -62 6 -86 2 blend rlineto 4 -436 20 158 2 blend rlineto 12 -184 44 -72 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 1 vsindex 108 -192 -14 22 2 blend rmoveto 32 140 1 blend 0 rlineto 0 62 -6 86 2 blend rlineto -4 436 -20 -158 2 blend rlineto -24 -88 1 blend 0 rlineto -4 -436 -20 158 2 blend rlineto 0 -62 -6 -86 2 blend rlineto 16 604 70 -130 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 26 32 1 blend rrcurveto 0 24 -18 14 -18 34 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -24 -34 1 blend rrcurveto 0 -26 18 -14 18 -32 24 -32 40 4 blend 0 rrcurveto 1 vsindex 100 -12 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 592 -80 1 blend rlineto 0 72 24 42 54 -26 -4 -26 -22 4 blend 0 rrcurveto 18 -2 1 blend 0 19 -4 21 -8 -3 2 -5 4 4 blend rrcurveto 10 24 22 98 2 blend rlineto -20 10 -26 6 -20 -2 -2 -12 4 -26 5 blend 0 rrcurveto -68 -80 1 blend 0 -42 -44 -8 -51 2 blend 0 -94 -13 1 blend rrcurveto 0 -596 90 1 blend rlineto -66 450 -84 1 blend rmoveto 210 112 1 blend 0 rlineto 0 28 106 1 blend rlineto -144 -102 1 blend 0 rlineto -66 -4 -10 -2 2 blend rlineto 0 -24 -104 1 blend rlineto 1 vsindex 224 28 1 blend -12 rmoveto 100 29 1 blend 0 100 76 11 6 2 blend 0 136 6 1 blend rrcurveto 0 140 -86 -6 -8 2 blend 62 -108 -2 1 blend 0 rrcurveto -50 29 1 blend 0 -36 -15 -34 -21 19 13 12 13 4 blend rrcurveto 22 246 -14 -154 2 blend rlineto 258 -30 1 blend 0 rlineto 0 28 116 1 blend rlineto -286 -90 1 blend 0 rlineto -24 -296 8 -30 2 blend rlineto 26 -16 48 -32 2 blend rlineto 38 26 34 18 50 -2 -18 -12 -16 4 blend 0 rrcurveto 100 -50 1 blend 0 64 -66 -28 38 2 blend 0 -108 54 1 blend rrcurveto 0 -108 -78 -74 -88 52 44 48 28 4 blend 0 rrcurveto -92 46 1 blend 0 -50 40 6 -14 2 blend -38 40 -6 1 blend rrcurveto -20 -22 -56 -86 2 blend rlineto 40 -40 56 -46 102 12 -12 18 8 2 5 blend 0 rrcurveto 1 vsindex 312 -22 1 blend 0 rmoveto 30 130 1 blend 0 rlineto 0 640 -6 1 blend rlineto -20 -194 1 blend 0 rlineto -306 -428 90 56 2 blend rlineto 0 -16 -104 1 blend rlineto 424 74 1 blend 0 rlineto 0 28 102 1 blend rlineto -382 46 1 blend 0 rlineto 202 282 -144 -174 2 blend rlineto 18 28 10 1 blend 18 22 16 1 blend 16 26 12 1 blend rrcurveto 4 0 rlineto -2 -28 -2 -50 -15 -2 -14 3 blend 0 -28 -15 1 blend rrcurveto 0 -476 132 1 blend rlineto 1 vsindex 250 -234 -10 28 2 blend rmoveto 134 44 1 blend 0 86 80 26 -6 2 blend 0 80 28 1 blend rrcurveto 0 74 -48 34 -106 18 -24 4 -19 4 blend 0 rrcurveto -106 31 1 blend 0 rlineto -74 24 1 blend 0 -20 30 -22 1 blend 0 36 -14 1 blend rrcurveto 0 34 20 22 22 18 -20 -18 -16 -12 -9 5 blend rrcurveto 22 -14 32 -8 28 9 -14 6 -12 4 blend 0 rrcurveto 92 20 1 blend 0 72 74 18 -26 2 blend 0 96 22 1 blend rrcurveto 0 54 -24 46 -34 28 -34 20 -26 30 -16 5 blend rrcurveto 116 -44 1 blend 0 rlineto 0 28 96 1 blend rlineto -160 -26 1 blend 0 rlineto -14 6 -22 6 -26 -10 2 -6 -2 -2 5 blend 0 rrcurveto -92 -18 1 blend 0 -72 -72 -32 14 2 blend 0 -96 -28 1 blend rrcurveto 0 -58 30 -48 30 -26 2 2 6 2 4 blend rrcurveto 0 -4 rlineto -20 -14 -32 -30 -14 -10 10 -6 4 blend 0 -44 10 1 blend rrcurveto 0 -36 18 -6 2 2 blend -26 24 -14 2 -4 2 blend rrcurveto 0 -4 rlineto -44 -32 -28 -44 -2 8 4 13 4 blend 0 -42 1 1 blend rrcurveto 0 -80 74 -54 122 -10 22 20 -8 4 blend 0 rrcurveto -10 414 26 52 2 blend rmoveto -70 38 1 blend 0 -62 58 40 -36 2 blend 0 84 -36 1 blend rrcurveto 0 86 60 54 72 -40 -38 -32 -40 4 blend 0 rrcurveto 72 -40 1 blend 0 60 -55 -38 33 2 blend 0 -85 39 1 blend rrcurveto 0 -84 -62 -58 -70 36 40 36 38 4 blend 0 rrcurveto 12 -386 26 1 blend rmoveto -106 48 1 blend 0 -60 44 20 -30 2 blend 0 64 -32 1 blend rrcurveto 0 36 20 40 48 32 -22 -14 -30 -36 -20 5 blend rrcurveto 26 -6 26 -12 2 -8 3 blend -2 6 34 1 blend 0 rrcurveto 110 -71 1 blend 0 rlineto 76 -33 1 blend 0 40 -22 -16 18 2 blend 0 -56 30 1 blend rrcurveto 0 -64 -72 -66 -114 36 30 48 58 4 blend 0 rrcurveto 1 vsindex 360 74 1 blend -12 rmoveto 80 50 1 blend 0 60 58 4 18 2 blend 0 78 16 1 blend rrcurveto 0 170 -204 -38 -20 50 42 3 blend 0 122 -68 1 blend rrcurveto 0 84 112 36 -40 -34 -8 3 blend 0 104 -10 1 blend rrcurveto 0 74 -54 56 -86 14 -28 30 -62 4 blend 0 rrcurveto -102 -74 1 blend 0 -70 -72 -18 -28 2 blend 0 -122 -8 1 blend rrcurveto 0 -538 62 1 blend rlineto 30 140 1 blend 0 rlineto 0 524 -66 1 blend rlineto 0 124 56 56 84 -56 -20 -10 -26 4 blend 0 rrcurveto 72 -36 1 blend 0 38 -44 -8 18 2 blend 0 -60 26 1 blend rrcurveto 0 -92 -112 -32 22 42 6 3 blend 0 -100 28 1 blend rrcurveto 0 -146 204 40 18 -50 -46 3 blend 0 -148 88 1 blend rrcurveto 0 -54 -36 -52 -72 32 18 38 46 4 blend 0 rrcurveto -44 16 1 blend 0 -36 12 -36 32 6 -2 4 -8 4 blend rrcurveto -18 -20 -40 -96 2 blend rlineto 36 -36 46 14 8 -2 3 blend -16 52 8 1 blend 0 rrcurveto 1 vsindex 100 -28 1 blend 0 rmoveto 342 76 1 blend 0 rlineto 0 28 116 1 blend rlineto -310 64 1 blend 0 rlineto 0 632 -126 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto 250 284 101 -58 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 210 -284 -31 58 2 blend rmoveto 342 76 1 blend 0 rlineto 0 28 116 1 blend rlineto -310 64 1 blend 0 rlineto 0 632 -126 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -660 10 1 blend rlineto 1 vsindex 144 68 1 blend -12 rmoveto 10 28 1 blend 0 8 2 8 4 20 4 10 4 4 blend rrcurveto -6 24 -14 102 2 blend rlineto -8 -2 -4 0 -4 -2 1 blend 0 rrcurveto -14 2 1 blend 0 -8 8 -8 2 2 blend 0 22 12 1 blend rrcurveto 0 676 -150 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -670 150 1 blend rlineto 0 -46 18 -18 30 -66 20 -58 86 4 blend 0 rrcurveto 110 296 66 -58 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 178 -296 134 58 2 blend rmoveto 10 28 1 blend 0 8 2 8 4 20 4 10 4 4 blend rrcurveto -6 24 -14 102 2 blend rlineto -8 -2 -4 0 -4 -2 1 blend 0 rrcurveto -14 2 1 blend 0 -8 8 -8 2 2 blend 0 22 12 1 blend rrcurveto 0 676 -150 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -670 150 1 blend rlineto 0 -46 18 -18 30 -66 20 -58 86 4 blend 0 rrcurveto 1 vsindex 100 -12 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 572 -64 1 blend rlineto 0 78 30 46 60 -38 -6 -30 -32 4 blend 0 rrcurveto 22 6 1 blend 0 23 -9 1 blend -4 25 -12 -11 6 2 blend rrcurveto 10 26 20 100 2 blend rlineto -26 12 -28 6 -24 4 -3 -12 3 -22 5 blend 0 rrcurveto -74 -74 1 blend 0 -48 -48 -6 -42 2 blend 0 -100 -2 1 blend rrcurveto 0 -576 70 1 blend rlineto 260 68 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 592 -80 1 blend rlineto 0 72 24 42 54 -25 -4 -27 -22 4 blend 0 rrcurveto 18 -2 1 blend 0 20 -2 1 blend -4 20 -10 -4 4 2 blend rrcurveto 10 26 20 100 2 blend rlineto -22 10 -24 6 -20 -2 -14 4 -26 4 blend 0 rrcurveto -68 -80 1 blend 0 -42 -44 -8 -51 2 blend 0 -94 -13 1 blend rrcurveto 0 -596 90 1 blend rlineto -326 450 -68 -84 2 blend rmoveto 470 180 1 blend 0 rlineto 0 28 106 1 blend rlineto -404 -170 1 blend 0 rlineto -66 -4 -10 -2 2 blend rlineto 0 -24 -104 1 blend rlineto 1 vsindex 100 -12 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 592 -80 1 blend rlineto 0 72 24 42 54 -25 -4 -27 -22 4 blend 0 rrcurveto 18 -2 1 blend 0 20 -2 1 blend -4 20 -10 -4 4 2 blend rrcurveto 10 26 20 100 2 blend rlineto -22 10 -24 6 -20 -2 -14 4 -26 4 blend 0 rrcurveto -68 -80 1 blend 0 -42 -44 -8 -51 2 blend 0 -94 -13 1 blend rrcurveto 0 -596 90 1 blend rlineto 334 166 1 blend -12 rmoveto 16 39 1 blend 0 30 8 28 10 7 2 -2 -2 4 blend rrcurveto -10 26 -16 98 2 blend rlineto -18 -8 -26 -8 -18 6 4 10 4 2 5 blend 0 rrcurveto -70 38 1 blend 0 -14 44 -14 -26 2 blend 0 62 -7 1 blend rrcurveto 0 328 -157 1 blend rlineto 142 -28 1 blend 0 rlineto 0 28 106 1 blend rlineto -142 28 1 blend 0 rlineto 0 140 -10 1 blend rlineto -26 -116 1 blend 0 rlineto -4 -140 -16 10 2 blend rlineto -222 -94 1 blend 0 rlineto -66 -4 -10 -2 2 blend rlineto 0 -24 -104 1 blend rlineto 288 94 1 blend 0 rlineto 0 -324 150 1 blend rlineto 0 -82 24 -56 88 -40 30 -26 42 4 blend 0 rrcurveto 1 vsindex 100 -12 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 572 -64 1 blend rlineto 0 78 30 46 60 -38 -6 -30 -32 4 blend 0 rrcurveto 22 6 1 blend 0 23 -9 1 blend -4 25 -12 -11 6 2 blend rrcurveto 10 26 20 100 2 blend rlineto -26 12 -28 6 -24 4 -3 -12 3 -22 5 blend 0 rrcurveto -74 -74 1 blend 0 -48 -48 -6 -42 2 blend 0 -100 -2 1 blend rrcurveto 0 -576 70 1 blend rlineto 260 68 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 592 -80 1 blend rlineto 0 72 24 42 54 -25 -4 -27 -22 4 blend 0 rrcurveto 18 -2 1 blend 0 20 -2 1 blend -4 20 -10 -4 4 2 blend rrcurveto 10 26 20 100 2 blend rlineto -22 10 -24 6 -20 -2 -14 4 -26 4 blend 0 rrcurveto -68 -80 1 blend 0 -42 -44 -8 -51 2 blend 0 -94 -13 1 blend rrcurveto 0 -596 90 1 blend rlineto 334 166 1 blend -12 rmoveto 16 39 1 blend 0 30 8 28 10 7 2 -2 -2 4 blend rrcurveto -10 26 -16 98 2 blend rlineto -18 -8 -26 -8 -18 6 4 10 4 2 5 blend 0 rrcurveto -70 38 1 blend 0 -14 44 -14 -26 2 blend 0 62 -7 1 blend rrcurveto 0 328 -157 1 blend rlineto 142 -28 1 blend 0 rlineto 0 28 106 1 blend rlineto -142 28 1 blend 0 rlineto 0 140 -10 1 blend rlineto -26 -116 1 blend 0 rlineto -4 -140 -16 10 2 blend rlineto -482 -162 1 blend 0 rlineto -66 -4 -10 -2 2 blend rlineto 0 -24 -104 1 blend rlineto 548 162 1 blend 0 rlineto 0 -324 150 1 blend rlineto 0 -82 24 -56 88 -40 30 -26 42 4 blend 0 rrcurveto 1 vsindex 180 398 10 -42 2 blend rmoveto 86 10 1 blend 0 52 74 20 4 2 blend 0 134 -4 1 blend rrcurveto 0 132 -52 74 -86 -2 -20 2 -10 4 blend 0 rrcurveto -86 -10 1 blend 0 -52 -74 -20 -2 2 blend 0 -132 2 1 blend rrcurveto 0 -134 52 -74 86 4 20 -4 10 4 blend 0 rrcurveto 0 26 68 1 blend rmoveto -66 40 1 blend 0 -42 68 18 -42 2 blend 0 114 -26 1 blend rrcurveto 0 114 42 66 66 -26 -18 -42 -40 4 blend 0 rrcurveto 66 -40 1 blend 0 42 -66 -18 42 2 blend 0 -114 26 1 blend rrcurveto 0 -114 -42 -68 -66 26 18 42 40 4 blend 0 rrcurveto 1 vsindex 224 410 -12 -42 2 blend rmoveto 28 82 1 blend 0 rlineto 0 390 rlineto -22 -136 1 blend 0 rlineto -182 -256 50 8 2 blend rlineto 0 -16 -46 1 blend rlineto 262 86 1 blend 0 rlineto 0 26 54 1 blend rlineto -222 -14 1 blend 0 rlineto 78 112 -44 -38 2 blend rlineto 58 84 -22 -8 2 blend rlineto 4 0 rlineto -4 -102 -2 -18 2 blend rlineto 0 -238 48 1 blend rlineto 1 vsindex 180 398 8 -42 2 blend rmoveto 72 20 1 blend 0 58 52 6 7 2 blend 0 82 -5 1 blend rrcurveto 0 88 -56 46 -72 -10 -3 2 4 4 blend 0 rrcurveto -32 26 1 blend 0 -24 -10 -20 -12 7 10 4 9 4 blend rrcurveto 14 128 -10 -89 2 blend rlineto 168 -21 1 blend 0 rlineto 0 28 76 1 blend rlineto -194 -51 1 blend 0 rlineto -20 -184 4 -12 2 blend rlineto 20 -14 31 -22 2 blend rlineto 22 18 26 20 38 -3 -2 -12 -16 -19 5 blend 0 rrcurveto 60 -33 1 blend 0 40 -42 -16 26 2 blend 0 -66 34 1 blend rrcurveto 0 -64 -42 -44 -56 39 22 21 28 4 blend 0 rrcurveto -54 24 1 blend 0 -36 28 -26 38 14 -16 2 -6 4 blend rrcurveto -24 -18 -50 -40 2 blend rlineto 28 -38 42 -36 68 8 -16 16 10 2 5 blend 0 rrcurveto 1 vsindex 192 398 12 -42 2 blend rmoveto 70 10 1 blend 0 52 56 10 4 2 blend 0 72 8 1 blend rrcurveto 0 72 -42 54 -80 4 -6 -8 6 4 blend 0 rrcurveto -44 10 1 blend 0 -38 -18 -34 -34 6 4 13 7 4 blend rrcurveto 0 -35 5 -34 2 blend rlineto 42 47 32 14 40 -26 -29 -13 -4 -23 5 blend 0 rrcurveto 62 -36 1 blend 0 32 -44 -16 30 2 blend 0 -56 26 1 blend rrcurveto 0 -56 -36 -46 -54 24 17 36 35 4 blend 0 rrcurveto -70 44 1 blend 0 -42 62 14 -40 2 blend 0 104 -32 1 blend rrcurveto 0 142 68 54 60 -66 -52 2 8 4 blend 0 rrcurveto 28 -1 1 blend 0 22 -10 18 -12 -3 -2 2 -3 4 blend rrcurveto 14 26 34 50 2 blend rlineto -22 14 -22 8 -36 -2 7 -16 16 -25 5 blend 0 rrcurveto -80 -43 1 blend 0 -80 -58 16 -33 2 blend 0 -166 51 1 blend rrcurveto 0 -122 58 -68 82 -2 3 -16 29 4 blend 0 rrcurveto 1 vsindex 142 410 -30 -42 2 blend rmoveto 30 102 1 blend 0 rlineto 8 140 26 104 100 128 -2 -10 -10 -20 -14 -18 6 blend rrcurveto 0 18 48 1 blend rlineto -256 -46 1 blend 0 rlineto 0 -26 -78 1 blend rlineto 222 -58 1 blend 0 rlineto -88 -114 24 14 2 blend -32 -104 -10 -146 34 4 30 3 blend rrcurveto 1 vsindex 178 398 12 -42 2 blend rmoveto 72 18 1 blend 0 56 48 8 2 2 blend 0 64 -2 1 blend rrcurveto 0 46 -26 28 -48 24 4 -6 8 10 -4 5 blend rrcurveto 0 4 rlineto 22 12 1 blend 18 38 30 -14 2 2 blend 0 52 -18 1 blend rrcurveto 0 60 -50 8 -12 2 blend 40 -64 -16 1 blend 0 rrcurveto -62 -16 1 blend 0 -48 -42 -16 2 2 blend 0 -58 -10 1 blend rrcurveto 0 -42 2 1 blend 24 -24 -4 1 blend 34 -22 -2 1 blend rrcurveto 0 -4 rlineto -40 -22 6 2 2 blend -36 -40 5 1 blend 0 -52 9 1 blend rrcurveto 0 -58 50 -4 14 2 blend -50 78 12 1 blend 0 rrcurveto 28 222 -14 34 2 blend rmoveto -60 18 -48 26 34 -6 28 -16 4 blend 0 48 -24 1 blend rrcurveto 0 42 36 30 44 -26 -22 -18 -27 4 blend 0 rrcurveto 46 -27 1 blend 0 38 -28 -24 16 2 blend 0 -42 20 1 blend rrcurveto 0 -34 -18 -32 -38 -28 22 12 18 26 14 5 blend rrcurveto -28 -196 14 22 2 blend rmoveto -60 36 1 blend 0 -38 42 20 -24 2 blend 0 42 -18 1 blend rrcurveto 0 40 24 34 46 26 -22 -14 -16 -30 -14 5 blend rrcurveto 64 -24 62 -14 -30 6 -38 6 4 blend 0 -62 38 1 blend rrcurveto 0 -46 -44 -38 -54 24 26 20 30 4 blend 0 rrcurveto 1 vsindex 144 398 17 -42 2 blend rmoveto 80 43 1 blend 0 80 58 -16 33 2 blend 0 166 -51 1 blend rrcurveto 0 122 -58 68 -82 2 -3 16 -29 4 blend 0 rrcurveto -70 -10 1 blend 0 -52 -56 -10 -4 2 blend 0 -72 -8 1 blend rrcurveto 0 -72 42 -54 80 -4 6 8 -6 4 blend 0 rrcurveto 44 -10 1 blend 0 38 18 34 34 -6 -4 -13 -7 4 blend rrcurveto 0 35 -5 34 2 blend rlineto -42 -47 -32 -14 -40 26 29 13 4 23 5 blend 0 rrcurveto -62 36 1 blend 0 -32 44 16 -30 2 blend 0 56 -26 1 blend rrcurveto 0 56 36 46 54 -24 -17 -36 -35 4 blend 0 rrcurveto 70 -44 1 blend 0 42 -62 -14 40 2 blend 0 -104 32 1 blend rrcurveto 0 -142 -68 -54 -60 66 52 -2 -8 4 blend 0 rrcurveto -28 1 1 blend 0 -22 10 -18 12 3 2 -2 3 4 blend rrcurveto -14 -26 -34 -50 2 blend rlineto 22 -14 22 -8 36 2 -7 16 -16 25 5 blend 0 rrcurveto 1 vsindex 164 450 -24 -55 2 blend rmoveto 30 70 1 blend 0 rlineto 0 144 -19 1 blend rlineto 132 -16 1 blend 0 rlineto 0 28 68 1 blend rlineto -132 16 1 blend 0 rlineto 0 144 -20 1 blend rlineto -30 -70 1 blend 0 rlineto 0 -144 20 1 blend rlineto -130 14 1 blend 0 rlineto 0 -28 -68 1 blend rlineto 130 -14 1 blend 0 rlineto 0 -144 19 1 blend rlineto 1 vsindex 34 674 -10 -64 2 blend rmoveto 292 40 1 blend 0 rlineto 0 28 68 1 blend rlineto -292 -40 1 blend 0 rlineto 0 -28 -68 1 blend rlineto 0 -160 -20 1 blend rmoveto 292 40 1 blend 0 rlineto 0 28 68 1 blend rlineto -292 -40 1 blend 0 rlineto 0 -28 -68 1 blend rlineto 1 vsindex 152 340 2 -66 2 blend rmoveto 18 14 74 22 2 blend rlineto -56 78 -18 84 14 4 -6 -2 4 blend 0 88 2 1 blend rrcurveto 0 88 18 84 56 76 2 6 -2 -14 6 5 blend rrcurveto -18 14 -74 22 2 blend rlineto -56 -76 -30 -80 -2 -14 -4 2 4 blend 0 -106 -16 1 blend rrcurveto 0 -108 30 -80 56 -76 -14 4 2 2 -14 5 blend rrcurveto 1 vsindex 62 340 64 -66 2 blend rmoveto 54 76 30 80 4 14 4 -2 4 blend 0 108 14 1 blend rrcurveto 0 106 -30 80 -54 76 16 -4 -2 -4 14 5 blend rrcurveto -20 -14 -72 -22 2 blend rlineto 56 -76 18 -84 -14 -6 6 2 4 blend 0 -88 -2 1 blend rrcurveto 0 -88 -18 -84 -56 -78 -2 -6 2 14 -4 5 blend rrcurveto 20 -14 72 -22 2 blend rlineto 1 vsindex 76 402 34 -42 2 blend rmoveto 18 22 1 blend 0 14 12 16 18 2 blend 0 22 18 1 blend rrcurveto 0 22 -14 12 -18 18 -16 20 -22 4 blend 0 rrcurveto -18 -22 1 blend 0 -14 -12 -16 -20 2 blend 0 -22 -18 1 blend rrcurveto 0 -22 14 -12 18 -18 16 -18 22 4 blend 0 rrcurveto 1 vsindex 46 306 8 -74 2 blend rmoveto 42 20 30 44 46 4 18 14 4 blend 0 46 36 1 blend rrcurveto 0 36 -16 18 -24 32 -12 20 -26 4 blend 0 rrcurveto -16 -24 1 blend 0 -16 -12 -16 -16 2 blend 0 -22 -16 1 blend rrcurveto 0 -20 16 -8 16 -22 17 -16 20 4 blend 0 rrcurveto 8 7 1 blend 0 10 2 6 4 6 4 3 blend 8 rrcurveto -24 32 -10 30 2 blend rlineto 10 -38 -12 -38 2 blend rlineto 0 1 1 blend -40 -22 -30 -32 -14 -6 9 -23 -3 4 blend rrcurveto 12 -22 12 -40 2 blend rlineto 1 vsindex 180 10 1 blend -12 rmoveto 86 10 1 blend 0 52 74 20 4 2 blend 0 134 -4 1 blend rrcurveto 0 132 -52 74 -86 -2 -20 2 -10 4 blend 0 rrcurveto -86 -10 1 blend 0 -52 -74 -20 -2 2 blend 0 -132 2 1 blend rrcurveto 0 -134 52 -74 86 4 20 -4 10 4 blend 0 rrcurveto 0 26 68 1 blend rmoveto -66 40 1 blend 0 -42 68 18 -42 2 blend 0 114 -26 1 blend rrcurveto 0 114 42 66 66 -26 -18 -42 -40 4 blend 0 rrcurveto 66 -40 1 blend 0 42 -66 -18 42 2 blend 0 -114 26 1 blend rrcurveto 0 -114 -42 -68 -66 26 18 42 40 4 blend 0 rrcurveto 1 vsindex 178 -16 1 blend 0 rmoveto 28 98 1 blend 0 rlineto 0 390 rlineto -26 -72 1 blend 0 rlineto -22 -18 -26 -14 -6 2 3 blend -12 -36 -22 1 blend -8 rrcurveto 0 -22 -54 1 blend rlineto 82 8 1 blend 0 rlineto 0 -330 60 1 blend rlineto 1 vsindex 58 -16 1 blend 0 rmoveto 250 48 1 blend 0 rlineto 0 26 78 1 blend rlineto -202 102 1 blend 0 rlineto 106 104 72 66 -62 -52 -28 -13 4 blend 0 84 -25 1 blend rrcurveto 0 82 -48 40 -70 2 -12 10 -20 4 blend 0 rrcurveto -48 -14 1 blend 0 -46 -34 -22 -38 -4 8 -22 -18 4 blend rrcurveto 20 -18 50 -46 2 blend rlineto 22 34 34 30 38 -6 -14 -14 -14 4 blend 0 rrcurveto 54 -22 1 blend 0 36 -38 -18 18 2 blend 0 -60 26 1 blend rrcurveto 0 -68 -58 -60 -138 -130 24 -16 -4 46 58 5 blend rrcurveto 0 -20 -46 1 blend rlineto 1 vsindex 176 12 1 blend -12 rmoveto 72 10 1 blend 0 56 42 18 8 2 blend 0 72 rrcurveto 0 56 -46 34 -48 8 -12 18 -2 10 10 5 blend rrcurveto 44 16 34 34 -10 6 -16 -8 4 blend 0 50 -10 1 blend rrcurveto 0 64 -52 38 -64 4 -14 4 -10 4 blend 0 rrcurveto -48 -16 1 blend 0 -40 -28 -26 -34 8 -20 -14 3 blend rrcurveto 20 -18 50 -44 2 blend rlineto 26 32 34 22 32 -10 -12 -16 -6 -8 5 blend 0 rrcurveto 54 -30 1 blend 0 34 -32 -18 20 2 blend 0 -46 24 1 blend rrcurveto 0 -46 -46 -42 -82 16 19 32 41 4 blend 0 rrcurveto 0 -24 -46 1 blend rlineto 88 -31 1 blend 0 56 -30 -31 16 2 blend 0 -54 24 1 blend rrcurveto 0 -56 -44 -32 -52 32 23 18 25 4 blend 0 rrcurveto -46 16 1 blend 0 -42 28 20 -16 2 blend -24 38 -6 1 blend rrcurveto -24 -18 -50 -40 2 blend rlineto 26 -38 48 -36 60 10 -16 10 10 10 5 blend 0 rrcurveto 1 vsindex 224 -12 1 blend 0 rmoveto 28 82 1 blend 0 rlineto 0 390 rlineto -22 -136 1 blend 0 rlineto -182 -256 50 8 2 blend rlineto 0 -16 -46 1 blend rlineto 262 86 1 blend 0 rlineto 0 26 54 1 blend rlineto -222 -14 1 blend 0 rlineto 78 112 -44 -38 2 blend rlineto 58 84 -22 -8 2 blend rlineto 4 0 rlineto -4 -102 -2 -18 2 blend rlineto 0 -238 48 1 blend rlineto 1 vsindex 180 8 1 blend -12 rmoveto 72 20 1 blend 0 58 52 6 7 2 blend 0 82 -5 1 blend rrcurveto 0 88 -56 46 -72 -10 -3 2 4 4 blend 0 rrcurveto -32 26 1 blend 0 -24 -10 -20 -12 7 10 4 9 4 blend rrcurveto 14 128 -10 -89 2 blend rlineto 168 -21 1 blend 0 rlineto 0 28 76 1 blend rlineto -194 -51 1 blend 0 rlineto -20 -184 4 -12 2 blend rlineto 20 -14 31 -22 2 blend rlineto 22 18 26 20 38 -3 -2 -12 -16 -19 5 blend 0 rrcurveto 60 -33 1 blend 0 40 -42 -16 26 2 blend 0 -66 34 1 blend rrcurveto 0 -64 -42 -44 -56 39 22 21 28 4 blend 0 rrcurveto -54 24 1 blend 0 -36 28 -26 38 14 -16 2 -6 4 blend rrcurveto -24 -18 -50 -40 2 blend rlineto 28 -38 42 -36 68 8 -16 16 10 2 5 blend 0 rrcurveto 1 vsindex 192 12 1 blend -12 rmoveto 70 10 1 blend 0 52 56 10 4 2 blend 0 72 8 1 blend rrcurveto 0 72 -42 54 -80 4 -6 -8 6 4 blend 0 rrcurveto -44 10 1 blend 0 -38 -18 -34 -34 6 4 13 7 4 blend rrcurveto 0 -35 5 -34 2 blend rlineto 42 47 32 14 40 -26 -29 -13 -4 -23 5 blend 0 rrcurveto 62 -36 1 blend 0 32 -44 -16 30 2 blend 0 -56 26 1 blend rrcurveto 0 -56 -36 -46 -54 24 17 36 35 4 blend 0 rrcurveto -70 44 1 blend 0 -42 62 14 -40 2 blend 0 104 -32 1 blend rrcurveto 0 142 68 54 60 -66 -52 2 8 4 blend 0 rrcurveto 28 -1 1 blend 0 22 -10 18 -12 -3 -2 2 -3 4 blend rrcurveto 14 26 34 50 2 blend rlineto -22 14 -22 8 -36 -2 7 -16 16 -25 5 blend 0 rrcurveto -80 -43 1 blend 0 -80 -58 16 -33 2 blend 0 -166 51 1 blend rrcurveto 0 -122 58 -68 82 -2 3 -16 29 4 blend 0 rrcurveto 1 vsindex 142 -30 1 blend 0 rmoveto 30 102 1 blend 0 rlineto 8 140 26 104 100 128 -2 -10 -10 -20 -14 -18 6 blend rrcurveto 0 18 48 1 blend rlineto -256 -46 1 blend 0 rlineto 0 -26 -78 1 blend rlineto 222 -58 1 blend 0 rlineto -88 -114 24 14 2 blend -32 -104 -10 -146 34 4 30 3 blend rrcurveto 1 vsindex 178 12 1 blend -12 rmoveto 72 18 1 blend 0 56 48 8 2 2 blend 0 64 -2 1 blend rrcurveto 0 46 -26 28 -48 24 4 -6 8 10 -4 5 blend rrcurveto 0 4 rlineto 22 12 1 blend 18 38 30 -14 2 2 blend 0 52 -18 1 blend rrcurveto 0 60 -50 8 -12 2 blend 40 -64 -16 1 blend 0 rrcurveto -62 -16 1 blend 0 -48 -42 -16 2 2 blend 0 -58 -10 1 blend rrcurveto 0 -42 2 1 blend 24 -24 -4 1 blend 34 -22 -2 1 blend rrcurveto 0 -4 rlineto -40 -22 6 2 2 blend -36 -40 5 1 blend 0 -52 9 1 blend rrcurveto 0 -58 50 -4 14 2 blend -50 78 12 1 blend 0 rrcurveto 28 222 -14 34 2 blend rmoveto -60 18 -48 26 34 -6 28 -16 4 blend 0 48 -24 1 blend rrcurveto 0 42 36 30 44 -26 -22 -18 -27 4 blend 0 rrcurveto 46 -27 1 blend 0 38 -28 -24 16 2 blend 0 -42 20 1 blend rrcurveto 0 -34 -18 -32 -38 -28 22 12 18 26 14 5 blend rrcurveto -28 -196 14 22 2 blend rmoveto -60 36 1 blend 0 -38 42 20 -24 2 blend 0 42 -18 1 blend rrcurveto 0 40 24 34 46 26 -22 -14 -16 -30 -14 5 blend rrcurveto 64 -24 62 -14 -30 6 -38 6 4 blend 0 -62 38 1 blend rrcurveto 0 -46 -44 -38 -54 24 26 20 30 4 blend 0 rrcurveto 1 vsindex 144 17 1 blend -12 rmoveto 80 43 1 blend 0 80 58 -16 33 2 blend 0 166 -51 1 blend rrcurveto 0 122 -58 68 -82 2 -3 16 -29 4 blend 0 rrcurveto -70 -10 1 blend 0 -52 -56 -10 -4 2 blend 0 -72 -8 1 blend rrcurveto 0 -72 42 -54 80 -4 6 8 -6 4 blend 0 rrcurveto 44 -10 1 blend 0 38 18 34 34 -6 -4 -13 -7 4 blend rrcurveto 0 35 -5 34 2 blend rlineto -42 -47 -32 -14 -40 26 29 13 4 23 5 blend 0 rrcurveto -62 36 1 blend 0 -32 44 16 -30 2 blend 0 56 -26 1 blend rrcurveto 0 56 36 46 54 -24 -17 -36 -35 4 blend 0 rrcurveto 70 -44 1 blend 0 42 -62 -14 40 2 blend 0 -104 32 1 blend rrcurveto 0 -142 -68 -54 -60 66 52 -2 -8 4 blend 0 rrcurveto -28 1 1 blend 0 -22 10 -18 12 3 2 -2 3 4 blend rrcurveto -14 -26 -34 -50 2 blend rlineto 22 -14 22 -8 36 2 -7 16 -16 25 5 blend 0 rrcurveto 1 vsindex 152 -70 2 -24 2 blend rmoveto 18 14 74 22 2 blend rlineto -56 78 -18 84 14 4 -6 -2 4 blend 0 88 2 1 blend rrcurveto 0 88 18 84 56 76 2 6 -2 -14 6 5 blend rrcurveto -18 14 -74 22 2 blend rlineto -56 -76 -30 -80 -2 -14 -4 2 4 blend 0 -106 -16 1 blend rrcurveto 0 -108 30 -80 56 -76 -14 4 2 2 -14 5 blend rrcurveto 1 vsindex 62 -70 64 -24 2 blend rmoveto 54 76 30 80 4 14 4 -2 4 blend 0 108 14 1 blend rrcurveto 0 106 -30 80 -54 76 16 -4 -2 -4 14 5 blend rrcurveto -20 -14 -72 -22 2 blend rlineto 56 -76 18 -84 -14 -6 6 2 4 blend 0 -88 -2 1 blend rrcurveto 0 -88 -18 -84 -56 -78 -2 -6 2 14 -4 5 blend rrcurveto 20 -14 72 -22 2 blend rlineto 1 vsindex 76 34 1 blend -8 rmoveto 18 22 1 blend 0 14 12 16 18 2 blend 0 22 18 1 blend rrcurveto 0 22 -14 12 -18 18 -16 20 -22 4 blend 0 rrcurveto -18 -22 1 blend 0 -14 -12 -16 -20 2 blend 0 -22 -18 1 blend rrcurveto 0 -22 14 -12 18 -18 16 -18 22 4 blend 0 rrcurveto 1 vsindex 46 -104 8 -32 2 blend rmoveto 42 20 30 44 46 4 18 14 4 blend 0 46 36 1 blend rrcurveto 0 36 -16 18 -24 32 -12 20 -26 4 blend 0 rrcurveto -16 -24 1 blend 0 -16 -12 -16 -16 2 blend 0 -22 -16 1 blend rrcurveto 0 -20 16 -8 16 -22 17 -16 20 4 blend 0 rrcurveto 8 7 1 blend 0 10 2 6 4 6 4 3 blend 8 rrcurveto -24 32 -10 30 2 blend rlineto 10 -38 -12 -38 2 blend rlineto 0 1 1 blend -40 -22 -30 -32 -14 -6 9 -23 -3 4 blend rrcurveto 12 -22 12 -40 2 blend rlineto 1 vsindex 180 258 10 -10 2 blend rmoveto 86 10 1 blend 0 52 74 20 4 2 blend 0 134 -4 1 blend rrcurveto 0 132 -52 74 -86 -2 -20 2 -10 4 blend 0 rrcurveto -86 -10 1 blend 0 -52 -74 -20 -2 2 blend 0 -132 2 1 blend rrcurveto 0 -134 52 -74 86 4 20 -4 10 4 blend 0 rrcurveto 0 26 68 1 blend rmoveto -66 40 1 blend 0 -42 68 18 -42 2 blend 0 114 -26 1 blend rrcurveto 0 114 42 66 66 -26 -18 -42 -40 4 blend 0 rrcurveto 66 -40 1 blend 0 42 -66 -18 42 2 blend 0 -114 26 1 blend rrcurveto 0 -114 -42 -68 -66 26 18 42 40 4 blend 0 rrcurveto 1 vsindex 178 270 -16 -10 2 blend rmoveto 28 98 1 blend 0 rlineto 0 390 rlineto -26 -72 1 blend 0 rlineto -22 -18 -26 -14 -6 2 3 blend -12 -36 -22 1 blend -8 rrcurveto 0 -22 -54 1 blend rlineto 82 8 1 blend 0 rlineto 0 -330 60 1 blend rlineto 1 vsindex 58 270 -16 -10 2 blend rmoveto 250 48 1 blend 0 rlineto 0 26 78 1 blend rlineto -202 102 1 blend 0 rlineto 106 104 72 66 -62 -52 -28 -13 4 blend 0 84 -25 1 blend rrcurveto 0 82 -48 40 -70 2 -12 10 -20 4 blend 0 rrcurveto -48 -14 1 blend 0 -46 -34 -22 -38 -4 8 -22 -18 4 blend rrcurveto 20 -18 50 -46 2 blend rlineto 22 34 34 30 38 -6 -14 -14 -14 4 blend 0 rrcurveto 54 -22 1 blend 0 36 -38 -18 18 2 blend 0 -60 26 1 blend rrcurveto 0 -68 -58 -60 -138 -130 24 -16 -4 46 58 5 blend rrcurveto 0 -20 -46 1 blend rlineto 1 vsindex 176 258 12 -10 2 blend rmoveto 72 10 1 blend 0 56 42 18 8 2 blend 0 72 rrcurveto 0 56 -46 34 -48 8 -12 18 -2 10 10 5 blend rrcurveto 44 16 34 34 -10 6 -16 -8 4 blend 0 50 -10 1 blend rrcurveto 0 64 -52 38 -64 4 -14 4 -10 4 blend 0 rrcurveto -48 -16 1 blend 0 -40 -28 -26 -34 8 -20 -14 3 blend rrcurveto 20 -18 50 -44 2 blend rlineto 26 32 34 22 32 -10 -12 -16 -6 -8 5 blend 0 rrcurveto 54 -30 1 blend 0 34 -32 -18 20 2 blend 0 -46 24 1 blend rrcurveto 0 -46 -46 -42 -82 16 19 32 41 4 blend 0 rrcurveto 0 -24 -46 1 blend rlineto 88 -31 1 blend 0 56 -30 -31 16 2 blend 0 -54 24 1 blend rrcurveto 0 -56 -44 -32 -52 32 23 18 25 4 blend 0 rrcurveto -46 16 1 blend 0 -42 28 20 -16 2 blend -24 38 -6 1 blend rrcurveto -24 -18 -50 -40 2 blend rlineto 26 -38 48 -36 60 10 -16 10 10 10 5 blend 0 rrcurveto 1 vsindex 224 270 -12 -10 2 blend rmoveto 28 82 1 blend 0 rlineto 0 390 rlineto -22 -136 1 blend 0 rlineto -182 -256 50 8 2 blend rlineto 0 -16 -46 1 blend rlineto 262 86 1 blend 0 rlineto 0 26 54 1 blend rlineto -222 -14 1 blend 0 rlineto 78 112 -44 -38 2 blend rlineto 58 84 -22 -8 2 blend rlineto 4 0 rlineto -4 -102 -2 -18 2 blend rlineto 0 -238 48 1 blend rlineto 1 vsindex 180 258 8 -10 2 blend rmoveto 72 20 1 blend 0 58 52 6 7 2 blend 0 82 -5 1 blend rrcurveto 0 88 -56 46 -72 -10 -3 2 4 4 blend 0 rrcurveto -32 26 1 blend 0 -24 -10 -20 -12 7 10 4 9 4 blend rrcurveto 14 128 -10 -89 2 blend rlineto 168 -21 1 blend 0 rlineto 0 28 76 1 blend rlineto -194 -51 1 blend 0 rlineto -20 -184 4 -12 2 blend rlineto 20 -14 31 -22 2 blend rlineto 22 18 26 20 38 -3 -2 -12 -16 -19 5 blend 0 rrcurveto 60 -33 1 blend 0 40 -42 -16 26 2 blend 0 -66 34 1 blend rrcurveto 0 -64 -42 -44 -56 39 22 21 28 4 blend 0 rrcurveto -54 24 1 blend 0 -36 28 -26 38 14 -16 2 -6 4 blend rrcurveto -24 -18 -50 -40 2 blend rlineto 28 -38 42 -36 68 8 -16 16 10 2 5 blend 0 rrcurveto 1 vsindex 192 258 12 -10 2 blend rmoveto 70 10 1 blend 0 52 56 10 4 2 blend 0 72 8 1 blend rrcurveto 0 72 -42 54 -80 4 -6 -8 6 4 blend 0 rrcurveto -44 10 1 blend 0 -38 -18 -34 -34 6 4 13 7 4 blend rrcurveto 0 -35 5 -34 2 blend rlineto 42 47 32 14 40 -26 -29 -13 -4 -23 5 blend 0 rrcurveto 62 -36 1 blend 0 32 -44 -16 30 2 blend 0 -56 26 1 blend rrcurveto 0 -56 -36 -46 -54 24 17 36 35 4 blend 0 rrcurveto -70 44 1 blend 0 -42 62 14 -40 2 blend 0 104 -32 1 blend rrcurveto 0 142 68 54 60 -66 -52 2 8 4 blend 0 rrcurveto 28 -1 1 blend 0 22 -10 18 -12 -3 -2 2 -3 4 blend rrcurveto 14 26 34 50 2 blend rlineto -22 14 -22 8 -36 -2 7 -16 16 -25 5 blend 0 rrcurveto -80 -43 1 blend 0 -80 -58 16 -33 2 blend 0 -166 51 1 blend rrcurveto 0 -122 58 -68 82 -2 3 -16 29 4 blend 0 rrcurveto 1 vsindex 142 270 -30 -10 2 blend rmoveto 30 102 1 blend 0 rlineto 8 140 26 104 100 128 -2 -10 -10 -20 -14 -18 6 blend rrcurveto 0 18 48 1 blend rlineto -256 -46 1 blend 0 rlineto 0 -26 -78 1 blend rlineto 222 -58 1 blend 0 rlineto -88 -114 24 14 2 blend -32 -104 -10 -146 34 4 30 3 blend rrcurveto 1 vsindex 178 258 12 -10 2 blend rmoveto 72 18 1 blend 0 56 48 8 2 2 blend 0 64 -2 1 blend rrcurveto 0 46 -26 28 -48 24 4 -6 8 10 -4 5 blend rrcurveto 0 4 rlineto 22 12 1 blend 18 38 30 -14 2 2 blend 0 52 -18 1 blend rrcurveto 0 60 -50 8 -12 2 blend 40 -64 -16 1 blend 0 rrcurveto -62 -16 1 blend 0 -48 -42 -16 2 2 blend 0 -58 -10 1 blend rrcurveto 0 -42 2 1 blend 24 -24 -4 1 blend 34 -22 -2 1 blend rrcurveto 0 -4 rlineto -40 -22 6 2 2 blend -36 -40 5 1 blend 0 -52 9 1 blend rrcurveto 0 -58 50 -4 14 2 blend -50 78 12 1 blend 0 rrcurveto 28 222 -14 34 2 blend rmoveto -60 18 -48 26 34 -6 28 -16 4 blend 0 48 -24 1 blend rrcurveto 0 42 36 30 44 -26 -22 -18 -27 4 blend 0 rrcurveto 46 -27 1 blend 0 38 -28 -24 16 2 blend 0 -42 20 1 blend rrcurveto 0 -34 -18 -32 -38 -28 22 12 18 26 14 5 blend rrcurveto -28 -196 14 22 2 blend rmoveto -60 36 1 blend 0 -38 42 20 -24 2 blend 0 42 -18 1 blend rrcurveto 0 40 24 34 46 26 -22 -14 -16 -30 -14 5 blend rrcurveto 64 -24 62 -14 -30 6 -38 6 4 blend 0 -62 38 1 blend rrcurveto 0 -46 -44 -38 -54 24 26 20 30 4 blend 0 rrcurveto 1 vsindex 144 258 17 -10 2 blend rmoveto 80 43 1 blend 0 80 58 -16 33 2 blend 0 166 -51 1 blend rrcurveto 0 122 -58 68 -82 2 -3 16 -29 4 blend 0 rrcurveto -70 -10 1 blend 0 -52 -56 -10 -4 2 blend 0 -72 -8 1 blend rrcurveto 0 -72 42 -54 80 -4 6 8 -6 4 blend 0 rrcurveto 44 -10 1 blend 0 38 18 34 34 -6 -4 -13 -7 4 blend rrcurveto 0 35 -5 34 2 blend rlineto -42 -47 -32 -14 -40 26 29 13 4 23 5 blend 0 rrcurveto -62 36 1 blend 0 -32 44 16 -30 2 blend 0 56 -26 1 blend rrcurveto 0 56 36 46 54 -24 -17 -36 -35 4 blend 0 rrcurveto 70 -44 1 blend 0 42 -62 -14 40 2 blend 0 -104 32 1 blend rrcurveto 0 -142 -68 -54 -60 66 52 -2 -8 4 blend 0 rrcurveto -28 1 1 blend 0 -22 10 -18 12 3 2 -2 3 4 blend rrcurveto -14 -26 -34 -50 2 blend rlineto 22 -14 22 -8 36 2 -7 16 -16 25 5 blend 0 rrcurveto 1 vsindex 152 200 2 -34 2 blend rmoveto 18 14 74 22 2 blend rlineto -56 78 -18 84 14 4 -6 -2 4 blend 0 88 2 1 blend rrcurveto 0 88 18 84 56 76 2 6 -2 -14 6 5 blend rrcurveto -18 14 -74 22 2 blend rlineto -56 -76 -30 -80 -2 -14 -4 2 4 blend 0 -106 -16 1 blend rrcurveto 0 -108 30 -80 56 -76 -14 4 2 2 -14 5 blend rrcurveto 1 vsindex 62 200 64 -34 2 blend rmoveto 54 76 30 80 4 14 4 -2 4 blend 0 108 14 1 blend rrcurveto 0 106 -30 80 -54 76 16 -4 -2 -4 14 5 blend rrcurveto -20 -14 -72 -22 2 blend rlineto 56 -76 18 -84 -14 -6 6 2 4 blend 0 -88 -2 1 blend rrcurveto 0 -88 -18 -84 -56 -78 -2 -6 2 14 -4 5 blend rrcurveto 20 -14 72 -22 2 blend rlineto 1 vsindex 76 262 34 -10 2 blend rmoveto 18 22 1 blend 0 14 12 16 18 2 blend 0 22 18 1 blend rrcurveto 0 22 -14 12 -18 18 -16 20 -22 4 blend 0 rrcurveto -18 -22 1 blend 0 -14 -12 -16 -20 2 blend 0 -22 -18 1 blend rrcurveto 0 -22 14 -12 18 -18 16 -18 22 4 blend 0 rrcurveto 1 vsindex 46 166 8 -42 2 blend rmoveto 42 20 30 44 46 4 18 14 4 blend 0 46 36 1 blend rrcurveto 0 36 -16 18 -24 32 -12 20 -26 4 blend 0 rrcurveto -16 -24 1 blend 0 -16 -12 -16 -16 2 blend 0 -22 -16 1 blend rrcurveto 0 -20 16 -8 16 -22 17 -16 20 4 blend 0 rrcurveto 8 7 1 blend 0 10 2 6 4 6 4 3 blend 8 rrcurveto -24 32 -10 30 2 blend rlineto 10 -38 -12 -38 2 blend rlineto 0 1 1 blend -40 -22 -30 -32 -14 -6 9 -23 -3 4 blend rrcurveto 12 -22 12 -40 2 blend rlineto 1 vsindex 3 410 -10 -42 2 blend rmoveto 29 94 1 blend 0 rlineto 90 255 -42 -45 2 blend rlineto 18 52 15 44 16 53 -9 -12 -2 7 -7 -10 6 blend rrcurveto 2 0 rlineto 16 -51 15 -45 18 -53 -5 9 -3 -7 -9 13 6 blend rrcurveto 88 -255 -40 45 2 blend rlineto 31 97 1 blend 0 rlineto -154 21 1 blend 432 rlineto -29 -117 1 blend 0 rlineto -155 22 1 blend -432 rlineto 71 149 25 -59 2 blend rmoveto 195 21 1 blend 0 rlineto 0 25 66 1 blend rlineto -195 -21 1 blend 0 rlineto 0 -25 -66 1 blend rlineto 1 vsindex 63 410 -16 -42 2 blend rmoveto 126 49 1 blend 0 rlineto 99 -6 1 blend 0 64 42 14 -2 2 blend 0 84 5 1 blend rrcurveto 0 60 -40 35 -65 10 -4 10 -3 4 2 5 blend rrcurveto 0 3 -1 1 blend rlineto 51 12 27 36 4 -6 6 3 blend 0 45 -8 1 blend rrcurveto 0 72 -56 33 -88 12 -19 -11 -3 4 blend 0 rrcurveto -118 -43 1 blend 0 rlineto 0 -432 rlineto 29 242 91 21 2 blend rmoveto 0 166 -88 1 blend rlineto 81 -44 1 blend 0 rlineto 81 -44 1 blend 0 42 -24 -26 13 2 blend 0 -56 32 1 blend rrcurveto 0 -58 -36 -28 -91 34 19 9 55 4 blend 0 rrcurveto -77 40 1 blend 0 rlineto 0 -218 46 1 blend rmoveto 0 194 -104 1 blend rlineto 89 -43 1 blend 0 rlineto 90 -46 1 blend 0 52 -30 -33 17 2 blend 0 -63 34 1 blend rrcurveto 0 -73 -54 -28 -88 43 35 10 44 4 blend 0 rrcurveto -89 43 1 blend 0 rlineto 1 vsindex 218 402 18 -42 2 blend rmoveto 56 3 1 blend 0 40 24 32 37 11 -3 6 8 4 blend rrcurveto -17 18 -48 53 2 blend rlineto -31 -34 -34 -19 -45 12 13 10 5 12 5 blend 0 rrcurveto -95 40 1 blend 0 -59 78 23 -34 2 blend 0 122 -45 1 blend rrcurveto 0 119 60 78 97 -44 -17 -32 -46 4 blend 0 rrcurveto 39 -12 1 blend 0 32 -18 24 -27 -14 8 -2 9 4 blend rrcurveto 18 19 47 54 2 blend rlineto -24 27 -39 24 -51 -5 6 -9 2 -6 5 blend 0 rrcurveto -111 -2 1 blend 0 -76 -87 -26 2 2 blend 0 -136 -8 1 blend rrcurveto 0 -138 76 -87 108 -8 19 14 4 4 blend 0 rrcurveto 1 vsindex 63 410 -16 -42 2 blend rmoveto 102 35 1 blend 0 rlineto 134 -6 1 blend 0 64 87 28 -22 2 blend 0 131 24 1 blend rrcurveto 0 129 -64 85 -134 23 -28 -25 -1 4 blend 0 rrcurveto -102 -28 1 blend 0 rlineto 0 -432 rlineto 29 25 91 70 2 blend rmoveto 0 382 -140 1 blend rlineto 70 -64 1 blend 0 rlineto 118 -56 1 blend 0 52 -76 -6 59 2 blend 0 -113 11 1 blend rrcurveto 0 -114 -51 -79 -116 15 5 55 54 4 blend 0 rrcurveto -73 67 1 blend 0 rlineto 1 vsindex 63 410 -16 -42 2 blend rmoveto 245 47 1 blend 0 rlineto 0 25 74 1 blend rlineto -216 44 1 blend 0 rlineto 0 193 -121 1 blend rlineto 177 -35 1 blend 0 rlineto 0 25 74 1 blend rlineto -177 35 1 blend 0 rlineto 0 164 -101 1 blend rlineto 210 -44 1 blend 0 rlineto 0 25 74 1 blend rlineto -239 -47 1 blend 0 rlineto 0 -432 rlineto 1 vsindex 63 410 -16 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 209 -54 1 blend rlineto 177 -32 1 blend 0 rlineto 0 25 74 1 blend rlineto -177 32 1 blend 0 rlineto 0 173 -94 1 blend rlineto 209 -40 1 blend 0 rlineto 0 25 74 1 blend rlineto -238 -51 1 blend 0 rlineto 0 -432 rlineto 1 vsindex 222 402 28 -42 2 blend rmoveto 57 5 1 blend 0 45 20 26 9 4 8 3 blend 28 rrcurveto 0 172 38 1 blend rlineto -132 -34 1 blend 0 rlineto 0 -25 -71 1 blend rlineto 105 -43 1 blend 0 rlineto 0 -136 78 1 blend rlineto -21 -20 -38 -13 -40 13 16 26 11 27 5 blend 0 rrcurveto -100 24 1 blend 0 -59 78 24 -33 2 blend 0 122 -43 1 blend rrcurveto 0 119 62 78 101 -43 -19 -34 -44 4 blend 0 rrcurveto 48 -12 1 blend 0 31 -21 22 -24 -12 11 -1 6 4 blend rrcurveto 17 19 47 55 2 blend rlineto -23 24 -37 27 -58 -11 6 -7 -1 -4 5 blend 0 rrcurveto -116 -4 1 blend 0 -78 -87 -24 5 2 blend 0 -136 -10 1 blend rrcurveto 0 -138 76 -87 112 -8 20 13 12 4 blend 0 rrcurveto 1 vsindex 63 410 -16 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 218 -48 1 blend rlineto 236 -110 1 blend 0 rlineto 0 -218 48 1 blend rlineto 29 91 1 blend 0 rlineto 0 432 rlineto -29 -91 1 blend 0 rlineto 0 -189 30 1 blend rlineto -236 110 1 blend 0 rlineto 0 189 -30 1 blend rlineto -29 -91 1 blend 0 rlineto 0 -432 rlineto 1 vsindex 63 410 -16 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 432 rlineto -29 -91 1 blend 0 rlineto 0 -432 rlineto 1 vsindex 131 402 24 -42 2 blend rmoveto 79 27 1 blend 0 31 55 16 19 2 blend 0 70 17 1 blend rrcurveto 0 315 -36 1 blend rlineto -29 -91 1 blend 0 rlineto 0 -312 43 1 blend rlineto 0 -70 -27 -32 -54 14 11 19 24 4 blend 0 rrcurveto -36 16 1 blend 0 -26 15 -22 36 5 -2 8 -7 4 blend rrcurveto -22 -14 -59 -46 2 blend rlineto 22 -39 35 -24 49 11 -18 11 -3 21 5 blend 0 rrcurveto 1 vsindex 63 410 -16 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 150 -40 1 blend rlineto 90 101 -49 -45 2 blend rlineto 146 -251 -52 85 2 blend rlineto 33 98 1 blend 0 rlineto -159 273 3 -15 2 blend rlineto 140 159 -10 15 2 blend rlineto -35 -96 1 blend 0 rlineto -213 -241 107 85 2 blend rlineto -2 -1 1 blend 0 rlineto 0 241 -85 1 blend rlineto -29 -91 1 blend 0 rlineto 0 -432 rlineto 1 vsindex 63 410 -16 -42 2 blend rmoveto 231 54 1 blend 0 rlineto 0 25 74 1 blend rlineto -202 37 1 blend 0 rlineto 0 407 -74 1 blend rlineto -29 -91 1 blend 0 rlineto 0 -432 rlineto 63 410 -10 -16 -25 -42 2 blend rmoveto 27 52 83 1 blend 0 rlineto 0 285 -98 -163 1 blend rlineto 0 34 -2 45 -2 36 7 11 -2 -8 6 24 -4 -3 10 4 5 blend rrcurveto 3 -1 -1 1 blend 0 rlineto 35 -94 -3 2 -10 -6 2 blend rlineto 95 -261 -27 -36 79 121 2 blend rlineto 27 25 16 1 blend 0 rlineto 94 261 -26 -35 -79 -121 2 blend rlineto 34 94 -2 4 10 6 2 blend rlineto 2 0 1 1 blend 0 rlineto -1 -36 -2 -45 -5 -5 -10 -4 -3 -8 -6 -24 4 blend 0 -34 -7 -11 1 blend rrcurveto 0 -285 98 163 1 blend rlineto 28 53 84 1 blend 0 rlineto 0 432 rlineto -42 -54 -83 1 blend 0 rlineto -90 -253 14 26 46 78 2 blend rlineto -34 -96 12 11 14 27 2 blend rlineto -3 0 rlineto -35 96 12 11 -14 -27 2 blend rlineto -91 253 11 21 -46 -78 2 blend rlineto -43 -52 -80 1 blend 0 rlineto 0 -432 rlineto 63 410 -10 -16 -25 -42 2 blend rmoveto 27 51 85 1 blend 0 rlineto 0 271 -91 -151 1 blend rlineto 0 41 -2 39 -1 41 7 11 -1 -5 12 24 -5 -5 9 9 5 blend rrcurveto 2 1 1 1 blend 0 rlineto 51 -85 -6 -10 -15 -11 2 blend rlineto 185 -307 -61 -94 78 118 2 blend rlineto 31 61 94 1 blend 0 rlineto 0 432 rlineto -27 -51 -85 1 blend 0 rlineto 0 -267 90 150 1 blend rlineto 0 -42 2 -42 2 -41 -7 -12 0 5 -13 -24 5 4 -7 -7 5 blend rrcurveto -3 0 rlineto -50 85 6 9 15 14 2 blend rlineto -185 307 61 94 -78 -121 2 blend rlineto -32 -61 -93 1 blend 0 rlineto 0 -432 rlineto 1 vsindex 214 402 20 -42 2 blend rmoveto 106 14 1 blend 0 75 88 11 -3 2 blend 0 138 3 1 blend rrcurveto 0 136 -75 86 -106 6 -11 -6 -14 4 blend 0 rrcurveto -104 -18 1 blend 0 -76 -85 -8 5 2 blend 0 -137 -5 1 blend rrcurveto 0 -138 76 -88 104 -3 8 3 18 4 blend 0 rrcurveto 0 26 76 1 blend rmoveto -89 37 1 blend 0 -60 79 30 -31 2 blend 0 121 -45 1 blend rrcurveto 0 120 60 77 89 -42 -30 -35 -37 4 blend 0 rrcurveto 91 -41 1 blend 0 59 -77 -27 35 2 blend 0 -120 42 1 blend rrcurveto 0 -121 -59 -79 -91 45 27 31 41 4 blend 0 rrcurveto 1 vsindex 63 410 -16 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 186 -51 1 blend rlineto 90 -36 1 blend 0 rlineto 97 -7 1 blend 0 59 41 26 6 2 blend 0 85 22 1 blend rrcurveto 0 88 -58 32 -98 20 -24 3 5 4 blend 0 rrcurveto -119 -55 1 blend 0 rlineto 0 -432 rlineto 29 211 91 17 2 blend rmoveto 0 196 -86 1 blend rlineto 83 -37 1 blend 0 rlineto 89 -46 1 blend 0 44 -22 -21 8 2 blend 0 -73 38 1 blend rrcurveto 0 -72 -44 -29 -89 35 23 5 44 4 blend 0 rrcurveto -83 37 1 blend 0 rlineto 1 vsindex 214 402 17 -42 2 blend rmoveto 105 17 1 blend 0 75 89 9 -5 2 blend 0 138 3 1 blend rrcurveto 0 135 -75 86 -105 7 -9 -5 -17 4 blend 0 rrcurveto -104 -19 1 blend 0 -76 -85 -6 5 2 blend 0 -136 -7 1 blend rrcurveto 0 -138 76 -89 104 -3 6 5 19 4 blend 0 rrcurveto 0 26 72 1 blend rmoveto -89 37 1 blend 0 -60 80 30 -32 2 blend 0 121 -42 1 blend rrcurveto 0 119 60 77 89 -42 -30 -34 -37 4 blend 0 rrcurveto 90 -39 1 blend 0 59 -77 -27 34 2 blend 0 -119 42 1 blend rrcurveto 0 -121 -59 -80 -90 42 27 32 39 4 blend 0 rrcurveto 127 -119 23 -93 2 blend rmoveto 22 17 1 blend 0 21 4 11 3 8 3 7 7 4 blend rrcurveto -7 25 -14 60 2 blend rlineto -11 -2 -13 -3 -3 -4 3 blend -3 -20 0 rrcurveto -58 21 1 blend 0 -41 26 -18 49 -5 -19 2 -11 4 blend rrcurveto -32 -1 -89 -12 2 blend rlineto 20 -58 50 -43 76 12 -17 21 -8 27 5 blend 0 rrcurveto 1 vsindex 63 410 -16 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 199 -56 1 blend rlineto 95 -46 1 blend 0 rlineto 87 7 1 blend 0 57 41 25 7 2 blend 0 79 23 1 blend rrcurveto 0 81 -57 26 -25 2 blend 32 -87 -7 1 blend 0 rrcurveto -124 -45 1 blend 0 rlineto 0 -432 rlineto 29 224 91 12 2 blend rmoveto 0 183 -81 1 blend rlineto 87 -46 1 blend 0 rlineto 79 -35 1 blend 0 43 -23 -20 9 2 blend 0 -65 30 1 blend rrcurveto 0 -65 -43 -30 -79 32 20 10 35 4 blend 0 rrcurveto -87 46 1 blend 0 rlineto 213 -224 -97 -12 2 blend rmoveto 34 100 1 blend 0 rlineto -130 216 -12 37 2 blend rlineto -28 -8 -53 -71 2 blend rlineto 124 -208 -35 34 2 blend rlineto 1 vsindex 177 402 13 -42 2 blend rmoveto 84 25 1 blend 0 55 50 6 16 2 blend 0 69 11 1 blend rrcurveto 0 63 -42 26 -50 22 -9 20 4 -12 4 5 blend rrcurveto -68 30 14 -7 2 blend rlineto -31 13 -43 21 -7 3 17 -14 4 blend 0 50 -30 1 blend rrcurveto 0 48 39 31 58 -31 -27 -20 -30 4 blend 0 rrcurveto 45 -11 1 blend 0 34 -18 26 -27 -7 4 4 7 4 blend rrcurveto 17 19 43 55 2 blend rlineto -27 28 -42 23 -53 -14 11 -14 -4 4 5 blend 0 rrcurveto -72 -27 1 blend 0 -55 -43 -12 -19 2 blend 0 -62 -11 1 blend rrcurveto 0 -64 51 -27 38 -17 3 -16 -7 16 -6 5 blend rrcurveto 68 -30 -14 7 2 blend rlineto 43 -19 35 -17 -7 4 -13 10 4 blend 0 -55 35 1 blend rrcurveto 0 -53 -43 -35 -67 37 33 21 35 4 blend 0 rrcurveto -51 17 1 blend 0 -46 21 2 -7 2 blend -32 38 -12 1 blend rrcurveto -19 -20 -43 -58 2 blend rlineto 35 -38 49 -27 64 13 -4 13 7 -8 5 blend 0 rrcurveto 1 vsindex 156 410 -23 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 407 -74 1 blend rlineto 139 -24 1 blend 0 rlineto 0 25 74 1 blend rlineto -307 -45 1 blend 0 rlineto 0 -25 -74 1 blend rlineto 139 -22 1 blend 0 rlineto 0 -407 74 1 blend rlineto 1 vsindex 209 402 21 -42 2 blend rmoveto 74 50 1 blend 0 73 39 -17 31 2 blend 0 134 16 1 blend rrcurveto 0 267 -47 1 blend rlineto -27 -89 1 blend 0 rlineto 0 -263 28 1 blend rlineto 0 -116 -57 -35 -63 40 37 8 19 4 blend 0 rrcurveto -62 15 1 blend 0 -56 35 38 -8 2 blend 0 116 -40 1 blend rrcurveto 0 263 -28 1 blend rlineto -29 -91 1 blend 0 rlineto 0 -267 47 1 blend rlineto 0 -134 73 -39 74 -16 -20 -31 58 4 blend 0 rrcurveto 1 vsindex 146 410 -23 -42 2 blend rmoveto 31 114 1 blend 0 rlineto 143 -14 1 blend 432 rlineto -30 -92 1 blend 0 rlineto -81 -252 37 67 2 blend rlineto -17 -53 -10 -40 -18 -52 6 8 1 -4 6 4 6 blend rrcurveto -3 1 1 blend 0 rlineto -18 52 -12 40 -17 53 6 -4 3 4 6 -8 6 blend rrcurveto -82 252 37 -67 2 blend rlineto -31 -96 1 blend 0 rlineto 145 -15 1 blend -432 rlineto 117 410 -20 -34 -25 -42 2 blend rmoveto 32 77 118 1 blend 0 rlineto 79 298 -33 -50 -79 -131 2 blend rlineto 9 33 7 30 8 34 -2 -3 0 -1 -2 -2 3 6 -4 -3 -2 -3 6 blend rrcurveto 3 -1 -1 1 blend 0 rlineto 8 -34 6 -30 9 -33 -4 -4 2 3 1 0 -3 -6 -2 -3 0 1 6 blend rrcurveto 81 -298 -33 -48 79 131 2 blend rlineto 31 78 121 1 blend 0 rlineto 100 -18 -29 1 blend 432 rlineto -29 -52 -85 1 blend 0 rlineto -56 -254 18 33 41 69 2 blend rlineto -11 -48 -8 -47 -10 -46 4 6 2 5 3 4 13 1 6 5 -12 -1 6 blend rrcurveto -3 -1 1 1 blend 0 rlineto -12 46 -10 47 -13 48 4 4 12 1 2 2 -13 0 3 5 -2 -6 6 blend rrcurveto -69 254 17 27 -41 -69 2 blend rlineto -30 -48 -70 1 blend 0 rlineto -69 -254 19 29 41 69 2 blend rlineto -13 -48 -10 -47 -11 -46 2 4 2 4 3 4 13 2 3 3 -12 -1 6 blend rrcurveto -3 -1 0 1 blend 0 rlineto -9 46 -9 47 -11 48 3 3 12 1 5 4 -13 -3 3 6 -2 -3 6 blend rrcurveto -56 254 20 34 -41 -69 2 blend rlineto -31 -57 -92 1 blend 0 rlineto 100 -13 -23 1 blend -432 rlineto 1 vsindex 9 410 -2 -42 2 blend rmoveto 30 98 1 blend 0 rlineto 77 134 -47 -59 2 blend rlineto 12 21 12 21 14 26 -3 2 -1 1 -4 1 6 blend rrcurveto 3 -1 1 blend 0 rlineto 16 -26 13 -21 12 -21 -5 -1 -3 -1 -2 -2 6 blend rrcurveto 76 -134 -44 59 2 blend rlineto 31 103 1 blend 0 rlineto -132 223 15 -6 2 blend rlineto 123 209 -12 6 2 blend rlineto -30 -99 1 blend 0 rlineto -73 -128 50 62 2 blend rlineto -11 4 1 blend -20 -9 -15 -13 -23 -9 3 -7 3 blend rrcurveto -3 0 rlineto -14 23 -9 15 -12 2 7 -3 9 4 5 blend 20 rrcurveto -72 128 45 -62 2 blend rlineto -32 -102 1 blend 0 rlineto 123 -208 -11 -2 2 blend rlineto -132 -224 13 2 2 blend rlineto 1 vsindex 131 410 -5 -42 2 blend rmoveto 29 91 1 blend 0 rlineto 0 176 -28 1 blend rlineto 132 256 -1 28 2 blend rlineto -30 -95 1 blend 0 rlineto -67 -136 37 50 2 blend rlineto -14 -32 -16 -29 -17 -32 2 -1 5 -2 6 -2 6 blend rrcurveto -3 1 1 blend 0 rlineto -17 32 -15 29 -15 32 5 2 5 2 2 1 6 blend rrcurveto -68 136 38 -50 2 blend rlineto -31 -97 1 blend 0 rlineto 132 -256 1 -28 2 blend rlineto 0 -176 28 1 blend rlineto 1 vsindex 31 410 -10 -42 2 blend rmoveto 293 32 1 blend 0 rlineto 0 25 74 1 blend rlineto -257 80 1 blend 0 rlineto 254 390 -78 -129 2 blend rlineto 0 17 55 1 blend rlineto -268 -39 1 blend 0 rlineto 0 -25 -74 1 blend rlineto 232 -73 1 blend 0 rlineto -254 -390 78 129 2 blend rlineto 0 -17 -55 1 blend rlineto 140 402 -7 -12 -25 -42 2 blend rmoveto 44 -5 -8 1 blend 0 36 24 28 -4 -6 -5 -8 -2 -4 3 blend 24 rrcurveto 4 0 rlineto 6 -40 2 4 5 8 2 blend rlineto 22 45 74 1 blend 0 rlineto 0 202 -10 -16 1 blend rlineto 0 72 -22 50 -76 21 34 -21 -34 -2 -2 -6 -10 4 blend 0 rrcurveto -52 0 -48 -26 -24 -16 -1 -2 6 10 -14 -24 -7 -12 4 blend rrcurveto 12 -22 18 30 -33 -56 2 blend rlineto 22 16 46 22 42 8 13 1 2 -12 -19 -7 -12 -11 -18 5 blend 0 rrcurveto 58 -18 -31 1 blend 0 14 -44 0 -54 21 35 2 3 19 31 3 blend rrcurveto -144 -14 -64 -34 8 16 2 2 7 10 -2 -4 4 blend 0 -70 -2 0 1 blend rrcurveto 0 -58 40 -32 56 2 4 -1 -2 -9 -16 5 8 4 blend 0 rrcurveto 6 26 21 35 38 64 2 blend rmoveto -44 15 25 1 blend 0 -28 20 11 18 -7 -12 2 blend 0 46 -20 -32 1 blend rrcurveto 0 48 46 32 132 14 -20 -30 -18 -30 -10 -14 -48 -80 -4 -8 5 blend rrcurveto 0 -108 42 64 1 blend rlineto -38 -36 -36 -16 -32 15 26 14 24 16 26 5 8 9 15 5 blend 0 rrcurveto 1 vsindex 186 402 42 -42 2 blend rmoveto 76 -6 1 blend 0 64 4 1 blend 64 0 108 8 1 blend rrcurveto 0 98 -42 62 -88 2 -10 6 10 4 blend 0 rrcurveto -42 13 1 blend 0 -34 -24 -34 -28 4 11 11 7 4 blend rrcurveto 2 64 2 -17 2 blend rlineto 0 138 -31 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -474 14 1 blend rlineto 22 70 1 blend 0 rlineto 4 30 6 6 2 blend rlineto 4 0 rlineto 30 -24 36 -8 -6 -4 3 blend -14 30 0 rrcurveto 2 26 -32 68 2 blend rmoveto -28 14 1 blend 0 -38 12 -34 30 26 -8 20 -20 4 blend rrcurveto 0 184 -62 1 blend rlineto 36 34 38 20 32 -22 -18 -26 -14 -16 5 blend 0 rrcurveto 72 -44 1 blend 0 30 -56 -14 36 2 blend 0 -78 24 1 blend rrcurveto 0 -88 -46 -58 -62 26 24 36 38 4 blend 0 rrcurveto 1 vsindex 182 402 6 -42 2 blend rmoveto 48 6 1 blend 0 28 18 24 20 12 2 -2 -2 4 blend rrcurveto -14 20 -34 56 2 blend rlineto -22 -18 -26 -14 -38 10 8 12 4 12 5 blend 0 rrcurveto -70 34 1 blend 0 -48 58 24 -26 2 blend 0 82 -34 1 blend rrcurveto 0 82 50 58 66 -34 -24 -26 -30 4 blend 0 rrcurveto 38 -24 1 blend 0 18 -10 24 -20 -4 4 -12 10 4 blend rrcurveto 16 20 38 56 2 blend rlineto -22 18 -28 6 -2 -10 3 blend 18 -44 -8 1 blend 0 rrcurveto -78 -14 1 blend 0 -70 -60 -10 -6 2 blend 0 -106 -2 1 blend rrcurveto 0 -106 62 -60 86 -4 8 -4 10 4 blend 0 rrcurveto 1 vsindex 176 402 -16 -42 2 blend rmoveto 40 -8 1 blend 0 28 22 28 24 2 -6 -6 -2 4 blend rrcurveto 4 -2 1 blend 0 rlineto 6 -38 2 8 2 blend rlineto 22 76 1 blend 0 rlineto 0 474 -14 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -130 28 1 blend rlineto 2 -58 4 6 2 blend rlineto -32 24 -30 14 -4 4 3 blend 14 -36 2 1 blend 0 rrcurveto -76 12 1 blend 0 -66 -62 -6 -2 2 blend 0 -98 -6 1 blend rrcurveto 0 -110 52 -62 86 -4 1 -4 -3 4 blend 0 rrcurveto 2 26 32 68 2 blend rmoveto -76 46 1 blend 0 -34 58 16 -36 2 blend 0 88 -24 1 blend rrcurveto 0 76 50 58 60 -24 -28 -36 -36 4 blend 0 rrcurveto 30 -16 1 blend 0 34 -12 34 -30 -22 8 -20 18 4 blend rrcurveto 0 -186 66 1 blend rlineto -36 -32 -30 -20 -32 26 14 18 14 16 5 blend 0 rrcurveto 180 402 10 16 -26 -42 2 blend rmoveto 48 -6 -11 1 blend 0 32 18 26 16 8 15 -4 -4 8 12 8 10 4 blend rrcurveto -14 22 -14 -24 28 46 2 blend rlineto -22 -16 -32 -14 -36 0 -2 2 2 4 10 6 10 8 14 5 blend 0 rrcurveto -74 25 38 1 blend 0 -46 56 0 80 9 16 -28 -46 -6 -10 -28 -38 4 blend rrcurveto 234 -29 -46 1 blend 0 rlineto 2 16 0 4 1 2 -2 -2 2 2 8 6 4 blend 0 10 8 10 1 blend rrcurveto 0 48 -22 92 -102 24 42 -15 -26 -12 -20 1 4 4 blend 0 rrcurveto -78 -5 -8 1 blend 0 -64 -64 -7 -12 -2 -4 2 blend 0 -102 -2 -4 1 blend rrcurveto 0 -108 66 -58 82 6 10 -6 -8 10 16 3 blend 0 rrcurveto -118 188 36 56 16 20 2 blend rmoveto 8 72 42 46 62 -2 -2 -28 -36 -14 -22 -18 -32 -22 -37 5 blend 0 rrcurveto 72 -26 -39 1 blend 0 24 -64 -8 -12 26 42 2 blend 0 -54 20 26 1 blend rrcurveto -208 72 112 1 blend 0 rlineto 1 vsindex 68 410 -10 -42 2 blend rmoveto 28 92 1 blend 0 rlineto 0 386 -50 1 blend rlineto 0 40 16 30 34 -5 -2 -17 -14 4 blend 0 rrcurveto 18 -6 1 blend 0 12 -4 10 -4 2 -2 2 3 blend rrcurveto 8 24 14 60 2 blend rlineto -18 8 -12 2 -18 2 -2 -14 4 -12 5 blend 0 rrcurveto -50 -52 1 blend 0 -28 -38 -6 -32 2 blend 0 -62 -12 1 blend rrcurveto 0 -382 50 1 blend rlineto -46 292 2 -52 2 blend rmoveto 150 69 1 blend 0 rlineto 0 24 68 1 blend rlineto -104 -64 1 blend 0 rlineto -46 -2 -5 -2 2 blend rlineto 0 -22 -66 1 blend rlineto 1 vsindex 166 258 -6 -26 2 blend rmoveto 94 28 1 blend 0 58 52 16 -2 2 blend 0 54 18 1 blend rrcurveto 0 52 -32 22 -73 9 -14 3 -13 4 blend 0 rrcurveto -69 19 1 blend 0 rlineto -46 12 1 blend 0 -16 16 4 -12 2 blend 0 24 -10 1 blend rrcurveto 0 20 12 14 14 10 -12 -10 -10 -8 -4 5 blend rrcurveto 16 -10 20 -4 18 6 -10 4 -8 4 blend 0 rrcurveto 63 11 1 blend 0 51 48 11 -16 2 blend 0 66 12 1 blend rrcurveto 0 30 -14 30 -20 16 -18 12 -17 18 -9 5 blend rrcurveto 72 -26 1 blend 0 rlineto 0 26 60 1 blend rlineto -103 -21 1 blend 0 rlineto -14 -2 1 blend 6 -14 4 -21 -6 -2 3 3 blend 0 rrcurveto -64 -11 1 blend 0 -50 -46 -20 7 2 blend 0 -66 -17 1 blend rrcurveto 0 -38 20 1 1 blend -31 21 -17 4 2 2 blend rrcurveto 0 -4 rlineto -15 -10 -20 -20 -9 -6 7 -4 4 blend 0 -26 4 1 blend rrcurveto 0 -24 -4 1 blend 12 -18 16 -10 2 2 -2 3 blend rrcurveto 0 -4 rlineto -30 -20 6 1 blend -16 -26 6 1 blend 0 -28 rrcurveto 0 -54 48 -34 82 -6 16 12 -6 4 blend 0 rrcurveto -4 276 16 34 2 blend rmoveto -50 30 1 blend 0 -36 36 22 -22 2 blend 0 52 -22 1 blend rrcurveto 0 54 36 32 50 -24 -22 -18 -30 4 blend 0 rrcurveto 46 -26 1 blend 0 40 -33 -27 19 2 blend 0 -53 23 1 blend rrcurveto 0 -52 -40 -36 -46 22 27 22 26 4 blend 0 rrcurveto 8 -250 12 1 blend rmoveto -68 30 1 blend 0 -38 24 12 -14 2 blend 0 41 -21 1 blend rrcurveto 0 23 14 22 28 18 -15 -9 -15 -21 -11 5 blend rrcurveto 14 -4 18 -2 1 blend 0 8 8 1 blend 0 rrcurveto 68 -42 1 blend 0 rlineto 48 -20 1 blend 0 28 -12 -14 8 2 blend 0 -34 19 1 blend rrcurveto 0 -40 -48 -38 -72 23 22 26 36 4 blend 0 rrcurveto 1 vsindex 60 410 -22 -42 2 blend rmoveto 28 92 1 blend 0 rlineto 0 238 -23 1 blend rlineto 42 42 34 18 30 -26 -27 -22 -8 -12 5 blend 0 rrcurveto 64 -36 1 blend 0 14 -40 -10 24 2 blend 0 -60 24 1 blend rrcurveto 0 -198 10 1 blend rlineto 28 92 1 blend 0 rlineto 0 204 -2 1 blend rlineto 0 70 -24 50 -76 14 -6 4 1 4 blend 0 rrcurveto -42 -3 1 blend 0 -40 -26 -30 -32 6 2 8 10 4 blend rrcurveto 0 72 8 -14 2 blend rlineto 0 136 -28 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -474 14 1 blend rlineto 1 vsindex 60 410 -22 -42 2 blend rmoveto 28 92 1 blend 0 rlineto 0 316 16 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -316 -16 1 blend rlineto 16 392 44 -22 2 blend rmoveto 16 22 1 blend 0 12 12 16 12 2 blend 0 16 18 1 blend rrcurveto 0 16 -12 12 -16 18 -16 12 -22 4 blend 0 rrcurveto -16 -23 1 blend 0 -12 -12 -15 -12 2 blend 0 -16 -18 1 blend rrcurveto 0 -16 12 -12 16 -18 15 -12 23 4 blend 0 rrcurveto 1 vsindex 20 258 8 -22 2 blend rmoveto 46 56 1 blend 0 24 28 6 42 2 blend 0 70 4 1 blend rrcurveto 0 370 -50 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -374 50 1 blend rlineto 0 -40 -8 -26 -36 4 1 14 13 4 blend 0 rrcurveto -14 3 1 blend 0 -6 -3 1 blend 2 -10 4 4 -2 2 blend rrcurveto -8 -26 -12 -62 2 blend rlineto 16 -6 8 -2 16 -2 2 10 -2 16 5 blend 0 rrcurveto 58 544 14 -42 2 blend rmoveto 16 22 1 blend 0 12 12 16 12 2 blend 0 16 18 1 blend rrcurveto 0 16 -12 12 -16 18 -16 12 -22 4 blend 0 rrcurveto -16 -23 1 blend 0 -12 -12 -15 -12 2 blend 0 -16 -18 1 blend rrcurveto 0 -16 12 -12 16 -18 15 -12 23 4 blend 0 rrcurveto 1 vsindex 60 410 -22 -42 2 blend rmoveto 28 92 1 blend 0 rlineto 0 82 -2 1 blend rlineto 72 86 -44 -52 2 blend rlineto 110 -168 -44 54 2 blend rlineto 34 94 1 blend 0 rlineto -124 -4 1 blend 190 rlineto 106 126 16 16 2 blend rlineto -36 -92 1 blend 0 rlineto -158 -188 74 74 2 blend rlineto -4 0 rlineto 0 346 -104 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -474 14 1 blend rlineto 1 vsindex 102 402 42 -42 2 blend rmoveto 10 18 1 blend 0 6 2 6 2 10 2 8 4 4 blend rrcurveto -6 24 -8 62 2 blend rlineto -6 -2 -4 2 1 blend 0 -4 0 rrcurveto -10 0 -6 6 -2 2 2 blend 0 16 6 1 blend rrcurveto 0 434 -90 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -428 88 1 blend rlineto 0 -36 12 -18 30 -40 14 -34 50 4 blend 0 rrcurveto 1 vsindex 60 410 -22 -42 2 blend rmoveto 28 92 1 blend 0 rlineto 0 238 -22 1 blend rlineto 40 42 28 18 30 -24 -26 -14 -10 -18 5 blend 0 rrcurveto 58 -32 1 blend 0 16 -40 -8 24 2 blend 0 -60 24 1 blend rrcurveto 0 -198 10 1 blend rlineto 28 92 1 blend 0 rlineto 0 238 -22 1 blend rlineto 40 42 28 18 30 -24 -26 -14 -10 -18 5 blend 0 rrcurveto 58 -32 1 blend 0 16 -40 -8 24 2 blend 0 -60 24 1 blend rrcurveto 0 -198 10 1 blend rlineto 28 92 1 blend 0 rlineto 0 204 -2 1 blend rlineto 0 70 -26 50 -70 14 -8 4 -4 4 blend 0 rrcurveto -42 -4 1 blend 0 -38 -30 -32 -34 8 4 5 6 4 blend rrcurveto -12 44 -32 -7 -10 3 3 blend 20 -44 -1 1 blend 0 rrcurveto -42 -4 1 blend 0 -32 4 1 blend -24 -28 -32 2 6 2 blend rrcurveto -4 2 1 blend 0 rlineto -4 48 -5 -6 2 blend rlineto -22 -75 1 blend 0 rlineto 0 -316 -16 1 blend rlineto 1 vsindex 60 410 -22 -42 2 blend rmoveto 28 92 1 blend 0 rlineto 0 238 -23 1 blend rlineto 42 42 34 18 32 -26 -27 -22 -8 -14 5 blend 0 rrcurveto 62 -34 1 blend 0 14 -40 -10 24 2 blend 0 -60 24 1 blend rrcurveto 0 -198 10 1 blend rlineto 28 92 1 blend 0 rlineto 0 204 -2 1 blend rlineto 0 70 -24 50 -76 14 -6 4 1 4 blend 0 rrcurveto -42 -3 1 blend 0 -38 4 1 blend -24 -30 -32 4 6 2 blend rrcurveto -4 2 1 blend 0 rlineto -4 48 -6 -6 2 blend rlineto -22 -74 1 blend 0 rlineto 0 -316 -16 1 blend rlineto 1 vsindex 178 402 10 -42 2 blend rmoveto 80 6 1 blend 0 64 62 16 2 2 blend 0 104 5 1 blend rrcurveto 0 106 -64 60 -80 4 -16 5 -6 4 blend 0 rrcurveto -80 -6 1 blend 0 -64 -60 -16 -5 2 blend 0 -106 -4 1 blend rrcurveto 0 -104 64 -62 80 -5 16 -2 6 4 blend 0 rrcurveto 0 26 68 1 blend rmoveto -68 35 1 blend 0 -46 58 35 -27 2 blend 0 82 -34 1 blend rrcurveto 0 84 46 56 68 -35 -35 -24 -35 4 blend 0 rrcurveto 68 -35 1 blend 0 46 -56 -35 24 2 blend 0 -84 35 1 blend rrcurveto 0 -82 -46 -58 -68 34 35 27 35 4 blend 0 rrcurveto 1 vsindex 60 270 -22 -34 2 blend rmoveto 28 92 1 blend 0 rlineto 0 112 -22 1 blend rlineto -2 59 -4 9 2 blend rlineto 30 -25 40 -14 30 -8 3 -14 2 -2 5 blend 0 rrcurveto 76 -6 1 blend 0 64 4 1 blend 64 0 108 8 1 blend rrcurveto 0 98 -42 62 -88 2 -10 6 10 4 blend 0 rrcurveto -42 10 1 blend 0 -34 -24 -28 -24 -4 6 6 2 4 blend rrcurveto -4 2 1 blend 0 rlineto -6 40 -2 -8 2 blend rlineto -22 -74 1 blend 0 rlineto 0 -456 -8 1 blend rlineto 128 158 32 60 2 blend rmoveto -28 14 1 blend 0 -38 12 -34 30 26 -8 20 -20 4 blend rrcurveto 0 184 -62 1 blend rlineto 36 34 38 20 32 -22 -18 -26 -14 -16 5 blend 0 rrcurveto 72 -44 1 blend 0 30 -56 -14 36 2 blend 0 -78 24 1 blend rrcurveto 0 -88 -46 -58 -62 26 24 36 38 4 blend 0 rrcurveto 1 vsindex 276 270 -44 -34 2 blend rmoveto 28 92 1 blend 0 rlineto 0 456 8 1 blend rlineto -22 -70 1 blend 0 rlineto -4 -30 -6 -6 2 blend rlineto -4 2 1 blend 0 rlineto -26 24 -32 1 6 5 3 blend 14 -36 4 1 blend 0 rrcurveto -76 8 1 blend 0 -66 -62 -6 -4 2 blend 0 -104 -4 1 blend rrcurveto 0 -104 52 -62 86 -4 2 -4 -2 4 blend 0 rrcurveto 40 -14 1 blend 0 34 18 28 26 -2 -4 -10 -6 4 blend rrcurveto -2 -62 -4 10 2 blend rlineto 0 -114 8 1 blend rlineto -98 158 60 62 2 blend rmoveto -76 46 1 blend 0 -34 58 16 -36 2 blend 0 82 -24 1 blend rrcurveto 0 82 50 58 60 -26 -26 -38 -38 4 blend 0 rrcurveto 30 -16 1 blend 0 34 -12 34 -30 -20 6 -22 20 4 blend rrcurveto 0 -192 74 1 blend rlineto -34 -30 -32 -16 -32 22 12 22 12 16 5 blend 0 rrcurveto 1 vsindex 60 410 -22 -42 2 blend rmoveto 30 90 1 blend 0 rlineto 0 216 -34 1 blend rlineto 26 58 33 20 31 -10 -18 -5 -6 -7 5 blend 0 rrcurveto 10 4 1 blend 0 12 -2 6 2 -2 4 3 blend -2 rrcurveto 8 28 12 74 2 blend rlineto -8 -1 1 blend 4 -14 2 -12 1 2 -10 3 blend 0 rrcurveto -38 6 1 blend 0 -28 -24 -24 -40 -8 4 -2 -6 4 blend rrcurveto -4 2 1 blend 0 rlineto -6 56 -3 2 2 blend rlineto -22 -75 1 blend 0 rlineto 0 -316 -16 1 blend rlineto 1 vsindex 144 402 -1 -42 2 blend rmoveto 60 35 1 blend 0 44 38 6 10 2 blend 0 54 9 1 blend rrcurveto 0 60 -54 14 -50 20 -1 8 12 12 -6 5 blend rrcurveto -40 16 -36 12 8 -4 4 -6 4 blend 0 38 -22 1 blend rrcurveto 0 26 22 28 46 -14 -12 -22 -28 4 blend 0 rrcurveto 36 -16 1 blend 0 18 -10 6 -2 2 blend 24 -18 2 1 blend rrcurveto 18 22 34 48 2 blend rlineto -24 18 -32 14 -40 -6 4 -6 8 -16 5 blend 0 rrcurveto -64 -16 1 blend 0 -34 -42 -20 -2 2 blend 0 -40 -25 1 blend rrcurveto 0 -56 54 -20 48 -18 1 -10 -8 -8 2 5 blend rrcurveto 38 -4 1 blend -14 40 -16 -10 10 2 blend 0 -38 22 1 blend rrcurveto 0 -34 -28 -28 -46 22 18 22 24 4 blend 0 rrcurveto -44 22 1 blend 0 -32 18 -28 4 -8 -4 3 blend 22 rrcurveto -18 -22 -32 -52 2 blend rlineto 30 -24 42 -20 50 5 -2 9 2 -7 5 blend 0 rrcurveto 1 vsindex 150 402 28 -42 2 blend rmoveto 14 24 1 blend 0 24 6 16 4 1 blend 6 rrcurveto -8 24 -12 60 2 blend rlineto -14 -6 -14 -4 -14 4 2 6 4 4 5 blend 0 rrcurveto -42 22 1 blend 0 -14 28 -4 -16 2 blend 0 42 -6 1 blend rrcurveto 0 202 -94 1 blend rlineto 96 -22 1 blend 0 rlineto 0 26 66 1 blend rlineto -96 22 1 blend 0 rlineto 0 104 -20 1 blend rlineto -24 -76 1 blend 0 rlineto -4 -104 -10 20 2 blend rlineto -51 -2 1 -2 2 blend rlineto 0 -24 -64 1 blend rlineto 51 -7 1 blend 0 rlineto 0 -200 90 1 blend rlineto 0 -58 18 -40 62 -24 18 -16 26 4 blend 0 rrcurveto 1 vsindex 160 402 -20 -42 2 blend rmoveto 42 4 1 blend 0 38 24 30 32 -4 2 -8 -10 4 blend rrcurveto 4 -2 1 blend 0 rlineto 4 -48 8 8 2 blend rlineto 22 74 1 blend 0 rlineto 0 316 16 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -238 22 1 blend rlineto -42 -42 -34 -18 -32 28 26 20 10 16 5 blend 0 rrcurveto -62 32 1 blend 0 -14 40 10 -26 2 blend 0 60 -24 1 blend rrcurveto 0 198 -8 1 blend rlineto -28 -92 1 blend 0 rlineto 0 -204 -1 1 blend rlineto 0 -70 24 -50 76 -12 9 -3 -3 4 blend 0 rrcurveto 1 vsindex 128 410 -12 -42 2 blend rmoveto 36 102 1 blend 0 rlineto 122 316 -16 16 2 blend rlineto -30 -84 1 blend 0 rlineto -72 -196 38 54 2 blend rlineto -36 -92 12 -12 2 blend rlineto -4 2 1 blend 0 rlineto -34 92 8 12 2 blend rlineto -72 196 38 -54 2 blend rlineto -30 -88 1 blend 0 rlineto 120 -316 -12 -16 2 blend rlineto 1 vsindex 110 410 -14 -42 2 blend rmoveto 38 98 1 blend 0 rlineto 56 194 -34 -82 2 blend rlineto 24 92 -10 -2 2 blend rlineto 2 0 rlineto 26 -92 -12 2 2 blend rlineto 54 -194 -30 82 2 blend rlineto 38 100 1 blend 0 rlineto 94 316 -19 16 2 blend rlineto -30 -79 1 blend 0 rlineto -54 -204 30 68 2 blend rlineto -26 -86 13 -16 2 blend rlineto -4 1 1 blend 0 rlineto -24 86 6 16 2 blend rlineto -58 204 22 -68 2 blend rlineto -34 -60 1 blend 0 rlineto -56 -204 22 68 2 blend rlineto -24 -86 7 -16 2 blend rlineto -4 1 1 blend 0 rlineto -24 86 12 16 2 blend rlineto -56 204 32 -68 2 blend rlineto -32 -86 1 blend 0 rlineto 94 -316 -14 -16 2 blend rlineto 1 vsindex 8 410 -42 1 blend rmoveto 32 92 1 blend 0 rlineto 54 84 -36 -40 2 blend rlineto 40 58 -18 -8 2 blend rlineto 4 0 rlineto 38 -58 -8 8 2 blend rlineto 54 -84 -30 40 2 blend rlineto 34 92 1 blend 0 rlineto -108 164 8 -6 2 blend rlineto 100 152 -4 22 2 blend rlineto -32 -92 1 blend 0 rlineto -50 -78 34 32 2 blend rlineto -32 -52 14 2 2 blend rlineto -4 0 rlineto -34 52 8 -2 2 blend rlineto -52 78 30 -32 2 blend rlineto -34 -94 1 blend 0 rlineto 102 -150 -6 -10 2 blend rlineto -112 -166 10 -6 2 blend rlineto 1 vsindex 50 268 40 -20 2 blend rmoveto 58 28 1 blend 0 34 54 18 54 2 -16 18 36 4 blend rrcurveto 124 350 -14 -26 2 blend rlineto -30 -84 1 blend 0 rlineto -66 -196 36 72 2 blend rlineto -10 -30 -12 2 -2 4 3 blend -30 -10 4 1 blend -32 rrcurveto -4 0 rlineto -12 32 -14 34 4 2 10 -8 4 blend -10 26 8 1 blend rrcurveto -78 196 40 -72 2 blend rlineto -30 -90 1 blend 0 rlineto 132 -321 -4 3 2 blend rlineto -8 -25 4 13 2 blend rlineto -16 -50 -28 -34 -38 10 32 12 20 8 5 blend 0 rrcurveto -9 3 1 blend 0 -9 2 -8 5 -2 -4 3 blend 4 rrcurveto -8 -28 -12 -60 2 blend rlineto 10 6 1 blend -4 12 2 1 blend -2 12 10 1 blend 0 rrcurveto 1 vsindex 18 410 8 -42 2 blend rmoveto 236 42 1 blend 0 rlineto 0 26 66 1 blend rlineto -198 69 1 blend 0 rlineto 192 272 -67 -96 2 blend rlineto 0 18 46 1 blend rlineto -208 -50 1 blend 0 rlineto 0 -26 -66 1 blend rlineto 170 -60 1 blend 0 rlineto -192 -274 66 98 2 blend rlineto 0 -16 -48 1 blend rlineto 1 vsindex 212 778 -4 -32 2 blend rmoveto 18 16 36 40 2 blend rlineto -112 112 -30 20 2 blend rlineto -20 -18 -50 -60 2 blend rlineto 114 44 1 blend -110 rlineto -32 -378 20 -8 2 blend rmoveto 48 -11 1 blend 0 32 18 26 16 15 -4 12 10 4 blend rrcurveto -14 22 -24 46 2 blend rlineto -22 -16 -32 -14 -36 -2 2 10 10 14 5 blend 0 rrcurveto -74 38 1 blend 0 -46 56 0 80 16 -46 -10 -38 4 blend rrcurveto 234 -46 1 blend 0 rlineto 2 16 0 4 2 -2 2 6 4 blend 0 10 10 1 blend rrcurveto 0 48 -22 92 -102 42 -26 -20 4 4 blend 0 rrcurveto -78 -8 1 blend 0 -64 -64 -12 -4 2 blend 0 -102 -4 1 blend rrcurveto 0 -108 66 -58 82 10 -8 16 3 blend 0 rrcurveto -118 188 56 20 2 blend rmoveto 8 72 42 46 62 -2 -36 -22 -32 -37 5 blend 0 rrcurveto 72 -39 1 blend 0 24 -64 -12 42 2 blend 0 -54 26 1 blend rrcurveto -208 112 1 blend 0 rlineto 1 vsindex 132 778 20 -32 2 blend rmoveto 114 44 1 blend 110 rlineto -20 18 -50 60 2 blend rlineto -112 -112 -30 -20 2 blend rlineto 18 -16 36 -40 2 blend rlineto 48 -376 -4 -10 2 blend rmoveto 48 -11 1 blend 0 32 18 26 16 15 -4 12 10 4 blend rrcurveto -14 22 -24 46 2 blend rlineto -22 -16 -32 -14 -36 -2 2 10 10 14 5 blend 0 rrcurveto -74 38 1 blend 0 -46 56 0 80 16 -46 -10 -38 4 blend rrcurveto 234 -46 1 blend 0 rlineto 2 16 0 4 2 -2 2 6 4 blend 0 10 10 1 blend rrcurveto 0 48 -22 92 -102 42 -26 -20 4 4 blend 0 rrcurveto -78 -8 1 blend 0 -64 -64 -12 -4 2 blend 0 -102 -4 1 blend rrcurveto 0 -108 66 -58 82 10 -8 16 3 blend 0 rrcurveto -118 188 56 20 2 blend rmoveto 8 72 42 46 62 -2 -36 -22 -32 -37 5 blend 0 rrcurveto 72 -39 1 blend 0 24 -64 -12 42 2 blend 0 -54 26 1 blend rrcurveto -208 112 1 blend 0 rlineto 1 vsindex 76 402 34 -42 2 blend rmoveto 18 22 1 blend 0 14 12 16 18 2 blend 0 22 18 1 blend rrcurveto 0 22 -14 12 -18 18 -16 20 -22 4 blend 0 rrcurveto -18 -22 1 blend 0 -14 -12 -16 -20 2 blend 0 -22 -18 1 blend rrcurveto 0 -22 14 -12 18 -18 16 -18 22 4 blend 0 rrcurveto 0 240 -40 1 blend rmoveto 18 22 1 blend 0 14 12 16 18 2 blend 0 22 18 1 blend rrcurveto 0 22 -14 12 -18 18 -16 20 -22 4 blend 0 rrcurveto -18 -22 1 blend 0 -14 -12 -16 -20 2 blend 0 -22 -18 1 blend rrcurveto 0 -22 14 -12 18 -18 16 -18 22 4 blend 0 rrcurveto 1 vsindex 40 562 4 -36 2 blend rmoveto 147 23 1 blend 0 rlineto 0 24 58 1 blend rlineto -147 -23 1 blend 0 rlineto 0 -24 -58 1 blend rlineto 1 vsindex -164 -8 1 blend -12 rmoveto 32 64 1 blend 0 rlineto 370 684 -22 -10 2 blend rlineto -32 -64 1 blend 0 rlineto -370 -684 22 10 2 blend rlineto 1 vsindex 310 574 10 -2 2 blend rmoveto 18 16 66 68 2 blend rlineto -142 154 -76 34 2 blend rlineto -24 -20 -72 -94 2 blend rlineto 148 -150 82 -8 2 blend rlineto 1 vsindex 34 152 -58 1 blend rmoveto 404 162 68 18 2 blend rlineto 0 36 80 1 blend rlineto -404 162 -68 18 2 blend rlineto 0 -32 -108 1 blend rlineto 240 -94 -78 44 2 blend rlineto 132 -52 4 6 2 blend rlineto 0 -4 rlineto -132 -52 -4 6 2 blend rlineto -240 -94 78 44 2 blend rlineto 0 -32 -108 1 blend rlineto 1 vsindex 180 74 4 -22 2 blend rmoveto 20 16 42 34 2 blend rlineto -124 162 16 -12 2 blend rlineto 124 160 -16 -10 2 blend rlineto -20 18 -42 32 2 blend rlineto -138 -164 4 24 2 blend rlineto 0 -28 -92 1 blend rlineto 138 -164 -4 24 2 blend rlineto 134 66 1 blend 0 rmoveto 20 16 42 34 2 blend rlineto -124 162 16 -12 2 blend rlineto 124 160 -16 -10 2 blend rlineto -20 18 -42 32 2 blend rlineto -138 -164 4 24 2 blend rlineto 0 -28 -92 1 blend rlineto 138 -164 -4 24 2 blend rlineto 1 vsindex 74 74 42 -22 2 blend rmoveto 138 164 -4 -24 2 blend rlineto 0 28 92 1 blend rlineto -138 164 4 -24 2 blend rlineto -20 -18 -42 -32 2 blend rlineto 124 -160 -16 10 2 blend rlineto -124 -162 16 12 2 blend rlineto 20 -16 42 -34 2 blend rlineto 134 66 1 blend 0 rmoveto 138 164 -4 -24 2 blend rlineto 0 28 92 1 blend rlineto -138 164 4 -24 2 blend rlineto -20 -18 -42 -32 2 blend rlineto 124 -160 -16 10 2 blend rlineto -124 -162 16 12 2 blend rlineto 20 -16 42 -34 2 blend rlineto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 366 -38 1 blend rlineto 62 64 44 32 60 -36 -40 -26 -18 -28 5 blend 0 rrcurveto 82 -48 1 blend 0 34 -52 -18 36 2 blend 0 -106 42 1 blend rrcurveto 0 -304 18 1 blend rlineto 30 142 1 blend 0 rlineto 0 308 rlineto 0 124 -46 58 -98 22 -12 2 blend 0 rrcurveto -66 -2 1 blend 0 -50 -38 -52 -52 2 4 18 22 4 blend rrcurveto 0 108 8 -22 2 blend rlineto 0 214 -52 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -722 26 1 blend rlineto 1 vsindex 40 234 4 -40 2 blend rmoveto 216 36 1 blend 0 rlineto 0 30 90 1 blend rlineto -216 -36 1 blend 0 rlineto 0 -30 -90 1 blend rlineto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -478 -22 1 blend rlineto 16 600 70 -38 2 blend rmoveto 18 38 1 blend 0 14 14 24 20 2 blend 0 22 30 1 blend rrcurveto 0 20 -14 14 -18 32 -24 20 -38 4 blend 0 rrcurveto -18 -38 1 blend 0 -14 -14 -24 -20 2 blend 0 -20 -32 1 blend rrcurveto 0 -22 14 -14 18 -30 24 -20 38 4 blend 0 rrcurveto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -478 -22 1 blend rlineto -28 574 74 -2 2 blend rmoveto 148 150 82 8 2 blend rlineto -24 20 -72 94 2 blend rlineto -142 -154 -76 -34 2 blend rlineto 18 -16 66 -68 2 blend rlineto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -478 -22 1 blend rlineto -98 574 54 -16 2 blend rmoveto 112 130 16 -46 2 blend rlineto 4 0 rlineto 112 -130 16 46 2 blend rlineto 18 16 46 44 2 blend rlineto -118 146 12 -18 2 blend rlineto -28 -148 1 blend 0 rlineto -118 -146 12 18 2 blend rlineto 18 -16 46 -44 2 blend rlineto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -478 -22 1 blend rlineto -70 602 42 -40 2 blend rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 172 56 1 blend 0 rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -478 -22 1 blend rlineto 60 574 66 -2 2 blend rmoveto 18 16 66 68 2 blend rlineto -142 154 -76 34 2 blend rlineto -24 -20 -72 -94 2 blend rlineto 148 -150 82 -8 2 blend rlineto 1 vsindex 28 -234 10 46 2 blend rmoveto 66 84 1 blend 0 32 40 12 62 2 blend 0 92 20 1 blend rrcurveto 0 580 -106 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -576 96 1 blend rlineto 0 -62 -10 -46 -56 8 -4 26 20 4 blend 0 rrcurveto -18 6 1 blend 0 -22 6 -12 12 -4 -2 3 blend 4 rrcurveto -8 -24 -22 -102 2 blend rlineto 14 8 1 blend -8 26 -6 18 28 1 blend 0 rrcurveto 82 834 26 -84 2 blend rmoveto 18 38 1 blend 0 14 14 24 20 2 blend 0 22 30 1 blend rrcurveto 0 20 -14 14 -18 32 -24 20 -38 4 blend 0 rrcurveto -18 -38 1 blend 0 -14 -14 -24 -20 2 blend 0 -20 -32 1 blend rrcurveto 0 -22 14 -14 18 -30 24 -20 38 4 blend 0 rrcurveto 1 vsindex 96 -38 1 blend 0 rmoveto 30 140 1 blend 0 rlineto 0 132 -10 1 blend rlineto 114 134 -64 -78 2 blend rlineto 166 -266 -66 88 2 blend rlineto 34 152 1 blend 0 rlineto -182 -4 1 blend 290 rlineto 154 188 22 22 2 blend rlineto -36 -152 1 blend 0 rlineto -248 -304 114 132 2 blend rlineto -2 -2 1 blend 0 rlineto 0 548 -180 1 blend rlineto -30 -140 1 blend 0 rlineto 0 -722 26 1 blend rlineto 1 vsindex 144 68 1 blend -12 rmoveto 10 28 1 blend 0 8 2 8 4 20 4 10 4 4 blend rrcurveto -6 24 -14 102 2 blend rlineto -8 -2 -4 0 -4 -2 1 blend 0 rrcurveto -14 2 1 blend 0 -8 8 -8 2 2 blend 0 22 12 1 blend rrcurveto 0 676 -150 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -670 150 1 blend rlineto 0 -46 18 -18 30 -66 20 -58 86 4 blend 0 rrcurveto 1 vsindex 438 152 68 -58 2 blend rmoveto 0 32 108 1 blend rlineto -240 94 78 -44 2 blend rlineto -132 52 -4 -6 2 blend rlineto 0 4 rlineto 132 52 4 -6 2 blend rlineto 240 94 -78 -44 2 blend rlineto 0 32 108 1 blend rlineto -404 -162 -68 -18 2 blend rlineto 0 -36 -80 1 blend rlineto 404 -162 68 -18 2 blend rlineto 1 vsindex 406 112 -24 -22 2 blend rmoveto 32 92 1 blend 0 rlineto 0 232 68 1 blend rlineto -404 -68 1 blend 0 rlineto 0 -28 -92 1 blend rlineto 372 -24 1 blend 0 rlineto 0 -204 24 1 blend rlineto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 366 -38 1 blend rlineto 56 64 50 32 46 -30 -38 -26 -20 -26 5 blend 0 rrcurveto 78 -44 1 blend 0 36 -52 -20 36 2 blend 0 -106 42 1 blend rrcurveto 0 -304 18 1 blend rlineto 30 142 1 blend 0 rlineto 0 366 -38 1 blend rlineto 56 64 48 32 48 -30 -38 -24 -20 -28 5 blend 0 rrcurveto 78 -44 1 blend 0 36 -52 -20 36 2 blend 0 -106 42 1 blend rrcurveto 0 -304 18 1 blend rlineto 30 142 1 blend 0 rlineto 0 308 rlineto 0 124 -48 58 -94 22 -16 2 blend 0 rrcurveto -54 -14 1 blend 0 -54 9 1 blend -38 -56 -62 15 20 2 blend rrcurveto -16 60 -38 40 -78 -11 -8 -5 -12 10 5 blend 0 rrcurveto -52 -16 1 blend 0 -56 -38 -44 -50 14 4 4 11 4 blend rrcurveto -2 -2 1 blend 0 rlineto -4 76 -8 -15 2 blend rlineto -26 -114 1 blend 0 rlineto 0 -478 -22 1 blend rlineto 1 vsindex 146 608 -20 -20 2 blend rmoveto 240 68 1 blend 0 rlineto 0 28 80 1 blend rlineto -240 -68 1 blend 0 rlineto 0 -28 -80 1 blend rlineto 1 vsindex 96 -180 -38 4 2 blend rmoveto 30 144 1 blend 0 rlineto -4 82 0 38 0 114 -4 -16 -2 15 -2 -49 6 blend rrcurveto 28 -54 40 -12 52 -14 42 -22 10 -34 5 blend 0 rrcurveto 60 -20 1 blend 0 54 32 44 72 -20 -6 -24 -26 4 blend rrcurveto 2 2 1 blend 0 rlineto -2 -74 12 -30 44 22 24 38 2 30 5 blend 0 rrcurveto 15 33 1 blend 0 12 4 9 4 14 4 15 6 4 blend rrcurveto -6 26 -14 100 2 blend rlineto -12 2 1 blend -4 -7 -7 1 blend -2 -9 1 1 blend 0 rrcurveto -16 -14 1 blend 0 -12 12 -6 -2 2 blend 0 24 10 1 blend rrcurveto 0 144 1 138 1 144 -74 7 12 3 -34 5 blend rrcurveto -30 -144 1 blend 0 rlineto 0 -344 32 1 blend rlineto -61 -105 -51 -13 -52 43 69 31 -5 22 5 blend 0 rrcurveto -80 46 1 blend 0 -32 60 16 -44 2 blend 0 98 -34 1 blend rrcurveto 0 304 -18 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -658 -18 1 blend rlineto 1 vsindex 72 138 60 -32 2 blend rmoveto 164 172 -26 -34 2 blend rlineto 164 -172 -26 34 2 blend rlineto 20 22 65 63 2 blend rlineto -164 170 26 -32 2 blend rlineto 164 170 -26 -32 2 blend rlineto -20 22 -65 63 2 blend rlineto -164 -172 26 34 2 blend rlineto -164 172 26 -34 2 blend rlineto -20 -22 -65 -63 2 blend rlineto 164 -170 -26 32 2 blend rlineto -164 -170 26 32 2 blend rlineto 20 -22 65 -63 2 blend rlineto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 366 -38 1 blend rlineto 62 64 44 32 60 -36 -40 -26 -18 -28 5 blend 0 rrcurveto 82 -48 1 blend 0 34 -52 -18 36 2 blend 0 -106 42 1 blend rrcurveto 0 -304 18 1 blend rlineto 30 142 1 blend 0 rlineto 0 308 rlineto 0 124 -46 58 -98 22 -12 2 blend 0 rrcurveto -66 -2 1 blend 0 -50 -38 -50 -50 4 10 12 3 blend rrcurveto -2 -2 1 blend 0 rlineto -4 76 -8 -16 2 blend rlineto -26 -114 1 blend 0 rlineto 0 -478 -22 1 blend rlineto 1 vsindex 186 52 1 blend -12 rmoveto 122 14 1 blend 0 110 92 16 18 2 blend 0 272 -42 1 blend rrcurveto 0 190 -76 110 -128 40 -50 -22 6 4 blend 0 rrcurveto -92 -28 1 blend 0 -78 -84 -22 4 2 blend 0 -114 -22 1 blend rrcurveto 0 -128 64 -70 112 -8 20 10 -4 4 blend 0 rrcurveto 64 -27 1 blend 0 60 38 46 58 -1 -12 -16 -12 4 blend rrcurveto 0 40 -8 68 2 blend rlineto -56 -78 -64 -30 -48 33 34 33 14 18 5 blend 0 rrcurveto -104 68 1 blend 0 -42 74 8 -59 2 blend 0 96 -35 1 blend rrcurveto 0 94 58 76 78 -27 -26 -55 -42 4 blend 0 rrcurveto 122 -83 1 blend 0 52 -116 -3 84 2 blend 0 -156 -2 1 blend rrcurveto 0 -250 -92 -86 -106 98 42 36 38 4 blend 0 rrcurveto -42 6 1 blend 0 -39 18 -29 36 -1 4 9 -14 4 blend rrcurveto -20 -22 -70 -80 2 blend rlineto 31 -36 41 -24 56 11 -6 25 -14 34 5 blend 0 rrcurveto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 366 -38 1 blend rlineto 62 64 44 32 60 -36 -40 -26 -18 -28 5 blend 0 rrcurveto 82 -48 1 blend 0 34 -52 -18 36 2 blend 0 -106 42 1 blend rrcurveto 0 -304 18 1 blend rlineto 30 142 1 blend 0 rlineto 0 308 rlineto 0 124 -46 58 -98 22 -12 2 blend 0 rrcurveto -66 -2 1 blend 0 -50 -38 -50 -50 4 10 12 3 blend rrcurveto -2 -2 1 blend 0 rlineto -4 76 -8 -16 2 blend rlineto -26 -114 1 blend 0 rlineto 0 -478 -22 1 blend rlineto 261 580 65 -8 2 blend rmoveto 63 17 1 blend 0 16 66 4 56 34 -21 -2 57 4 blend rrcurveto -26 2 -80 4 2 blend rlineto -2 -52 -16 -46 -37 -2 16 6 36 21 5 blend 0 rrcurveto -59 33 1 blend 0 -20 100 -76 -18 -44 16 3 blend 0 rrcurveto -64 -16 1 blend 0 -16 -65 -4 -57 -34 20 2 -56 4 blend rrcurveto 26 -2 80 -4 2 blend rlineto 2 54 16 44 38 2 -18 -6 -34 -22 5 blend 0 rrcurveto 58 -32 1 blend 0 20 -100 77 18 44 -17 3 blend 0 rrcurveto 94 -10 -10 1 blend 0 rmoveto 28 52 70 1 blend 0 rlineto 26 218 -2 -4 -28 -38 2 blend rlineto 156 -51 -64 1 blend 0 rlineto -26 -218 3 4 28 38 2 blend rlineto 28 52 70 1 blend 0 rlineto 26 218 -3 -4 -28 -38 2 blend rlineto 90 3 6 1 blend 0 rlineto 0 28 58 80 1 blend rlineto -86 2 2 1 blend 0 rlineto 22 178 -6 -10 -58 -82 2 blend rlineto 84 4 8 1 blend 0 rlineto 0 28 58 80 1 blend rlineto -82 3 4 1 blend 0 rlineto 26 198 -3 -8 -30 -40 2 blend rlineto -28 -52 -68 1 blend 0 rlineto -26 -198 3 6 30 40 2 blend rlineto -156 51 64 1 blend 0 rlineto 26 198 -4 -8 -30 -40 2 blend rlineto -28 -52 -68 1 blend 0 rlineto -26 -198 4 6 30 40 2 blend rlineto -92 2 2 1 blend 0 rlineto 0 -28 -58 -80 1 blend rlineto 90 -10 -14 1 blend 0 rlineto -22 -178 6 10 58 82 2 blend rlineto -88 4 4 1 blend 0 rlineto 0 -28 -58 -80 1 blend rlineto 84 -8 -12 1 blend 0 rlineto -26 -218 2 4 28 38 2 blend rlineto 58 246 54 74 30 42 2 blend rmoveto 22 178 -6 -10 -58 -82 2 blend rlineto 156 -50 -64 1 blend 0 rlineto -22 -178 6 10 58 82 2 blend rlineto -156 50 64 1 blend 0 rlineto 1 vsindex 266 14 1 blend -12 rmoveto 114 14 1 blend 0 98 92 22 4 2 blend 0 158 8 1 blend rrcurveto 0 160 -98 92 -114 6 -22 4 -14 4 blend 0 rrcurveto -114 -14 1 blend 0 -98 -92 -22 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 98 -92 114 -8 22 -4 14 4 blend 0 rrcurveto 0 28 110 1 blend rmoveto -102 50 1 blend 0 -78 90 58 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 78 92 102 -56 -58 -44 -50 4 blend 0 rrcurveto 102 -50 1 blend 0 78 -92 -58 44 2 blend 0 -132 56 1 blend rrcurveto 0 -132 -78 -90 -102 56 58 42 50 4 blend 0 rrcurveto 1 vsindex 266 14 1 blend -12 rmoveto 114 14 1 blend 0 98 92 22 4 2 blend 0 158 8 1 blend rrcurveto 0 160 -98 92 -114 6 -22 4 -14 4 blend 0 rrcurveto -114 -14 1 blend 0 -98 -92 -22 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 98 -92 114 -8 22 -4 14 4 blend 0 rrcurveto 0 28 110 1 blend rmoveto -102 50 1 blend 0 -78 90 58 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 78 92 102 -56 -58 -44 -50 4 blend 0 rrcurveto 102 -50 1 blend 0 78 -92 -58 44 2 blend 0 -132 56 1 blend rrcurveto 0 -132 -78 -90 -102 56 58 42 50 4 blend 0 rrcurveto -44 558 4 -112 2 blend rmoveto 148 150 82 8 2 blend rlineto -24 20 -72 94 2 blend rlineto -142 -154 -76 -34 2 blend rlineto 18 -16 66 -68 2 blend rlineto 1 vsindex 266 14 1 blend -12 rmoveto 114 14 1 blend 0 98 92 22 4 2 blend 0 158 8 1 blend rrcurveto 0 160 -98 92 -114 6 -22 4 -14 4 blend 0 rrcurveto -114 -14 1 blend 0 -98 -92 -22 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 98 -92 114 -8 22 -4 14 4 blend 0 rrcurveto 0 28 110 1 blend rmoveto -102 50 1 blend 0 -78 90 58 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 78 92 102 -56 -58 -44 -50 4 blend 0 rrcurveto 102 -50 1 blend 0 78 -92 -58 44 2 blend 0 -132 56 1 blend rrcurveto 0 -132 -78 -90 -102 56 58 42 50 4 blend 0 rrcurveto -114 558 -16 -126 2 blend rmoveto 112 130 16 -46 2 blend rlineto 4 0 rlineto 112 -130 16 46 2 blend rlineto 18 16 46 44 2 blend rlineto -118 146 12 -18 2 blend rlineto -28 -148 1 blend 0 rlineto -118 -146 12 18 2 blend rlineto 18 -16 46 -44 2 blend rlineto 1 vsindex 266 14 1 blend -12 rmoveto 114 14 1 blend 0 98 92 22 4 2 blend 0 158 8 1 blend rrcurveto 0 160 -98 92 -114 6 -22 4 -14 4 blend 0 rrcurveto -114 -14 1 blend 0 -98 -92 -22 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 98 -92 114 -8 22 -4 14 4 blend 0 rrcurveto 0 28 110 1 blend rmoveto -102 50 1 blend 0 -78 90 58 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 78 92 102 -56 -58 -44 -50 4 blend 0 rrcurveto 102 -50 1 blend 0 78 -92 -58 44 2 blend 0 -132 56 1 blend rrcurveto 0 -132 -78 -90 -102 56 58 42 50 4 blend 0 rrcurveto -86 586 -28 -150 2 blend rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 172 56 1 blend 0 rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 1 vsindex 266 14 1 blend -12 rmoveto 114 14 1 blend 0 98 92 22 4 2 blend 0 158 8 1 blend rrcurveto 0 160 -98 92 -114 6 -22 4 -14 4 blend 0 rrcurveto -114 -14 1 blend 0 -98 -92 -22 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 98 -92 114 -8 22 -4 14 4 blend 0 rrcurveto 0 28 110 1 blend rmoveto -102 50 1 blend 0 -78 90 58 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 78 92 102 -56 -58 -44 -50 4 blend 0 rrcurveto 102 -50 1 blend 0 78 -92 -58 44 2 blend 0 -132 56 1 blend rrcurveto 0 -132 -78 -90 -102 56 58 42 50 4 blend 0 rrcurveto 44 558 -4 -112 2 blend rmoveto 18 16 66 68 2 blend rlineto -142 154 -76 34 2 blend rlineto -24 -20 -72 -94 2 blend rlineto 148 -150 82 -8 2 blend rlineto 1 vsindex 86 -20 1 blend 0 rmoveto 324 98 1 blend 0 rlineto 0 28 110 1 blend rlineto -142 28 1 blend 0 rlineto 0 612 -116 1 blend rlineto -26 -100 1 blend 0 rlineto -28 -16 -40 -14 -50 -8 -20 -14 -6 -4 -22 -6 6 blend rrcurveto 0 -22 -84 1 blend rlineto 114 6 1 blend 0 rlineto 0 -552 224 1 blend rlineto -152 16 1 blend 0 rlineto 0 -28 -110 1 blend rlineto 1 vsindex 158 270 -28 -10 2 blend rmoveto 28 98 1 blend 0 rlineto 0 390 rlineto -26 -72 1 blend 0 rlineto -22 -18 -26 -14 -6 2 3 blend -12 -36 -22 1 blend -8 rrcurveto 0 -22 -54 1 blend rlineto 82 8 1 blend 0 rlineto 0 -330 60 1 blend rlineto -6 -282 50 10 2 blend rmoveto 32 64 1 blend 0 rlineto 370 684 -22 -10 2 blend rlineto -32 -64 1 blend 0 rlineto -370 -684 22 10 2 blend rlineto 324 24 1 blend 12 rmoveto 250 48 1 blend 0 rlineto 0 26 78 1 blend rlineto -202 102 1 blend 0 rlineto 106 104 72 66 -62 -52 -28 -13 4 blend 0 84 -25 1 blend rrcurveto 0 82 -48 40 -70 2 -12 10 -20 4 blend 0 rrcurveto -48 -14 1 blend 0 -46 -34 -22 -38 -4 8 -22 -18 4 blend rrcurveto 20 -18 50 -46 2 blend rlineto 22 34 34 30 38 -6 -14 -14 -14 4 blend 0 rrcurveto 54 -22 1 blend 0 36 -38 -18 18 2 blend 0 -60 26 1 blend rrcurveto 0 -68 -58 -60 -138 -130 24 -16 -4 46 58 5 blend rrcurveto 0 -20 -46 1 blend rlineto 1 vsindex 158 270 -28 -10 2 blend rmoveto 28 98 1 blend 0 rlineto 0 390 rlineto -26 -72 1 blend 0 rlineto -22 -18 -26 -14 -6 2 3 blend -12 -36 -22 1 blend -8 rrcurveto 0 -22 -54 1 blend rlineto 82 8 1 blend 0 rlineto 0 -330 60 1 blend rlineto 18 -282 40 10 2 blend rmoveto 32 64 1 blend 0 rlineto 370 684 -22 -10 2 blend rlineto -32 -64 1 blend 0 rlineto -370 -684 22 10 2 blend rlineto 446 18 1 blend 12 rmoveto 28 82 1 blend 0 rlineto 0 390 rlineto -22 -136 1 blend 0 rlineto -182 -256 50 8 2 blend rlineto 0 -16 -46 1 blend rlineto 262 86 1 blend 0 rlineto 0 26 54 1 blend rlineto -222 -14 1 blend 0 rlineto 78 112 -44 -38 2 blend rlineto 58 84 -22 -8 2 blend rlineto 4 0 rlineto -4 -102 -2 -18 2 blend rlineto 0 -238 48 1 blend rlineto 1 vsindex 140 402 -12 -42 2 blend rmoveto 44 -8 1 blend 0 36 24 28 -6 -8 -4 3 blend 24 rrcurveto 4 0 rlineto 6 -40 4 8 2 blend rlineto 22 74 1 blend 0 rlineto 0 202 -16 1 blend rlineto 0 72 -22 50 -76 34 -34 -2 -10 4 blend 0 rrcurveto -52 0 -48 -26 -24 -16 -2 10 -24 -12 4 blend rrcurveto 12 -22 30 -56 2 blend rlineto 22 16 46 22 42 13 2 -19 -12 -18 5 blend 0 rrcurveto 58 -31 1 blend 0 14 -44 0 -54 35 3 31 3 blend rrcurveto -144 -14 -64 -34 16 2 10 -4 4 blend 0 -70 rrcurveto 0 -58 40 -32 56 4 -2 -16 8 4 blend 0 rrcurveto 6 26 35 64 2 blend rmoveto -44 25 1 blend 0 -28 20 18 -12 2 blend 0 46 -32 1 blend rrcurveto 0 48 46 32 132 14 -30 -30 -14 -80 -8 5 blend rrcurveto 0 -108 64 1 blend rlineto -38 -36 -36 -16 -32 26 24 26 8 15 5 blend 0 rrcurveto 1 vsindex 178 402 10 -42 2 blend rmoveto 80 6 1 blend 0 64 62 16 2 2 blend 0 104 5 1 blend rrcurveto 0 106 -64 60 -80 4 -16 5 -6 4 blend 0 rrcurveto -80 -6 1 blend 0 -64 -60 -16 -5 2 blend 0 -106 -4 1 blend rrcurveto 0 -104 64 -62 80 -5 16 -2 6 4 blend 0 rrcurveto 0 26 68 1 blend rmoveto -68 35 1 blend 0 -46 58 35 -27 2 blend 0 82 -34 1 blend rrcurveto 0 84 46 56 68 -35 -35 -24 -35 4 blend 0 rrcurveto 68 -35 1 blend 0 46 -56 -35 24 2 blend 0 -84 35 1 blend rrcurveto 0 -82 -46 -58 -68 34 35 27 35 4 blend 0 rrcurveto 266 8 14 1 blend -12 rmoveto 114 9 14 1 blend 0 98 92 13 22 2 4 2 blend 0 158 5 8 1 blend rrcurveto 0 160 -98 92 -114 4 6 -13 -22 2 4 -9 -14 4 blend 0 rrcurveto -114 -8 -14 1 blend 0 -98 -92 -13 -22 -2 -4 2 blend 0 -160 -4 -6 1 blend rrcurveto 0 -158 98 -92 114 -5 -8 13 22 -2 -4 8 14 4 blend 0 rrcurveto 0 28 62 104 1 blend rmoveto -102 29 48 1 blend 0 -78 90 30 50 -28 -48 2 blend 0 132 -21 -34 1 blend rrcurveto 0 132 78 92 102 -36 -60 -29 -48 -26 -44 -30 -50 4 blend 0 rrcurveto 102 -28 -48 1 blend 0 78 -92 -30 -50 30 50 2 blend 0 -132 20 34 1 blend rrcurveto 0 -132 -78 -90 -102 36 60 28 48 25 42 30 50 4 blend 0 rrcurveto -198 -38 22 26 -74 -108 2 blend rmoveto 418 502 -2 -12 6 4 2 blend rlineto -22 18 -40 -40 34 30 2 blend rlineto -418 -502 2 12 -6 -4 2 blend rlineto 22 -18 40 40 -34 -30 2 blend rlineto 1 vsindex 266 14 1 blend -12 rmoveto 114 14 1 blend 0 98 92 22 4 2 blend 0 158 8 1 blend rrcurveto 0 160 -98 92 -114 6 -22 4 -14 4 blend 0 rrcurveto -114 -14 1 blend 0 -98 -92 -22 -4 2 blend 0 -160 -6 1 blend rrcurveto 0 -158 98 -92 114 -8 22 -4 14 4 blend 0 rrcurveto 0 28 110 1 blend rmoveto -102 50 1 blend 0 -78 90 58 -42 2 blend 0 132 -56 1 blend rrcurveto 0 132 78 92 102 -56 -58 -44 -50 4 blend 0 rrcurveto 102 -50 1 blend 0 78 -92 -58 44 2 blend 0 -132 56 1 blend rrcurveto 0 -132 -78 -90 -102 56 58 42 50 4 blend 0 rrcurveto 77 564 -13 -118 2 blend rmoveto 63 17 1 blend 0 16 66 4 56 34 -21 -2 57 4 blend rrcurveto -26 2 -80 4 2 blend rlineto -2 -52 -16 -46 -37 -2 16 6 36 21 5 blend 0 rrcurveto -59 33 1 blend 0 -20 100 -76 -18 -44 16 3 blend 0 rrcurveto -64 -16 1 blend 0 -16 -65 -4 -57 -34 20 2 -56 4 blend rrcurveto 26 -2 80 -4 2 blend rlineto 2 54 16 44 38 2 -18 -6 -34 -22 5 blend 0 rrcurveto 58 -32 1 blend 0 20 -100 77 18 44 -17 3 blend 0 rrcurveto 1 vsindex 96 -222 -38 46 2 blend rmoveto 30 142 1 blend 0 rlineto 0 180 -42 1 blend rlineto 0 90 -6 -14 2 blend rlineto 52 -38 50 -22 46 -20 6 -12 4 -4 5 blend 0 rrcurveto 114 -8 1 blend 0 98 96 4 2 2 blend 0 162 10 1 blend rrcurveto 0 148 -62 96 -130 6 -14 4 12 4 blend 0 rrcurveto -60 10 1 blend 0 -58 -36 -48 -38 9 12 11 4 4 blend rrcurveto -2 -2 1 blend 0 rlineto -4 62 -8 -16 2 blend rlineto -26 -114 1 blend 0 rlineto 0 -700 24 1 blend rlineto 180 238 56 66 2 blend rmoveto -38 16 1 blend 0 -54 18 -58 48 32 -12 38 -30 4 blend rrcurveto 0 296 -112 1 blend rlineto 62 54 54 30 50 -40 -28 -34 -20 -24 5 blend 0 rrcurveto 118 -72 1 blend 0 44 -94 -20 60 2 blend 0 -122 40 1 blend rrcurveto 0 -134 -74 -96 -104 38 40 64 64 4 blend 0 rrcurveto 1 vsindex 370 28 1 blend -80 rmoveto 32 140 1 blend 0 rlineto 0 740 -10 1 blend rlineto -32 -140 1 blend 0 rlineto 0 -740 10 1 blend rlineto -80 330 -20 -64 2 blend rmoveto 26 18 1 blend 0 rlineto 0 410 54 1 blend rlineto -44 0 rlineto -136 -4 1 blend 0 -94 -58 -26 4 2 blend 0 -148 -24 1 blend rrcurveto 0 -148 100 -56 148 -7 20 -27 -8 4 blend 0 rrcurveto 1 vsindex 222 -174 -22 -6 2 blend rmoveto 18 12 90 32 2 blend rlineto -80 126 -42 154 8 4 12 -8 4 blend 0 160 -22 1 blend rrcurveto 0 160 42 154 80 126 -22 -12 -8 -8 4 5 blend rrcurveto -18 12 -90 32 2 blend rlineto -82 -132 -50 -2 -6 2 3 blend -144 0 -176 rrcurveto 0 -176 50 -2 1 blend -144 82 -132 2 -6 2 blend rrcurveto 1 vsindex 48 -174 112 -6 2 blend rmoveto 82 132 50 2 6 -2 3 blend 144 0 176 rrcurveto 0 176 -50 2 1 blend 144 -82 132 -2 6 2 blend rrcurveto -18 -12 -90 -32 2 blend rlineto 80 -126 42 -154 -8 -4 -12 8 4 blend 0 -160 22 1 blend rrcurveto 0 -160 -42 -154 -80 -126 22 12 8 8 -4 5 blend rrcurveto 18 -12 90 -32 2 blend rlineto 1 vsindex 180 258 10 -10 2 blend rmoveto 86 10 1 blend 0 52 74 20 4 2 blend 0 134 -4 1 blend rrcurveto 0 132 -52 74 -86 -2 -20 2 -10 4 blend 0 rrcurveto -86 -10 1 blend 0 -52 -74 -20 -2 2 blend 0 -132 2 1 blend rrcurveto 0 -134 52 -74 86 4 20 -4 10 4 blend 0 rrcurveto 0 26 68 1 blend rmoveto -66 40 1 blend 0 -42 68 18 -42 2 blend 0 114 -26 1 blend rrcurveto 0 114 42 66 66 -26 -18 -42 -40 4 blend 0 rrcurveto 66 -40 1 blend 0 42 -66 -18 42 2 blend 0 -114 26 1 blend rrcurveto 0 -114 -42 -68 -66 26 18 42 40 4 blend 0 rrcurveto 16 -296 8 -58 2 blend rmoveto 32 64 1 blend 0 rlineto 370 684 -22 -10 2 blend rlineto -32 -64 1 blend 0 rlineto -370 -684 22 10 2 blend rlineto 422 44 1 blend 0 rmoveto 86 10 1 blend 0 52 74 20 4 2 blend 0 134 -4 1 blend rrcurveto 0 132 -52 74 -86 -2 -20 2 -10 4 blend 0 rrcurveto -86 -10 1 blend 0 -52 -74 -20 -2 2 blend 0 -132 2 1 blend rrcurveto 0 -134 52 -74 86 4 20 -4 10 4 blend 0 rrcurveto 0 26 68 1 blend rmoveto -66 40 1 blend 0 -42 68 18 -42 2 blend 0 114 -26 1 blend rrcurveto 0 114 42 66 66 -26 -18 -42 -40 4 blend 0 rrcurveto 66 -40 1 blend 0 42 -66 -18 42 2 blend 0 -114 26 1 blend rrcurveto 0 -114 -42 -68 -66 26 18 42 40 4 blend 0 rrcurveto 1 vsindex 104 56 1 blend -12 rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 1 vsindex 104 284 56 -68 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 1 vsindex 220 112 -12 -22 2 blend rmoveto 32 92 1 blend 0 rlineto 0 204 -24 1 blend rlineto 186 -12 1 blend 0 rlineto 0 28 92 1 blend rlineto -186 12 1 blend 0 rlineto 0 204 -24 1 blend rlineto -32 -92 1 blend 0 rlineto 0 -204 24 1 blend rlineto -186 12 1 blend 0 rlineto 0 -28 -92 1 blend rlineto 186 -12 1 blend 0 rlineto 0 -204 24 1 blend rlineto 1 vsindex 220 102 -12 68 2 blend rmoveto 32 92 1 blend 0 rlineto 0 210 -90 1 blend rlineto 186 -12 1 blend 0 rlineto 0 28 92 1 blend rlineto -186 12 1 blend 0 rlineto 0 208 -48 1 blend rlineto -32 -92 1 blend 0 rlineto 0 -208 48 1 blend rlineto -186 12 1 blend 0 rlineto 0 -28 -92 1 blend rlineto 186 -12 1 blend 0 rlineto 0 -210 90 1 blend rlineto -186 -102 12 -68 2 blend rmoveto 404 68 1 blend 0 rlineto 0 28 92 1 blend rlineto -404 -68 1 blend 0 rlineto 0 -28 -92 1 blend rlineto 1 vsindex 414 -222 -64 46 2 blend rmoveto 30 142 1 blend 0 rlineto 0 700 -24 1 blend rlineto -26 -108 1 blend 0 rlineto -4 -44 -10 -6 2 blend rlineto -2 -2 1 blend 0 rlineto -46 34 -40 22 -58 8 10 1 -4 5 5 blend 0 rrcurveto -116 14 1 blend 0 -98 -4 1 blend -98 0 -154 -10 1 blend rrcurveto 0 -162 78 -88 120 2 -12 4 3 blend 0 rrcurveto 66 -26 1 blend 0 54 36 44 42 -8 -16 -14 -12 4 blend rrcurveto -2 -98 -4 27 2 blend rlineto 0 -190 47 1 blend rlineto -160 238 96 66 2 blend rmoveto -108 62 1 blend 0 -60 90 32 -56 2 blend 0 132 -42 1 blend rrcurveto 0 124 78 100 102 -36 -44 -68 -66 4 blend 0 rrcurveto 50 -28 1 blend 0 44 -18 54 -48 -18 12 -34 30 4 blend rrcurveto 0 -296 112 1 blend rlineto -54 -54 -50 -30 -56 36 26 30 22 30 5 blend 0 rrcurveto 1 vsindex 164 172 -12 72 2 blend rmoveto 28 122 1 blend 0 rlineto -20 157 170 65 10 -47 -24 -33 4 blend 0 138 -18 1 blend rrcurveto 0 82 -54 68 -96 44 -34 -18 -14 4 blend 0 rrcurveto -68 -12 1 blend 0 -50 -34 -38 -42 -19 -4 -11 -14 4 blend rrcurveto 20 -18 74 -68 2 blend rlineto 34 42 50 24 50 -8 -18 -28 -6 -16 5 blend 0 rrcurveto 84 -54 1 blend 0 36 -60 -10 46 2 blend 0 -64 28 1 blend rrcurveto 0 -130 -168 -58 22 -170 66 26 2 -2 40 5 blend rrcurveto 18 -184 56 -72 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto 1 vsindex 202 -204 36 22 2 blend rmoveto 68 12 1 blend 0 50 34 38 42 18 4 12 14 4 blend rrcurveto -20 18 -74 68 2 blend rlineto -34 -42 -50 -24 -50 8 18 28 6 16 5 blend 0 rrcurveto -84 54 1 blend 0 -36 60 10 -46 2 blend 0 64 -28 1 blend rrcurveto 0 130 168 58 -22 170 -66 -26 -2 2 -40 5 blend rrcurveto -28 -122 1 blend 0 rlineto 20 -157 -170 -65 -10 47 24 33 4 blend 0 -138 18 1 blend rrcurveto 0 -82 54 -68 96 -44 34 18 14 4 blend 0 rrcurveto 10 616 4 -130 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 26 32 1 blend rrcurveto 0 24 -18 14 -18 34 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -24 -34 1 blend rrcurveto 0 -26 18 -14 18 -32 24 -32 40 4 blend 0 rrcurveto 1 vsindex 90 494 24 -170 2 blend rmoveto 26 66 1 blend 0 rlineto 6 140 28 72 2 blend rlineto 0 60 6 88 2 blend rlineto -38 -134 1 blend 0 rlineto 0 -60 6 -88 2 blend rlineto 6 -140 28 -72 2 blend rlineto 128 132 1 blend 0 rmoveto 26 66 1 blend 0 rlineto 6 140 28 72 2 blend rlineto 0 60 6 88 2 blend rlineto -38 -134 1 blend 0 rlineto 0 -60 6 -88 2 blend rlineto 6 -140 28 -72 2 blend rlineto 1 vsindex 90 494 24 -170 2 blend rmoveto 26 66 1 blend 0 rlineto 6 140 28 72 2 blend rlineto 0 60 6 88 2 blend rlineto -38 -134 1 blend 0 rlineto 0 -60 6 -88 2 blend rlineto 6 -140 28 -72 2 blend rlineto 1 vsindex 96 -38 1 blend 0 rmoveto 30 142 1 blend 0 rlineto 0 332 -54 1 blend rlineto 38 94 52 34 44 -14 -32 -8 -12 -8 5 blend 0 rrcurveto 18 4 1 blend 0 10 2 1 blend -2 12 6 1 blend -4 rrcurveto 10 26 22 120 2 blend rlineto -16 8 -14 2 -16 2 -2 -3 2 -15 5 blend 0 rrcurveto -58 9 1 blend 0 -46 -44 -32 -58 -10 14 -5 -10 4 blend rrcurveto -2 -2 1 blend 0 rlineto -4 90 -8 -4 2 blend rlineto -26 -114 1 blend 0 rlineto 0 -478 -22 1 blend rlineto 1 vsindex 196 326 42 -18 2 blend rmoveto 98 14 1 blend 0 82 76 8 10 2 blend 0 116 2 1 blend rrcurveto 0 116 -82 78 -98 2 -8 8 -14 4 blend 0 rrcurveto -98 -14 1 blend 0 -82 -78 -8 -8 2 blend 0 -116 -2 1 blend rrcurveto 0 -116 82 -76 98 -2 8 -10 14 4 blend 0 rrcurveto 0 26 28 1 blend rmoveto -84 0 -68 70 10 -12 2 blend 0 96 -4 1 blend rrcurveto 0 96 68 72 -4 -10 -14 3 blend 84 0 rrcurveto 84 0 68 -72 -10 14 2 blend 0 -96 4 1 blend rrcurveto 0 -96 -68 -70 4 10 12 3 blend -84 0 rrcurveto -66 66 -18 -12 2 blend rmoveto 28 36 1 blend 0 rlineto 0 78 -22 1 blend rlineto 50 -26 1 blend 0 rlineto 40 -78 -12 22 2 blend rlineto 34 32 1 blend 0 rlineto -50 88 10 -14 2 blend rlineto 22 6 18 24 2 6 -8 -4 4 blend 0 26 -4 1 blend rrcurveto 0 50 -38 14 -38 -6 4 8 -10 4 blend 0 rrcurveto -66 -28 1 blend 0 rlineto 0 -208 14 1 blend rlineto 28 104 36 -5 2 blend rmoveto 0 78 -30 1 blend rlineto 34 -16 1 blend 0 rlineto 38 -22 1 blend 0 12 -16 -2 6 2 blend 0 -24 11 1 blend rrcurveto 0 -28 -22 -10 -32 16 14 -3 14 4 blend 0 rrcurveto -30 12 1 blend 0 rlineto 1 vsindex 208 4 1 blend -12 rmoveto 100 40 1 blend 0 56 62 18 10 2 blend 0 70 24 1 blend rrcurveto 0 94 -84 23 -14 28 25 3 blend -76 29 -5 1 blend rrcurveto -58 22 -54 22 -6 -2 30 -12 4 blend 0 58 -36 1 blend rrcurveto 0 47 36 47 80 -29 -22 -37 -50 4 blend 0 rrcurveto 50 -18 1 blend 0 34 -17 32 -23 3 8 5 -4 4 blend rrcurveto 18 20 54 76 2 blend rlineto -34 28 -46 20 -52 -10 10 -18 8 -24 5 blend 0 rrcurveto -98 -20 1 blend 0 -52 -58 -28 -6 2 blend 0 -66 -32 1 blend rrcurveto 0 -82 78 -28 74 6 -20 -20 -4 4 blend -26 rrcurveto 56 -3 1 blend -20 64 -28 -25 18 2 blend 0 -64 38 1 blend rrcurveto 0 -54 -42 -48 -80 34 28 38 44 4 blend 0 rrcurveto -76 42 1 blend 0 -42 24 -40 34 -4 -14 -6 2 4 blend rrcurveto -18 -20 -54 -76 2 blend rlineto 40 -40 58 12 -10 20 3 blend -26 76 -12 1 blend 0 rrcurveto 1 vsindex 232 -48 10 -44 2 blend rmoveto 70 67 1 blend 0 66 50 1 22 2 blend 0 70 24 1 blend rrcurveto 0 168 -286 -40 6 18 30 3 blend 0 158 -64 1 blend rrcurveto 0 56 36 28 50 28 -27 -17 -5 -9 -16 5 blend rrcurveto -12 24 -74 46 2 blend rlineto -56 -28 -48 -38 -16 4 2 -26 4 blend 0 -72 14 1 blend rrcurveto 0 -182 286 40 -8 -28 -40 3 blend 0 -144 80 1 blend rrcurveto 0 -48 -42 -42 -64 28 28 30 28 4 blend 0 rrcurveto -64 30 1 blend 0 -36 22 -34 32 -2 -6 2 2 4 blend rrcurveto -22 -22 -76 -64 2 blend rlineto 38 -34 50 -26 68 8 -28 32 -2 6 5 blend 0 rrcurveto 76 192 82 36 2 blend rmoveto 62 30 50 31 8 4 -14 19 4 blend 0 79 -15 1 blend rrcurveto 0 186 -282 -39 -6 14 55 3 blend 0 139 -83 1 blend rrcurveto 0 40 28 42 72 -18 -13 -34 -43 4 blend 0 rrcurveto 52 -21 1 blend 0 32 -20 32 -26 8 -1 -1 -1 4 blend rrcurveto 18 22 60 84 2 blend rlineto -36 30 -46 22 -52 -6 3 -20 13 -30 5 blend 0 rrcurveto -90 -27 1 blend 0 -40 -60 -31 -4 2 blend 0 -52 -46 1 blend rrcurveto 0 -162 282 38 -14 -4 -24 3 blend 0 -162 64 1 blend rrcurveto 0 -63 -36 -23 -60 -26 32 18 2 18 12 5 blend rrcurveto 14 -26 84 -42 2 blend rlineto 1 vsindex 104 378 56 -80 2 blend rmoveto 18 40 1 blend 0 18 14 24 32 2 blend 0 24 34 1 blend rrcurveto 0 26 -18 14 -18 32 -24 32 -40 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -14 -24 -32 2 blend 0 -26 -32 1 blend rrcurveto 0 -24 18 -14 18 -34 24 -32 40 4 blend 0 rrcurveto -44 -528 -36 26 2 blend rmoveto 52 32 40 54 78 4 28 36 4 blend 0 68 50 1 blend rrcurveto 0 38 -18 24 -26 60 -22 34 -48 4 blend 0 rrcurveto -18 -40 1 blend 0 -18 -12 -28 -26 2 blend 0 -24 -32 1 blend rrcurveto 0 -24 16 -12 20 -36 32 -22 32 4 blend 0 rrcurveto 12 10 1 blend 0 12 2 8 14 8 5 8 -2 4 blend rrcurveto -34 42 -17 49 2 blend rlineto 14 -54 -14 -54 2 blend rlineto 0 -58 -30 -42 -42 -24 1 8 -11 -6 -39 -2 6 blend rrcurveto 12 -24 22 -66 2 blend rlineto 1 vsindex 188 -46 1 blend 0 rmoveto 34 138 1 blend 0 rlineto 10 250 42 166 156 206 2 -3 -20 -59 -6 -32 6 blend rrcurveto 0 18 88 1 blend rlineto -386 -68 1 blend 0 rlineto 0 -28 -116 1 blend rlineto 346 -74 1 blend 0 rlineto -134 -182 -58 -166 -10 -264 12 16 18 42 -2 64 6 blend rrcurveto 1 vsindex 258 28 1 blend -12 rmoveto 92 28 1 blend 0 78 84 22 -4 2 blend 0 114 22 1 blend rrcurveto 0 128 -64 70 -112 8 -20 -10 4 4 blend 0 rrcurveto -64 27 1 blend 0 -60 -38 -46 -58 1 12 16 12 4 blend rrcurveto 0 -40 8 -68 2 blend rlineto 56 78 64 30 48 -33 -34 -33 -14 -18 5 blend 0 rrcurveto 104 -68 1 blend 0 42 -74 -8 59 2 blend 0 -96 35 1 blend rrcurveto 0 -94 -58 -76 -78 27 26 55 42 4 blend 0 rrcurveto -122 83 1 blend 0 -52 116 3 -84 2 blend 0 156 2 1 blend rrcurveto 0 250 92 86 106 -98 -41 -36 -39 4 blend 0 rrcurveto 42 -6 1 blend 0 39 -18 29 -36 1 -4 -9 14 4 blend rrcurveto 20 22 70 80 2 blend rlineto -32 36 -40 24 -56 -10 6 -26 14 -34 5 blend 0 rrcurveto -122 -14 1 blend 0 -110 -92 -16 -18 2 blend 0 -272 42 1 blend rrcurveto 0 -190 76 -110 128 -40 50 22 -6 4 blend 0 rrcurveto 1 vsindex 8 6 1 blend -160 rmoveto 30 80 1 blend 0 rlineto 320 -144 1 blend 870 rlineto -30 -80 1 blend 0 rlineto -320 144 1 blend -870 rlineto 1 vsindex 58 -12 1 blend 0 rmoveto 360 108 1 blend 0 rlineto 0 28 116 1 blend rlineto -300 50 1 blend 0 rlineto 0 4 rlineto 48 46 28 52 -20 -12 -18 -25 4 blend 0 88 -49 1 blend rrcurveto 0 106 -50 74 -44 22 -17 3 blend 0 90 -35 1 blend rrcurveto 0 74 44 62 86 -16 -12 -34 -38 4 blend 0 rrcurveto 57 -29 1 blend 0 37 -22 28 -38 -15 12 -6 12 4 blend rrcurveto 20 16 68 70 2 blend rlineto -28 42 -46 30 -66 -12 10 -12 6 -18 5 blend 0 rrcurveto -102 -24 1 blend 0 -62 -64 -34 -18 2 blend 0 -102 -30 1 blend rrcurveto 0 -92 52 -82 37 -10 14 3 blend 0 -94 35 1 blend rrcurveto 0 -78 -30 -78 -76 -44 8 -20 28 20 20 5 blend rrcurveto 0 -18 -88 1 blend rlineto -4 296 10 -30 2 blend rmoveto 292 80 1 blend 0 rlineto 0 28 76 1 blend rlineto -226 -78 1 blend 0 rlineto -66 -2 -2 -4 2 blend rlineto 0 -26 -72 1 blend rlineto 218 28 46 1 blend -12 rmoveto 22 17 30 1 blend 0 28 8 26 14 6 12 1 2 1 0 -5 -4 4 blend rrcurveto -12 22 -8 -14 63 98 2 blend rlineto -24 -12 -20 -4 -18 10 12 6 8 0 4 -1 2 1 2 5 blend 0 rrcurveto -70 23 38 1 blend 0 -14 44 -8 -14 -16 -26 2 blend 0 62 -4 -7 1 blend rrcurveto 0 328 -94 -157 1 blend rlineto 142 -17 -28 1 blend 0 rlineto 0 28 63 106 1 blend rlineto -142 17 28 1 blend 0 rlineto 0 160 -26 -10 1 blend rlineto -26 -70 -116 1 blend 0 rlineto -4 -160 -10 -16 26 10 2 blend rlineto -76 -4 -1 -2 1 blend rlineto 0 -24 -62 -104 1 blend rlineto 76 -6 -10 1 blend 0 rlineto 0 -324 90 150 1 blend rlineto 0 -82 24 -56 88 -24 -40 18 30 -16 -26 26 42 4 blend 0 rrcurveto 1 vsindex 96 -222 -38 46 2 blend rmoveto 30 142 1 blend 0 rlineto 0 180 -42 1 blend rlineto 0 90 -4 -20 2 blend rlineto 52 -38 50 -22 46 -22 10 -18 6 2 5 blend 0 rrcurveto 114 -8 1 blend 0 98 96 4 2 2 blend 0 162 10 1 blend rrcurveto 0 148 -62 96 -130 6 -18 4 6 4 blend 0 rrcurveto -60 18 1 blend 0 -58 -36 -50 -38 17 20 19 10 4 blend rrcurveto 0 94 4 -28 2 blend rlineto 0 212 -50 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -944 72 1 blend rlineto 180 238 56 66 2 blend rmoveto -38 16 1 blend 0 -54 18 -58 48 32 -12 38 -30 4 blend rrcurveto 0 296 -112 1 blend rlineto 62 54 54 30 50 -40 -28 -34 -20 -24 5 blend 0 rrcurveto 118 -72 1 blend 0 44 -94 -20 60 2 blend 0 -122 40 1 blend rrcurveto 0 -134 -74 -96 -104 38 40 64 64 4 blend 0 rrcurveto 1 vsindex 230 16 1 blend -12 rmoveto 108 24 1 blend 0 82 70 32 -4 2 blend 0 110 10 1 blend rrcurveto 0 92 -68 60 -80 16 -12 18 -10 8 6 5 blend rrcurveto 0 4 rlineto 70 23 54 51 -2 7 -20 -5 4 blend 0 86 -25 1 blend rrcurveto 0 96 -74 56 -94 19 -16 8 -46 4 blend 0 rrcurveto -74 -4 1 blend 0 -54 -36 -42 -42 -12 6 -20 -10 4 blend rrcurveto 20 -22 66 -82 2 blend rlineto 36 40 54 32 60 4 -6 -24 -14 -18 5 blend 0 rrcurveto 82 -39 1 blend 0 54 -50 -31 30 2 blend 0 -76 38 1 blend rrcurveto 0 -80 -54 -66 -152 36 22 38 46 4 blend 0 rrcurveto 0 -30 -90 1 blend rlineto 162 -29 1 blend 0 68 -64 -43 36 2 blend 0 -92 44 1 blend rrcurveto 0 -90 -66 -60 -90 50 30 40 34 4 blend 0 rrcurveto -92 47 1 blend 0 -52 42 -38 42 6 -18 -1 -6 4 blend rrcurveto -20 -22 -58 -86 2 blend rlineto 40 -42 58 -48 102 8 -14 17 14 1 5 blend 0 rrcurveto 1 vsindex 176 258 8 -10 2 blend rmoveto 72 10 1 blend 0 56 42 18 8 2 blend 0 72 rrcurveto 0 56 -46 34 -48 8 -12 18 -2 10 10 5 blend rrcurveto 44 16 34 34 -10 6 -16 -8 4 blend 0 50 -10 1 blend rrcurveto 0 64 -52 38 -64 4 -14 4 -10 4 blend 0 rrcurveto -48 -16 1 blend 0 -40 -28 -26 -34 8 -20 -14 3 blend rrcurveto 20 -18 50 -44 2 blend rlineto 26 32 34 22 32 -10 -12 -16 -6 -8 5 blend 0 rrcurveto 54 -30 1 blend 0 34 -32 -18 20 2 blend 0 -46 24 1 blend rrcurveto 0 -46 -46 -42 -82 16 19 32 41 4 blend 0 rrcurveto 0 -24 -46 1 blend rlineto 88 -31 1 blend 0 56 -30 -31 16 2 blend 0 -54 24 1 blend rrcurveto 0 -56 -44 -32 -52 32 23 18 25 4 blend 0 rrcurveto -46 16 1 blend 0 -42 28 20 -16 2 blend -24 38 -6 1 blend rrcurveto -24 -18 -50 -40 2 blend rlineto 26 -38 48 -36 60 10 -16 10 10 10 5 blend 0 rrcurveto 50 -270 -30 10 2 blend rmoveto 32 64 1 blend 0 rlineto 370 684 -22 -10 2 blend rlineto -32 -64 1 blend 0 rlineto -370 -684 22 10 2 blend rlineto 416 38 1 blend 12 rmoveto 28 82 1 blend 0 rlineto 0 390 rlineto -22 -136 1 blend 0 rlineto -182 -256 50 8 2 blend rlineto 0 -16 -46 1 blend rlineto 262 86 1 blend 0 rlineto 0 26 54 1 blend rlineto -222 -14 1 blend 0 rlineto 78 112 -44 -38 2 blend rlineto 58 84 -22 -8 2 blend rlineto 4 0 rlineto -4 -102 -2 -18 2 blend rlineto 0 -238 48 1 blend rlineto 1 vsindex 42 -6 1 blend 0 rmoveto 384 76 1 blend 0 rlineto 0 28 116 1 blend rlineto -232 110 1 blend 0 rlineto -36 8 1 blend 0 -36 -2 -36 -2 -10 -2 4 -2 4 blend rrcurveto 190 198 118 124 -94 -106 -16 -24 4 blend 0 130 -18 1 blend rrcurveto 0 106 -64 70 -112 18 -26 12 -16 4 blend 0 rrcurveto -76 -16 1 blend 0 -56 -42 -46 -52 -4 8 -18 -20 4 blend rrcurveto 22 -20 66 -68 2 blend rlineto 40 50 54 36 60 -10 -20 -22 -6 -18 5 blend 0 rrcurveto 102 -56 1 blend 0 44 -66 -12 39 2 blend 0 -82 25 1 blend rrcurveto 0 -114 -104 -122 -216 -222 30 -14 10 68 96 5 blend rrcurveto 0 -18 -88 1 blend rlineto 232 -13 -22 1 blend -12 rmoveto 66 1 2 1 blend 0 50 38 48 56 -2 -4 -5 -8 -5 -8 -5 -8 4 blend rrcurveto 2 1 2 1 blend 0 rlineto 4 -82 5 8 10 16 2 blend rlineto 26 68 114 1 blend 0 rlineto 0 478 13 22 1 blend rlineto -30 -85 -142 1 blend 0 rlineto 0 -358 22 36 1 blend rlineto -60 -72 -44 -32 -60 23 38 24 40 15 26 12 20 17 28 5 blend 0 rrcurveto -82 29 48 1 blend 0 -34 52 11 18 -22 -36 2 blend 0 106 -25 -42 1 blend rrcurveto 0 304 -11 -18 1 blend rlineto -30 -85 -142 1 blend 0 rlineto 0 -308 rlineto 0 -124 46 -58 98 -13 -22 7 12 2 blend 0 rrcurveto 1 vsindex 232 -22 1 blend -12 rmoveto 66 2 1 blend 0 50 38 48 56 -4 -8 -8 -8 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -82 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -358 36 1 blend rlineto -60 -72 -44 -32 -60 38 40 26 20 28 5 blend 0 rrcurveto -82 48 1 blend 0 -34 52 18 -36 2 blend 0 106 -42 1 blend rrcurveto 0 304 -18 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -308 rlineto 0 -124 46 -58 98 -22 12 2 blend 0 rrcurveto -16 586 56 -2 2 blend rmoveto 148 150 82 8 2 blend rlineto -24 20 -72 94 2 blend rlineto -142 -154 -76 -34 2 blend rlineto 18 -16 66 -68 2 blend rlineto 1 vsindex 232 -22 1 blend -12 rmoveto 66 2 1 blend 0 50 38 48 56 -4 -8 -8 -8 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -82 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -358 36 1 blend rlineto -60 -72 -44 -32 -60 38 40 26 20 28 5 blend 0 rrcurveto -82 48 1 blend 0 -34 52 18 -36 2 blend 0 106 -42 1 blend rrcurveto 0 304 -18 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -308 rlineto 0 -124 46 -58 98 -22 12 2 blend 0 rrcurveto -86 586 36 -16 2 blend rmoveto 112 130 16 -46 2 blend rlineto 4 0 rlineto 112 -130 16 46 2 blend rlineto 18 16 46 44 2 blend rlineto -118 146 12 -18 2 blend rlineto -28 -148 1 blend 0 rlineto -118 -146 12 18 2 blend rlineto 18 -16 46 -44 2 blend rlineto 1 vsindex 232 -22 1 blend -12 rmoveto 66 2 1 blend 0 50 38 48 56 -4 -8 -8 -8 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -82 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -358 36 1 blend rlineto -60 -72 -44 -32 -60 38 40 26 20 28 5 blend 0 rrcurveto -82 48 1 blend 0 -34 52 18 -36 2 blend 0 106 -42 1 blend rrcurveto 0 304 -18 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -308 rlineto 0 -124 46 -58 98 -22 12 2 blend 0 rrcurveto -58 614 24 -40 2 blend rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 172 56 1 blend 0 rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 1 vsindex 232 -22 1 blend -12 rmoveto 66 2 1 blend 0 50 38 48 56 -4 -8 -8 -8 4 blend rrcurveto 2 2 1 blend 0 rlineto 4 -82 8 16 2 blend rlineto 26 114 1 blend 0 rlineto 0 478 22 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -358 36 1 blend rlineto -60 -72 -44 -32 -60 38 40 26 20 28 5 blend 0 rrcurveto -82 48 1 blend 0 -34 52 18 -36 2 blend 0 106 -42 1 blend rrcurveto 0 304 -18 1 blend rlineto -30 -142 1 blend 0 rlineto 0 -308 rlineto 0 -124 46 -58 98 -22 12 2 blend 0 rrcurveto 72 586 48 -2 2 blend rmoveto 18 16 66 68 2 blend rlineto -142 154 -76 34 2 blend rlineto -24 -20 -72 -94 2 blend rlineto 148 -150 82 -8 2 blend rlineto 1 vsindex 12 -114 -32 1 blend rmoveto 476 0 rlineto 0 32 62 1 blend rlineto -476 0 rlineto 0 -32 -62 1 blend rlineto 1 vsindex 58 410 -16 -42 2 blend rmoveto 250 48 1 blend 0 rlineto 0 26 78 1 blend rlineto -202 102 1 blend 0 rlineto 106 104 72 66 -62 -52 -28 -13 4 blend 0 84 -25 1 blend rrcurveto 0 82 -48 40 -70 2 -12 10 -20 4 blend 0 rrcurveto -48 -14 1 blend 0 -46 -34 -22 -38 -4 8 -22 -18 4 blend rrcurveto 20 -18 50 -46 2 blend rlineto 22 34 34 30 38 -6 -14 -14 -14 4 blend 0 rrcurveto 54 -22 1 blend 0 36 -38 -18 18 2 blend 0 -60 26 1 blend rrcurveto 0 -68 -58 -60 -138 -130 24 -16 -4 46 58 5 blend rrcurveto 0 -20 -46 1 blend rlineto 1 vsindex 176 398 12 -42 2 blend rmoveto 72 10 1 blend 0 56 42 18 8 2 blend 0 72 rrcurveto 0 56 -46 34 -48 8 -12 18 -2 10 10 5 blend rrcurveto 44 16 34 34 -10 6 -16 -8 4 blend 0 50 -10 1 blend rrcurveto 0 64 -52 38 -64 4 -14 4 -10 4 blend 0 rrcurveto -48 -16 1 blend 0 -40 -28 -26 -34 8 -20 -14 3 blend rrcurveto 20 -18 50 -44 2 blend rlineto 26 32 34 22 32 -10 -12 -16 -6 -8 5 blend 0 rrcurveto 54 -30 1 blend 0 34 -32 -18 20 2 blend 0 -46 24 1 blend rrcurveto 0 -46 -46 -42 -82 16 19 32 41 4 blend 0 rrcurveto 0 -24 -46 1 blend rlineto 88 -31 1 blend 0 56 -30 -31 16 2 blend 0 -54 24 1 blend rrcurveto 0 -56 -44 -32 -52 32 23 18 25 4 blend 0 rrcurveto -46 16 1 blend 0 -42 28 20 -16 2 blend -24 38 -6 1 blend rrcurveto -24 -18 -50 -40 2 blend rlineto 26 -38 48 -36 60 10 -16 10 10 10 5 blend 0 rrcurveto 1 vsindex 178 410 -16 -42 2 blend rmoveto 28 98 1 blend 0 rlineto 0 390 rlineto -26 -72 1 blend 0 rlineto -22 -18 -26 -14 -6 2 3 blend -12 -36 -22 1 blend -8 rrcurveto 0 -22 -54 1 blend rlineto 82 8 1 blend 0 rlineto 0 -330 60 1 blend rlineto 1 vsindex 194 -18 1 blend 0 rmoveto 36 162 1 blend 0 rlineto 180 478 -22 22 2 blend rlineto -32 -132 1 blend 0 rlineto -114 -310 60 92 2 blend rlineto -16 -46 -18 -48 -16 -42 4 -4 6 -4 4 -12 6 blend rrcurveto -4 0 rlineto -16 42 -18 48 -16 46 4 12 6 4 4 4 6 blend rrcurveto -114 310 60 -92 2 blend rlineto -34 -138 1 blend 0 rlineto 182 -478 -18 -22 2 blend rlineto 168 -14 -24 1 blend 0 rmoveto 38 104 158 1 blend 0 rlineto 88 310 -38 -54 -82 -136 2 blend rlineto 16 46 12 46 12 46 -6 -8 -2 0 -4 -6 -6 0 -5 -4 18 9 6 blend rrcurveto 4 0 rlineto 14 -46 10 -44 14 -46 -5 -6 -18 -9 -2 -2 4 -2 -4 -6 2 0 6 blend rrcurveto 90 -312 -40 -54 84 138 2 blend rlineto 42 105 158 1 blend 0 rlineto 140 478 -15 -26 13 22 2 blend rlineto -32 -78 -126 1 blend 0 rlineto -90 -322 32 52 67 112 2 blend rlineto -12 -44 -12 -40 -12 -42 2 4 0 -6 6 8 -4 -10 3 4 -16 -10 6 blend rrcurveto -4 0 rlineto -12 42 -12 40 -12 44 3 2 16 10 3 4 4 10 1 0 0 6 6 blend rrcurveto -92 322 30 44 -67 -112 2 blend rlineto -42 -78 -104 1 blend 0 rlineto -92 -322 32 46 67 112 2 blend rlineto -12 -44 -12 -40 -12 -42 2 0 0 -4 4 4 -4 -12 3 4 -16 -10 6 blend rrcurveto -4 0 rlineto -10 42 -12 40 -12 44 3 2 16 10 4 8 4 10 2 4 0 6 6 blend rrcurveto -92 322 34 54 -67 -112 2 blend rlineto -34 -84 -136 1 blend 0 rlineto 144 -478 -14 -24 -13 -22 2 blend rlineto 14 0 rmoveto 1 vsindex 32 146 1 blend 0 rlineto 88 138 -60 -68 2 blend rlineto 20 30 18 30 20 -9 -1 -6 -1 -9 5 blend 28 rrcurveto 4 0 rlineto 20 -5 1 blend -28 20 -6 1 blend -30 18 -30 -3 2 2 blend rrcurveto 90 -138 -50 68 2 blend rlineto 34 150 1 blend 0 rlineto -164 248 14 -8 2 blend rlineto 150 230 -8 30 2 blend rlineto -32 -146 1 blend 0 rlineto -80 -128 56 58 2 blend rlineto -18 -26 -16 -26 -18 -26 9 -2 4 -4 9 -2 6 blend rrcurveto -4 0 rlineto -18 26 -18 26 -16 26 5 2 4 4 3 2 6 blend rrcurveto -82 128 46 -58 2 blend rlineto -34 -150 1 blend 0 rlineto 150 -228 -8 -12 2 blend rlineto -164 -250 14 -10 2 blend rlineto 1 vsindex 66 -222 66 34 2 blend rmoveto 82 42 1 blend 0 48 80 24 74 6 -19 28 61 4 blend rrcurveto 192 546 -24 -54 2 blend rlineto -32 -132 1 blend 0 rlineto -108 -314 58 122 2 blend rlineto -14 -40 -16 -52 -16 -42 2 -8 6 6 6 -6 6 blend rrcurveto -4 0 rlineto -18 42 -20 52 -16 40 6 8 10 -6 2 6 6 blend rrcurveto -122 314 62 -122 2 blend rlineto -34 -138 1 blend 0 rlineto 198 -490 -8 8 2 blend rlineto -14 -44 8 22 2 blend rlineto -26 -78 -42 -58 -60 16 48 20 38 14 5 blend 0 rrcurveto -12 2 1 blend 0 -16 4 -10 10 -4 -6 3 blend 4 rrcurveto -10 -28 -20 -98 2 blend rlineto 12 -6 18 10 -2 2 3 blend -4 16 18 1 blend 0 rrcurveto 1 vsindex 66 -222 66 34 2 blend rmoveto 82 42 1 blend 0 48 80 24 74 6 -19 28 61 4 blend rrcurveto 192 546 -24 -54 2 blend rlineto -32 -132 1 blend 0 rlineto -108 -314 58 122 2 blend rlineto -14 -40 -16 -52 -16 -42 2 -8 6 6 6 -6 6 blend rrcurveto -4 0 rlineto -18 42 -20 52 -16 40 6 8 10 -6 2 6 6 blend rrcurveto -122 314 62 -122 2 blend rlineto -34 -138 1 blend 0 rlineto 198 -490 -8 8 2 blend rlineto -14 -44 8 22 2 blend rlineto -26 -78 -42 -58 -60 16 48 20 38 14 5 blend 0 rrcurveto -12 2 1 blend 0 -16 4 -10 10 -4 -6 3 blend 4 rrcurveto -10 -28 -20 -98 2 blend rlineto 12 -6 18 10 -2 2 3 blend -4 16 18 1 blend 0 rrcurveto 114 796 -10 -36 2 blend rmoveto 148 150 82 8 2 blend rlineto -24 20 -72 94 2 blend rlineto -142 -154 -76 -34 2 blend rlineto 18 -16 66 -68 2 blend rlineto 1 vsindex 66 -222 66 34 2 blend rmoveto 82 42 1 blend 0 48 80 24 74 6 -19 28 61 4 blend rrcurveto 192 546 -24 -54 2 blend rlineto -32 -132 1 blend 0 rlineto -108 -314 58 122 2 blend rlineto -14 -40 -16 -52 -16 -42 2 -8 6 6 6 -6 6 blend rrcurveto -4 0 rlineto -18 42 -20 52 -16 40 6 8 10 -6 2 6 6 blend rrcurveto -122 314 62 -122 2 blend rlineto -34 -138 1 blend 0 rlineto 198 -490 -8 8 2 blend rlineto -14 -44 8 22 2 blend rlineto -26 -78 -42 -58 -60 16 48 20 38 14 5 blend 0 rrcurveto -12 2 1 blend 0 -16 4 -10 10 -4 -6 3 blend 4 rrcurveto -10 -28 -20 -98 2 blend rlineto 12 -6 18 10 -2 2 3 blend -4 16 18 1 blend 0 rrcurveto 72 824 -42 -74 2 blend rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 172 56 1 blend 0 rmoveto 18 29 1 blend 0 14 14 19 21 2 blend 0 18 27 1 blend rrcurveto 0 18 -14 14 -18 27 -19 21 -29 4 blend 0 rrcurveto -18 -29 1 blend 0 -14 -14 -19 -21 2 blend 0 -18 -27 1 blend rrcurveto 0 -18 14 -14 18 -27 19 -21 29 4 blend 0 rrcurveto 220 -22 -36 1 blend 0 rmoveto 30 86 142 1 blend 0 rlineto 0 162 -18 -22 1 blend rlineto 170 -12 -20 1 blend 0 rlineto 0 28 40 56 1 blend rlineto -170 12 20 1 blend 0 rlineto 0 80 -22 -36 1 blend rlineto 170 -12 -20 1 blend 0 rlineto 0 28 40 56 1 blend rlineto -158 30 44 1 blend 0 rlineto 178 342 -27 -38 -44 -60 2 blend rlineto -32 -84 -140 1 blend 0 rlineto -100 -202 36 60 51 84 2 blend rlineto -22 -45 -22 -43 -26 -50 4 7 1 2 4 6 -1 -1 7 11 5 7 6 blend rrcurveto -4 0 rlineto -24 50 -22 4 8 -5 -8 5 7 3 blend 44 -22 4 7 1 blend 44 rrcurveto -100 202 36 60 -51 -84 2 blend rlineto -34 -85 -142 1 blend 0 rlineto 176 -342 -26 -36 44 60 2 blend rlineto -156 28 42 1 blend 0 rlineto 0 -28 -40 -56 1 blend rlineto 168 -10 -18 1 blend 0 rlineto 0 -80 22 36 1 blend rlineto -168 10 18 1 blend 0 rlineto 0 -28 -40 -56 1 blend rlineto 168 -10 -18 1 blend 0 rlineto 0 -162 18 22 1 blend rlineto 1 vsindex 26 14 1 blend 0 rmoveto 344 66 1 blend 0 rlineto 0 28 106 1 blend rlineto -304 108 1 blend 0 rlineto 294 434 -104 -160 2 blend rlineto 0 16 76 1 blend rlineto -302 -80 1 blend 0 rlineto 0 -28 -106 1 blend rlineto 262 -94 1 blend 0 rlineto -294 -434 104 160 2 blend rlineto 0 -16 -76 1 blend rlineto 1 vsindex 236 34 1 blend -12 rmoveto 120 20 1 blend 0 66 122 30 -7 2 blend 0 212 5 1 blend rrcurveto 0 212 -66 118 -120 4 -30 -8 -20 4 blend 0 rrcurveto -120 -20 1 blend 0 -66 -118 -30 9 2 blend 0 -212 -5 1 blend rrcurveto 0 -212 66 -122 120 -5 30 7 20 4 blend 0 rrcurveto 0 28 104 1 blend rmoveto -94 54 1 blend 0 -60 108 26 -76 2 blend 0 198 -30 1 blend rrcurveto 0 198 60 104 94 -30 -26 -78 -54 4 blend 0 rrcurveto 94 -54 1 blend 0 60 -104 -26 78 2 blend 0 -198 30 1 blend rrcurveto 0 -198 -60 -108 -94 30 26 76 54 4 blend 0 rrcurveto wght 0x0 200.0 200.0 900.0 287 cffsubr-0.2.9/tox.ini000066400000000000000000000010461413553707200144770ustar00rootroot00000000000000[tox] envlist = py3{6,7,8}-cov, htmlcov skip_missing_interpreters=true [testenv] deps = pytest cov: coverage commands = cov: coverage run --parallel-mode -m pytest {posargs} !cov: pytest {posargs} [testenv:htmlcov] basepython = python3 deps = coverage skip_install = true commands = coverage combine coverage report coverage html [pytest] testpaths = tests cffsubr addopts = -r a --doctest-modules --doctest-ignore-import-errors --pyargs doctest_optionflags = ALLOW_UNICODE ELLIPSIS