C_O_L_R_test: add tests for computeClipBoxes

using a subset from test_glyphs font from the googlefonts/color-fonts repository
This commit is contained in:
Cosimo Lupo 2023-03-10 15:23:30 +00:00
parent c15e77cbc9
commit c5e464ad8f
No known key found for this signature in database
GPG Key ID: DF65A8A5A119C9A8
6 changed files with 5345 additions and 0 deletions

View File

@ -1,11 +1,16 @@
from fontTools import ttLib from fontTools import ttLib
from fontTools.misc.testTools import getXML, parseXML from fontTools.misc.testTools import getXML, parseXML
from fontTools.ttLib import TTFont
from fontTools.ttLib.tables.C_O_L_R_ import table_C_O_L_R_ from fontTools.ttLib.tables.C_O_L_R_ import table_C_O_L_R_
from pathlib import Path
import binascii import binascii
import pytest import pytest
TEST_DATA_DIR = Path(__file__).parent / "data"
COLR_V0_SAMPLE = ( COLR_V0_SAMPLE = (
(b"\x00\x00", "Version (0)"), (b"\x00\x00", "Version (0)"),
(b"\x00\x01", "BaseGlyphRecordCount (1)"), (b"\x00\x01", "BaseGlyphRecordCount (1)"),
@ -611,6 +616,26 @@ class COLR_V1_Test(object):
colr.decompile(compiled, font) colr.decompile(compiled, font)
assert getXML(colr.toXML, font) == COLR_V1_XML assert getXML(colr.toXML, font) == COLR_V1_XML
@pytest.mark.parametrize("quantization", [1, 10, 100])
@pytest.mark.parametrize("flavor", ["glyf", "cff"])
def test_computeClipBoxes(self, flavor, quantization):
font = TTFont()
font.importXML(TEST_DATA_DIR / f"COLRv1-clip-boxes-{flavor}.ttx")
assert font["COLR"].table.ClipList is None
font["COLR"].table.computeClipBoxes(font.getGlyphSet(), quantization)
clipList = font["COLR"].table.ClipList
assert len(clipList.clips) > 0
expected = TTFont()
expected.importXML(
TEST_DATA_DIR / f"COLRv1-clip-boxes-q{quantization}-expected.ttx"
)
expectedClipList = expected["COLR"].table.ClipList
assert getXML(clipList.toXML) == getXML(expectedClipList.toXML)
class COLR_V1_Variable_Test(object): class COLR_V1_Variable_Test(object):
def test_round_trip_xml(self, font): def test_round_trip_xml(self, font):

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,919 @@
<?xml version="1.0" encoding="UTF-8"?>
<ttFont sfntVersion="\x00\x01\x00\x00" ttLibVersion="4.39">
<COLR>
<Version value="1"/>
<BaseGlyphList>
<!-- BaseGlyphCount=27 -->
<BaseGlyphPaintRecord index="0">
<BaseGlyph value="scale_0.5_1.5_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="18"><!-- PaintScaleAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="1">
<BaseGlyph value="scale_1.5_1.5_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="22"><!-- PaintScaleUniformAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="2">
<BaseGlyph value="scale_0.5_1.5_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="16"><!-- PaintScale -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="3">
<BaseGlyph value="scale_1.5_1.5_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="20"><!-- PaintScaleUniform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="4">
<BaseGlyph value="scale_0.5_1.5_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="18"><!-- PaintScaleAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="5">
<BaseGlyph value="scale_1.5_1.5_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="22"><!-- PaintScaleUniformAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="6">
<BaseGlyph value="rotate_10_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="24"><!-- PaintRotate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="10.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="7">
<BaseGlyph value="rotate_-10_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="-10.0"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="8">
<BaseGlyph value="rotate_25_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="25.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="9">
<BaseGlyph value="rotate_-15_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="-15.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="10">
<BaseGlyph value="skew_25_0_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="28"><!-- PaintSkew -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="25.0"/>
<ySkewAngle value="0.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="11">
<BaseGlyph value="skew_25_0_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="25.0"/>
<ySkewAngle value="0.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="12">
<BaseGlyph value="skew_0_15_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="28"><!-- PaintSkew -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="0.0"/>
<ySkewAngle value="15.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="13">
<BaseGlyph value="skew_0_15_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="0.0"/>
<ySkewAngle value="15.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="14">
<BaseGlyph value="skew_-10_20_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="-10.0"/>
<ySkewAngle value="20.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="15">
<BaseGlyph value="skew_-10_20_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="-10.0"/>
<ySkewAngle value="20.0"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="16">
<BaseGlyph value="transform_matrix_1_0_0_1_125_125"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.0"/>
<yx value="0.0"/>
<xy value="0.0"/>
<yy value="1.0"/>
<dx value="125.0"/>
<dy value="125.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="17">
<BaseGlyph value="transform_matrix_1.5_0_0_1.5_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.5"/>
<yx value="0.0"/>
<xy value="0.0"/>
<yy value="1.5"/>
<dx value="0.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="18">
<BaseGlyph value="transform_matrix_0.9659_0.2588_-0.2588_0.9659_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="0.9659"/>
<yx value="0.2588"/>
<xy value="-0.2588"/>
<yy value="0.9659"/>
<dx value="0.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="19">
<BaseGlyph value="transform_matrix_1.0_0.0_0.6_1.0_-300.0_0.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.0"/>
<yx value="0.0"/>
<xy value="0.6"/>
<yy value="1.0"/>
<dx value="-300.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="20">
<BaseGlyph value="translate_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="21">
<BaseGlyph value="translate_0_100"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="100"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="22">
<BaseGlyph value="translate_0_-100"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="-100"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="23">
<BaseGlyph value="translate_100_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="100"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="24">
<BaseGlyph value="translate_-100_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="-100"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="25">
<BaseGlyph value="translate_200_200"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="200"/>
<dy value="200"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="26">
<BaseGlyph value="translate_-200_-200"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="-200"/>
<dy value="-200"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
</BaseGlyphList>
<ClipList Format="1">
<Clip>
<Glyph value="rotate_-10_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="170"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="845"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="rotate_-15_center_500.0_500.0"/>
<Glyph value="rotate_25_center_500.0_500.0"/>
<Glyph value="translate_0_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="rotate_10_center_0_0"/>
<ClipBox Format="1">
<xMin value="155"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="830"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_0_0"/>
<ClipBox Format="1">
<xMin value="125"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="1125"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="-125"/>
<xMax value="875"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="125"/>
<xMax value="750"/>
<yMax value="875"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_0_0"/>
<Glyph value="transform_matrix_1.5_0_0_1.5_0_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="1125"/>
<yMax value="1125"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="-125"/>
<yMin value="-125"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="125"/>
<yMin value="125"/>
<xMax value="875"/>
<yMax value="875"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_-10_20_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="157"/>
<yMin value="58"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_-10_20_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="245"/>
<yMin value="240"/>
<xMax value="755"/>
<yMax value="760"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_0_15_center_0_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="891"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_0_15_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="243"/>
<xMax value="750"/>
<yMax value="757"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_25_0_center_0_0"/>
<ClipBox Format="1">
<xMin value="5"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_25_0_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="238"/>
<yMin value="250"/>
<xMax value="762"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="transform_matrix_0.9659_0.2588_-0.2588_0.9659_0_0"/>
<ClipBox Format="1">
<xMin value="105"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="861"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="transform_matrix_1.0_0.0_0.6_1.0_-300.0_0.0"/>
<ClipBox Format="1">
<xMin value="235"/>
<yMin value="250"/>
<xMax value="766"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="transform_matrix_1_0_0_1_125_125"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="875"/>
<yMax value="875"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_-100_0"/>
<ClipBox Format="1">
<xMin value="150"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_-200_-200"/>
<ClipBox Format="1">
<xMin value="50"/>
<yMin value="50"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_0_-100"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="150"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_0_100"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="850"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_100_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="850"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_200_200"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="950"/>
<yMax value="950"/>
</ClipBox>
</Clip>
</ClipList>
</COLR>
</ttFont>

View File

@ -0,0 +1,911 @@
<?xml version="1.0" encoding="UTF-8"?>
<ttFont sfntVersion="\x00\x01\x00\x00" ttLibVersion="4.39">
<COLR>
<Version value="1"/>
<BaseGlyphList>
<!-- BaseGlyphCount=27 -->
<BaseGlyphPaintRecord index="0">
<BaseGlyph value="scale_0.5_1.5_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="18"><!-- PaintScaleAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="1">
<BaseGlyph value="scale_1.5_1.5_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="22"><!-- PaintScaleUniformAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="2">
<BaseGlyph value="scale_0.5_1.5_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="16"><!-- PaintScale -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="3">
<BaseGlyph value="scale_1.5_1.5_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="20"><!-- PaintScaleUniform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="4">
<BaseGlyph value="scale_0.5_1.5_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="18"><!-- PaintScaleAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="5">
<BaseGlyph value="scale_1.5_1.5_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="22"><!-- PaintScaleUniformAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="6">
<BaseGlyph value="rotate_10_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="24"><!-- PaintRotate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="10.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="7">
<BaseGlyph value="rotate_-10_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="-10.0"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="8">
<BaseGlyph value="rotate_25_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="25.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="9">
<BaseGlyph value="rotate_-15_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="-15.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="10">
<BaseGlyph value="skew_25_0_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="28"><!-- PaintSkew -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="25.0"/>
<ySkewAngle value="0.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="11">
<BaseGlyph value="skew_25_0_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="25.0"/>
<ySkewAngle value="0.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="12">
<BaseGlyph value="skew_0_15_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="28"><!-- PaintSkew -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="0.0"/>
<ySkewAngle value="15.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="13">
<BaseGlyph value="skew_0_15_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="0.0"/>
<ySkewAngle value="15.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="14">
<BaseGlyph value="skew_-10_20_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="-10.0"/>
<ySkewAngle value="20.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="15">
<BaseGlyph value="skew_-10_20_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="-10.0"/>
<ySkewAngle value="20.0"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="16">
<BaseGlyph value="transform_matrix_1_0_0_1_125_125"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.0"/>
<yx value="0.0"/>
<xy value="0.0"/>
<yy value="1.0"/>
<dx value="125.0"/>
<dy value="125.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="17">
<BaseGlyph value="transform_matrix_1.5_0_0_1.5_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.5"/>
<yx value="0.0"/>
<xy value="0.0"/>
<yy value="1.5"/>
<dx value="0.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="18">
<BaseGlyph value="transform_matrix_0.9659_0.2588_-0.2588_0.9659_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="0.9659"/>
<yx value="0.2588"/>
<xy value="-0.2588"/>
<yy value="0.9659"/>
<dx value="0.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="19">
<BaseGlyph value="transform_matrix_1.0_0.0_0.6_1.0_-300.0_0.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.0"/>
<yx value="0.0"/>
<xy value="0.6"/>
<yy value="1.0"/>
<dx value="-300.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="20">
<BaseGlyph value="translate_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="21">
<BaseGlyph value="translate_0_100"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="100"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="22">
<BaseGlyph value="translate_0_-100"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="-100"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="23">
<BaseGlyph value="translate_100_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="100"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="24">
<BaseGlyph value="translate_-100_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="-100"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="25">
<BaseGlyph value="translate_200_200"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="200"/>
<dy value="200"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="26">
<BaseGlyph value="translate_-200_-200"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="-200"/>
<dy value="-200"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
</BaseGlyphList>
<ClipList Format="1">
<Clip>
<Glyph value="rotate_-10_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="170"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="850"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="rotate_-15_center_500.0_500.0"/>
<Glyph value="rotate_25_center_500.0_500.0"/>
<Glyph value="translate_0_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="rotate_10_center_0_0"/>
<ClipBox Format="1">
<xMin value="150"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="830"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_0_0"/>
<ClipBox Format="1">
<xMin value="120"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="1130"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="-130"/>
<xMax value="880"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="120"/>
<xMax value="750"/>
<yMax value="880"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_0_0"/>
<Glyph value="transform_matrix_1.5_0_0_1.5_0_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="1130"/>
<yMax value="1130"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="-130"/>
<yMin value="-130"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="120"/>
<yMin value="120"/>
<xMax value="880"/>
<yMax value="880"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_-10_20_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="150"/>
<yMin value="50"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_-10_20_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="240"/>
<yMin value="240"/>
<xMax value="760"/>
<yMax value="760"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_0_15_center_0_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="900"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_0_15_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="240"/>
<xMax value="750"/>
<yMax value="760"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_25_0_center_0_0"/>
<ClipBox Format="1">
<xMin value="0"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_25_0_center_500.0_500.0"/>
<Glyph value="transform_matrix_1.0_0.0_0.6_1.0_-300.0_0.0"/>
<ClipBox Format="1">
<xMin value="230"/>
<yMin value="250"/>
<xMax value="770"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="transform_matrix_0.9659_0.2588_-0.2588_0.9659_0_0"/>
<ClipBox Format="1">
<xMin value="100"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="870"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="transform_matrix_1_0_0_1_125_125"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="880"/>
<yMax value="880"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_-100_0"/>
<ClipBox Format="1">
<xMin value="150"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_-200_-200"/>
<ClipBox Format="1">
<xMin value="50"/>
<yMin value="50"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_0_-100"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="150"/>
<xMax value="750"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_0_100"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="750"/>
<yMax value="850"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_100_0"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="850"/>
<yMax value="750"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_200_200"/>
<ClipBox Format="1">
<xMin value="250"/>
<yMin value="250"/>
<xMax value="950"/>
<yMax value="950"/>
</ClipBox>
</Clip>
</ClipList>
</COLR>
</ttFont>

View File

@ -0,0 +1,863 @@
<?xml version="1.0" encoding="UTF-8"?>
<ttFont sfntVersion="\x00\x01\x00\x00" ttLibVersion="4.39">
<COLR>
<Version value="1"/>
<BaseGlyphList>
<!-- BaseGlyphCount=27 -->
<BaseGlyphPaintRecord index="0">
<BaseGlyph value="scale_0.5_1.5_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="18"><!-- PaintScaleAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="1">
<BaseGlyph value="scale_1.5_1.5_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="22"><!-- PaintScaleUniformAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="2">
<BaseGlyph value="scale_0.5_1.5_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="16"><!-- PaintScale -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="3">
<BaseGlyph value="scale_1.5_1.5_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="20"><!-- PaintScaleUniform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="4">
<BaseGlyph value="scale_0.5_1.5_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="18"><!-- PaintScaleAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scaleX value="0.5"/>
<scaleY value="1.5"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="5">
<BaseGlyph value="scale_1.5_1.5_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="22"><!-- PaintScaleUniformAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<scale value="1.5"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="6">
<BaseGlyph value="rotate_10_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="24"><!-- PaintRotate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="10.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="7">
<BaseGlyph value="rotate_-10_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="-10.0"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="8">
<BaseGlyph value="rotate_25_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="25.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="9">
<BaseGlyph value="rotate_-15_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="26"><!-- PaintRotateAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<angle value="-15.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="10">
<BaseGlyph value="skew_25_0_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="28"><!-- PaintSkew -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="25.0"/>
<ySkewAngle value="0.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="11">
<BaseGlyph value="skew_25_0_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="25.0"/>
<ySkewAngle value="0.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="12">
<BaseGlyph value="skew_0_15_center_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="28"><!-- PaintSkew -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="0.0"/>
<ySkewAngle value="15.0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="13">
<BaseGlyph value="skew_0_15_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="0.0"/>
<ySkewAngle value="15.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="14">
<BaseGlyph value="skew_-10_20_center_500.0_500.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="-10.0"/>
<ySkewAngle value="20.0"/>
<centerX value="500"/>
<centerY value="500"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="15">
<BaseGlyph value="skew_-10_20_center_1000_1000"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="30"><!-- PaintSkewAroundCenter -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<xSkewAngle value="-10.0"/>
<ySkewAngle value="20.0"/>
<centerX value="1000"/>
<centerY value="1000"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="16">
<BaseGlyph value="transform_matrix_1_0_0_1_125_125"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.0"/>
<yx value="0.0"/>
<xy value="0.0"/>
<yy value="1.0"/>
<dx value="125.0"/>
<dy value="125.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="17">
<BaseGlyph value="transform_matrix_1.5_0_0_1.5_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.5"/>
<yx value="0.0"/>
<xy value="0.0"/>
<yy value="1.5"/>
<dx value="0.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="18">
<BaseGlyph value="transform_matrix_0.9659_0.2588_-0.2588_0.9659_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="0.9659"/>
<yx value="0.2588"/>
<xy value="-0.2588"/>
<yy value="0.9659"/>
<dx value="0.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="19">
<BaseGlyph value="transform_matrix_1.0_0.0_0.6_1.0_-300.0_0.0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="12"><!-- PaintTransform -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<Transform>
<xx value="1.0"/>
<yx value="0.0"/>
<xy value="0.6"/>
<yy value="1.0"/>
<dx value="-300.0"/>
<dy value="0.0"/>
</Transform>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="20">
<BaseGlyph value="translate_0_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="21">
<BaseGlyph value="translate_0_100"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="100"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="22">
<BaseGlyph value="translate_0_-100"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="0"/>
<dy value="-100"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="23">
<BaseGlyph value="translate_100_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="100"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="24">
<BaseGlyph value="translate_-100_0"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="-100"/>
<dy value="0"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="25">
<BaseGlyph value="translate_200_200"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="200"/>
<dy value="200"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
<BaseGlyphPaintRecord index="26">
<BaseGlyph value="translate_-200_-200"/>
<Paint Format="32"><!-- PaintComposite -->
<SourcePaint Format="14"><!-- PaintTranslate -->
<Paint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="1"/>
<Alpha value="0.7"/>
</Paint>
<Glyph value="cross_glyph"/>
</Paint>
<dx value="-200"/>
<dy value="-200"/>
</SourcePaint>
<CompositeMode value="dest_over"/>
<BackdropPaint Format="10"><!-- PaintGlyph -->
<Paint Format="2"><!-- PaintSolid -->
<PaletteIndex value="4"/>
<Alpha value="0.5"/>
</Paint>
<Glyph value="cross_glyph"/>
</BackdropPaint>
</Paint>
</BaseGlyphPaintRecord>
</BaseGlyphList>
<ClipList Format="1">
<Clip>
<Glyph value="rotate_-10_center_1000_1000"/>
<Glyph value="rotate_10_center_0_0"/>
<Glyph value="transform_matrix_0.9659_0.2588_-0.2588_0.9659_0_0"/>
<ClipBox Format="1">
<xMin value="100"/>
<yMin value="200"/>
<xMax value="800"/>
<yMax value="900"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="rotate_-15_center_500.0_500.0"/>
<Glyph value="rotate_25_center_500.0_500.0"/>
<Glyph value="skew_-10_20_center_500.0_500.0"/>
<Glyph value="skew_0_15_center_500.0_500.0"/>
<Glyph value="skew_25_0_center_500.0_500.0"/>
<Glyph value="transform_matrix_1.0_0.0_0.6_1.0_-300.0_0.0"/>
<Glyph value="translate_0_0"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="200"/>
<xMax value="800"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_0_0"/>
<ClipBox Format="1">
<xMin value="100"/>
<yMin value="200"/>
<xMax value="800"/>
<yMax value="1200"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="-200"/>
<xMax value="900"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_0.5_1.5_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="100"/>
<xMax value="800"/>
<yMax value="900"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_0_0"/>
<Glyph value="transform_matrix_1.5_0_0_1.5_0_0"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="200"/>
<xMax value="1200"/>
<yMax value="1200"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="-200"/>
<yMin value="-200"/>
<xMax value="800"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="scale_1.5_1.5_center_500.0_500.0"/>
<ClipBox Format="1">
<xMin value="100"/>
<yMin value="100"/>
<xMax value="900"/>
<yMax value="900"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_-10_20_center_1000_1000"/>
<ClipBox Format="1">
<xMin value="100"/>
<yMin value="0"/>
<xMax value="800"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_0_15_center_0_0"/>
<Glyph value="translate_0_100"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="200"/>
<xMax value="800"/>
<yMax value="900"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="skew_25_0_center_0_0"/>
<ClipBox Format="1">
<xMin value="0"/>
<yMin value="200"/>
<xMax value="800"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="transform_matrix_1_0_0_1_125_125"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="200"/>
<xMax value="900"/>
<yMax value="900"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_-100_0"/>
<ClipBox Format="1">
<xMin value="100"/>
<yMin value="200"/>
<xMax value="800"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_-200_-200"/>
<ClipBox Format="1">
<xMin value="0"/>
<yMin value="0"/>
<xMax value="800"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_0_-100"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="100"/>
<xMax value="800"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_100_0"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="200"/>
<xMax value="900"/>
<yMax value="800"/>
</ClipBox>
</Clip>
<Clip>
<Glyph value="translate_200_200"/>
<ClipBox Format="1">
<xMin value="200"/>
<yMin value="200"/>
<xMax value="1000"/>
<yMax value="1000"/>
</ClipBox>
</Clip>
</ClipList>
</COLR>
</ttFont>