From dc3405516ff182e32f2f7cafe31a91fd5501ff7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Fri, 5 Jan 2024 17:50:59 +0200 Subject: [PATCH 1/9] [skrifa] Implement an optimized fill_glyph operation In COLRv0/v1 drawing clients may gain a performance benefit from filling a shape (with a solid or gradient fill) instead of performing a clip + unbounded fill in sequence. Allow clients to do that using a fill_glyph() operation that combines the two. Implement this using a temporary painter that speculatively traverses the glyph tree down from a `PaintGlyph` operation collecting potential transforms along the way. New behavior shows clearly in new baselines for tests added in #758 that nest `PaintGlyph` tables and cover mixed situations in which the optimization succeeds for a leaf but fails for the `PaintGlyph` at a layer above, and demonstrate recording transforms along the way. Fixes #746. --- .../colrv1_json/colrv1_colored_circles_v0 | 2 +- skrifa/src/color/mod.rs | 44 ++++++- skrifa/src/color/transform.rs | 21 +++- skrifa/src/color/traversal.rs | 118 +++++++++++++++--- skrifa/src/color/traversal_tests/mod.rs | 43 ++++++- 5 files changed, 200 insertions(+), 28 deletions(-) diff --git a/font-test-data/test_data/colrv1_json/colrv1_colored_circles_v0 b/font-test-data/test_data/colrv1_json/colrv1_colored_circles_v0 index 46eb50234..d24d42b9e 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_colored_circles_v0 +++ b/font-test-data/test_data/colrv1_json/colrv1_colored_circles_v0 @@ -1 +1 @@ -{"glyph_id":168,"ops":[{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":0,"alpha":1.0}}}},"PopClip",{"PushClipGlyph":{"gid":175}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":1.0}}}},"PopClip",{"PushClipGlyph":{"gid":174}},{"FillBrush":{"brush":{"Solid":{"palette_index":2,"alpha":1.0}}}},"PopClip",{"PushClipGlyph":{"gid":173}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip",{"PushClipGlyph":{"gid":172}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":1.0}}}},"PopClip",{"PushClipGlyph":{"gid":171}},{"FillBrush":{"brush":{"Solid":{"palette_index":5,"alpha":1.0}}}},"PopClip",{"PushClipGlyph":{"gid":170}},{"FillBrush":{"brush":{"Solid":{"palette_index":6,"alpha":1.0}}}},"PopClip",{"PushClipGlyph":{"gid":5}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip"]} +{"glyph_id":168,"ops":[{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":0,"alpha":1.0}}}},{"FillGlyph":{"gid":175,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":1.0}}}},{"FillGlyph":{"gid":174,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":2,"alpha":1.0}}}},{"FillGlyph":{"gid":173,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},{"FillGlyph":{"gid":172,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":1.0}}}},{"FillGlyph":{"gid":171,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":5,"alpha":1.0}}}},{"FillGlyph":{"gid":170,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":6,"alpha":1.0}}}},{"FillGlyph":{"gid":5,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}}]} diff --git a/skrifa/src/color/mod.rs b/skrifa/src/color/mod.rs index 7c1441370..17ab5b8f3 100644 --- a/skrifa/src/color/mod.rs +++ b/skrifa/src/color/mod.rs @@ -76,6 +76,7 @@ pub enum PaintError { ParseError(ReadError), GlyphNotFound(GlyphId), PaintCycleDetected, + FillGlyphOptimizationFailed, } impl std::fmt::Display for PaintError { @@ -88,6 +89,10 @@ impl std::fmt::Display for PaintError { write!(f, "No COLRv1 glyph found for glyph id: {glyph_id}") } PaintError::PaintCycleDetected => write!(f, "Paint cycle detected in COLRv1 glyph."), + PaintError::FillGlyphOptimizationFailed => write!( + f, + "Failed to combine clip glyph and fill into optimized single operation." + ), } } } @@ -192,6 +197,20 @@ pub enum PaintCachedColorGlyph { Unimplemented, } +/// Result of [`fill_glyph_supported()`](ColorPainter::fill_glyph_supported). +/// +/// Result of [`fill_glyph_supported()`](ColorPainter::fill_glyph_supported) +/// through which the client signals whether an optimized glyph filling function +/// is implemented that combines clip and fill with a +/// [`brush`](Brush). +#[derive(PartialEq)] +pub enum FillGlyph { + /// The combined clip and fill operation is supported on the client side. + Supported, + /// The client does not implement the combined clip and fill operation. + Unimplemented, +} + /// A group of required painting callbacks to be provided by the client. /// /// Each callback is executing a particular drawing or canvas transformation @@ -218,7 +237,27 @@ pub trait ColorPainter { fn pop_clip(&mut self); /// Fill the current clip area with the specified gradient fill. - fn fill(&mut self, brush: Brush); + fn fill(&mut self, brush: Brush<'_>); + + /// Queries from the client whether the optimized + /// [`fill_glyph()`](ColorPainter::fill_glyph) operation is supported. + fn fill_glyph_supported(&self) -> FillGlyph { + FillGlyph::Unimplemented + } + + /// Combined clip and fill operation. + /// + /// Apply the clip path determined by the specified `glyph_id`, + /// then fill it with the specified [`brush`](Brush), applying the `_transform` + /// transformation matrix to the brush. + fn fill_glyph( + &mut self, + _glyph_id: GlyphId, + _transform: Transform, + _brush: Brush<'_>, + ) -> Result<(), PaintError> { + Err(PaintError::FillGlyphOptimizationFailed) + } /// Optionally implement this method: Draw an unscaled COLRv1 glyph given /// the current transformation matrix (as accumulated by @@ -230,9 +269,6 @@ pub trait ColorPainter { Ok(PaintCachedColorGlyph::Unimplemented) } - // TODO(https://github.com/googlefonts/fontations/issues/746): - // Add an optimized callback function combining clip, fill and transforms. - /// Open a new layer, and merge the layer down using `composite_mode` when /// [`pop_layer`](ColorPainter::pop_layer) is called, signalling that this layer is done drawing. fn push_layer(&mut self, composite_mode: CompositeMode); diff --git a/skrifa/src/color/transform.rs b/skrifa/src/color/transform.rs index 8c55c0a8c..21af6a34a 100644 --- a/skrifa/src/color/transform.rs +++ b/skrifa/src/color/transform.rs @@ -1,4 +1,6 @@ //! Contains a [`Transform`] object holding values of an affine transformation matrix. +use std::ops::MulAssign; + use read_fonts::ReadError; use super::instance::ResolvedPaint; @@ -8,7 +10,7 @@ use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, PartialEq)] #[cfg_attr(test, derive(Serialize, Deserialize))] -/// A transformation matrix to be applied to the drawing canvas. +/// A transformation matrix to be applied to the drawing canvas. /// /// Factors are specified in column-order, meaning that /// for a vector `(x,y)` the transformed position `x'` of the vector @@ -25,6 +27,23 @@ pub struct Transform { pub dy: f32, } +impl MulAssign for Transform { + fn mul_assign(&mut self, rhs: Self) { + fn muladdmul(a: f32, b: f32, c: f32, d: f32) -> f32 { + a * b + c * d + } + let tmp = Self { + xx: muladdmul(self.xx, rhs.xx, self.xy, rhs.yx), + xy: muladdmul(self.xx, rhs.xy, self.xy, rhs.yy), + dx: muladdmul(self.xx, rhs.dx, self.xy, rhs.dy) + self.dx, + yx: muladdmul(self.yx, rhs.xx, self.yy, rhs.yx), + yy: muladdmul(self.yx, rhs.xy, self.yy, rhs.yy), + dy: muladdmul(self.yx, rhs.dx, self.yy, rhs.dy) + self.dy, + }; + *self = tmp; + } +} + impl Default for Transform { fn default() -> Self { Transform { diff --git a/skrifa/src/color/traversal.rs b/skrifa/src/color/traversal.rs index 86bd81ace..516d3dff4 100644 --- a/skrifa/src/color/traversal.rs +++ b/skrifa/src/color/traversal.rs @@ -13,7 +13,7 @@ use super::{ instance::{ resolve_clip_box, resolve_paint, ColorStops, ColrInstance, ResolvedColorStop, ResolvedPaint, }, - Brush, ColorPainter, ColorStop, PaintCachedColorGlyph, PaintError, + Brush, ColorPainter, ColorStop, FillGlyph, PaintCachedColorGlyph, PaintError, Transform, }; // Workaround for https://bugs.chromium.org/p/chromium/issues/detail?id=1516634. @@ -52,6 +52,67 @@ fn make_sorted_resolved_stops(stops: &ColorStops, instance: &ColrInstance) -> Ve collected } +struct CollectFillGlyphPainter<'a> { + brush_transform: Transform, + glyph_id: GlyphId, + parent_painter: &'a mut dyn ColorPainter, + pub optimization_result: Result<(), PaintError>, +} + +impl<'a> CollectFillGlyphPainter<'a> { + fn new(parent_painter: &'a mut dyn ColorPainter, glyph_id: GlyphId) -> Self { + Self { + brush_transform: Transform::default(), + glyph_id, + parent_painter, + optimization_result: Ok(()), + } + } +} + +impl<'a> ColorPainter for CollectFillGlyphPainter<'a> { + fn push_transform(&mut self, transform: Transform) { + if self.optimization_result.is_ok() { + self.brush_transform *= transform; + } + } + + fn pop_transform(&mut self) { + // Since we only support fill and and transform operations, we need to + // ignore a popped transform, as this would be called after traversing + // the graph backup after a fill was performed, but we want to preserve + // the transform in order to be able to return it. + } + + fn fill(&mut self, brush: Brush<'_>) { + if self.optimization_result.is_ok() { + self.optimization_result = + self.parent_painter + .fill_glyph(self.glyph_id, self.brush_transform.clone(), brush); + } + } + + fn push_clip_glyph(&mut self, _: GlyphId) { + self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + } + + fn push_clip_box(&mut self, _: BoundingBox) { + self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + } + + fn pop_clip(&mut self) { + self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + } + + fn push_layer(&mut self, _: CompositeMode) { + self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + } + + fn pop_layer(&mut self) { + self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + } +} + pub(crate) fn traverse_with_callbacks( paint: &ResolvedPaint, instance: &ColrInstance, @@ -365,14 +426,28 @@ pub(crate) fn traverse_with_callbacks( } ResolvedPaint::Glyph { glyph_id, paint } => { - painter.push_clip_glyph(*glyph_id); - let result = traverse_with_callbacks( - &resolve_paint(instance, paint)?, - instance, - painter, - visited_set, - ); - painter.pop_clip(); + let mut result = Err(PaintError::FillGlyphOptimizationFailed); + if painter.fill_glyph_supported() == FillGlyph::Supported { + let mut optimizer = CollectFillGlyphPainter::new(painter, *glyph_id); + result = traverse_with_callbacks( + &resolve_paint(instance, paint)?, + instance, + &mut optimizer, + visited_set, + ) + .and(optimizer.optimization_result) + } + + if result.is_err() { + painter.push_clip_glyph(*glyph_id); + result = traverse_with_callbacks( + &resolve_paint(instance, paint)?, + instance, + painter, + visited_set, + ); + painter.pop_clip(); + } result } ResolvedPaint::ColrGlyph { glyph_id } => match (*instance).v1_base_glyph(*glyph_id)? { @@ -467,14 +542,23 @@ pub(crate) fn traverse_v0_range( ) -> Result<(), PaintError> { for layer_index in range.clone() { let (layer_index, palette_index) = (*instance).v0_layer(layer_index)?; - // TODO(https://github.com/googlefonts/fontations/issues/746): - // Use optimized callback function combining clip, fill and transforms. - painter.push_clip_glyph(layer_index); - painter.fill(Brush::Solid { - palette_index, - alpha: 1.0, - }); - painter.pop_clip(); + if painter.fill_glyph_supported() == FillGlyph::Supported { + painter.fill_glyph( + layer_index, + Transform::default(), + Brush::Solid { + palette_index, + alpha: 1.0, + }, + )?; + } else { + painter.push_clip_glyph(layer_index); + painter.fill(Brush::Solid { + palette_index, + alpha: 1.0, + }); + painter.pop_clip(); + } } Ok(()) } diff --git a/skrifa/src/color/traversal_tests/mod.rs b/skrifa/src/color/traversal_tests/mod.rs index 12b21ea74..52387b772 100644 --- a/skrifa/src/color/traversal_tests/mod.rs +++ b/skrifa/src/color/traversal_tests/mod.rs @@ -147,13 +147,28 @@ impl From for DumpTransform { #[derive(Serialize, Deserialize, PartialEq)] enum PaintOps { - PushTransform { transform: DumpTransform }, + PushTransform { + transform: DumpTransform, + }, PopTransform, - PushClipGlyph { gid: u16 }, - PushClipBox { clip_box: BoundingBox }, + PushClipGlyph { + gid: u16, + }, + PushClipBox { + clip_box: BoundingBox, + }, PopClip, - FillBrush { brush: BrushParams }, - PushLayer { composite_mode: u8 }, + FillBrush { + brush: BrushParams, + }, + FillGlyph { + gid: u16, + transform: DumpTransform, + brush: BrushParams, + }, + PushLayer { + composite_mode: u8, + }, PopLayer, } @@ -187,6 +202,24 @@ impl ColorPainter for PaintDump { }); } + fn fill_glyph_supported(&self) -> super::FillGlyph { + super::FillGlyph::Supported + } + + fn fill_glyph( + &mut self, + glyph_id: GlyphId, + transform: Transform, + brush: Brush, + ) -> Result<(), super::PaintError> { + self.ops.push(PaintOps::FillGlyph { + gid: glyph_id.to_u16(), + transform: transform.into(), + brush: brush.into(), + }); + Ok(()) + } + fn push_layer(&mut self, composite_mode: CompositeMode) { self.ops.push(PaintOps::PushLayer { composite_mode: composite_mode as u8, From 3926cbb5722f2b22f55ac8daedaf97231ded769b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Fri, 19 Jan 2024 17:16:40 +0200 Subject: [PATCH 2/9] Rebaseline tests for FillGlyph --- .../test_data/colrv1_json/colrv1_clipbox | 10 +- .../colrv1_json/colrv1_clipbox_CLIO_200 | 10 +- .../colrv1_json/colrv1_composite_mode | 56 +++---- .../test_data/colrv1_json/colrv1_extend_mode | 18 +-- .../colrv1_extend_mode_COL1_-0.25_COL3_0.25 | 18 +-- .../colrv1_json/colrv1_extend_mode_COL1_-1.5 | 18 +-- .../colrv1_extend_mode_COL1_0.5_COL3_-0.5 | 19 +-- .../colrv1_json/colrv1_extend_mode_COL2_-0.3 | 18 +-- .../colrv1_json/colrv1_extend_mode_COL3_0.5 | 18 +-- .../colrv1_json/colrv1_extend_mode_COL3_1 | 18 +-- .../colrv1_extend_mode_COL3_1_COL2_1.5_COL1_2 | 19 +-- .../colrv1_extend_mode_GRR0_-200_GRR1_-300 | 18 +-- ...nd_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-0.9 | 18 +-- ...nd_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-1.1 | 18 +-- .../colrv1_extend_mode_GRR0_430_GRR1_40 | 18 +-- ...GRX0_-1000_GRX1_-1000_GRR0_-1000_GRR1_-900 | 18 +-- ...e_GRX0_1000_GRX1_-1000_GRR0_-1000_GRR1_200 | 18 +-- .../colrv1_json/colrv1_foreground_color | 16 +- .../colrv1_json/colrv1_gradient_p2_skewed | 2 +- .../colrv1_json/colrv1_gradient_stops_repeat | 8 +- .../colrv1_no_cycle_multi_colrglyph | 2 +- .../colrv1_json/colrv1_paint_glyph_nested | 32 ++-- .../test_data/colrv1_json/colrv1_paint_rotate | 8 +- .../colrv1_json/colrv1_paint_rotate_ROTA_40 | 8 +- .../colrv1_paint_rotate_ROTX_-250_ROTY_-250 | 8 +- .../test_data/colrv1_json/colrv1_paint_scale | 12 +- .../colrv1_paint_scale_SCOX_200_SCOY_200 | 12 +- .../colrv1_paint_scale_SCSX_-1_SCOY_-1 | 12 +- .../colrv1_paint_scale_SCSX_0.25_SCOY_0.25 | 12 +- .../test_data/colrv1_json/colrv1_paint_skew | 12 +- .../colrv1_paint_skew_SKCX_200_SKCY_200 | 12 +- .../colrv1_json/colrv1_paint_skew_SKXA_20 | 12 +- .../colrv1_json/colrv1_paint_skew_SKYA_20 | 12 +- .../colrv1_json/colrv1_paint_transform | 8 +- .../colrv1_json/colrv1_paint_translate | 14 +- .../colrv1_paint_translate_TLDX_100_TLDY_100 | 14 +- .../colrv1_json/colrv1_sweep_coincident | 48 +++--- .../colrv1_json/colrv1_sweep_varsweep | 144 +++++++++--------- ...WC2_0.083333336_SWC3_0.083333336_SWC4_0.25 | 144 +++++++++--------- .../colrv1_sweep_varsweep_SWPE_-45 | 144 +++++++++--------- .../colrv1_sweep_varsweep_SWPE_-90 | 144 +++++++++--------- .../colrv1_sweep_varsweep_SWPS_-45_SWPE_45 | 144 +++++++++--------- .../colrv1_json/colrv1_sweep_varsweep_SWPS_0 | 144 +++++++++--------- ...5_SWC2_-0.416687_SWC3_-0.583313_SWC4_-0.75 | 144 +++++++++--------- .../colrv1_json/colrv1_sweep_varsweep_SWPS_90 | 144 +++++++++--------- .../colrv1_json/colrv1_variable_alpha | 2 +- .../colrv1_variable_alpha_APH1_-0.7 | 2 +- .../colrv1_variable_alpha_APH2_-0.7_APH3_-0.2 | 2 +- 48 files changed, 878 insertions(+), 874 deletions(-) diff --git a/font-test-data/test_data/colrv1_json/colrv1_clipbox b/font-test-data/test_data/colrv1_json/colrv1_clipbox index 1a512531b..1f382967e 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_clipbox +++ b/font-test-data/test_data/colrv1_json/colrv1_clipbox @@ -1,5 +1,5 @@ -{"glyph_id":156,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":500.0,"x_max":500.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":161}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":157,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":500.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":162}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":158,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":0.0,"x_max":1000.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":163}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":159,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":500.0,"x_max":1000.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":164}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":160,"ops":[{"PushClipBox":{"clip_box":{"x_min":250.0,"y_min":250.0,"x_max":750.0,"y_max":750.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":165}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} +{"glyph_id":156,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":500.0,"x_max":500.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":161,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":157,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":500.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":162,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":158,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":0.0,"x_max":1000.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":163,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":159,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":500.0,"x_max":1000.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":164,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":160,"ops":[{"PushClipBox":{"clip_box":{"x_min":250.0,"y_min":250.0,"x_max":750.0,"y_max":750.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":100.0,"x_max":900.0,"y_max":900.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":165,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_clipbox_CLIO_200 b/font-test-data/test_data/colrv1_json/colrv1_clipbox_CLIO_200 index 2d048af2c..f4b126a58 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_clipbox_CLIO_200 +++ b/font-test-data/test_data/colrv1_json/colrv1_clipbox_CLIO_200 @@ -1,5 +1,5 @@ -{"glyph_id":156,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":500.0,"x_max":500.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":161}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":157,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":500.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":162}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":158,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":0.0,"x_max":1000.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":163}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":159,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":500.0,"x_max":1000.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":164}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} -{"glyph_id":160,"ops":[{"PushClipBox":{"clip_box":{"x_min":250.0,"y_min":250.0,"x_max":750.0,"y_max":750.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":165}},{"FillBrush":{"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopClip","PopLayer","PopLayer","PopClip"]} +{"glyph_id":156,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":500.0,"x_max":500.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":161,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":157,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":500.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":162,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":158,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":0.0,"x_max":1000.0,"y_max":500.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":163,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":159,"ops":[{"PushClipBox":{"clip_box":{"x_min":500.0,"y_min":500.0,"x_max":1000.0,"y_max":1000.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":164,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} +{"glyph_id":160,"ops":[{"PushClipBox":{"clip_box":{"x_min":250.0,"y_min":250.0,"x_max":750.0,"y_max":750.0}}},{"PushLayer":{"composite_mode":3}},{"PushClipBox":{"clip_box":{"x_min":300.0122,"y_min":300.0122,"x_max":699.9878,"y_max":699.9878}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip",{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":165,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":13,"alpha":0.4000244}}}},"PopLayer","PopLayer","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_composite_mode b/font-test-data/test_data/colrv1_json/colrv1_composite_mode index 8d63e6fa1..91634d59e 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_composite_mode +++ b/font-test-data/test_data/colrv1_json/colrv1_composite_mode @@ -1,28 +1,28 @@ -{"glyph_id":120,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":0}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":121,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":1}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":122,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":2}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":123,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":124,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":125,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":5}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":126,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":6}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":127,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":7}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":128,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":8}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":129,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":9}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":130,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":10}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":131,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":11}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":132,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":12}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":133,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":13}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":134,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":14}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":135,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":15}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":136,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":16}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":137,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":17}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":138,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":18}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":139,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":19}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":140,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":20}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":141,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":21}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":142,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":22}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":143,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":23}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":144,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":24}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":145,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":25}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":146,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":26}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} -{"glyph_id":147,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},"PopClip",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopClip","PopTransform",{"PushLayer":{"composite_mode":27}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopClip","PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":120,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":0}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":121,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":1}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":122,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":2}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":123,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":124,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":125,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":5}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":126,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":6}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":127,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":7}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":128,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":8}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":129,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":9}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":130,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":10}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":131,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":11}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":132,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":12}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":133,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":13}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":134,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":14}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":135,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":15}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":136,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":16}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":137,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":17}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":138,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":18}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":139,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":19}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":140,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":20}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":141,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":21}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":142,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":22}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":143,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":23}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":144,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":24}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":145,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":25}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":146,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":26}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} +{"glyph_id":147,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":10,"alpha":1.0}}}},{"PushLayer":{"composite_mode":3}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":166.5,"dy":333.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":12,"alpha":1.0}}}},"PopTransform",{"PushLayer":{"composite_mode":27}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":333.5,"dy":166.5}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":11,"alpha":1.0}}}},"PopTransform","PopLayer","PopLayer","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode b/font-test-data/test_data/colrv1_json/colrv1_extend_mode index 43e2b9a02..afc0e51be 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-0.25_COL3_0.25 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-0.25_COL3_0.25 index 119a3f234..4d2c31280 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-0.25_COL3_0.25 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-0.25_COL3_0.25 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-76.75,"y":1024.0},"p1":{"x":383.75,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-76.75,"y":1024.0},"p1":{"x":383.75,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-76.75,"y":1024.0},"p1":{"x":383.75,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-64.0,"c1":{"x":166.0,"y":768.0},"r1":320.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-64.0,"c1":{"x":166.0,"y":768.0},"r1":320.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-64.0,"c1":{"x":166.0,"y":768.0},"r1":320.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":325.0,"y":500.0},"r0":75.0,"c1":{"x":775.0,"y":500.0},"r1":225.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":325.0,"y":500.0},"r0":75.0,"c1":{"x":775.0,"y":500.0},"r1":225.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":325.0,"y":500.0},"r0":75.0,"c1":{"x":775.0,"y":500.0},"r1":225.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-76.75,"y":1024.0},"p1":{"x":383.75,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-76.75,"y":1024.0},"p1":{"x":383.75,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-76.75,"y":1024.0},"p1":{"x":383.75,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-64.0,"c1":{"x":166.0,"y":768.0},"r1":320.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-64.0,"c1":{"x":166.0,"y":768.0},"r1":320.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-64.0,"c1":{"x":166.0,"y":768.0},"r1":320.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":325.0,"y":500.0},"r0":75.0,"c1":{"x":775.0,"y":500.0},"r1":225.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":325.0,"y":500.0},"r0":75.0,"c1":{"x":775.0,"y":500.0},"r1":225.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":325.0,"y":500.0},"r0":75.0,"c1":{"x":775.0,"y":500.0},"r1":225.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-1.5 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-1.5 index e45a7cb70..8934e7ada 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-1.5 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_-1.5 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-384.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-384.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-384.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-50.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-50.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-50.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-384.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-384.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-384.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-50.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-50.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-50.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.8,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_0.5_COL3_-0.5 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_0.5_COL3_-0.5 index 6edda895c..099c88f03 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_0.5_COL3_-0.5 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL1_0.5_COL3_-0.5 @@ -1,9 +1,10 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":153.5,"y":1024.0},"p1":{"x":153.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":128.0,"c1":{"x":166.0,"y":768.0},"r1":128.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":550.0,"y":500.0},"r0":150.0,"c1":{"x":550.0,"y":500.0},"r1":150.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":153.5,"y":1024.0},"p1":{"x":153.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":128.0,"c1":{"x":166.0,"y":768.0},"r1":128.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":550.0,"y":500.0},"r0":150.0,"c1":{"x":550.0,"y":500.0},"r1":150.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL2_-0.3 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL2_-0.3 index 87cef9e56..36b24c7cf 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL2_-0.3 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL2_-0.3 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":256.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":700.0,"y":500.0},"r1":200.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.19995117,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_0.5 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_0.5 index 9989963f3..7854dbde7 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_0.5 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_0.5 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":460.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":460.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":460.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":384.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":384.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":384.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":850.0,"y":500.0},"r1":250.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":850.0,"y":500.0},"r1":250.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":850.0,"y":500.0},"r1":250.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":460.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":460.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":460.5,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":384.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":384.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":384.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":850.0,"y":500.0},"r1":250.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":850.0,"y":500.0},"r1":250.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":850.0,"y":500.0},"r1":250.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.33333334,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1 index 685992c26..b3f05b3fc 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":0.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":100.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.25,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1_COL2_1.5_COL1_2 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1_COL2_1.5_COL1_2 index 610f8ef8c..9a05ba15e 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1_COL2_1.5_COL1_2 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_COL3_1_COL2_1.5_COL1_2 @@ -1,9 +1,10 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":614.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":512.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":1000.0,"y":500.0},"r0":300.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":614.0,"y":1024.0},"p1":{"x":614.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":512.0,"c1":{"x":166.0,"y":768.0},"r1":512.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":1000.0,"y":500.0},"r0":300.0,"c1":{"x":1000.0,"y":500.0},"r1":300.0,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},"PopClip","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-200_GRR1_-300 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-200_GRR1_-300 index 510670915..ca796eb5c 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-200_GRR1_-300 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-200_GRR1_-300 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-200.0122,"c1":{"x":166.0,"y":768.0},"r1":-43.987793,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-200.0122,"c1":{"x":166.0,"y":768.0},"r1":-43.987793,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-200.0122,"c1":{"x":166.0,"y":768.0},"r1":-43.987793,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":-100.01221,"c1":{"x":700.0,"y":500.0},"r1":-99.98779,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":-100.01221,"c1":{"x":700.0,"y":500.0},"r1":-99.98779,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":-100.01221,"c1":{"x":700.0,"y":500.0},"r1":-99.98779,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-200.0122,"c1":{"x":166.0,"y":768.0},"r1":-43.987793,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-200.0122,"c1":{"x":166.0,"y":768.0},"r1":-43.987793,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-200.0122,"c1":{"x":166.0,"y":768.0},"r1":-43.987793,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":-100.01221,"c1":{"x":700.0,"y":500.0},"r1":-99.98779,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":-100.01221,"c1":{"x":700.0,"y":500.0},"r1":-99.98779,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":-100.01221,"c1":{"x":700.0,"y":500.0},"r1":-99.98779,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-0.9 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-0.9 index a48636ba8..71002f14b 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-0.9 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-0.9 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-276.3075,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-276.3075,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-276.3075,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-325.38428,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-325.38428,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-325.38428,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":129.99268,"y":500.0},"r1":-84.98047,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":129.99268,"y":500.0},"r1":-84.98047,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":129.99268,"y":500.0},"r1":-84.98047,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-276.3075,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-276.3075,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-276.3075,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-325.38428,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-325.38428,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-325.38428,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":129.99268,"y":500.0},"r1":-84.98047,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":129.99268,"y":500.0},"r1":-84.98047,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":129.99268,"y":500.0},"r1":-84.98047,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8333672,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":3,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-1.1 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-1.1 index 74f30e424..4fbdcfa25 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-1.1 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_-50_COL3_-2_COL2_-2_COL1_-1.1 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-355.9756,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-355.9756,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-355.9756,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":100.0,"y":500.0},"r1":-99.975586,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":100.0,"y":500.0},"r1":-99.975586,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":100.0,"y":500.0},"r1":-99.975586,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-460.5,"y":1024.0},"p1":{"x":-307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-355.9756,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-355.9756,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":-508.96948,"c1":{"x":166.0,"y":768.0},"r1":-355.9756,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":100.0,"y":500.0},"r1":-99.975586,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":100.0,"y":500.0},"r1":-99.975586,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-50.0,"y":500.0},"r0":-174.96948,"c1":{"x":100.0,"y":500.0},"r1":-99.975586,"color_stops":[{"offset":0.0,"palette_index":9,"alpha":1.0},{"offset":0.8000488,"palette_index":3,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_430_GRR1_40 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_430_GRR1_40 index 912f572bb..726f40f29 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_430_GRR1_40 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRR0_430_GRR1_40 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":429.99268,"c1":{"x":166.0,"y":768.0},"r1":295.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":429.99268,"c1":{"x":166.0,"y":768.0},"r1":295.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":429.99268,"c1":{"x":166.0,"y":768.0},"r1":295.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":529.9927,"c1":{"x":700.0,"y":500.0},"r1":239.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":529.9927,"c1":{"x":700.0,"y":500.0},"r1":239.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":529.9927,"c1":{"x":700.0,"y":500.0},"r1":239.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":0.0,"y":1024.0},"p1":{"x":307.0,"y":1024.0},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":429.99268,"c1":{"x":166.0,"y":768.0},"r1":295.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":429.99268,"c1":{"x":166.0,"y":768.0},"r1":295.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":166.0,"y":768.0},"r0":429.99268,"c1":{"x":166.0,"y":768.0},"r1":295.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":529.9927,"c1":{"x":700.0,"y":500.0},"r1":239.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":529.9927,"c1":{"x":700.0,"y":500.0},"r1":239.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":400.0,"y":500.0},"r0":529.9927,"c1":{"x":700.0,"y":500.0},"r1":239.97803,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_-1000_GRX1_-1000_GRR0_-1000_GRR1_-900 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_-1000_GRX1_-1000_GRR0_-1000_GRR1_-900 index b57819e5a..583fafa5c 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_-1000_GRX1_-1000_GRR0_-1000_GRR1_-900 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_-1000_GRX1_-1000_GRR0_-1000_GRR1_-900 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-1000.0,"y":1024.0},"p1":{"x":-973.55774,"y":1110.1312},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-1000.0,"y":1024.0},"p1":{"x":-973.55774,"y":1110.1312},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":-1000.0,"y":1024.0},"p1":{"x":-973.55774,"y":1110.1312},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-834.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":-643.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-834.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":-643.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-834.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":-643.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-600.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":-699.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-600.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":-699.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":-600.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":-699.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-1000.0,"y":1024.0},"p1":{"x":-973.55774,"y":1110.1312},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-1000.0,"y":1024.0},"p1":{"x":-973.55774,"y":1110.1312},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":-1000.0,"y":1024.0},"p1":{"x":-973.55774,"y":1110.1312},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-834.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":-643.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-834.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":-643.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-834.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":-643.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-600.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":-699.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-600.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":-699.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":-600.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":-699.9634,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_1000_GRX1_-1000_GRR0_-1000_GRR1_200 b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_1000_GRX1_-1000_GRR0_-1000_GRR1_200 index 73fda0c58..d47da44d8 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_1000_GRX1_-1000_GRR0_-1000_GRR1_200 +++ b/font-test-data/test_data/colrv1_json/colrv1_extend_mode_GRX0_1000_GRX1_-1000_GRR0_-1000_GRR1_200 @@ -1,9 +1,9 @@ -{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":1000.0,"y":1024.0},"p1":{"x":854.1799,"y":1498.9841},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":1000.0,"y":1024.0},"p1":{"x":854.1799,"y":1498.9841},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":1000.0,"y":1024.0},"p1":{"x":854.1799,"y":1498.9841},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":1166.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":456.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":1166.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":456.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":1166.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":456.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":1400.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":400.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":1400.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":400.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":2}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":1400.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":400.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} +{"glyph_id":90,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":1000.0,"y":1024.0},"p1":{"x":854.1799,"y":1498.9841},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":91,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":1000.0,"y":1024.0},"p1":{"x":854.1799,"y":1498.9841},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":92,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":1000.0,"y":1024.0},"p1":{"x":854.1799,"y":1498.9841},"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":93,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":1166.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":456.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":94,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":1166.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":456.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":95,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":1166.0,"y":768.0},"r0":-1000.0,"c1":{"x":-834.0,"y":768.0},"r1":456.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":96,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":1400.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":400.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":97,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":1400.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":400.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":98,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":2,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":1400.0,"y":500.0},"r0":-900.0,"c1":{"x":-300.0,"y":500.0},"r1":400.0122,"color_stops":[{"offset":0.0,"palette_index":3,"alpha":1.0},{"offset":0.5,"palette_index":9,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_foreground_color b/font-test-data/test_data/colrv1_json/colrv1_foreground_color index d64857a81..c951321f0 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_foreground_color +++ b/font-test-data/test_data/colrv1_json/colrv1_foreground_color @@ -1,8 +1,8 @@ -{"glyph_id":148,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":148}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":900.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":1.0},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":149,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":149}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":900.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":0.2999878},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":150,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":150}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":500.0,"y":600.0},"r0":50.0,"c1":{"x":500.0,"y":600.0},"r1":450.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":1.0},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":151,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":151}},{"FillBrush":{"brush":{"RadialGradient":{"c0":{"x":500.0,"y":600.0},"r0":50.0,"c1":{"x":500.0,"y":600.0},"r1":450.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":0.2999878},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":152,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":152}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":1.0},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":153,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":153}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":0.2999878},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":154,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":154}},{"FillBrush":{"brush":{"Solid":{"palette_index":65535,"alpha":1.0}}}},"PopClip","PopClip"]} -{"glyph_id":155,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":155}},{"FillBrush":{"brush":{"Solid":{"palette_index":65535,"alpha":0.2999878}}}},"PopClip","PopClip"]} +{"glyph_id":148,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":148,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":900.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":1.0},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":149,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":149,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":900.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":0.2999878},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":150,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":150,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":500.0,"y":600.0},"r0":50.0,"c1":{"x":500.0,"y":600.0},"r1":450.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":1.0},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":151,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":151,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"RadialGradient":{"c0":{"x":500.0,"y":600.0},"r0":50.0,"c1":{"x":500.0,"y":600.0},"r1":450.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":0.2999878},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":152,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":152,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":1.0},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":153,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":153,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":1,"alpha":1.0},{"offset":0.5,"palette_index":65535,"alpha":0.2999878},{"offset":1.0,"palette_index":1,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":154,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":154,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":65535,"alpha":1.0}}}},"PopClip"]} +{"glyph_id":155,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":155,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":65535,"alpha":0.2999878}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_gradient_p2_skewed b/font-test-data/test_data/colrv1_json/colrv1_gradient_p2_skewed index d29071f2c..111a36795 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_gradient_p2_skewed +++ b/font-test-data/test_data/colrv1_json/colrv1_gradient_p2_skewed @@ -1 +1 @@ -{"glyph_id":167,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":1200.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":167}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":100.0,"y":950.0},"p1":{"x":734.1177,"y":-46.47058},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":2,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} +{"glyph_id":167,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":1200.0,"y_max":950.0}}},{"FillGlyph":{"gid":167,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":100.0,"y":950.0},"p1":{"x":734.1177,"y":-46.47058},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":2,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_gradient_stops_repeat b/font-test-data/test_data/colrv1_json/colrv1_gradient_stops_repeat index cdf456af9..145b71666 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_gradient_stops_repeat +++ b/font-test-data/test_data/colrv1_json/colrv1_gradient_stops_repeat @@ -1,4 +1,4 @@ -{"glyph_id":8,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":8}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":900.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":9,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":9}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":260.00977,"y":250.0},"p1":{"x":739.99023,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":10,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":10}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":1300.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":11,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"PushClipGlyph":{"gid":11}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":1300.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":8,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":8,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":900.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":9,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":9,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":260.00977,"y":250.0},"p1":{"x":739.99023,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":10,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":10,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":100.0,"y":250.0},"p1":{"x":1300.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":11,"ops":[{"PushClipBox":{"clip_box":{"x_min":100.0,"y_min":250.0,"x_max":900.0,"y_max":950.0}}},{"FillGlyph":{"gid":11,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":1300.0,"y":250.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_no_cycle_multi_colrglyph b/font-test-data/test_data/colrv1_json/colrv1_no_cycle_multi_colrglyph index bf839f3e5..8666db9ef 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_no_cycle_multi_colrglyph +++ b/font-test-data/test_data/colrv1_json/colrv1_no_cycle_multi_colrglyph @@ -1 +1 @@ -{"glyph_id":180,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":-8.742278e-8,"xy":8.742278e-8,"yy":-1.0,"dx":999.99994,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.8200073,"yx":0.0,"xy":0.0,"yy":0.8200073,"dx":89.99634,"dy":107.995605}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":8.742278e-8,"xy":-8.742278e-8,"yy":-1.0,"dx":1000.00006,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.64001465,"yx":0.0,"xy":0.0,"yy":0.64001465,"dx":179.99268,"dy":215.99121}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":-8.742278e-8,"xy":8.742278e-8,"yy":-1.0,"dx":999.99994,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.46002197,"yx":0.0,"xy":0.0,"yy":0.46002197,"dx":269.989,"dy":323.98682}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":8.742278e-8,"xy":-8.742278e-8,"yy":-1.0,"dx":1000.00006,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.2800293,"yx":0.0,"xy":0.0,"yy":0.2800293,"dx":359.98535,"dy":431.98242}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":-8.742278e-8,"xy":8.742278e-8,"yy":-1.0,"dx":999.99994,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip","PopTransform","PopTransform","PopClip"]} +{"glyph_id":180,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":-8.742278e-8,"xy":8.742278e-8,"yy":-1.0,"dx":999.99994,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.8200073,"yx":0.0,"xy":0.0,"yy":0.8200073,"dx":89.99634,"dy":107.995605}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":8.742278e-8,"xy":-8.742278e-8,"yy":-1.0,"dx":1000.00006,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.64001465,"yx":0.0,"xy":0.0,"yy":0.64001465,"dx":179.99268,"dy":215.99121}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":-8.742278e-8,"xy":8.742278e-8,"yy":-1.0,"dx":999.99994,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.46002197,"yx":0.0,"xy":0.0,"yy":0.46002197,"dx":269.989,"dy":323.98682}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":8.742278e-8,"xy":-8.742278e-8,"yy":-1.0,"dx":1000.00006,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopTransform",{"PushTransform":{"transform":{"xx":0.2800293,"yx":0.0,"xy":0.0,"yy":0.2800293,"dx":359.98535,"dy":431.98242}}},{"PushTransform":{"transform":{"xx":-1.0,"yx":-8.742278e-8,"xy":8.742278e-8,"yy":-1.0,"dx":999.99994,"dy":1200.0}}},{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopTransform","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_glyph_nested b/font-test-data/test_data/colrv1_json/colrv1_paint_glyph_nested index 115c7bc3e..aa5d924ef 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_glyph_nested +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_glyph_nested @@ -1,16 +1,18 @@ -{"glyph_id":205,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":206,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":207,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":208,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":209,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":210,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":211,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":212,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":213,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":214,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":215,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":216,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":217,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":218,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} -{"glyph_id":219,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} +{"glyph_id":205,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":206,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":207,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":208,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":209,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":210,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":211,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":212,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":213,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":214,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":215,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":216,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":217,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":218,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillGlyph":{"gid":6,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":120.0,"dy":120.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":219,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +{"glyph_id":220,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillGlyph":{"gid":6,"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495},"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopClip"]} +2,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} {"glyph_id":220,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":7}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"PushClipGlyph":{"gid":6}},{"PushTransform":{"transform":{"xx":0.5000553,"yx":0.86599344,"xy":-0.86599344,"yy":0.5000553,"dx":691.629,"dy":-178.02495}}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":650.0,"y":510.0},"p1":{"x":199.83353,"y":250.28857},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip","PopTransform","PopClip","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_rotate b/font-test-data/test_data/colrv1_json/colrv1_paint_rotate index 1b2ca9558..aefaa3377 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_rotate +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_rotate @@ -1,4 +1,4 @@ -{"glyph_id":99,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":100,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":-0.17360622,"xy":0.17360622,"yy":0.9848152,"dx":-158.4214,"dy":188.79103}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":101,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.90627176,"yx":0.4226955,"xy":-0.4226955,"yy":0.90627176,"dx":258.21185,"dy":-164.48363}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":102,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9659424,"yx":-0.2587573,"xy":0.2587573,"yy":0.9659424,"dx":-112.34984,"dy":146.40746}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":99,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":100,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":-0.17360622,"xy":0.17360622,"yy":0.9848152,"dx":-158.4214,"dy":188.79103}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":101,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.90627176,"yx":0.4226955,"xy":-0.4226955,"yy":0.90627176,"dx":258.21185,"dy":-164.48363}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":102,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9659424,"yx":-0.2587573,"xy":0.2587573,"yy":0.9659424,"dx":-112.34984,"dy":146.40746}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTA_40 b/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTA_40 index 9a44742b8..fd17e0ffc 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTA_40 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTA_40 @@ -1,4 +1,4 @@ -{"glyph_id":99,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.6525195,"yx":0.7577719,"xy":-0.7577719,"yy":0.6525195,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":100,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.8659047,"yx":0.50020903,"xy":-0.50020903,"yy":0.8659047,"dx":634.3043,"dy":-366.11374}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":101,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.45144618,"yx":0.89229834,"xy":-0.89229834,"yy":0.45144618,"dx":720.4261,"dy":-171.87225}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":102,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9061967,"yx":0.42285633,"xy":-0.42285633,"yy":0.9061967,"dx":258.3298,"dy":-164.52652}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":99,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.6525195,"yx":0.7577719,"xy":-0.7577719,"yy":0.6525195,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":100,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.8659047,"yx":0.50020903,"xy":-0.50020903,"yy":0.8659047,"dx":634.3043,"dy":-366.11374}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":101,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.45144618,"yx":0.89229834,"xy":-0.89229834,"yy":0.45144618,"dx":720.4261,"dy":-171.87225}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":102,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9061967,"yx":0.42285633,"xy":-0.42285633,"yy":0.9061967,"dx":258.3298,"dy":-164.52652}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTX_-250_ROTY_-250 b/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTX_-250_ROTY_-250 index 9e9ac7fb3..9e007ae8a 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTX_-250_ROTY_-250 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_rotate_ROTX_-250_ROTY_-250 @@ -1,4 +1,4 @@ -{"glyph_id":99,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":100,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":-0.17360622,"xy":0.17360622,"yy":0.9848152,"dx":-118.816055,"dy":141.59328}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":101,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.90627176,"yx":0.4226955,"xy":-0.4226955,"yy":0.90627176,"dx":129.10593,"dy":-82.24181}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":102,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9659424,"yx":-0.2587573,"xy":0.2587573,"yy":0.9659424,"dx":-56.17492,"dy":73.20373}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":99,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":0.17360622,"xy":-0.17360622,"yy":0.9848152,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":100,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9848152,"yx":-0.17360622,"xy":0.17360622,"yy":0.9848152,"dx":-118.816055,"dy":141.59328}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":101,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.90627176,"yx":0.4226955,"xy":-0.4226955,"yy":0.90627176,"dx":129.10593,"dy":-82.24181}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":102,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9659424,"yx":-0.2587573,"xy":0.2587573,"yy":0.9659424,"dx":-56.17492,"dy":73.20373}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_scale b/font-test-data/test_data/colrv1_json/colrv1_paint_scale index a820b0c8b..2baeb174f 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_scale +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_scale @@ -1,6 +1,6 @@ -{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":250.0,"dy":-250.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-250.0,"dy":-250.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":500.0,"dy":-500.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-500.0,"dy":-500.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":250.0,"dy":-250.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-250.0,"dy":-250.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":500.0,"dy":-500.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-500.0,"dy":-500.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCOX_200_SCOY_200 b/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCOX_200_SCOY_200 index 31afc04ff..6ce279549 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCOX_200_SCOY_200 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCOX_200_SCOY_200 @@ -1,6 +1,6 @@ -{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":350.0,"dy":-350.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-350.0,"dy":-350.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":600.0,"dy":-600.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-600.0,"dy":-600.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":350.0,"dy":-350.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-350.0,"dy":-350.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":600.0,"dy":-600.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":-600.0,"dy":-600.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_-1_SCOY_-1 b/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_-1_SCOY_-1 index 6ffc79177..011bdee8c 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_-1_SCOY_-1 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_-1_SCOY_-1 @@ -1,6 +1,6 @@ -{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":-0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":750.0,"dy":-249.49951}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":250.0,"dy":249.49951}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":-0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":-0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":1500.0,"dy":-499.4995}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":500.0,"dy":499.4995}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":-0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":750.0,"dy":-249.49951}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":250.0,"dy":249.49951}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":-0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":-0.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":1500.0,"dy":-499.4995}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.5,"yx":0.0,"xy":0.0,"yy":0.5,"dx":500.0,"dy":499.4995}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_0.25_SCOY_0.25 b/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_0.25_SCOY_0.25 index 74dc6e1c4..512c73c1b 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_0.25_SCOY_0.25 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_scale_SCSX_0.25_SCOY_0.25 @@ -1,6 +1,6 @@ -{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.7499924,"yx":0.0,"xy":0.0,"yy":1.5,"dx":125.003815,"dy":-250.12817}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.7499924,"yx":0.0,"xy":0.0,"yy":1.7499924,"dx":-374.99622,"dy":-375.18842}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.7499924,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.7499924,"yx":0.0,"xy":0.0,"yy":1.7499924,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.7499924,"yx":0.0,"xy":0.0,"yy":1.5,"dx":250.00763,"dy":-500.12817}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.7499924,"yx":0.0,"xy":0.0,"yy":1.7499924,"dx":-749.99243,"dy":-750.1846}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":84,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.7499924,"yx":0.0,"xy":0.0,"yy":1.5,"dx":125.003815,"dy":-250.12817}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":85,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.7499924,"yx":0.0,"xy":0.0,"yy":1.7499924,"dx":-374.99622,"dy":-375.18842}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":86,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.7499924,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":87,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.7499924,"yx":0.0,"xy":0.0,"yy":1.7499924,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":88,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.7499924,"yx":0.0,"xy":0.0,"yy":1.5,"dx":250.00763,"dy":-500.12817}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":89,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.7499924,"yx":0.0,"xy":0.0,"yy":1.7499924,"dx":-749.99243,"dy":-750.1846}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_skew b/font-test-data/test_data/colrv1_json/colrv1_paint_skew index 17a85443a..d5ab2c081 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_skew +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_skew @@ -1,6 +1,6 @@ -{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":233.2057,"dy":-0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":-133.94034}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-88.141525,"dy":-181.93686}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-176.28305,"dy":-363.87372}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":233.2057,"dy":-0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":-133.94034}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-88.141525,"dy":-181.93686}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-176.28305,"dy":-363.87372}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKCX_200_SKCY_200 b/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKCX_200_SKCY_200 index 86b5fda5d..48b67db72 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKCX_200_SKCY_200 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKCX_200_SKCY_200 @@ -1,6 +1,6 @@ -{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":326.49368,"dy":-0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":-187.51974}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-123.40028,"dy":-254.71605}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-211.54181,"dy":-436.6529}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-0.4664114,"yy":1.0,"dx":326.49368,"dy":-0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":-187.51974}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-123.40028,"dy":-254.71605}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":0.17628305,"yy":1.0,"dx":-211.54181,"dy":-436.6529}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKXA_20 b/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKXA_20 index 3955f401e..f51c4e44b 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKXA_20 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKXA_20 @@ -1,6 +1,6 @@ -{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-1.0001917,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-1.0001917,"yy":1.0,"dx":500.09586,"dy":-0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.36398232,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.36398232,"yy":1.0,"dx":181.99117,"dy":-133.94034}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":-0.1763819,"yy":1.0,"dx":88.19095,"dy":-181.93686}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":-0.1763819,"yy":1.0,"dx":176.3819,"dy":-363.87372}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-1.0001917,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":-1.0001917,"yy":1.0,"dx":500.09586,"dy":-0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.36398232,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.26788068,"xy":-0.36398232,"yy":1.0,"dx":181.99117,"dy":-133.94034}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":-0.1763819,"yy":1.0,"dx":88.19095,"dy":-181.93686}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36387372,"xy":-0.1763819,"yy":1.0,"dx":176.3819,"dy":-363.87372}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKYA_20 b/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKYA_20 index 22e2db94b..ce155d74f 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKYA_20 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_skew_SKYA_20 @@ -1,6 +1,6 @@ -{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36398232,"xy":-0.4664114,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36398232,"xy":-0.4664114,"yy":1.0,"dx":233.2057,"dy":-181.99117}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.70012814,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.70012814,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":-350.06406}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.83897257,"xy":0.17628305,"yy":1.0,"dx":-88.141525,"dy":-419.4863}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.83897257,"xy":0.17628305,"yy":1.0,"dx":-176.28305,"dy":-838.9726}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":103,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36398232,"xy":-0.4664114,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":104,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.36398232,"xy":-0.4664114,"yy":1.0,"dx":233.2057,"dy":-181.99117}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":105,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.70012814,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":106,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.70012814,"xy":-0.0,"yy":1.0,"dx":0.0,"dy":-350.06406}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":107,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.83897257,"xy":0.17628305,"yy":1.0,"dx":-88.141525,"dy":-419.4863}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":108,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.83897257,"xy":0.17628305,"yy":1.0,"dx":-176.28305,"dy":-838.9726}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_transform b/font-test-data/test_data/colrv1_json/colrv1_paint_transform index 7f134ac85..d05709518 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_transform +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_transform @@ -1,4 +1,4 @@ -{"glyph_id":109,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":125.0,"dy":125.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":110,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":111,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9658966,"yx":0.25880432,"xy":-0.25880432,"yy":0.9658966,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":112,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.6000061,"yy":1.0,"dx":-300.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":109,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":125.0,"dy":125.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":110,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.5,"yx":0.0,"xy":0.0,"yy":1.5,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":111,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":0.9658966,"yx":0.25880432,"xy":-0.25880432,"yy":0.9658966,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":112,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.6000061,"yy":1.0,"dx":-300.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_translate b/font-test-data/test_data/colrv1_json/colrv1_paint_translate index 1f613ed0c..b6f3ce6d4 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_translate +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_translate @@ -1,7 +1,7 @@ -{"glyph_id":113,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":114,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":100.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":115,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":-100.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":116,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":117,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-100.0,"dy":0.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":118,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":200.0,"dy":200.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":119,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-200.0,"dy":-200.0}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":113,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":114,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":100.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":115,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":-100.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":116,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":117,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-100.0,"dy":0.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":118,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":200.0,"dy":200.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":119,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-200.0,"dy":-200.0}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_paint_translate_TLDX_100_TLDY_100 b/font-test-data/test_data/colrv1_json/colrv1_paint_translate_TLDX_100_TLDY_100 index b790cadde..46d54eb0b 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_paint_translate_TLDX_100_TLDY_100 +++ b/font-test-data/test_data/colrv1_json/colrv1_paint_translate_TLDX_100_TLDY_100 @@ -1,7 +1,7 @@ -{"glyph_id":113,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0061,"dy":100.0061}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":114,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0061,"dy":200.0061}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":115,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0061,"dy":0.0061035156}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":116,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":200.0061,"dy":100.0061}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":117,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0061035156,"dy":100.0061}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":118,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":300.0061,"dy":300.0061}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} -{"glyph_id":119,"ops":[{"PushLayer":{"composite_mode":3}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},"PopClip",{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-99.9939,"dy":-99.9939}}},{"PushClipGlyph":{"gid":3}},{"FillBrush":{"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopClip","PopTransform","PopLayer","PopLayer"]} +{"glyph_id":113,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0061,"dy":100.0061}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":114,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0061,"dy":200.0061}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":115,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":100.0061,"dy":0.0061035156}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":116,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":200.0061,"dy":100.0061}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":117,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0061035156,"dy":100.0061}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":118,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":300.0061,"dy":300.0061}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} +{"glyph_id":119,"ops":[{"PushLayer":{"composite_mode":3}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":4,"alpha":0.5}}}},{"PushLayer":{"composite_mode":4}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-99.9939,"dy":-99.9939}}},{"FillGlyph":{"gid":3,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":1,"alpha":0.7000122}}}},"PopTransform","PopLayer","PopLayer"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_coincident b/font-test-data/test_data/colrv1_json/colrv1_sweep_coincident index d3a9f4665..25429081b 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_coincident +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_coincident @@ -1,24 +1,24 @@ -{"glyph_id":181,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":182,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":183,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":184,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":185,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":186,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":187,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":188,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":189,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":190,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":191,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":192,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":193,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":194,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} -{"glyph_id":195,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} -{"glyph_id":196,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":197,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} -{"glyph_id":198,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} -{"glyph_id":199,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":200,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} -{"glyph_id":201,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} -{"glyph_id":202,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":203,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} -{"glyph_id":204,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},"PopClip","PopClip"]} +{"glyph_id":181,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":182,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":183,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":184,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":185,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":186,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":187,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":188,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":189,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.333313,"palette_index":8,"alpha":1.0},{"offset":0.666687,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":190,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":191,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":192,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.666687,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":193,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":194,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":195,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":196,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":197,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":198,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":199,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":200,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":201,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":202,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":203,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} +{"glyph_id":204,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep index 408a87901..0b8c0e3f9 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWC1_-0.25_SWC2_0.083333336_SWC3_0.083333336_SWC4_0.25 b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWC1_-0.25_SWC2_0.083333336_SWC3_0.083333336_SWC4_0.25 index 9f4a69942..dada886c0 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWC1_-0.25_SWC2_0.083333336_SWC3_0.083333336_SWC4_0.25 +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWC1_-0.25_SWC2_0.083333336_SWC3_0.083333336_SWC4_0.25 @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":59.996338,"end_angle":300.00366,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-179.98901,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":59.996338,"end_angle":300.00366,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-179.98901,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":59.996338,"end_angle":300.00366,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-179.98901,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-180.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.007324,"end_angle":420.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":135.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-539.9835,"end_angle":899.9945,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-180.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.007324,"end_angle":420.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":135.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-539.9835,"end_angle":899.9945,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-180.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.007324,"end_angle":420.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":135.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-539.9835,"end_angle":899.9945,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":59.996338,"end_angle":300.00366,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-179.98901,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":59.996338,"end_angle":300.00366,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-179.98901,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":59.996338,"end_angle":300.00366,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-80.00244,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.50006104,"palette_index":4,"alpha":1.0},{"offset":0.666687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-179.98901,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.333313,"palette_index":0,"alpha":1.0},{"offset":0.49993896,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-180.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.007324,"end_angle":420.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":135.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-539.9835,"end_angle":899.9945,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-180.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.007324,"end_angle":420.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":135.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-539.9835,"end_angle":899.9945,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-180.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.007324,"end_angle":420.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":135.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-165.00366,"end_angle":175.00122,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.541687,"palette_index":4,"alpha":1.0},{"offset":0.791687,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-539.9835,"end_angle":899.9945,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.20831299,"palette_index":0,"alpha":1.0},{"offset":0.458313,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-45 b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-45 index eed2ce6b7..4f7589e6e 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-45 +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-45 @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":153.74817,"end_angle":251.25183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":371.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-3.751831,"end_angle":58.74939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-26.251831,"end_angle":81.24939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75412,"end_angle":371.25137,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":153.74817,"end_angle":251.25183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":371.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-3.751831,"end_angle":58.74939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-26.251831,"end_angle":81.24939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75412,"end_angle":371.25137,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":153.74817,"end_angle":251.25183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":371.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-3.751831,"end_angle":58.74939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-26.251831,"end_angle":81.24939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75412,"end_angle":371.25137,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-33.75,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.244507,"end_angle":348.7555,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":483.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-66.25305,"end_angle":121.25061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-133.75305,"end_angle":188.75061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-303.74316,"end_angle":708.74866,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-33.75,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.244507,"end_angle":348.7555,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":483.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-66.25305,"end_angle":121.25061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-133.75305,"end_angle":188.75061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-303.74316,"end_angle":708.74866,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-33.75,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.244507,"end_angle":348.7555,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":483.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-66.25305,"end_angle":121.25061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-133.75305,"end_angle":188.75061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-303.74316,"end_angle":708.74866,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":153.74817,"end_angle":251.25183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":371.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-3.751831,"end_angle":58.74939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-26.251831,"end_angle":81.24939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75412,"end_angle":371.25137,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":153.74817,"end_angle":251.25183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":371.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-3.751831,"end_angle":58.74939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-26.251831,"end_angle":81.24939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75412,"end_angle":371.25137,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":153.74817,"end_angle":251.25183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":371.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-3.751831,"end_angle":58.74939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-26.251831,"end_angle":81.24939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75412,"end_angle":371.25137,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-33.75,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.244507,"end_angle":348.7555,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":483.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-66.25305,"end_angle":121.25061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-133.75305,"end_angle":188.75061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-303.74316,"end_angle":708.74866,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-33.75,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.244507,"end_angle":348.7555,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":483.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-66.25305,"end_angle":121.25061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-133.75305,"end_angle":188.75061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-303.74316,"end_angle":708.74866,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-33.75,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.244507,"end_angle":348.7555,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.5,"end_angle":112.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":348.75,"end_angle":416.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":483.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-66.25305,"end_angle":121.25061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-133.75305,"end_angle":188.75061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-303.74316,"end_angle":708.74866,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-90 b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-90 index 395b83ea5..c307a3595 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-90 +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPE_-90 @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":187.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":146.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":29.998169,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":114.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":187.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":146.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":29.998169,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":114.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":187.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":146.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":29.998169,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":114.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.49451,"end_angle":337.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":101.25,"end_angle":168.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-10.003052,"end_angle":110.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-145.00305,"end_angle":245.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-247.5,"end_angle":697.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.49451,"end_angle":337.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":101.25,"end_angle":168.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-10.003052,"end_angle":110.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-145.00305,"end_angle":245.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-247.5,"end_angle":697.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.49451,"end_angle":337.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":101.25,"end_angle":168.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-10.003052,"end_angle":110.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-145.00305,"end_angle":245.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-247.5,"end_angle":697.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":187.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":146.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":29.998169,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":114.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":187.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":146.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":29.998169,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":114.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":187.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":326.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":123.75,"end_angle":146.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":29.998169,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":114.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.49451,"end_angle":337.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":101.25,"end_angle":168.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-10.003052,"end_angle":110.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-145.00305,"end_angle":245.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-247.5,"end_angle":697.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.49451,"end_angle":337.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":101.25,"end_angle":168.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-10.003052,"end_angle":110.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-145.00305,"end_angle":245.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-247.5,"end_angle":697.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":112.49451,"end_angle":337.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":303.75,"end_angle":371.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":438.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":101.25,"end_angle":168.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":405.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":540.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-10.003052,"end_angle":110.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-145.00305,"end_angle":245.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-247.5,"end_angle":697.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_-45_SWPE_45 b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_-45_SWPE_45 index b432931c1..a83ad26e1 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_-45_SWPE_45 +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_-45_SWPE_45 @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-157.5,"end_angle":517.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.50549,"end_angle":427.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":191.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-11.25,"end_angle":191.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-190.00305,"end_angle":200.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-55.00305,"end_angle":65.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-157.5,"end_angle":517.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.50549,"end_angle":427.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":191.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-11.25,"end_angle":191.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-190.00305,"end_angle":200.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-55.00305,"end_angle":65.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-157.5,"end_angle":517.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.50549,"end_angle":427.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":191.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-11.25,"end_angle":191.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-190.00305,"end_angle":200.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-55.00305,"end_angle":65.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":262.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":69.99939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-15.001831,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-157.5,"end_angle":517.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.50549,"end_angle":427.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":191.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-11.25,"end_angle":191.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-190.00305,"end_angle":200.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-55.00305,"end_angle":65.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-157.5,"end_angle":517.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.50549,"end_angle":427.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":191.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-11.25,"end_angle":191.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-190.00305,"end_angle":200.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-55.00305,"end_angle":65.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-157.5,"end_angle":517.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.50549,"end_angle":427.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":191.25,"end_angle":393.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-11.25,"end_angle":191.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-190.00305,"end_angle":200.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-55.00305,"end_angle":65.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_0 b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_0 index 408a87901..0b8c0e3f9 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_0 +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_0 @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":90.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":119.99817,"end_angle":240.00183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":281.25,"end_angle":303.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":78.75,"end_angle":101.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":337.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-37.50183,"end_angle":47.49939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":0.008239746,"end_angle":360.00275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-90.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-0.005493164,"end_angle":360.0055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":382.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":258.75,"end_angle":326.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":56.25,"end_angle":123.75,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":292.5,"end_angle":427.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-122.50305,"end_angle":132.50061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-359.98627,"end_angle":719.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_45_SWPE_-45_SWC1_-0.25_SWC2_-0.416687_SWC3_-0.583313_SWC4_-0.75 b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_45_SWPE_-45_SWC1_-0.25_SWC2_-0.416687_SWC3_-0.583313_SWC4_-0.75 index f6fb9669d..f60813d1b 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_45_SWPE_-45_SWC1_-0.25_SWC2_-0.416687_SWC3_-0.583313_SWC4_-0.75 +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_45_SWPE_-45_SWC1_-0.25_SWC2_-0.416687_SWC3_-0.583313_SWC4_-0.75 @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":314.98352,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":254.9945,"end_angle":255.00366,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.01099,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.00275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.00824,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":67.50275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.011,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":44.995117,"end_angle":45.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-125.00244,"end_angle":-124.98657,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":494.96155,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":314.98352,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":254.9945,"end_angle":255.00366,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.01099,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.00275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.00824,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":67.50275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.011,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":44.995117,"end_angle":45.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-125.00244,"end_angle":-124.98657,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":494.96155,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":314.98352,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":254.9945,"end_angle":255.00366,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.01099,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.00275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.00824,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":67.50275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.011,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":44.995117,"end_angle":45.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-125.00244,"end_angle":-124.98657,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":494.96155,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":330.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":4.9987793,"end_angle":85.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-255.00366,"end_angle":4.9987793,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.00275,"end_angle":809.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":330.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":4.9987793,"end_angle":85.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-255.00366,"end_angle":4.9987793,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.00275,"end_angle":809.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":330.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":4.9987793,"end_angle":85.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-255.00366,"end_angle":4.9987793,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.00275,"end_angle":809.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":314.98352,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":254.9945,"end_angle":255.00366,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.01099,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.00275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.00824,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":67.50275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.011,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":44.995117,"end_angle":45.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-125.00244,"end_angle":-124.98657,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":494.96155,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":314.98352,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":254.9945,"end_angle":255.00366,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.01099,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.00275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.00824,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":67.50275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.011,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":44.995117,"end_angle":45.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-125.00244,"end_angle":-124.98657,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":494.96155,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":314.98352,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":254.9945,"end_angle":255.00366,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.01099,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.00275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":225.00824,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":67.50275,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.011,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":44.995117,"end_angle":45.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-125.00244,"end_angle":-124.98657,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":0,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":494.96155,"end_angle":495.0,"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":0.0,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":330.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":4.9987793,"end_angle":85.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-255.00366,"end_angle":4.9987793,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.00275,"end_angle":809.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":330.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":4.9987793,"end_angle":85.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-255.00366,"end_angle":4.9987793,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.00275,"end_angle":809.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":330.00732,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":247.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":157.5,"end_angle":292.5,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":45.0,"end_angle":90.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":360.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":4.9987793,"end_angle":85.00122,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-255.00366,"end_angle":4.9987793,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.583374,"palette_index":4,"alpha":1.0},{"offset":0.91674805,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.00275,"end_angle":809.99725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.08325195,"palette_index":0,"alpha":1.0},{"offset":0.41662598,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_90 b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_90 index f34672887..15761b929 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_90 +++ b/font-test-data/test_data/colrv1_json/colrv1_sweep_varsweep_SWPS_90 @@ -1,72 +1,72 @@ -{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":202.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":172.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":258.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75,"end_angle":56.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":-20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-105.00183,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-22.49176,"end_angle":292.50275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":202.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":172.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":258.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75,"end_angle":56.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":-20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-105.00183,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-22.49176,"end_angle":292.50275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":202.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":172.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":258.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75,"end_angle":56.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":-20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-105.00183,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-22.49176,"end_angle":292.50275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.494507,"end_angle":247.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":146.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":11.25,"end_angle":78.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-100.00305,"end_angle":20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-235.00305,"end_angle":155.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-337.48627,"end_angle":607.49725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip","PopClip"]} -{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.494507,"end_angle":247.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":146.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":11.25,"end_angle":78.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-100.00305,"end_angle":20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-235.00305,"end_angle":155.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-337.48627,"end_angle":607.49725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip","PopClip"]} -{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.494507,"end_angle":247.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":146.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":11.25,"end_angle":78.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-100.00305,"end_angle":20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-235.00305,"end_angle":155.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} -{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-337.48627,"end_angle":607.49725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopClip"]} +{"glyph_id":12,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":202.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":13,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":172.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":14,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":15,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":16,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":258.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":17,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":18,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75,"end_angle":56.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":19,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":20,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":21,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":-20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":22,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-105.00183,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":23,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-22.49176,"end_angle":292.50275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":24,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":202.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":25,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":172.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":26,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":27,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":28,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":258.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":29,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":30,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75,"end_angle":56.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":31,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":32,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":33,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":-20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":34,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-105.00183,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":35,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-22.49176,"end_angle":292.50275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":36,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":67.5,"end_angle":202.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":37,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":97.49817,"end_angle":172.50183,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":38,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":39,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":225.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":40,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":236.25,"end_angle":258.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":41,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":42,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":33.75,"end_angle":56.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":43,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":44,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":360.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":45,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-60.00183,"end_angle":-20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":46,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-105.00183,"end_angle":24.99939,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.33337402,"palette_index":4,"alpha":1.0},{"offset":0.666626,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":47,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-22.49176,"end_angle":292.50275,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.33337402,"palette_index":0,"alpha":1.0},{"offset":0.666626,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":48,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":49,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.494507,"end_angle":247.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":50,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":51,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":52,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":53,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":146.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":54,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":11.25,"end_angle":78.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":55,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":56,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":57,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-100.00305,"end_angle":20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":58,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-235.00305,"end_angle":155.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":59,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-337.48627,"end_angle":607.49725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Pad"}}}},"PopClip"]} +{"glyph_id":60,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":61,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.494507,"end_angle":247.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":62,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":63,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":64,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":65,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":146.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":66,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":11.25,"end_angle":78.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":67,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":68,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":69,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-100.00305,"end_angle":20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":70,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-235.00305,"end_angle":155.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":71,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-337.48627,"end_angle":607.49725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Reflect"}}}},"PopClip"]} +{"glyph_id":72,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-67.5,"end_angle":337.5,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":73,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":22.494507,"end_angle":247.5055,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":74,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":270.0,"end_angle":270.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":75,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":135.0,"end_angle":405.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":76,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":213.75,"end_angle":281.25,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":77,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":146.25,"end_angle":348.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":78,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":11.25,"end_angle":78.75,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":79,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":315.0,"end_angle":315.0,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":80,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":180.0,"end_angle":450.0,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":81,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-100.00305,"end_angle":20.00061,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":82,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-235.00305,"end_angle":155.00061,"color_stops":[{"offset":0.0,"palette_index":7,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":0.8333334,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":8,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} +{"glyph_id":83,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"SweepGradient":{"c0":{"x":500.0,"y":600.0},"start_angle":-337.48627,"end_angle":607.49725,"color_stops":[{"offset":0.0,"palette_index":8,"alpha":1.0},{"offset":0.16666663,"palette_index":0,"alpha":1.0},{"offset":0.5,"palette_index":4,"alpha":1.0},{"offset":1.0,"palette_index":7,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_variable_alpha b/font-test-data/test_data/colrv1_json/colrv1_variable_alpha index 9df9f0622..f396e4be2 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_variable_alpha +++ b/font-test-data/test_data/colrv1_json/colrv1_variable_alpha @@ -1 +1 @@ -{"glyph_id":177,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip"]} +{"glyph_id":177,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH1_-0.7 b/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH1_-0.7 index f2b615beb..21e8f5cdb 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH1_-0.7 +++ b/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH1_-0.7 @@ -1 +1 @@ -{"glyph_id":177,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":0.2999878}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip"]} +{"glyph_id":177,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":0.2999878}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":1.0},{"offset":1.0,"palette_index":4,"alpha":1.0}],"extend":"Repeat"}}}},"PopTransform","PopClip"]} diff --git a/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH2_-0.7_APH3_-0.2 b/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH2_-0.7_APH3_-0.2 index 734cdfcc3..4ac73f701 100644 --- a/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH2_-0.7_APH3_-0.2 +++ b/font-test-data/test_data/colrv1_json/colrv1_variable_alpha_APH2_-0.7_APH3_-0.2 @@ -1 +1 @@ -{"glyph_id":177,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopClip","PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"PushClipGlyph":{"gid":176}},{"FillBrush":{"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":0.2999878},{"offset":1.0,"palette_index":4,"alpha":0.7999878}],"extend":"Repeat"}}}},"PopClip","PopTransform","PopClip"]} +{"glyph_id":177,"ops":[{"PushClipBox":{"clip_box":{"x_min":0.0,"y_min":0.0,"x_max":1000.0,"y_max":1000.0}}},{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"Solid":{"palette_index":3,"alpha":1.0}}}},"PopTransform",{"PushTransform":{"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":-150.0,"dy":0.0}}},{"FillGlyph":{"gid":176,"transform":{"xx":1.0,"yx":0.0,"xy":0.0,"yy":1.0,"dx":0.0,"dy":0.0},"brush":{"LinearGradient":{"p0":{"x":500.0,"y":250.0},"p1":{"x":500.0,"y":950.0},"color_stops":[{"offset":0.0,"palette_index":0,"alpha":0.2999878},{"offset":1.0,"palette_index":4,"alpha":0.7999878}],"extend":"Repeat"}}}},"PopTransform","PopClip"]} From ecd205fc517c5f13f42df20c74a4ce39bd394824 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Mon, 22 Jan 2024 17:07:21 +0200 Subject: [PATCH 3/9] => _brush_transform --- skrifa/src/color/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skrifa/src/color/mod.rs b/skrifa/src/color/mod.rs index 17ab5b8f3..9cc5a765a 100644 --- a/skrifa/src/color/mod.rs +++ b/skrifa/src/color/mod.rs @@ -248,12 +248,12 @@ pub trait ColorPainter { /// Combined clip and fill operation. /// /// Apply the clip path determined by the specified `glyph_id`, - /// then fill it with the specified [`brush`](Brush), applying the `_transform` - /// transformation matrix to the brush. + /// then fill it with the specified [`brush`](Brush), applying the + /// `_brush_transform` transformation matrix to the brush. fn fill_glyph( &mut self, _glyph_id: GlyphId, - _transform: Transform, + _brush_transform: Transform, _brush: Brush<'_>, ) -> Result<(), PaintError> { Err(PaintError::FillGlyphOptimizationFailed) From 111f1d6c624fcdd6b213b3a89269320bd322930c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Mon, 22 Jan 2024 17:20:11 +0200 Subject: [PATCH 4/9] Transform into Option --- skrifa/src/color/mod.rs | 2 +- skrifa/src/color/traversal.rs | 15 +++++++++++---- skrifa/src/color/traversal_tests/mod.rs | 4 ++-- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/skrifa/src/color/mod.rs b/skrifa/src/color/mod.rs index 9cc5a765a..1b842c801 100644 --- a/skrifa/src/color/mod.rs +++ b/skrifa/src/color/mod.rs @@ -253,7 +253,7 @@ pub trait ColorPainter { fn fill_glyph( &mut self, _glyph_id: GlyphId, - _brush_transform: Transform, + _brush_transform: Option, _brush: Brush<'_>, ) -> Result<(), PaintError> { Err(PaintError::FillGlyphOptimizationFailed) diff --git a/skrifa/src/color/traversal.rs b/skrifa/src/color/traversal.rs index 516d3dff4..d262b8a46 100644 --- a/skrifa/src/color/traversal.rs +++ b/skrifa/src/color/traversal.rs @@ -53,7 +53,7 @@ fn make_sorted_resolved_stops(stops: &ColorStops, instance: &ColrInstance) -> Ve } struct CollectFillGlyphPainter<'a> { - brush_transform: Transform, + brush_transform: Option, glyph_id: GlyphId, parent_painter: &'a mut dyn ColorPainter, pub optimization_result: Result<(), PaintError>, @@ -62,7 +62,7 @@ struct CollectFillGlyphPainter<'a> { impl<'a> CollectFillGlyphPainter<'a> { fn new(parent_painter: &'a mut dyn ColorPainter, glyph_id: GlyphId) -> Self { Self { - brush_transform: Transform::default(), + brush_transform: None, glyph_id, parent_painter, optimization_result: Ok(()), @@ -73,7 +73,14 @@ impl<'a> CollectFillGlyphPainter<'a> { impl<'a> ColorPainter for CollectFillGlyphPainter<'a> { fn push_transform(&mut self, transform: Transform) { if self.optimization_result.is_ok() { - self.brush_transform *= transform; + match self.brush_transform { + None => { + self.brush_transform = Some(transform); + } + Some(ref mut existing_transform) => { + *existing_transform *= transform; + } + } } } @@ -545,7 +552,7 @@ pub(crate) fn traverse_v0_range( if painter.fill_glyph_supported() == FillGlyph::Supported { painter.fill_glyph( layer_index, - Transform::default(), + None, Brush::Solid { palette_index, alpha: 1.0, diff --git a/skrifa/src/color/traversal_tests/mod.rs b/skrifa/src/color/traversal_tests/mod.rs index 52387b772..7cb9366c1 100644 --- a/skrifa/src/color/traversal_tests/mod.rs +++ b/skrifa/src/color/traversal_tests/mod.rs @@ -209,12 +209,12 @@ impl ColorPainter for PaintDump { fn fill_glyph( &mut self, glyph_id: GlyphId, - transform: Transform, + transform: Option, brush: Brush, ) -> Result<(), super::PaintError> { self.ops.push(PaintOps::FillGlyph { gid: glyph_id.to_u16(), - transform: transform.into(), + transform: transform.unwrap_or_default().into(), brush: brush.into(), }); Ok(()) From 8bccec3cc417f1ca8d3f461e4eb2edd058571979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Mon, 22 Jan 2024 17:25:48 +0200 Subject: [PATCH 5/9] Mul implementation --- skrifa/src/color/transform.rs | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/skrifa/src/color/transform.rs b/skrifa/src/color/transform.rs index 21af6a34a..ba3af8686 100644 --- a/skrifa/src/color/transform.rs +++ b/skrifa/src/color/transform.rs @@ -1,5 +1,5 @@ //! Contains a [`Transform`] object holding values of an affine transformation matrix. -use std::ops::MulAssign; +use std::ops::{Mul, MulAssign}; use read_fonts::ReadError; @@ -29,18 +29,25 @@ pub struct Transform { impl MulAssign for Transform { fn mul_assign(&mut self, rhs: Self) { + *self = self.clone() * rhs; + } +} + +impl Mul for Transform { + type Output = Self; + + fn mul(self, rhs: Self) -> Self::Output { fn muladdmul(a: f32, b: f32, c: f32, d: f32) -> f32 { a * b + c * d } - let tmp = Self { + Self { xx: muladdmul(self.xx, rhs.xx, self.xy, rhs.yx), xy: muladdmul(self.xx, rhs.xy, self.xy, rhs.yy), dx: muladdmul(self.xx, rhs.dx, self.xy, rhs.dy) + self.dx, yx: muladdmul(self.yx, rhs.xx, self.yy, rhs.yx), yy: muladdmul(self.yx, rhs.xy, self.yy, rhs.yy), dy: muladdmul(self.yx, rhs.dx, self.yy, rhs.dy) + self.dy, - }; - *self = tmp; + } } } From 0d513f778061a68ebb8fd61a4e88eaf9f6eb56f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Tue, 23 Jan 2024 14:53:19 +0200 Subject: [PATCH 6/9] Always expect presence of fill_glyph() op --- skrifa/src/color/mod.rs | 48 +++++++++++-------------- skrifa/src/color/traversal.rs | 45 +++++++++-------------- skrifa/src/color/traversal_tests/mod.rs | 4 --- 3 files changed, 38 insertions(+), 59 deletions(-) diff --git a/skrifa/src/color/mod.rs b/skrifa/src/color/mod.rs index 1b842c801..1a94bced2 100644 --- a/skrifa/src/color/mod.rs +++ b/skrifa/src/color/mod.rs @@ -197,20 +197,6 @@ pub enum PaintCachedColorGlyph { Unimplemented, } -/// Result of [`fill_glyph_supported()`](ColorPainter::fill_glyph_supported). -/// -/// Result of [`fill_glyph_supported()`](ColorPainter::fill_glyph_supported) -/// through which the client signals whether an optimized glyph filling function -/// is implemented that combines clip and fill with a -/// [`brush`](Brush). -#[derive(PartialEq)] -pub enum FillGlyph { - /// The combined clip and fill operation is supported on the client side. - Supported, - /// The client does not implement the combined clip and fill operation. - Unimplemented, -} - /// A group of required painting callbacks to be provided by the client. /// /// Each callback is executing a particular drawing or canvas transformation @@ -239,24 +225,32 @@ pub trait ColorPainter { /// Fill the current clip area with the specified gradient fill. fn fill(&mut self, brush: Brush<'_>); - /// Queries from the client whether the optimized - /// [`fill_glyph()`](ColorPainter::fill_glyph) operation is supported. - fn fill_glyph_supported(&self) -> FillGlyph { - FillGlyph::Unimplemented - } - /// Combined clip and fill operation. /// - /// Apply the clip path determined by the specified `glyph_id`, - /// then fill it with the specified [`brush`](Brush), applying the - /// `_brush_transform` transformation matrix to the brush. + /// Apply the clip path determined by the specified `glyph_id`, then fill it + /// with the specified [`brush`](Brush), applying the `_brush_transform` + /// transformation matrix to the brush. The default implementation works + /// based on existing methods in this trait. It is recommend for clients to + /// override this implementaition with a custom combined clip and fill + /// operation. It is likely that this will result in performance gains + /// depending on performance characteristics of the 2D graphics stack that + /// these calls are mapped to. fn fill_glyph( &mut self, - _glyph_id: GlyphId, - _brush_transform: Option, - _brush: Brush<'_>, + glyph_id: GlyphId, + brush_transform: Option, + brush: Brush<'_>, ) -> Result<(), PaintError> { - Err(PaintError::FillGlyphOptimizationFailed) + self.push_clip_glyph(glyph_id); + if let Some(wrap_in_transform) = brush_transform { + self.push_transform(wrap_in_transform); + self.fill(brush); + self.pop_transform(); + } else { + self.fill(brush); + } + self.pop_clip(); + Ok(()) } /// Optionally implement this method: Draw an unscaled COLRv1 glyph given diff --git a/skrifa/src/color/traversal.rs b/skrifa/src/color/traversal.rs index d262b8a46..da7984d90 100644 --- a/skrifa/src/color/traversal.rs +++ b/skrifa/src/color/traversal.rs @@ -13,7 +13,7 @@ use super::{ instance::{ resolve_clip_box, resolve_paint, ColorStops, ColrInstance, ResolvedColorStop, ResolvedPaint, }, - Brush, ColorPainter, ColorStop, FillGlyph, PaintCachedColorGlyph, PaintError, Transform, + Brush, ColorPainter, ColorStop, PaintCachedColorGlyph, PaintError, Transform, }; // Workaround for https://bugs.chromium.org/p/chromium/issues/detail?id=1516634. @@ -433,19 +433,16 @@ pub(crate) fn traverse_with_callbacks( } ResolvedPaint::Glyph { glyph_id, paint } => { - let mut result = Err(PaintError::FillGlyphOptimizationFailed); - if painter.fill_glyph_supported() == FillGlyph::Supported { - let mut optimizer = CollectFillGlyphPainter::new(painter, *glyph_id); - result = traverse_with_callbacks( - &resolve_paint(instance, paint)?, - instance, - &mut optimizer, - visited_set, - ) - .and(optimizer.optimization_result) - } + let mut optimizer = CollectFillGlyphPainter::new(painter, *glyph_id); + let mut result = traverse_with_callbacks( + &resolve_paint(instance, paint)?, + instance, + &mut optimizer, + visited_set, + ); - if result.is_err() { + // In case the optimization was not successful, just push a clip, and continue unoptimized traversal. + if let Err(PaintError::FillGlyphOptimizationFailed) = optimizer.optimization_result { painter.push_clip_glyph(*glyph_id); result = traverse_with_callbacks( &resolve_paint(instance, paint)?, @@ -455,6 +452,7 @@ pub(crate) fn traverse_with_callbacks( ); painter.pop_clip(); } + result } ResolvedPaint::ColrGlyph { glyph_id } => match (*instance).v1_base_glyph(*glyph_id)? { @@ -549,23 +547,14 @@ pub(crate) fn traverse_v0_range( ) -> Result<(), PaintError> { for layer_index in range.clone() { let (layer_index, palette_index) = (*instance).v0_layer(layer_index)?; - if painter.fill_glyph_supported() == FillGlyph::Supported { - painter.fill_glyph( - layer_index, - None, - Brush::Solid { - palette_index, - alpha: 1.0, - }, - )?; - } else { - painter.push_clip_glyph(layer_index); - painter.fill(Brush::Solid { + painter.fill_glyph( + layer_index, + None, + Brush::Solid { palette_index, alpha: 1.0, - }); - painter.pop_clip(); - } + }, + )?; } Ok(()) } diff --git a/skrifa/src/color/traversal_tests/mod.rs b/skrifa/src/color/traversal_tests/mod.rs index 7cb9366c1..cdc63b447 100644 --- a/skrifa/src/color/traversal_tests/mod.rs +++ b/skrifa/src/color/traversal_tests/mod.rs @@ -202,10 +202,6 @@ impl ColorPainter for PaintDump { }); } - fn fill_glyph_supported(&self) -> super::FillGlyph { - super::FillGlyph::Supported - } - fn fill_glyph( &mut self, glyph_id: GlyphId, From db357a10c432edb6458b6eab32998bbb640d2a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Tue, 23 Jan 2024 15:04:33 +0200 Subject: [PATCH 7/9] Provide default implementation for `fill_glyph()` ...and always assume the method is callable when traversing. --- skrifa/src/color/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/skrifa/src/color/mod.rs b/skrifa/src/color/mod.rs index 1a94bced2..89fecf25c 100644 --- a/skrifa/src/color/mod.rs +++ b/skrifa/src/color/mod.rs @@ -231,7 +231,6 @@ pub trait ColorPainter { /// with the specified [`brush`](Brush), applying the `_brush_transform` /// transformation matrix to the brush. The default implementation works /// based on existing methods in this trait. It is recommend for clients to - /// override this implementaition with a custom combined clip and fill /// operation. It is likely that this will result in performance gains /// depending on performance characteristics of the 2D graphics stack that /// these calls are mapped to. From 2b6bdb16fb0d80201a3ff0419d68f702115e7c78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Tue, 23 Jan 2024 16:42:38 +0200 Subject: [PATCH 8/9] Don't use error type for optimization success --- skrifa/src/color/mod.rs | 17 ++++++---------- skrifa/src/color/traversal.rs | 27 ++++++++++++------------- skrifa/src/color/traversal_tests/mod.rs | 8 +------- 3 files changed, 20 insertions(+), 32 deletions(-) diff --git a/skrifa/src/color/mod.rs b/skrifa/src/color/mod.rs index 89fecf25c..01805600d 100644 --- a/skrifa/src/color/mod.rs +++ b/skrifa/src/color/mod.rs @@ -76,7 +76,6 @@ pub enum PaintError { ParseError(ReadError), GlyphNotFound(GlyphId), PaintCycleDetected, - FillGlyphOptimizationFailed, } impl std::fmt::Display for PaintError { @@ -89,10 +88,6 @@ impl std::fmt::Display for PaintError { write!(f, "No COLRv1 glyph found for glyph id: {glyph_id}") } PaintError::PaintCycleDetected => write!(f, "Paint cycle detected in COLRv1 glyph."), - PaintError::FillGlyphOptimizationFailed => write!( - f, - "Failed to combine clip glyph and fill into optimized single operation." - ), } } } @@ -230,16 +225,17 @@ pub trait ColorPainter { /// Apply the clip path determined by the specified `glyph_id`, then fill it /// with the specified [`brush`](Brush), applying the `_brush_transform` /// transformation matrix to the brush. The default implementation works - /// based on existing methods in this trait. It is recommend for clients to - /// operation. It is likely that this will result in performance gains - /// depending on performance characteristics of the 2D graphics stack that - /// these calls are mapped to. + /// based on existing methods in this trait. It is recommended for clients + /// to override the default implementaition with a custom combined clip and + /// fill operation. In this way overriding likely results in performance + /// gains depending on performance characteristics of the 2D graphics stack + /// that these calls are mapped to. fn fill_glyph( &mut self, glyph_id: GlyphId, brush_transform: Option, brush: Brush<'_>, - ) -> Result<(), PaintError> { + ) { self.push_clip_glyph(glyph_id); if let Some(wrap_in_transform) = brush_transform { self.push_transform(wrap_in_transform); @@ -249,7 +245,6 @@ pub trait ColorPainter { self.fill(brush); } self.pop_clip(); - Ok(()) } /// Optionally implement this method: Draw an unscaled COLRv1 glyph given diff --git a/skrifa/src/color/traversal.rs b/skrifa/src/color/traversal.rs index da7984d90..8149b097a 100644 --- a/skrifa/src/color/traversal.rs +++ b/skrifa/src/color/traversal.rs @@ -56,7 +56,7 @@ struct CollectFillGlyphPainter<'a> { brush_transform: Option, glyph_id: GlyphId, parent_painter: &'a mut dyn ColorPainter, - pub optimization_result: Result<(), PaintError>, + pub optimization_success: bool, } impl<'a> CollectFillGlyphPainter<'a> { @@ -65,14 +65,14 @@ impl<'a> CollectFillGlyphPainter<'a> { brush_transform: None, glyph_id, parent_painter, - optimization_result: Ok(()), + optimization_success: true, } } } impl<'a> ColorPainter for CollectFillGlyphPainter<'a> { fn push_transform(&mut self, transform: Transform) { - if self.optimization_result.is_ok() { + if self.optimization_success { match self.brush_transform { None => { self.brush_transform = Some(transform); @@ -92,31 +92,30 @@ impl<'a> ColorPainter for CollectFillGlyphPainter<'a> { } fn fill(&mut self, brush: Brush<'_>) { - if self.optimization_result.is_ok() { - self.optimization_result = - self.parent_painter - .fill_glyph(self.glyph_id, self.brush_transform.clone(), brush); + if self.optimization_success { + self.parent_painter + .fill_glyph(self.glyph_id, self.brush_transform.clone(), brush); } } fn push_clip_glyph(&mut self, _: GlyphId) { - self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + self.optimization_success = false; } fn push_clip_box(&mut self, _: BoundingBox) { - self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + self.optimization_success = false; } fn pop_clip(&mut self) { - self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + self.optimization_success = false; } fn push_layer(&mut self, _: CompositeMode) { - self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + self.optimization_success = false; } fn pop_layer(&mut self) { - self.optimization_result = Err(PaintError::FillGlyphOptimizationFailed); + self.optimization_success = false; } } @@ -442,7 +441,7 @@ pub(crate) fn traverse_with_callbacks( ); // In case the optimization was not successful, just push a clip, and continue unoptimized traversal. - if let Err(PaintError::FillGlyphOptimizationFailed) = optimizer.optimization_result { + if !optimizer.optimization_success { painter.push_clip_glyph(*glyph_id); result = traverse_with_callbacks( &resolve_paint(instance, paint)?, @@ -554,7 +553,7 @@ pub(crate) fn traverse_v0_range( palette_index, alpha: 1.0, }, - )?; + ); } Ok(()) } diff --git a/skrifa/src/color/traversal_tests/mod.rs b/skrifa/src/color/traversal_tests/mod.rs index cdc63b447..71d45fe53 100644 --- a/skrifa/src/color/traversal_tests/mod.rs +++ b/skrifa/src/color/traversal_tests/mod.rs @@ -202,18 +202,12 @@ impl ColorPainter for PaintDump { }); } - fn fill_glyph( - &mut self, - glyph_id: GlyphId, - transform: Option, - brush: Brush, - ) -> Result<(), super::PaintError> { + fn fill_glyph(&mut self, glyph_id: GlyphId, transform: Option, brush: Brush) { self.ops.push(PaintOps::FillGlyph { gid: glyph_id.to_u16(), transform: transform.unwrap_or_default().into(), brush: brush.into(), }); - Ok(()) } fn push_layer(&mut self, composite_mode: CompositeMode) { From 1f005fe10bdafc71ce7ff703327a13c3830c2dc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20R=C3=B6ttsches?= Date: Tue, 23 Jan 2024 16:47:55 +0200 Subject: [PATCH 9/9] Derive Copy --- skrifa/src/color/transform.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skrifa/src/color/transform.rs b/skrifa/src/color/transform.rs index ba3af8686..78bd1ef6b 100644 --- a/skrifa/src/color/transform.rs +++ b/skrifa/src/color/transform.rs @@ -18,6 +18,7 @@ use serde::{Deserialize, Serialize}; /// `x' = xx * x + xy * y + dx`, /// and the transformed position y' is calculated by /// `y' = yx * x + yy * y + dy`. +#[derive(Copy)] pub struct Transform { pub xx: f32, pub yx: f32, @@ -29,7 +30,7 @@ pub struct Transform { impl MulAssign for Transform { fn mul_assign(&mut self, rhs: Self) { - *self = self.clone() * rhs; + *self = *self * rhs; } }